├── CGLTestApp-Info.plist ├── CoreGeoLocation.xcodeproj └── project.pbxproj ├── CoreGeoLocation_Prefix.pch ├── English.lproj └── InfoPlist.strings ├── Info.plist ├── README ├── README.markdown ├── Resources └── Test App │ └── MainMenu.xib └── Source ├── Additions ├── NSString+CGLURLLoadingAdditions.h └── NSString+CGLURLLoadingAdditions.m ├── CGLGeoDataProvider.h ├── CGLGeoDataProvider.m ├── CGLGeoDataProviderGoogle.h ├── CGLGeoDataProviderGoogle.m ├── CGLGeoDataProviderYahoo.h ├── CGLGeoDataProviderYahoo.m ├── CGLGeoLocation.h ├── CGLGeoLocation.m ├── CGLGeoManager.h ├── CGLGeoManager.m ├── CGLGeoRequest.h ├── CGLGeoRequest.m ├── CGLURLRequestLoader.h ├── CGLURLRequestLoader.m ├── CoreGeoLocation.h ├── NSURLResponse+CGLEncodingAdditions.h ├── NSURLResponse+CGLEncodingAdditions.m ├── Test App ├── CGLTestAppController.h ├── CGLTestAppController.m └── main.m └── Utilities ├── CGLXML.h └── CGLXML.m /CGLTestApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/CGLTestApp-Info.plist -------------------------------------------------------------------------------- /CoreGeoLocation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/CoreGeoLocation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreGeoLocation_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/CoreGeoLocation_Prefix.pch -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Info.plist -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/README.markdown -------------------------------------------------------------------------------- /Resources/Test App/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Resources/Test App/MainMenu.xib -------------------------------------------------------------------------------- /Source/Additions/NSString+CGLURLLoadingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/Additions/NSString+CGLURLLoadingAdditions.h -------------------------------------------------------------------------------- /Source/Additions/NSString+CGLURLLoadingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/Additions/NSString+CGLURLLoadingAdditions.m -------------------------------------------------------------------------------- /Source/CGLGeoDataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoDataProvider.h -------------------------------------------------------------------------------- /Source/CGLGeoDataProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoDataProvider.m -------------------------------------------------------------------------------- /Source/CGLGeoDataProviderGoogle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoDataProviderGoogle.h -------------------------------------------------------------------------------- /Source/CGLGeoDataProviderGoogle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoDataProviderGoogle.m -------------------------------------------------------------------------------- /Source/CGLGeoDataProviderYahoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoDataProviderYahoo.h -------------------------------------------------------------------------------- /Source/CGLGeoDataProviderYahoo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoDataProviderYahoo.m -------------------------------------------------------------------------------- /Source/CGLGeoLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoLocation.h -------------------------------------------------------------------------------- /Source/CGLGeoLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoLocation.m -------------------------------------------------------------------------------- /Source/CGLGeoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoManager.h -------------------------------------------------------------------------------- /Source/CGLGeoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoManager.m -------------------------------------------------------------------------------- /Source/CGLGeoRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoRequest.h -------------------------------------------------------------------------------- /Source/CGLGeoRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLGeoRequest.m -------------------------------------------------------------------------------- /Source/CGLURLRequestLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLURLRequestLoader.h -------------------------------------------------------------------------------- /Source/CGLURLRequestLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CGLURLRequestLoader.m -------------------------------------------------------------------------------- /Source/CoreGeoLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/CoreGeoLocation.h -------------------------------------------------------------------------------- /Source/NSURLResponse+CGLEncodingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/NSURLResponse+CGLEncodingAdditions.h -------------------------------------------------------------------------------- /Source/NSURLResponse+CGLEncodingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/NSURLResponse+CGLEncodingAdditions.m -------------------------------------------------------------------------------- /Source/Test App/CGLTestAppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/Test App/CGLTestAppController.h -------------------------------------------------------------------------------- /Source/Test App/CGLTestAppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/Test App/CGLTestAppController.m -------------------------------------------------------------------------------- /Source/Test App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/Test App/main.m -------------------------------------------------------------------------------- /Source/Utilities/CGLXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/Utilities/CGLXML.h -------------------------------------------------------------------------------- /Source/Utilities/CGLXML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekarladam/CoreGeoLocation/HEAD/Source/Utilities/CGLXML.m --------------------------------------------------------------------------------