向 Google 发出 GET 请求映射 API 返回错误请求 400 错误 - javascript

Making GET request to Google Maps API returning bad request 400 error - javascript

你好 :) 只是想在这个 post 之前说我是一个非常初级的开发人员并且我仍在努力让我的头脑了解使用 os APIs !

所以我试图创建一个页面,让用户在地图上放置标记,然后使用标记的纬度和经度向 google 地图 API 发出获取请求标记所在城市的名称,然后将城市名称放入地图旁边的面板中。但是,我的 GET 请求有问题,它 return 在控制台中出现 400 错误请求错误。

我想显示标记所在的所有城市的列表,因此我尝试在 URL 中使用插值,以便它可以反复用于所有纬度和经度return被掉落的别针所影响。所以我使用了以下 url https://maps.googleapis.com/maps/api/geocode/json?latlng=${findCityLng},${findCityLng}&sensor=true&key=MY_API_KEY; (在我的代码中,我已经输入了我的实际 API 密钥,但是为了这个 post 已经把它取出来了)。

我想知道如何修复 URL 以便它仍然可以在任何纬度和经度上使用而无需硬编码它们的值,这样它就会 return JSON 我可以深入了解获取城市名称而不是 return 400 错误。我有 googled 和 googled 但是没有关于使用插值创建 url 来发出 API 请求或者为什么要向 google maps api 在发出 get 请求时会 return 出现 400 错误。我已经用谷歌搜索了几个小时并阅读了 Google 地图 API 文档,但无法 find/understand 我需要的东西。

如有任何帮助,我们将不胜感激。

这是我的所有代码(请注意,我不得不删除我的 API 密钥,我认为没有它代码片段将 运行 但我不确定如何 pos不对!抱歉,如果这不是正确的做法):

console.log('hello world');


let myPlaces = [];
let map;
let findCityLat;
let findCityLng;



  initMap = function() {
    map = new google.maps.Map(document.getElementById('map'), {
      center: {lat: 36.2048, lng: 138.2529},
      zoom: 6.8
    });



    map.markerList = [];
    map.addListener('click', addPlace);

    const placesFromLocalStorage = JSON.parse(localStorage.getItem('myPlaces'));
    if (Array.isArray(placesFromLocalStorage)) {
      myPlaces = placesFromLocalStorage;
      renderMarkers();                  
    }
                                 



    function addPlace(event) {
    

      myPlaces.push({
        position: event.latLng
      });

      console.log(myPlaces);


      localStorage.setItem('myPlaces', JSON.stringify(myPlaces)); 
      renderMarkers();                                            
    }

    function getCity() {
      for (var i = 0; i < myPlaces.length; i++) {
        findCityLat = myPlaces[i].position.lat;
        findCityLng = myPlaces[i].position.lng;
        console.log(`Lat: ${findCityLat}`);
        console.log(`Lng: ${findCityLng}`);


        const fetchCity = function () {
          const xhr = new XMLHttpRequest();
          xhr.onreadystatechange = function () {
            console.log('readyState', xhr.readyState);
            
            if (xhr.readyState !== 4) {
              return;
            }

            const info = JSON.parse( xhr.response ); 

            const p = document.createElement('p');
            p.innerHTML = `<strong>${ info.result }`; 
            document.body.appendChild( p );
          }
          xhr.open('GET', `https://maps.googleapis.com/maps/api/geocode/json?latlng=${findCityLng},${findCityLng}&sensor=true&key=MY_API_KEY`);
          xhr.send(); // Asynchronous

        };

        window.onload = function() {
          setTimeout(fetchCity,1500)

      }

    }

  }
    getCity();

    function renderMarkers() {
      map.markerList.forEach(m => m.setMap(null)); 
      map.markerList = [];

      myPlaces.forEach((place) => {                     
        const marker = new google.maps.Marker({         
          position: place.position,                     
          map: map
        });

        map.markerList.push(marker);
      });
    }

  }



     initMap();
@import url('https://fonts.googleapis.com/css?family=Quicksand');


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.main-container {
  margin: 15px;
  display: flex;
}

.sidebar {
  border: rgba(101, 171, 236, 0.56) solid 3px;
  font-size: 0.75em;
  height: 50vh;
  width: 37vw;
  margin: auto;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  padding: 2px;
}

#map {
  height: 50vh;
  width: 60vw;
  margin: auto;
}

.earthIcon {
  width: 1em;
}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>My Favourite Places</title>
  <link rel="stylesheet" href="style/master.css">
  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="shortcut icon" href="images/earth.ico" type="image/x-icon">

</head>
<body>
  <div class="main-container">
    <div class="sidebar">
      <h1>My favourite places in the <img class="earthIcon" src="images/earth.ico"</h1>
      <div id="favPlacesList">

      </div>
    </div>

    <div class="main-content-area">
      <div id="map"></div>
    </div>
  </div>

    <script src="https://maps.googleapis.com/maps/api/js?key=MY_API_KEY&libraries=places"></script>


  <script src="js/main.js"></script>

</body>

</html>

在请求google张地图时,出现这样的错误:

Google Maps JavaScript API error: InvalidKeyMapError https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key-map-error

您可以在此处阅读有关该错误的信息

https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key-map-error

上面link的信息表明您需要生成一个新的api密钥here

然后像这样将新生成的 api 添加到您的页面

  <script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"
  type="text/javascript"></script>

您正在向以下 url 提出请求:

`https://maps.googleapis.com/maps/api/geocode/json?latlng=${findCityLng},${findCityLng}&sensor=true&key=MY_API_KEY`

但是,这个url包含两倍的经度,而不是包含纬度和经度。

它应该更适合:

`https://maps.googleapis.com/maps/api/geocode/json?latlng=${findCityLat},${findCityLng}&key=MY_API_KEY`

请注意:

  • 虽然不是错误的原因,但我删除了 sensor 参数,因为它不再需要(来源:documentation
  • 您可以(但不必)使用 Javascript API 中的反向地理编码。在引擎盖下,它执行您正在做的事情,调用地理编码 http url,但由于您在 javascript 环境中工作,因此您的代码可能更简单。