

////////////////////////////////////////////////////////////
//
//  class CPsMapMgr
//
//  manages map-related stuff
//


function CPsMapMgr()
{

    ////////////////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////////////////

    ////////////////////////////////////////////////////////////
    //
    //  public methods
    //

    CPsMapMgr.prototype.getDrillDownImagePath =
	function(baseImagePath)
	{
	    return DocPaths['MapData'] + "drilldowns/" + baseImagePath;
	};



    ////////////////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////////////////

    ////////////////////////////////////////////////////////////
    //
    //  public attributes
    //

    this.LAT_NULL = -10000.0;
    this.LNG_NULL = -10000.0;
    this.GOOGLE_ZOOM_NULL = -10000;


};


var gPsMapMgr = new CPsMapMgr();


