map放大/缩小以动态包含所有引脚

时间:2012-02-09 16:09:58

标签: javascript jquery google-maps zoom pins

我有一张地图显示每个引脚的引脚和信息窗口。缩放级别为9,在该缩放级别,不显示某些引脚。我需要动态控制缩放级别,以便一次显示地图画布中的所有引脚。

2 个答案:

答案 0 :(得分:3)

拥有LatLngBounds对象。在创建每个标记时,您需要扩展边界以包含每个标记的位置。然后在最后调用fitBounds方法调整地图大小以适合所有标记。

function initialize() {
        var arrPoints = [
            {
                lat: 51.498725,
                lng: -0.17312,
                description: "One",
                price: 1.11
            },
            {
                lat: 51.4754091676,
                lng: -0.186810493469,
                description: "Two",
                price: 2.22
            },
            {
                lat: 51.4996066187,
                lng: -0.113682746887,
                description: "Three",
                price: 3.33
            },
            {
                lat: 51.51531272,
                lng: -0.176296234131,
                description: "Four",
                price: 4.44
            }
        ];

        var centerLatLng = new google.maps.LatLng(51.532315,-0.1544);

        var map = new google.maps.Map(document.getElementById("map"), {
            zoom:               15,
            center:             centerLatLng,
            mapTypeId:          google.maps.MapTypeId.ROADMAP
        });

        // create the Bounds object
        var bounds = new google.maps.LatLngBounds();

        var homeMarker = new google.maps.Marker({
            position: centerLatLng,
            map: map,
            icon: "http://maps.google.com/mapfiles/ms/micons/green-dot.png"
        });

        for (var i = 0; i < arrPoints.length; i++) {
            position = new google.maps.LatLng(arrPoints[i].lat, arrPoints[i].lng);

            var marker = new google.maps.Marker({
                position: position,
                map: map
            });

            google.maps.event.addListener(marker, 'click', function() {
                infowindow.open(map, this);
            });

            // extend the bounds to include this marker's position
            bounds.extend(position);
        }

        // make sure we include the original center point
        bounds.extend(centerLatLng);

        // resize the map
        map.fitBounds(bounds);
    }

答案 1 :(得分:0)

您可以使用map.fitBounds功能缩放到特定的边界区域。要获得此区域,您只需循环遍历所有引脚并获取坐标的最小值/最大值。

已经有final solution in the shamess blog.