GeoJsonMultiPoint.Add method

Version 1.0.0-beta002
.NET Framework 4.7
Namespace Skybrud.Essentials.Maps.GeoJson.Geometry
Assembly Skybrud.Essentials.Maps.dll

Add(double, double)

Adds a new point with the specified x and y coordinates.

public Void Add(double x, double y)

Parameters

x Double

The coordinate across the X axis.

y Double

The coordinate across the Y axis.

Returns

Add(Double[])

Adds the specified point.

public Void Add(Double[] point)

Parameters

point Array of Double

The point to be added. The array must have a minimum length of two describing both the x and y coordinates of the point, and may optionally specify the altitude as a third item in the array.

Returns

Add(IPoint)

Adds the specified point.

public Void Add(IPoint point)

Parameters

point IPoint

The point to be added. Notice that Skybrud.Essentials.Maps.Geometry.IPoint.Latitude equals to y coordinate and Skybrud.Essentials.Maps.Geometry.IPoint.Longitude equals to x coordinate.

Returns