|
|
@@ -154,7 +154,13 @@ typedef enum {
|
|
|
[current setObject:@"Current" forKey:@"port"];
|
|
|
[self handleLoaction:current Priority:AMShipAnnotationPriorityRequired ImageName:@"ic_marker"];
|
|
|
}
|
|
|
- [self moveToLocation:current];
|
|
|
+ if (current && self.showCurrent) {
|
|
|
+ [self moveToLocation:current];
|
|
|
+ } else if (pol && self.showPol) {
|
|
|
+ [self moveToLocation:pol];
|
|
|
+ } else if (pod && self.showPod) {
|
|
|
+ [self moveToLocation:pod];
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|