[Add] YLCategory-MacOS 1.1.3
[CocoaPods.git] / Specs / 5 / d / c / RxMKMapView / 4.2.0 / RxMKMapView.podspec.json
blob468c58181e6cbb38228cb56222c757ca09302f26
2   "name": "RxMKMapView",
3   "version": "4.2.0",
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// MARK: Setup MKMapView\nlet mapView = MKMapView(frame: view.frame)\nview.addSubview(mapView)\n\n// MARK: Bind Annotations\n\nrequestForAnnotations() // Observable<MKAnnotation>\n    .asDriver(onErrorJustReturn: [])\n    .drive(mapView.rx.annotations)\n    .disposed(by: disposeBag)\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",
7   "license": "MIT",
8   "authors": {
9     "RxSwift Community": "community@rxswift.org"
10   },
11   "source": {
12     "git": "https://github.com/RxSwiftCommunity/RxMKMapView.git",
13     "tag": "4.2.0"
14   },
15   "swift_version": "4.0",
16   "platforms": {
17     "ios": "8.0"
18   },
19   "requires_arc": true,
20   "source_files": "Sources/**/*.swift",
21   "dependencies": {
22     "RxCocoa": [
23       "~> 4.0"
24     ],
25     "RxSwift": [
26       "~> 4.0"
27     ]
28   },
29   "frameworks": "Foundation"