main.com.doorbit.applemaps.LatLon.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apple-maps-server-kotlin Show documentation
Show all versions of apple-maps-server-kotlin Show documentation
Apple Maps Server Kotlin implements the Apple Maps Web Service API for use in JVMs.
The newest version!
package com.doorbit.applemaps
data class LatLon(val latitude: Double, val longitude: Double) {
fun toQueryString(): String {
return "$latitude,$longitude"
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy