layout: default title: Point parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Geometries

Point Class

A location defined by X, Y, and Z coordinates.
ArcGIS Maps SDK for JavaScript

public class Point : dymaptic.GeoBlazor.Core.Components.Geometries.Geometry

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 Geometry 🡒 Point

Constructors

Point() Constructor

Parameterless constructor for use as a razor component

public Point();

Point(Nullable, Nullable, Nullable, Nullable, Nullable, SpatialReference, Extent) Constructor

Creates a new Point programmatically with parameters

public Point(System.Nullable<double> longitude=null, System.Nullable<double> latitude=null, System.Nullable<double> x=null, System.Nullable<double> y=null, System.Nullable<double> z=null, dymaptic.GeoBlazor.Core.Components.Geometries.SpatialReference? spatialReference=null, dymaptic.GeoBlazor.Core.Components.Geometries.Extent? extent=null);

Parameters

longitude System.Nullable<System.Double>

The longitude of the point.

latitude System.Nullable<System.Double>

The latitude of the point.

x System.Nullable<System.Double>

The x-coordinate (easting) of the point in map units.

y System.Nullable<System.Double>

The y-coordinate (northing) of the point in map units.

z System.Nullable<System.Double>

The z-coordinate (or elevation) of the point in map units.

spatialReference SpatialReference

The SpatialReference of the geometry.

extent Extent

The Extent of the geometry.

Properties

Point.Latitude Property

The latitude of the point.

public System.Nullable<double> Latitude { get; set; }

Property Value

System.Nullable<System.Double>

Point.Longitude Property

The longitude of the point.

public System.Nullable<double> Longitude { get; set; }

Property Value

System.Nullable<System.Double>

Point.M Property

The m-coordinate of the point in map units.

public System.Nullable<double> M { get; set; }

Property Value

System.Nullable<System.Double>

Point.Type Property

The Geometry “type”, used internally to render.

public override string Type { get; }

Property Value

System.String

Point.X Property

The x-coordinate (easting) of the point in map units.

public System.Nullable<double> X { get; set; }

Property Value

System.Nullable<System.Double>

Point.Y Property

The y-coordinate (northing) of the point in map units.

public System.Nullable<double> Y { get; set; }

Property Value

System.Nullable<System.Double>

Point.Z Property

The z-coordinate (or elevation) of the point in map units.

public System.Nullable<double> Z { get; set; }

Property Value

System.Nullable<System.Double>

Methods

Point.Clone() Method

Returns a deep clone of the geometry.

public dymaptic.GeoBlazor.Core.Components.Geometries.Point Clone();

Returns

Point