Continent

@Serializable
data class Continent(val name: String, val continentDims: List<Int>, val minZoom: Int, val maxZoom: Int, val floors: List<GW2FloorId>)

Information about a continent.

Parameters

name

the continent's localized name

continentDims

the width and height of the continent

minZoom

the minimal zoom level for use with the map tile service

maxZoom

the maximum zoom level for use with the map tile service

floors

the IDs of the continent's floors

Constructors

Link copied to clipboard
constructor(name: String, continentDims: List<Int>, minZoom: Int, maxZoom: Int, floors: List<GW2FloorId>)

Properties

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

This field holds the width and height of the continent.

Link copied to clipboard

This field holds the IDs of the continent's floors.

Link copied to clipboard
@SerialName(value = "max_zoom")
val maxZoom: Int

This field holds the maximum zoom level for use with the map tile service.

Link copied to clipboard
@SerialName(value = "min_zoom")
val minZoom: Int

This field holds the minimal zoom level for use with the map tile service.

Link copied to clipboard

This field holds the continent's localized name.