A geo-fence is a virtual perimeter for a real-world geographic area. Geo-fencing is a means of notification when a location-aware device crosses this virtual perimeter.
Questions tagged [geofencing]
780 questions
4
votes
1 answer
Want to create a geofence for google map. How to draw on the map to select geofence?
I have been working on creating geofence in google map. I have created a form where user can put latitude and longitude. Now I want to show that particular selected part in the map. Once the user put the value and press "create geofence", it should…

shumana chowdhury
- 1,742
- 2
- 14
- 34
4
votes
3 answers
Geofencing with only GPS does not work in android
I want to use Geofencing location API in my application to set certain Point of Interest. I have used this demo provided by google. I am able to run this demo when WIFI and location services both are on. But this doesn't seem to work when only GPS…

Name is Nilay
- 2,743
- 4
- 35
- 77
4
votes
0 answers
Determine POIs with Proximity Alerts and get their distance to the current position
It's me again having another problem with my location app. Let me explain the current situation:
I have a file stored on my SD card which contains various combinations of latitudes and longitudes in order to define different POIs. These are read…

h4wX
- 147
- 7
4
votes
1 answer
Android Update Geofences
What's the best way to update geofences in Android? Is it to first remove the old set of Geofences and then add the newly updated list like this:
LocationServices.GeofencingApi.removeGeofences(
mGoogleApiClient,
…

Tom Hammond
- 5,842
- 12
- 52
- 95
4
votes
1 answer
How to start a notification in IntentService
I'm try to send a notification when a user enters or exits a specific geofence.
I already can log when a user enters or exits the geofence. But no notification is showed up when this happened. Is there anything i'm missing? I implemented a theme in…

Theo Jansen
- 81
- 1
- 4
- 11
4
votes
2 answers
Geofence is not being triggered in the background in windows phone 8.1
I'm trying to implement geofencing in Windows phone 8.1. First I wanted to create a sample Project to understand how it Works, but i couldnt make it works. What I'm trying to achieve is basically, I'll set the coordinates and close the app by…

Emrah Ozbekar
- 61
- 3
4
votes
3 answers
Draw a Circle GeoFence with Preview in Android
First of all my question is a bit different from other questions about GeoFencing in gmap in Android.
When the user start to define a circle as a GeoFence area I want to show a fixed circle in the center of the screen. In this stage the user should…

Harun Oğuzorhan
- 59
- 1
- 5
4
votes
0 answers
How to make Geo Fencing without using google play Service (Android)
I'm looking to get notifications when you enter or leave an area. I DO NOT want to use google play services.
Is it just a matter of setting up an alarm service, then call a background service to the GEO part?
I can't find any good examples to how to…
user4252498
4
votes
3 answers
Alert when two users/friends are near to each other - Android Proximity
I tried searching but i couldn't find anything.
My Question is "How can i alert 2 or more users if they are nearby each other?" in android using Geo-fencing or something else.
Say, If a UserA is in football ground and UserB walking nearby that…

Rafique Mohammed
- 3,666
- 2
- 38
- 43
4
votes
1 answer
Geofencing is not working properly
In my application I want do geofencing. I have list of locations, for which I am setting geofencing regions. All location have radius 100m. Following is the code to set Region:
CLLocationCoordinate2D cord;
cord.latitude = [location.latitude…

OnkarK
- 3,745
- 2
- 26
- 33
4
votes
2 answers
Trigger an event when the user exits a geofence
Is there a way to define a geofence (center and radius) around the current location of an iOS device, and have the system trigger a callback function in my app when the device exits the geofence? Will this mechanism can wake up a closed app?
I would…

Adam Matan
- 128,757
- 147
- 397
- 562
4
votes
0 answers
android geofencing without calling requestlocationupdates
I am developing an app which is a geofencing based location awareness app. My concern is that will the geofencing will work without we programatically requesting the location updates by calling requestlocationupdates. In iOS when they request for…

Maddy
- 83
- 1
- 13
4
votes
3 answers
Unable to display notification when entering GeoFence in Android
I am working on GeoFencing in Android and I am stuck at one point. My task is to show notification to user when he enters/exits a Geofence area defined by me.
Here is my code:
Activity class
public class TestMapActivity extends FragmentActivity…

Parth Doshi
- 4,200
- 15
- 79
- 129
4
votes
4 answers
startMonitoringForRegion is not calling didEnterRegion if the app is started within the region
I'm having an issue where my app will not fire the didEnterRegion event if I start the app within the region. If I start the app outside the region and then enter the region, it fires. If I start the app inside the region, then leave the region,…

Ben Wilkins
- 866
- 10
- 12
4
votes
2 answers
Tracking more than 100 simultaneous geofences with the new Android API
I have around 3500 geographical points of interest in an area of 9000 km^2, and I want my app to run in the background and notify the user whenever he or she is in proximity to any of the aforementioned points.
The new Geofence API introduced…

aadnk
- 43
- 2
- 4