internal void OnLocationChanged(LocationChangedEventArgs e)
 {
     var handler = eventHandler;
     if (handler != null)
     {
         handler(this, e);
     }
 }
 protected void OnLocationChanged(object sender, LocationChangedEventArgs e)
 {
     this.CurrentLocation = e.Locations[0].Coordinate;
     this.FireEventsForLocationChanged();
 }
예제 #3
0
 protected void OnLocationChanged(object sender, LocationChangedEventArgs e)
 {
     this.CurrentLocation = e.Locations[0].Coordinate;
     this.FireEventsForLocationChanged();
 }