如何为具有多个路点的AMAP应用程序创建Android Intent?

问题描述 投票:0回答:1

如何创建Android Intent来打开具有多个航点的AMAP应用程序?

我尝试过这个 URI

// Create the URI for the Intent
String uri = "amapuri://route/plan/?dlat=destination_lat&dlon=destination_lng&dname=Destination&waypoints=" + waypoints;

但仅在 AMAP 应用程序打开时获取第一个和最后一个位置,我在 AMAP 文档中找不到如何添加 URI 航点。 我添加的这个具体属性waypoints,我在官方文档中没有找到。

https://developer.amap.com/api/amap-mobile/guide/android/navigation

android android-intent android-navigation android-maps
1个回答
0
投票

请参阅 AMAP URI API 文档 ...

该属性被称为

via
,这就是未知属性
waypoints
被忽略的原因。

© www.soinside.com 2019 - 2024. All rights reserved.