如何在Angular中使用谷歌距离矩阵API



我正在尝试使用谷歌距离矩阵API https://developers.google.com/maps/documentation/distance-matrix/start。 我有从当前位置(原点纬度(获取的必要请求参数,当我单击标记(我得到目的地纬度和液化天然气(时。现在我正在尝试调用服务文件中的API,它无法正常工作。

以下是服务代码: 下面是在 sendQuery 对象中传递的请求参数。

apiKeyToPass: "this will be apikey"
srcDestinationLat: 29.9809683
srcDestinationLng: 31.3377553
srcOriginLat: 11.127122499999999
srcOriginLng: 78.6568942

代替 apikey,我正在传递 apikey。 如何在下面的URL中传递上述sendQuery参数,以便我得到所需的响应。

getDistanceMatrix(sendQuery): Observable<any> {
return this.http.get('https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins={{srcOriginLat}},{{srcOriginLng}}&destinations={{srcDestinationLat}},{{srcDestinationLng}}&key=apikey') 
.map((response: Response) => {
return response.json();
})
.catch(this.handleError);
}

当我执行上面的代码时,代码运行到异常循环而不是进入响应循环。

@agm/core 的版本是 1.0.0,你还必须安装 @types/googlemaps。接下来,您需要导入

import {} from 'googlemaps'; 

到您的组件中。

您可能会看到如下错误:node_modules/@types/googlemaps/index.d.ts' 不是模块。 要更正此错误,只需在 src 目录中创建一个名为 index.d.ts 的文件,然后输入以下行:

declare module 'googlemaps'; 

要使用距离矩阵服务,请在组件中使用下一个:

public getDistance(origin: LatLng, destination: LatLng) {
const matrix = new google.maps.DistanceMatrixService();
return new Promise((resolve, reject)=>{
matrix.getDistanceMatrix({
origins: [new google.maps.LatLng(origin.lat, origin.lng)],
destinations: [new google.maps.LatLng(destination.lat,destination.lng)],
travelMode: google.maps.TravelMode.DRIVING,
},
function(response, status) {
if (status === 'OK'){
resolve(response)
} else {
reject(response);
}
});
});
}

这项工作对我来说:

public getDistancia(origen: string, destino: string) {
return new google.maps.DistanceMatrixService().getDistanceMatrix({'origins': [origen], 'destinations': [destino], travelMode: 'DRIVING'}, (results: any) => {
console.log('resultados distancia (mts) -- ', results.rows[0].elements[0].distance.value)
});
}

相关内容

  • 没有找到相关文章

最新更新