谷歌地图集群无法正常工作

时间:2016-02-17 07:57:47

标签: javascript google-maps google-maps-api-3 markerclusterer

<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,但我遇到了问题。

我想要标记和群集。这是问题。

单击标记时,显示窗口标题。这不是问题。

我哪里做错了?

1 个答案:

答案 0 :(得分:6)

问题是你正在进行geocoder.geocode()函数调用,这是异步的,以获取数据来创建标记。但是,创建MarkerClusterer的行不在该地理编码函数的回调中。所以它会在创建标记之前发生,并且在那时只使用一个空数组。

我不完全确定你for循环的重点。但假设您需要它,诀窍可能是在地理编码之前创建一个空的MarkerClusterer。然后在回调中,在创建MarkauClusterer后立即将其添加到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);
        }
    });
}
相关问题