12,261 questions
-3
votes
0
answers
95
views
How do I fix geolocation permission error "Tracker:178 [Violation] Permissions policy violation: Geolocation access has been blocked " [closed]
I have an issue with a site I'm building. My site uses IIS and my domain is through GoDaddy. My site features geolocation and Azure Maps to track the vehicle's positions, as well as asset location ...
Advice
1
vote
1
replies
68
views
How can I generate waypoints directly on a highway instead of nearby locations?
I am building an AI system that generates routes and creates waypoints for navigation.
The problem is that when the AI identifies points along a highway, it often returns nearby locations (addresses, ...
-4
votes
1
answer
89
views
Detect simulated location [Cordova]
I want to detect simulated location, I’ve tried on iOS to use isSimulatedBySoftware flag from CLLocationSourceInformation, but It didn’t gave me a stable result while using apps like:
PoKeep
iMyFone ...
1
vote
1
answer
81
views
Google Books API returns totalItems = 0 in France but works from US IP – regional restriction?
I’m experiencing a consistent issue with the Google Books API (/books/v1/volumes) that appears to be region-related.
Observed behavior
When executing requests from France (both Wi-Fi and mobile ...
0
votes
2
answers
165
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 ...
3
votes
0
answers
110
views
Keeping BLE and GPS active in background with screen locked (React Native + Expo)
I’m developing a mobile app in React Native using Expo, and I’m testing it through an EAS development build (not Expo Go). The app uses Bluetooth Low Energy (BLE) to communicate with an external ...
0
votes
1
answer
141
views
Python moving point with pyproj.Geod.fwd and checking with pyproj.Geod.fwd do not add up
I have a g_w = pyproj.Geod(ellps = "WGS84"), and a point in the map.
If I move the point with
c1 = g_w.fwd(coords[0], coords[1], 0, dy)
c2 = g_w.fwd(c1[0], c1[1], 90, dx)
and then check the ...
0
votes
2
answers
117
views
Electron: Alternative to navigator.geolocation.getCurrentPosition without API key? [closed]
In my Electron app, navigator.geolocation.getCurrentPosition() always fails. It seems that Electron (Chromium) no longer provides free geolocation and expects a third-party service with an API key (e....
0
votes
0
answers
58
views
React native location getting feature
I want to add feature in my app where a salesperson logs in and goes out daily to meet random customers and sell banking products. My boss wants a way for the manager to confirm whether the ...
Best practices
0
votes
3
replies
175
views
Converting place/location into timezone
I am using XYZ geoLocation IP details provider API and it giving output in below format
{
"ipAddress": "66.XXX.YY.XXX",
"network": "66.XXX.YY.Z/AB",
...
0
votes
0
answers
38
views
Google Geolocation API Fails when I send many BSSIDs, but picking a random subset works
I am using Google's Geolocation API to resolve a list of Wi-Fi BSSIDs to location; when I send a list of 45 BSSIDs and RSSI, I get a 404 meaning no location was found, when I select only the top 10 or ...
-4
votes
1
answer
166
views
I have a very long list of cities across many countries. How can I add geographical information such as municipality, state, region, etc.? [closed]
I have a column that contains the place of residence of participants. Some reported as "city/village, country", "postcode city, country", "region, country", etc. There ...
0
votes
0
answers
50
views
GPS Speedometer React Native gets throttled by phone
I've been trying to implement a speedometer app that measures your GPS coordinates and returns the speed. Now, I've been using expo-location package but it has some problems.
const { status } = ...
0
votes
0
answers
49
views
ASP.NET MVC Navigator.geolocation.getcurrentlocation sometimes remembers last location and is not refreshed
I have a webpage which allow a user to walk around and click a button to find their position on a map. This can be very accurate but often, if they have clicked the button before, it returns the same ...
0
votes
0
answers
231
views
iOS Terminates Background Task After 30 Seconds in Release — How to Keep Getting Location Every 10 Minutes?
I'm developing a React Native app that collects location every 10 minutes in the background. On iOS, everything works fine in debug mode, but in release mode, my app is suspended or killed after ~30 ...