├── .gitignore ├── GooglePlacesClone.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── GooglePlacesClone.xcworkspace └── contents.xcworkspacedata ├── GooglePlacesClone ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── AutoCompleteVC.swift ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CurrentPlaceVC.swift ├── Info.plist ├── PlacePickerVC.swift └── ViewController.swift ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md └── ScreenShots ├── 1.png ├── 2.png ├── 3.png └── 4.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/.gitignore -------------------------------------------------------------------------------- /GooglePlacesClone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GooglePlacesClone.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GooglePlacesClone.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GooglePlacesClone/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/.DS_Store -------------------------------------------------------------------------------- /GooglePlacesClone/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/AppDelegate.swift -------------------------------------------------------------------------------- /GooglePlacesClone/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GooglePlacesClone/AutoCompleteVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/AutoCompleteVC.swift -------------------------------------------------------------------------------- /GooglePlacesClone/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GooglePlacesClone/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GooglePlacesClone/CurrentPlaceVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/CurrentPlaceVC.swift -------------------------------------------------------------------------------- /GooglePlacesClone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/Info.plist -------------------------------------------------------------------------------- /GooglePlacesClone/PlacePickerVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/PlacePickerVC.swift -------------------------------------------------------------------------------- /GooglePlacesClone/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/GooglePlacesClone/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/ScreenShots/1.png -------------------------------------------------------------------------------- /ScreenShots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/ScreenShots/2.png -------------------------------------------------------------------------------- /ScreenShots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/ScreenShots/3.png -------------------------------------------------------------------------------- /ScreenShots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/GooglePlacesClone/HEAD/ScreenShots/4.png --------------------------------------------------------------------------------