Google Map API - 如何停止滚动(JavaScript)

时间:2015-04-01 18:52:20

标签: javascript google-maps scroll

我正在尝试停止在我的Google地图上滚动。我已经查看了其他问题,大多数答案都说滚动:false为你的地图选项,但这没有用。有人对此有任何指示吗?

function initialize() {

  var myLatlng = new google.maps.LatLng(51.843143, -2.643555),
    map = new google.maps.Map(document.getElementById('map'), {
      zoom: 12,
      center: myLatlng
    }),
    infowindow = new google.maps.InfoWindow({
      content: "<b>Paddle the Wye base</b>"
    }),
    marker = new google.maps.Marker({
      position: myLatlng,
      map: map,
      title: "We are here!"
    });
  google.maps.event.addListener(marker, 'click', function() {
    infowindow.open(map, marker);
  });
  infowindow.open(map, marker);

  var accessPoint1 = new google.maps.LatLng(51.840913, -2.638603),
    marker1 = new google.maps.Marker({
      position: accessPoint1,
      map: map,
      title: "Access Point 1"
    });
  map.controls[google.maps.ControlPosition.TOP_LEFT].push($("#findButton")[0]);


  function successCallback(position) {
    var latlng = new google.maps.LatLng(position.coords.latitude,
        position.coords.longitude),

      myOptions = {
        zoom: 3,
        center: latlng,
        mapTypeControl: false,
        scrollwheel: false,
        navigationControlOptions: {
          style: google.maps.NavigationControlStyle.SMALL
        },
        mapTypeId: google.maps.MapTypeId.ROADMAP
      },
      bounds = new google.maps.LatLngBounds(latlng);

    bounds.extend(marker.getPosition());

    map.setOptions(myOptions);

    map.fitBounds(bounds);

    new google.maps.Marker({
      position: latlng,
      map: map,
      title: "You are here!",
      icon: 'http://maps.gstatic.com/mapfiles/markers2/boost-marker-mapview.png'
    });
  }

  function errorCallback() {
    alert("I'm afraid your browser does not support geolocation.");
  }

  function findMe() {
    $(this).hide();

    if (navigator.geolocation) {
      navigator.geolocation.getCurrentPosition(successCallback, errorCallback, {
        timeout: 10000
      });
    } else {
      alert("I'm afraid your browser does not support geolocation.");
    }
  }

  $("#findButton").click(findMe);
}

google.maps.event.addDomListener(window, 'load', initialize);

1 个答案:

答案 0 :(得分:1)

我无法完全理解您的代码,但您必须在此处添加:

var myLatlng = new google.maps.LatLng(51.843143, -2.643555),
    map = new google.maps.Map(document.getElementById('map'), {
      zoom: 12,
      center: myLatlng,
-->      scrollwheel: false
    }),