在Google Maps v3 reference中,我看到有一种方法setDraggable(boolean)
可以应用于地图标记。
但是,我想在地图setDraggable
上设置为,而不是在地图标记上。
我已在 mapOptions 中将属性设置为,但我不知道如何将其设置为以后 ...不起作用:
true
draggable
false
true
map.setDraggable(true)
// object literal for map options
var myOptions =
{
center: new google.maps.LatLng(37.09024, -95.712891),
zoom: 4, // smaller number --> zoom out
mapTypeId: google.maps.MapTypeId.TERRAIN,
// removing all map controls
disableDefaultUI: true,
// prevents map from being dragged
draggable: false,
// disabling all keyboard shortcuts
keyboardShortcuts: false,
disableDoubleClickZoom: true,
// do not clear the map div
noClear: true
};
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
map.setDraggable(true); // does NOT work!