Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ernestort/geocoding
https://github.com/ernestort/geocoding
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ernestort/geocoding
- Owner: ErnestOrt
- Created: 2017-11-11T12:43:02.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-11T13:09:59.000Z (about 7 years ago)
- Last Synced: 2024-10-30T20:13:46.391Z (2 months ago)
- Language: Java
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Geocoding
### How do I make it work?
1. Set up your API key on the _geolocation.api_ property from application.properties
3. You can start the project using _mvn spring-boot:run_### Available methods
```
@PostMapping("/store/address")
public void storeAddress(@RequestBody String address)@PostMapping("/store/addresses")
public void storeAddresses(@RequestBody byte[] addressesFileContent)@GetMapping("/get/addresses/all")
getAllAddresses()
public Collection
```