D Disco Member Licensed User Longtime User Jun 23, 2013 #1 I'm using the Google Maps library for B4A and I'm wondering if it has the "Idle" event? I can't seem to find it in the documentation if it does. I tried using the "CameraChange" event but it fires several times when zooming in and out. The "Idle" would be much better as it waits until all of the moving/zooming has been completed before firing. I use it for the web version of my app. Many thanks!
I'm using the Google Maps library for B4A and I'm wondering if it has the "Idle" event? I can't seem to find it in the documentation if it does. I tried using the "CameraChange" event but it fires several times when zooming in and out. The "Idle" would be much better as it waits until all of the moving/zooming has been completed before firing. I use it for the web version of my app. Many thanks!
Erel B4X founder Staff member Licensed User Longtime User Jun 23, 2013 #2 There isn't an idle event. You can use a timer with an interval of a few seconds. Disable and enable it in the CameraChange event. When it ticks then the map can be considered in the idle state. Upvote 0
There isn't an idle event. You can use a timer with an interval of a few seconds. Disable and enable it in the CameraChange event. When it ticks then the map can be considered in the idle state.
D Disco Member Licensed User Longtime User Jun 23, 2013 #3 Hmm.. that may work. I see what you mean about the "Idle" event, that is for v3. How about the "tilesloaded" event? That is in v2. How would I go about using that? Thanks again Upvote 0
Hmm.. that may work. I see what you mean about the "Idle" event, that is for v3. How about the "tilesloaded" event? That is in v2. How would I go about using that? Thanks again
Erel B4X founder Staff member Licensed User Longtime User Jun 23, 2013 #4 You can see the list of events here: Basic4android - GoogleMaps Upvote 0