📌  相关文章
📜  从 google places api 获取 latlng - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:51.342000             🧑  作者: Mango

代码示例1
function GetLatlong() {
  var geocoder = new google.maps.Geocoder();
  var address = document.getElementById('textboxid').value;

  geocoder.geocode({
    'address': address
  }, function(results, status) {

    if (status == google.maps.GeocoderStatus.OK) {
      var latitude = results[0].geometry.location.lat();
      var longitude = results[0].geometry.location.lng();
    }
  });
}