0

我的网站上有一张谷歌地图,它可以获取用户的位置,然后显示带有用户位置的地图以及到地图上某个固定点的路线。当地图加载它只填充 div 的一个小角落时,我使用以下代码解决了这个问题:

google.maps.event.trigger(map, 'resize');

但是我现在遇到的问题是地图没有放大到指定的级别,并且它没有再次以代码中指定的用户位置为中心。

地理位置代码:

if (navigator.geolocation) { 
  navigator.geolocation.getCurrentPosition(geoInfo, noGeoInfo);
} else {
  noGeoInfo();
}

function geoInfo(position) { 
  navigator.geolocation.getCurrentPosition(function (position) { 
    var latitude = position.coords.latitude;                    
    var longitude = position.coords.longitude;                 
    var coords = new google.maps.LatLng(latitude, longitude); 
    var directionsService = new google.maps.DirectionsService();
    var directionsDisplay = new google.maps.DirectionsRenderer();
    var mapOptions = { 
      zoom: 15,        
      center: coords,
      mapTypeControl: true, 
      navigationControlOptions:
      {
        style: google.maps.NavigationControlStyle.SMALL 
      },
      mapTypeId: google.maps.MapTypeId.ROADMAP 
    };
    map = new google.maps.Map(  document.getElementById("mapContainer"), mapOptions); 
    directionsDisplay.setMap(map); 
    var request = {
      origin: coords, 
      destination: '54.861283, -6.326805', 
      travelMode: google.maps.DirectionsTravelMode.DRIVING 
    };
    directionsService.route(request, function (response, status) {
      if (status == google.maps.DirectionsStatus.OK) {
        directionsDisplay.setDirections(response);
      }
    });
  });
}

function noGeoInfo() { 
  var location = new google.maps.LatLng(54.861283, -6.326805); 
  var mapOptions = { 
    center: location, 
    zoom: 15, 
    mapTypeId: google.maps.MapTypeId.ROADMAP 
  };
  var map = new google.maps.Map(document.getElementById("mapContainer"), mapOptions);
  marker = new google.maps.Marker({ 
    position: location,
    map: map
  });
}

为什么它不以指定位置或缩放级别为中心?

4

0 回答 0