Skip to content

Offline reverse geocoder for Objective-C. Turn a string like "SF" into a location object with name, coordinates, timezone, etc. No internet required.

License

Notifications You must be signed in to change notification settings

mpkupriyanov/TSOfflineGeocoder

 
 

Repository files navigation

Build Status

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.


Demo


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);
  }
}];

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)

About

Offline reverse geocoder for Objective-C. Turn a string like "SF" into a location object with name, coordinates, timezone, etc. No internet required.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 77.8%
  • Shell 19.6%
  • Ruby 2.6%