gpt4 book ai didi

ios - 最近可用的街景 Google Maps SDK iOS

转载 作者:行者123 更新时间:2023-11-29 01:28:17 24 4
gpt4 key购买 nike

我需要获取随机街景,但生成随机纬度和经度并不是一个好方法。

是否有任何有效的方法来生成随机街景或检查生成的街景是否可用,如果不可用则找到最近的。

最佳答案

您可以使用来自 GMSPanoramaViewDelegatefunc panoramaView(view: GMSPanoramaView!, error: NSError!, onMoveNearCoordinate coordinate: CLLocationCoordinate2D) 方法检查某个坐标的全景 View 是否不可用。

示例实现:

class ViewController: UIViewController {

@IBOutlet weak var testView: UIView!

var locationManager = CLLocationManager();

override func viewDidLoad() {
super.viewDidLoad()

super.viewDidLoad()

let panoView = GMSPanoramaView(frame: CGRectZero)
panoView.delegate = self
self.view = panoView

panoView.moveNearCoordinate(CLLocationCoordinate2DMake(0, 150.312))
}
}

extension ViewController: GMSPanoramaViewDelegate {
func panoramaView(view: GMSPanoramaView!, error: NSError!, onMoveNearCoordinate coordinate: CLLocationCoordinate2D) {
print("\(coordinate.latitude) \(coordinate.longitude) not available")
}

Gist 文件链接:https://gist.github.com/ziyang0621/d340e5ff73f131c32375

关于ios - 最近可用的街景 Google Maps SDK iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33762414/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com