当前位置蓝点显示在标记下方

时间:2019-05-06 10:23:09

标签: ios swift google-maps google-maps-markers

我已成功将google map集成到我的iOS应用中。但是问题是...

  

一旦我在Google地图上的当前位置附近添加了标记,则当前位置蓝点将隐藏在标记后面。

我希望当前位置标记始终显示在其他标记的上方。

我该怎么做?

我玩过标记的z-Index属性,但没有成功。

let marker = GMSMarker()
marker.position = CLLocationCoordinate2D(latitude: location.coordinate.latitude-0.0005, longitude: location.coordinate.longitude)
marker.title = "ABC"
marker.snippet = "XYZ"
marker.map = self.mapView
//  marker.zIndex = 0.  <- did not work

enter image description here

0 个答案:

没有答案