gpt4 book ai didi

ios - RMMapView map 设置区域

转载 作者:行者123 更新时间:2023-11-29 03:27:44 25 4
gpt4 key购买 nike

我必须设置我的离线 map ,该 map 是用tilemill构建的,集中在自定义点上。虽然我没有找到像 MKMapView 的 setRegion 这样的方法来为我完成这项工作。有没有办法将区域设置为 rmmapview map ?

最佳答案

不,像 ios 那样的区域在路线图中不可用。您可以设置约束,以便用户无法滚动出您的 map :

// Constrain our map so the user can only browse through our exported map tiles
[self.mapView setConstraintsSW:CLLocationCoordinate2DMake(self.mapSrc.bottomRightOfCoverage.latitude, self.mapSrc.topLeftOfCoverage.longitude)
NE:CLLocationCoordinate2DMake(self.mapSrc.topLeftOfCoverage.latitude, self.mapSrc.bottomRightOfCoverage.longitude)];

当然还有滚动到特定位置:

[self.mapView moveToLatLong:self.currentPosition.coordinate];

关于ios - RMMapView map 设置区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20240194/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com