├── .gitignore ├── LICENSE ├── NearBy.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── NearBy ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Controllers │ ├── DrawerContentViewController.swift │ ├── MapVC.swift │ └── PointOfPlacesVC.swift ├── Info.plist ├── Model │ ├── Place.swift │ └── PlaceAnnotation.swift ├── Resources │ ├── PulleyPassthroughScrollView.swift │ ├── PulleyViewController.swift │ └── categories.json └── Views │ ├── CategoryCell.swift │ └── NearMeTableViewCell.swift ├── README.md ├── Simulator Screen Shot 17-Apr-2017, 10.22.41 AM.png ├── Simulator Screen Shot 17-Apr-2017, 3.33.04 PM.png └── Simulator Screen Shot 21-Apr-2017, 4.40.11 PM.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/LICENSE -------------------------------------------------------------------------------- /NearBy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NearBy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NearBy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/.DS_Store -------------------------------------------------------------------------------- /NearBy/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/AppDelegate.swift -------------------------------------------------------------------------------- /NearBy/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NearBy/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NearBy/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NearBy/Controllers/DrawerContentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Controllers/DrawerContentViewController.swift -------------------------------------------------------------------------------- /NearBy/Controllers/MapVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Controllers/MapVC.swift -------------------------------------------------------------------------------- /NearBy/Controllers/PointOfPlacesVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Controllers/PointOfPlacesVC.swift -------------------------------------------------------------------------------- /NearBy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Info.plist -------------------------------------------------------------------------------- /NearBy/Model/Place.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Model/Place.swift -------------------------------------------------------------------------------- /NearBy/Model/PlaceAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Model/PlaceAnnotation.swift -------------------------------------------------------------------------------- /NearBy/Resources/PulleyPassthroughScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Resources/PulleyPassthroughScrollView.swift -------------------------------------------------------------------------------- /NearBy/Resources/PulleyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Resources/PulleyViewController.swift -------------------------------------------------------------------------------- /NearBy/Resources/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Resources/categories.json -------------------------------------------------------------------------------- /NearBy/Views/CategoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Views/CategoryCell.swift -------------------------------------------------------------------------------- /NearBy/Views/NearMeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/NearBy/Views/NearMeTableViewCell.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/README.md -------------------------------------------------------------------------------- /Simulator Screen Shot 17-Apr-2017, 10.22.41 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/Simulator Screen Shot 17-Apr-2017, 10.22.41 AM.png -------------------------------------------------------------------------------- /Simulator Screen Shot 17-Apr-2017, 3.33.04 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/Simulator Screen Shot 17-Apr-2017, 3.33.04 PM.png -------------------------------------------------------------------------------- /Simulator Screen Shot 21-Apr-2017, 4.40.11 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VishalNandoriya/NearBy/HEAD/Simulator Screen Shot 21-Apr-2017, 4.40.11 PM.png --------------------------------------------------------------------------------