public Navigation(MapPage map, string name, string guid) { this.map = map; this.name = name; this.guid = guid; geolocator = new Geolocator(); geolocator.DesiredAccuracyInMeters = 0; geolocator.MovementThreshold = 5; // The units are meters. geolocator.StatusChanged += geolocator_StatusChanged; }
public MyAzure(MapPage map) { this.map = map; data = new Task(GetData); }