如何在Google Maps Directions api中获取所有中转站?

时间:2015-09-09 12:17:36

标签: api google-maps google-direction transit

我向Google地图路线发出了HTTP请求,其中包括转接步骤。响应中的传输步骤仅返回对象,其中包含有关出发和到达站点的信息以及它们之间的多个站点(5)。

<transit_details>
      <departure_stop>
        <name>Wien Mitte-Landstraße</name>
        <location>
          <lat>48.2060950</lat>
          <lng>16.3848860</lng>
        </location>
      </departure_stop>
      <arrival_stop>
        <name>Wien Hbf (Bahnsteige 1-2)</name>
        <location>
          <lat>48.1861220</lat>
          <lng>16.3755230</lng>
        </location> 
      </arrival_stop>
      <line>  
        <short_name>S 1</short_name>
        <vehicle>
          <name>Commuter train</name>
          <type>COMMUTER_TRAIN</type>
          <icon>//maps.gstatic.com/mapfiles/transit/iw2/6/rail.png</icon>
        </vehicle>
        <agency>
          <name>ÖBB</name>
          <url>http://www.oebb.at/</url>
        </agency>
      </line>
      <num_stops>5</num_stops>
      <headsign>Mödling</headsign>
      <departure_time>
        <value>1439805780</value>
        <text>12:03pm</text>
        <time_zone>Europe/Berlin</time_zone>
      </departure_time>
      <arrival_time>
        <value>1439806200</value>
        <text>12:10pm</text>
        <time_zone>Europe/Berlin</time_zone>
      </arrival_time>
    </transit_details>

我需要的是沿着运输站的所有个别站点的详细信息。有没有办法获得这种信息?

2 个答案:

答案 0 :(得分:0)

对于请求中的每个航路点,路线响应包括legs阵列中的附加条目,以提供该航程段的相应详细信息。

答案 1 :(得分:0)

Google API目前无法获取该信息。在gmaps api bug跟踪器中添加了一个正在审核的问题:https://code.google.com/p/gmaps-api-issues/issues/detail?id=7807

请务必点击星标以显示您的支持以添加它。