61 lines
1.1 KiB
JavaScript
61 lines
1.1 KiB
JavaScript
goog.provide('ol.MapEvent');
|
|
goog.provide('ol.MapEventType');
|
|
|
|
goog.require('goog.events.Event');
|
|
|
|
|
|
/**
|
|
* @enum {string}
|
|
*/
|
|
ol.MapEventType = {
|
|
|
|
/**
|
|
* 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'
|
|
|
|
};
|
|
|
|
|
|
/**
|
|
* @classdesc
|
|
* Events emitted as map events are instances of this type.
|
|
* See {@link ol.Map} for which events trigger a map event.
|
|
*
|
|
* @constructor
|
|
* @extends {goog.events.Event}
|
|
* @implements {oli.MapEvent}
|
|
* @param {string} type Event type.
|
|
* @param {ol.Map} map Map.
|
|
* @param {?olx.FrameState=} opt_frameState Frame state.
|
|
*/
|
|
ol.MapEvent = function(type, map, opt_frameState) {
|
|
|
|
goog.base(this, type);
|
|
|
|
/**
|
|
* The map where the event occurred.
|
|
* @type {ol.Map}
|
|
* @api stable
|
|
*/
|
|
this.map = map;
|
|
|
|
/**
|
|
* The frame state at the time of the event.
|
|
* @type {?olx.FrameState}
|
|
* @api
|
|
*/
|
|
this.frameState = opt_frameState !== undefined ? opt_frameState : null;
|
|
|
|
};
|
|
goog.inherits(ol.MapEvent, goog.events.Event);
|