io.jawg.geojson.Point.kt Maven / Gradle / Ivy
package io.jawg.geojson
data class Point(
override val coordinates: PointCoordinates,
override val bbox: BBox? = null
) : Geometry("Point") {
override fun getAllCoordinates(): List = listOf(coordinates)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy