位置/获取位置图片

简要描述

  • 根据经纬度,获取定位图片。

请求URL

  • http://127.0.0.1:8888/api/

请求方式

  • POST

参数

参数名必选类型说明
typeint接口编号
longitudefloat经度
latitudefloat纬度
widthint图片宽
heightint图片高

请求示例

 {
  "type": 27,
  "longitude": 104.00005,
  "latitude": 38.00005,
  "width": 425,
  "height": 162
 } 

返回示例

  {
    "data": {
      "status": 0,
      "desc": "",
      "data": []
    }
  }

返回参数说明

参数名类型说明
error_codeint错误代码
descriptionstring错误描述
datajson业务数据

备注