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

commonMain.earth.worldwind.ogc.wms.WmsContactAddress.kt Maven / Gradle / Ivy

Go to download

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.XmlElement
import nl.adaptivity.xmlutil.serialization.XmlSerialName

@Serializable
@XmlSerialName("ContactAddress", WMS_NAMESPACE, WMS_PREFIX)
data class WmsContactAddress(
    @XmlElement(true)
    @XmlSerialName("AddressType", WMS_NAMESPACE, WMS_PREFIX)
    val addressType: String,
    @XmlElement(true)
    @XmlSerialName("Address", WMS_NAMESPACE, WMS_PREFIX)
    val address: String,
    @XmlElement(true)
    @XmlSerialName("City", WMS_NAMESPACE, WMS_PREFIX)
    val city: String,
    @XmlElement(true)
    @XmlSerialName("StateOrProvince", WMS_NAMESPACE, WMS_PREFIX)
    val stateOrProvince: String,
    @XmlElement(true)
    @XmlSerialName("PostCode", WMS_NAMESPACE, WMS_PREFIX)
    val postCode: String,
    @XmlElement(true)
    @XmlSerialName("Country", WMS_NAMESPACE, WMS_PREFIX)
    val country: String
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy