Use oli.FrameState instead of ol.FrameState
This commit is contained in:
+2
-3
@@ -2,7 +2,6 @@ goog.provide('ol.MapEvent');
|
||||
goog.provide('ol.MapEventType');
|
||||
|
||||
goog.require('goog.events.Event');
|
||||
goog.require('ol.FrameState');
|
||||
|
||||
|
||||
/**
|
||||
@@ -20,7 +19,7 @@ ol.MapEventType = {
|
||||
* @extends {goog.events.Event}
|
||||
* @param {string} type Event type.
|
||||
* @param {ol.Map} map Map.
|
||||
* @param {?ol.FrameState=} opt_frameState Frame state.
|
||||
* @param {?oli.FrameState=} opt_frameState Frame state.
|
||||
*/
|
||||
ol.MapEvent = function(type, map, opt_frameState) {
|
||||
|
||||
@@ -32,7 +31,7 @@ ol.MapEvent = function(type, map, opt_frameState) {
|
||||
this.map = map;
|
||||
|
||||
/**
|
||||
* @type {?ol.FrameState}
|
||||
* @type {?oli.FrameState}
|
||||
*/
|
||||
this.frameState = goog.isDef(opt_frameState) ? opt_frameState : null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user