Q. Does the Google Map API get called if the element that is using a distance-from condition is hidden? The goal is to minimize calls to the API to reduce overall cost and cellular data traffic.
Example is it better to combine a conditional test or break it up:
GroupA (when X is true AND distance-from is true) Show
(stuff to show)
OR
GroupA (when X is true) Show
- GroupB (when distance-from is true) Show
(stuff to show)
Where GroupB is a sub-group within Group A.
IE: If GroupA is not visible would the distance-from in Group B still invoke the Google API call?
Thanks in advance,
John