全部服务产品
开发者频道
定价
登录
推荐上车点
下载开发文档
简介

推荐上⻋点功能是基于用户定位的周边范围内的道路信息、步行距离、方向等信息实现的,该数据依托百度位置大数据的沉淀积累,推送合理上⻋点,降低接驾时间。

使用说明

推荐上⻋点功能对普通开发者仅提供试用配额。配额提升针对合作用户。如果有配额需求,请在工单反馈给我们。

实现步骤
search.requestRecommendStop({
location: this.markerLoc
})
.then((res: RecommendStopResult) => {
let status = res.error as ERRORNO;
if (status === ERRORNO.NO_ERROR) {
if (typeof res.recommendStopInfoList === "undefined") {
return;
}
for (let i = 0; i < res.recommendStopInfoList.length; i++) {
let recommendStopInfo = res.recommendStopInfoList[i]
let stopLocation = new LatLng(recommendStopInfo.bd09ll_y, recommendStopInfo.bd09ll_x);
let image:ImageEntity = new ImageEntity('rawfile://start.png', 50, 81);
let marker:Marker = new Marker({
position: stopLocation,
icon: image,
yOffset: 0,
isFlat: false,
isDraggable: true,
rotate: 0,
alpha: 0.9,
scaleX: 2,
scaleY: 2,
isTop: true
});
this.map?.addOverlay(marker)
}
}
})

上一篇

天气服务

下一篇

检索行政区边界数据

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