commonMain.earth.worldwind.ogc.gml.GmlPoint.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.gml
import kotlinx.serialization.Serializable
import nl.adaptivity.xmlutil.serialization.XmlSerialName
@Serializable
@XmlSerialName("Point", GML32_NAMESPACE, GML32_PREFIX)
data class GmlPoint(
override val id: String,
override val srsName: String? = null,
override val srsDimension: String? = null,
override val axisLabels: String? = null,
override val uomLabels: String? = null,
@XmlSerialName("pos", GML32_NAMESPACE, GML32_PREFIX)
val pos: GmlDirectPosition
) : GmlAbstractGeometricPrimitive()
© 2015 - 2024 Weber Informatics LLC | Privacy Policy