Interface IGeometryCollection
Interface for a GeometryCollection. A GeometryCollection is a collection of 1 or more geometries.
Inherited Members
Namespace: Mapsui.Geometries
Assembly: Mapsui.Geometries.dll
Syntax
public interface IGeometryCollection : IGeometry
Properties
| Improve this Doc View SourceNumGeometries
Returns the number of geometries in the collection.
Declaration
int NumGeometries { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceGeometry(Int32)
Returns an indexed geometry in the collection
Declaration
Geometry Geometry(int n)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | n | Geometry index |
Returns
Type | Description |
---|---|
Geometry | Geometry at index N |