User Tools

Site Tools


thinkgeo.mapsuite.mvcedition.mapbuilder

This is an old revision of the document!


Table of Contents

ThinkGeo.MapSuite.MvcEdition.MapBuilder

<!– Class –> Defines the fluent interface for configuring the Map control.

Inheritance Hierarchy

*System.Object

  • PublicKeyToken=null]]
    • Culture=neutral
      • Version=9.0.0.0

* MvcEdition [ThinkGeo.MapSuite.MvcEdition.MapBuilder * PublicKeyToken=null] Culture=neutral * Version=9.0.0.0 MvcEdition *ThinkGeo.MapSuite.MvcEdition.MvcControlBuilderBase`2[[ThinkGeo.MapSuite.MvcEdition.Map ThinkGeo.MapSuite.MvcEdition.MapBuilder

Members Summary

Public Constructors

Name Parameters DeclaringType Summary
Public MethodMapBuilder Map Initializes a new instance of the MapBuilder.
Public MethodMapBuilder Map, ViewContext Initializes a new instance of the MapBuilder.

Protected Constructors

Name Parameters DeclaringType Summary

Public Methods

Name Parameters DeclaringType Summary
Public MethodActiveBaseOverlay Overlay Sets the active base Overlay.
Public MethodAdornmentOverlay Action<AdornmentOverlaySetting> Configures a AdormentOverlay object in the map control.
Public MethodBackgroundOverlay Overlay Sets an Overlay object that displays as the background map by default.
Public MethodContextMenu Action<ContextMenuSetting> Sets the ContextMenu of the map.
Public MethodCurrentExtent Double, Double, Double, Double Sets the current extent of the map.
Public MethodCurrentScale Double Sets the current scale of the map.
Public MethodCursor CursorType Sets the cursor that appears when the mouse pointer is over the map control.
Public MethodCustomOverlays Action<OverlayCollection> Configures the Overlays added to the map.
Public MethodDynamicOverlay Action<LayerOverlaySetting> Configures a LayerOverlay object that can overlap other overlays.
Public MethodEditOverlay Action<EditFeatureOverlaySetting> Configures an EditOverlay object, with which you can draw and edit shapes on client side.
Public MethodEquals Object Object
Public MethodGetHashCode Object
Public MethodGetType Object
Public MethodHighlightOverlay Action<HighlightFeatureOverlaySetting> Configures a HighlightFeatureOverlay object, which draws its features on client side and can attach the specified click event and context menu to them.
Public MethodHtmlAttributes Dictionary<String, String> MvcControlBuilderBase<Map,MapBuilder>
Public MethodIsDefaultJavascriptLibraryDisabled Boolean Gets or sets whether the default javascript library is disabled or not.
Public MethodMapBackground BackgroundLayer Sets the BackgroundLayer object that paints the map background.
Public MethodMapTools Action<MapToolsSettingCollection> Configures the MapTools in the map control.
Public MethodMapUnit GeographyUnit Sets the GeographyUnit of the map.
Public MethodMarkerOverlay Action<InMemoryMarkerOverlaySetting> Configures an InMemoryMarkerOverlay object that renders markers by the specified features.
Public MethodName String MvcControlBuilderBase<Map,MapBuilder>
Public MethodOnClientBaseOverlayChanged String Sets the ClientBaseOverlayChanged event of the map.
Public MethodOnClientClick String Sets the client click event of the map.
Public MethodOnClientDoubleClick String Sets the ClientDoubleClick event of the map.
Public MethodOnClientDrawEnd String Sets the ClientDrawEnd event of the map.
Public MethodOnClientEditEnd String Sets the ClientEditEnd event of the map.
Public MethodOnClientExtentChanged String Sets the ClientExtentChanged event of the map.
Public MethodOnClientPopupsRequested String
Public MethodOnClientPopupsRequesting String
Public MethodOnClientTrackShapeFinished String Sets the OnClientTrackShapeFinished event of the map.
Public MethodPopups Action<PopupCollection> Sets the popups of the map.
Public MethodRender Sends the map control content to a provided HtmlTextWriter object, which wirtes the content to be rendered on the client.
Public MethodResourceDeploymentMode ResourceDeploymentMode 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.
Public MethodRestrictedExtent RectangleShape Sets an extent that limits the area to which the map can be navigated within.
Public MethodScriptBlocks Dictionary<String, String> MvcControlBuilderBase<Map,MapBuilder>
Public MethodScriptFileNames Dictionary<String, String> MvcControlBuilderBase<Map,MapBuilder>
Public MethodStaticOverlay Action<LayerOverlaySetting> Configures a LayerOverlay object that displays as a background map.
Public MethodStyleSheetFileNames IEnumerable<String> MvcControlBuilderBase<Map,MapBuilder>
Public MethodToString Object(overriden)
Public MethodWebConfigRegisterMode WebConfigRegistrationMode 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.
Public MethodZoomLevelSet ZoomLevelSet Sets the ZoomLevelSet applied to the map.

Protected Methods

Name Parameters DeclaringType Summary
Protected MethodFinalize Object
Protected MethodMemberwiseClone Object

Public Properties

Name Return DeclaringType Summary

Protected Properties

Name Return DeclaringType Summary
Protected PropertyControl Map MvcControlBuilderBase<Map,MapBuilder>

Public Events

Name Event Arguments DeclaringType Summary

Public Constructors

MapBuilder(Map)

Initializes a new instance of the MapBuilder.

Parameters

Name Type Description
map Map<!– ThinkGeo.MapSuite.MvcEdition.Map –> The map control instance.

Go Back

MapBuilder(Map, ViewContext)

Initializes a new instance of the MapBuilder.

Parameters

Name Type Description
map Map<!– ThinkGeo.MapSuite.MvcEdition.Map –> The map control instance.
viewContext ViewContext<!– System.Web.Mvc.ViewContext –> The ViewContext of the page.

Go Back

Protected Constructors

Public Methods

ActiveBaseOverlay(Overlay)

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 ActiveBaseOverlay property specifies the one that is currently displayed. When you switch the base Overlays in the OverSwitcher, the currently selected overlay will be synchronized to this property after postback.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
overlay Overlay<!– ThinkGeo.MapSuite.MvcEdition.Overlay –> The overlay selected from the overlay's collection.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

AdornmentOverlay(Action<AdornmentOverlaySetting>)

Configures a AdormentOverlay object in the map control.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
configAdormentOverlaySettingAction Action<AdornmentOverlaySetting><!– System.Action{ThinkGeo.MapSuite.MvcEdition.AdornmentOverlaySetting} –> The AdormentOverlay configuration action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

BackgroundOverlay(Overlay)

Sets an Overlay object that displays as the background map by default.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
overlay Overlay<!– ThinkGeo.MapSuite.MvcEdition.Overlay –> A LayerOverlay object that displays as the background map by default.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

ContextMenu(Action<ContextMenuSetting>)

Sets the ContextMenu of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
addContextMenuAction Action<ContextMenuSetting><!– System.Action{ThinkGeo.MapSuite.MvcEdition.ContextMenuSetting} –> The action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

CurrentExtent(Double, Double, Double, Double)

Sets the current extent of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
minX Double<!– System.Double –> This property specifies the minimum X value. This is also the upper left X.
maxY Double<!– System.Double –> This property specifies the maximum Y value. This is also the upper left Y.
maxX Double<!– System.Double –> This property specifies the maximum X value. This is also the lower right X.
minY Double<!– System.Double –> This property specifies the minimum Y value. This is also the lower right Y.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

CurrentScale(Double)

Sets the current scale of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
scale Double<!– System.Double –> scale value.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

Cursor(CursorType)

Sets the cursor that appears when the mouse pointer is over the map control.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
cursorType CursorType<!– ThinkGeo.MapSuite.MvcEdition.CursorType –> The type of the cursor that appears when the pointer moves over the map.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

CustomOverlays(Action<OverlayCollection>)

Configures the Overlays added to the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
addOverlayAction Action<OverlayCollection><!– System.Action{ThinkGeo.MapSuite.MvcEdition.OverlayCollection} –> CustomOverlay setting action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

DynamicOverlay(Action<LayerOverlaySetting>)

Configures a LayerOverlay object that can overlap other overlays.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
configOverlayAction Action<LayerOverlaySetting><!– System.Action{ThinkGeo.MapSuite.MvcEdition.LayerOverlaySetting} –> Overlay configuration action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

EditOverlay(Action<EditFeatureOverlaySetting>)

Configures an EditOverlay object, with which you can draw and edit shapes on client side.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
configEditOverlayAction Action<EditFeatureOverlaySetting><!– System.Action{ThinkGeo.MapSuite.MvcEdition.EditFeatureOverlaySetting} –> The editOvelay configuration action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

Equals(Object)

Return Value

Return Type Description
Boolean<!– System.Boolean –>

Parameters

Name Type Description
obj Object<!– System.Object –>

<!– System.Object –> Go Back

GetHashCode()

Return Value

Return Type Description
Int32<!– System.Int32 –>

Parameters

Name Type Description

<!– System.Object –> Go Back

GetType()

Return Value

Return Type Description
Type<!– System.Type –>

Parameters

Name Type Description

<!– System.Object –> Go Back

HighlightOverlay(Action<HighlightFeatureOverlaySetting>)

Configures a HighlightFeatureOverlay object, which draws its features on client side and can attach the specified click event and context menu to them.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
configHighlightOverlayAction Action<HighlightFeatureOverlaySetting><!– System.Action{ThinkGeo.MapSuite.MvcEdition.HighlightFeatureOverlaySetting} –> The HighlightFeatureOverlay configuration action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

HtmlAttributes(Dictionary<String, String>)

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
htmlAttributes Dictionary<String,String><!– System.Collections.Generic.Dictionary{System.String,System.String} –>

<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBuilderBase{ThinkGeo.MapSuite.MvcEdition.Map,ThinkGeo.MapSuite.MvcEdition.MapBuilder} –> Go Back

IsDefaultJavascriptLibraryDisabled(Boolean)

Gets or sets whether the default javascript library is disabled or not.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
disabled Boolean<!– System.Boolean –>

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

MapBackground(BackgroundLayer)

Sets the BackgroundLayer object that paints the map background.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
backgroundLayer BackgroundLayer<!– ThinkGeo.MapSuite.Core.BackgroundLayer –> BackgroundLayer of the map.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

MapTools(Action<MapToolsSettingCollection>)

Configures the MapTools in the map control.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
mapToolsSettingAction Action<MapToolsSettingCollection><!– System.Action{ThinkGeo.MapSuite.MvcEdition.MapToolsSettingCollection} –> MapTools configuration action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

MapUnit(GeographyUnit)

Sets the GeographyUnit of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
mapUnit GeographyUnit<!– ThinkGeo.MapSuite.Core.GeographyUnit –> GeographyUnit of the map.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

MarkerOverlay(Action<InMemoryMarkerOverlaySetting>)

Configures an InMemoryMarkerOverlay object that renders markers by the specified features.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
configMarkerOverlayAction Action<InMemoryMarkerOverlaySetting><!– System.Action{ThinkGeo.MapSuite.MvcEdition.InMemoryMarkerOverlaySetting} –> The InMemoryMarkerOverlay configuration action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

Name(String)

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
name String<!– System.String –>

<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBuilderBase{ThinkGeo.MapSuite.MvcEdition.Map,ThinkGeo.MapSuite.MvcEdition.MapBuilder} –> Go Back

OnClientBaseOverlayChanged(String)

Sets the ClientBaseOverlayChanged event of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientBaseOverlayChanged String<!– System.String –> The JavaScript function name.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientClick(String)

Sets the client click event of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientClick String<!– System.String –> The JavaScript function name.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientDoubleClick(String)

Sets the ClientDoubleClick event of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientDoubleClick String<!– System.String –> The JavaScript function name.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientDrawEnd(String)

Sets the ClientDrawEnd event of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientDrawEnd String<!– System.String –> The JavaScript function name.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientEditEnd(String)

Sets the ClientEditEnd event of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientEditEnd String<!– System.String –> The JavaScript function name.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientExtentChanged(String)

Sets the ClientExtentChanged event of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientExtentChanged String<!– System.String –> The JavaScript function name.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientPopupsRequested(String)

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientPopupsRequestedEventHandler String<!– System.String –>

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientPopupsRequesting(String)

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientPopupsRequestingEventHandler String<!– System.String –>

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

OnClientTrackShapeFinished(String)

Sets the OnClientTrackShapeFinished event of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
clientTrackShapeFinishedEventHandler String<!– System.String –> The JavaScript function name.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

Popups(Action<PopupCollection>)

Sets the popups of the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
addPopupAction Action<PopupCollection><!– System.Action{ThinkGeo.MapSuite.MvcEdition.PopupCollection} –> Popup setting action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

Render()

Sends the map control content to a provided HtmlTextWriter object, which wirtes the content to be rendered on the client.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

ResourceDeploymentMode(ResourceDeploymentMode)

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.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
resourceDeploymentMode ResourceDeploymentMode<!– ThinkGeo.MapSuite.MvcEdition.ResourceDeploymentMode –> The depolymentMode indicates whether the control creates and releases the theme files to application folder automatically.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

RestrictedExtent(RectangleShape)

Sets an extent that limits the area to which the map can be navigated within.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
extent RectangleShape<!– ThinkGeo.MapSuite.Core.RectangleShape –>

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

ScriptBlocks(Dictionary<String, String>)

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
scriptBlocks Dictionary<String,String><!– System.Collections.Generic.Dictionary{System.String,System.String} –>

<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBuilderBase{ThinkGeo.MapSuite.MvcEdition.Map,ThinkGeo.MapSuite.MvcEdition.MapBuilder} –> Go Back

ScriptFileNames(Dictionary<String, String>)

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
scriptFileNames Dictionary<String,String><!– System.Collections.Generic.Dictionary{System.String,System.String} –>

<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBuilderBase{ThinkGeo.MapSuite.MvcEdition.Map,ThinkGeo.MapSuite.MvcEdition.MapBuilder} –> Go Back

StaticOverlay(Action<LayerOverlaySetting>)

Configures a LayerOverlay object that displays as a background map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
configOverlayAction Action<LayerOverlaySetting><!– System.Action{ThinkGeo.MapSuite.MvcEdition.LayerOverlaySetting} –> Overlay configuration action.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

StyleSheetFileNames(IEnumerable<String>)

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
cssFileNames IEnumerable<String><!– System.Collections.Generic.IEnumerable{System.String} –>

<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBuilderBase{ThinkGeo.MapSuite.MvcEdition.Map,ThinkGeo.MapSuite.MvcEdition.MapBuilder} –> Go Back

ToString()

Return Value

Return Type Description
String<!– System.String –>

Parameters

Name Type Description

<!– System.Object(overriden) –> Go Back

WebConfigRegisterMode(WebConfigRegistrationMode)

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.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
webConfigRegisterMode WebConfigRegistrationMode<!– ThinkGeo.MapSuite.MvcEdition.WebConfigRegistrationMode –> The register mode that indicates whether the application allows map to register the Web.config on the fly in runtime.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

ZoomLevelSet(ZoomLevelSet)

Sets the ZoomLevelSet applied to the map.

Return Value

Return Type Description
MapBuilder<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –>

Parameters

Name Type Description
zoomLevelSet ZoomLevelSet<!– ThinkGeo.MapSuite.Core.ZoomLevelSet –> ZoomLevels that will be applied to map.

<!– ThinkGeo.MapSuite.MvcEdition.MapBuilder –> Go Back

Protected Methods

Finalize()

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– System.Object –> Go Back

MemberwiseClone()

Return Value

Return Type Description
Object<!– System.Object –>

Parameters

Name Type Description

<!– System.Object –> Go Back

Public Properties

Protected Properties

Control

Return Value

Return Type
Map<!– ThinkGeo.MapSuite.MvcEdition.Map –>

<!– ThinkGeo.MapSuite.MvcEdition.MvcControlBuilderBase{ThinkGeo.MapSuite.MvcEdition.Map,ThinkGeo.MapSuite.MvcEdition.MapBuilder} –> Go Back

Public Events

thinkgeo.mapsuite.mvcedition.mapbuilder.1440040131.txt.gz · Last modified: 2015/09/21 03:33 (external edit)