This project is a simple implementation of the Google geocoder using Ionic framework. The app loads the Google SDKs using the @googlemaps/js-api-loader
library (along with the @types/google.maps
for better TypeScript support). Using the api-loader, the app initializes the Google Maps SDK and the Geocoder service. The app then uses the Geocoder service to reverse geocode the user's current location.
-
Clone the repository:
git clone https://github.com/marlon-ionic/geocoder-init.git
-
Navigate to the project directory:
cd geocoder-init
-
Install dependencies:
npm install
-
IMPORANT: Add your Google Maps API key to a
.env
file in the root of the project. Your.env
file should look like this:NG_APP_GOOGLE_API_KEY=YOUR_API_KEY_GOES_HERE
- Build the project:
ionic build
- Run the project via an emulator or device using
npx cap run android
ornpx cap run ios
This project is licensed under the MIT License. See the LICENSE file for more details.