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
5
votes
2 answers
Leaflet detect when marker goes into and out of a circle
I am trying out geofencing with leaflet and I have a marker that can be moved and a circle on a map.
Here is the full code:
user11832840
5
votes
2 answers
Android class 'GeofencingClient' doesn't exist?
I'm attempting to follow the Android geofencing guide, but I immedietely get stuck when I try to declare a GeofencingClient variable:
Normally I would be able to just press Alt+Enter and select "Import class", but this option isn't available…

SimpleJ
- 13,812
- 13
- 53
- 93
5
votes
3 answers
Flutter Geofences
Is there a platform that allows me to create and monitor geofences and has a flutter API that enables me to detect whether a user using my Flutter app is within the perimeter of that geofence?

spongyboss
- 8,016
- 15
- 48
- 65
5
votes
0 answers
Enter or Exit trigger not get fired when i am using geofencing
I am using geofencing in my Android app following this link.
I am creating and adding geofencing object in my default visible activity and listening to its events with the help IntentService as described in above link.
Geofence object successfully…

Rukmani Lodhi
- 91
- 4
5
votes
2 answers
Pending Intent not triggering Intent Service in Geofencing
I am using an intent service to create a notification when user enters in the defined geofenced area.The problem is that when I first run the application it works fine and I am getting the pending-intent on my Intent Service, but after some…

Akash Bisariya
- 3,855
- 2
- 30
- 42
5
votes
1 answer
How does geofences behave when there are overlapping CLRegions
I can't seem to find any information on how Core Location handles overlapping geofences. In my particular case I was wondering if a smaller geofence would be registered over a bigger, overlapping region. Does someone know this?

Oscar Apeland
- 6,422
- 7
- 44
- 92
5
votes
3 answers
Swift: Geofencing / geolocations near user location
Problem:
I'm trying to make it so that it uses the user's location all the time and constantly checks to see if it is within 5 miles of the CLLocationCoordinate2D points I have set. If so, it sends a alert if the app is open or a notification if the…

Hunter
- 313
- 5
- 20
5
votes
1 answer
Android - Need to add more than 100 geofences
I'm developing an application where user can set multiple locations. I get succeed to show notifications when user get Enter or Leave specific region using GeoFencing.
Now, there is situation that i need to provide monitoring for all saved locations…

Naitik
- 796
- 11
- 32
5
votes
3 answers
Android geofencing when app is killed
My main requirement would be to have a service having its own process and trigger its own geofencing event. I'd like the user to be notified from the notification center when he enters a geofence, even if the app is killed.
I read about services and…

Tíbó
- 1,188
- 13
- 28
5
votes
1 answer
Location Manager ProxmityAlert always says entering
I want to alert the user when he is near a particular location. For this I have included a ProxmityAlert and a corresponding service in my app. But no matter what coordinates I give, it always shows me "Thank you for visiting my Area!! entering" Am…

Sparkplug
- 485
- 7
- 21
5
votes
2 answers
Remove Geofence after triggered
I use Geofences in my app, everything works fine except the removal of triggered geofences.
I red the guide from the official documentation of Android but they don't explain how to remove a geofence inside of the IntentService.
Here is the code of…

Gp2mv3
- 1,435
- 20
- 33
5
votes
0 answers
Add more than 20 regions to geofencing ios
I want to add 100 of regions to geofencing.(apple limit it to 20)any one have better idea for it.please help me.
currently im using significant location change.when significant location change,
- (void) locationManager:(CLLocationManager *)manager…

mychar
- 1,031
- 1
- 11
- 20
5
votes
1 answer
Number of "region" monitored by RegionMonitoring, based on users current location in iOS7
I am working on such a project where apps do the following things:
User select a radius (10 meter to 1000 meter) and go to next viewController by pressing "Go" button
Here apps Grab users current position and start "region monitoring" based on that…

Tulon
- 4,011
- 6
- 36
- 56
5
votes
2 answers
Geo fencing in PHP and MySQL using latitude, longitude and radius
I have a MySQL table with columns latitude, longitude, userId and radius. When the user provides his current location (lat, long) along with a radius, I want to query the table to provide him with the overlapping locations based on the two…

iSee
- 604
- 1
- 14
- 31
5
votes
1 answer
Android Geofencing API bug with GPS?
I found some people reporting a similar issue but no answers for that.
I'm using the android Geofencing API released in Google I/O 2013. I followed the "Creating and Monitoring Geofences" lesson and its sample.
When I use this API with wi-fi…

Derma
- 73
- 4