📌  相关文章
📜  从 google places api 中的邮政编码获取 lat long - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:09.877000             🧑  作者: Mango

代码示例1
function getCoordinates(address){
  fetch("https://maps.googleapis.com/maps/api/geocode/json?address="+address+'&key='+API_KEY)
    .then(response => response.json())
    .then(data => {
      const latitude = data.results.geometry.location.lat;
      const longitude = data.results.geometry.location.lng;
      console.log({latitude, longitude})
    })
}