Making map_ protected instead of private.
This commit is contained in:
@@ -27,7 +27,7 @@ goog.inherits(ol.control.Navigation, ol.control.Control);
|
||||
ol.control.Navigation.prototype.activate = function() {
|
||||
var active = goog.base(this, 'activate');
|
||||
if (active) {
|
||||
var events = this.getMap().getEvents();
|
||||
var events = this.map_.getEvents();
|
||||
events.register("drag", this.moveMap, this);
|
||||
events.register("scroll", this.zoomMap, this);
|
||||
}
|
||||
@@ -38,7 +38,7 @@ ol.control.Navigation.prototype.activate = function() {
|
||||
ol.control.Navigation.prototype.deactivate = function() {
|
||||
var inactive = goog.base(this, 'deactivate');
|
||||
if (inactive) {
|
||||
var events = this.getMap().getEvents();
|
||||
var events = this.map_.getEvents();
|
||||
events.unregister("drag", this.moveMap, this);
|
||||
events.unregister("scroll", this.zoomMap, this);
|
||||
}
|
||||
@@ -49,7 +49,7 @@ ol.control.Navigation.prototype.deactivate = function() {
|
||||
* @param {Object} evt
|
||||
*/
|
||||
ol.control.Navigation.prototype.moveMap = function(evt) {
|
||||
this.getMap().moveByPx(evt.deltaX, evt.deltaY);
|
||||
this.map_.moveByPx(evt.deltaX, evt.deltaY);
|
||||
return false;
|
||||
};
|
||||
|
||||
@@ -57,7 +57,7 @@ ol.control.Navigation.prototype.moveMap = function(evt) {
|
||||
* @param {Event} evt
|
||||
*/
|
||||
ol.control.Navigation.prototype.zoomMap = function(evt) {
|
||||
var map = this.getMap(),
|
||||
var map = this.map_,
|
||||
delta = ((evt.deltaY / 3) | 0);
|
||||
if (Math.abs(delta) === 0) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user