如何找到我当前位置附近的位置?
我需要一些关于使用 android“如何找到我所在位置附近的医院、学校、餐厅”的想法,怎么可能?
I need some idea about "How to find Hospital,School,Restaurant near by my location" using android,How is possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一步一步,
Google place api 用于访问附近的地点地标
第 1 步:前往 API 控制台获取 Place API
< a href="https://code.google.com/apis/console/">https://code.google.com/apis/console/
并在服务选项卡上选择
地点服务
现在选择 API 访问选项卡并获取 API 密钥
现在您已拥有用于获取位置的 API 密钥
现在正在编程
*步骤2 *:首先创建一个名为Place.java。该类用于包含 Place api 提供的 place 属性。
现在创建一个名为 PlacesService 的类
现在创建一个新的 Activity,您希望在其中获取最近地点的列表。
/**
*
*/
Step by step,
Google place api are used to access near by landmark of anloaction
Step 1 : Go to API Console for obtaining the Place API
https://code.google.com/apis/console/
and select on services tab
on the place service
now select API Access tab and get the API KEY
now you have a API key for getting place
Now in programming
*Step 2 * : first create a class named Place.java. This class is used to contain the property of place which are provided by Place api.
Now create a class named PlacesService
Now create a new Activity where you want to get the list of nearest places.
/**
*
*/
使用 Google 地点 api 查找附近的医院或其他信息... ..
Use Google places api to find out near by hospital or what ever .....