Wraps Google Maps API class GPolyline. This is a map overlay that draws a polyline
on the map, using the vector drawing facilities of the browser if they are available,
or an image overlay from Google servers otherwise.
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">
<Polylines>
<artem:GooglePolyline Color="Blue" Weight="2" Opacity="1" IsGeodesic="false">
<artem:GooglePoint Latitude="42.1229" Longitude="24.7879" />
<artem:GooglePoint Latitude="51.34433" Longitude="16.17578" />
<artem:GooglePoint Latitude="41.70572" Longitude="12.39257" />
</artem:GooglePolyline>
</Polylines>
</artem:GoogleMap>