This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
thinkgeo.mapsuite.silverlightcore.inmemoryfeaturelayer [2015/08/20 03:08] 127.0.0.1 external edit |
thinkgeo.mapsuite.silverlightcore.inmemoryfeaturelayer [2017/03/16 21:59] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer ====== | ====== ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer ====== | ||
+ | {{section>upgrade_map_suite_to_10.0}} | ||
- | + | This layer is backed by memory and is typically used for temporary features. | |
- | <!-- Class --> | + | |
===== Inheritance Hierarchy ===== | ===== Inheritance Hierarchy ===== | ||
- | *System.Object | + | *System.Object |
- | **[[ThinkGeo.MapSuite.SilverlightCore.Layer]] | + | *ThinkGeo.MapSuite.SilverlightCore.Layer |
- | ***[[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer]] | + | *ThinkGeo.MapSuite.SilverlightCore.FeatureLayer |
- | ****[[ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer]] | + | ***ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer** |
===== Members Summary ===== | ===== Members Summary ===== | ||
==== Public Constructors ==== | ==== Public Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} InMemoryFeatureLayer() ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#InMemoryFeatureLayer()|InMemoryFeatureLayer]] | | | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#InMemoryFeatureLayer(IEnumerable<FeatureSourceColumn>, IEnumerable<Feature>)|InMemoryFeatureLayer]] | IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]>, IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]> | | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#InMemoryFeatureLayer(IEnumerable<FeatureSourceColumn>, IEnumerable<BaseShape>)|InMemoryFeatureLayer]] | IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]>, IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]]> | | | | + | |
- | ==== Protected Constructors ==== | + | * //This is a constructor for the class.// |
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | == Remarks == |
+ | * //If you use this constructor, then you need to specify the FeatureSource column manually.// | ||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} InMemoryFeatureLayer(IEnumerable<FeatureSourceColumn>,IEnumerable<Feature>) ** | ||
+ | * //This is a constructor for the class.// | ||
+ | == Remarks == | ||
+ | * //This constructor gets the layer ready to use.// | ||
+ | == Parameters == | ||
+ | * //featureSourceColumns// | ||
+ | * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]> | ||
+ | * Description:This parameter is the FeatureSourceColumn in this class that you want to use. | ||
+ | |||
+ | * //features// | ||
+ | * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]> | ||
+ | * Description:This parameter represents the features in this class that you want to use. | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} InMemoryFeatureLayer(IEnumerable<FeatureSourceColumn>,IEnumerable<BaseShape>) ** | ||
+ | |||
+ | * //This is a constructor for the class.// | ||
+ | == Remarks == | ||
+ | * //This constructor gets the layer ready to use.// | ||
+ | == Parameters == | ||
+ | * //featureSourceColumns// | ||
+ | * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]> | ||
+ | * Description:This parameter is the FeatureSourceColumn in this class that you want to use. | ||
+ | |||
+ | * //shapes// | ||
+ | * Type:IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]]> | ||
+ | * Description:This parameter represents the shapes in this class that you want to use. | ||
+ | |||
+ | <div newline></div> | ||
+ | ==== Protected Constructors ==== | ||
==== Public Methods ==== | ==== Public Methods ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} GetColumns() ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#BuildIndex()|BuildIndex]] | | | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Close()|Close]] | | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | * //This method returns the columns of data for the InternalFeatures in this Layer.// |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Draw(GeoCanvas, Collection<SimpleCandidate>)|Draw]] | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]], Collection<[[ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate|SimpleCandidate]]> | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | == Remarks == |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Equals(Object)|Equals]] | Object | Object | | | + | * //You should set the column names for the data that the InternalFeatures will hold. For example, if you have some features that represent road signs, then one column you may want to add is "Sign Type". Then, for every Feature you add to the layer, you need to add the "Sign Type" and a value to the InternalFeatures' ColumnValues dictionary. If you provide this information, then you can use things like ValueStyles, Labeling, etc. based on the columns you have defined.// |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetBoundingBox()|GetBoundingBox]] | | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetColumns()|GetColumns]] | | | | | + | == Return Value == |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetHashCode()|GetHashCode]] | | Object | | | + | * Type:Collection<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]> |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetType()|GetType]] | | Object | | | + | * Description:N/A |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Open()|Open]] | | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ToString()|ToString]] | | Object | | | + | == Parameters == |
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} BuildIndex() ** | ||
+ | |||
+ | * //This method build a spatial index for a passed group of featurs which increases access speed.// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} Open() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} Close() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} GetBoundingBox() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} Draw(GeoCanvas,Collection<SimpleCandidate>) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //canvas// | ||
+ | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]] | ||
+ | * Description:N/A | ||
+ | |||
+ | * //labelsInAllLayers// | ||
+ | * Type:Collection<[[ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate|SimpleCandidate]]> | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} ToString() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:String | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //obj// | ||
+ | * Type:Object | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Int32 | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} GetType() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Type | ||
+ | * Description:N/A | ||
+ | == Parameters == | ||
+ | <div newline></div> | ||
==== Protected Methods ==== | ==== Protected Methods ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:ProtectedMethod.gif|}} OpenCore() ** |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#CloseCore()|CloseCore]] | | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]](overriden) | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#DrawCore(GeoCanvas, Collection<SimpleCandidate>)|DrawCore]] | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]], Collection<[[ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate|SimpleCandidate]]> | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]](overriden) | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#DrawException(GeoCanvas, Exception)|DrawException]] | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]], Exception | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#DrawExceptionCore(GeoCanvas, Exception)|DrawExceptionCore]] | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]], Exception | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#Finalize()|Finalize]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#GetBoundingBoxCore()|GetBoundingBoxCore]] | | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]](overriden) | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#MemberwiseClone()|MemberwiseClone]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#OnDrawingFeatures(DrawingFeaturesEventArgs)|OnDrawingFeatures]] | [[ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#OnDrawingProgressChanged(DrawingProgressChangedEventArgs)|OnDrawingProgressChanged]] | [[ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]] | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#OnDrawingWrappingFeatures(DrawingWrappingFeaturesFeatureLayerEventArgs)|OnDrawingWrappingFeatures]] | [[ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#OpenCore()|OpenCore]] | | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]](overriden) | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#SetupTools()|SetupTools]] | | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#SetupToolsCore()|SetupToolsCore]] | | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | ==== Public Properties ==== | + | * //This method opens the Layer so that it is initialized and ready to use.// |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | == Remarks == |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#Columns|Columns]] | Collection<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]> | | | | + | * //This abstract method is called from the concrete public method Open. The open method plays an important role, as it is responsible for initializing the Layer. Most methods on the Layer will throw an exception if the state of the Layer is not opened. When the map draws each layer, the layer will be opened as one of its first steps; then, after it is finished drawing with that layer, it will close it. In this way, we are sure to release all resources used by the Layer. When implementing the abstract method, consider opening the FeatureSource or RasterSource. You will get a chance to close these in the Close method of the Layer.// |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#DrawingExceptionMode|DrawingExceptionMode]] | [[ThinkGeo.MapSuite.SilverlightCore.DrawingExceptionMode|DrawingExceptionMode]] | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#DrawingMarginPercentage|DrawingMarginPercentage]] | Double | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#DrawingTime|DrawingTime]] | TimeSpan | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#EditTools|EditTools]] | [[ThinkGeo.MapSuite.SilverlightCore.EditTools|EditTools]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#FeatureIdsToExclude|FeatureIdsToExclude]] | Collection<String> | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#FeatureSource|FeatureSource]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureSource|FeatureSource]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#HasBoundingBox|HasBoundingBox]] | Boolean | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]](overriden) | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#InternalFeatures|InternalFeatures]] | [[ThinkGeo.MapSuite.SilverlightCore.GeoCollection|GeoCollection]]<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]> | | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#IsOpen|IsOpen]] | Boolean | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#IsVisible|IsVisible]] | Boolean | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#Name|Name]] | String | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#QueryTools|QueryTools]] | [[ThinkGeo.MapSuite.SilverlightCore.QueryTools|QueryTools]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#WrappingExtent|WrappingExtent]] | [[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#WrappingMode|WrappingMode]] | [[ThinkGeo.MapSuite.SilverlightCore.WrappingMode|WrappingMode]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#ZoomLevelSet|ZoomLevelSet]] | [[ThinkGeo.MapSuite.SilverlightCore.ZoomLevelSet|ZoomLevelSet]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | ==== Protected Properties ==== | + | == Return Value == |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * Type:Void |
- | | {{wiki:ProtectedProperty.gif|Protected Property}}[[#IsOpenCore|IsOpenCore]] | Boolean | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]](overriden) | | | + | * Description:None |
- | ==== Public Events ==== | + | == Parameters == |
- | ^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^ | + | <div newline></div> |
- | | {{wiki:PublicEvent.gif|Public Event}}[[#DrawingFeatures|DrawingFeatures]] | [[ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | ** {{wiki:ProtectedMethod.gif|}} OnDrawingFeatures(DrawingFeaturesEventArgs) ** |
- | | {{wiki:PublicEvent.gif|Public Event}}[[#DrawingProgressChanged|DrawingProgressChanged]] | [[ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]] | [[ThinkGeo.MapSuite.SilverlightCore.Layer|Layer]] | | | + | |
- | | {{wiki:PublicEvent.gif|Public Event}}[[#DrawingWrappingFeatures|DrawingWrappingFeatures]] | [[ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]] | [[ThinkGeo.MapSuite.SilverlightCore.FeatureLayer|FeatureLayer]] | | | + | |
- | ===== Public Constructors ===== | + | * //N/A// |
- | ==== InMemoryFeatureLayer() ==== | + | == Remarks == |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | |
- | [[#Public Constructors|Go Back]] | + | == Return Value == |
- | ==== InMemoryFeatureLayer(IEnumerable<FeatureSourceColumn>, IEnumerable<Feature>) ==== | + | * Type:Void |
- | === Parameters === | + | * Description:N/A |
- | ^ Name ^ Type ^ Description ^ | + | |
- | | featureSourceColumns | IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]><!-- System.Collections.Generic.IEnumerable{ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn} --> | | | + | |
- | | features | IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]><!-- System.Collections.Generic.IEnumerable{ThinkGeo.MapSuite.SilverlightCore.Feature} --> | | | + | |
- | [[#Public Constructors|Go Back]] | + | == Parameters == |
- | ==== InMemoryFeatureLayer(IEnumerable<FeatureSourceColumn>, IEnumerable<BaseShape>) ==== | + | * //e// |
- | === Parameters === | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]] |
- | ^ Name ^ Type ^ Description ^ | + | * Description:N/A |
- | | featureSourceColumns | IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]><!-- System.Collections.Generic.IEnumerable{ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn} --> | | | + | |
- | | shapes | IEnumerable<[[ThinkGeo.MapSuite.SilverlightCore.BaseShape|BaseShape]]><!-- System.Collections.Generic.IEnumerable{ThinkGeo.MapSuite.SilverlightCore.BaseShape} --> | | | + | |
- | [[#Public Constructors|Go Back]] | + | <div newline></div> |
- | ===== Protected Constructors ===== | + | ** {{wiki:ProtectedMethod.gif|}} OnDrawingWrappingFeatures(DrawingWrappingFeaturesFeatureLayerEventArgs) ** |
- | ===== Public Methods ===== | + | |
- | ==== BuildIndex() ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
+ | * //N/A// | ||
- | <!-- ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== Close() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //e// |
+ | * Type:[[ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]] | ||
+ | * Description:N/A | ||
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | <div newline></div> |
- | [[#Public Methods|Go Back]] | + | ** {{wiki:ProtectedMethod.gif|}} SetupTools() ** |
- | ==== Draw(GeoCanvas, Collection<SimpleCandidate>) ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | canvas | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]]<!-- ThinkGeo.MapSuite.SilverlightCore.GeoCanvas --> | | | + | * //N/A// |
- | | labelsInAllLayers | Collection<[[ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate|SimpleCandidate]]><!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate} --> | | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== Equals(Object) ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Boolean<!-- System.Boolean --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | <div newline></div> |
- | | obj | Object<!-- System.Object --> | | | + | ** {{wiki:ProtectedMethod.gif|}} SetupToolsCore() ** |
- | <!-- System.Object --> | + | * //N/A// |
- | [[#Public Methods|Go Back]] | + | == Remarks == |
- | ==== GetBoundingBox() ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.SilverlightCore.RectangleShape --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
+ | * Description:N/A | ||
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | == Parameters == |
- | [[#Public Methods|Go Back]] | + | <div newline></div> |
- | ==== GetColumns() ==== | + | ** {{wiki:ProtectedMethod.gif|}} CloseCore() ** |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Collection<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]><!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn} --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
+ | * //N/A// | ||
- | <!-- ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== GetHashCode() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Int32<!-- System.Int32 --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | <div newline></div> |
+ | ** {{wiki:ProtectedMethod.gif|}} GetBoundingBoxCore() ** | ||
- | <!-- System.Object --> | + | * //N/A// |
- | [[#Public Methods|Go Back]] | + | == Remarks == |
- | ==== GetType() ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Type<!-- System.Type --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] |
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | == Parameters == |
- | [[#Public Methods|Go Back]] | + | <div newline></div> |
- | ==== Open() ==== | + | ** {{wiki:ProtectedMethod.gif|}} DrawCore(GeoCanvas,Collection<SimpleCandidate>) ** |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
+ | * //N/A// | ||
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== ToString() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | String<!-- System.String --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //canvas// |
+ | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]] | ||
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | * //labelsInAllLayers// |
- | [[#Public Methods|Go Back]] | + | * Type:Collection<[[ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate|SimpleCandidate]]> |
- | ===== Protected Methods ===== | + | * Description:N/A |
- | ==== CloseCore() ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:ProtectedMethod.gif|}} DrawException(GeoCanvas,Exception) ** |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer(overriden) --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== DrawCore(GeoCanvas, Collection<SimpleCandidate>) ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
- | | canvas | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]]<!-- ThinkGeo.MapSuite.SilverlightCore.GeoCanvas --> | | | + | * Description:N/A |
- | | labelsInAllLayers | Collection<[[ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate|SimpleCandidate]]><!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.SilverlightCore.SimpleCandidate} --> | | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer(overriden) --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | * //canvas// |
- | ==== DrawException(GeoCanvas, Exception) ==== | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]] |
- | === Return Value === | + | * Description:N/A |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //e// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Exception |
- | | canvas | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]]<!-- ThinkGeo.MapSuite.SilverlightCore.GeoCanvas --> | | | + | * Description:N/A |
- | | e | Exception<!-- System.Exception --> | | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | <div newline></div> |
- | [[#Protected Methods|Go Back]] | + | ** {{wiki:ProtectedMethod.gif|}} DrawExceptionCore(GeoCanvas,Exception) ** |
- | ==== DrawExceptionCore(GeoCanvas, Exception) ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | canvas | [[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]]<!-- ThinkGeo.MapSuite.SilverlightCore.GeoCanvas --> | | | + | * //N/A// |
- | | e | Exception<!-- System.Exception --> | | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | == Return Value == |
- | [[#Protected Methods|Go Back]] | + | * Type:Void |
- | ==== Finalize() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //canvas// |
+ | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCanvas|GeoCanvas]] | ||
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | * //e// |
- | [[#Protected Methods|Go Back]] | + | * Type:Exception |
- | ==== GetBoundingBoxCore() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.SilverlightCore.RectangleShape --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:ProtectedMethod.gif|}} OnDrawingProgressChanged(DrawingProgressChangedEventArgs) ** |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer(overriden) --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== MemberwiseClone() ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Object<!-- System.Object --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | * //e// |
- | ==== OnDrawingFeatures(DrawingFeaturesEventArgs) ==== | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]] |
- | === Return Value === | + | * Description:N/A |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:ProtectedMethod.gif|}} Finalize() ** |
- | | e | [[ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]]<!-- ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs --> | | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== OnDrawingProgressChanged(DrawingProgressChangedEventArgs) ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
- | | e | [[ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]]<!-- ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs --> | | | + | * Description:N/A |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | <div newline></div> |
- | ==== OnDrawingWrappingFeatures(DrawingWrappingFeaturesFeatureLayerEventArgs) ==== | + | ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | e | [[ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]]<!-- ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs --> | | | + | * //N/A// |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | == Return Value == |
- | [[#Protected Methods|Go Back]] | + | * Type:Object |
- | ==== OpenCore() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | <div newline></div> |
+ | ==== Public Properties ==== | ||
+ | ** {{wiki:PublicProperty.gif|}} Columns ** | ||
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer(overriden) --> | + | This property gets the columns of data for the InternalFeatures in this Layer. |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== SetupTools() ==== | + | You should set the column names for the data that the InternalFeatures will hold. For example, if you have some features that represent road signs, then one column you may want to add is "Sign Type". Then, for every Feature you add to the layer, you need to add the "Sign Type" and a value to the InternalFeatures' ColumnValues dictionary. If you provide this information, then you can use things like ValueStyles, Labeling, etc. based on the columns you have defined. |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ Description ^ | + | * Type:Collection<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]> |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | ** {{wiki:PublicProperty.gif|}} InternalFeatures ** |
- | ^ Name ^ Type ^ Description ^ | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | This property gets the dictionary that holds your InternalFeatures. |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== SetupToolsCore() ==== | + | The dictionary is a quick way to access your InternalFeatures. You can easily add, remove or edit features in this dictionary and they instantly take effect in the layer. You can always use the EditTools to do the same thing, but this is a shortcut, as the data is backed in memory so it is very pliable. |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ Description ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCollection<T>[[ThinkGeo.MapSuite.SilverlightCore.Feature, SilverlightMapSuiteCore, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection<T>]] |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | ** {{wiki:PublicProperty.gif|}} HasBoundingBox ** |
- | ^ Name ^ Type ^ Description ^ | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | This property checks to see if a Layer has a BoundingBox or not. If it has no BoundingBox, it will throw an exception when you call the GetBoundingBox() and GetFullExtent() APIs. In InMemoryFeatureLayer, we override this API and mark it as true. |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ===== Public Properties ===== | + | The default implementation in the base class returns false. |
- | ==== Columns ==== | + | == Return Value == |
- | === Return Value === | + | * Type:Boolean |
- | ^ Return Type ^ | + | |
- | | Collection<[[ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn|FeatureSourceColumn]]><!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.SilverlightCore.FeatureSourceColumn} --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer --> | + | ** {{wiki:PublicProperty.gif|}} WrappingExtent ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== DrawingExceptionMode ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | [[ThinkGeo.MapSuite.SilverlightCore.DrawingExceptionMode|DrawingExceptionMode]]<!-- ThinkGeo.MapSuite.SilverlightCore.DrawingExceptionMode --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== DrawingMarginPercentage ==== | + | N/A |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] |
- | | Double<!-- System.Double --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | ** {{wiki:PublicProperty.gif|}} WrappingMode ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== DrawingTime ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | TimeSpan<!-- System.TimeSpan --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== EditTools ==== | + | N/A |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.WrappingMode|WrappingMode]] |
- | | [[ThinkGeo.MapSuite.SilverlightCore.EditTools|EditTools]]<!-- ThinkGeo.MapSuite.SilverlightCore.EditTools --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | ** {{wiki:PublicProperty.gif|}} EditTools ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== FeatureIdsToExclude ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Collection<String><!-- System.Collections.ObjectModel.Collection{System.String} --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== FeatureSource ==== | + | N/A |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.EditTools|EditTools]] |
- | | [[ThinkGeo.MapSuite.SilverlightCore.FeatureSource|FeatureSource]]<!-- ThinkGeo.MapSuite.SilverlightCore.FeatureSource --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | ** {{wiki:PublicProperty.gif|}} FeatureIdsToExclude ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== HasBoundingBox ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Boolean<!-- System.Boolean --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer(overriden) --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== InternalFeatures ==== | + | N/A |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ | + | * Type:Collection<String> |
- | | [[ThinkGeo.MapSuite.SilverlightCore.GeoCollection|GeoCollection]]<[[ThinkGeo.MapSuite.SilverlightCore.Feature|Feature]]><!-- ThinkGeo.MapSuite.SilverlightCore.GeoCollection{ThinkGeo.MapSuite.SilverlightCore.Feature} --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.InMemoryFeatureLayer --> | + | ** {{wiki:PublicProperty.gif|}} QueryTools ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== IsOpen ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Boolean<!-- System.Boolean --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== IsVisible ==== | + | N/A |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.QueryTools|QueryTools]] |
- | | Boolean<!-- System.Boolean --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | ** {{wiki:PublicProperty.gif|}} FeatureSource ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== Name ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | String<!-- System.String --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== QueryTools ==== | + | N/A |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.FeatureSource|FeatureSource]] |
- | | [[ThinkGeo.MapSuite.SilverlightCore.QueryTools|QueryTools]]<!-- ThinkGeo.MapSuite.SilverlightCore.QueryTools --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | ** {{wiki:PublicProperty.gif|}} ZoomLevelSet ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== WrappingExtent ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | [[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.SilverlightCore.RectangleShape --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | N/A |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== WrappingMode ==== | + | N/A |
- | === Return Value === | + | == Return Value == |
- | ^ Return Type ^ | + | * Type:[[ThinkGeo.MapSuite.SilverlightCore.ZoomLevelSet|ZoomLevelSet]] |
- | | [[ThinkGeo.MapSuite.SilverlightCore.WrappingMode|WrappingMode]]<!-- ThinkGeo.MapSuite.SilverlightCore.WrappingMode --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | ** {{wiki:PublicProperty.gif|}} DrawingMarginPercentage ** |
- | [[#Public Properties|Go Back]] | + | |
- | ==== ZoomLevelSet ==== | + | N/A |
- | === Return Value === | + | == Remarks == |
- | ^ Return Type ^ | + | N/A |
- | | [[ThinkGeo.MapSuite.SilverlightCore.ZoomLevelSet|ZoomLevelSet]]<!-- ThinkGeo.MapSuite.SilverlightCore.ZoomLevelSet --> | | + | == Return Value == |
+ | * Type:Double | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} IsOpen ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} DrawingTime ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:TimeSpan | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} Name ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:String | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} IsVisible ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} DrawingExceptionMode ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.SilverlightCore.DrawingExceptionMode|DrawingExceptionMode]] | ||
+ | |||
+ | ==== Protected Properties ==== | ||
+ | ** {{wiki:ProtectedProperty.gif|}} IsOpenCore ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Boolean | ||
+ | |||
+ | ==== Public Events ==== | ||
+ | ** {{wiki:PublicEvent.gif|}} DrawingFeatures ** | ||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | Event Arguments:[[ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]] |
- | [[#Public Properties|Go Back]] | + | |
- | ===== Protected Properties ===== | + | |
- | ==== IsOpenCore ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Boolean<!-- System.Boolean --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer(overriden) --> | + | ** {{wiki:PublicEvent.gif|}} DrawingWrappingFeatures ** |
- | [[#Protected Properties|Go Back]] | + | N/A |
- | ===== Public Events ===== | + | == Remarks == |
- | ==== DrawingFeatures ==== | + | N/A |
- | === Event Arguments === | + | |
- | ^ Event Arguments ^ | + | |
- | | [[ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs|DrawingFeaturesEventArgs]]<!-- ThinkGeo.MapSuite.SilverlightCore.DrawingFeaturesEventArgs --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | Event Arguments:[[ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]] |
- | [[#Public Events|Go Back]] | + | |
- | ==== DrawingProgressChanged ==== | + | |
- | === Event Arguments === | + | |
- | ^ Event Arguments ^ | + | |
- | | [[ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]]<!-- ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.Layer --> | + | ** {{wiki:PublicEvent.gif|}} DrawingProgressChanged ** |
- | [[#Public Events|Go Back]] | + | N/A |
- | ==== DrawingWrappingFeatures ==== | + | == Remarks == |
- | === Event Arguments === | + | N/A |
- | ^ Event Arguments ^ | + | |
- | | [[ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs|DrawingWrappingFeaturesFeatureLayerEventArgs]]<!-- ThinkGeo.MapSuite.SilverlightCore.DrawingWrappingFeaturesFeatureLayerEventArgs --> | | + | |
- | <!-- ThinkGeo.MapSuite.SilverlightCore.FeatureLayer --> | + | Event Arguments:[[ThinkGeo.MapSuite.SilverlightCore.DrawingProgressChangedEventArgs|DrawingProgressChangedEventArgs]] |
- | [[#Public Events|Go Back]] | + | |
- | __NOTOC__ | ||
- | [[Category:SilverlightMapSuiteCore]] | ||
- | [[Category:ThinkGeo.MapSuite.SilverlightCore]] | ||
- | [[Category:UpdateDocumentation]] | ||