如何在Google Maps V3上居中和缩放多个标记

时间:2013-12-09 11:41:24

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

我使用以下代码:

 var geocoder;
    var map;
    var markers = [];
    function initialize() {
        geocoder = new google.maps.Geocoder();
        // var latlng = new google.maps.LatLng(51.733833,0.351563);
        var latlng = new google.maps.LatLng(53.590875,-2.279663);
        // var latlng = new Array (new google.maps.LatLng (52.537,-2.061), new google.maps.LatLng (52.564,-2.017));
        var myOptions = {
            zoom: 7,
            center: latlng,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        }
        map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

        addPostCode('EX4 5SP');
        addPostCode('EX16 6LH');
        addPostCode('M1 2AP');

}

我找到了一些如何实现此目的的示例在以下代码中:Google MAP API v3: Center & Zoom on displayed markers为实现此目的,使用以下代码。

// map: an instance of GMap3
// latlng: an array of instances of GLatLng
var latlngbounds = new google.maps.LatLngBounds();
latlng.each(function(n){
   latlngbounds.extend(n);
});
map.setCenter(latlngbounds.getCenter());
map.fitBounds(latlngbounds); 

问题是我需要使用Postcodes来显示地图上的位置。是否可以从邮政编码创建GLatLng实例数组,然后使用上面的代码缩放和居中地图上的多个标记?

2 个答案:

答案 0 :(得分:3)

GClientGeocoder可以获取邮政编码并返回GLatLng:请参阅https://groups.google.com/forum/#!topic/google-maps-api/JN8OW5Tyaws

要使多个标记居中,请参阅Find center of multiple locations in Google Maps

是的,这是V2-- GLatLng把我扔了。 V3中存在相同的功能: https://developers.google.com/maps/documentation/javascript/examples/geocoding-simple

答案 1 :(得分:1)

// locationsColl包含坐标列表

var latlng = [];
_.forEach(locationsColl, function (address) {
    latlng.push(address);
});

var latlngbounds = new google.maps.LatLngBounds();
_.forEach(latlng,function (n) {
    latlngbounds.extend(n);
});
// center map to central point between markers
map.setCenter(latlngbounds.getCenter());
// set zoom to fit all coord
map.fitBounds(latlngbounds);