Android意图在探索附近的屏幕上打开谷歌地图应用程序

时间:2013-11-20 13:40:51

标签: android google-maps android-intent

我想在探索附近的屏幕上直接打开Goog​​le地图应用程序,例如像这个截图一样吃

https://dl.dropboxusercontent.com/u/14944627/Google%20Maps%20Application%20Image.png

我可以使用以下代码打开Goog​​le地图应用程序

 String uri = "http://maps.google.com/";
 Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));
 intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
 startActivity(intent);

但是我希望它直接转到探索附近的屏幕,点击搜索栏>然后点击附近的探索>吃图标。

我只想通过打开Goog​​le地图应用程序然后点击搜索栏>来自动执行点击步骤。吃。因此,向用户显示探索附近的吃谷歌地图页面......这可能吗?

提前致谢。

1 个答案:

答案 0 :(得分:-1)

是的,您可以使用Google Places API

请将您的数据添加到以下网址并将其传递给您的意图。

  

String url =   “https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food&name=harbour&sensor=false&key=AddYourOwnKeyHere

     

您可以查看以下网址以获取文档:https://developers.google.com/places/documentation/search