我正在尝试自定义GDirections对象绘制的图标。我有一个lat长坐标列表,用于构建路径。但是,我找不到任何自定义(甚至关闭)API自动放置的标记的方法。
var map;
map = new GMap2(document.getElementById("map_canvas"));
.... //get the path coordinates
var route = new GDirections(map);
route.load(path_coordinates);
调用route.getPolyline().hide()
会隐藏路径,但不会隐藏标记。调用route.getMarker(1).isHidden()
返回true,显然隐藏它不会改变任何东西。
api不支持此功能吗?
我正在使用map api 2.81
答案 0 :(得分:1)
试试这段代码:
var map;
map = new GMap2(document.getElementById("map_canvas"));
.... //get the path coordinates
var route = new GDirections(map);
route.load(path_coordinates);
GEvent.addListener(route , "addoverlay", hideDirMarkers);
function hideDirMarkers(){
var numMarkers = route.getNumGeocodes()
for (var i = 0; i < numMarkers; i++) {
var marker = route.getMarker(i);
if (marker != null)
marker.hide();
else
alert("Marker is null");
}
}