/// <summary> /// Copies data from another map control view model. /// </summary> public void CopyFrom(MapControlViewModel other) { this.userLocation = other.userLocation; this.busStops = other.busStops; this.mapView = other.mapView; this.shapes = other.shapes; this.selectedBusStop = other.selectedBusStop; }