├── .gitignore ├── Demo ├── SVPulsingAnnotationView.xcodeproj │ └── project.pbxproj └── SVPulsingAnnotationView │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── SVAnnotation.h │ ├── SVAnnotation.m │ ├── SVAppDelegate.h │ ├── SVAppDelegate.m │ ├── SVPulsingAnnotationView-Info.plist │ ├── SVPulsingAnnotationView-Prefix.pch │ ├── SVViewController.h │ ├── SVViewController.m │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── LICENSE.md ├── PaintCode files ├── Dot.pcvd └── Halo.pcvd ├── README.md ├── SVPulsingAnnotationView.podspec └── SVPulsingAnnotationView ├── SVPulsingAnnotationView.h └── SVPulsingAnnotationView.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/Default.png -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/Default@2x.png -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVAnnotation.h -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVAnnotation.m -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVAppDelegate.h -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVAppDelegate.m -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVPulsingAnnotationView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVPulsingAnnotationView-Info.plist -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVPulsingAnnotationView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVPulsingAnnotationView-Prefix.pch -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVViewController.h -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/SVViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/SVViewController.m -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/SVPulsingAnnotationView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/Demo/SVPulsingAnnotationView/main.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PaintCode files/Dot.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/PaintCode files/Dot.pcvd -------------------------------------------------------------------------------- /PaintCode files/Halo.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/PaintCode files/Halo.pcvd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/README.md -------------------------------------------------------------------------------- /SVPulsingAnnotationView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/SVPulsingAnnotationView.podspec -------------------------------------------------------------------------------- /SVPulsingAnnotationView/SVPulsingAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/SVPulsingAnnotationView/SVPulsingAnnotationView.h -------------------------------------------------------------------------------- /SVPulsingAnnotationView/SVPulsingAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVPulsingAnnotationView/HEAD/SVPulsingAnnotationView/SVPulsingAnnotationView.m --------------------------------------------------------------------------------