我希望我的应用程序知道用户是否在特定区域内。我一直在学习地理围栏,但我不希望设备不断检查它是否正在进入或离开某个区域,我只是想知道它是否在那个具体时刻就在它上面。另外,我读到地理围栏(似乎)准确度低,而且我需要的不仅仅是蜂窝塔精度
所以我的想法是使用“标准”类型的位置来做到这一点,但我不知道如何给定一个新的当前位置,检查它是否在(圆形,矩形,多边形?)区域内。
它可能必须使用纯数学来检查,检查高度是否在2个参数之间,对经度是否如此?有更简单的方法吗?
谢谢!
答案 0 :(得分:1)
使用CLLocations的distanceFromLocation
答案 1 :(得分:1)
这是我对Jordan Curve定理的Swift代码。只需提供一个CLLocationCoordinate2D
数组,它可以制作正方形,多边形,任何东西。
更深入的答案我翻译了这个: How can I determine whether a 2D Point is within a Polygon?
原创网站:PNPOLY - Point Inclusion in Polygon Test W. Randolph Franklin (WRF)
extension CLLocationCoordinate2D {
func liesInsideRegion(region:[CLLocationCoordinate2D]) -> Bool {
var liesInside = false
var i = 0
var j = region.count-1
while i < region.count {
guard let iCoordinate = region[safe:i] else {break}
guard let jCoordinate = region[safe:j] else {break}
if (iCoordinate.latitude > self.latitude) != (jCoordinate.latitude > self.latitude) {
if self.longitude < (iCoordinate.longitude - jCoordinate.longitude) * (self.latitude - iCoordinate.latitude) / (jCoordinate.latitude-iCoordinate.latitude) + iCoordinate.longitude {
liesInside = !liesInside
}
}
i += 1
j = i+1
}
return liesInside
}
}
修改的
安全数组项
extension MutableCollection {
subscript (safe index: Index) -> Iterator.Element? {
get {
guard startIndex <= index && index < endIndex else { return nil }
return self[index]
}
set(newValue) {
guard startIndex <= index && index < endIndex else { print("Index out of range."); return }
guard let newValue = newValue else { print("Cannot remove out of bounds items"); return }
self[index] = newValue
}
}
}
答案 2 :(得分:0)
如果您使用的是Google Map SDK,并且想检查点是否在多边形内,则可以尝试使用GMSGeometryContainsLocation
。如果多边形不是凸面的,则@Magoo的答案效果很好。但是,如果它是凹面的,那么@Magoo的方法就无济于事。
if GMSGeometryContainsLocation(point, polygon, true) {
print("Inside this polygon.")
} else {
print("outside this polygon")
}