harmonynextsdk | 百度地图api sdk-凯发k8官方旗舰厅

浏览器版本低!无法浏览完整内容,建议升级或更换浏览器。
驾车路线规划
下载开发文档

驾车路线规划可以根据起终点获取驾车路线规划数据,并可以通过添加polyline绘制出驾车路线,效果图:

效果示例
示例代码:
constdr:drivingroute=newdrivingroute();
// 获取驾车路线规划
dr.getroutelines(fromarr, toarr,(res:routeres)=>{
// 选取第一个路线规划方案
let routes = res.routes[0];
// 解析路线
letsteps:steps = routes.steps[0];
letline:array<latlng>=[];
for(let i =0; i < steps.length; i){
letll:latlng=newlatlng(steps[i].path[0].lat, steps[i].path[0].lng);
line.push(ll);
}
// 绘制路线
letpolyline:polyline=newpolyline({
points: line,
fillcolor:'#6af',
width:10,
join:sysenum.linejointype.round,
cap:sysenum.linecaptype.round,
isthined:true,
isgeodesic:true
});
this.mapcontroller?.addoverlay(polyline);
},{})

上一篇

正逆地理编码

下一篇

骑行路线规划

本篇文章对您是否有帮助?

网站地图