Coordinate finder using Google Maps API's
388
API developed for consumption of Google Maps API's to search coordinates. Made for study and practice purposes! And of course, to help me with daily research!
To use, a Key API provided by Google is required to consume Google Maps APIs. Follow this step by step.
When running the API, be sure to export your environment variable with the Key API, or change the source code for that. An example of exporting the Key API and executing the project on your shell would be:
export API_KEY=ABCDEFG
mvn spring-boot:run
Make sure you have Docker installed on your machine. Dockerhub
Clone the image
docker pull weversonlemos/geocode-finder:latest
Start container with image and api key
docker run -p 8080:8080 --name geocode-finder -e API_KEY=YOUR_API_KEY weversonlemos/geocode-finder:latest
To obtain the coordinates of an address, below is an example curl. The string need not be coded for the search, the program is already in charge of doing this
curl --location 'http://localhost:8080/address/geocode?address=Morumbi%2C%20S%C3%A3o%20Paulo'
⚠️ Still in development
geocode-finder is released under the GNU General Public License, Version 2
Copyright (C) 2022 Weverson Lemos
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version
Content type
Image
Digest
sha256:bd440e151…
Size
248.5 MB
Last updated
about 3 years ago
docker pull weversonlemos/geocode-finder