var MapController = Class.create({
  
  setMapView: function(mapView) {
    this.mapView = mapView;
  },

  setLayer: function(otions) {},

  onZoomChanged: function(oldLevel, newLevel) { },

  onDragEnd: function() { },

  onDoubleClick: function() { }
});
