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

commonMain.earth.worldwind.layer.WebImageLayer.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.

There is a newer version: 1.6.2
Show newest version
package earth.worldwind.layer

interface WebImageLayer : Layer {
    /**
     * Type of the service
     */
    val serviceType: String
    /**
     * The service address
     */
    val serviceAddress: String
    /**
     * Descriptive information about service capabilities
     */
    val serviceMetadata: String? get() = null
    /**
     * The technical name of the desired layer
     */
    val layerName: String? get() = null
    /**
     * Expected output image format
     */
    val imageFormat: String
    /**
     * Is layer a transparent overlay
     */
    val isTransparent: Boolean
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy