My app starts up at the user's location, however, every time the user moves the map's camera updates to their location. I want it to load to their location, but then allow them to freely browse the map even if their location is moving. Similar to the behavior exhibited in the Google Maps app. I'm using a KVO to gather the location within the viewDidLoad()
function. That line looks like this:
mapView.isMyLocationEnabled = true
self.mapView.addObserver(self, forKeyPath: "myLocation", options: NSKeyValueObservingOptions.new, context: nil)
Here's my code of the observe function:
override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
guard let update = change, let myLocation = update[NSKeyValueChangeKey.newKey] as? CLLocation else {
print("Location not found")
return
}
self.mapView.camera = GMSCameraPosition.camera(withTarget: myLocation.coordinate, zoom: 14)
}
What needs to change to make it meet the criteria mentioned above.
With help from Sunil's answer above, I figured out how to solve this problem.
Sunil notes that the app calls
observeValue()
every time the user's location is updated. So based off of the code I had inobserveValue()
this would make sense that themapView
camera would update every time the user's location updates.I solved the problem by moving
to another function like
viewDidAppear()
.Some may ask why I didn't move it to
viewDidLoad()
as that is called beforeviewDidAppear()
. The app doesn't fetch the user's location until the end ofviewDidLoad()
. So putting the camera declaration at the end of theviewDidLoad()
doesn't give the app enough time to fetch the users location. By declaring the camera position in theviewDidAppear()
function, we give the app ample time to process the user's location and fetch it.Note: Make sure to pass your location variable out of the
observeValue()
function for use inviewDidAppear()
.