Authorization: Bearer ********************{
"geo": [
{
"address": "浙江省宁波市北仑区柴桥街道纬中路北云飞创现代产业园"
},
{
"address": "浙江省宁波市鄞州区东钱湖镇东钱湖大道"
}
]
}curl --location 'http://openapi.freightower.com/truck/geo/geocode' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"geo": [
{
"address": "浙江省宁波市北仑区柴桥街道纬中路北云飞创现代产业园"
},
{
"address": "浙江省宁波市鄞州区东钱湖镇东钱湖大道"
}
]
}'{
"statusCode": 20000,
"message": "成功",
"data": [
{
"address": "浙江省宁波市北仑区柴桥街道纬中路北云飞创现代产业园",
"lat": "29.89538",
"lon": "121.91389"
},
{
"address": "浙江省宁波市鄞州区东钱湖镇东钱湖大道",
"lat": "29.790057",
"lon": "121.616306"
}
]
}