Inheritance Hierarchy
Members Summary
Public Constructors
Map()
Parameters
Map(String,Int32,Int32)
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)
Return Value
Parameters
GetWorldDistanceBetweenTwoScreenPoints(ScreenPointF,ScreenPointF,DistanceUnit)
Return Value
Parameters
Pan(PanDirection,Int32)
Return Value
Type:Void
Description:N/A
Parameters
panDirection
-
Description:Up, Down, Left, Right, UpperRight, LowerRight, UpperLeft, LowerLeft.
Pan(Single,Int32)
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 CurrentExtent.Width* 0.2 and the offset in the Y direction is CurrentExtent.Hight*0.2.
Return Value
Type:Void
Description:N/A
Parameters
ToScreenCoordinate(Double,Double)
Return Value
Parameters
ToScreenCoordinate(PointShape)
Return Value
Parameters
ToWorldCoordinate(Single,Single)
Return Value
Parameters
ToWorldCoordinate(ScreenPointF)
Return Value
Parameters
CenterAt(PointShape)
Return Value
Type:Void
Description:N/A
Parameters
CenterAt(Double,Double)
Return Value
Type:Void
Description:N/A
Parameters
ZoomTo(PointShape,Double)
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
ZoomIn()
Return Value
Type:Void
Description:N/A
Parameters
ZoomOut()
Return Value
Type:Void
Description:N/A
Parameters
ZoomToMarkers(IEnumerable<Marker>)
Return Value
Type:Void
Description:N/A
Parameters
ZoomToScale(Double)
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
GetBitmap()
This method will generate a bitmap image with the current map settings, including width, height, current extent, etc.
Return Value
Parameters
GetBitmap(Int32,Int32)
Return Value
Parameters
ToJson()
Return Value
Parameters
RenderBeginTag(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
RenderEndTag(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
ApplyStyle(Style)
Return Value
Type:Void
Description:N/A
Parameters
s
Type:Style
Description:N/A
CopyBaseAttributes(WebControl)
Return Value
Type:Void
Description:N/A
Parameters
controlSrc
Type:WebControl
Description:N/A
MergeStyle(Style)
Return Value
Type:Void
Description:N/A
Parameters
s
Type:Style
Description:N/A
SetTraceData(Object,Object)
Return Value
Type:Void
Description:N/A
Parameters
traceDataKey
Type:Object
Description:N/A
traceDataValue
Type:Object
Description:N/A
SetTraceData(Object,Object,Object)
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)
Return Value
Type:Void
Description:N/A
Parameters
page
Type:Page
Description:N/A
DataBind()
Return Value
Type:Void
Description:N/A
Parameters
Focus()
Return Value
Type:Void
Description:N/A
Parameters
RenderControl(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
Dispose()
Return Value
Type:Void
Description:N/A
Parameters
ResolveUrl(String)
Return Value
Type:String
Description:N/A
Parameters
relativeUrl
Type:String
Description:N/A
ResolveClientUrl(String)
Return Value
Type:String
Description:N/A
Parameters
relativeUrl
Type:String
Description:N/A
FindControl(String)
Return Value
Type:Control
Description:N/A
Parameters
id
Type:String
Description:N/A
HasControls()
Return Value
Type:Boolean
Description:N/A
Parameters
SetRenderMethodDelegate(RenderMethod)
Return Value
Type:Void
Description:N/A
Parameters
renderMethod
Type:RenderMethod
Description:N/A
GetRouteUrl(Object)
Return Value
Type:String
Description:N/A
Parameters
routeParameters
Type:Object
Description:N/A
GetRouteUrl(String,Object)
Return Value
Type:String
Description:N/A
Parameters
routeName
Type:String
Description:N/A
routeParameters
Type:Object
Description:N/A
GetRouteUrl(RouteValueDictionary)
Return Value
Type:String
Description:N/A
Parameters
GetRouteUrl(String,RouteValueDictionary)
Return Value
Type:String
Description:N/A
Parameters
routeName
Type:String
Description:N/A
GetUniqueIDRelativeTo(Control)
Return Value
Type:String
Description:N/A
Parameters
control
Type:Control
Description:N/A
ToString()
Return Value
Type:String
Description:N/A
Parameters
Equals(Object)
Return Value
Type:Boolean
Description:N/A
Parameters
obj
Type:Object
Description:N/A
GetHashCode()
Return Value
Type:Int32
Description:N/A
Parameters
GetType()
Return Value
Type:Type
Description:N/A
Parameters
Protected Methods
SyncClientZoomLevels(IEnumerable<ZoomLevel>)
This method actually fills the Map.ClientZoomLevelScales collection with a zoomlevel collection that passed in. Note: If this method meets a zoomlevel with zero scale, it stops the filling. Thus, the zoomlevels that follow are ignored, even if their scales are not zero.
Return Value
Type:Void
Description:N/A
Parameters
SyncClientZoomLevels(ZoomLevelSet)
This method actually fills the Map.ClientZoomLevelScales collection by the ZoomLevelSet object that you pass in. If the ZoomLevelSet object defines custom zoomlevels, this method will use ZoomLevelSet.CustomZoomLevels to fill the ClientZoomLevelScales collection. Otherwise, it will step through the default 20 zoomlevels to fill that collection. Note: If this method meets a zoomlevel with zero scale, it stops the filling. Thus, the zoomlevels that follow are ignored, even if their scales are not zero.
Return Value
Type:Void
Description:N/A
Parameters
OnClick(MapClickedEventArgs)
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.Notes to Inheritors: 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)
The OnDoubleClick 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.Notes to Inheritors: When overriding OnDoubleClick in a derived class, be sure to call the base class's OnDoubleClick method so that registered delegates receive the event.
Return Value
Type:Void
Description:N/A
Parameters
OnTrackShapeFinished()
The OnTrackShapeFinished 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.Notes to Inheritors: When overriding OnTrackShapeFinished in a derived class, be sure to call the base class's OnTrackShapeFinished method so that registered delegates receive the event.
Return Value
Type:Void
Description:N/A
Parameters
OnBaseOverlayChanged(BaseOverlayChangedEventArgs)
The OnBaseOverlayChanged 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.Notes to Inheritors: When overriding OnBaseOverlayChanged in a derived class, be sure to call the base class's OnBaseOverlayChanged method so that registered delegates receive the event.
Return Value
Type:Void
Description:N/A
Parameters
OnExtentChanged()
Return Value
Type:Void
Description:N/A
Parameters
CreateControlStyle()
Return Value
Parameters
OnInit(EventArgs)
Return Value
Type:Void
Description:N/A
Parameters
OnLoad(EventArgs)
Return Value
Type:Void
Description:N/A
Parameters
e
Type:EventArgs
Description:N/A
OnPreRender(EventArgs)
Return Value
Type:Void
Description:N/A
Parameters
RegisterJavascriptLibraryCore()
Return Value
Type:Void
Description:N/A
Parameters
Render(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
RenderChildren(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
SaveViewState()
Return Value
Parameters
LoadViewState(Object)
Return Value
Type:Void
Description:N/A
Parameters
OnUnload(EventArgs)
Return Value
Type:Void
Description:N/A
Parameters
e
Type:EventArgs
Description:N/A
AddAttributesToRender(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
AddDisplayInlineBlockIfNeeded(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
TrackViewState()
Return Value
Type:Void
Description:N/A
Parameters
RenderContents(HtmlTextWriter)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
BeginRenderTracing(TextWriter,Object)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:TextWriter
Description:N/A
traceObject
Type:Object
Description:N/A
EndRenderTracing(TextWriter,Object)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:TextWriter
Description:N/A
traceObject
Type:Object
Description:N/A
OnDataBinding(EventArgs)
Return Value
Type:Void
Description:N/A
Parameters
e
Type:EventArgs
Description:N/A
DataBind(Boolean)
Return Value
Type:Void
Description:N/A
Parameters
raiseOnDataBinding
Type:Boolean
Description:N/A
DataBindChildren()
Return Value
Type:Void
Description:N/A
Parameters
PreventAutoID()
Return Value
Type:Void
Description:N/A
Parameters
AddParsedSubObject(Object)
Return Value
Type:Void
Description:N/A
Parameters
obj
Type:Object
Description:N/A
EnsureID()
Return Value
Type:Void
Description:N/A
Parameters
GetUniqueIDPrefix()
Return Value
Type:String
Description:N/A
Parameters
InitRecursive(Control)
Return Value
Type:Void
Description:N/A
Parameters
namingContainer
Type:Control
Description:N/A
InitRecursiveAsync(Control,Page)
Return Value
Type:Task
Description:N/A
Parameters
namingContainer
Type:Control
Description:N/A
page
Type:Page
Description:N/A
ClearChildState()
Return Value
Type:Void
Description:N/A
Parameters
ClearChildControlState()
Return Value
Type:Void
Description:N/A
Parameters
ClearChildViewState()
Return Value
Type:Void
Description:N/A
Parameters
ClearEffectiveClientIDMode()
Return Value
Type:Void
Description:N/A
Parameters
ClearCachedClientID()
Return Value
Type:Void
Description:N/A
Parameters
LoadControlStateInternal(Object)
Return Value
Type:Void
Description:N/A
Parameters
savedStateObj
Type:Object
Description:N/A
LoadControlState(Object)
Return Value
Type:Void
Description:N/A
Parameters
savedState
Type:Object
Description:N/A
LoadViewStateRecursive(Object)
Return Value
Type:Void
Description:N/A
Parameters
savedState
Type:Object
Description:N/A
LoadChildViewStateByID(ArrayList)
Return Value
Type:Void
Description:N/A
Parameters
childState
Type:ArrayList
Description:N/A
LoadChildViewStateByIndex(ArrayList)
Return Value
Type:Void
Description:N/A
Parameters
childState
Type:ArrayList
Description:N/A
ResolvePhysicalOrVirtualPath(String,VirtualPath&,String&)
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)
Return Value
Type:String
Description:N/A
Parameters
virtualPath
Type:String
Description:N/A
OpenFile(String)
Return Value
Type:Stream
Description:N/A
Parameters
path
Type:String
Description:N/A
OpenFileAndGetDependency(VirtualPath,String,CacheDependency&)
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()
Return Value
Type:Void
Description:N/A
Parameters
LoadRecursiveAsync(Page)
Return Value
Type:Task
Description:N/A
Parameters
page
Type:Page
Description:N/A
PreRenderRecursiveInternal()
Return Value
Type:Void
Description:N/A
Parameters
PreRenderRecursiveInternalAsync(Page)
Return Value
Type:Task
Description:N/A
Parameters
page
Type:Page
Description:N/A
EstimateStateSize(Object)
Return Value
Type:Int32
Description:N/A
Parameters
state
Type:Object
Description:N/A
BuildProfileTree(String,Boolean)
Return Value
Type:Void
Description:N/A
Parameters
parentId
Type:String
Description:N/A
calcViewState
Type:Boolean
Description:N/A
SaveControlStateInternal()
Return Value
Type:Object
Description:N/A
Parameters
SaveControlState()
Return Value
Type:Object
Description:N/A
Parameters
SaveViewStateRecursive(ViewStateMode)
Return Value
Type:Object
Description:N/A
Parameters
inheritedMode
Type:ViewStateMode
Description:N/A
RenderChildrenInternal(HtmlTextWriter,ICollection)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
children
Type:ICollection
Description:N/A
RenderControl(HtmlTextWriter,ControlAdapter)
Return Value
Type:Void
Description:N/A
Parameters
writer
Type:HtmlTextWriter
Description:N/A
adapter
Type:ControlAdapter
Description:N/A
UnloadRecursive(Boolean)
Return Value
Type:Void
Description:N/A
Parameters
dispose
Type:Boolean
Description:N/A
RaiseBubbleEvent(Object,EventArgs)
Return Value
Type:Void
Description:N/A
Parameters
source
Type:Object
Description:N/A
args
Type:EventArgs
Description:N/A
OnBubbleEvent(Object,EventArgs)
Return Value
Type:Boolean
Description:N/A
Parameters
source
Type:Object
Description:N/A
args
Type:EventArgs
Description:N/A
SetValidateRequestModeInternal(ValidateRequestMode,Boolean)
Return Value
Type:Void
Description:N/A
Parameters
value
Type:ValidateRequestMode
Description:N/A
setDirty
Type:Boolean
Description:N/A
CalculateEffectiveValidateRequest()
Return Value
Type:Boolean
Description:N/A
Parameters
AddedControl(Control,Int32)
Return Value
Type:Void
Description:N/A
Parameters
control
Type:Control
Description:N/A
index
Type:Int32
Description:N/A
CreateControlCollection()
Return Value
Type:ControlCollection
Description:N/A
Parameters
CreateChildControls()
Return Value
Type:Void
Description:N/A
Parameters
DirtyNameTable()
Return Value
Type:Void
Description:N/A
Parameters
FindControl(String,Int32)
Return Value
Type:Control
Description:N/A
Parameters
id
Type:String
Description:N/A
pathOffset
Type:Int32
Description:N/A
FindControlFromPageIfNecessary(String)
Return Value
Type:Control
Description:N/A
Parameters
id
Type:String
Description:N/A
ClearNamingContainer()
Return Value
Type:Void
Description:N/A
Parameters
GetDesignModeState()
Return Value
Type:IDictionary
Description:N/A
Parameters
HasRenderingData()
Return Value
Type:Boolean
Description:N/A
Parameters
HasRenderDelegate()
Return Value
Type:Boolean
Description:N/A
Parameters
IsLiteralContent()
Return Value
Type:Boolean
Description:N/A
Parameters
EnsureChildControls()
Return Value
Type:Void
Description:N/A
Parameters
SetControlBuilder(ControlBuilder)
Return Value
Type:Void
Description:N/A
Parameters
controlBuilder
Type:ControlBuilder
Description:N/A
RemovedControl(Control)
Return Value
Type:Void
Description:N/A
Parameters
control
Type:Control
Description:N/A
SetDesignMode()
Return Value
Type:Void
Description:N/A
Parameters
SetDesignModeState(IDictionary)
Return Value
Type:Void
Description:N/A
Parameters
data
Type:IDictionary
Description:N/A
ResolveAdapter()
Return Value
Type:ControlAdapter
Description:N/A
Parameters
ValidateEvent(String)
Return Value
Type:Void
Description:N/A
Parameters
uniqueID
Type:String
Description:N/A
ValidateEvent(String,String)
Return Value
Type:Void
Description:N/A
Parameters
uniqueID
Type:String
Description:N/A
eventArgument
Type:String
Description:N/A
HasEvents()
Return Value
Type:Boolean
Description:N/A
Parameters
ShouldSerializeEnableTheming()
Return Value
Type:Boolean
Description:N/A
Parameters
SetEnableViewStateInternal(Boolean)
Return Value
Type:Void
Description:N/A
Parameters
value
Type:Boolean
Description:N/A
GetXhtmlConformanceSection()
Return Value
Parameters
GetTemplateControl()
Return Value
Type:TemplateControl
Description:N/A
Parameters
IsDescendentOf(Control)
Return Value
Type:Boolean
Description:N/A
Parameters
ancestor
Type:Control
Description:N/A
Finalize()
Return Value
Type:Void
Description:N/A
Parameters
MemberwiseClone()
Return Value
Type:Object
Description:N/A
Parameters
Public Properties
CallbackResult
Return Value
GeoCanvas
Return Value
ZoomLevelSet
Return Value
MaxExtent
Return Value
WidthInPixels
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.Note: When the map width is a percent value, the WidthInPixels 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
HeightInPixels
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.Note: When the map height is a percent value, the HeightInPixels 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
ClientID
Return Value
UniqueID
Return Value
MapBackground
Return Value
ContextMenu
Return Value
CurrentExtent
Return Value
Cursor
Return Value
WebConfigRegisterMode
Return Value
ResourceDeploymentMode
Return Value
ActiveBaseOverlay
The map can contain multiple base overlays, though only one of them can be displayed at a time. The ActiveBaseOverlay property specifies the one that is currently displayed. When you switch the base overlays in the OverlaySwitcher, the currently selected overlay will be synchronized to this property after postback.
Return Value
BackgroundOverlay
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 ActiveBaseOverlay property.
Return Value
StaticOverlay
Return Value
DynamicOverlay
Return Value
MarkerOverlay
Return Value
CustomOverlays
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
Return Value
HighlightOverlay
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.Note: 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
Return Value
MapTools
Return Value
MapUnit
Return Value
OnClientDrawEnd
The OnClientDrawEnd 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
OnClientEditEnd
The OnClientEditEnd 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
OnClientClick
Return Value
OnClientExtentChanged
Return Value
OnClientBaseOverlayChanged
Return Value
OnClientDoubleClick
Return Value
Popups
Return Value
RestrictedExtent
Return Value
CurrentScale
Return Value
CustomCursorUri
Return Value
IsDefaultJavascriptLibraryDisabled
Return Value
IsDomTreeCollectedWhenPostback
Return Value
BackImageUrl
Return Value
DefaultButton
Return Value
Direction
Return Value
GroupingText
Return Value
HorizontalAlign
Return Value
SupportsDisabledAttribute
Return Value
ScrollBars
Return Value
Wrap
Return Value
AccessKey
Return Value
Attributes
Return Value
BackColor
Return Value
BorderColor
Return Value
BorderWidth
Return Value
BorderStyle
Return Value
ControlStyle
Return Value
ControlStyleCreated
Return Value
CssClass
Return Value
Style
Return Value
Enabled
Return Value
EnableTheming
Return Value
Font
Return Value
ForeColor
Return Value
HasAttributes
Return Value
Height
Return Value
SkinID
Return Value
TabIndex
Return Value
ToolTip
Return Value
Width
Return Value
ClientIDMode
Return Value
ID
Return Value
EnableViewState
Return Value
ViewStateMode
Return Value
NamingContainer
Return Value
BindingContainer
Return Value
DataItemContainer
Return Value
DataKeysContainer
Return Value
Page
Return Value
RenderingCompatibility
Return Value
TemplateControl
Return Value
Parent
Return Value
TemplateSourceDirectory
Return Value
AppRelativeTemplateSourceDirectory
Return Value
Site
Return Value
Visible
Return Value
Controls
Return Value
ValidateRequestMode
Return Value
Protected Properties
ClientZoomLevelScales
This property gives you an easy way to customize the client zoomlevels. By default, we have 20 zoomlevels. The default scales are:ZoomLevel01 = 590591790 ZoomLevel02 = 295295895 ZoomLevel03 = 147647947.5 ZoomLevel04 = 73823973.75 ZoomLevel05 = 36911986.875 ZoomLevel06 = 18455993.4375 ZoomLevel07 = 9227996.71875 ZoomLevel08 = 4613998.359375 ZoomLevel09 = 2306999.1796875 ZoomLevel10 = 1153499.58984375 ZoomLevel11 = 576749.794921875 ZoomLevel12 = 288374.8974609375 ZoomLevel13 = 144187.44873046875 ZoomLevel14 = 72093.724365234375 ZoomLevel15 = 36046.8621826171875 ZoomLevel16 = 18023.43109130859375 ZoomLevel17 = 9011.715545654296875 ZoomLevel18 = 4505.8577728271484375 ZoomLevel19 = 2252.92888641357421875 ZoomLevel20 = 1126.464443206787109375If these zoomlevel definitions don't match your requirements, you can just clear this collection and add your own scale definitions. The scales in this collection will be set to the client zoomlevels in sequence. For example, ClientZoomLevelScales[0] is set to zoomlevel01, ClientZoomLevelScales[1] is set to zoomlevel02 and so on. The number of the items in this collection determines the number of the client zoomlevels. If you already have a customized ZoomLevelSet object, you can use the SyncClientZoomLevels method to automatically fill the ClientZoomLevelScales collection from the ZoomLevelSet.
Return Value
ClientResolutions
Return Value
StaticOverlayForJson
Return Value
DynamicOverlayForJson
Return Value
MarkerOverlayForJson
Return Value
AdornmentOverlayForJson
Return Value
PageName
Return Value
HasClickEvent
Return Value
HasDoubleClickEvent
Return Value
HasBaseLayerChangedEvent
Return Value
HasTrackShapeEndEvent
Return Value
HasExtentChangedEvent
Return Value
CenterX
Return Value
CenterY
Return Value
Zoom
Return Value
PageRootPath
Return Value
MapWidth
Return Value
MapHeight
Return Value
IsClientScriptRegistered
Return Value
IsEnabled
Return Value
RequiresLegacyRendering
Return Value
TagKey
Return Value
TagName
Return Value
EffectiveClientIDMode
Return Value
UniqueClientID
Return Value
StaticClientID
Return Value
AdapterInternal
Return Value
PredictableClientID
Return Value
ClientIDSeparator
Return Value
Context
Return Value
Adapter
Return Value
DesignMode
Return Value
Events
Return Value
IsBindingContainer
Return Value
IsChildControlStateCleared
Return Value
IsViewStateEnabled
Return Value
IdSeparator
Return Value
IdSeparatorFromConfig
Return Value
LoadViewStateByID
Return Value
RouteCollection
Return Value
IsReloadable
Return Value
EnableLegacyRendering
Return Value
IsParentedToUpdatePanel
Return Value
TemplateControlVirtualDirectory
Return Value
ControlState
Return Value
HasChildViewState
Return Value
ViewState
Return Value
ViewStateIgnoresCase
Return Value
ChildControlsCreated
Return Value
IsTrackingViewState
Return Value
SpacerImageUrl
Return Value
PostBackDataHandler
Return Value
PostBackEventHandler
Return Value
Public Events
Click
Event Arguments:
BaseOverlayChanged
Event Arguments:
DataBinding
Event Arguments:
Init
Event Arguments:
Load
Event Arguments:
PreRender
Event Arguments:
Unload