Interface IBaseMapGroup
Tiled map group
Inherited Members
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Namespace: OSGeo.MapGuide.ObjectModels.MapDefinition
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IBaseMapGroup : IMapLegendElementBase, INotifyPropertyChanged
Properties
| Improve this Doc View SourceBaseMapLayer
Gets the base map layers.
Declaration
IEnumerable<IBaseMapLayer> BaseMapLayer { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IBaseMapLayer> | The base map layers. |
Visible
Gets or sets a value indicating whether this IBaseMapGroup is visible.
Declaration
bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Methods
| Improve this Doc View SourceAddLayer(String, String)
Adds the layer.
Declaration
IBaseMapLayer AddLayer(string layerName, string resourceId)
Parameters
Type | Name | Description |
---|---|---|
System.String | layerName | Name of the layer. |
System.String | resourceId | The resource id. |
Returns
Type | Description |
---|---|
IBaseMapLayer |
GetIndex(IBaseMapLayer)
Gets the index of the specified layer
Declaration
int GetIndex(IBaseMapLayer layer)
Parameters
Type | Name | Description |
---|---|---|
IBaseMapLayer | layer |
Returns
Type | Description |
---|---|
System.Int32 |
InsertLayer(Int32, IBaseMapLayer)
Insert the base map layer at the specified index
Declaration
void InsertLayer(int index, IBaseMapLayer layer)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | |
IBaseMapLayer | layer |
MoveDown(IBaseMapLayer)
Moves the specified layer down.
Declaration
int MoveDown(IBaseMapLayer layer)
Parameters
Type | Name | Description |
---|---|---|
IBaseMapLayer | layer | The layer. |
Returns
Type | Description |
---|---|
System.Int32 |
MoveUp(IBaseMapLayer)
Moves the specified layer up.
Declaration
int MoveUp(IBaseMapLayer layer)
Parameters
Type | Name | Description |
---|---|---|
IBaseMapLayer | layer | The layer. |
Returns
Type | Description |
---|---|
System.Int32 |
RemoveBaseMapLayer(IBaseMapLayer)
Removes the base map layer.
Declaration
void RemoveBaseMapLayer(IBaseMapLayer layer)
Parameters
Type | Name | Description |
---|---|---|
IBaseMapLayer | layer | The layer. |