我知道有很多关于这个问题的话题,但我已经尝试了一切,仍然没有解决我的问题。
我正在尝试根据他们的位置在谷歌地图上显示我的成员。问题是虽然注册了 34 个成员,但只显示了 15-22 个(每次刷新时随机选择)标记。
地址的地理编码正确,因为如果我进入会员页面,它的标记会正确显示在地图上。我相信这是数据加载的一些问题,但我不知道如何解决它。
我在 Joomla 网站上使用 swmap 插件。JQuery 代码如下所示。
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true&language='.$locale.'"></script>
<script type="text/javascript">
window.addEvent("load",function(){initialize();});
var beaches = '.json_encode($res).';
function initialize() {
var myLatlng = new google.maps.LatLng('.$lat_center.', '.$long_center.');
var myOptions = {
zoom: 10,
center: myLatlng,
mapTypeControl: true,
mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl: true,
mapTypeId: google.maps.MapTypeId.'.$cattype.'
}
var map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);
google.maps.event.addListener(map, \'click\', function() {
infowindow.close();
});
setMarkers(map, beaches);
}
var icons = new Array();
icons["red"] = new google.maps.MarkerImage("'. JURI::root() .'plugins/k2/swmap/'.$color.'/landmark.png",
new google.maps.Size(32, 32),
new google.maps.Point(0,0),
new google.maps.Point(0, 32));
function getMarkerImage(iconColor) {
if ((typeof(iconColor)=="undefined") || (iconColor==null)) {
iconColor = "red";
}
if (!icons[iconColor]) {
icons[iconColor] = new google.maps.MarkerImage("'. JURI::root() .'plugins/k2/swmap/'.$color.'/"+ iconColor +"",
new google.maps.Size(32, 32),
new google.maps.Point(0,0),
new google.maps.Point(0, 32));
}
return icons[iconColor];
}
var iconImage = new google.maps.MarkerImage(\''. JURI::root() .'plugins/k2/swmap/'.$color.'/landmark.png\',
new google.maps.Size(32, 32),
new google.maps.Point(0,0),
new google.maps.Point(0, 32));
var infowindow = new google.maps.InfoWindow(
{
size: new google.maps.Size(150,50)
});
function createMarker(map, latlng, label,link, html, color) {
var contentString = \'<b>\'+link+\'</b><br>\'+html;
var marker = new google.maps.Marker({
position: latlng,
map: map,
icon: getMarkerImage(color),
title: label,
zIndex: Math.round(latlng.lat()*-100000)<<5
});
google.maps.event.addListener(marker, \'click\', function() {
infowindow.setContent(contentString);
infowindow.open(map,marker);
});
}
function setMarkers(map, locations) {
var bounds = new google.maps.LatLngBounds();
for (var i = 0; i < locations.length; i++) {
var beach = locations[i];
var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
var marker = createMarker(map,myLatLng,beach[0],beach[5],beach[4],beach[3]);
bounds.extend(myLatLng);
map.fitBounds(bounds);
}
}