Google地图 - 带可点击标记的标记群集

时间:2017-06-12 21:26:30

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

我对使用谷歌地图感到有点困惑。我不是编码的初学者,但javascript不是我的最佳实践。

我使用Google Maps Marker Cluster来标记某个位置。我从我的数据库中获取坐标。但我想显示(可点击)描述(工具提示)。我不知道如何在我的代码中实现这一点。

我的代码如下:

function initMap(position) {
            var map = new google.maps.Map(document.getElementById('map'), {
                zoom: 10,
                center: {lat: 51.1427552, lng: 8.2123375}
            });
            if (navigator.geolocation) {
                navigator.geolocation.getCurrentPosition(function (position) {
                    var pos = {
                        lat: position.coords.latitude,
                        lng: position.coords.longitude
                    };

                    map.setCenter(pos);
                }, function () {
                    handleLocationError(true, infoWindow, map.getCenter());
                });
            } 
            // Create an array of alphabetical characters used to label the markers.
            var labels = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';

            // Add some markers to the map.
            // Note: The code uses the JavaScript Array.prototype.map() method to
            // create an array of markers based on a given "locations" array.
            // The map() method here has nothing to do with the Google Maps API.
            var markers = locations.map(function (location, i) {
                console.log(location[2]);
                return new google.maps.Marker({
                    position: location,
                    label: labels[i % labels.length], 
                });

            }); 

            console.log(markers);

            // Add a marker clusterer to manage the markers.
            var markerCluster = new MarkerClusterer(map, markers,
                    {imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'});
        }
        var locations = [{"lat":52.2885818,"lng":7.4184098,"title":"test"},{"lat":52.2756548,"lng":7.4223696,"title":"test"}]  

我希望你能告诉我如何整合这些工具提示。

我找到了这样的代码:

google.maps.event.addListener(markers,'click',function() {
var infowindow = new google.maps.InfoWindow({
  content:"Hello World!"
});

infowindow.open(地图,标记);   });

但我不确定如何实施。帮助将是恐惧。非常感谢!

1 个答案:

答案 0 :(得分:0)

您好yfain尝试此代码!。

<script>
var AllMarkers = [];
google.maps.event.addDomListener(window, 'load', initMap);
function initMap(position) {
        var map = new google.maps.Map(document.getElementById('map'), {
            zoom: 10,
            center: {lat: 51.1427552, lng: 8.2123375}
        });
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(function (position) {
                var pos = {
                    lat: position.coords.latitude,
                    lng: position.coords.longitude
                };

                map.setCenter(pos);
            }, function () {
                handleLocationError(true, infoWindow, map.getCenter());
            });
        } 
        // Create an array of alphabetical characters used to label the markers.
        var labels = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';

        // Add some markers to the map.
        // Note: The code uses the JavaScript Array.prototype.map() method to
        // create an array of markers based on a given "locations" array.
    // The map() method here has nothing to do with the Google Maps API.

        //var markers = locations.map(function (location, i) {
        //   // console.log(location[2]);
        //    return new google.maps.Marker({
        //        position: location,
        //        icon:'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m',
        //        label: labels[i % labels.length], 
        //    });

        //}); 
        $.each(locations, function (i, location) {
            debugger;
                console.log(location.lat+', '+location.lng);
var points = {
                lat: location.lat,
                lng: location.lng
            };
            map.setCenter(points);
            var myLatlng = new google.maps.LatLng(location.lat, location.lng);
            var marker = new google.maps.Marker({
                position: myLatlng,
               map: map,
                title: labels,
                icon: 'http://maps.google.com/mapfiles/ms/icons/blue.png'
            });
            AllMarkers.push(marker)
            marker.info = new google.maps.InfoWindow({
                content: location.title
               // content: labels[i % labels.length]
        });
        google.maps.event.addListener(marker, 'click', function (e) {
         marker.info.open(map, marker);
     });
        });

        //console.log(markers);

        // Add a marker clusterer to manage the markers.
    //    var markerCluster = new MarkerClusterer(map, markers,
    //            {imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'});
    }
var locations = [{ "lat": 30.740762, "lng": 76.783013, "title": "Loc-1" }, { "lat": 30.733532, "lng": 76.77134, "title": "Loc-2" }]

</script>