13

我正在使用此服务https://developers.google.com/maps/documentation/javascript/directions在两个标记之间创建一条路线。

问题是,当我运行创建路径的函数时,当我创建具有不同样式的标记时,他默认从谷歌地图(开头和结尾)输入两个标记。

结果:在每个点上都有我的标记和标记的默认谷歌地图。

如何隐藏谷歌创建的标记?

我正在使用的代码是:

function makePathToMarker(position1, position2) {
    var request = {
        origin: new google.maps.LatLng(myLocation.split(",")[0],myLocation.split(",")[1]),
        destination: new google.maps.LatLng(position1, position2),
        travelMode: google.maps.DirectionsTravelMode.DRIVING
    };

    var directionsService = new google.maps.DirectionsService();

    directionsService.route(request, function(response, status) {
        if (status == google.maps.DirectionsStatus.OK) {
            directionsDisplay.setDirections(response);
        }
    });
}
4

2 回答 2

45

实例化 DirectionsRenderer 时,将 suppressMarkers 设置为 true。

  directionsDisplay = new google.maps.DirectionsRenderer(
  {
      suppressMarkers: true
  });

这是参考

于 2012-07-16T18:50:36.340 回答
1

取决于你需要什么

directionsDisplay.setOptions({ 
     suppressPolylines: true, 
     suppressMarkers: true
});
于 2019-02-28T11:30:34.507 回答