gpolygon

How do I get google maps to show a whole polygon?

I have a set of GPolygon objects which are attached to objects in my domain model and are added to a map on my page. The domain objects are being shown in a list on the same page and when the user clicks on one of them I want to show the associated polygon. I want the whole polygon to be showing and ideally I want the map to be centred...

Drawing resizable (not intersecting) polygons

Hello everyone, I have been searching everywhere but I could not find an answer. I need to have drawing resizable polygons with mouse interaction but I do not want irregular, overlapping or intersecting polygons in the end. Here is a simple example of drawing resizable polygons http://www.wolfpil.de/polygon.html You can easily cre...

Change the color a Gpolygon with mouse event

I try change the color to one Gpolygon with a mouseover event map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(-39.875696,-72.624207), 9); pLat = 0.2; pLon = 0.2; p1Lat = -40; p1Lon = -73; p1Coor = [ new GLatLng(p1Lat, p1Lon - pLon), new GLatLng(p1Lat + pLat, p1Lon)...