如何在谷歌地图上更改路线的颜色

时间:2012-04-05 16:30:49

标签: javascript google-maps

我想在搜索根目录时更改Google地图上的线条颜色。我想在照片中做到这一点。我想将其从默认图片default line route更改为红色线条,如图color of route中所示。 我使用Google Maps JavaScript API V3。那可能吗?

1 个答案:

答案 0 :(得分:0)

请参阅回答how to change the color of route in google maps v3

创建directionDisplay对象时

var directionsDisplay = new google.maps.DirectionsRenderer({
    polylineOptions: {
       strokeColor: "red"
    }
});