region-monitoring

Region monitoring while Device is in Airplane mode

余生长醉 提交于 2020-01-16 06:28:48
问题 I can see that from iOS 8.3 onwards , location services are working fine in airplane mode and per second locations are delivered. But I am not able to get the region monitoring ie, region exit or region enter when device is in ariplane mode. Can anybody help me with this?. What is the behaviour of region monitoring in airplane mode.? 来源: https://stackoverflow.com/questions/35654305/region-monitoring-while-device-is-in-airplane-mode

Region monitoring while Device is in Airplane mode

本秂侑毒 提交于 2020-01-16 06:28:09
问题 I can see that from iOS 8.3 onwards , location services are working fine in airplane mode and per second locations are delivered. But I am not able to get the region monitoring ie, region exit or region enter when device is in ariplane mode. Can anybody help me with this?. What is the behaviour of region monitoring in airplane mode.? 来源: https://stackoverflow.com/questions/35654305/region-monitoring-while-device-is-in-airplane-mode

Number of “region” monitored by RegionMonitoring, based on users current location in iOS7

断了今生、忘了曾经 提交于 2019-12-18 03:43:08
问题 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 current position with selected radius If the user cross that certain boundary (10 meter to 1000 meter) then it gives an "ExitRegion" alert message. And start "region monitoring" again based on users new current position. And the apps keep doing

Android - Need to add more than 100 geofences

谁说我不能喝 提交于 2019-12-17 18:14:50
问题 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 and it can be hundreds and more. I've read at the given link "You can have multiple active geofences, with a limit of 100 per device user." Is there any way add more then 100 geofences per device user ? Thanks! 回答1: Have an ArrayList with all the

Region Monitoring issues in IOS

守給你的承諾、 提交于 2019-12-13 04:23:40
问题 I am developing region monitoring from 4-5 months, and it was working fine before. Before a week or ago when we tested the code on device having IOS 7.1, we found an issue: when one registered region is detected, it never getting detected again until user move far from this region by distance 10Km, if user never crosses this range of 10Km, no Enter/Exit events will be called for that region. If user travels far distance 10 Km from the detected region, its Exit event will be called, and when

iOS 7 CoreLocation: region monitoring fails on the first time after location services are authorised

本秂侑毒 提交于 2019-12-12 10:37:11
问题 I identified a strange behaviour on my app using CoreLocation. I'm using the region monitoring functionality but, after authorising the location services (via popup or settings->Location Services) region monitoring fails (The operation couldn’t be completed. kCLErrorDomain error 5.). If I close the app and restart (therefore already authorised) everything works as expected. My code looks like this: -(void)initializeLocationServices { NSLog(@"Started location services"); locationManager = [

Android Estimote Region Monitoring

*爱你&永不变心* 提交于 2019-12-11 16:17:26
问题 I am trying to add the Estimote SDK into my Android app. I'm getting pretty close, but I'm having some trouble monitoring for a region. I am following the Estimote Android SDK Guide on GitHub at https://github.com/Estimote/Android-SDK. For some reason, the onEnteredRegion and onExitedRegion methods are not firing at all. I'm would like them to trigger any time the app sees an Estimote beacon. Thanks! Here is the code I have so far. Nothing too complicated: public class MainActivity extends

How to have a working Geofence even if the app is not running? [duplicate]

你说的曾经没有我的故事 提交于 2019-12-08 01:54:53
问题 This question already has answers here : Will iOS region monitoring call didEnterRegion on my app if my app is in a terminated state? (2 answers) Closed 5 years ago . I'm creating a location aware application. I was able to create geofences already, when I test it in my iPhone, I noticed that the calllback methods -didEnterRegion and -didExitRegion are being called when the application is running in foreground and background. But when I killed the application (meaning the application state is

How to have a working Geofence even if the app is not running? [duplicate]

天涯浪子 提交于 2019-12-06 14:10:41
This question already has answers here : Will iOS region monitoring call didEnterRegion on my app if my app is in a terminated state? (2 answers) Closed 5 years ago . I'm creating a location aware application. I was able to create geofences already, when I test it in my iPhone, I noticed that the calllback methods -didEnterRegion and -didExitRegion are being called when the application is running in foreground and background. But when I killed the application (meaning the application state is "not running") the said method call backs are not being called. So, what am I missing here? Is there