We are using ESRI ArcGIS JavaScript API in one of our Mobile web app. When map is loaded first time, Onload event is fired. But when we change orientation from Portrait to Landscape, OnLoad event does not fired. We need such event so that when map is completely loaded in Landscape mode we can perform some opearion. We know that there is Orientation change event in javascript but we need event which should fire when Map is loaded completely in Landscape mode after orientation change event is fired?
Is there any Map event fired when map is loaded completely when we device is oriented from portrait to landscape mode?
1.1k Views Asked by Harshanand Wankhede At
2
There are 2 best solutions below
0

I think you may need a combination of two events:
- The javascript
orientationchange
event, and - The ArcGIS API map's
update-end
event.
In the handler for the orientationchange
event, set a flag variable to indicate that you're waiting for the end of an update. The handler for update-end
checks the flag to see if you've just changed orientation, does whatever magic you're trying to do, then unsets the flag.
This StackOverflow post might already answer your question:
How do I correctly detect orientation change using javascript and Phonegap in IOS?
There is also this blog post:
http://jbkflex.wordpress.com/2011/12/06/429/
Basically: