commonMain.earth.worldwind.ogc.wms.WmsRequestOperation.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.wms
import kotlinx.serialization.Serializable
import nl.adaptivity.xmlutil.serialization.XmlSerialName
@Serializable
data class WmsRequestOperation(
@XmlSerialName("Format", WMS_NAMESPACE, WMS_PREFIX)
val formats: List = emptyList(),
val dcpType: WmsDcpType
) {
val getUrl get() = dcpType.getHref
val postUrl get() = dcpType.postHref
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy