0

我使用 TrafficLayer 对象创建了一个显示流量的地图,其中包含 google maps javascript API。同一区域的 googlmaps.com 生成的地图显示了 waze 事件图标,但它们没有显示在我的地图上。有没有办法在生成交通地图时包含事件标记?这是我的代码:

<script>
  var map;
  function initMap() {
    map = new google.maps.Map(document.getElementById('map'), {
      center: {lat: 37.794086, lng: -122.400445},
      zoom: 12
    });
    var trafficLayer = new google.maps.TrafficLayer();
    trafficLayer.setMap(map);
  }

</script>
<script src="https://maps.googleapis.com/maps/api/js?key=xxxxxxxx&callback=initMap"
async defer></script>
4

1 回答 1

0

目前不可能在谷歌交通地图上添加带有事件/建筑标记的图层。

自 2010 年开始就该主题进行讨论,可在以下网站上找到: https ://code.google.com/p/gmaps-api-issues/issues/detail?id=2411

还有待谷歌开发者的回应。

于 2016-08-24T06:08:31.763 回答