嗨,我在我的应用程序中实现了GoogleMap,但是问题是我无法向其中添加按钮,或者下面是我想要做的图像,后面是地图,按钮用黄色突出显示。每个按钮都会执行某项操作并为该活动返回一个值,红色圆圈是buttomsheet,可以滑动显示几个选项,蓝色圆圈是button textview,无论它在何处显示位置以及用户可以单击它可让Google的Placepicker选择不同的位置,现在我该如何在google map上实现这些功能,即使我只用一个按钮也无法添加它,并且如果可以使用情节提要,那么它会很棒。
这是Google地图代码
override func loadView() {
// Create a GMSCameraPosition that tells the map to display the
// coordinate -33.86,151.20 at zoom level 6.
let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 6.0)
let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)
view = mapView
// Creates a marker in the center of the map.
let marker = GMSMarker()
marker.position = CLLocationCoordinate2D(latitude: -33.86, longitude: 151.20)
marker.title = "Sydney"
marker.snippet = "Australia"
marker.map = mapView
}
答案 0 :(得分:0)
创建按钮插座并将其添加到您的视图中。
@IBOutlet weak var button: UIButton!
self.view.addSubview(button)