// mainResource.js

//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
// <NOTE> These values should be edited to reflect specific site
//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
// mapservice name for main map (e.g. "cos")
var mapService = "GPS";
// mapservice name for ovmap (e.g. "cos", typically same as mapService)
var ovmapService = "GPS";
// title at top of map
var mainTitle = "GPS BENCHMARKS";
// relative path name of logo located to the left of the title (optimal image size is 315 by 50 pixels) e.g. "./images/coslogo.gif"
var primaryLogo = "./images/sugarland_logo_reversed.gif";
// URL for image click (e.g. "http://www.cityofsugarland.com")
var primaryLogoHref = "http://www.ci.sugar-land.tx.us";
// relative path name of logo located at the bottom of the toolbar (optimal image size is 100 by 100 pixels) e.g. "./images/gislogo.gif"
//var secondaryLogo = "./images/arcimslogo.gif";
var secondaryLogo = "./images/sm_logo.gif";
// URL for image click (e.g. "http://www.cityofsugarland.com/gis")
var secondaryLogoHref = "http://www.ci.sugar-land.tx.us";
//initial map extent
var startLeft = 3006000.00;
var startRight = 3060000.00;
var startTop = 13810000.00;
var startBottom = 13742000.00;
//maximum map extent, typically same as initial extent
var limitLeft = 3006000.00;
var limitRight = 3060000.00;
var limitTop = 13810000.00;
var limitBottom = 13742000.00;


// ------------------------ custom dialogs --------------------------------
// general geocoding parameters
maxGeocodeCandidates = 20;
minGeocodeScore = 25; // 0 - 100; 100 is perfect match, 0 is no match. Default is 60

// find address
findAddressExample = "2700 TOWN CENTER BLVD N"; // if left blank, then generic text used

// find intersection
findIntersectionExample1 = "SWEETWATER BLVD";
findIntersectionExample2 = "AUSTIN PKWY";

// find street
findStreetLayerName = "STREETS"
findStreetColumnName = "FULL_NAME";
findStreetExample = "CORPORATE DR";
findStreetSensitivity = 1; // 1 - search single column for exact match, 2 - search single for like match, 3 - search all columns for like match. Default is 1.

// find parcel
findParcelLayerName = "PARCELS";
findParcelColumnName = "OWNER_NAME";
findParcelExample = "SMITH";
findParcelSensitivity = 1; // 1 - search single column for exact match, 2 - search single for like match, 3 - search all columns for like match. Default is 1.

// ---------------------- end custom dialogs ------------------------------
//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

