
/*
Defining map controller event listener
    onZoom(zoomlevel);
    onMove(x, y);
*/


/*
Defining mapcontroller (might be outdated)
    this.recenter = function(x, y);    
    this.recenterAndZoom = function(x,y, zoomlevel);
    this.placeMarker = function(imgpath, x, y);    
    this.removeMarker = function(marker);
    this.getBounds = function();
*/


function MCPoint(x, y)
{
   this.X = x; 
   this.Y = y;

   this.getX = function()
   {
     return this.X;
   }

   this.getY = function()
   {
     return this.Y;
   }
}


function MCBounds(sw, ne)
{
   this.Sw = sw; 
   this.Ne = ne;

   this.getSouthWest = function()
   {
      return this.Sw;
   }

   this.getNorthEast = function()
   {
      return this.Ne;
   }
}
