/**
 * Definition file for class Setra.View.
 *
 * The class defines a view to load at map init
 */
 
/**
 * Constructor
 *
 * @param {int} DefaultZoom
 * @param {GLatLng} DefaultCoordinates
 * @param {int} ObjectSelectedZoom
 */
Setra.View = function( DefaultZoom, DefaultCoordinates )
{
    this.DefaultZoom = DefaultZoom;
    this.DefaultCoordinates = DefaultCoordinates;
    this.ObjectSelectedZoom = DefaultZoom;
}

/**
 * Defines the default zoom for this view object
 *
 * {int}
 */
Setra.View.prototype.DefaultZoom = null;

/**
 * Defines the default map coordinates
 *
 * {GLatLng}
 */
Setra.View.prototype.DefaultCoordinates = null;

/**
 * Defines the zoom when an object is selected
 *
 * {int}
 */
Setra.View.prototype.ObjectSelectedZoom = null;

