User Tools

Site Tools


thinkgeo.mapsuite.webedition.map

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
thinkgeo.mapsuite.webedition.map [2015/09/22 08:49]
admin
— (current)
Line 1: Line 1:
-====== ThinkGeo.MapSuite.WebEdition.Map ====== 
-This class represents the map control. 
-===== Inheritance Hierarchy ===== 
-  *System.Object 
-    *System.Web.UI.Control 
-      *System.Web.UI.WebControls.WebControl 
-        *System.Web.UI.WebControls.Panel 
-          ***ThinkGeo.MapSuite.WebEdition.Map** 
-===== Members Summary ===== 
-==== Public Constructors ==== 
-** {{wiki:​PublicMethod.gif|}} Map() ** 
- 
-  * //​Initialize a new instance of the Map class.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Map.28.29//​ 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Map(String,​Int32,​Int32) ** 
- 
-  * //​Initialize a new instance of the Map class with identifier, map width, and map height specified.//​ 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Map.28String.2C_Int32.2C_Int32.29//​ 
-== Parameters == 
-  * //id// 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //width// 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-  * //height// 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-==== Protected Constructors ==== 
-==== Public Methods ==== 
-** {{wiki:​PublicMethod.gif|}} GetScreenDistanceBetweenTwoWorldPoints(PointShape,​PointShape) ** 
- 
-  * //Gets the distance in pixels between two specified points in world coordinates.//​ 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetScreenDistanceBetweenTwoWorldPoints.28PointShape.2C_PointShape.29//​ 
- 
-== Return Value == 
-  * Type:Single 
-  * Description:​The lengh in pixels between the two points. 
- 
-== Parameters == 
-  * //​startPoint//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] 
-    * Description:​The first point in world coordinates. 
- 
-  * //​endpoint//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] 
-    * Description:​The second point in world coordinates. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetWorldDistanceBetweenTwoScreenPoints(ScreenPointF,​ScreenPointF,​DistanceUnit) ** 
- 
-  * //Gets the distance in the specified distance unit from two screen points.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetWorldDistanceBetweenTwoScreenPoints.28ScreenPointF.2C_ScreenPointF.2C_DistanceUnit.29//​ 
- 
-== Return Value == 
-  * Type:Double 
-  * Description:​The distance value in the specified unit between two screen points. 
- 
-== Parameters == 
-  * //​startPoint//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] 
-    * Description:​The first point in screen coordinates. 
- 
-  * //​endpoint//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] 
-    * Description:​The second point in screen coordinates. 
- 
-  * //​unitOfDistance//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.DistanceUnit|DistanceUnit]] 
-    * Description:​The unit of return distance. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Pan(PanDirection,​Int32) ** 
- 
-  * //Moves the map by the specified direction and percentage of the current extent.// 
-== Remarks == 
-  * //This method caculates the panning offset by the current extent and the percentage. If the percentage is 20, the panning offset in the X direction is <​strong>​CurrentExtent.Width* 0.2</​strong>​ and the offset in the Y direction is <​strong>​CurrentExtent.Hight*0.2</​strong>​.//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​panDirection//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.PanDirection|PanDirection]] 
-    * Description:​Up,​ Down, Left, Right, UpperRight, LowerRight, UpperLeft, LowerLeft. 
- 
-  * //​percentage//​ 
-    * Type:Int32 
-    * Description:​The percentage of the current extent. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Pan(Single,​Int32) ** 
- 
-  * //Moves the map by the specified angle and the percentage of the current extent.// 
-== Remarks == 
-  * //This method moves the map by the angle and the percentage that you specify. The angle starts from the east and increases counterclockwise. For example, angle 0 represents precisely east and angle 90 represents precisely north. The percentage specifies the offset related to the current extent. If the percentage is 20, the panning offset in the X direction is <​strong>​CurrentExtent.Width* 0.2</​strong>​ and the offset in the Y direction is <​strong>​CurrentExtent.Hight*0.2</​strong>​.//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //degree// 
-    * Type:Single 
-    * Description:​The angle value that determines the panning direction. 
- 
-  * //​percentage//​ 
-    * Type:Int32 
-    * Description:​The percentage of the current extent. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ToScreenCoordinate(Double,​Double) ** 
- 
-  * //Returns a point shape in screen coordinates from the specified X, Y world coordinates.//​ 
-== Remarks == 
-  * //This method converts X, Y world coordinates to a point in screen coordinates.//​ 
- 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] 
-  * Description:​A screen point in pixels. 
- 
-== Parameters == 
-  * //worldX// 
-    * Type:Double 
-    * Description:​The X world coordinate. 
- 
-  * //worldY// 
-    * Type:Double 
-    * Description:​The Y world coordinate. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ToScreenCoordinate(PointShape) ** 
- 
-  * //Returns a screen point from a point shape in world coordinates.//​ 
-== Remarks == 
-  * //This method converts the coordinates of a point shape to a point in screen coordinates.//​ 
- 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] 
-  * Description:​A screen point in pixels. 
- 
-== Parameters == 
-  * //​worldPoint//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] 
-    * Description:​A point shape in world coordinates. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ToWorldCoordinate(Single,​Single) ** 
- 
-  * //Returns a point shape in world coordinates from the specified X, Y screen coordinates.//​ 
-== Remarks == 
-  * //This method converts X, Y screen coordinates to a point shape in world coodinates.//​ 
- 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] 
-  * Description:​A point shape in world coordinates. 
- 
-== Parameters == 
-  * //screenX// 
-    * Type:Single 
-    * Description:​The X-value in pixels referenced to the screen origin. 
- 
-  * //screenY// 
-    * Type:Single 
-    * Description:​The Y-value in pixels referenced to the screen origin. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ToWorldCoordinate(ScreenPointF) ** 
- 
-  * //Returns a point shape in world coordinates from a ScreenPointF structure.//​ 
-== Remarks == 
-  * //This method converts a screen point to a point in world coordinates.//​ 
- 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] 
-  * Description:​A point shape in world coordinates. 
- 
-== Parameters == 
-  * //​screenPoint//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] 
-    * Description:​The point (in screen coordinates) to convert to world coordinates. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} CenterAt(PointShape) ** 
- 
-  * //Moves the center of the map to a specified point..// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CenterAt.28PointShape.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​worldPoint//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] 
-    * Description:​The target point in world coordinates to set as the center of the map's CurrentExtent. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} CenterAt(Double,​Double) ** 
- 
-  * //Moves the center of the map to a point specified by the provided X, Y world coordinates.//​ 
-== Remarks == 
-  * //This method changes the map center to a point specified by the X, Y coordinates you provide.// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //worldX// 
-    * Type:Double 
-    * Description:​The X-value in world coordinates of the new center. 
- 
-  * //worldY// 
-    * Type:Double 
-    * Description:​The Y-value in world coordinates of the new center. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ZoomTo(PointShape,​Double) ** 
- 
-  * //Zooms the map to the center point and the scale that you specify.// 
-== Remarks == 
-  * //The map will be panned to the new center and zoomed to the scale that you specify. If the new scale is not within the scales of the zoomlevels, the map will snap to the nearest upper zoomlevel. Thus, the scale the map finally zooms to may not be exactly the same as the scale you specified.//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //center// 
-    * Type:​[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] 
-    * Description:​The new center point of the map. 
- 
-  * //scale// 
-    * Type:Double 
-    * Description:​The new scale that the map will zoom to. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ZoomIn() ** 
- 
-  * //Zooms the map in to the next zoomlevel.//​ 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ZoomIn.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ZoomOut() ** 
- 
-  * //Zooms the map out to the next zoomlevel.//​ 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ZoomOut.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ZoomToMarkers(IEnumerable<​Marker>​) ** 
- 
-  * //Changes the current extent to the extent that includes all of the markers passed in.// 
-== Remarks == 
-  * //This method changes the map's current extent to the smallest BoundingBox that includes all of the markers you specified.//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //markers// 
-    * Type:​IEnumerable<​[[ThinkGeo.MapSuite.WebEdition.Marker|Marker]]>​ 
-    * Description:​The markers that will be included in the new extent. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ZoomToScale(Double) ** 
- 
-  * //Zoom the map to a specific scale.// 
-== Remarks == 
-  * //This method will not affect the center of the map. It zooms the map to the zoomlevel whose scale is larger and nearest to the scale specified. For example, if you specify a scale that is between two zoomlevels, the map will snap to the nearest upper zoomlevel. So the map's final scale might not be equal to the specified scale after you call this method.// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​targetScale//​ 
-    * Type:Double 
-    * Description:​The scale the map will zoom to. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetBitmap() ** 
- 
-  * //Gets a bitmap image of the map with the current map settings.// 
-== Remarks == 
-  * //This method will generate a bitmap image with the current map settings, including width, height, current extent, etc.// 
- 
-== Return Value == 
-  * Type:Bitmap 
-  * Description:​A bitmap that is generated based on the current map settings. 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetBitmap(Int32,​Int32) ** 
- 
-  * //Gets a bitmap image based on the current map settings with the specified width and height.// 
-== Remarks == 
-  * //This method generates a bitmap map image with the current map settings, using the image width and height that you specify.// 
- 
-== Return Value == 
-  * Type:Bitmap 
-  * Description:​A bitmap that is generated base on the current map settings. 
- 
-== Parameters == 
-  * //width// 
-    * Type:Int32 
-    * Description:​The width of bitmap. 
- 
-  * //height// 
-    * Type:Int32 
-    * Description:​The height of bitmap. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ToJson() ** 
- 
-  * //Returns a JSON string that contains map information for creating the map at the client side.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ToJson.28.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​A JSON string that contains map information for creating the map at the client side. 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} RenderBeginTag(HtmlTextWriter) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RenderBeginTag.28HtmlTextWriter.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} RenderEndTag(HtmlTextWriter) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RenderEndTag.28HtmlTextWriter.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ApplyStyle(Style) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ApplyStyle.28Style.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //s// 
-    * Type:Style 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} CopyBaseAttributes(WebControl) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CopyBaseAttributes.28WebControl.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​controlSrc//​ 
-    * Type:​WebControl 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} MergeStyle(Style) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​MergeStyle.28Style.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //s// 
-    * Type:Style 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} SetTraceData(Object,​Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​SetTraceData.28Object.2C_Object.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​traceDataKey//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-  * //​traceDataValue//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} SetTraceData(Object,​Object,​Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​SetTraceData.28Object.2C_Object.2C_Object.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​tracedObject//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-  * //​traceDataKey//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-  * //​traceDataValue//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ApplyStyleSheetSkin(Page) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ApplyStyleSheetSkin.28Page.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //page// 
-    * Type:Page 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} DataBind() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DataBind.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Focus() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Focus.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} RenderControl(HtmlTextWriter) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RenderControl.28HtmlTextWriter.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Dispose() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Dispose.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ResolveUrl(String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ResolveUrl.28String.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​relativeUrl//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ResolveClientUrl(String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ResolveClientUrl.28String.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​relativeUrl//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} FindControl(String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​FindControl.28String.29//​ 
- 
-== Return Value == 
-  * Type:​Control 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //id// 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} HasControls() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasControls.28.29//​ 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} SetRenderMethodDelegate(RenderMethod) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​SetRenderMethodDelegate.28RenderMethod.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​renderMethod//​ 
-    * Type:​RenderMethod 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetRouteUrl(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetRouteUrl.28Object.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​routeParameters//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetRouteUrl(String,​Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetRouteUrl.28String.2C_Object.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​routeName//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​routeParameters//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetRouteUrl(RouteValueDictionary) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetRouteUrl.28RouteValueDictionary.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​routeParameters//​ 
-    * Type:​RouteValueDictionary 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetRouteUrl(String,​RouteValueDictionary) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetRouteUrl.28String.2C_RouteValueDictionary.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​routeName//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​routeParameters//​ 
-    * Type:​RouteValueDictionary 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetUniqueIDRelativeTo(Control) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetUniqueIDRelativeTo.28Control.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //control// 
-    * Type:​Control 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ToString() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ToString.28.29//​ 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Equals(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Equals.28Object.29//​ 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //obj// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetHashCode() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetHashCode.28.29//​ 
- 
-== Return Value == 
-  * Type:Int32 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetType() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetType.28.29//​ 
- 
-== Return Value == 
-  * Type:Type 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Protected Methods ==== 
-** {{wiki:​ProtectedMethod.gif|}} 5RQ=(IEnumerable<​ZoomLevel>​) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​zoomLevels//​ 
-    * Type:​IEnumerable<​[[ThinkGeo.MapSuite.Core.ZoomLevel|ZoomLevel]]>​ 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} 5RQ=(ZoomLevelSet) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​clientZoomLevelSet//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.ZoomLevelSet|ZoomLevelSet]] 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnClick(MapClickedEventArgs) ** 
- 
-  * //Raises the Click event of the map control.// 
-== Remarks == 
-  * //The OnClick methods allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. <​strong>​Notes to Inheritors:</​strong>​ When overriding OnClick in a derived class, be sure to call the base class'​s OnClick method so that registered delegates receive the event.// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​[[ThinkGeo.MapSuite.WebEdition.MapClickedEventArgs|MapClickedEventArgs]] 
-    * Description:​A MapClickedEventArgs that contains the event data. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnDoubleClick(MapClickedEventArgs) ** 
- 
-  * //Raises the DoubleClick event of the map control.// 
-== Remarks == 
-  * //The <​strong>​OnDoubleClick</​strong>​ method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. <​strong>​Notes to Inheritors:</​strong>​ When overriding <​strong>​OnDoubleClick</​strong>​ in a derived class, be sure to call the base class'​s <​strong>​OnDoubleClick</​strong>​ method so that registered delegates receive the event.// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​[[ThinkGeo.MapSuite.WebEdition.MapClickedEventArgs|MapClickedEventArgs]] 
-    * Description:​A MapClickedEventArgs that contains the event data. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnTrackShapeFinished() ** 
- 
-  * //Raises the TrackShapeFinished event of the map control.// 
-== Remarks == 
-  * //The <​strong>​OnTrackShapeFinished</​strong>​ method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. <​strong>​Notes to Inheritors:</​strong>​ When overriding <​strong>​OnTrackShapeFinished</​strong>​ in a derived class, be sure to call the base class'​s <​strong>​OnTrackShapeFinished</​strong>​ method so that registered delegates receive the event.// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnBaseOverlayChanged(BaseOverlayChangedEventArgs) ** 
- 
-  * //Raises the BaseOverlayChanged event of the map control.// 
-== Remarks == 
-  * //The <​strong>​OnBaseOverlayChanged</​strong>​ method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. <​strong>​Notes to Inheritors:</​strong>​ When overriding <​strong>​OnBaseOverlayChanged</​strong>​ in a derived class, be sure to call the base class'​s <​strong>​OnBaseOverlayChanged</​strong>​ method so that registered delegates receive the event.// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​[[ThinkGeo.MapSuite.WebEdition.BaseOverlayChangedEventArgs|BaseOverlayChangedEventArgs]] 
-    * Description:​The BaseOverlayChangedEventArgs that contains the event data. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnExtentChanged() ** 
- 
-  * //Raises the ExtentChanged event of the map control.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnExtentChanged.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} CreateControlStyle() ** 
- 
-  * //Creates the style object that is used internally by the System.Web.UI.WebControls.WebControl class to implement all style-related properties. This method is used primarily by control developers.//​ 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CreateControlStyle.28.29//​ 
- 
-== Return Value == 
-  * Type:Style 
-  * Description:​A System.Web.UI.WebControls.Style that is used to implement all style-related properties of the control. 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnInit(EventArgs) ** 
- 
-  * //Raises the System.Web.UI.Control.Init event.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnInit.28EventArgs.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​EventArgs 
-    * Description:​A System.EventArgs object that contains the event data. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnLoad(EventArgs) ** 
- 
-  * //Raises the System.Web.UI.Control.OnLoad event.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnLoad.28EventArgs.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​EventArgs 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnPreRender(EventArgs) ** 
- 
-  * //Raises the System.Web.UI.Control.PreRender event.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnPreRender.28EventArgs.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​EventArgs 
-    * Description:​A System.EventArgs object that contains the event data. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} RegisterJavascriptLibraryCore() ** 
- 
-  * //Register javascript library. OpenLayers.js,​ OpenLayersExtension.js,​ Helper.js, MapParser.js,​ Function.js,​ ContextMenu.js files will be referenced to the web page.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RegisterJavascriptLibraryCore.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} Render(HtmlTextWriter) ** 
- 
-  * //Sends server control content to a provided System.Web.UI.HtmlTextWriter object, which writes the content to be rendered on the client.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AddAttributesToRender.28HtmlTextWriter.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​The System.Web.UI.HtmlTextWriter object that receives the server control content. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} RenderChildren(HtmlTextWriter) ** 
- 
-  * //Outputs the content of a server control'​s children to a provided System.Web.UI.HtmlTextWriter object, which writes the content to be rendered on the client.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RenderChildren.28HtmlTextWriter.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​The System.Web.UI.HtmlTextWriter object that receives the rendered content. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SaveViewState() ** 
- 
-  * //Saves any server control view-state changes that have occurred since the time the page was posted back to the server.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​SaveViewState.28.29//​ 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​Returns the server control'​s current view state. If there is no view state associated with the control, this method returns null. 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadViewState(Object) ** 
- 
-  * //Restores view-state information from a previous page request that was saved by the System.Web.UI.Control.SaveViewState method.// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​LoadViewState.28Object.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​savedState//​ 
-    * Type:Object 
-    * Description:​An System.Object that represents the control state to be restored. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnUnload(EventArgs) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnUnload.28EventArgs.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​EventArgs 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} AddAttributesToRender(HtmlTextWriter) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AddAttributesToRender.28HtmlTextWriter.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} AddDisplayInlineBlockIfNeeded(HtmlTextWriter) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} TrackViewState() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​TrackViewState.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} RenderContents(HtmlTextWriter) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} BeginRenderTracing(TextWriter,​Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BeginRenderTracing.28TextWriter.2C_Object.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​TextWriter 
-    * Description:​N/​A 
- 
-  * //​traceObject//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} EndRenderTracing(TextWriter,​Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​EndRenderTracing.28TextWriter.2C_Object.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​TextWriter 
-    * Description:​N/​A 
- 
-  * //​traceObject//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnDataBinding(EventArgs) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnDataBinding.28EventArgs.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​EventArgs 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} DataBind(Boolean) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DataBind.28Boolean.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​raiseOnDataBinding//​ 
-    * Type:​Boolean 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} DataBindChildren() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DataBindChildren.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} PreventAutoID() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} AddParsedSubObject(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AddParsedSubObject.28Object.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //obj// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} EnsureID() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​EnsureID.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} GetUniqueIDPrefix() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} InitRecursive(Control) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​namingContainer//​ 
-    * Type:​Control 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} InitRecursiveAsync(Control,​Page) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Task 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​namingContainer//​ 
-    * Type:​Control 
-    * Description:​N/​A 
- 
-  * //page// 
-    * Type:Page 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ClearChildState() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearChildState.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ClearChildControlState() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearChildControlState.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ClearChildViewState() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearChildViewState.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ClearEffectiveClientIDMode() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearEffectiveClientIDMode.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ClearCachedClientID() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearCachedClientID.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadControlStateInternal(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​savedStateObj//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadControlState(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​savedState//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadViewStateRecursive(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​savedState//​ 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadChildViewStateByID(ArrayList) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​childState//​ 
-    * Type:​ArrayList 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadChildViewStateByIndex(ArrayList) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​childState//​ 
-    * Type:​ArrayList 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ResolvePhysicalOrVirtualPath(String,​VirtualPath&,​String&​) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //path// 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​virtualPath//​ 
-    * Type:​VirtualPath&​ 
-    * Description:​N/​A 
- 
-  * //​physicalPath//​ 
-    * Type:​String&​ 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} MapPathSecure(String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​virtualPath//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OpenFile(String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Stream 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //path// 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OpenFileAndGetDependency(VirtualPath,​String,​CacheDependency&​) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Stream 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​virtualPath//​ 
-    * Type:​VirtualPath 
-    * Description:​N/​A 
- 
-  * //​physicalPath//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​dependency//​ 
-    * Type:​CacheDependency&​ 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadRecursive() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} LoadRecursiveAsync(Page) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Task 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //page// 
-    * Type:Page 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} PreRenderRecursiveInternal() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} PreRenderRecursiveInternalAsync(Page) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Task 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //page// 
-    * Type:Page 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} EstimateStateSize(Object) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Int32 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //state// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} BuildProfileTree(String,​Boolean) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BuildProfileTree.28String.2C_Boolean.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​parentId//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​calcViewState//​ 
-    * Type:​Boolean 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SaveControlStateInternal() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SaveControlState() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SaveViewStateRecursive(ViewStateMode) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​inheritedMode//​ 
-    * Type:​ViewStateMode 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} RenderChildrenInternal(HtmlTextWriter,​ICollection) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-  * //​children//​ 
-    * Type:​ICollection 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} RenderControl(HtmlTextWriter,​ControlAdapter) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RenderControl.28HtmlTextWriter.2C_ControlAdapter.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //writer// 
-    * Type:​HtmlTextWriter 
-    * Description:​N/​A 
- 
-  * //adapter// 
-    * Type:​ControlAdapter 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} UnloadRecursive(Boolean) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //dispose// 
-    * Type:​Boolean 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} RaiseBubbleEvent(Object,​EventArgs) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RaiseBubbleEvent.28Object.2C_EventArgs.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //source// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-  * //args// 
-    * Type:​EventArgs 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnBubbleEvent(Object,​EventArgs) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnBubbleEvent.28Object.2C_EventArgs.29//​ 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //source// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-  * //args// 
-    * Type:​EventArgs 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SetValidateRequestModeInternal(ValidateRequestMode,​Boolean) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //value// 
-    * Type:​ValidateRequestMode 
-    * Description:​N/​A 
- 
-  * //​setDirty//​ 
-    * Type:​Boolean 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} CalculateEffectiveValidateRequest() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} AddedControl(Control,​Int32) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //control// 
-    * Type:​Control 
-    * Description:​N/​A 
- 
-  * //index// 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} CreateControlCollection() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CreateControlCollection.28.29//​ 
- 
-== Return Value == 
-  * Type:​ControlCollection 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} CreateChildControls() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} DirtyNameTable() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} FindControl(String,​Int32) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​FindControl.28String.2C_Int32.29//​ 
- 
-== Return Value == 
-  * Type:​Control 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //id// 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​pathOffset//​ 
-    * Type:Int32 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} FindControlFromPageIfNecessary(String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​Control 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //id// 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ClearNamingContainer() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} GetDesignModeState() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetDesignModeState.28.29//​ 
- 
-== Return Value == 
-  * Type:​IDictionary 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} HasRenderingData() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} HasRenderDelegate() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} IsLiteralContent() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​IsLiteralContent.28.29//​ 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} EnsureChildControls() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​EnsureChildControls.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SetControlBuilder(ControlBuilder) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​controlBuilder//​ 
-    * Type:​ControlBuilder 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} RemovedControl(Control) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //control// 
-    * Type:​Control 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SetDesignMode() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SetDesignModeState(IDictionary) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​SetDesignModeState.28IDictionary.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //data// 
-    * Type:​IDictionary 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ResolveAdapter() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ResolveAdapter.28.29//​ 
- 
-== Return Value == 
-  * Type:​ControlAdapter 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ValidateEvent(String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​uniqueID//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ValidateEvent(String,​String) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​uniqueID//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​eventArgument//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} HasEvents() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasEvents.28.29//​ 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} ShouldSerializeEnableTheming() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} SetEnableViewStateInternal(Boolean) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //value// 
-    * Type:​Boolean 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} GetXhtmlConformanceSection() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​XhtmlConformanceSection 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} GetTemplateControl() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​TemplateControl 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} IsDescendentOf(Control) ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //N/A// 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​ancestor//​ 
-    * Type:​Control 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} Finalize() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Finalize.28.29//​ 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() ** 
- 
-  * //N/A// 
-== Remarks == 
-  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​MemberwiseClone.28.29//​ 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Public Properties ==== 
-** {{wiki:​PublicProperty.gif|}} CallbackResult ** 
- 
-Represent the result of auto refresh call back. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CallbackResult 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} GeoCanvas ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GeoCanvas 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] 
- 
-** {{wiki:​PublicProperty.gif|}} ZoomLevelSet ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ZoomLevelSet 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.ZoomLevelSet|ZoomLevelSet]] 
- 
-** {{wiki:​PublicProperty.gif|}} MaxExtent ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here: 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] 
- 
-** {{wiki:​PublicProperty.gif|}} WidthInPixels ** 
- 
-Get the actual width, in pixels, of the map control. 
-== Remarks == 
-When you set your map's width with percentage values (for example, 100%), you might want to know the actual pixel width of your map at a given time. This property returns the map's pixel width as determined by the browser. <​strong>​Note:</​strong>​ When the map width is a percent value, the <​strong>​WidthInPixels</​strong>​ is double.NaN only until a postback generates. When the page postbacks, the actual width of the map will be synchronized to this property. 
-== Return Value == 
-  * Type:Double 
- 
-** {{wiki:​PublicProperty.gif|}} HeightInPixels ** 
- 
-Get the actual height, in pixels, of the map control. 
-== Remarks == 
-When you set your map's height with percentage values (for example, 100%), you might want to know the actual pixel height of your map at a given time. This property returns the map's pixel height as determined by the browser. <​strong>​Note:</​strong>​ When the map height is a percent value, the <​strong>​HeightInPixels</​strong>​ is double.NaN only until a postback generates. When the page postbacks, the actual height of the map will be synchronized to this property. 
-== Return Value == 
-  * Type:Double 
- 
-** {{wiki:​PublicProperty.gif|}} ClientID ** 
- 
-Gets the server control identifier generated by ASP.NET. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearCachedClientID.28.29 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} UniqueID ** 
- 
-Gets the unique, hierarchically qualified identifier for the server control. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetUniqueIDRelativeTo.28Control.29 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} MapBackground ** 
- 
-Gets or sets the BackgroundLayer object that paints the map background. 
-== Remarks == 
-This property determines the background of the map. The map will use the brush defined on this BackgroundLayer to paint the background. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.BackgroundLayer|BackgroundLayer]] 
- 
-** {{wiki:​PublicProperty.gif|}} ContextMenu ** 
- 
-Gets or sets the shortcut menu associated with the map. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ContextMenu 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.ContextMenu|ContextMenu]] 
- 
-** {{wiki:​PublicProperty.gif|}} CurrentExtent ** 
- 
-Gets or sets the current extent of the map. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CurrentExtent 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] 
- 
-** {{wiki:​PublicProperty.gif|}} Cursor ** 
- 
-Gets or sets the cursor that appears when the mouse pointer is over the map control. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Cursor 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.CursorType|CursorType]] 
- 
-** {{wiki:​PublicProperty.gif|}} WebConfigRegisterMode ** 
- 
-Gets or sets a value that indicates whether the application allows map to register the Web.config on the fly in runtime. The default value is "​WebConfigRegisterMode.AutoRegistered",​ otherwise, you need to copy the code below to the web.config manually. ... ... 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​WebConfigRegisterMode 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.WebConfigRegistrationMode|WebConfigRegistrationMode]] 
- 
-** {{wiki:​PublicProperty.gif|}} ResourceDeploymentMode ** 
- 
-Gets or sets a value that indicates whether the application allows map to copy its resource images under "​~/​theme/​default/​img/"​. The default value is "​ResourceDeploymentMode.Automatically",​ otherwise, you need to copy images to the directory. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ResourceDeploymentMode 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.ResourceDeploymentMode|ResourceDeploymentMode]] 
- 
-** {{wiki:​PublicProperty.gif|}} ActiveBaseOverlay ** 
- 
-Gets or sets the active base overlay. 
-== Remarks == 
-The map can contain multiple base overlays, though only one of them can be displayed at a time. The <​strong>​ActiveBaseOverlay</​strong>​ property specifies the one that is currently displayed. When you switch the base overlays in the <​strong>​OverlaySwitcher</​strong>,​ the currently selected overlay will be synchronized to this property after postback. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.Overlay|Overlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} BackgroundOverlay ** 
- 
-Gets or sets an Overlay object that displays as the background map by default. 
-== Remarks == 
-The background overlay is one of the base overlays of the map. It can only be the base overlay. If you set a non-base overlay to it, there will be an exception thrown. The background overlay is the active base overlay by default, if you do not set the <​strong>​ActiveBaseOverlay</​strong>​ property. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.Overlay|Overlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} StaticOverlay ** 
- 
-Gets a LayerOverlay object that displays as a background map. 
-== Remarks == 
-The StaticOverlay is a shortcut way for you to add a LayerOverlay to the map. It can only be the base overlay. It is not the active base overlay by default. You need to set it to the ActiveBaseOverlay property in order to display it. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.LayerOverlay|LayerOverlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} DynamicOverlay ** 
- 
-Gets a LayerOverlay object that can overlap other overlays. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DynamicOverlay 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.LayerOverlay|LayerOverlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} MarkerOverlay ** 
- 
-Gets an InMemoryMarkerOverlay object that renders markers by the specified features. 
-== Remarks == 
-The MarkerOverlay overlaps on the base overlay and other non-base overlays. It displays markers based on the features you add to it. If you want to render markers by feature source, use the FeatureSourceMarkerOverlay and add it to the CustomOverlays collection. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.InMemoryMarkerOverlay|InMemoryMarkerOverlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} CustomOverlays ** 
- 
-Gets an Overlay collection, into which you can add different types of overlays. 
-== Remarks == 
-You can create any type of Overlay object and add it to the CustomOverlays collection. The CustomOverlays collection will disable the BackgroundOverlay,​ StaticOverlay,​ DynamicOverlay and MarkerOverlay properties. This means you have two options for using overlays: Either set those overlay properties, or use the CustomOverlays collection. The CustomOverlays collection has higher priority and is more flexible. By contrast, the overlay properties act as shortcut way to use overlays. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.GeoKeyedCollection<​T>​[[ThinkGeo.MapSuite.WebEdition.Overlay,​ WebEdition, Version=9.0.0.0,​ Culture=neutral,​ PublicKeyToken=null]]|GeoKeyedCollection<​T>​]] 
- 
-** {{wiki:​PublicProperty.gif|}} EditOverlay ** 
- 
-Gets an EditOverlay object, with which you can draw and edit shapes at the client. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​EditOverlay 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.EditFeatureOverlay|EditFeatureOverlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} HighlightOverlay ** 
- 
-Gets an HighlightFeatureOverlay object, which draws its features at the client side and can attach the specified click event and context menu to them. 
-== Remarks == 
-The HighlightOverlay actually serializes all its features to the client for drawing. These are client features whose styles changes when you mouse over them, thus generating the mouse-over highlight effect. <​strong>​Note:</​strong>​ Performance may be slow when the features added to the HighlightOverlay contain many vertices, because serializing and drawing these features at the client side may take some time. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.HighlightFeatureOverlay|HighlightFeatureOverlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} AdornmentOverlay ** 
- 
-This property gets or sets the adornment overlay in the MapControl. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AdornmentOverlay 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.AdornmentOverlay|AdornmentOverlay]] 
- 
-** {{wiki:​PublicProperty.gif|}} MapTools ** 
- 
-Gets an object that contains all types of map controls for configuration. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​MapTools 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.MapTools|MapTools]] 
- 
-** {{wiki:​PublicProperty.gif|}} MapUnit ** 
- 
-Gets or sets the GeographyUnit for the map. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​MapUnit 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]] 
- 
-** {{wiki:​PublicProperty.gif|}} OnClientDrawEnd ** 
- 
-Gets or sets the client-side script that executes whenever a feature is drawn at the client. 
-== Remarks == 
-The <​strong>​OnClientDrawEnd</​strong>​ property holds the Javascript function that will be executed whenever you finish drawing a shape. The Javascript function takes one parameter, which is the feature that you just drew. You can use this parameter to add extra data to the feature (add to feature.fieldValues). You can then retrieve that extra data from the feature'​s ColumnValues collection after postback. 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} OnClientEditEnd ** 
- 
-Gets or sets the client-side script that executes whenever you finish editing a shape at the client. 
-== Remarks == 
-The <​strong>​OnClientEditEnd</​strong>​ property holds the Javascript function that will be executed whenever you finish editing a shape. The Javascript function takes one parameter, which is the feature that you just edited. You can use this parameter to edit the extra data of the feature (feature.fieldValues). You can then retrieve that extra data from the feature'​s ColumnValues collection after postback. 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} OnClientClick ** 
- 
-Gets or sets the client-side script that executes when you click on the map. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnClientClick 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} OnClientExtentChanged ** 
- 
-Gets or sets the client-side script that executes when the map extent changes. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnClientExtentChanged 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} OnClientBaseOverlayChanged ** 
- 
-Gets or sets the client-side script that executes when the current base overlay changes in the OverlaySwitcher. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnClientBaseOverlayChanged 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} OnClientDoubleClick ** 
- 
-Gets or sets the client-side script that executes when you double-click on the map. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnClientDoubleClick 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} Popups ** 
- 
-Gets a Popup collection that holds all of the popups in the map. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Popups 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.GeoKeyedCollection<​T>​[[ThinkGeo.MapSuite.WebEdition.Popup,​ WebEdition, Version=9.0.0.0,​ Culture=neutral,​ PublicKeyToken=null]]|GeoKeyedCollection<​T>​]] 
- 
-** {{wiki:​PublicProperty.gif|}} RestrictedExtent ** 
- 
-Gets or sets an extent that limits the area to which the map can be navigated within. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RestrictedExtent 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] 
- 
-** {{wiki:​PublicProperty.gif|}} CurrentScale ** 
- 
-Gets or sets a double value that indicates the current scale of the map. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CurrentScale 
-== Return Value == 
-  * Type:Double 
- 
-** {{wiki:​PublicProperty.gif|}} CustomCursorUri ** 
- 
-Gets and sets a custom cursor image URI for the mouse cursor to use when you select '​CursorType.Custom'​. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CustomCursorUri 
-== Return Value == 
-  * Type:Uri 
- 
-** {{wiki:​PublicProperty.gif|}} IsDefaultJavascriptLibraryDisabled ** 
- 
-Gets or sets whether the default javascript library is disabled or not. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​IsDefaultJavascriptLibraryDisabled 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} IsDomTreeCollectedWhenPostback ** 
- 
-Gets or sets whether collect the DOM tree when Postback. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​IsDomTreeCollectedWhenPostback 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} BackImageUrl ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BackImageUrl 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} DefaultButton ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DefaultButton 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} Direction ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Pan.28PanDirection.2C_Int32.29 
-== Return Value == 
-  * Type:​ContentDirection 
- 
-** {{wiki:​PublicProperty.gif|}} GroupingText ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GroupingText 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} HorizontalAlign ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HorizontalAlign 
-== Return Value == 
-  * Type:​HorizontalAlign 
- 
-** {{wiki:​PublicProperty.gif|}} SupportsDisabledAttribute ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​SupportsDisabledAttribute 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} ScrollBars ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ScrollBars 
-== Return Value == 
-  * Type:​ScrollBars 
- 
-** {{wiki:​PublicProperty.gif|}} Wrap ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Wrap 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} AccessKey ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AccessKey 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} Attributes ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CopyBaseAttributes.28WebControl.29 
-== Return Value == 
-  * Type:​AttributeCollection 
- 
-** {{wiki:​PublicProperty.gif|}} BackColor ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BackColor 
-== Return Value == 
-  * Type:Color 
- 
-** {{wiki:​PublicProperty.gif|}} BorderColor ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BorderColor 
-== Return Value == 
-  * Type:Color 
- 
-** {{wiki:​PublicProperty.gif|}} BorderWidth ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BorderWidth 
-== Return Value == 
-  * Type:Unit 
- 
-** {{wiki:​PublicProperty.gif|}} BorderStyle ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BorderStyle 
-== Return Value == 
-  * Type:​BorderStyle 
- 
-** {{wiki:​PublicProperty.gif|}} ControlStyle ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CreateControlStyle.28.29 
-== Return Value == 
-  * Type:Style 
- 
-** {{wiki:​PublicProperty.gif|}} ControlStyleCreated ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ControlStyleCreated 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} CssClass ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CssClass 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} Style ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ApplyStyle.28Style.29 
-== Return Value == 
-  * Type:​CssStyleCollection 
- 
-** {{wiki:​PublicProperty.gif|}} Enabled ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Enabled 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} EnableTheming ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​EnableTheming 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} Font ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Font 
-== Return Value == 
-  * Type:​FontInfo 
- 
-** {{wiki:​PublicProperty.gif|}} ForeColor ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ForeColor 
-== Return Value == 
-  * Type:Color 
- 
-** {{wiki:​PublicProperty.gif|}} HasAttributes ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasAttributes 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} Height ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Height 
-== Return Value == 
-  * Type:Unit 
- 
-** {{wiki:​PublicProperty.gif|}} SkinID ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​SkinID 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} TabIndex ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​TabIndex 
-== Return Value == 
-  * Type:Int16 
- 
-** {{wiki:​PublicProperty.gif|}} ToolTip ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ToolTip 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} Width ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BorderWidth 
-== Return Value == 
-  * Type:Unit 
- 
-** {{wiki:​PublicProperty.gif|}} ClientIDMode ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearEffectiveClientIDMode.28.29 
-== Return Value == 
-  * Type:​ClientIDMode 
- 
-** {{wiki:​PublicProperty.gif|}} ID ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​GetUniqueIDRelativeTo.28Control.29 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} EnableViewState ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​EnableViewState 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} ViewStateMode ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ViewStateMode 
-== Return Value == 
-  * Type:​ViewStateMode 
- 
-** {{wiki:​PublicProperty.gif|}} NamingContainer ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​NamingContainer 
-== Return Value == 
-  * Type:​Control 
- 
-** {{wiki:​PublicProperty.gif|}} BindingContainer ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​BindingContainer 
-== Return Value == 
-  * Type:​Control 
- 
-** {{wiki:​PublicProperty.gif|}} DataItemContainer ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DataItemContainer 
-== Return Value == 
-  * Type:​Control 
- 
-** {{wiki:​PublicProperty.gif|}} DataKeysContainer ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DataKeysContainer 
-== Return Value == 
-  * Type:​Control 
- 
-** {{wiki:​PublicProperty.gif|}} Page ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ApplyStyleSheetSkin.28Page.29 
-== Return Value == 
-  * Type:Page 
- 
-** {{wiki:​PublicProperty.gif|}} RenderingCompatibility ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RenderingCompatibility 
-== Return Value == 
-  * Type:​Version 
- 
-** {{wiki:​PublicProperty.gif|}} TemplateControl ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​TemplateControl 
-== Return Value == 
-  * Type:​TemplateControl 
- 
-** {{wiki:​PublicProperty.gif|}} Parent ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Parent 
-== Return Value == 
-  * Type:​Control 
- 
-** {{wiki:​PublicProperty.gif|}} TemplateSourceDirectory ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AppRelativeTemplateSourceDirectory 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} AppRelativeTemplateSourceDirectory ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AppRelativeTemplateSourceDirectory 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} Site ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Site 
-== Return Value == 
-  * Type:ISite 
- 
-** {{wiki:​PublicProperty.gif|}} Visible ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Visible 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​PublicProperty.gif|}} Controls ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasControls.28.29 
-== Return Value == 
-  * Type:​ControlCollection 
- 
-** {{wiki:​PublicProperty.gif|}} ValidateRequestMode ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ValidateRequestMode 
-== Return Value == 
-  * Type:​ValidateRequestMode 
- 
-==== Protected Properties ==== 
-** {{wiki:​ProtectedProperty.gif|}} 2BQ= ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Collection<​Double>​ 
- 
-** {{wiki:​ProtectedProperty.gif|}} ClientResolutions ** 
- 
-Gets a collection of client resolutions for zoom level set. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClientResolutions 
-== Return Value == 
-  * Type:​Collection<​Double>​ 
- 
-** {{wiki:​ProtectedProperty.gif|}} StaticOverlayForJson ** 
- 
-Gets the StaticOverlay configuration for client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​StaticOverlayForJson 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.LayerOverlay|LayerOverlay]] 
- 
-** {{wiki:​ProtectedProperty.gif|}} DynamicOverlayForJson ** 
- 
-Gets the DynamicOverlay configuration for client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​DynamicOverlayForJson 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.LayerOverlay|LayerOverlay]] 
- 
-** {{wiki:​ProtectedProperty.gif|}} MarkerOverlayForJson ** 
- 
-Gets the MarkerOverlay configuration for client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​MarkerOverlayForJson 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.InMemoryMarkerOverlay|InMemoryMarkerOverlay]] 
- 
-** {{wiki:​ProtectedProperty.gif|}} AdornmentOverlayForJson ** 
- 
-Gets the AdornmentOverlay configuration for client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​AdornmentOverlayForJson 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.WebEdition.AdornmentOverlay|AdornmentOverlay]] 
- 
-** {{wiki:​ProtectedProperty.gif|}} PageName ** 
- 
-Gets current page's name. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​PageName 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​ProtectedProperty.gif|}} HasClickEvent ** 
- 
-Gets a flag whether raise click event on the client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasClickEvent 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} HasDoubleClickEvent ** 
- 
-Gets a flag whether raise double click event on the client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasDoubleClickEvent 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} HasBaseLayerChangedEvent ** 
- 
-Gets a flag whether raise base overlay changed event on the client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasBaseLayerChangedEvent 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} HasTrackShapeEndEvent ** 
- 
-Gets a flag whether raise track shape finished event on the client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasTrackShapeEndEvent 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} HasExtentChangedEvent ** 
- 
-Gets a flag whether raise extent changed event on the client side. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasExtentChangedEvent 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} CenterX ** 
- 
-Gets or sets a double value for center X of current viewport. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CenterX 
-== Return Value == 
-  * Type:Double 
- 
-** {{wiki:​ProtectedProperty.gif|}} CenterY ** 
- 
-Gets or sets a double value for center Y of current viewport. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​CenterY 
-== Return Value == 
-  * Type:Double 
- 
-** {{wiki:​ProtectedProperty.gif|}} 2xQ= ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:Int32 
- 
-** {{wiki:​ProtectedProperty.gif|}} PageRootPath ** 
- 
-Gets a string value indicats the web page's root path for loading the default icons. 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​PageRootPath 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​ProtectedProperty.gif|}} 3RQ= ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:Double 
- 
-** {{wiki:​ProtectedProperty.gif|}} 3xQ= ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:Double 
- 
-** {{wiki:​ProtectedProperty.gif|}} 4hQ= ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} IsEnabled ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} RequiresLegacyRendering ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} TagKey ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​TagKey 
-== Return Value == 
-  * Type:​HtmlTextWriterTag 
- 
-** {{wiki:​ProtectedProperty.gif|}} TagName ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​TagName 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​ProtectedProperty.gif|}} EffectiveClientIDMode ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​ClientIDMode 
- 
-** {{wiki:​ProtectedProperty.gif|}} UniqueClientID ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​ProtectedProperty.gif|}} StaticClientID ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​ProtectedProperty.gif|}} AdapterInternal ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​ControlAdapter 
- 
-** {{wiki:​ProtectedProperty.gif|}} PredictableClientID ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​ProtectedProperty.gif|}} ClientIDSeparator ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClientIDSeparator 
-== Return Value == 
-  * Type:Char 
- 
-** {{wiki:​ProtectedProperty.gif|}} Context ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​HttpContext 
- 
-** {{wiki:​ProtectedProperty.gif|}} Adapter ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​RenderControl.28HtmlTextWriter.2C_ControlAdapter.29 
-== Return Value == 
-  * Type:​ControlAdapter 
- 
-** {{wiki:​ProtectedProperty.gif|}} DesignMode ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} Events ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Public_Events 
-== Return Value == 
-  * Type:​EventHandlerList 
- 
-** {{wiki:​ProtectedProperty.gif|}} IsBindingContainer ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} IsChildControlStateCleared ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} IsViewStateEnabled ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} IdSeparator ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​IdSeparator 
-== Return Value == 
-  * Type:Char 
- 
-** {{wiki:​ProtectedProperty.gif|}} IdSeparatorFromConfig ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:Char 
- 
-** {{wiki:​ProtectedProperty.gif|}} LoadViewStateByID ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​LoadViewStateByID 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} RouteCollection ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​RouteCollection 
- 
-** {{wiki:​ProtectedProperty.gif|}} IsReloadable ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} EnableLegacyRendering ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} IsParentedToUpdatePanel ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} TemplateControlVirtualDirectory ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​VirtualPath 
- 
-** {{wiki:​ProtectedProperty.gif|}} ControlState ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​ControlState 
- 
-** {{wiki:​ProtectedProperty.gif|}} HasChildViewState ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​HasChildViewState 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} ViewState ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ClearChildViewState.28.29 
-== Return Value == 
-  * Type:​StateBag 
- 
-** {{wiki:​ProtectedProperty.gif|}} ViewStateIgnoresCase ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ViewStateIgnoresCase 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} ChildControlsCreated ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​ChildControlsCreated 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} IsTrackingViewState ** 
- 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​IsTrackingViewState 
-== Return Value == 
-  * Type:​Boolean 
- 
-** {{wiki:​ProtectedProperty.gif|}} SpacerImageUrl ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​ProtectedProperty.gif|}} PostBackDataHandler ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​IPostBackDataHandler 
- 
-** {{wiki:​ProtectedProperty.gif|}} PostBackEventHandler ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​IPostBackEventHandler 
- 
-==== Public Events ==== 
-** {{wiki:​PublicEvent.gif|}} Click ** 
-Occurs when the map control is clicked. 
-== Remarks == 
-The Click event is raised when the map control is clicked. 
- 
-Event Arguments:​[[ThinkGeo.MapSuite.WebEdition.MapClickedEventArgs|MapClickedEventArgs]] 
- 
-** {{wiki:​PublicEvent.gif|}} DoubleClick ** 
-Occurs when the map control is double-clicked. 
-== Remarks == 
-This event is raised when you double click on the map. <​strong>​Note:</​strong>​ When you add event handlers to both <​strong>​Click</​strong>​ and <​strong>​DoubleClick</​strong>​ events, only the <​strong>​Click</​strong>​ event will be fired. 
- 
-Event Arguments:​[[ThinkGeo.MapSuite.WebEdition.MapClickedEventArgs|MapClickedEventArgs]] 
- 
-** {{wiki:​PublicEvent.gif|}} TrackShapeFinished ** 
-Occurs each time a shape is drawn. 
-== Remarks == 
-This event is raised after you draw a shape on the map. If you add an event handler to this event, each time you draw a shape at the client it will cause the page to postback. You can get the drawn features from the <​strong>​Map.EditOverlay.Features</​strong>​ collection. 
- 
-Event Arguments: 
- 
-** {{wiki:​PublicEvent.gif|}} BaseOverlayChanged ** 
-Occurs when the base overlay is changed. 
-== Remarks == 
-This event is raised when you switch the active base overlay in the <​strong>​OverlaySwitcher</​strong>​ panel; for example, from GoogleOverlay to YahooOverlay. You can handle this event to add your specific logic for that overlay. 
- 
-Event Arguments:​[[ThinkGeo.MapSuite.WebEdition.BaseOverlayChangedEventArgs|BaseOverlayChangedEventArgs]] 
- 
-** {{wiki:​PublicEvent.gif|}} ExtentChanged ** 
-Occurs when the map extent is changed. 
-== Remarks == 
-This event is raised when you pan or zoom the map at the client side and cause the map extent to change. 
- 
-Event Arguments:​[[ThinkGeo.MapSuite.WebEdition.ExtentChangedEventArgs|ExtentChangedEventArgs]] 
- 
-** {{wiki:​PublicEvent.gif|}} Disposed ** 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​Disposed 
- 
-Event Arguments: 
- 
-** {{wiki:​PublicEvent.gif|}} DataBinding ** 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnDataBinding.28EventArgs.29 
- 
-Event Arguments: 
- 
-** {{wiki:​PublicEvent.gif|}} Init ** 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnInit.28EventArgs.29 
- 
-Event Arguments: 
- 
-** {{wiki:​PublicEvent.gif|}} Load ** 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​LoadViewState.28Object.29 
- 
-Event Arguments: 
- 
-** {{wiki:​PublicEvent.gif|}} PreRender ** 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnPreRender.28EventArgs.29 
- 
-Event Arguments: 
- 
-** {{wiki:​PublicEvent.gif|}} Unload ** 
-N/A 
-== Remarks == 
-For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.Map#​OnUnload.28EventArgs.29 
- 
-Event Arguments: 
- 
  
thinkgeo.mapsuite.webedition.map.1442911744.txt.gz ยท Last modified: 2015/09/22 08:49 by admin