-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segnaposto mostra posizione sbagliata #126
Comments
Se l'indirizzo include curl --get -s "https://maps.googleapis.com/maps/api/geocode/json" \
--data-urlencode "address=VIA DEL CASALE DI BARBABIANCA, 00054, FIUMICINO, Italia" \
--data-urlencode "key=${API_KEY}" \
| jq '.results[].formatted_address' Output:
Se invece l'indirizzo NON include il paese, il risultato è univoco: curl --get -s "https://maps.googleapis.com/maps/api/geocode/json" \
--data-urlencode "address=VIA DEL CASALE DI BARBABIANCA, 00054 , FIUMICINO" \
--data-urlencode "key=${API_KEY}" \
| jq '.results[].formatted_address' Output:
|
Vedi issue #126 per maggiori informazioni
Veniva sempre restituito il primo indirizzo perchè il geocoder di A partire dalla commit 6ee7f0c nel caso vengano trovati più risultati per un indirizzo il programma esce con un errore. |
Con l'ultima versione (
|
Problema
In fase di generazione KML viene creato un KML con una posizione del segnaposto errata rispetto a quella che dovrebbe essere.
Il problema è venuto fuori per l'indirizzo
VIA DEL CASALE DI BARBABIANCA 00054, FIUMICINO, Italia
, ma non è escluso ce ne possano essere altri.Cercando l'indirizzo tramite Maps/Google Earth otteniamo l'indirizzo corretto:
Utilizzando invece il servizio di Geocoding di Google, viene restituito
Via del Casale Zola, 00143 Roma RM, Italia
:The text was updated successfully, but these errors were encountered: