我在我的服务器上使用Google商家信息API来存储有关某个地点的信息,使用客户发送的placeId
。
我面临关于结果语言的问题,即使在查询中指定了语言,地点是城市或该城市的地址时也会出现问题。例如:
地点ID ChIJ53USP0nBhkcRjQ50xhPN_zw
是米兰的城市,API返回Milan
作为地区,Lombardy
作为行政区域(英文名称)
地点ID EjBWaWEgZGVsbGEgU3BpZ2EsIE1pbGFuLCBQcm92aW5jZSBvZiBNaWxhbiwgSXRhbHk
是米兰的一条街道,API返回Milano
作为地区,Lombardia
作为行政区域(意大利名称)
为了使它更奇怪,两个搜索都将Italy
作为国家/地区返回。这是API的预期行为吗?
答案 0 :(得分:9)
Is this the expected behavior of the API?
是的,这是预期的结果。即使您指定了一种语言,它也只会在有可用的语言时返回该语言的响应,否则它将以最初输入的语言返回响应。
案例1:
案例2:
在Google地图中搜索 " Via della Spiga" 后的结果:
要了解有关此内容的更多信息:
Translation of Places information into language specified by request。在这个问题中,要求一个功能,告诉开发人员结果是哪种语言,以便他们可以相应地处理数据,我个人认为这将是很好的,直到问题没有得到解决。
上述两个问题都是2岁左右。然而,谷歌无法解决这个问题。
可能解决此问题的一种方法是使用textsearch:
您可以使用textsearch将大部分行政区/城市转换为任何语言名称:
`https://maps.googleapis.com/maps/api/place/textsearch/json?query=Lombardia&language=Your_language&key=YOUR_API_KEY`
示例:将"Lombardia"
转换为 中文 :
https://maps.googleapis.com/maps/api/place/textsearch/json?query=Lombardia&language=zh-CN&key=YOUR_API
{
"html_attributions" : [],
"results" : [
{
"formatted_address" : "意大利伦巴第",
"geometry" : {
"location" : {
"lat" : 45.47906709999999,
"lng" : 9.8452433
},
"viewport" : {
"northeast" : {
"lat" : 46.6351853,
"lng" : 11.4276993
},
"southwest" : {
"lat" : 44.6796491,
"lng" : 8.4978605
}
}
},
"icon" : "http://maps.gstatic.com/mapfiles/place_api/icons/geocode-71.png",
"id" : "02401d0909d69ca5c69de799e193caf84acc41f9",
"name" : "伦巴第",
"place_id" : "ChIJf4M-GsNEgUcR1JMVKCIm8qY",
"reference" : "CoQBfQAAAEKCAV-1Ec-V2ZfnWsCk_elhlEXckc_k94jBYlU7k5ivhrqPlWd24aSAa5fqNTfwKKhU0wSsZFv42aMm1BrG5wEwZNGKwFqELxMEt0ye7KFfBgVtfHZbqeiBx3hEH8Iq60wwW--edqpROkBTjHrxIwisCGJwhCzKKkQ9H6FdfW_aEhAnmI0ZOFk1KGaGms4IqTOiGhRX5iErBIwnmLos4U9Ggs325MmcEA",
"types" : [ "administrative_area_level_1", "political" ]
}
],
"status" : "OK"
}
中文Lombardia 意大利伦巴第
当您搜索 placeID 详细信息时,您会获得address_components
数组:
"address_components" : [
{
"long_name" : "Via della Spiga",
"short_name" : "Via della Spiga",
"types" : [ "route" ]
},
{
"long_name" : "Milano",
"short_name" : "Milano",
"types" : [ "locality", "political" ]
},
{
"long_name" : "Milano",
"short_name" : "MI",
"types" : [ "administrative_area_level_2", "political" ]
},
{
"long_name" : "Lombardia",
"short_name" : "Lombardia",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "Italy",
"short_name" : "IT",
"types" : [ "country", "political" ]
}
]
因此,如果你循环在上面的数组上并使用 textsearch 然后 ,您将获得特定语言的几乎一致的地址。 强>
答案 1 :(得分:0)
我认为你可以使用一些Optional parameters
来设置你想要的语言,例如:
附近搜索请求是以下格式的HTTP网址:
https://maps.googleapis.com/maps/api/place/nearbysearch/output?parameters
放置language
参数,例如:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food&name=cruise&language=en
有关详细信息,请参阅here。