map.js 385 B

123456789101112131415
  1. import http from "@/utils/request.js";
  2. // 获取地图中心点
  3. export const getMapCenterPoint_Api = () => http.get('/h5/biz/map/getCenterPoint')
  4. // 获取地图列表
  5. export const getMapList_Api = (params) => http.get('/h5/biz/map/list' , {params:params})
  6. // 获取地图类型
  7. export const getMaptypeList_Api = (params) => http.get('/h5/biz/maptype/list' , {params:params})