All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.jawg.geojson.Geometry.kt Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
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