| 123456789101112131415 |
- import https from '@/plugins/luch-request_0.0.7/request'
- // 经纬度解析地址(高德逆地理) lat, long, locationType(gcj02|wgs84)
- export const mapResolve = data => {
- return https.get('/map/resolve', data)
- }
- export const mapNearby = data => {
- return https.get('/map/nearby', data)
- }
- //是否已经导航过
- export const hasHitNavigate = data => {
- return https.get('/map/has-hit-navigate', data)
- }
|