1

我正在尝试用地理位置做一些事情。我想将一个变量中的地理位置纬度和经度作为数组取回。它不起作用。我认为代码中的第一行是问题所在。是否有可能获得这样的价值(有回报)?

startingPoint = navigator.geolocation.getCurrentPosition(onGeoSuccess);

function onGeoSuccess(position) {
    start['lat'] = position.coords.latitude;
    start['lng'] = position.coords.longitude;
    return start;
}

有更好的解决方案吗?我不想在 onGeoSuccess 中执行其他代码,我想返回值。

4

2 回答 2

1

你可以尝试这样的事情:

function geolocate() {
  if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(function(position) {
      var geolocation = new google.maps.LatLng(
        position.coords.latitude, position.coords.longitude);
      var circle = new google.maps.Circle({
        center: geolocation,
        radius: position.coords.accuracy
      });
      autocomplete.setBounds(circle.getBounds());
    });
  }
}
于 2015-01-26T18:18:45.633 回答
0

检查是否支持地理定位并执行这样的代码

function getLocation()
  {
  if (navigator.geolocation)//check for support
    {
    navigator.geolocation.getCurrentPosition(showPosition);
    }
  else{x.innerHTML="Geolocation is not supported by this browser.";}
  }
function showPosition(position)
  {
  x.innerHTML="Latitude: " + position.coords.latitude + 
  "<br>Longitude: " + position.coords.longitude; 
  }
于 2013-04-17T11:37:42.100 回答