在 iOS 中实现 Google 地图实时摄像头视图

问题描述 投票:0回答:1

开发者们大家好👋🏻

我正在尝试在 iOS 中实现 Google 地图实时相机视图,如下图所示:

另外,看看 Google 地图 所呈现的内容这里

注:

  • 我有 Google 地图密钥。

  • 我正在真机iPhone上运行应用程序。

  • 使用 Xcode 14.3。

  • 已安装pod“GoogleMaps”

  • 我在印度。 (不确定此功能是否可用)

是否有任何属性或类可用于启用实时相机模式或不可用?

我在这里实现了法线贴图:

let camera = GMSCameraPosition(
  latitude: -33.8683,
  longitude: 151.2086,
  zoom: 160
  
)
self.mapView = GMSMapView.map(withFrame: self.streetView.bounds, camera: camera)
self.mapView.mapType = .satellite
self.mapView.isMyLocationEnabled = true
self.mapView.settings.myLocationButton = true
self.locationManager.delegate = self
self.locationManager.requestWhenInUseAuthorization()
self.locationManager.startUpdatingLocation()
self.streetView.addSubview(self.mapView)

提前感谢所有贡献者。

ios swift google-maps google-maps-sdk-ios
1个回答
0
投票

如果可能或者您找到任何资源,请告诉我。

© www.soinside.com 2019 - 2024. All rights reserved.