将航点添加到Google Maps Intent(Android)

时间:2019-01-05 05:49:05

标签: java android google-maps google-maps-android-api-2

尝试将Google Maps Intent用于多个航路点,但不知道语法。

我想使用Google地图意图及其提供的语法(即“ google.navigation:q = lat,长”)。但是,我似乎找不到找到包含多个路标的方法。我尝试用'/'链接坐标,但是没有用。有什么想法或资源吗? Android开发人员网站上未包含任何内容。

1 个答案:

答案 0 :(得分:1)

我建议您看看Google Maps URLs 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);

我希望这会有所帮助!