我面临一个小问题,我希望有一个简单的解决方案。 事实上,我想自定义我的谷歌地图,但我只发现如何在Swift 3中实现这一点(如下面的说明),但我目前正在开发Swift 2。
do {
// Set the map style by passing the URL of the local file.
if let styleURL = Bundle.main.url(forResource: "style", withExtension: "json") {
mapView.mapStyle = try GMSMapStyle(contentsOfFileURL: styleURL)
} else {
NSLog("Unable to find style.json")
}
} catch {
NSLog("One or more of the map styles failed to load. \(error)")
}
有人对如何在Swift 2中解决我的问题有所了解吗?
感谢您的回答!