4 "summary": "Reactive wrapper for MKMapView `delegate`",
5 "description": "RxMKMapView is a Reactive wrapper for MKMapView `delegate`.\n\n## Installation\n\nRxMKMapView is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod \"RxMKMapView\"\n```\n\n## Example Usages\n\n```swift\n\n// MARK: Setup MKMapView\n\nlet mapView = MKMapView(frame: view.frame)\nview.addSubview(mapView)\n\n// MARK: Respond to Loading Events\nmapView.rx.willStartLoadingMap\n .asDriver()\n .drive(onNext: {\n print(\"map started loadedloading)\n })\n .disposed(by: disposeBag)\n\nmapView.rx.didFinishLoadingMap\n .asDriver()\n .drive(onNext: {\n print(\"map finished loading\")\n })\n .disposed(by: disposeBag)\n```",
6 "homepage": "https://github.com/RxSwiftCommunity/RxMKMapView",
9 "Spiros Gerokostas": "spiros.gerokostas@gmail.com"
12 "git": "https://github.com/RxSwiftCommunity/RxMKMapView.git",
15 "social_media_url": "https://twitter.com/sger",
20 "source_files": "Pod/Classes/**/*",
29 "frameworks": "Foundation",
30 "pushed_with_swift_version": "4"