1

在所有主要浏览器中,我在地图上的标记都可以使用,但在 chrome 中则不行。有时他们会工作,大多数情况下他们不会无缘无故。我得到的错误是: Uncaught TypeError: Type error as in this link。http://d.pr/i/Ojxc

我到 Main.js 的链接是缩小的 google api js 文件。当我缩小地图时,我一遍又一遍地得到错误。然后缩放无缘无故停止,然后地图块。

在 html 中一切都是正确的,ajaxcall 返回正确的数据,它可以在 Safari、Opera、Firefox 中运行。

我在这里很绝望。

我的js代码:

function addStores(){

if(typeof google === 'object' && typeof google.maps === 'object'){
    try{
        $.ajax({
            type:"GET",
            url: api_url + '/locations',
            success: function(data){
                var stores = $.parseJSON(data);

                for(var i=0; i<stores.length; i++){
                    console.log("hallo");
                    var indi = i;
                    var image = new google.maps.MarkerImage('images/store/pin_@2x.png', null, null, null, new google.maps.Size(32,50));
                    var myLatLng = new google.maps.LatLng(stores[i].latitude, stores[i].longitude);

                    var marker = new google.maps.Marker({
                        position: myLatLng,
                        map:map,
                        icon: image,
                        tel: stores[i].tel,
                        state: stores[i].state,
                        street: stores[i].street
                    });

                    google.maps.event.addListener(marker, 'click', function(){
                        console.log("hkom");
                        map.setCenter(new google.maps.LatLng(marker.position.lat(), marker.position.lng()));
                        map.setZoom(15);

                        console.log("hallo");
                        opPinGeklikt(event, this);
                    });
                }

            },error:function(){
                console.log(arguments);
            }
        });

    }catch(e){
        console.log(e);
    }
}

}

提前谢谢。W。

4

1 回答 1

5

要在 chrome 中工作,请添加

优化:假

标记的选项。

于 2013-07-02T14:09:33.117 回答