Questions tagged [location-aware]

19 questions
7
votes
1 answer

Location Alarm for Android?

When starting my app, several POI coordinates shall be added to the Android System. Some hours later, my app is closed and the user walks close to one of the POI he shall get notified e.g. through a status message. Is this the right approach for my…
4
votes
1 answer

Where is a sample of some Javascript code for Location Aware Browsing in Firefox 3.5?

Does anyone know where I can find an example of some javascript code for the new location-aware features of Firefox 3.5?
leeand00
  • 23,306
  • 34
  • 125
  • 265
3
votes
1 answer

How does google maps get location on android device?

I am an android developer and have been using it for a while to develop context-aware apps. Location is one of the most important thing for context aware and accuracy of that location is very important. I know how to get location from GPS using…
chuthan20
  • 5,277
  • 1
  • 14
  • 21
1
vote
2 answers

Problem with location aware XML file

I am making location aware application. I have XML file on server containing information of different stores with latitude and longitude coordinates. Now in my application i can get my current latitude and longitude coordinates and can parse XML…
Mann
  • 5,367
  • 6
  • 42
  • 54
1
vote
1 answer

Android Studio: Compilation Failed: org.gradle.internal.exceptions.LocationAwareException

I am working on an application. My app is running perfectly. Don't know what goes wrong and I am continuously getting this error when running the app. I tried almost each and everything written on internet but failed to solve the error. I am…
1
vote
0 answers

Determining when a user enters a building in iOS

I'm writing a program similar to runkeeper via Swift that keeps track of a user's movement. I do not have any trouble in monitoring the user's location, however, I am wondering if there is a way to determine whether a user has entered a building or…
KFDoom
  • 596
  • 1
  • 5
  • 18
1
vote
1 answer

java.lang.SecurityException when starting location service

I tried to run location service as background service. It works fine in activity, but when I used service, I got java.lang.securityException: Client must have ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission to perform any location…
1
vote
3 answers

Easiest Way to Make ASP.NET Application Location Aware?

What is the quickest way to make my ASP.NET application location aware? I have seen some API examples that are in C++ and not able to load into an ASP.NET application. Are there other ways to go about this? I just need to be able to get a general…
Unknown Coder
  • 6,201
  • 19
  • 73
  • 120
1
vote
2 answers

Get list of surrounding buildings based on coordinates from open database on Web

I would like to get a list of well-known buildings(museums, castles etc..) within X meters radius of the current coordinate. I would like to query them in PHP. Do you know any such database that can be queried?
Pentium10
  • 190,605
  • 114
  • 394
  • 474
1
vote
1 answer

Android Google Play Services Location Based APIs workflow

I am new to android programming. I am planning to make an app that is location sensitive. I am trying to use Google Play Services' Location Based APIs to detect the user's current location. For this I have been following the sample code and the…
qre0ct
  • 4,420
  • 6
  • 37
  • 73
1
vote
0 answers

Windows Phone AdRotator, location aware

I'm planing to use adrotator with location aware apps. My app to pass on certification needs to have an option to disable the use of location (and a location policy), but I can't find any way to turn off the location on the adrotator, I searched…
DVD
  • 1,604
  • 3
  • 16
  • 34
0
votes
1 answer

Unable to make my app location aware

I am following the android tutorial on making your app location aware here but when I run it in the emulator the below method @Override public void onConnectionFailed(@NonNull ConnectionResult connectionResult) { Log.i("state", "Connection…
Baz M
  • 75
  • 1
  • 10
0
votes
1 answer

Gradle project sync faild

I just clone a project from git and i am trying to compile it, but without a success. i do not understand which file/package is missing. i try to look for missing packages but i did not found nothing. the main message error is: Error:(132, 0)…
Matan Tubul
  • 686
  • 3
  • 8
  • 28
0
votes
1 answer

Restrict a Service Within a Specific Area

Following is my scenario 1: First i want to define a service offered in 3 particular areas. I want to save those areas in mongodb.(i don't know whether 1 area would be saved as one lat long value or an array of lat long ) 2: i want to offer the…
0
votes
3 answers

Haversine based Server returns data only when coordinates are an exact match

I have a location aware server in Django that's supposed to return data only when the user is within a given radius of the database entry.. I found a code snippet in python that does just that online (here or elsewhere, I really can't remember) and…
1
2