Some important bug fixes and couple of new features were added.
There are no major changes to the sample website.
Source code could be downloaded from the Source Code section selecting branch release-6.1.
Thus just builds of GoogleMap Control are issued here in this release.
Update 14.Oct.2012 -
Client side access fixed
NuGet Package
Features
- Bounds property to provide ability to create a map by center and bounds as well;
<artem:GoogleMap ID="GoogleMap1" runat="server" MapType="HYBRID" Zoom="8" CssClass="map">
<Bounds>
<NorthEast Latitude="42.2697868981211" Longitude="24.9835939697266" />
<SouthWest Latitude="42.02542336268529" Longitude="24.5441408447266" />
</Bounds>
</artem:GoogleMap>
<artem:GoogleMap ID="GoogleMap1" runat="server" MapType="HYBRID" Zoom="8" CssClass="map">
<Bounds NorthEast-Latitude="42.2697868981211" NorthEast-Longitude="24.9835939697266" SouthWest-Latitude="42.02542336268529" SouthWest-Longitude="24.5441408447266"/>
</artem:GoogleMap>
<artem:GoogleMap ID="GoogleMap1" runat="server" MapType="HYBRID" Zoom="8" CssClass="map"
Bounds-NorthEast-Latitude="42.2697868981211" Bounds-NorthEast-Longitude="24.9835939697266"
Bounds-SouthWest-Latitude="42.02542336268529" Bounds-SouthWest-Longitude="24.5441408447266">
</artem:GoogleMap>
GoogleMap1.Bounds = new Bounds {
NorthEast = new LatLng(42.2697868981211, 24.9835939697266),
SouthWest = new LatLng(42.02542336268529, 24.5441408447266)
};
- AutoOpen property for markers in order the open info window of marker on map load. In the example bellow info windows of both markers will be opened on map load.
<artem:GoogleMap ID="GoogleMap1" runat="server" Latitude="42.1229" Longitude="24.7879"
Zoom="6" EnableScrollWheelZoom="true" CssClass="map">
</artem:GoogleMap>
<artem:GoogleMarkers ID="GoogleMarkers1" TargetControlID="GoogleMap1" runat="server"
OnClientClick="handleMarkerClick">
<Markers>
<artem:Marker Address="plovdiv" Title="Click on the marker" Info="Text of marker 1" AutoOpen="true">
</artem:Marker>
<artem:Marker Position-Latitude="42.7" Position-Longitude="23.3" Title="Click on the marker"
Info="Text of marker 2" AutoOpen="true">
</artem:Marker>
</Markers>
<MarkerOptions Draggable="true">
</MarkerOptions>
</artem:GoogleMarkers>
- Contructors for creating a map by center and zoom and center and bounds;
Bug fixes