ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
This is an old revision of the document!
<!– Class –> This class allows you to match a value with data in the feature to determine how to draw the feature.
ValueMarkerStyle:
The ValueMarkerStyle allows you to match data in the FeatureSource with a value string. If the value matches, then we will use the style defined in that item to create the markers.
For example, you may have some data about cities, with each city categorized as either a high, medium or low pollution city. Based on the string values of “High”, “Medium” and “Low”, we can match on these. If a particular feature's data for the column matched “High”, then we would use the high MarkerValueItem's style to create that city's marker.
*System.Object ThinkGeo.MapSuite.MvcEdition.MarkerStyle *ThinkGeo.MapSuite.MvcEdition.ValueMarkerStyle
Name | Parameters | DeclaringType | Summary |
---|---|---|---|
![]() | Initialize a new instance of the ValueMarkerStyle class. | ||
![]() | String | Initialize a new instance of the ValueMarkerStyle class with the columnName specified. | |
![]() | String, Collection<MarkerValueItem> | Initialize a new instance of the ValueMarkerStyle class with the columnName and a collection of valueItems specified. |
Name | Parameters | DeclaringType | Summary |
---|
Name | Parameters | DeclaringType | Summary |
---|---|---|---|
![]() | Object | Object | |
![]() | Object | ||
![]() | IEnumerable<Feature> | MarkerStyle(overriden) | Returns a collection of markers with a style applied based on the features that are passed in. |
![]() | Object | ||
![]() | Object |
Name | Parameters | DeclaringType | Summary |
---|---|---|---|
![]() | Object | ||
![]() | MarkerStyle(overriden) | Gets a collection of context menus that are associated with the MarkerStyle. | |
![]() | Object |
Name | Return | DeclaringType | Summary |
---|---|---|---|
![]() | String | Gets or sets the column name used to match with the value specified in the items. | |
![]() | Collection<MarkerValueItem> | Gets the collection of ValueItems. Each item can have a value to match. |
Name | Return | DeclaringType | Summary |
---|
Name | Event Arguments | DeclaringType | Summary |
---|
Initialize a new instance of the ValueMarkerStyle class.
Initialize a new instance of the ValueMarkerStyle class.
Name | Type | Description |
---|
Initialize a new instance of the ValueMarkerStyle class with the columnName specified.
Initialize a new instance of the ValueMarkerStyle class.
Name | Type | Description |
---|---|---|
columnName | String<!– System.String –> | The column name used to match with the value specified in the items. |
Initialize a new instance of the ValueMarkerStyle class with the columnName and a collection of valueItems specified.
Initialize a new instance of the ValueMarkerStyle class.
Name | Type | Description |
---|---|---|
columnName | String<!– System.String –> | The column name used to match with the value specified in the items. |
valueItems | Collection<MarkerValueItem><!– System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.MvcEdition.MarkerValueItem} –> | A collection of valueItems that defines the style applied to markers. |
Return Type | Description |
---|---|
Boolean<!– System.Boolean –> |
Name | Type | Description |
---|---|---|
obj | Object<!– System.Object –> |
<!– System.Object –> Go Back
Return Type | Description |
---|---|
Int32<!– System.Int32 –> |
Name | Type | Description |
---|
<!– System.Object –> Go Back
Returns a collection of markers with a style applied based on the features that are passed in.
Return Type | Description |
---|---|
Collection<Marker><!– System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.MvcEdition.Marker} –> | A collection of markers with a style applied based on the features that are passed in. |
Name | Type | Description |
---|---|---|
features | IEnumerable<Feature><!– System.Collections.Generic.IEnumerable{ThinkGeo.MapSuite.Core.Feature} –> | A collection of features used to create the markers. |
<!– ThinkGeo.MapSuite.MvcEdition.MarkerStyle(overriden) –> Go Back
Return Type | Description |
---|---|
Type<!– System.Type –> |
Name | Type | Description |
---|
<!– System.Object –> Go Back
Return Type | Description |
---|---|
String<!– System.String –> |
Name | Type | Description |
---|
<!– System.Object –> Go Back
Return Type | Description |
---|---|
Void<!– System.Void –> |
Name | Type | Description |
---|
<!– System.Object –> Go Back
Gets a collection of context menus that are associated with the MarkerStyle.
Return Type | Description |
---|---|
GeoKeyedCollection<ContextMenu><!– ThinkGeo.MapSuite.MvcEdition.GeoKeyedCollection{ThinkGeo.MapSuite.MvcEdition.ContextMenu} –> | A collection of context menus that are associated with the MarkerStyle. |
Name | Type | Description |
---|
<!– ThinkGeo.MapSuite.MvcEdition.MarkerStyle(overriden) –> Go Back
Return Type | Description |
---|---|
Object<!– System.Object –> |
Name | Type | Description |
---|
<!– System.Object –> Go Back
Gets or sets the column name used to match with the value specified in the items.
This is the column whose values we will use for matching.
Return Type |
---|
String<!– System.String –> |
<!– ThinkGeo.MapSuite.MvcEdition.ValueMarkerStyle –> Go Back
Gets the collection of ValueItems. Each item can have a value to match.
You will want to add MarkerValueItems to this collection. Each item can have its own style and matching string.
Return Type |
---|
Collection<MarkerValueItem><!– System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.MvcEdition.MarkerValueItem} –> |
<!– ThinkGeo.MapSuite.MvcEdition.ValueMarkerStyle –> Go Back