//============================
// JavaScript custom settings.
//============================
// Title and home page
var WebsiteTitle = "Columbia County GIS";
var HomePage = "http://www.columbiacountyga.gov";
var MetadataDir = "http://127.0.0.1/WebsiteData/Columbia/Metadata";

// Parcel layer id from AXL file
var ParcelLayerId = "0";

// Toggle icons, map refresh
var ToggleTools = false;
var AutoRefresh = false;

// Max allowed number select
var MaxSelectedFeatures = 4000;
var MaxBufferFeatures = 1000;

// Pan-Zoom scale factor
var ZoomFactor = 3;
var PanFactor = 0.5;

// Number of decimals to show in xy coordinate readout in status bar
var NumXYDecimals = 4;

// Search tolerance in pixels (radius)
var SearchTolerance = 4;

// Default circle radius
var CircleRadius = 1000;

// From ArcMap->Properties->Source 
var CentralMeridianEasting = 656166.66666667;   //False easting of central meridian, map units
var FalseNorthing = 0.0;         //False northing, map units
var CentralMeridian = -82.16666667;     //central meridian
var Lat1stParallel = 31;  	   //latitude of first standard parallel (Small#)
var Lat2ndParallel = 34;  //latitude of second standard parallel
var LatOrigin = 30;  	   //latitude of origin

// Misc.
var MapUnits = "Feet";
var ScreenDPI = 96;
var CoordFeet = false; // Toggle for feet or lat/lon readout
var LockTimeout = 10;  // Unlock website time

// Pop-up disclaimer.
var Disclaimer = "";
Disclaimer += "Disclaimer: These records and maps have been produced from data and information ";
Disclaimer += "compiled from recorded documents, outside public and private sources, and global ";
Disclaimer += "positioning technology to collect data with sub-meter accuracy, which the User ";
Disclaimer += "is cautioned, does not reflect either actual survey data or surveying accuracy. ";
Disclaimer += "No warranties, expressed or implied, are provided for the property ";
Disclaimer += "records and mapping data herein, or for their use or interpretation by the User. ";
Disclaimer += "Columbia County, its commissioners, officers, elected officials, employees, and ";
Disclaimer += "agents shall have no liability for any damages, losses, costs, or expenses, ";
Disclaimer += "including but not limited to attorney's fees, arising from any User's use or ";
Disclaimer += "misuse of property records or mapping data provided herein, and the User's use ";
Disclaimer += "thereof shall constitute an agreement by the User to release Columbia County, ";
Disclaimer += "its commissioners, officers, elected officials, employees, and agents from any ";
Disclaimer += "such liability.";
      
// Colors.
var MenuBackgroundColor = "rgb(236,233,216)";
var MenuBorderColor = "Gray";

var PullDownBackgroundColor = "rgb(252,252,249)";
var PullDownBorderColor = "Gray";

var HoverBackgroundColor = "rgb(203,220,248)";
var HoverBorderColor = "#0066FF";

var HighlightBackgroundColor = "rgb(255,255,220)";
var HighlightBorderColor = "Red";

var DataFrameBackgroundColor = "white";
var MouseOutWhite = "white";
var MouseOutGray = "rgb(243,240,240)";
var MouseOutGreen = "rgb(220,230,255)"; // C!

var DisableGray = "silver";

// Programming constants
var MainMenuHeight = 57;      //Total height of pulldown and toolbar menus
