3,189 questions
Score of 0
2 answers
207 views
Google Geocoding API Error: “API keys with referer restrictions cannot be used with this API”
I am using the Google Geocoding API from my frontend web application.
https://maps.googleapis.com/maps/api/geocode/json?latlng=LAT,LNG&key=MY_API_KEY
For security reasons, I tried to restrict my ...
Score of 0
0 answers
94 views
`osmnx` - how to query with `ThreadPoolExecutor` without exceeding Overpass limits?
I have a dataset of ~70k unique locations in New York. I decided to run a detailed POI analysis regarding coordinates. Thankfully, data are quite dense so, before research, I segmented whole dataset ...
Score of 1
2 answers
163 views
String pattern to extract street number and name
I have a data frame with a column of street addresses, some of which include suite, apartment, floor, etc., which are not useful in retrieving the latitude and longitude of the address.
I have ...
Score of 0
2 answers
268 views
Google geocode API doesn't provide accurate results for a valid usps address
I am using the Google Geocode API to geocode several thousand addresses. I am getting some inaccurate responses and I am trying to figure out why.
An example address is 6288 Route 22, Bernville PA ...
Score of 0
2 answers
79 views
Using the Geocoder API, there is an issue fetching the user's city and state parameters
With the geocoder API, I am trying to get the complete address of the user and need to specify the city, state, and country separately. However, I am unable to get the city parameter correctly. It ...
Score of -1
1 answer
268 views
Flutter app not update automatically position with geolocator and geocoding
I'm building an app in flutter and in android, and i have an issue since further days, it's not updating automatically the position.
here the logs:
W/Activity(23615): Can request only one set of ...
Score of -1
1 answer
186 views
How to create a people finder functionality using Leaflet JS in a React app
I am building an enterprise people finding app. My use case is:
Allow a user to locate themselves on a map and mark their location.
Then set the number of miles in radius up to which they would like ...
Score of 1
0 answers
53 views
Geocoding - Japanese address start to timeout without url encoding from 12th Oct 2024
Here is example of call from Golang without url encoding.
https://maps.googleapis.com/maps/api/geocode/json?address=大田区北千束3丁目&key=xxxx(please change to key)
Above was returning result until 11th ...
Score of 1
1 answer
319 views
Maptiler Geocoding make markers interactive
I have a circle in my map. I want the marker from the MapTiler Geocoding search to be clickable and/or colored differently to demonstrate if it is inside the circle or not.
The code I have below works....
Score of 0
1 answer
120 views
geocoding nodes of graph dont find anything
I try to georeferenz the nodes of a network. So first I extract the nodes from the network like:
nodes_index <- rails_network %>% activate(nodes) %>% as_tibble() %>% st_as_sf() %>% ...
Score of 1
1 answer
62 views
How to change the Camera position for Google Maps Composable using a UK postcode or address
Is there a way to convert a String which could hold a UK postcode to a LatLng object that can be used to change the camera Position on the android application using Google Maps Android SDK?
Tried ...
Score of 0
1 answer
3296 views
How to Implement Real-Time Live Location Tracking in Flutter Apps?
I'm developing a Flutter app that requires real-time live location tracking. My objective is to continuously track and update the user's location in real-time. However, I'm facing some issues and need ...
Score of 1
1 answer
857 views
Geocoding API's response was not valid JSON (in response to a basic search)
I am using the Geocoder gem (https://github.com/alexreisner/geocoder) version 1.8. Whenever I run Geocoder.search('Paris') in the Rails console, I get this response:
Geocoding API's response was not ...
Score of 0
1 answer
751 views
Why some addresses (and not others) give errors on nominatim.openstreetmap.org?
I'm using PHP to geocode some addresses with OpenStreetMap. Here's my code:
$addr = 'Brasília/DF, Brasil';
$url = 'https://nominatim.openstreetmap.org/search?q='.str_replace(' ','+',$addr).'&...
Score of 0
2 answers
159 views
Unable to convert address to SDO_GEOMETRY using SDO_GCDR.GEOCODE_AS_GEOMETRY
I have a table containing next columns in my table in Apex Oracle:
location_id: number
address: varchar2
country: varchar2
I want to mark all those locations using SQL query on a map on a page in app ...