Fire a moveend event after rendering

The moveend event is fired after rendering if there is no pending animation, current interaction, or other pre-render functions in the queue.
This commit is contained in:
Tim Schaub
2013-09-05 14:56:14 -06:00
parent cd11ebbc8a
commit 50ed564bf6
2 changed files with 11 additions and 1 deletions
+2 -1
View File
@@ -9,7 +9,8 @@ goog.require('ol.FrameState');
* @enum {string}
*/
ol.MapEventType = {
POSTRENDER: 'postrender'
POSTRENDER: 'postrender',
MOVEEND: 'moveend'
};