Blame view

src/main/kotlin/map/LatLong.kt 179 Bytes
d06a68ec6   lsagona   add Leaflet Kotli...
1
2
3
4
5
6
7
8
  package fdit.leafletmap
  
  /**
   * Immutable value class for defining a geo position.
   *
   * @author Stefan Saring
   */
  data class LatLong(val latitude: Double, val longitude: Double)