Android Geocoder 此类广告 google 地图
使用 android Geocoder 我可以找到一家商店,例如 Google 地图,或者我只能搜索街道、纪念碑、机场等?我想搜索购物中心的名称...
With android Geocoder I can find a shop such as Google Maps or I can only search street, monuments, airport, etc ?? I want to search shopping center with name...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在互联网上搜索地理编码的示例。
但这就是我的建议:
您可以使用
Google Places API
,它允许您通过指定您要查找的类型
来搜索一定半径内的位置。http://code.google.com/apis/maps/documentation/places/ #PlaceSearchRequests
您所要做的就是使用
JSON
解析指定 URL 的输出(解析纬度和经度以及建筑物的名称)或XML
。并在地图上显示叠加层。http://code.google.com/apis/maps/documentation/places /supported_types.html
这是您可以搜索的类型列表。
Search on the internet for examples for GeoCoding.
But this is what I suggest:
You can make a use of
Google Places API
, which allows you to search location within some radius by specifying thetype
which is what you are looking.http://code.google.com/apis/maps/documentation/places/#PlaceSearchRequests
All you have to do is to parse the output of the URL as it is specified, using
JSON
(parse the latitude and longitude and the name of the building) orXML
. and show the overlays on the map.http://code.google.com/apis/maps/documentation/places/supported_types.html
Here is the list of types you can search for.