diff --git a/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m b/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m index b7c04ef..8ea1328 100644 --- a/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m +++ b/ios/Classes/FinAppletExt/Common/Util/Map/FATMapViewController.m @@ -90,7 +90,7 @@ static NSString *kUserAnnotationId = @"FATUserAnnotationViewId"; } ///bgView UIView* bgView = [[UIView alloc] initWithFrame:self.view.bounds]; - bgView.backgroundColor = isDark ? UIColor.orangeColor : UIColor.orangeColor; + bgView.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor; [self.view addSubview:bgView]; self.view.backgroundColor = isDark ? UIColor.blackColor : UIColor.whiteColor; @@ -172,6 +172,10 @@ static NSString *kUserAnnotationId = @"FATUserAnnotationViewId"; }); }; [self.view addSubview:self.slideView]; + + UIView* fgView = [[UIView alloc] initWithFrame:self.view.bounds]; + fgView.backgroundColor = UIColor.greenColor; + [self.view addSubview:fgView]; } - (void)locationOnClick {