是否可以使用Google Maps API或Bing Maps API获取社区?例如,是否有可能获得“金融区”社区的价值,以搜索旧金山附近的地址?如果没有,是否有其他在线资源?谢谢!
答案 0 :(得分:1)
您可以在Google上下载此示例 https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform
<tr>
<td class="label">Neighbourhood</td>
<td class="wideField" colspan="3"><input class="field"
id="neighborhood" disabled="true"></input></td>
</tr>
在HTML表格中添加
'pretend' => false
您可以在输入地址后看到显示的社区信息
答案 1 :(得分:1)
是的,邻域作为地址解析API的一部分在address_components[]
数组中返回。
Google的live demo app展示了Geocoding API。 neighborhood
字段可用于出现在有社区的城市中的地方。
下面是一个简单的示例,该示例使用Python client for Google Maps获取邻居数据:
import googlemaps
API_KEY = "YOUR_API_KEY"
gmaps = googlemaps.Client(key=API_KEY)
print gmaps.geocode('3027 16th St, San Francisco, CA 94103, United States')
这将打印以下内容:
[{'address_components': [{'long_name': '3027',
'short_name': '3027',
'types': ['street_number']},
{'long_name': '16th Street',
'short_name': '16th St',
'types': ['route']},
{'long_name': 'Mission District',
'short_name': 'Mission District',
'types': ['neighborhood', 'political']},
{'long_name': 'San Francisco',
'short_name': 'SF',
'types': ['locality', 'political']},
{'long_name': 'San Francisco County',
'short_name': 'San Francisco 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']},
{'long_name': '94110',
'short_name': '94110',
'types': ['postal_code']},
{'long_name': '3402',
'short_name': '3402',
'types': ['postal_code_suffix']}],
'formatted_address': '3027 16th St, San Francisco, CA 94110, USA',
'geometry': {'bounds': {'northeast': {'lat': 37.764927, 'lng': -122.4201635},
'southwest': {'lat': 37.7646504,
'lng': -122.4203792}},
'location': {'lat': 37.7647804, 'lng': -122.4202906},
'location_type': 'ROOFTOP',
'viewport': {'northeast': {'lat': 37.7661376802915,
'lng': -122.4189223697085},
'southwest': {'lat': 37.76343971970851,
'lng': -122.4216203302915}}},
'place_id': 'ChIJxT0SpyN-j4ART07xF7G8NGE',
'types': ['premise']}]
有关更多信息,请参见官方Geocoding API Guide。
答案 2 :(得分:-3)
Google Places API可让您获取社区信息。 但是从API获得的信息必须用于谷歌地图。