123456789101112131415161718192021 |
- import http from "@/utils/request.js";
- // 获取地图中心点
- export const getMapCenterPoint_Api = () => http.get('/h5/biz/map/getCenterPoint')
-
-
- // 获取地图列表
- export const getMapList_Api = (params) => http.get('/h5/biz/map/list' , {params:params})
- // 获取地图类型
- export const getMaptypeList_Api = (params) => http.get('/h5/biz/maptype/list' , {params:params})
- // 获取地图点位服务
- export const getMapMatterList_Api = (params) => http.get('/h5/biz/map/matterList' , {params:params})
- // 获取地图点位服务
- export const getMapMatterListH6_Api = (params) => http.get('/h6/biz/map/matterList' , {params:params})
|