ポリライン 2011/6/26 ポリラインは、地図上に各座標をつなぐ線を描画します。 構文 Polyline options オブジェクトで、ポリラインの線の色、太さ、透明度を指定します。 // LatLng 配列 var flightPlanCoordinates = [ new google.maps.LatLng(37.772323, -122.214897), ・・・ ]; // Polyline オブジェクト var flightPath=new google.maps.Polyline({ path: flightPlanCoordinates, //ポリラインの配列 strokeColor: '#FF0000', //色(#RRGGBB形式) strokeOpacity: 1.0, //透明度 0.0~1.0(デフォルト) strokeWeight: 2 //太さ(単位ピクセ