gpt4 book ai didi

ios - 谷歌地图在标记信息窗口 iOS 中显示语音气泡

转载 作者:搜寻专家 更新时间:2023-11-01 07:33:02 24 4
gpt4 key购买 nike

我在我的 iOS 应用程序中使用 GoogleMaps SDK。我已经为 GoogleMaps 实现了自定义信息窗口,并将其称为我的 ViewController,

func mapView(mapView: GMSMapView!, markerInfoContents marker: GMSMarker!) -> UIView! {
var calloutView:CalloutView = NSBundle.mainBundle().loadNibNamed("CalloutView", owner: self, options: nil)[0] as! CalloutView
views!.detailDisclosure.addTarget(self, action: "detailDisclosureButton_Clicked:", forControlEvents: UIControlEvents.TouchUpInside)
views.labelText.text = "ABC Text"
return views

}

得到如下输出 enter image description here

信息窗口重叠并显示底部边缘,如下所示。信息窗口上的按钮也没有被点击。请帮忙。

最佳答案

根据我的经验,- mapView:markerInfoContents: 有一些问题。就我而言,我最终使用了 - mapView:markerInfoWindow:反而。在这种情况下,您必须自己绘制气球图像,如下所示:

ballon images

Also button on info window not getting clicked.

作为documented on the bottom of this , markerInfoWindow 呈现为图像,但不是真正的 UIView

Note: The info window is rendered as an image each time it is displayed on the map. This means that any changes to its properties while it is active will not be immediately visible. The contents of the info window will be refreshed the next time that it is displayed.

它不接收任何 UI 事件。所以,遗憾的是,markerInfoWindow 上的任何 UIControl 都是无用的。唯一受支持的方法是使用 - mapView:didTapInfoWindowOfMarker:委托(delegate)方法,这意味着您不能在信息窗口上定义多个可点击区域。

关于ios - 谷歌地图在标记信息窗口 iOS 中显示语音气泡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31380808/

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