// CivXplorer Tool Controls

// Suzanne Fliege
// PlanSight, LLC

// variables that determine functionality and extension availablity

// map tools, set to true to have available 
// navigation
var useHome = true;
var useZoomIn = true; 
var useZoomOut = true; 
var usePan = true; 
var useFullExtent = true; 
var useZoomPrevious = true; 
var useZoomSelected = true; 
var useMeasure = true; 
// property location
var useFindByID = true; 
var useFindByAddress = true; 
var useFindByOwner = false; 
var useFindIntersection = false; 
// query and selection
var useIdentify = true; 
var useSelect = true; 
var useHotlink = false; 
var useClearSelect = true; 
var useSelectByAttribute = true; 
var useSelectByLocation = true; 
var useAttributeDisplay = true; 
// reporting & maps
var useMapDisplay = true; 
var useReportDisplay = true; 
var useMailingDisplay = true; 
// miscellaneous
var useHelp = true;
var useDisclaimer = true;
var useSources = true;
var useFAQ = false; 
var useMetadata = true;

// starting modes for some tools
// reports/maps show in frame or as popup
var showReportsInFrame = true;
// help pop-ups on or off to start
var showUserHelp = true;
// start with the zoom tool turned on
var startWithZoom = true;
// whether to pop up attribute window on selection & query
var showSelectedAttributesImmediately = true;
// display multiple attributes as rows or not (columns)
var showSelectedAttributesAsRows = false;
// overview map visibility on open
var startWithOverview = true;

// map tools menu text
// navigation
var txtHome = "Reset Map";
// property location
var txtFindByID = "Find By Parcel Tax ID"; 
var txtFindByAddress = "Find By Address"; 
var txtFindByOwner = "Find By Owner Name"; 
var txtFindIntersection = "Find By Street Intersection"; 
// query and selection
var txtHotlink = "Web Links/Hot Links (Pop-up)"; 
var txtSelectByAttribute = "Select By Attribute"; 
var txtSelectByLocation = "Select By Location";
// reporting
var txtReportAndLabelDisplay = "";
if ((useReportDisplay) && (useMailingDisplay)) txtReportAndLabelDisplay = "Create a Report or Mailing Labels";
if ((useReportDisplay) && (!useMailingDisplay)) txtReportAndLabelDisplay = "Create a Report";
if ((!useReportDisplay) && (useMailingDisplay)) txtReportAndLabelDisplay = "Create Mailing Labels";
// miscellaneous
var txtFAQ = "View FAQ Document"; 
var txtMetadata = "View Data Information";


