Map(position: $position, selection: $selectedResult) { MapPolyline(coordinates: track).stroke(.blue, lineWidth: 5)
}
When the @State track: [CLLocationCoordinates] is growing with new data (new coordinates appended) how can we reach that Map and MapPolyline is automatically refreshed?
Post
Replies
Boosts
Views
Activity
Migrating from localizable.strings to string catalog is simple. After migrating the state of 55% are checked okay, 45% are marked with state "new". Why happens this? Reviewing the new strings and marking as "reviewed" would now mean to change each of the 60 "new" marked rows x 4 languages manually - a lot of work. Is there a way to group change the states of all strings?
String catalog is a great new feature to organize strings in one place. What would you recommend how to handle extracted Strings which need not be translated in different languages
Hello Apple,
adopting new LM I have some questions: what do recommend concerning usage of new .reducedAccuracy and startUpdating .heading?
when will the new method locationManagerDidChangeAuthorization called?
where do you recommend to place init LocationManager?
Ihm looking forward hearing from you
Best regards Helmut
P.S: amazing new features in iOS14. Great!
locationManager = CLLocationManager()
print("initLocationManager 1")
//locationManager!.desiredAccuracy = kCLLocationAccuracyBest
locationManager!.desiredAccuracy = kCLLocationAccuracyBestForNavigation
locationManager!.activityType = .automotiveNavigation
locationManager!.distanceFilter = kCLDistanceFilterNone
print("initLocationManager 2")
locationManager!.delegate = self
print("initLocationManager 3")
locationManager!.requestAlwaysAuthorization()
print("initLocationManager 4")
locationManager!.allowsBackgroundLocationUpdates = true
print("initLocationManager 5")