gpt4 book ai didi

ios - 标记谷歌地图 Swift 信息窗口

转载 作者:行者123 更新时间:2023-11-30 13:35:34 25 4
gpt4 key购买 nike

您好,我正在使用 Google map ,有以下问题

我想在固定标签中显示标记的信息,并且每次触摸都会更改标签。

我有以下代码,我知道我可以将事件标记为标记

func mapView(mapView: GMSMapView!, didTapMarker marker: GMSMarker!) -> Bool {
self.nameService.text = "example"
return true
}

但是这个功能不起作用,请问上面的功能是用来做什么的?

我还测试了这个函数来更改信息窗口,但都不起作用

 func mapView(mapView: GMSMapView, markerInfoWindow marker: GMSMarker) -> UIView? {

let index:Int! = Int(marker.accessibilityLabel!)

let customInfoWindow = NSBundle.mainBundle().loadNibNamed("CustomInfoWindow", owner: self, options: nil)[0] as! CustomInfoWindow
customInfoWindow.label.text = "example"
self.nameService.text = "example"
return customInfoWindow
}

我犯了这个错误吗?

谢谢

最佳答案

尝试使用以下代码

func mapView(mapView: GMSMapView!, didTapMarker marker: GMSMarker!) -> Bool {
self.nameService.text = "example"
return false
}

关于ios - 标记谷歌地图 Swift 信息窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36111442/

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