C# Класс Mapsui.Geometries.MultiPoint

A MultiPoint is a 0 dimensional geometric collection. The elements of a MultiPoint are restricted to Points. The points are not connected or ordered.
Наследование: GeometryCollection
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Clone ( ) : MultiPoint

Return a copy of this geometry

Distance ( System.Point point ) : double

Returns the shortest distance between any two points in the two geometries as calculated in the spatial reference system of this Geometry.

Geometry ( int n ) : System.Point

Returns an indexed geometry in the collection

GetBoundingBox ( ) : BoundingBox

The minimum bounding box for this Geometry.

GetEnumerator ( ) : IEnumerator

Gets an enumerator for enumerating the geometries in the GeometryCollection

IsEmpty ( ) : bool

If true, then this Geometry represents the empty point set, Ø, for the coordinate space.

MultiPoint ( ) : System

Initializes a new MultiPoint collection

MultiPoint ( IEnumerable points ) : System

Initializes a new MultiPoint collection

this ( int n ) : System.Point

Gets the n'th point in the MultiPoint collection

Описание методов

Clone() публичный Метод

Return a copy of this geometry
public Clone ( ) : MultiPoint
Результат MultiPoint

Distance() публичный Метод

Returns the shortest distance between any two points in the two geometries as calculated in the spatial reference system of this Geometry.
public Distance ( System.Point point ) : double
point System.Point Geometry to calculate distance to
Результат double

Geometry() публичный Метод

Returns an indexed geometry in the collection
public Geometry ( int n ) : System.Point
n int Geometry index
Результат System.Point

GetBoundingBox() публичный Метод

The minimum bounding box for this Geometry.
public GetBoundingBox ( ) : BoundingBox
Результат BoundingBox

GetEnumerator() публичный Метод

Gets an enumerator for enumerating the geometries in the GeometryCollection
public GetEnumerator ( ) : IEnumerator
Результат IEnumerator

IsEmpty() публичный Метод

If true, then this Geometry represents the empty point set, Ø, for the coordinate space.
public IsEmpty ( ) : bool
Результат bool

MultiPoint() публичный Метод

Initializes a new MultiPoint collection
public MultiPoint ( ) : System
Результат System

MultiPoint() публичный Метод

Initializes a new MultiPoint collection
public MultiPoint ( IEnumerable points ) : System
points IEnumerable
Результат System

this() публичный Метод

Gets the n'th point in the MultiPoint collection
public this ( int n ) : System.Point
n int Index in collection
Результат System.Point