如何添加infowindow距离和时间像谷歌地图的折线连接两个点?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何添加infowindow距离和时间像谷歌地图的折线连接两个点?相关的知识,希望对你有一定的参考价值。
我工作在离子离子谷歌地图应用程序和使用谷歌提供的本机和方向服务我甲型肝炎多个途径,使用以下代码:calculateAndDisplayRoute() {
var points = [];
this.directionsService.route({
origin: this.start,
destination: this.end,
travelMode: ‘DRIVING‘,
provideRouteAlternatives: true
}, (response, status) => {
if (status === ‘OK‘) {
var step = 1;
for(var j=0;j<response.routes.length;j++){
points=[]
for (var i = 0; i < response.routes[j].overview_path.length; i++) {
points.push(response.routes[j].overview_path[i].toJSON())
}
let position=points[20]
this.drawRoutePolyLine(points,j,position)
step=step+1
}
} else {
window.alert(‘Directions request failed due to ‘ + status);
}
});
} 帮我添加infowindow
以上是关于如何添加infowindow距离和时间像谷歌地图的折线连接两个点?的主要内容,如果未能解决你的问题,请参考以下文章
android:如何加载和显示大图像(A0 大小) - 就像谷歌地图一样?