commonMain.earth.worldwind.ogc.wmts.WmtsTileMatrixLimits.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind-jvm Show documentation
Show all versions of worldwind-jvm Show documentation
The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.
The newest version!
package earth.worldwind.ogc.wmts
import kotlinx.serialization.Serializable
import nl.adaptivity.xmlutil.serialization.XmlElement
import nl.adaptivity.xmlutil.serialization.XmlSerialName
@Serializable
@XmlSerialName("TileMatrixLimits", WMTS10_NAMESPACE, WMTS10_PREFIX)
data class WmtsTileMatrixLimits(
@XmlElement(true)
@XmlSerialName("TileMatrix", WMTS10_NAMESPACE, WMTS10_PREFIX)
val tileMatrixIdentifier: String,
@XmlElement(true)
@XmlSerialName("MinTileRow", WMTS10_NAMESPACE, WMTS10_PREFIX)
val minTileRow: Int,
@XmlElement(true)
@XmlSerialName("MaxTileRow", WMTS10_NAMESPACE, WMTS10_PREFIX)
val maxTileRow: Int,
@XmlElement(true)
@XmlSerialName("MinTileCol", WMTS10_NAMESPACE, WMTS10_PREFIX)
val minTileCol: Int,
@XmlElement(true)
@XmlSerialName("MaxTileCol", WMTS10_NAMESPACE, WMTS10_PREFIX)
val maxTileCol: Int
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy