﻿var OutageMap = function() { }; //namespace

OutageMap.Config = new function () {
    this.StartLat = '41.54828';
    this.StartLong = '-72.64709';
    this.StartZoomLevel = 9;
    this.LowResZoomLevel = 8;
    this.RefreshInterval = 300000;
    this.AutoRefresh = 1;
    this.MinZoomLevel = 7;
    this.MaxZoomLevel = 18;
    this.MapType = 'r';
    this.NonServicedTowns = ['NORWICH', 'BOZRAH', 'HAMDEN', 'BRIDGEPORT', 'EASTON', 'TRUMBULL', 'SHELTON', 'STRATFORD', 'MILFORD', 'ORANGE', 'WEST HAVEN', 'NEW HAVEN', 'EAST HAVEN', 'DERBY', 'ANSONIA', 'WOODBRIDGE', 'WALLINGFORD', 'NORTH HAVEN', 'NORTH BRANFORD'];
    this.Divisions = ['CENTRAL', 'EASTERN', 'WESTERN', 'SOUTHERN'];
    this.Counties = ['HARTFORD', 'LITCHFIELD', 'MIDDLESEX', 'FAIRFIELD', 'TOLLAND', 'WINDHAM', 'NEW HAVEN', 'NEW LONDON'];
    this.State = 'CT';
    this.LayerId = 'Counties';
}

