This iOS application allows users to input a starting and destination address and then displays the pedestrian route between these two locations on a Google Map. The app is built using Swift, Google Maps SDK, and Google Places SDK, and it demonstrates key features like real-time geocoding and route visualization.
- Clone the repository:
git clone https://github.com/yourusername/ios-navigation-app.git
- Navigate to the project directory:
cd ios-navigation-app
- Install dependencies using CocoaPods:
pod install
- Open the project in Xcode:
open ios-navigation-app.xcworkspace
- Add your Google Maps API key to the project: - Open
AppDelegate.swift
. - Replace"YOUR_API_KEY"
with your actual API key in:GMSServices.provideAPIKey("YOUR_API_KEY")
GMSPlacesClient.provideAPIKey("YOUR_API_KEY")
- Build and run the project on a simulator or connected device.