如何确定当前位置是否在KML定义的区域内?

时间:2011-10-18 11:05:39

标签: iphone ios core-location

我有一些KML数据用于定义地图上的区域,例如:

131.0764742247829,-15.80786022929951,0 132.6357700620065,-16.54895727734661,0
134.1119108999971,-17.28040233069844,0 135.8545033459996,-18.1298170074137,0 
137.7396886168202,-19.07860187595016,0 140.011948401144,-20.18462043802856,0 
142.3114600417346,-21.19369381963822,0 144.1566045495202,-22.15731684591415,0

A map with the KML-defined region overlaid on it

我想在我的iOS应用程序中确定用户的当前位置是否在此定义区域内。我怎么能这样做?

1 个答案:

答案 0 :(得分:6)

如果你知道圆的中心和半径,那就很容易了。

CLRegion *circle = [CLRegion initCircularRegionWithCenter:centerCoordinate radius:circleRadius identifier:@"myCircle"];

BOOL doesItContainMyPoint = [circle containsCoordinate:myLocation];

根据修订后的问题进行更新

我从来没有尝试过这个,但你不能用你的点创建一个UIBezierPath(你不必实际绘制bezier路径),然后使用UIBezierPath的- (BOOL)containsPoint:(CGPoint)point来测试包含?