summaryrefslogtreecommitdiff
path: root/platform/ios/app/MBXTestViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/app/MBXTestViewController.m')
-rw-r--r--platform/ios/app/MBXTestViewController.m7
1 files changed, 3 insertions, 4 deletions
diff --git a/platform/ios/app/MBXTestViewController.m b/platform/ios/app/MBXTestViewController.m
index f12da8d369..3f0496d196 100644
--- a/platform/ios/app/MBXTestViewController.m
+++ b/platform/ios/app/MBXTestViewController.m
@@ -69,10 +69,9 @@
point.title = [NSString stringWithFormat:@"%.f, %.f", coordinate.latitude, coordinate.longitude];
[pointAnnotations addObject:point];
}
-
[self.mapView addAnnotations:pointAnnotations];
- [_timer invalidate];
- _timer = [NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(updateCenter) userInfo:nil repeats:YES];
+// [_timer invalidate];
+// _timer = [NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(updateCenter) userInfo:nil repeats:YES];
}
- (void)updateCenter {
@@ -103,7 +102,7 @@
CGFloat hue = (CGFloat)annotation.coordinate.longitude / 100;
annotationView.backgroundColor = [UIColor colorWithHue:hue saturation:0.5 brightness:1 alpha:1];
}
-
+ [annotationView setHidden:YES];
return annotationView;
}