s
val geolocation: Geolocation = js("navigator.geolocation") as Geolocation
external class Geolocation {
fun getCurrentPosition(successCallback: (GeolocationPosition) -> Unit,
errorCallback: ((Any) -> Unit)? = definedExternally,
options: Any? = definedExternally);
}

