LookAroundPreview navigation not working on macOS

The code below using LookAroundPreview works fine on iOS (showing the preview image with a button saying "Look Around" at the top to enter full screen with navigation), but on macOS (15.3) there is no button and no way to navigate the view. Is this a bug or is there something I need to do differently on macOS? I have also tried using AppKit with MKLookAroundViewController and I don't seem get the button to launch full screen there either.

import SwiftUI
import MapKit

struct ContentView: View {
    var body: some View {
        LookAroundPreviewView(coordinate: CLLocationCoordinate2D(latitude: 37.33182, longitude: -122.03118))
            .frame(width: 300, height: 200)
    }
}

struct LookAroundPreviewView: View {
    let coordinate: CLLocationCoordinate2D
    @State private var scene: MKLookAroundScene?
    @State private var errorMessage: String?
    
    var body: some View {
        Group {
            if scene != nil {
                LookAroundPreview(scene: $scene, allowsNavigation: true)
            } else if let errorMessage = errorMessage {
                Text("Error: \(errorMessage)")
                    .foregroundColor(.red)
            } else {
                ProgressView("Loading Look Around Preview...")
            }
        }
        .task {
            do {
                let request = MKLookAroundSceneRequest(coordinate: coordinate)
                let fetchedScene = try await request.scene
                scene = fetchedScene
            } catch {
                errorMessage = error.localizedDescription
                print("Error loading Look Around scene: \(error)")
            }
        }
    }
}

Thanks for the small bit of code here to demonstrate what you're seeing. This is something that needs to be looked at as a bug report. Can you open a report, detail what you're seeing, and include a buildable Xcode project for demonstration? Once you open the bug report, please post the FB number here for my reference.

If you have any questions about filing a bug report, take a look at Bug Reporting: How and Why?

— Ed Ford,  DTS Engineer

LookAroundPreview navigation not working on macOS
 
 
Q