結果の表示に BUS、RAIL、WALKING などのさまざまな使用モードが使用される TRANSIT セクションで、Google Maps APIv3 に表示されるパスの色を変更できるかどうかを知りたいと思いました。
これらの異なるモードの表示色を変更できますか? 現在、ウォーキングはブラック、その他のモードはスカイブルーです。
私のコードは次のとおりです。
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);
}
});
}