Blame view
src/main/kotlin/map/LatLong.kt
167 Bytes
53f01ecc3 display message o... |
1 |
package map |
d06a68ec6 add Leaflet Kotli... |
2 3 4 5 6 7 8 |
/** * Immutable value class for defining a geo position. * * @author Stefan Saring */ data class LatLong(val latitude: Double, val longitude: Double) |