LabeledMarker
The LabeledMarker is part of the GMaps Utility Library.
LabeledMarker allows us to add letters to the icons of GoogleMaps.
Code.aspx
<cc1:GMap ID="GMap1" runat="server" />
Code.aspx.cs
GLatLng latLng = new GLatLng(50, 10);
GMap1.setCenter(latLng);
GIcon icon = new GIcon();
icon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/circular/greencirclemarker.png";
icon.iconSize = new GSize(32, 32);
icon.iconAnchor = new GPoint(16, 16);
icon.infoWindowAnchor = new GPoint(25, 7);
LabeledMarker labeledMarker = new LabeledMarker(latLng);
labeledMarker.options.labelText = "S";
labeledMarker.options.labelOffset = new GSize(-4, -7);
labeledMarker.options.icon = icon;
GInfoWindow window = new GInfoWindow(labeledMarker, "You can use the Labeled Marker as any other marker");
GMap1.Add(window);
StaticGMap1.span = new GLatLng(7, 5);