var main = (function () { var locations = [{ 'label': '32.7272, -97.3251 - 16000m', 'type': 'circle', 'id': '0', 'center': { 'lat': 32.72721987021932, 'lng': -97.32513427734375 }, 'radius': 16000, 'points': [] }, { 'label': '32.7711, -96.8198 - 18000m', 'type': 'circle', 'id': '1', 'center': { 'lat': 32.771109949890445, 'lng': -96.81976318359375 }, 'radius': 18000, 'points': [] }, { 'label': '33.0133, -96.6962 - 8000m', 'type': 'circle', 'id': '2', 'center': { 'lat': 33.01326987686983, 'lng': -96.6961669921875 }, 'radius': 8000, 'points': [] }, { 'label': '33.1445, -96.8362 - 8000m', 'type': 'circle', 'id': '3', 'center': { 'lat': 33.144450560077985, 'lng': -96.83624267578125 }, 'radius': 8000, 'points': [] }, { 'label': '33.2088, -97.1466 - 8000m', 'type': 'circle', 'id': '4', 'center': { 'lat': 33.20881849225547, 'lng': -97.1466064453125 }, 'radius': 8000, 'points': [] }, { 'label': '32.9995, -96.5176', 'type': 'polygon', 'id': '5', 'center': { 'lat': 32.95779601967646, 'lng': -96.26152038574219 }, 'radius': 28543.64820166808, 'points': [{ 'lat': 32.99945000822837, 'lng': -96.51763916015625 }, { 'lat': 33.211116472416855, 'lng': -96.30889892578125 }, { 'lat': 32.90726224488304, 'lng': -95.97381591796875 }, { 'lat': 32.713355353177555, 'lng': -96.2457275390625 }] }]; var radiusThresholds = [ { "value": 0, "label": "0m" }, { "value": 1000, "label": "10m" }, { "value": 2200, "label": "20m" }, { "value": 9600, "label": "50m" } ]; var drawMap = null; return new Main(); function Main() { this.initMap = initMap; } function initMap() { dm = DrawMap.New({ "radiusThresholds": radiusThresholds }, document.body, locations); } })();