如何在 Android 应用程序中查看地图
在我的应用程序中,我想在地图中显示用户的位置地址、纬度和经度以及确切位置。
我能够找到纬度和经度。在我的应用程序中,我有一个名为“查看地图”的按钮,当用户单击它时,我想在地图中显示位置。当我点击按钮时,是否可以打开谷歌地图或Android设备中存在的地图,如果不能,请帮助我...
in my app i want to show the location address, latitude and longitude and exact position of the user in the map.
i am able to find the latitude and longitude. In my app i have a button named "View Map", when the user click on it i want to show the location in a map. Is it possible to open the google maps or maps which is in present in the android devices when i click on the button, if not what is the option please help me...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在自己的活动中显示地图(如上一个答案的链接中所写),也可以触发在设备中打开 Google 地图应用程序的意图。您可以在这里找到相关意图: http://developer.android.com /guide/appendix/g-app-intents.html
You can either show a map inside your own activity as written in the previous answer's link or you can fire an intent to open the Google Maps application in your device. You can find the relevant intent here: http://developer.android.com/guide/appendix/g-app-intents.html
要开始在 Activity 中显示地图,请从 http://developer.android .com/guide/tutorials/views/hello-mapview.html
要以有吸引力的方式显示您的位置,请使用 https://github.com/jgilfelt/android-mapviewballoons
To start with showing Map in your Activity begin with http://developer.android.com/guide/tutorials/views/hello-mapview.html
And to show your location in attractive manner use https://github.com/jgilfelt/android-mapviewballoons