开发者们大家好👋🏻
我正在尝试在 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)
提前感谢所有贡献者。
如果可能或者您找到任何资源,请告诉我。