我想知道是否可以更改 Google Maps APIv3 中显示的路径的颜色,特别是在 TRANSIT 部分,其中使用 BUS、RAIL 和 WALKING 等不同的使用模式来显示结果。
我可以更改这些不同模式的显示颜色吗?目前,步行模式为黑色,其他模式为天蓝色。
我的代码是:
function calcRouteM()
{
var start = document.getElementById('DropDownList1').value;
var end = document.getElementById('DropDownList2').value;
var request = {
origin: start,
destination: end,
provideRouteAlternatives: true,
unitSystem: google.maps.UnitSystem.METRIC,
travelMode: google.maps.DirectionsTravelMode.TRANSIT,
transitOptions: {
departureTime: new Date(1362799800000)
}
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}