GW2v1MapFloor

@Serializable
data class GW2v1MapFloor(val textureDims: List<Int>, val clampedView: List<List<Int>>? = null, val regions: Map<GW2RegionId, GW2v1MapFloor.Region>)

Information about a map floor.

Parameters

textureDims

the width and height of the texture

clampedView

a rectangle of downloadable textures (Every tile coordinate outside this rectangle is not available on the tile server.)

regions

the floor's regions

Constructors

Link copied to clipboard
constructor(textureDims: List<Int>, clampedView: List<List<Int>>? = null, regions: Map<GW2RegionId, GW2v1MapFloor.Region>)

Types

Link copied to clipboard
@Serializable
data class Region(val name: String, val labelCoord: List<Double>, val continentRect: List<List<Int>>, val maps: Map<GW2MapId, GW2v1MapFloor.Region.GameMap>)

Information about a region.

Properties

Link copied to clipboard
@SerialName(value = "clamped_view")
val clampedView: List<List<Int>>? = null

This field holds a rectangle of downloadable textures (Every tile coordinate outside this rectangle is not available on the tile server.).

Link copied to clipboard

This field holds the floor's regions.

Link copied to clipboard
@SerialName(value = "texture_dims")
val textureDims: List<Int>

This field holds the width and height of the texture.