The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
4 views

requestLocationUpdates with PendingIntent and Broadcast - what broadcasts do I get

I have setup an alarm which is received by a BroadcastReceiver which launches a WakefulIntentService LocationMonitor). In the service I have : private static final int MIN_TIME_BETWEEN_SCANS = 1 * 30 ...
1
vote
1answer
19 views

What is the use of “Maintain a current best estimate” of location Android?

I've read the documentation and this. What I don't understand is why this function isBetterLocation() even exists. The function tells the difference between "current location fix" and "new ...
0
votes
2answers
22 views

What happens when we call requestLocationUpdates()?

What is the chain of callbacks when requestLocationupdates() is called? I understand that it calls onLocationChanged but what if the locations is not changed? what if same locations is received? Or ...
0
votes
0answers
88 views

Why GPS of Google Maps App is more accurate than other apps? [closed]

We develop an App about Navigation. But lots of users told us the gps is not accurate. They always compare to Google Maps. in our app, Location Provider is set to GPS, Wifi. Why Google Maps can get ...
0
votes
3answers
174 views

Network location provider not giving location android

I am developing small android application in which i wanted to find out user current location by using network provider. I tried this in following ways but its not giving me put : ...
0
votes
1answer
213 views

AngularJS routeProvider not adding hash at the end of URL

I have the following routeProvider configured: angular.module('myModule').config ['$routeProvider', (provider) -> provider .when '', templateUrl: '/templates/dashboard.html' .when ...
0
votes
0answers
28 views

Data Flow for getting Location in proximityAlert using LocationManager.NETWORK_PROVIDER

i developed an app which will give u alert when u reach any position using Network provider.now i have to create a ppt in which i have to show how i am getting location from mobile device using ...
3
votes
3answers
253 views

android GPS calibration

When moving a big distance, like to another city, with the GPS off, it takes very much time for it, when turned on, to get the first correct point. So if by example I register to the gps provider, it ...
0
votes
1answer
111 views

Update interval value for continuous GPS location

I am working on a BlackBerry Application that is supposed to update the location at fixed intervals. The interval value can be selected/changed from a slider. It varies between 1 minute, 2 minutes, 5 ...
0
votes
1answer
309 views

Anyones knows how Android's Network Location Provider works? [closed]

Does anyone know how Android's Network Location Provider works? For example, given a list of cells and a list of wifis, how does Android's Network Location Provider determine where exactly I am? I ...
1
vote
0answers
227 views

Android location manager returns same gps coordinates every time

I am creating an app to send the phones location to my server. The issue i have is that the phone gives me the exact same gps coordinates every time i start the app. When i restart it the coordinates ...
0
votes
1answer
182 views

Android Map API 2.0 - callback that myLocation changed?

I don't think it is possible w/out actually using a LocationProvider, but figured I would see if anyone had any thoughts. Basically I have an app which has a PageView w/ a fragment which contains a ...
0
votes
2answers
177 views

android LocationListener not stopping GPS use

In my service, in some scenarios I can't stop the GPS from searching and draining the device battery. LocationListenerAgent.java @Override public void onCreate() { thisContext = this; // ...
0
votes
0answers
76 views

Android: Providing mock locations with respect to time

I have a text file that has a set of latitude and longitude values corresponding to different time. I want to set these locations(according to the time given in the text file itself). I am using a ...
0
votes
0answers
50 views

Blackberry LocationProvider returning Null

I am working of app which has to send Latitude and Longitude information to server. It was working a week ago perfectly suddenly it has stopped working. when ever we are trying to get locationprovider ...
0
votes
3answers
422 views

Extending abstract class in Android: A LocationProvider

This is probably a simple/dumb problem. I can't find any documentation on it. I want to create my own LocationProvider in Android. LocationProvider is an abstract class, with no constructor. import ...
1
vote
2answers
2k views

Android - It takes long to get a GPS-Signal. How to implement a good GPS provider?

i wrote an app, that tracks the gps location while jogging. Unfortunately the app needs some time to get a gps signal. When i open other apps like google maps, they are getting immediately the ...
-4
votes
2answers
497 views

Gprs Location Finder in android using Network_Service [closed]

i want to use location finder in android using GPRS
0
votes
2answers
395 views

How to get Status of LocationProvider in android

I have written the below code for getting the best provider available. private static String provider; public static String setCriteria(LocationManager locationManager) { Criteria ...
0
votes
1answer
204 views

how to quick get current lat long from device GPS system

My application is based on Event according to user current location. when i start my application Splash screen comes for 3 or 4 second .. then during splash screen i m getting current location of ...
4
votes
0answers
286 views

Current location using wi-fi on BlackBerry Storm 2 (9550)

I want to get the current location using wi-fi on my Storm 2 9550. I have implemented LocationProvider and it is working fine on the simulator after sending lat long manually, but it doesn't work on ...
0
votes
1answer
108 views

Java JME location provider not returning coordinates if not in startApp()

I believe I am doing something wrong in a Midlet application. Whenever I try to use the LocationProvider to find my mobile's position, two scenarios happen. If I start the application with a form ...
0
votes
2answers
227 views

Blackberry socket connection and threads

I am developing a program which have 2 buttons : Start and End. When i click Start it will start to get Locations in every 30sec. and send them to a server using socket connection. When i click the ...
1
vote
2answers
2k views

ANDROID: Help with LocationProvider

I am trying to acquire my location for an application I am working on. However I receive an error then force close when it tries to select the best provider. Any help on the issue would be much ...
2
votes
2answers
1k views

Is there any battery power consumption benefit if Network Location Provider (vs. GPS) is used?

Is there any real battery power consumption benefit if Network Location Provider (vs. GPS) is used? I believe there should be some benefit, but since I develop on emulator I can not prove my ...