文档
测试

地址匹配定位

POST
/ccv/tools/locationTools/AddressMatchingLocation (/指挥中心可视化/工具/定位工具/地址匹配定位)

接口描述

根据地址名称、POI名称进行匹配定位,返回坐标值

请求参数

参数名
类型
描述
必填
keyWords
string
地址名称、POI名称
必填
organization_code
string
行政代码(区县级)
必填
organization_sup_code
string
公安机构代码(分局级、县市公安局)
必填

响应参数

参数名
类型
描述
必填
x
float
经度
必填
y
float
纬度
必填
similarity
float
相似度
必填
organization_code
string
地址所属责任区代码
必填

说明 / 示例

--请求示例: { "RequestType": 3, (1:轮询,2:websocket,3:带参定向请求,4:无参定向请求) "senderID": "HDWD_JY", "serviceDescript": { "data": { "keyWords":"JJ202005061601000000TIO", "organization_code":"4372000000", "organization_sup_code":"4370000000" }, "serviceMethod": "post" } } --返回示例: 一: { "code": "100", "message": "服务请求成功,返回有值", "serviceDescript": { "data": { "x":114.34737896563527, "y":29.668457973947334, "similarity":0.94, "organization_code":"4372000101" } } } 二: { "code": "101", "message": "服务请求成功,返回无值", "serviceDescript": { "data": { "x":, "y":, "similarity":"", "organization_code":"" } } } 二: { "code": "103", "message": "服务请求失败,服务端无法连接" }