1
我想在iOS上的Google地圖視圖上顯示按鈕。我使用Xcode和嘗試下面的代碼:谷歌地圖視圖上的地方按鈕
let mapView = GMSMapView()
override func loadView(){
view = mapView
do{
if let styleURL = Bundle.main.url(forResource: "style", withExtension: "json"){
mapView.mapStyle = try GMSMapStyle(contentsOfFileURL: styleURL)
}
} catch {
}
let marker = GMSMarker()
marker.position = CLLocationCoordinate2D(latitude: 45.45, longitude: -73.6)
marker.title = "Montreal"
marker.snippet = "Canada"
marker.map = mapView
onMapReady()
}
我看不到任何按鈕時的地圖加載。 這是連環畫的樣子:
這裏有約束: enter image description here
我將如何得到這個按鈕,出現?
你好,如果你要綁定你的ViewController與一個Storyb oard,爲什麼這樣做:self.view.addSubview(refreshButton)?對我沒有任何意義。 這是你應該繼續操縱你的故事板,而不是在viewDidLoad,所以你可以告訴我們你的約束? –
嗨,謝謝你的回答。我不確定你的意思是什麼,我應該發佈什麼? – AnthonyL
我在下面添加了一個可能的解決方案 –