谷歌地图接口; "CORS header ‘Access-Control-Allow-Origin’ missing"错误



我正在尝试使用Google Maps API计算两个地方之间的估计旅行时间。我通过以下方式要求提供数据:

const Url = 'https://maps.googleapis.com/maps/api/distancematrix/json?origins=25.7694708,-80.259947&destinations=25.768915,-80.254659&key=' + API_KEY;
try {
  const response = await fetch(Url);
  console.log(response);
  const data = await response.json();
  console.log(data.rows);
} catch(e){
  console.log(e);
}

问题是在浏览器控制台中我收到错误:

TypeError: NetworkError when attempting to fetch resource

它还向我展示了一个警告:

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://maps.googleapis.com/maps/api/distancematrix/json?origins=25.7694708,-80.259947&destinations=25.768915,-80.254659&key=API_KEY. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing).

但是当我查看网络部分中的控制台时,它显示呼叫已成功完成,并向我显示以下 json:

{
   "destination_addresses" : [ "3670 SW 3rd St, Miami, FL 33135, USA" ],
   "origin_addresses" : [ "3911 SW 2nd Terrace, Coral Gables, FL 33134, USA" ],
   "rows" : [
      {
         "elements" : [
            {
               "distance" : {
                  "text" : "0.9 km",
                  "value" : 881
               },
               "duration" : {
                  "text" : "2 mins",
                  "value" : 144
               },
               "status" : "OK"
            }
         ]
      }
   ],
   "status" : "OK"
}

有人可以帮我解决这个问题吗?我在网站上尝试过类似的问题,但无法解决问题。提前谢谢。

您正在使用客户端的距离矩阵服务。但是客户端(浏览器(站点不支持您尝试访问 API 的方式,并且它将无法可靠地工作。

很高兴有一个适合您的用例的库:下面是客户端距离矩阵服务的指南。这是一个香草-js示例 看看吧。

也许这个片段会对你有所帮助:

const matrix = new google.maps.DistanceMatrixService();
matrix.getDistanceMatrix({
  origins: [new google.maps.LatLng(25.7694708, -80.259947)],
  destinations: [new google.maps.LatLng(25.768915, -80.254659)],
  travelMode: google.maps.TravelMode.DRIVING,
}, function(response, status) {
  //do something
});

相关内容

  • 没有找到相关文章

最新更新