Shared module for map event type enum

This commit is contained in:
Tim Schaub
2016-12-27 13:52:02 -07:00
parent c6c105b62f
commit 3fd88b3a22
6 changed files with 33 additions and 32 deletions
-22
View File
@@ -36,25 +36,3 @@ ol.MapEvent = function(type, map, opt_frameState) {
};
ol.inherits(ol.MapEvent, ol.events.Event);
/**
* @enum {string}
*/
ol.MapEvent.Type = {
/**
* Triggered after a map frame is rendered.
* @event ol.MapEvent#postrender
* @api
*/
POSTRENDER: 'postrender',
/**
* Triggered after the map is moved.
* @event ol.MapEvent#moveend
* @api stable
*/
MOVEEND: 'moveend'
};