// VARIABLES RELATED TO GEOGRAPHY BASED QUERIES (IE... IDing a Parcel)

// global variables

var aimsDBparamPresent = true;
    
// Field in shapefile layer to match to Assessing Database.  This field IS CASE SENSITIVE
var mapIDField = "Vision_PID";
var siteName = "";
//Added to support zooming to Parcels JR 1/10/2008
var dbGISIDField = "LinkID";
// Field in db to match layer from GIS_ID
var dbIDField = "REM_PID";

// Street Name Field in Road Centerline File
mapGEOGIDField = "OBJECTID";
dbRoadLinkLayer = "Roads"; //RDCL
var geogIDFieldIsText = false;

// Variables for GoTo Search... FIELD and LAYER to search
var goToIDField = "LocationName";
var zoomGoToName = "Points of Interest";

var pixelsPerInch = 133;

var Disclaimer1 = "Computer generated parcel perimeter data is for REFERENCE ONLY. Please check deed for actual measurements. Click 'OK' to display data.";

// If the zoomGoTo is a point feature uncomment the line below IN THE FUNCTION  getGoTo
//EXAMPLE ONLY://parent.MapFrame.ActiveLayerType = "point"

//modified to support zooming to Parcels JR 1/10/2008.  Was False.
var dbIDFieldIsText = true;

// List of fields to be returned in response
var dbFieldList = "REM_OWN_NAME,REM_PRCL_LOCN";
var dbFieldListDescript = "Owner,Location";
var dbTableList = "VISION_REALMAST";

var addIDQuotes = false;
var highlightIdentify=true;




