Google maps v3 - 缩放到标记时出错

时间:2013-04-29 11:37:13

标签: javascript json google-maps asp.net-mvc-4 google-maps-api-3

我正在尝试将google maps v3元素加载到我的网站中,用户可以动态选择一些过滤器来显示某些标记。然后将结果序列化为映射对象的JSON文件,以用于设置指定的标记。

我尝试按如下方式制作测试页:

@section headerScripts {
    <script src="~/Scripts/jquery-1.9.1.js"></script>
    <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>

    <script type="text/javascript">
        var map;
        var latlng = new google.maps.LatLng(56.29216, 10.34912);
        var markerList = [];

        function initialize() {
            var mapOptions = {
                zoom: 7,
                center: latlng,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            }
            map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
        }

        function addMarkers(stores) {
            for (var i = 0; i < stores.length; i++) {
                var marker = new google.maps.Marker({
                    position: new google.maps.LatLng(stores[i].Latitude, stores[i].Longitude),
                    map: map,
                    title: stores[i].Name
                });
                markerList.push(marker);
            }
            zoomToMarkers();
        }

        function zoomToMarkers() {
            var latlngbounds = new google.maps.LatLngBounds();
            markerList.forEach(function (n) {
                latlngbounds.extend(n);
            });
            map.setCenter(latlngbounds.getCenter());
            map.fitBounds(latlngbounds);
        }

        $(document).ready(function () {
            initialize();
            $.getJSON("/Product/GetStore/", addMarkers);
        });

    </script>
}

<div id="map-canvas" style="width: 500px; height: 500px;"></div>

它设置标记可以正常工作,但是我想要一个缩放功能,这样只有地图上的标记才会显示在“缩放”中。但是当我调用zoomToMarkers(基于我在网上发现的一个函数)时 - 我从google maps js文件中得到一个错误:

https://maps.gstatic.com/intl/da_dk/mapfiles/api-3/12/9/main.js第16行第353行未处理的异常 0x800a01b6 - Microsoft JScript运行时错误:对象不支持属性或方法'lat'

我不知道为什么会这样,因为似乎很多其他人已经开始工作了。你们能帮忙吗?

1 个答案:

答案 0 :(得分:0)

我自己发现了这个错误。问题在于这一行

latlngbounds.extend(n);

我将标记对象添加到latlngbounds而不是坐标。所以我纠正了这个:

function addMarkers(stores) {
    for (var i = 0; i < stores.length; i++) {
        var marker_latlng = new google.maps.LatLng(stores[i].Latitude, stores[i].Longitude);
        var marker = new google.maps.Marker({
            position: marker_latlng,
            map: map,
            title: stores[i].Name
        });
        latlngbounds.extend(marker_latlng);
    }
    zoomToMarkers();
}

function zoomToMarkers() {
    map.setCenter(latlngbounds.getCenter());
    map.fitBounds(latlngbounds);
}

完美无缺!