使用 Android API v2 在 Google 地图上绘制行车路线
使用 Google 地图时,通常需要显示两个位置之间的行车路线。虽然可以在点之间绘制直线,但它并不能准确地表示驾驶路线。
要获取实际的驾驶方向,请考虑使用专门为此目的设计的库。其中一个库是 Android-GoogleDirectionLibrary,可在 https://github.com/akexorcist/Android-GoogleDirectionLibrary 获取。
该库通过处理来简化获取两点之间的行车路线的过程与 Google 地图 API 的通信。要使用它:
将库添加为项目中的依赖项:
<code class="xml">dependencies { implementation 'com.github.akexorcist:Android-GoogleDirectionLibrary:1.2.8' }</code>
创建 DirectionManager 类的实例:
<code class="java">DirectionManager manager = new DirectionManager();</code>
设置出发地和目的地:
<code class="java">manager.setOrigin(new LatLng(12.917745600000000000, 77.623788300000000000)) .setDestination(new LatLng(12.842056800000000000, 7.663096499999940000)); </code>
使用监听器处理服务器响应:
<code class="java">manager.execute(new OnGetDirectionListener() { @Override public void onDirectionSuccess(Route route) { // Handle the direction result successfully } @Override public void onDirectionFailure(Throwable t) { // Handle the direction failure } });</code>
或者,您可以使用回调:
<code class="java">manager.execute(new DirectionCallback() { @Override public void onDirectionSuccess(Direction.Response results, RawResponse rawResponse) { // Handle the direction result successfully } @Override public void onDirectionFailure(Throwable t) { // Handle the direction failure } });</code>
Route 对象或 Direction.Response 对象提供对各种详细信息(如持续时间、距离)的访问,以及航路点列表。然后,您可以使用此信息在地图上准确绘制行车路线。
以上是如何使用 Android SDK 在 Google 地图上绘制行车路线?的详细内容。更多信息请关注PHP中文网其他相关文章!