答案 0 :(得分:1)
完成地球或地图设置后,您可以使用– animateToPosition:time:
。我建议在设置地球仪之前执行此方法之前有延迟。
例如,在Objective-C中:
// Your code to setup WhirlyGlobeViewController...
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.000001 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
MaplyCoordinate coords = MaplyCoordinateMakeWithDegrees(0, 0);
[self.globe animateToPosition:coords height:2.0 heading:0 time:1];
});