谷歌地图方向不透明

时间:2012-07-09 01:59:13

标签: google-maps

我试图以某种方式更改Google地图中路线服务所创建的线条的不透明度。 使蓝线半透明。

实际上,我需要一些在方向线下看到的方式,例如,使线条虚线也适合我。

2 个答案:

答案 0 :(得分:3)

实例化DirectionsRenderer时,请设置适当的选项,例如:

see the demo

directionsDisplay = new google.maps.DirectionsRenderer({
    polylineOptions: {
        strokeColor: "green",
        strokeOpacity: 0.3
    }
});

答案 1 :(得分:0)

如果它们是折线,那么有一种方法可以通过strokeOpacity在API的v3中设置不透明度:

https://developers.google.com/maps/documentation/javascript/reference#PolylineOptions