forked from organicmaps/organicmaps
[iOS] adjust geo tracker params
This commit is contained in:
parent
def70d85d9
commit
96fdef721f
2 changed files with 4 additions and 3 deletions
|
@ -41,7 +41,7 @@ extension GeoTracker: CLLocationManagerDelegate {
|
|||
zones.forEach {
|
||||
locationManager.startMonitoring(
|
||||
for: CLCircularRegion(center: CLLocationCoordinate2DMake($0.latitude, $0.longitude),
|
||||
radius: 20,
|
||||
radius: 100,
|
||||
identifier: $0.identifier))
|
||||
}
|
||||
trackingZones = zones.reduce(into: [:]) { $0[$1.identifier] = $1 }
|
||||
|
|
|
@ -6,13 +6,14 @@ class GeoZoneTracker: NSObject {
|
|||
init(_ zone: IMWMGeoTrackerZone, trackerCore: IMWMGeoTrackerCore) {
|
||||
self.geoZone = zone
|
||||
self.trackerCore = trackerCore
|
||||
locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
|
||||
locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters
|
||||
locationManager.distanceFilter = 10
|
||||
super.init()
|
||||
locationManager.delegate = self
|
||||
}
|
||||
|
||||
deinit {
|
||||
stopTracking()
|
||||
locationManager.delegate = nil
|
||||
}
|
||||
|
||||
|
@ -28,7 +29,7 @@ class GeoZoneTracker: NSObject {
|
|||
extension GeoZoneTracker: CLLocationManagerDelegate {
|
||||
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
|
||||
if let visitedLocation = locations.filter({
|
||||
$0.horizontalAccuracy <= 20 &&
|
||||
$0.horizontalAccuracy <= 30 &&
|
||||
$0.distance(from: CLLocation(latitude: geoZone.latitude, longitude: geoZone.longitude)) <= 20
|
||||
}).first {
|
||||
trackerCore.logEnter(geoZone, location: visitedLocation)
|
||||
|
|
Loading…
Add table
Reference in a new issue