<script>
var lat = "";
var map = "";
var markers = [];
function initMap() {
if ($("#map").length) {
var mapOptions = {
zoom: 13,
center: new google.maps.LatLng(37.498214, 127.027535),
scrollwheel: true,
mapTypeControl: false
};
var geocoder = new google.maps.Geocoder();
map = new google.maps.Map(document.getElementById('map'), mapOptions);
var image = 'img/marker.png';
for (i = 0; i < 1; i++) { // this database size
var address = 'addressvalue';
geocoder.geocode({'address': address}, function (results, status) {
if (status === google.maps.GeocoderStatus.OK) {
lat = results[0].geometry.location;
lat = lat.toString().split(" ");
lat[0] = lat[0].replace('(', '');
lat[0] = lat[0].replace(',', '');
lat[1] = lat[1].replace(')', '');
map.setCenter(new google.maps.LatLng(lat[0], lat[1]));
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
icon: image,
title: 'test'
});
markers.push(marker);
var infowindow = new google.maps.InfoWindow({
content: '<div>1234</div>'
});
google.maps.event.addListener(marker, 'click', function () {
infowindow.open(map, marker);
});
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
}
markerClusterer = new MarkerClusterer(map, markers, {
maxZoom: 10,
gridSize: 10
});
google.maps.event.addDomListener(window, "resize", function () {
var center = map.getCenter();
google.maps.event.trigger(map, "resize");
map.setCenter(center);
});
}
}
</script>
<script src="http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclusterer/1.0/src/data.json"></script>
<script src="http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclusterer/1.0/src/markerclusterer.js"></script>
我遵循谷歌地图API,但我遇到了问题。
我想要标记和群集。这是问题。
单击标记时,显示窗口标题。这不是问题。
我哪里做错了?
最佳答案
问题是您正在执行geocoder.geocode()
函数调用,该函数是异步的,以获取数据来创建标记。但是,创建MarkerClusterer的行不在该地址解析函数的回调中。因此,这将在创建标记之前发生,并且此时仅使用空数组。
我不确定您的for
循环的意义。但是假设您需要它,诀窍可能是在进行地理编码之前创建一个空的MarkerClusterer。然后在回调中,在创建标记后立即将其添加到MarkerClusterer中。
像这样:
var markerClusterer = new MarkerClusterer(map, [], {
maxZoom: 10,
gridSize: 10
});
for (i = 0; i < 1; i++) { // this database size
var address = 'addressvalue';
geocoder.geocode({'address': address}, function (results, status) {
if (status === google.maps.GeocoderStatus.OK) {
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location,
icon: image,
title: 'test'
});
markers.push(marker);
markerClusterer.addMarker(marker);
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
}
关于javascript - 谷歌 map 集群无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35450870/