//============================
// JavaScript custom settings.
//============================
// Title and home page
var WebsiteTitle = "La Plata County GIS";
var HomePage = "http://www.co.laplata.co.us";
var MetadataDir = "../LaPlataData/Metadata";

// Parcel layer id from AXL file
var ParcelLayerId = "2";

// Toggle icons, map refresh
var ToggleTools = false;
var AutoRefresh = false;

// Max allowed number select
var MaxSelectedFeatures = 2000
var MaxBufferFeatures = 500

// 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 = 2;

// Search tolerance in pixels (radius)
var SearchTolerance = 4;

// Default circle radius
var CircleRadius = 1320;

// From ArcMap->Properties->Source 
// Check at http://www.ngs.noaa.gov/cgi-bin/spc_getpc.prl
var CentralMeridianEasting = 3000000.0;   //False easting of central meridian, map units
var FalseNorthing = 1000000.0;         //False northing, map units
var CentralMeridian = -105.5;     //central meridian
var Lat1stParallel = 37.233333;  	   //latitude of first standard parallel (Small#)
var Lat2ndParallel = 38.433333;  //latitude of second standard parallel
var LatOrigin = 36.666667;  	   //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: The information provided on this website is compiled from recorded plats, deeds, "; 
Disclaimer += "other public records and a variety of data resources listed on the Welcome page. The many ";
Disclaimer += "data sources contributing to this website have been submitted at varying levels of quality,";
Disclaimer += "accuracy, and scale and have often been manipulated to align with other data layers. This data ";
Disclaimer += "is for informational purposes and should not be substituted for a title seach, property appraisal,";
Disclaimer += "or survey. It is provided as is without warranty of any kind, either express or implied,";
Disclaimer += "including but not limited to the implied warranties of merchantability and fitness for a";
Disclaimer += "particular purpose.  In no event shall La Plata County be liable for any damages whatsoever";
Disclaimer += "including direct, indirect, incidental, consequential, loss of business profits or special damages. ";

// 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,255,220)"; // C!

var DisableGray = "silver";

// Programming constants
var MainMenuHeight = 57;      //Total height of pulldown and toolbar menus
