[iOS] adjust geo tracker params

This commit is contained in:
Aleksey Belouosv 2019-02-05 16:56:59 +03:00 committed by Aleksey Belousov
parent def70d85d9
commit 96fdef721f
2 changed files with 4 additions and 3 deletions

View file

@ -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 }

View file

@ -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)