commonMain.earth.worldwind.ogc.gml.GmlAbstractGeometry.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.
package earth.worldwind.ogc.gml
import kotlinx.serialization.Serializable
@Serializable
abstract class GmlAbstractGeometry: GmlAbstractGml() {
abstract val srsName: String?
abstract val srsDimension: String?
protected abstract val axisLabels: String?
protected abstract val uomLabels: String?
val axisLabelsList get() = axisLabels?.split(" ") ?: emptyList()
val uomLabelsList get() = uomLabels?.split(" ") ?: emptyList()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy