Skip to content

Instantly share code, notes, and snippets.

@ts95
Last active July 19, 2020 00:20
Show Gist options
  • Save ts95/4ef0cdc616b939d48939c5eabac80592 to your computer and use it in GitHub Desktop.
Save ts95/4ef0cdc616b939d48939c5eabac80592 to your computer and use it in GitHub Desktop.
import SwiftUI
import MapKit
struct AnyMapAnnotation: MapAnnotationProtocol {
let _annotationData: _MapAnnotationData
let base: Any
init<T: MapAnnotationProtocol>(_ base: T) {
self._annotationData = base._annotationData
self.base = base
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment