我正在使用 Rubymotion 构建一个 iOS 应用程序。在这个应用程序中,我得到了一个地图视图。我可以很好地显示这个,但我想为注释区域设置一个初始缩放级别,而不是一个完全缩小的视图。我怎样才能做到这一点?
这是我的代码:
map = MKMapView.alloc.initWithFrame(CGRectMake(10, 10, (hash[:width]-20), (hash[:height]-20)))
map.mapType = MKMapTypeStandard
map.delegate = self
map.showsUserLocation = true
map.setCenterCoordinate(location, animated:true)
map.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight