如何在Google Maps API中获取高速公路和道路的纬度和经度

时间:2016-04-04 21:27:15

标签: google-maps google-maps-api-3 latitude-longitude google-latitude

在我的公司,我们使用Google maps API对地址进行地理编码以获取纬度和经度。 Fpor城市,它运作良好。但是当我们必须找到Lat / Long of Highway / Roads时,那里没有数字。我们只有地址的名称/代码和它的公里/英里位置(即:50公里处的BR-060,或者150英里处的Bandeirantes高速公路)。

我住在巴西,所以也许我们使用的表达方式并不匹配,但我想知道是否有找到这些地址的纬度/长度的方法,因为我们无法做到找到他们。我们试图查看Google的文档但没有成功。

1 个答案:

答案 0 :(得分:0)

Here's an example that shows how the Google Autoocomplete API returns back the latitude and longitude

var autocomplete = new google.maps.places.Autocomplete(street);

google.maps.event.addListener(autocomplete, 'place_changed', function() {
  var place = autocomplete.getPlace().geometry.location;
  document.getElementById("lat").value = place.lat();
  document.getElementById("lon").value = place.lng();
});
input {
  width: 400px;
}
<script src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places&dummy=.js"></script>
<form>
  <input type="text" id="street" name="street" placeholder="street">
  <br>
  <input type="text" id="lat" placeholder="lat">
  <br>
  <input type="text" id="lon" placeholder="lon">
  <br>
</form>