找不到CLLocationCoordinate2D

时间:2015-08-05 13:12:41

标签: json swift

我有这一行:

marker.coordinate = CLLocationCoordinate2D(latitude: lat, longitude: lng)

lat和lng都来自JSON数组,这是我得到的错误:

Cannot find an initializer for type CLLocationCoordinate2D that accepts an argument list of type (latitude: JSON, longtitude: JSON)

我尝试了lng.int之类的其他类型,但它也没有用。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我发现我必须使用doubleValue作为类型。因此,当我使用lat.doubleValue时,它会起作用。