gpt4 book ai didi

swift - 在 MapBox 图层 iOS 上添加搜索栏

转载 作者:行者123 更新时间:2023-11-28 14:25:56 25 4
gpt4 key购买 nike

我正在尝试将搜索栏添加到 iOS 上 MapBox 的导航 map ,但遇到了一些问题。在这种情况下,我试图以编程方式进行,因为我对 Storyboard没有很好的把握。我也试过弄乱 zIndex,但仍然没有搜索栏出现。

这是我目前得到的代码:

class ViewController: UIViewController, UISearchBarDelegate, MGLMapViewDelegate {
var mapView: NavigationMapView!
lazy var directions: DirectionsManager = DirectionsManager()
var searchBar: UISearchBar!

override func viewDidLoad() {
super.viewDidLoad()
// Setup mapbox
let styleURL = URL(string: "style")
mapView = NavigationMapView(frame: view.bounds, styleURL: styleURL)

view.addSubview(mapView)
mapView.delegate = self
mapView.showsUserLocation = true
mapView.setUserTrackingMode(.follow, animated: true)


mapView.localizeLabels()

self.searchBar = UISearchBar()
mapView.addSubview(searchBar)
}

最佳答案

@erikpartridge,这不是 mapbox 的问题,您需要像下面这样为 UISearchBar 设置框架,

    self.searchBar = UISearchBar(frame: CGRect(x: 15, y: 50, width: (view.bounds.width-30), height: 50))
mapView.addSubview(searchBar)

关于swift - 在 MapBox 图层 iOS 上添加搜索栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51561158/

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