新的foursquare会场详细地图

时间:2012-06-11 11:38:20

标签: ios xcode uiscrollview mkmapview foursquare

我非常喜欢foursquare设计场地细节视图的方式。特别是地图位置在“标题”的视图中......它是如何完成的?细节显然是一些uiscrollview(也许是uitableview?)并且在它后面(在标题中)有一张地图所以当你向上滚动地图时,随着滚动视图反弹而被发现...有没有人知道如何做到这一点?

enter image description here

3 个答案:

答案 0 :(得分:32)

这是我设法重现它的方式: -

您需要UIViewController作为其视图UIScrollView。然后,您添加到滚动视图的UIView内容应如下所示: -

enter image description here - MKMapView的框架具有负y位置。在这种情况下,我们只能看到默认状态下的100个地图(在拖动之前) - 您需要在MKMapView实例上禁用缩放和滚动。

然后,诀窍是在向下拖动时向下移动centerCoordinate MKMapView,并调整其中心位置。

为此,我们计算1点作为delta纬度表示多少,以便我们知道在屏幕上拖动x点时应该移动地图的中心坐标: -

- (void)viewDidLoad {
    [super viewDidLoad];
    UIScrollView* scrollView = (UIScrollView*)self.view;
    [scrollView addSubview:contentView];
    scrollView.contentSize = contentView.frame.size;
    scrollView.delegate = self;
    center = CLLocationCoordinate2DMake(43.6010, 7.0774);
    mapView.region = MKCoordinateRegionMakeWithDistance(center, 1000, 1000);
    mapView.centerCoordinate = center;
    //We compute how much latitude represent 1point.
    //so that we know how much the center coordinate of the map should be moved 
    //when being dragged.
    CLLocationCoordinate2D referencePosition = [mapView convertPoint:CGPointMake(0, 0) toCoordinateFromView:mapView];
    CLLocationCoordinate2D referencePosition2 = [mapView convertPoint:CGPointMake(0, 100) toCoordinateFromView:mapView];
    deltaLatFor1px = (referencePosition2.latitude - referencePosition.latitude)/100;
}

初始化这些属性后,我们需要实现UIScrollViewDelegate的行为。当我们拖动时,我们将以点表示的移动转换为纬度。然后,我们使用此值的一半来移动地图的中心。

- (void)scrollViewDidScroll:(UIScrollView *)theScrollView {
    CGFloat y = theScrollView.contentOffset.y;
    // did we drag ?
    if (y<0) {
        //we moved y pixels down, how much latitude is that ?
        double deltaLat = y*deltaLatFor1px;
        //Move the center coordinate accordingly 
        CLLocationCoordinate2D newCenter = CLLocationCoordinate2DMake(center.latitude-deltaLat/2, center.longitude);
        mapView.centerCoordinate = newCenter;
    }
}

你得到的结果与foursquare应用程序相同(但更好:在foursquare应用程序中,地图重新定位往往会跳跃,在这里,改变中心顺利完成)。

答案 1 :(得分:2)

上面的例子很好。如果您需要更多帮助,我认为他们使用的东西与RBParallaxTableViewController非常相似。 https://github.com/Rheeseyb/RBParallaxTableViewController

它与路径照片使用的效果基本相同。

答案 2 :(得分:0)

Yonel的答案很好,但我发现了一个问题,因为我在地图中心有一个别针。因为负Y,该点隐藏在我的UINavigationBar下。

然后,我没有设置负Y,我根据滚动偏移更正了mapView.frame。

我的mapView是320 x 160

_mapView.frame = CGRectMake(0, 160, 320, -160+y);

希望这有助于某人。