Files
wince/src/modules/api/location.cr

11 lines
252 B
Crystal

module Wince::Location
extend self
@@client = Geoclue::Simple.new_sync("space.quietfeathers.Wince", Geoclue::AccuracyLevel::Street, nil)
def find_location()
location = @@client.location
[location.latitude, location.longitude]
end
end