﻿/*
   
    This file contains all the global objects necessary for the locator to function

*/

// DEBUGGING: if this flag is set to true, error logging will be enabled to the server via AJAX.
// Refer to <locator folder>/logs.
var DEBUG = false;

// Map object containing the actual VE map and custom mapping functions.
var map = null;

// Search panel object containing all search input and population related logic.
var panel = null;

// Results panel object, containing all search results related display logic ie paging.
var panel_results = null;

// Client side data access layer object, responsible for all calls to the server.
var dal = null;

// Legend object, static location metadata display.
var legend = null;

// Loading message box, showing every time there is activity.
var loadingbox = null;  

// Info message box, showing result related information (ie more than max results found)
var messagebox = null;

// Custom disambiguation panel.
var ambigbox = null;