使用 Google Maps API v2 获取行车路线
您在问题中提到的请求使用了 Google Maps API 的 addPolyline 方法在两点之间画一条直线。此方法旨在在地图上显示简单的线条,而不是用于检索行车路线。
要获取两个位置之间的详细行车说明,您应该将 Google Maps Directions API 集成到您的应用程序中。正如您提供的答案中所提到的,由 AKExorcist 创建的库是完成此任务的一个方便的选项。
这里有一个示例代码片段,演示如何使用此库检索行车路线:
import akexorcist.googledirection.DirectionCallback;
import akexorcist.googledirection.GoogleDirection;
import akexorcist.googledirection.constant.TransportMode;
import akexorcist.googledirection.model.Direction;
// Initialize GoogleDirection
GoogleDirection googleDirection = new GoogleDirection(apiKey);
// Set the departure and arrival locations
LatLng origin = new LatLng(12.917745600000000000, 77.623788300000000000);
LatLng destination = new LatLng(12.842056800000000000, 7.663096499999940000);
// Request directions
googleDirection.withTransportMode(TransportMode.DRIVING)
.withOrigin(origin)
.withDestination(destination)
.execute(new DirectionCallback() {
@Override
public void onDirectionSuccess(Direction direction, String rawBody) {
// Process and display driving directions
}
@Override
public void onDirectionFailure(Throwable t) {
// Handle direction retrieval error
}
});
此代码使用 GoogleDirection 库来检索指定点之间的行车路线。成功检索后,将调用 onDirectionSuccess 回调方法,提供对包含指令、持续时间和距离的方向对象的访问。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3