├── .swift-version ├── Images ├── image1.png ├── image2.png └── video.gif ├── LICENSE ├── MapHelperKit.podspec ├── MapHelperKit.xcworkspace └── contents.xcworkspacedata ├── MapHelperKit ├── MapHelperKit.xcodeproj │ └── project.pbxproj └── MapHelperKit │ ├── Constants │ └── Constants.swift │ ├── Info.plist │ ├── MapHelperKit.h │ └── Source │ ├── AlertHelper.swift │ ├── DirectionHelper.swift │ ├── Geocoder.swift │ └── MapHelper.swift ├── MapHelperKitExample ├── MapHelperKitExample.xcodeproj │ └── project.pbxproj └── MapHelperKitExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── README.md /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /Images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/Images/image1.png -------------------------------------------------------------------------------- /Images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/Images/image2.png -------------------------------------------------------------------------------- /Images/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/Images/video.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/LICENSE -------------------------------------------------------------------------------- /MapHelperKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit.podspec -------------------------------------------------------------------------------- /MapHelperKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit/Constants/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit/Constants/Constants.swift -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit/Info.plist -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit/MapHelperKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit/MapHelperKit.h -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit/Source/AlertHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit/Source/AlertHelper.swift -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit/Source/DirectionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit/Source/DirectionHelper.swift -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit/Source/Geocoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit/Source/Geocoder.swift -------------------------------------------------------------------------------- /MapHelperKit/MapHelperKit/Source/MapHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKit/MapHelperKit/Source/MapHelper.swift -------------------------------------------------------------------------------- /MapHelperKitExample/MapHelperKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKitExample/MapHelperKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MapHelperKitExample/MapHelperKitExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKitExample/MapHelperKitExample/AppDelegate.swift -------------------------------------------------------------------------------- /MapHelperKitExample/MapHelperKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKitExample/MapHelperKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MapHelperKitExample/MapHelperKitExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKitExample/MapHelperKitExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MapHelperKitExample/MapHelperKitExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKitExample/MapHelperKitExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MapHelperKitExample/MapHelperKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKitExample/MapHelperKitExample/Info.plist -------------------------------------------------------------------------------- /MapHelperKitExample/MapHelperKitExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/MapHelperKitExample/MapHelperKitExample/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rushisangani/MapHelperKit/HEAD/README.md --------------------------------------------------------------------------------