我试图以某种方式更改Google地图中路线服务所创建的线条的不透明度。 使蓝线半透明。
实际上,我需要一些在方向线下看到的方式,例如,使线条虚线也适合我。
答案 0 :(得分:3)
实例化DirectionsRenderer时,请设置适当的选项,例如:
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