14


Google Maps v3リファレンスに はsetDraggable(boolean)、マップマーカーに適用できる 方法があるようです。ただし、マップマーカー ではなく、マップ上に設定し

たいと思います。 mapOptionsでプロパティをに設定しましたが、後でこれを設定する方法がわかりません...  機能しませsetDraggabletrue

draggablefalsetruemap.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!
4

3 に答える 3

23

試す:

map.setOptions({draggable: true});
于 2012-12-18T16:04:28.433 に答える
1

このセクションにコードを入力すると、モバイルとデスクトップで機能しました

function initialize()
    {
    var mapProp = {
      center:myCenter,
      zoom:5,
      draggable:false,
      mapTypeId:google.maps.MapTypeId.ROADMAP
      };
于 2015-06-10T19:07:55.090 に答える
0

setDraggableはMapクラスでは使用されません。

それはで使用されます:

マーカークラス
ポリラインクラス
ポリゴンクラス
長方形クラス、およびサークルクラス

あなたの場合、あなたは単に使うことができます:

map.draggable = true;
于 2016-04-08T13:32:37.150 に答える