覆盖物开源代码中提供了一些基于基础覆盖物而组合而成的高级覆盖物,包括用于显示poi数据,规划路线,公交详情路线的覆盖物。
indoorrouteoverlay/transitrouteoverlay/walkingrouteoverlay/bikingrouteoverlay/drivingrouteoverlay/masstransitrouteoverlay/ 以上源码在baidumapsapidemo工程(eclipse开发环境)和baidumapapiasdemo工程(androidstudio开发环境)com.baidu.mapapi.ovelayutil包下。 在进行路线规划overlay绘制时根据开发环境选择开源工程添加至项目中使用。
驾车路径规划可以根据起终点和驾车路线的数据,使用drivingrouteoverlay画出驾车路线图层,包括起终点和转弯点。支持自定义起终点和转弯点图标。
msearch =routeplansearch.newinstance();
ongetrouteplanresultlistener listener =newongetrouteplanresultlistener(){......@overridepublicvoidongetdrivingrouteresult(drivingrouteresult drivingrouteresult){//创建drivingrouteoverlay实例drivingrouteoverlay overlay =newdrivingrouteoverlay(mbaidumap);if(drivingrouteresult.getroutelines().size()>0){//获取路径规划数据,(以返回的第一条路线为例)//为drivingrouteoverlay实例设置数据overlay.setdata(drivingrouteresult.getroutelines().get(0));//在地图上绘制drivingrouteoverlayoverlay.addtomap();}}......};
注:需要将下载并解压后的baidumapsapiasdemo或baidumapsapidemo工程根据开发环境选择并添加到您的项目中才可以使用以上overlay功能。
msearch.setongetrouteplanresultlistener(listener);
plannode stnode =plannode.withcitynameandplacename("北京","西二旗地铁站");plannode ennode =plannode.withcitynameandplacename("北京","百度科技园-2号楼");
msearch.drivingsearch((newdrivingrouteplanoption()).from(stnode).to(ennode));
msearch.destroy();
效果如图:
上一篇
下一篇
本篇文章对您是否有帮助?