Geofence Array

me36835

New member
Hello,
How can i loop throug my geofences? Is there a hidden array of geofences in the app?
 

mapriex

Active member
what you mean with loop? geofences can you set to a custom intervall. 10 secs, 20sec, 2 mins to check the geofence.
 

me36835

New member
I have several geofences.

for each geoffence in geofences
if geofence is ... Then
loop

or Like an Array of geofences

for i = 1 to geofences.count
if geofence is ... then
next i
 

mapriex

Active member
for each geoffence in geofences
if geofence is ... Then
loop

or Like an Array of geofences

for i = 1 to geofences.count
if geofence is ... then
next i
what do you want to achieve with this structure in this case?

in general every geofence asking frequently its state. so if you create 3 geofences, you geofence1, geofence2 and geofence3. if you group it in one macro you can easy control all geofences together.
 
Top