All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.doorbit.applemaps.LatLon.kt Maven / Gradle / Ivy

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