Updated for XCode 7.0 and iOS 9.0.1
Features:
Location update with closure & delegate support
Geocoding and reverse geocoding using Apple service
Geocoding and reverse geocoding using Google service
Closure returns CLPlacemark object, making it easier to place pin on map
Try this too: https://github.com/varshylmobile/MapManager
Closure
Location update
var locationManager = LocationManager.sharedInstance
locationManager.showVerboseMessage = true
locationManager.autoUpdate = false
locationManager.startUpdatingLocationWithCompletionHandler { (latitude, longitude, status, verboseMessage, error) -> () in
println("lat:\(latitude) lon:\(longitude) status:\(status) error:\(error)")
println(verboseMessage)
}
Geocoding using Apple service
var locationManager = LocationManager.sharedInstance
locationManager.geocodeAddressString(address: "Apple Inc., Infinite Loop, Cupertino, CA 95014, United States") { (geocodeInfo,placemark,error) -> Void in
if(error != nil){
println(error)
}else{
println(geocodeInfo!)
}
}
Reverse Geocoding using Apple service
var locationManager = LocationManager.sharedInstance
locationManager.reverseGeocodeLocationWithLatLon(latitude: 37.331789, longitude: -122.029620) { (reverseGecodeInfo,placemark,error) -> Void in
if(error != nil){
println(error)
}else{
println(reverseGecodeInfo!)
}
}
Geocoding using Google service
var locationManager = LocationManager.sharedInstance
locationManager.geocodeUsingGoogleAddressString(address: "Apple Inc., Infinite Loop, Cupertino, CA 95014, United States") { (geocodeInfo,placemark,error) -> Void in
if(error != nil){
println(error)
}else{
println(geocodeInfo!)
}
}
Reverse Geocoding using Google service
var locationManager = LocationManager.sharedInstance
locationManager.reverseGeocodeLocationUsingGoogleWithLatLon(latitude: 37.331789, longitude: -122.029620) { (reverseGecodeInfo,placemark,error) -> Void in
if(error != nil){
println(error)
}else{
println(reverseGecodeInfo!)
}
}
Delegate
Location update
*class ViewController: UIViewController ,LocationManagerDelegate{....*
override func viewDidLoad() {
super.viewDidLoad()
var locationManager = LocationManager.sharedInstance
locationManager.delegate = self
locationManager.startUpdatingLocation()
locationManager.stopUpdatingLocation()
}
func locationManagerStatus(status:NSString){
println(status)
}
func locationManagerReceivedError(error:NSString){
println(error)
}
func locationFoundGetAsString(latitude: NSString, longitude: NSString) {
}
func locationFound(latitude:Double, longitude:Double){
}
-
App is Authorized to use location services.
-
You have not yet made a choice with regards to this application.
-
This application is not authorized to use location services. Due to active restrictions on location services, the user cannot change this status, and may not have personally denied authorization.
-
You have explicitly denied authorization for this application, or location services are disabled in Settings.
Add Privacy - Location Usage Description and NSLocationWhenInUseUsageDescription in your plist
- Compatiblity check for iOS7 & iOS8
- iPhone4 and startMonitoringSignificantLocationChanges issue
All contributors will receive virtual high fives from me and for the heck of it lets forget you are a south paw
Map manager is a MapKit wrapper in Swift to provide route direction drawing
NSXMLParser wrapper in Swift
RateMyApp is a Swift class to provide gentle reminders to app user to rate your app
Vertical and Horizontal flip animation for table view cell
Have any questions or suggestions feel free to write at [email protected] (Jimmy Jose) http://www.varshylmobile.com/
The MIT License (MIT)
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.