Example #1
0
        public RouteStopMarker(RouteStopMapViewModel routeStopVM)
        {
            this.ViewModel = routeStopVM;
            this.Location  = routeStopVM.Location;
            this.Icon      = routeStopVM.Icon as UIImage;

            routeStopVM.PropertyChanged += this.OnVMPropertyChanged;
        }
Example #2
0
 public RouteStopMarker(RouteStopMapViewModel routeStopVM)
 {
     this.ViewModel = routeStopVM;
     this.ViewModel.PropertyChanged += this.OnVMPropertyChanged;
 }