Google地图点击拖动无效

时间:2012-06-23 11:29:11

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

我正在使用这个超级基本代码将谷歌地图添加到我的网站:

var map;
function initMaps(latIn, longIn, htmltext) {
    var LatLng = new google.maps.LatLng(latIn, longIn);
    var Options = {
        zoom: 13,
        center: LatLng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    map = new google.maps.Map(document.getElementById("mapStatic"), Options);

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

    marker.setMap(map);
    map.enableDragging(); 
}

google.maps.event.addDomListener(window, "load", initMaps);

地图显示正常,但由于某种原因我无法拖动它,是否有可能其他一些javascript正在执行此操作? 我环顾四周,但没有发现任何可能导致问题的事情。

0 个答案:

没有答案