作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下函数zoomWithLatitudeLongitudeBoundsSouthWest
缩放至英国范围。我有以下latlongs:
SouthWest = (latitude = 49.724355000000003, longitude = -8.7919210000000003)
NorthEast = (latitude = 59.556961999999999, longitude = 2.102922)
[rmMapView zoomWithLatitudeLongitudeBoundsSouthWest:self.southWest northEast:self.northEast animated:YES];
origin: (185130.482481, 6398696.510918) size: (48919.698096, 66653.088655)
[rmMapView setConstraintsSouthWest:self.southWest northEast:self.northEast];
最佳答案
也许这还不算太晚,但是这个问题使我失去了一整天的工作。您可能正在64位设备上进行测试。在32位设备上尝试您的代码,它可能应该可以正常工作。
Mapbox的问题是将缩放集中在64位设备上(缩放级别确定,但 map 偏移不正确)。
在设置缩放比例后,我通过设置 map 的新中心来解决此问题。
尝试添加以下行:
[rmMapView setCenterCoordinate:CLLocationCoordinate2DMake(lat,lng)];
just after zoomWithLatitudeLongitudeBoundsSouthWest
where lat = (latMin + latMax)/2 and lng = (lngMin + lngMax)/2)
关于ios - Mapbox-zoomWithLatitudeLongitudeBoundsSouthWest无法缩放到正确的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23396922/
我是一名优秀的程序员,十分优秀!