在Geo编码器自动完成API的关键概念中,我阅读了“本地化地址格式的格式化标签(例如,house no. . first或street name first)和可定制顺序的结构化地址字段”。
但我该怎么做呢?例如:
{ "suggestions": [
{
"label": "Italia, Roma, 00187, Roma, Via Sicilia",
...
在标签字段,我想先走街!
发布于 2020-01-17 04:57:53
下面是可以传递给自动完成地理编码API请求的参数列表,以便首先获得街道信息。
matchLevel=street
https://autocomplete.geocoder.ls.hereapi.com/6.2/suggest.json?query=Berli&apiKey=&matchLevel=street
以及本地化地址格式化的格式标签,--这是响应结构的一部分,您可能已经在这里看到了。https://developer.here.com/documentation/geocoder-autocomplete/dev_guide/topics/resource-type-response-suggest.html
https://stackoverflow.com/questions/58957924
复制相似问题