我正在尝试使用Google地图API指示获取一些转机建议:
但谷歌只给我一辆最近的公共汽车/火车。有没有什么方法可以获得至少3个关于如何到达定义点的最近建议?
我的回答看起来如此:只有一列火车
"start_location" : {
"lat" : 48.12606599999999,
"lng" : 11.663375
},
"transit_details" : {
"arrival_stop" : {
"location" : {
"lat" : 48.149852,
"lng" : 11.461872
},
"name" : "München-Pasing"
},
"arrival_time" : {
"text" : "20:31",
"time_zone" : "Europe/Berlin",
"value" : 1511033460
},
"departure_stop" : {
"location" : {
"lat" : 48.12606599999999,
"lng" : 11.663375
},
"name" : "München-Trudering"
},
"departure_time" : {
"text" : "20:03",
"time_zone" : "Europe/Berlin",
"value" : 1511031780
},
"headsign" : "Geltendorf",
"line" : {
"agencies" : [
{
"name" : "Deutsche Bahn AG",
"url" : "http://www.bahn.de/"
}
],
"short_name" : "S4",
"vehicle" : {
"icon" : "//maps.gstatic.com/mapfiles/transit/iw2/6/rail2.png",
"local_icon" : "//maps.gstatic.com/mapfiles/transit/iw2/6/de-sbahn.png",
"name" : "S-Bahn",
"type" : "COMMUTER_TRAIN"
}
},
"num_stops" : 13
},
"travel_mode" : "TRANSIT"
我也得到了步行指导。老实说,我想只乘坐公共汽车|地铁|火车方向;)
如果聪明的人能给我一些线索,我将非常感激:)
答案 0 :(得分:2)
按the documentation:设置&alternatives=true
可选参数
替代方案 - 如果设置为true,则指定路线服务可在响应中提供多个路径替代方案。请注意,提供路由选择可能会增加服务器的响应时间。
为我返回4个结果。