Instrument your app / GPS location |
Use WinRT's geoposition ability to enable GPS location.
Geolocator geoLocator = new Geolocator(); geoLocator.DesiredAccuracyInMeters = 100; geoLocator.ReportInterval = 0; Geoposition location = geoLocator.GetGeopositionAsync().AsTask().Result; Localytics.SetLocation(location);