feiyu02
2024-07-02 bf3bf9ff25ac106b556b2427cc382c8fcca63bff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.flightfeather.uav.common.net
 
/**
 * 高德地图Web服务API
 */
object AMapService {
 
    private val httpMethod = HttpMethod("restapi.amap.com", 443, true)
    private val KEY = ""
 
    /**
     * 地理逆编码
     */
    fun reGeo(location:List<Pair<Double, Double>>) {
        httpMethod.get("v3/geocode/regeo", listOf(
 
        ))
    }
}