Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class FeatureCollection(val features: List<Feature> = emptyList(), val bbox: BoundingBox? = null) : Collection<Feature> , GeoJson
A FeatureCollection object is a collection of Feature objects. This class implements the Collection interface and can be used as a Collection directly. The list of features contained in this collection are also accessible through the features property.
Link copied to clipboard
interface GeoJson
A GeoJSON object represents a Geometry, Feature, or collection of Features.
Link copied to clipboard
Link copied to clipboard
class GeometryCollection @JvmOverloads constructor(val geometries: List<Geometry>, val bbox: BoundingBox? = null) : Geometry, Collection<Geometry>
Link copied to clipboard
class LineString @JvmOverloads constructor(val coordinates: List<Position>, val bbox: BoundingBox? = null) : Geometry
Link copied to clipboard
class MultiLineString @JvmOverloads constructor(val coordinates: List<List<Position>>, val bbox: BoundingBox? = null) : Geometry
Link copied to clipboard
class MultiPoint @JvmOverloads constructor(val coordinates: List<Position>, val bbox: BoundingBox? = null) : Geometry
Link copied to clipboard
class MultiPolygon @JvmOverloads constructor(val coordinates: List<List<List<Position>>>, val bbox: BoundingBox? = null) : Geometry
Link copied to clipboard
class Point @JvmOverloads constructor(val coordinates: Position, val bbox: BoundingBox? = null) : Geometry
Link copied to clipboard
class Polygon @JvmOverloads constructor(val coordinates: List<List<Position>>, val bbox: BoundingBox? = null) : Geometry
Link copied to clipboard
A position is the fundamental geometry construct. Positions are represented by Positions in Spatial K