Blame view
src/main/kotlin/map/ControlPosition.kt
289 Bytes
d06a68ec6 add Leaflet Kotli... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
package fdit.leafletmap /** * Enumeration for all possible map control positions. * * @author Stefan Saring */ enum class ControlPosition(val positionName: String) { TOP_LEFT("topleft"), TOP_RIGHT("topright"), BOTTOM_LEFT("bottomleft"), BOTTOM_RIGHT("bottomright") } |