Questions tagged [geolocation]

Geolocation is the identification of the real-world geographic location of an object, such as a cell phone or an Internet-connected computer terminal. Use [w3c-geolocation] for questions about the W3C Geolocation API.

Geolocation is closely related to positioning but can be distinguished from it by a greater emphasis on determining a meaningful location (e.g. a street address) rather than just a set of geographic coordinates. Specifically this involves the use of advanced RF location systems utilising, for example, Time Difference Of Arrival (TDOA) where greater specificity of location is possible. TDOA systems often utilise mapping displays or other graphical information system. This is in contrast to more traditional radio location technologies, for example Direction Finding where a line of bearing to a transmitter is achieved and not the specific location.

In terms of the internet and computer geolocation can be performed by associating a geographic location with the Internet Protocol (IP) address, MAC address, RFID, hardware embedded article/production number, embedded software number (such as UUID, Exif/IPTC/XMP or modern steganography), invoice, Wi-Fi connection location, or device GPS coordinates, or other, perhaps self-disclosed information. Geolocation usually works by automatically looking up an IP address on a WHOIS service and retrieving the registrant's physical address.

IP address geolocation data can include information such as country, region, city, postal/zip code, latitude, longitude and timezone. Deeper data sets can determine other parameters such as domain name, connection speed, ISP, language, proxies, company name, US DMA/MSA, NAICS codes, and home/business.

The word geolocation is also used in other contexts to refer to the process of inferring the location of a tracked animal based, for instance, on the time history of sunlight brightness or the water temperature and depth measured by an instrument attached to the animal. Such instruments are commonly called archival tags or dataloggers.


Useful links


Related tags

12397 questions
3
votes
3 answers

Is there a way I can get World shapefiles without the countries included?

I'm totally new to shapefiles so I might be missing something obvious but. I'm trying to get the following shapefiles A Global shapefile that only has the world boundaries Every continent shapefile that only has the continent boundaries and no…
E_K
  • 2,159
  • 23
  • 39
3
votes
3 answers

A good google.maps geolocation api?

Is there a google maps api that will allow you to pass in a location name and it will return coordinates that point to the location on googlemaps?
Ctak
  • 243
  • 1
  • 2
  • 13
3
votes
0 answers

Is it possible to use AWS Cloudfront as an IP address location service?

Is it possible to send Cloudfront a header to have it look up the IP address in their database, rather than the IP address of the client? For example, if a server wants to determine location based on an IP address, it could set an x-real-ip and…
3
votes
3 answers

Attach event listener on geolocation permission granted

My Setup: I have got some very simple code: const onSuccess = () => { console.log('success'); } const onError = () => { console.log('error'); } navigator.geolocation.getCurrentPosition(onSuccess, onError); My actual code contains a bit…
Vishal
  • 6,238
  • 10
  • 82
  • 158
3
votes
1 answer

Android Location.distanceBetween and Location.distanceTo difference

I encounter some issues on trying to calculate distance between one location and a list of others (in order to get the closest one). I tried by using Location.distanceBetween(...) and location.distanceTo(...), the two method are working but both of…
Weber Antoine
  • 191
  • 2
  • 2
  • 10
3
votes
1 answer

React Native Map : How to fit Polyline coordinates to screen?

I am working with react native map and i used polyline and Marker but when i display polyline to map it not fit to screen its just shows some part of line in screen other i have to scroll then i see, so how to fit polyline coordinatin inside current…
Piotr
  • 145
  • 4
  • 16
3
votes
5 answers

How do I get the geo location data from an image using JavaScript / PHP?

I am making a custom Google Maps application. I'd like to display all of my iPhone images on the map and I'd like to retrieve the geo location data using JavaScript or PHP. Is this possible? If not, what other way can I get the data? Thanks.
Sabai
  • 1,579
  • 5
  • 24
  • 40
3
votes
1 answer

If I'm running my App Engine app on localhost, will I not see a value for X-AppEngine-Country?

According to the Release Notes: All user request have an X-AppEngine-Country header which contains the ISO-3166-1 alpha-2 country code for the user, based on the IP address of the client request. My app is running on localhost with the…
3
votes
3 answers

java.lang.SecurityException: Requires ACCESS_FINE_LOCATION or ACCESS_COARSE_LOCATION permission

I am developing an android where I want to get user location using NETWORK_PROVIDER,I am not using GPS for this purpose.I am getting following exception java.lang.SecurityException: Requires ACCESS_FINE_LOCATION or ACCESS_COARSE_LOCATION…
Altaf
  • 5,150
  • 10
  • 39
  • 55
3
votes
1 answer

Multi-party Real-time GPS tracking for IOS

I am looking for a way to do real-time tracking of multiple vehicles (with iphones) at a time. Instamapper is close to what I need - I can install the app to run in the background of driver IOS devices and then capture the GPS through the…
jonmc12
  • 562
  • 8
  • 11
3
votes
1 answer

Determining whether html5 geolocation function is available AND whether it knows where you are?

I'm experimenting with HTML5 geolocation, and embedded a small test script into a page to return my present co-ordinates. The current application I have in mind for using this is as a 'nice to have' feature on site i'm working on - it includes a…
Codecraft
  • 8,291
  • 4
  • 28
  • 45
3
votes
0 answers

navigator.geolocation.watchPosition twice in React: update frequency is different

I have two calls to navigator.geolocation.watchPosition. One is being used in a component I'm importing before ReactDOM render, one inside a React component. The problem is that the callback in imported component is working great, but the one I…
Nikita Fedorov
  • 790
  • 1
  • 12
  • 40
3
votes
3 answers

Error: Type 'Geolocator' not found and 'Placemark' isn't a type

I am getting this error: Type 'Geolocator' not found and 'Placemark' isn't a type. Whenever I try to do flutter run, I get this error: lib/screens/register.dart:33:9: Error: Type 'Geolocator' not found. final Geolocator geolocator =…
Alok
  • 8,452
  • 13
  • 55
  • 93
3
votes
4 answers

geolocator 6.0.0+1 distanceBetween() not working in flutter

i hope everyone is safe i am using flutter,and i want to calculate distance between two locations so i have installed geolocator 6.0.0+1 from pub.dev here, with that i can find the location of user but i cannot use the inbuilt method called **…
Arvind suresh
  • 221
  • 1
  • 3
  • 12
3
votes
0 answers

Location service in headless state is not working in android while app is terminated in flutter

I am using flutter_background_geolocation library to fetch location change event in flutter app. Location service is working perfect in while app is in foreground mode and background mode, but it is not working while app is terminated. Please let me…
1 2 3
99
100