XYPoint

class XYPoint(x: Float, y: Float) : XYGeometry

Represents a point on the earth's surface. You can construct the point directly with double coordinates.

NOTES:

  1. latitude/longitude values must be in decimal degrees.

  2. For more advanced GeoSpatial indexing and query operations see the spatial-extras module

Constructors

Link copied to clipboard
constructor(x: Float, y: Float)

Properties

Link copied to clipboard
val x: Float

latitude coordinate

Link copied to clipboard
val y: Float

longitude coordinate

Functions

Link copied to clipboard
open operator override fun equals(o: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String