是否有可能在谷歌地图android中更多点导航?

时间:2017-03-31 21:06:52

标签: android google-maps android-intent google-maps-urls

Uri gmmIntentUri = Uri.parse("google.navigation:q=Taronga+Zoo,+Sydney+Australia");

        Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);    
        mapIntent.setPackage("com.google.android.apps.maps"); 
        startActivity(mapIntent);

它代码为2分,如果是20分呢? 据我所知谷歌地图推荐23分

enter image description here

1 个答案:

答案 0 :(得分:0)

您现在可以使用Google于2017年5月推出的Google Maps URL API。

https://developers.google.com/maps/documentation/urls/guide

使用此API,您可以构建导航URL并指定除起点和终点之外的航点。

因此示例代码可能类似于

Uri gmmIntentUri = Uri.parse("https://www.google.com/maps/dir/?api=1&origin=Madrid,Spain&destination=Barcelona,Spain&waypoints=Zaragoza,Spain%7CHuesca,Spain&travelmode=driving&dir_action=navigate");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);    
mapIntent.setPackage("com.google.android.apps.maps"); 
startActivity(mapIntent);

我希望这有帮助!