Blame view
src/main/kotlin/map/ScaleControlConfig.kt
331 Bytes
53f01ecc3 display message o... |
1 |
package map |
d06a68ec6 add Leaflet Kotli... |
2 3 4 5 6 7 8 |
/** * Class for defining the scale control of the map. The scale can show either metric or imperial units. * @author Stefan Saring */ class ScaleControlConfig @JvmOverloads constructor( |
53f01ecc3 display message o... |
9 10 11 12 |
val show: Boolean = false, val position: ControlPosition = ControlPosition.BOTTOM_LEFT, val metric: Boolean = true ) |