Newer
Older
CallCenterFront / src / api / map.js
// 精一地图相关请求

import request from '@/utils/request'

export function matchReverse(lng,lat) {
  return request({
    url: 'http://11.100.6.5:8084/services/address/matchReverse',
    method: 'post',
    headers:{
      'F-Auth-Key': '59T1JU2P28',
      'Content-Type': 'application/json;charset=UTF-8'
    },
    data:{
      xcoord: lng,
      ycoord: lat,
      thresholdValue: 100,
      dzlx: 1,
      rownum: 1
    }
  })
}