谷歌地图标记显示在IE浏览器中,但不显示在chrome或firefox中

时间:2012-01-13 14:19:53

标签: javascript jquery google-maps google-maps-markers

我有一个谷歌地图,从文档中提取地址值并绘制它们。它在IE中工作正常。地图显示正常,标记显示。但是在Chrome和Firefox中,只显示地图而不显示标记。我不明白..因为标记没有显示,所以infowindow都没有工作。我虽然没有在这里包含inforwindow代码!

var geocoder;
var map;

function initializeMap() {
    geocoder = new google.maps.Geocoder();
    var latlng = new google.maps.LatLng(39.88445,-86.11084);
    var myOptions = {
      zoom: 9,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById("map_canvas"),
        myOptions);
}

function codeAddress() {
    var infowindow = new google.maps.InfoWindow({}); 
    $('span.LocationAddress').each(function(index) {
        var addy = $(this).text();          
        geocoder.geocode( { 'address': addy}, function(results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                    map.setCenter(results[0].geometry.location);
                    var marker = new google.maps.Marker({
                    map: map, 
                    position: results[0].geometry.location,
                    title:addy          
                });     
            } 

        });
    });
}

1 个答案:

答案 0 :(得分:0)

如果你在firefox中添加了firebug add,请在安装后按12,如果有任何代码问题,它将显示错误。另外,添加:

if (status == google.maps.GeocoderStatus.OK) {
                map.setCenter(results[0].geometry.location);
                var marker = new google.maps.Marker({
                map: map, 
                position: results[0].geometry.location,
                title:addy          
            });     
        } else{ console.log(google.maps.GeocoderStatus);}

这应该显示状态回归的原因。