Google地图地理编码 - 结果相关性

时间:2014-08-22 13:01:35

标签: javascript google-maps google-maps-api-3

我使用的是Google Maps Javascript API的基本功能

来自Google的代码示例:

https://developers.google.com/maps/documentation/javascript/examples/geocoding-simple

var geocoder;
var map;
function initialize() {
  geocoder = new google.maps.Geocoder();
  var latlng = new google.maps.LatLng(-34.397, 150.644);
  var mapOptions = {
    zoom: 8,
    center: latlng
  }
  map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}

function codeAddress() {
  var address = document.getElementById('address').value;
  geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      map.setCenter(results[0].geometry.location);
      var marker = new google.maps.Marker({
          map: map,
          position: results[0].geometry.location
      });
    } else {
      alert('Geocode was not successful for the following reason: ' + status);
    }
  });
}

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

正如您所知,当我们输入街道名称时,即使我们有多个结果,上面的示例也只是显示一个。我已经改变了它以循环所有结果,它工作正常。

我的问题是:

geocoder.geocode 结果按任何条件排序?

如果答案是肯定的,是否可以按当前用户位置的最相关/接近位置排序结果? (我将传递当前用户位置)。

非常感谢

2 个答案:

答案 0 :(得分:0)

我所知道的最近的事情是使用区域偏向:https://developers.google.com/maps/documentation/geocoding/intro#RegionCodes

答案 1 :(得分:0)

您使用了错误的API,请尝试使用Google Places API。这种受欢迎程度(首选)。

或者您可以使用一些代码循环搜索结果并找到距原始位置的距离。然后你可以按距离排序(有效,但我认为人气是你想要的)