Questions tagged [gps]

Abbreviation for Global Positioning System; a navigational system using satellite signals to fix the location of a radio receiver on or above the earth's surface. Also "GPS" refers to the radio receiver used to receive GPS signals.

Global Positioning System (GPS) is a space-based global navigation satellite system (GNSS) that provides reliable location and time information in all weather and at all times and anywhere on or near the Earth when and where there is an unobstructed line of sight to four or more GPS satellites.

It is freely accessible to anybody with a GPS receiver. Apple, Google, and other mobile providers have developed frameworks to deal with the location services calculated from GPS, WiFi or Cell Tower.

More information can be found at:

10257 questions
3
votes
2 answers

GPS getting me only one location and that never changes Android

in my app I am able to use the GPS but the problem is that it always getting me the same location. Everytime I am retrieving the location from that on, it gives me the same value. First time it was fetched and I was online, wirelessly. Then i went…
ghostrider
  • 5,131
  • 14
  • 72
  • 120
3
votes
1 answer

Find user position with a timeout

I need to find the user position with a timeout, then I wrote a code like this Start a LocationListener GPSLocationListener = new LocationListener() { @Override public void onLocationChanged(Location location) { …
BQuadra
  • 789
  • 2
  • 11
  • 20
3
votes
1 answer

How to get "Turn on WiFi for more Accurate User Location" in iOS 6

In Apple Maps this Alert comes up when you disable wifi and turn on Cellar Data. How can I implement this Alert in my own Application?
iProgrammed
  • 980
  • 2
  • 10
  • 29
3
votes
0 answers

GUIStatics cannot be resolved to a variable

I'm trying to get the user location name from the following code. I'm receiving error as GUIStatics cannot be resolved to a variable. How to correect it. Also can anyone tell is this code the correct method to achieve the location name or…
user1954492
  • 495
  • 3
  • 13
3
votes
4 answers

Androids onStatusChanged not working

I'm trying to get notifications if the status of GPS_PROVIDER changes. I found the following code here (http://hejp.co.uk/android/android-gps-example/), but I'm not getting notifications. Right now I'm in a building and can't get GPS signal, so…
thedeepfield
  • 6,138
  • 25
  • 72
  • 107
3
votes
2 answers

GPS not update location after close and reopen app on android

After I closed my app for a while then reopen it again,my app will not update location or sometime it will take long time( about 5min) before update. How can I fix it? This is my code private LocationManager lm; private LocationListener…
mrmamon
  • 151
  • 1
  • 3
  • 7
3
votes
3 answers

GPS to calculate distance between two points on windows phone 7

i am using GPS to calculate distance between two points i.e. i am using windows phone as a tape measure but when i start i dont get the correct value infact even if i am standing still it gives me hundreds of meter here is my code …
Hamza
  • 1,593
  • 2
  • 19
  • 31
3
votes
1 answer

How determine if point is within rectangle given all latitude/longitude coordinates?

If given x/y coordinates for all 4 corners of rectangle, and then another x/y, it's easy to determine if the point is within the rectangle if top left is 0,0. But what if the coordinates are latitude/longitude where they can be negative (please see…
user1761600
  • 233
  • 1
  • 5
  • 10
3
votes
1 answer

GPS almanac with Delphi

I need use Delphi to create an application about GPS almanac. Something like this: Where can I download the data and read them? (to plot them). My user must be select a day and a latitude/longitude position, then I need plot the GPS availability…
Martin
  • 1,065
  • 1
  • 17
  • 36
3
votes
3 answers

Android GPS battery usage

I am writing a program in Android that uses GPS. It will prompt the user to turn on location services if it is not on (which I guess is equivalent to turning on gps ?). My question is: does the gps immediately start consuming extra battery power as…
Cemre Mengü
  • 18,062
  • 27
  • 111
  • 169
3
votes
1 answer

Find GPS location in Java EE application

I have a Java EE application in which I would to add the function of finding the geo location of the mobile users. I would like to track drivers, know their current location in a periodic basics. My app is a basic Java EE application. So if I am…
Sam
  • 1,298
  • 6
  • 30
  • 65
3
votes
1 answer

Unable to write gps location to exif

I have an app that gets the location of the user using LocationManager and tries to write that data into the Exif Data of an image. For some reason the value never gets written and the location remains null. Here is my function for writing to the…
Nick Chris
  • 281
  • 2
  • 7
  • 17
3
votes
1 answer

GPS Mock - I only can mock one time the location

I have a service to mock GPS location doing a loop between a list of coordinates, but the method onLocationChanged() only detects the first mock of the GPS. I mean, if I launch one GPS program it only detects the first call of my service, doesn't…
adalpari
  • 3,052
  • 20
  • 39
3
votes
1 answer

Looking up GPS coordinates for United States counties

I'm currently working on a small project to try to visualize 2012 election results based on population density, per county. I'm parsing relevant data in Python, then a colleague of mine is using AS3 to visualize the data. What was once just a…
aaronmar
  • 161
  • 1
  • 4
  • 9
3
votes
1 answer

How to learn programming GPS applications in Android

A few weeks ago, I began learning to write Android applications, that must use GPS (getting position and saving it to a database). But I found so much information; I don't know where to start! Question: Please help me make my studying comprehensive…
opuhliyvladyslav
  • 167
  • 1
  • 1
  • 11
1 2 3
99
100