I'm adding Look Around into my app, but settings isNavigationEnabled to true or false does nothing. This bool is set to true by default, and my understanding is that it will enable the user to navigate around the location. I tried setting it to false and that didn't change the experience as the user was able to rotate the camera 360 degrees, but not move around freely in the area.
Is this by design or am I missing something?
Note: I'm on the latest Xcode 14 beta (beta 6).
Here is my basic implementation:
let lookAroundRequest = MKLookAroundSceneRequest(coordinate: location.coordinate!)
lookAroundRequest.getSceneWithCompletionHandler { lookAroundScene, error in
guard error == nil, lookAroundScene != nil else { return }
let lookAroundVC = MKLookAroundViewController(scene: lookAroundScene!)
lookAroundVC.pointOfInterestFilter = .includingAll
self.present(lookAroundVC)
}