Applicable.Location.WinRtLocationService.WinRtLocationService C# (CSharp) Method

WinRtLocationService() public method

public WinRtLocationService ( ) : System
return System
        public WinRtLocationService()
        {
            // Report position every 10 sec and with 10 m threshold
            _geolocator = new Geolocator { MovementThreshold = 10, ReportInterval = 10000 };
            _geolocator.PositionChanged += PositionChanged;
        }