如何在地图 api 中获取 public 运输时间
How to get the time of public transport in maps api
我正在构建一个个人项目来熟悉 API 通话等
我有以下功能:
public void calculateDistance(House house) {
DirectionsApiRequest apiRequest = DirectionsApi.newRequest(geoApiContext);
apiRequest.origin(new LatLng(house.getLat(), house.getLon()));
apiRequest.destination(biminghamInternationStationLonLat);
apiRequest.mode(TravelMode.TRANSIT);
apiRequest.setCallback(new com.google.maps.PendingResult.Callback<DirectionsResult>() {
@Override
public void onResult(DirectionsResult result) {
DirectionsRoute[] routes = result.routes;
System.out.println("Printing out the results for " + house.getUrlListing());
for(int i =0 ; i < routes.length; i++)
{
DirectionsRoute route = routes[i];
System.out.println(route);
}
}
@Override
public void onFailure(Throwable e) {
}
});
}
此函数的作用是获取我提供的自定义 House 对象的纬度和经度,并从本质上找出通过 public 交通工具到达伯明翰国际车站需要多长时间(因此 TRANSIT 模式在api要求)。
但是我不确定我是否使用正确?当我在 google 地图网站上查看从房子所在位置到伯明翰国际车站需要多长时间时;我得到的结果从 30-35 分钟不等,好的。但是当我尝试调用上面的代码时,它会打印以下内容:
[DirectionsRoute: "", 1 legs, waypointOrder=[], bounds=[52.48039080,-1.72493200, 52.45082300,-1.78392750], 1 warnings]
我不确定如何从 api 获得通过 public 传输所需的时间。我正在使用方向 API.. 不确定我是否使用了错误的 API 但是在查看要使用的 API 时,这描述了我需要的..
旅行时间在legs:
duration indicates the total duration of this leg, as a Duration object of the following form:
- value indicates the duration in seconds.
- text contains a string representation of the duration.
These fields may be undefined if the duration is unknown.
如果响应中有多个分支,您可以通过将每个分支的值相加得到总持续时间。
相关问题:Google Maps API V3 display duration and distance in info window
我看到您正在使用 Java Client for Google Maps Services。为了了解如何使用该库,我建议您查看位于
的 JavaDoc
https://www.javadoc.io/doc/com.google.maps/google-maps-services/latest/index.html
检查 JavaDoc 文档,您会看到 DirectionsRoute
对象包含一个 DirectionsLeg[]
数组,方向支路有一个包含 Duration
对象的字段.因此,您需要遍历路线的所有路段并总结路段的持续时间,这将为您提供以秒为单位的完整路线持续时间。
参考Java客户端库中的同步调用,可以同步调用请求的await()
方法进行请求。
查看以下基于您的代码的示例。它展示了如何同步获取公交路线并计算第一条路线的持续时间(以秒为单位)
import com.google.maps.GeoApiContext;
import com.google.maps.DirectionsApiRequest;
import com.google.maps.DirectionsApi;
import com.google.maps.model.DirectionsResult;
import com.google.maps.model.DirectionsRoute;
import com.google.maps.model.DirectionsLeg;
import com.google.maps.model.LatLng;
import com.google.maps.model.TravelMode;
class Main {
public static void main(String[] args) {
GeoApiContext context = new GeoApiContext.Builder()
.apiKey("YOUR_API_KEY")
.build();
DirectionsApiRequest apiRequest = DirectionsApi.newRequest(context);
apiRequest.origin(new LatLng(41.385064,2.173403));
apiRequest.destination(new LatLng(40.416775,-3.70379));
apiRequest.mode(TravelMode.TRANSIT);
long duration = 0;
try {
DirectionsResult res = apiRequest.await();
//Loop through legs of first route and get duration
if (res.routes != null && res.routes.length > 0) {
DirectionsRoute route = res.routes[0];
if (route.legs !=null) {
for(int i=0; i<route.legs.length; i++) {
DirectionsLeg leg = route.legs[i];
duration += leg.duration.inSeconds;
}
}
}
} catch(Exception ex) {
System.out.println(ex.getMessage());
}
System.out.println("Duration (sec): " + duration);
}
}
尽情享受吧!
我正在构建一个个人项目来熟悉 API 通话等
我有以下功能:
public void calculateDistance(House house) {
DirectionsApiRequest apiRequest = DirectionsApi.newRequest(geoApiContext);
apiRequest.origin(new LatLng(house.getLat(), house.getLon()));
apiRequest.destination(biminghamInternationStationLonLat);
apiRequest.mode(TravelMode.TRANSIT);
apiRequest.setCallback(new com.google.maps.PendingResult.Callback<DirectionsResult>() {
@Override
public void onResult(DirectionsResult result) {
DirectionsRoute[] routes = result.routes;
System.out.println("Printing out the results for " + house.getUrlListing());
for(int i =0 ; i < routes.length; i++)
{
DirectionsRoute route = routes[i];
System.out.println(route);
}
}
@Override
public void onFailure(Throwable e) {
}
});
}
此函数的作用是获取我提供的自定义 House 对象的纬度和经度,并从本质上找出通过 public 交通工具到达伯明翰国际车站需要多长时间(因此 TRANSIT 模式在api要求)。
但是我不确定我是否使用正确?当我在 google 地图网站上查看从房子所在位置到伯明翰国际车站需要多长时间时;我得到的结果从 30-35 分钟不等,好的。但是当我尝试调用上面的代码时,它会打印以下内容:
[DirectionsRoute: "", 1 legs, waypointOrder=[], bounds=[52.48039080,-1.72493200, 52.45082300,-1.78392750], 1 warnings]
我不确定如何从 api 获得通过 public 传输所需的时间。我正在使用方向 API.. 不确定我是否使用了错误的 API 但是在查看要使用的 API 时,这描述了我需要的..
旅行时间在legs:
duration indicates the total duration of this leg, as a Duration object of the following form:
- value indicates the duration in seconds.
- text contains a string representation of the duration.
These fields may be undefined if the duration is unknown.
如果响应中有多个分支,您可以通过将每个分支的值相加得到总持续时间。
相关问题:Google Maps API V3 display duration and distance in info window
我看到您正在使用 Java Client for Google Maps Services。为了了解如何使用该库,我建议您查看位于
的 JavaDochttps://www.javadoc.io/doc/com.google.maps/google-maps-services/latest/index.html
检查 JavaDoc 文档,您会看到 DirectionsRoute
对象包含一个 DirectionsLeg[]
数组,方向支路有一个包含 Duration
对象的字段.因此,您需要遍历路线的所有路段并总结路段的持续时间,这将为您提供以秒为单位的完整路线持续时间。
参考Java客户端库中的同步调用,可以同步调用请求的await()
方法进行请求。
查看以下基于您的代码的示例。它展示了如何同步获取公交路线并计算第一条路线的持续时间(以秒为单位)
import com.google.maps.GeoApiContext;
import com.google.maps.DirectionsApiRequest;
import com.google.maps.DirectionsApi;
import com.google.maps.model.DirectionsResult;
import com.google.maps.model.DirectionsRoute;
import com.google.maps.model.DirectionsLeg;
import com.google.maps.model.LatLng;
import com.google.maps.model.TravelMode;
class Main {
public static void main(String[] args) {
GeoApiContext context = new GeoApiContext.Builder()
.apiKey("YOUR_API_KEY")
.build();
DirectionsApiRequest apiRequest = DirectionsApi.newRequest(context);
apiRequest.origin(new LatLng(41.385064,2.173403));
apiRequest.destination(new LatLng(40.416775,-3.70379));
apiRequest.mode(TravelMode.TRANSIT);
long duration = 0;
try {
DirectionsResult res = apiRequest.await();
//Loop through legs of first route and get duration
if (res.routes != null && res.routes.length > 0) {
DirectionsRoute route = res.routes[0];
if (route.legs !=null) {
for(int i=0; i<route.legs.length; i++) {
DirectionsLeg leg = route.legs[i];
duration += leg.duration.inSeconds;
}
}
}
} catch(Exception ex) {
System.out.println(ex.getMessage());
}
System.out.println("Duration (sec): " + duration);
}
}
尽情享受吧!