Swift问题:设置名为map的属性

时间:2018-07-03 17:41:03

标签: swift google-maps swift3

我正在将XCode 8中的Swift项目从2.3升级到3.0。我使用Google Maps API,并且它们具有一些样板代码,如下所示:

self.mapView.camera=camera
let marker = GMSMarker(position: camera.target)
marker?.snippet = "Hello World"
marker.map = self.mapView

但是,我的XCode 8 Swift编译器在最后一行给了我一个错误:

Cannot assign to property; map is a method

我无法控制Google的GMSMarker类中的属性。那么如何设置“地图”属性?

0 个答案:

没有答案