我想在iOS上的Google Map View上显示一个按钮。我正在使用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
如何显示此按钮?