TSOfflineGeocoder
Offline reverse geocoder for Objective-C. Turn a string like "SF" into a location object with name, coordinates, timezone, etc. No internet required.
Install / Use
/learn @bnolens/TSOfflineGeocoderREADME
TSOfflineGeocoder
Offline reverse geocoder for Objective-C. Turn a string like "SF" into a location object with name, coordinates, timezone, etc. No internet connection is required.
<br />
Features
- Finds locations using strings or coordinates
- No internet required
- Online fallback
- Results from all around the world
- Fast
- Auto complete
- Returns an array of possible results.
How to get started
Download TSOfflineGeocoder and try out the included iPhone example apps
1. Install with CocoaPods
Add the following line to your Podfile:
pod 'TSOfflineGeocoder'
2. Import
Import the offline geocoder in your project
#import "TSOfflineGeocoder.h"
3. Use
Instantiate the geocoder using:
TSOfflineGeocoder *offlineGeocoder = [TSOfflineGeocoder new];
Search for locations using a string:
[offlineGeocoder geocodeAddressString:@"San Francisco" completionHandler:^(NSDictionary *results, NSError *error) {
if (results) {
TSOfflineLocation *firstLocation = (TSOfflineLocation*)((NSArray*)[results objectForKey:kTSReturnValueData])[0];
NSLog(@"%@", firstLocation.displayName);
}
}];
<br />
License
License: TSOfflineGeocoder
Copyright 2015 Benoit Nolens - http://truestory.io
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: Places database (TSOfflineGeocoder_geoData.json)
- Source: http://www.geonames.org
- Updated by: truestory.io
- License: http://creativecommons.org/licenses/by/3.0/
Related Skills
node-connect
341.8kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.6kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
341.8kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.6kCommit, push, and open a PR
