Click on the map below to build points of the polygon(at least 3).
Then click to button 'Draw' to draw it.
Wraps Google Maps API class GPolygon. This is very similar to a GPolyline, except
that you can additionally specify a fill color and opacity.
The control above is initialized with this code.
<artem:GoogleMap ID="GoogleMap2" runat="server" Width="530px" Height="500px" Latitude="42.1229" Longitude="24.7879"
Zoom="4" OnClientClick="handleMapClick" EnableScrollWheelZoom="true" BorderStyle="Solid" BorderColor="#999999"
BorderWidth="1">
<Polygons>
<artem:GooglePolygon FillColor="Red" FillOpacity=".8" StrokeColor="Blue" StrokeWeight="2">
<artem:GooglePoint Latitude="37.97918" Longitude="23.716647" />
<artem:GooglePoint Latitude="41.036501" Longitude="28.984895" />
<artem:GooglePoint Latitude="44.447924" Longitude="26.097879" />
<artem:GooglePoint Latitude="44.802416" Longitude="20.465601" />
<artem:GooglePoint Latitude="42.002411" Longitude="21.436097" />
<artem:GooglePoint Latitude="37.97918" Longitude="23.716647" />
</artem:GooglePolygon>
</Polygons>
</artem:GoogleMap>