User Tools

Site Tools


thinkgeo.mapsuite.webedition.map

ThinkGeo.MapSuite.WebEdition.Map

Note: The page was created before Map Suite 10. Map Suite 10.0 organized many classes into new namespaces and assemblies as well as had a few minor breaks in compatibility. The majority of previously built code should work without modification assuming the new namespaces are added. For guidance on upgrading your existing code, please check out MapSuite 10 Upgrade Guide.

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

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

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

Protected Constructors

Public Methods

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
    • Description:The first point in world coordinates.
  • endpoint
    • Description:The second point in world coordinates.

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
    • Description:The first point in screen coordinates.
  • endpoint
    • Description:The second point in screen coordinates.
  • unitOfDistance
    • Description:The unit of return distance.

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
    • Description:Up, Down, Left, Right, UpperRight, LowerRight, UpperLeft, LowerLeft.
  • percentage
    • Type:Int32
    • Description:The percentage of the current extent.

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.

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
Parameters
  • worldX
    • Type:Double
    • Description:The X world coordinate.
  • worldY
    • Type:Double
    • Description:The Y world coordinate.

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
Parameters
  • worldPoint
    • Description:A point shape in world coordinates.

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
  • 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.

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
  • Description:A point shape in world coordinates.
Parameters
  • screenPoint
    • Description:The point (in screen coordinates) to convert to world coordinates.

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
    • Description:The target point in world coordinates to set as the center of the map's CurrentExtent.

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.

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
    • Description:The new center point of the map.
  • scale
    • Type:Double
    • Description:The new scale that the map will zoom to.

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

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

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<Marker>
    • Description:The markers that will be included in the new extent.

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.

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

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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Protected Methods

5RQ=(IEnumerable<ZoomLevel>)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • zoomLevels
    • Type:IEnumerable<ZoomLevel>
    • Description:N/A

5RQ=(ZoomLevelSet)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

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

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

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

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

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

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

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.

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

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.

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

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.

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.

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

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.

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

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

AddDisplayInlineBlockIfNeeded(HtmlTextWriter)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • writer
    • Type:HtmlTextWriter
    • Description:N/A

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

RenderContents(HtmlTextWriter)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • writer
    • Type:HtmlTextWriter
    • Description:N/A

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

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

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

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

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

PreventAutoID()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

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

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

GetUniqueIDPrefix()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

InitRecursive(Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • namingContainer
    • Type:Control
    • Description:N/A

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

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

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

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

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

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

LoadControlStateInternal(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • savedStateObj
    • Type:Object
    • Description:N/A

LoadControlState(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • savedState
    • Type:Object
    • Description:N/A

LoadViewStateRecursive(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • savedState
    • Type:Object
    • Description:N/A

LoadChildViewStateByID(ArrayList)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • childState
    • Type:ArrayList
    • Description:N/A

LoadChildViewStateByIndex(ArrayList)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • childState
    • Type:ArrayList
    • Description:N/A

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

MapPathSecure(String)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters
  • virtualPath
    • Type:String
    • Description:N/A

OpenFile(String)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Stream
  • Description:N/A
Parameters
  • path
    • Type:String
    • Description:N/A

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

LoadRecursive()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

LoadRecursiveAsync(Page)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task
  • Description:N/A
Parameters
  • page
    • Type:Page
    • Description:N/A

PreRenderRecursiveInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

PreRenderRecursiveInternalAsync(Page)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task
  • Description:N/A
Parameters
  • page
    • Type:Page
    • Description:N/A

EstimateStateSize(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32
  • Description:N/A
Parameters
  • state
    • Type:Object
    • Description:N/A

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

SaveControlStateInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters

SaveControlState()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters

SaveViewStateRecursive(ViewStateMode)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters
  • inheritedMode
    • Type:ViewStateMode
    • Description:N/A

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

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

UnloadRecursive(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • dispose
    • Type:Boolean
    • Description:N/A

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

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

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

CalculateEffectiveValidateRequest()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

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

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

CreateChildControls()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

DirtyNameTable()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

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

FindControlFromPageIfNecessary(String)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Control
  • Description:N/A
Parameters
  • id
    • Type:String
    • Description:N/A

ClearNamingContainer()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

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

HasRenderingData()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

HasRenderDelegate()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

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

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

SetControlBuilder(ControlBuilder)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • controlBuilder
    • Type:ControlBuilder
    • Description:N/A

RemovedControl(Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • control
    • Type:Control
    • Description:N/A

SetDesignMode()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

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

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

ValidateEvent(String)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • uniqueID
    • Type:String
    • Description:N/A

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

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

ShouldSerializeEnableTheming()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

SetEnableViewStateInternal(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • value
    • Type:Boolean
    • Description:N/A

GetXhtmlConformanceSection()

  • N/A
Remarks
  • N/A
Return Value
  • Type:XhtmlConformanceSection
  • Description:N/A
Parameters

GetTemplateControl()

  • N/A
Remarks
  • N/A
Return Value
  • Type:TemplateControl
  • Description:N/A
Parameters

IsDescendentOf(Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • ancestor
    • Type:Control
    • Description:N/A

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

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

Public Properties

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

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

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

MaxExtent

N/A

Remarks

For the most updated Info for this topic, please check it here:

Return Value

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2BQ=

N/A

Remarks

N/A

Return Value
  • Type:Collection<Double>

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>

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

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

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

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

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

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

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

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

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

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

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

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

2xQ=

N/A

Remarks

N/A

Return Value
  • Type:Int32

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

3RQ=

N/A

Remarks

N/A

Return Value
  • Type:Double

3xQ=

N/A

Remarks

N/A

Return Value
  • Type:Double

4hQ=

N/A

Remarks

N/A

Return Value
  • Type:Boolean

IsEnabled

N/A

Remarks

N/A

Return Value
  • Type:Boolean

RequiresLegacyRendering

N/A

Remarks

N/A

Return Value
  • Type:Boolean

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

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

EffectiveClientIDMode

N/A

Remarks

N/A

Return Value
  • Type:ClientIDMode

UniqueClientID

N/A

Remarks

N/A

Return Value
  • Type:String

StaticClientID

N/A

Remarks

N/A

Return Value
  • Type:String

AdapterInternal

N/A

Remarks

N/A

Return Value
  • Type:ControlAdapter

PredictableClientID

N/A

Remarks

N/A

Return Value
  • Type:String

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

Context

N/A

Remarks

N/A

Return Value
  • Type:HttpContext

Adapter

N/A

Remarks
Return Value
  • Type:ControlAdapter

DesignMode

N/A

Remarks

N/A

Return Value
  • Type:Boolean

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

IsBindingContainer

N/A

Remarks

N/A

Return Value
  • Type:Boolean

IsChildControlStateCleared

N/A

Remarks

N/A

Return Value
  • Type:Boolean

IsViewStateEnabled

N/A

Remarks

N/A

Return Value
  • Type:Boolean

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

IdSeparatorFromConfig

N/A

Remarks

N/A

Return Value
  • Type:Char

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

RouteCollection

N/A

Remarks

N/A

Return Value
  • Type:RouteCollection

IsReloadable

N/A

Remarks

N/A

Return Value
  • Type:Boolean

EnableLegacyRendering

N/A

Remarks

N/A

Return Value
  • Type:Boolean

IsParentedToUpdatePanel

N/A

Remarks

N/A

Return Value
  • Type:Boolean

TemplateControlVirtualDirectory

N/A

Remarks

N/A

Return Value
  • Type:VirtualPath

ControlState

N/A

Remarks

N/A

Return Value
  • Type:ControlState

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

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

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

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

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

SpacerImageUrl

N/A

Remarks

N/A

Return Value
  • Type:String

PostBackDataHandler

N/A

Remarks

N/A

Return Value
  • Type:IPostBackDataHandler

PostBackEventHandler

N/A

Remarks

N/A

Return Value
  • Type:IPostBackEventHandler

Public Events

Click Occurs when the map control is clicked.

Remarks

The Click event is raised when the map control is clicked.

Event Arguments:MapClickedEventArgs

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:MapClickedEventArgs

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:

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:BaseOverlayChangedEventArgs

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:ExtentChangedEventArgs

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:

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:

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:

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:

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:

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.txt · Last modified: 2017/03/16 21:59 (external edit)