hi in final i released that i want with single polygon with encoded polyline
www.acsaba.sixserve.com/map.php On Feb 26, 8:59 am, albertcsaba <[email protected]> wrote: > hello everybody .. can you help me? > > the code is from sample files > http://code.google.com/p/gmaps-samples-v3/source/browse/trunk/poly/pe... > > the question is how can id this intersection with encoded polygline/ > polygon > > <html> > <head> > <script type="text/javascript" src="http://maps.google.com/maps/api/js? > sensor=false"></script> > <script type="text/javascript"> > var paths = [[ > new google.maps.LatLng(38.872886, -77.054720), > new google.maps.LatLng(38.872602, -77.058046), > new google.maps.LatLng(38.870080, -77.058604), > new google.maps.LatLng(38.868894, -77.055664), > new google.maps.LatLng(38.870598, -77.053346) > ], [ > new google.maps.LatLng(38.871684, -77.056780), > new google.maps.LatLng(38.871867, -77.055449), > new google.maps.LatLng(38.870915, -77.054891), > new google.maps.LatLng(38.870113, -77.055836), > new google.maps.LatLng(38.870581, -77.057037) > ]]; > > function initialize() { > var map = new google.maps.Map(document.getElementById("map"), { > zoom: 16, > center: new google.maps.LatLng(38.8714, -77.0556), > mapTypeId: google.maps.MapTypeId.SATELLITE > }); > > var poly = new google.maps.Polygon({ > paths: paths, > strokeWeight: 3, > fillColor: '#55FF55', > fillOpacity: 0.5 > }); > > poly.setMap(map); > } > </script> > </head> > <body style="margin:0px; padding:0px;" onload="initialize()"> > <div id="map" style="width: 480; height: 480;"></div> > </body> > </html> -- You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api-for-flash?hl=en.
