-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
eXodiquas
authored
Mar 22, 2020
1 parent
0bf687a
commit 2792b94
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ReverseGeocoding | ||
|
||
Diese Library erzeugt aus Längen- und Breitengrad Städtenamen. Falls man Längen- und Breitengrad von **keiner** Stadt angegeben hat bekommt man eine generische Antwort: "Kein Ort gefunden." | ||
|
||
Die Benutzung ist super einfach: | ||
|
||
```java | ||
Converter converter = new Converter(); | ||
converter.getLocationByLonLat(44.0229224, 22.8277253, SearchType.COUNTRY) | ||
``` | ||
|
||
Als SearchTypes existieren ```TOWN, COUNTRY, POSTCODE, STREET```. Diese geben an was das Ergebnis der Umwandlung sein soll. |