Skip to content

Commit 06778e0

Browse files
committed
Added AbstractAPI as default service and cleaned existing services.
1 parent e732ea7 commit 06778e0

File tree

4 files changed

+114
-181
lines changed

4 files changed

+114
-181
lines changed

FCIPAddressGeocoder.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'FCIPAddressGeocoder'
3-
spec.version = '1.3.0'
3+
spec.version = '1.4.0'
44
spec.license = { :type => 'MIT' }
55
spec.homepage = 'https://github.com/fabiocaccamo/FCIPAddressGeocoder'
66
spec.authors = { 'Fabio Caccamo' => '[email protected]' }
77
spec.summary = 'iOS Geocoder for geocode device IP Address location using GeoIP service(s) and a block-based syntax.'
8-
spec.source = { :git => 'https://github.com/fabiocaccamo/FCIPAddressGeocoder.git', :tag => '1.3.0' }
8+
spec.source = { :git => 'https://github.com/fabiocaccamo/FCIPAddressGeocoder.git', :tag => '1.4.0' }
99
spec.source_files = 'FCIPAddressGeocoder/*.{h,m}'
1010
spec.platform = :ios, '5.0'
1111
spec.framework = 'Foundation', 'UIKit', 'CoreLocation'

FCIPAddressGeocoder/FCIPAddressGeocoder.h

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22
// FCIPAddressGeocoder.h
33
//
44
// Created by Fabio Caccamo on 07/07/14.
5-
// Copyright (c) 2014 Fabio Caccamo - http://www.fabiocaccamo.com/ - All rights reserved.
5+
// Copyright (c) 2014-present, Fabio Caccamo - [email protected] - https://fabiocaccamo.com/ - All rights reserved.
66
//
77

88
#import <Foundation/Foundation.h>
99
#import <CoreLocation/CoreLocation.h>
1010

1111
typedef enum : NSUInteger {
12+
FCIPAddressGeocoderServiceAbstractAPI,
13+
FCIPAddressGeocoderServiceCDNService,
1214
FCIPAddressGeocoderServiceFreeGeoIP,
13-
FCIPAddressGeocoderServiceIPApi,
14-
FCIPAddressGeocoderServiceIPInfo,
15-
FCIPAddressGeocoderServiceIPVigilante,
16-
FCIPAddressGeocoderServiceNekudo,
17-
FCIPAddressGeocoderServicePetabyet,
18-
FCIPAddressGeocoderServiceTelize
15+
FCIPAddressGeocoderServiceIPInfo
1916

2017
} FCIPAddressGeocoderService;
2118

@@ -53,4 +50,4 @@ typedef enum : NSUInteger {
5350

5451
+(FCIPAddressGeocoder *)sharedGeocoder;
5552

56-
@end
53+
@end

0 commit comments

Comments
 (0)