Making map_ protected instead of private.

This commit is contained in:
ahocevar
2012-06-24 11:39:42 +02:00
parent 81577d6dce
commit 0c9b3d1d58
3 changed files with 9 additions and 9 deletions

View File

@@ -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;