我正在建立一个网页,我可以在其中选择来源和目的地位置,然后在Google地图上显示距离,旅行时间(当前流量)和实际流量。
Google Maps API文档建议使用Google Maps Embed API(route = Paris to Amsterdam):
<iframe src="https://www.google.com/maps/embed/v1/directions?origin=Paris&destination=Amsterdam&key=APIKEY"></iframe>
这很好用。 现在我想在路线上添加航路点,以便我确定将选择并显示特定路线,如此(路线=通过布鲁塞尔从巴黎到阿姆斯特丹):
<iframe src="https://www.google.com/maps/embed/v1/directions?origin=Paris&destination=Amsterdam&waypoints=Brussels&key=APIKEY"></iframe>
在这种情况下,没有显示流量,计算的旅行时间也不包括因交通而造成的延误。您还可以看到我为this page建立的效果以显示问题。
我在Google Maps Embed API文档中找不到使用航点时未显示流量的信息。这是一个错误还是我读得不够好?是否有Google Maps Embed API的替代品?