使用Google地图在从其他应用调用时显示位置

时间:2016-11-19 17:13:53

标签: android google-maps

我想创建一个应用程序,其中包含我所包含的所有附近酒店的列表

我在想是否有可能,当我点击带有酒店名称的按钮时,谷歌地图会弹出并从用户的当前位置给出该酒店的位置...
更具体地说,我想知道的是,当我点击酒店标签(我的未来应用程序)时,我希望Google地图在Google地图上打开并显示酒店和用户。

1 个答案:

答案 0 :(得分:0)

您的查询解决方案有两种方法。

1。)您可以在自己的应用上通过谷歌地图显示路线。请按照以下链接获得更好的解释:

Google Directions

Google Directions from scratch

2.。)或者您可以直接从您的应用程序打开谷歌地图,让谷歌地图处理所有路由头痛。您可以使用Intent执行此操作:

String uri = "geo:" + latitude + "," + longitude + "?q=" + latitude + "," + longitude + ""; 
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);

Opening Maps from Android

希望这有帮助。

感谢。