GoogleMaps3D Framework Reference

Map

@MainActor
@preconcurrency
struct Map
extension Map : MapAnimatable, Sendable, View
  • The type of view representing the body of this view.

    When you create a custom view, Swift infers this type from your implementation of the required View/body-swift.property property.

    Declaration

    Swift

    @available(watchOS, introduced: 6.0)
    @available(macOS, introduced: 10.15)
    @available(iOS, introduced: 13.0)
    @available(tvOS, introduced: 13.0)
    typealias Body = some View
  • The API key to use for the Google Maps SDK.

    This is required to use the Google Maps SDK.

    Declaration

    Swift

    @MainActor
    @preconcurrency
    static var apiKey: String { get set }
  • The content and behavior of the view.

    When you implement a custom view, you must implement a computed body property to provide the content for your view. Return a view that’s composed of built-in views that SwiftUI provides, plus other composite views that you’ve already defined:

    struct MyView: View {
        var body: some View {
            Text("Hello, World!")
        }
    }
    

    For more information about composing views and a view hierarchy, see doc:Declaring-a-Custom-View.

    Declaration

    Swift

    @MainActor
    @preconcurrency
    var body: some View { get }
  • Declaration

    Swift

    @MainActor
    @preconcurrency
    var coordinator: RenderingCoordinator
  • Initializes the map view with the specified camera, mode, and content.

    This method configures the map’s initial viewpoint, rendering style, and displayed content.

    Declaration

    Swift

    @MainActor
    @preconcurrency
    init(camera: Binding<Camera>, mode: MapMode, @MapContentBuilder content: () -> any MapContent = { MapContentArray.empty })

    Parameters

    camera

    The camera position and orientation binding, defining the map’s viewport.

    mode

    The desired map mode (e.g., .hybrid, .satellite).

    content

    The content to be displayed on the map. This parameter is optional;

  • Initializes the map view with the specified camera, mode, and content.

    This method configures the map’s initial viewpoint and rendering style.

    Declaration

    Swift

    @MainActor
    @preconcurrency
    init(initialCamera: Camera = .init(latitude: 0, longitude: 0, altitude: 63_170_000), mode: MapMode, @MapContentBuilder content: () -> any MapContent = { MapContentArray.empty })

    Parameters

    initialCamera

    The initial camera position and orientation, defining the map’s viewport. Defaults to a global view at {latitude: 0, longitude: 0, altitude: 63,170,000 meters}.

    mode

    The desired map mode (e.g., .hybrid, .satellite).

    content

    The content to be displayed on the map. This parameter is optional;