我想在搜索根目录时更改Google地图上的线条颜色。我想在照片中做到这一点。我想将其从默认图片default line route更改为红色线条,如图color of route中所示。 我使用Google Maps JavaScript API V3。那可能吗?
答案 0 :(得分:0)
请参阅回答how to change the color of route in google maps v3
创建directionDisplay对象时
var directionsDisplay = new google.maps.DirectionsRenderer({
polylineOptions: {
strokeColor: "red"
}
});