如何在 iPhone 中的地图上添加放大和缩小按钮
我有一张地图,我想在其中添加 2 个按钮,即。放大和缩小。单击第一个按钮时,我的地图应放大,单击第二个按钮时,我的地图应缩小。这怎么可能?
I have a map in which I want to add 2 buttons viz. zoom in and zoom out. On the click of first button my should zoom in and on the click of second button my map should zoom out. How is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
放大:
缩小:
Zoom IN:
zoom Out:
您无法显式设置 MKMapView。相反,您设置一个可见区域
因此,您的两个按钮需要调整 MKCoordinateRegion 类型。增加经度Delta & latitudeDelta 将缩小,减少它们将放大。
You can't explicitly set a zoom level for the MKMapView. Instead you set a visible region
So your two buttons need to adjust the span property of the MKCoordinateRegion type. Increasing the longitudeDelta & latitudeDelta will zoom out, decreasing them will zoom in.