1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
............................................................
var flightPlanCoordinatesZone = [
new google.maps.LatLng( 53.6889080753341, 4.1302128839818),
new google.maps.LatLng( 53.6891834497314, 4.13114719450636),
new google.maps.LatLng( 53.6892415443694, 4.13109219810362),
new google.maps.LatLng( 53.6891657116576, 4.1308544450058),
new google.maps.LatLng( 53.6889080753341, 4.1302128839818)
];
var flightPathZone = new google.maps.Polygon({
path: flightPlanCoordinatesZone,
strokeColor: "#FFFF00",
strokeOpacity: 0.9,
strokeWeight: 1,
fillColor: "#00CC00",
fillOpacity: 0.1,
indexID: 498
});
flightPathZone.setMap(map);
................................................... |
Partager