io.jawg.geojson.Geometry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geojson-jackson Show documentation
Show all versions of geojson-jackson Show documentation
(De)Serialization of GeoJSON with Jackson for Kotlin
package io.jawg.geojson
import com.fasterxml.jackson.annotation.JsonIgnore
abstract class Geometry(type: String) : GeoJsonObject(type) {
abstract val coordinates: T?
abstract val bbox: BBox?
@JsonIgnore
internal abstract fun getAllCoordinates(): List
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy