美文网首页
ios MKMapView 添加遮盖层

ios MKMapView 添加遮盖层

作者: Godgilla | 来源:发表于2017-05-19 19:10 被阅读57次

    项目中涉及到运动轨迹,不希望别人看到自己的运动轨迹时可以隐藏地图的底图。

    使用MKPolygon可以在MKMapView上添加遮盖层,尝试添加一个覆盖全世界的polygon失败,猜想可能是因为东经180度和西经180度在地球上是同一条线所以添加失败,因此使用两个polygon来覆盖全球。

    funccreatePolygon1() ->MKPolygon{

    // render whole map view for map hidden

    letpoint1 =CLLocationCoordinate2D(latitude:-90, longitude:0)

    letpoint2 =CLLocationCoordinate2D(latitude:-90, longitude:180)

    letpoint3 =CLLocationCoordinate2D(latitude:90, longitude:180)

    letpoint4 =CLLocationCoordinate2D(latitude:90, longitude:0)

    letpoints = [point1, point2, point3, point4]

    returnMKPolygon(coordinates: points, count: points.count)

    }

    funccreatePolygon2() ->MKPolygon{

    // render whole map view for map hidden

    letpoint1 =CLLocationCoordinate2D(latitude:-90, longitude:-180)

    letpoint2 =CLLocationCoordinate2D(latitude:-90, longitude:0)

    letpoint3 =CLLocationCoordinate2D(latitude:90, longitude:0)

    letpoint4 =CLLocationCoordinate2D(latitude:90, longitude:-180)

    letpoints = [point1, point2, point3, point4]

    returnMKPolygon(coordinates: points, count: points.count)

    }

    相关文章

      网友评论

          本文标题:ios MKMapView 添加遮盖层

          本文链接:https://www.haomeiwen.com/subject/nmzyxxtx.html