├── .gitignore ├── Demo ├── Classes │ ├── SVGeocoderAppAppDelegate.h │ ├── SVGeocoderAppAppDelegate.m │ ├── SVGeocoderAppViewController.h │ └── SVGeocoderAppViewController.m ├── Default-568h@2x.png ├── MainWindow.xib ├── SVGeocoder.xcodeproj │ └── project.pbxproj ├── SVGeocoderApp-Info.plist ├── SVGeocoderAppViewController.xib ├── SVGeocoder_Prefix.pch └── main.m ├── LICENSE.txt ├── README.textile ├── SVGeocoder.podspec └── SVGeocoder ├── SVGeocoder.h ├── SVGeocoder.m ├── SVPlacemark.h └── SVPlacemark.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/Classes/SVGeocoderAppAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/Classes/SVGeocoderAppAppDelegate.h -------------------------------------------------------------------------------- /Demo/Classes/SVGeocoderAppAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/Classes/SVGeocoderAppAppDelegate.m -------------------------------------------------------------------------------- /Demo/Classes/SVGeocoderAppViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/Classes/SVGeocoderAppViewController.h -------------------------------------------------------------------------------- /Demo/Classes/SVGeocoderAppViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/Classes/SVGeocoderAppViewController.m -------------------------------------------------------------------------------- /Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/MainWindow.xib -------------------------------------------------------------------------------- /Demo/SVGeocoder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/SVGeocoder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/SVGeocoderApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/SVGeocoderApp-Info.plist -------------------------------------------------------------------------------- /Demo/SVGeocoderAppViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/SVGeocoderAppViewController.xib -------------------------------------------------------------------------------- /Demo/SVGeocoder_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/SVGeocoder_Prefix.pch -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/Demo/main.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/README.textile -------------------------------------------------------------------------------- /SVGeocoder.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/SVGeocoder.podspec -------------------------------------------------------------------------------- /SVGeocoder/SVGeocoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/SVGeocoder/SVGeocoder.h -------------------------------------------------------------------------------- /SVGeocoder/SVGeocoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/SVGeocoder/SVGeocoder.m -------------------------------------------------------------------------------- /SVGeocoder/SVPlacemark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/SVGeocoder/SVPlacemark.h -------------------------------------------------------------------------------- /SVGeocoder/SVPlacemark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TransitApp/SVGeocoder/HEAD/SVGeocoder/SVPlacemark.m --------------------------------------------------------------------------------