freeqqmapplus
v1.0.3
Published
``` npm i freeqqmapplus ```
Readme
mapPlus
how to get
npm i freeqqmapplushow to use
import MapPlus from "freeqqmapplus"
this.map = new MapPlus({
AK: AK,
htmlId: 'id_for_map',
searchFun: services.getPlaceInfo,
getCurrentLocationFun: services.getDistrictInfo,
getLocationPoiFun: services.getlocationPoi,
complete: () => {
this.listenMapClickHandler = this.map.onClickMap(({ lat, lng }) => {
this.onClickMap(lat, lng);
});
},
});搜索
this.map.searchService()
使用须知
由于腾讯地图关闭了部分搜索功能,需要通过后端接口实现,参考 https://lbs.qq.com/webApi/javascriptV2/jsGuide/jsOverview
