Вы можете попробовать добавить MGLPointAnnotations
к источнику Shape, который добавит все ваши аннотации на карту.
var myAnnotations = [your annotations...]
private func configureSource(style: MGLStyle) -> MGLShapeSource {
var annotations = [MyCustomAnnotation]()
for annotation in self.myAnnotations {
if let myAnnotation = annotation as? MyCustomAnnotation {
annotations.append(myAnnotation)
let imageName = myAnnotation.annotationImageName
if let image = UIImage(named: imageName) {
style.setImage(image, forName: imageName)
}
}
}
return MGLShapeSource(identifier: "myAnnotations", features: annotations, options: nil)
}
func configureSymbolLayer(source: MGLShapeSource) -> MGLSymbolStyleLayer {
let symbols = MGLSymbolStyleLayer(identifier: "identifier", source: source)
symbols.iconImageName = NSExpression(forKeyPath: "annotationImageName")
if self.mapBoxView.zoomLevel < zoomThreshold {
symbols.iconOpacity = NSExpression(forConstantValue: "0.0")
} else {
symbols.iconOpacity = NSExpression(forConstantValue: "1.0")
}
return symbols
}
Затем необходимо добавить источник и стиль в методе делегата didFinishLoading style
.
func mapView(_ mapView: MGLMapView, didFinishLoading style: MGLStyle) {
guard let style = mapView.style else { return }
let source = configureSource(style: style)
style.addSource(source)
style.addLayer(configureSymbolLayer(source: source))
}
Функция стиля перезагрузки
mapView
должна вызываться по умолчанию при каждом изменении региона, но если нет, вам может потребоваться вызвать ее вручную в regionDidChanged
методе делегата.