推荐上车点

查询曹操侧推荐上车点

请求地址: /v2/common/queryPickupSpots

服务协议: HTTP/GET

请求参数:

参数名称 类型 必选 说明
client_id string Y 申请时的client_id
timestamp long Y 时间戳
sign string Y 签名
longitude double Y 经度
latitude double Y 纬度
city_code string Y 城市编码

响应data参数:

参数名 类型 必有 说明
recommendSpotVoList.distance double N 离中心点距离 单位:米
recommendSpotVoList.name string Y 推荐上车点名称
recommendSpotVoList.location string Y 推荐上车点经纬度,英文逗号分隔
recommendSpotVoList.poi string N 推荐上车点poi编号

结果示例:

{
  "code": 200,
  "data": {
    "recommendSpotVoList": [
      {
        "distance": 197,
        "name": "浙江省杭州市吉利科技集团(西门)",
        "location": "120.12345,30.12345",
        "poi": "poi12345"
      },
      {
        "distance": 69,
        "name": "浙江省杭州市吉利科技集团(南门)",
        "location": "120.54321,30.54321",
        "poi": "poi54321"
      }
    ]
  },
  "success": true
}