以下链接(Maps API)将肯辛顿圣地亚哥视为社区。 https://maps.googleapis.com/maps/api/geocode/json?address=kensington,%20san%20diego
{
"results" : [
{
"address_components" : [
{
"long_name" : "Kensington",
"short_name" : "Kensington",
"types" : [ "neighborhood", "political" ]
},
{
"long_name" : "San Diego",
"short_name" : "San Diego",
"types" : [ "locality", "political" ]
},
{
"long_name" : "San Diego County",
"short_name" : "San Diego County",
"types" : [ "administrative_area_level_2", "political" ]
},
{
"long_name" : "California",
"short_name" : "CA",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "United States",
"short_name" : "US",
"types" : [ "country", "political" ]
}
],
"formatted_address" : "Kensington, San Diego, CA, USA",
"geometry" : {
"bounds" : {
"northeast" : {
"lat" : 32.777394,
"lng" : -117.0968502
},
"southwest" : {
"lat" : 32.755116,
"lng" : -117.1127622
}
},
"location" : {
"lat" : 32.7668062,
"lng" : -117.1058848
},
"location_type" : "APPROXIMATE",
"viewport" : {
"northeast" : {
"lat" : 32.777394,
"lng" : -117.0968502
},
"southwest" : {
"lat" : 32.755116,
"lng" : -117.1127622
}
}
},
"place_id" : "ChIJQXneX0pU2YARsIgYMQOsyks",
"types" : [ "neighborhood", "political" ]
}
],
"status" : "OK"
}
下面的链接(Places API)无法找到它 https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=36.26361161176487,-115.12227065576182&keyword=kensignton,%20san%20diego&rankby=distance(当然,如果没有API密钥,这个版本就无法工作,但即使使用密钥,它也会以ZERO_RESULTS响应)
{
"html_attributions" : [],
"results" : [],
"status" : "ZERO_RESULTS"
}
但是我无法使用地图api找到我附近的星巴克(我试过并把它送到了加拿大)。那么......我怎样才能搜索星巴克,邻居或地址并获得合理的结果
答案 0 :(得分:1)
我不确定您的意思"作为一个社区",但下面的链接将返回kensington,san diego(请务必使用您的API密钥)。返回的详细信息明显不同于地图搜索。
对于此类搜索,请尝试使用textsearch而不是附近的搜索,并替换'关键字或名称'使用'查询'。
转到此页面并滚动到标题为“文本搜索请求”的部分。了解更多信息。 https://developers.google.com/places/web-service/search