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(
|
| ))
| }
| }
|
|