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

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

There is a newer version: 1.2.3
Show newest version
package io.jawg.geojson

data class MultiPolygon(
    override val coordinates: List,
    override val bbox: BBox? = null
) : Geometry>("MultiPolygon") {

  init {
    coordinates.forEach { PolygonValidator.validate(it) }
  }

  override fun getAllCoordinates(): List = coordinates.flatMap { it.flatten() }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy