如何使用 Google Maps API / Directions API 获取道路危险

发布于 2024-11-10 11:48:41 字数 120 浏览 2 评论 0原文

我正在尝试绘制带有交通图层的地图并显示道路状况(建筑、事故等)。使用 Google Maps API / Google Directions API,我如何获取对所显示的交通状况的引用,或更具体地说,沿路径/路线的条件?谢谢。

I am trying to draw a map with the traffic layer and display road conditions (constructions, accidents, etc.) Using the Google Maps API / Google Directions API, how can I obtain a reference to the traffic conditions that are displayed, or more specifcally, the conditions along a path / route? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗心人 2024-11-17 11:48:41

在 Google Maps API v3 中,文档表示您显示像这样的交通状况:

var myLatlng = new google.maps.LatLng(34.04924594193164, -118.24104309082031);
var myOptions = {
  zoom: 13,
  center: myLatlng,
  mapTypeId: google.maps.MapTypeId.ROADMAP
}

var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

var trafficLayer = new google.maps.TrafficLayer();
trafficLayer.setMap(map);

我认为这不会显示特定的危险(例如事故或施工),而只是显示交通缓慢。您几乎肯定必须从 Google 地图以外的来源获取此类数据。

这个问题被标记为 Google Maps API v3(这是我上面回答的)和 Android。我不知道这对你的Android原生编程是否有帮助,但希望它不是没有用处。 (更新:看起来问题现在已被重新标记以删除 API v3 标签。)

In Google Maps API v3, the documentation says you display traffic conditions like this:

var myLatlng = new google.maps.LatLng(34.04924594193164, -118.24104309082031);
var myOptions = {
  zoom: 13,
  center: myLatlng,
  mapTypeId: google.maps.MapTypeId.ROADMAP
}

var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

var trafficLayer = new google.maps.TrafficLayer();
trafficLayer.setMap(map);

I don't think this will display specific hazards (like accidents or construction) but simply slow traffic. You would almost certainly have to get such data from a source that wasn't Google Maps.

This question was tagged as both Google Maps API v3 (which is what I answered with above) and Android. I don't know if this helps you for Android native programming, but hopefully it's not useless. (Update: Looks like the question has now been retagged to remove the API v3 tag.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文