WME WoW divisions Chhattisgarh

Shows the regions for the Chhattisgarh Waze Outediting Week

// ==UserScript==
// @name			WME WoW divisions Chhattisgarh
// @author          Tom 'Glodenox' Puttemans
// @namespace		http://tomputtemans.com
// @description		Shows the regions for the Chhattisgarh Waze Outediting Week
// @include			/^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor.*$/
// @version			1.1
// @grant			none
// @copyright		2017 Glodenox, based on work by 2015 rickzabel, based on work by 2014 davielde
// ==/UserScript==
setTimeout(initMapRaidOverlay, 1000);
var mapLayer,
	displayedArea = false;

function convertPoints(list) {
	return list.map(function(point) {
		return new OL.Geometry.Point(point[0], point[1]).transform(new OL.Projection("EPSG:4326"), Waze.map.getProjectionObject());
	});
}

function addRaidPolygon(raidLayer, groupPoints, color, name) {
	var ring = new OL.Geometry.LinearRing(convertPoints(groupPoints));
	var polygon = new OL.Geometry.Polygon([ ring ]);

	var feature = new OL.Feature.Vector(polygon, { name: name, color: color });
	raidLayer.addFeatures([ feature ]);
}

function createLayerToggler(parentGroup, checked, name, toggleCallback) {
	var normalizedName = name.toLowerCase().replace(/\s/g, '');
	var group = document.createElement('li');
	var groupToggler = document.createElement('div');
	groupToggler.className = 'controls-container toggler';
	var groupSwitch = document.createElement('input');
	groupSwitch.id = 'layer-switcher-group_' + normalizedName;
	groupSwitch.className = 'layer-switcher-group_' + normalizedName + ' toggle';
	groupSwitch.type = 'checkbox';
	groupSwitch.checked = checked;
	groupSwitch.addEventListener('click', function() { toggleCallback(groupSwitch.checked); });
	groupToggler.appendChild(groupSwitch);
	var groupLabel = document.createElement('label');
	groupLabel.htmlFor = groupSwitch.id;
	groupLabel.style.display = 'block';
	var groupLabelText = document.createElement('div');
	groupLabelText.className = 'label-text';
	groupLabelText.style.textOverflow = 'ellipsis';
	groupLabelText.style.overflowX = 'hidden';
	groupLabelText.appendChild(document.createTextNode(name));
	groupLabel.appendChild(groupLabelText);
	groupToggler.appendChild(groupLabel);
	group.appendChild(groupToggler);
	if (parentGroup !== null) {
		parentGroup.querySelector('input.toggle').addEventListener('click', function(e) {
			groupSwitch.disabled = !e.target.checked;
			if (toggleCallback) {
				toggleCallback(groupSwitch.checked && e.target.checked);
			}
		});
		parentGroup.querySelector('ul.children').appendChild(group);
	} else {
		group.className = 'group';
		groupToggler.classList.add('main');
		var groupChildren = document.createElement('ul');
		groupChildren.className = 'children';
		group.appendChild(groupChildren);
		document.querySelector('.list-unstyled.togglers').appendChild(group);
	}
	return group;
}

function displayCurrentRaidLocation(e) {
	var raidMapCenter = Waze.map.getCenter();
	var raidCenterPoint = new OL.Geometry.Point(raidMapCenter.lon, raidMapCenter.lat);
	var locationDiv = document.querySelector('#topbar-container > div > div > div.location-info-region > div');
	var mapRaidDiv = locationDiv.querySelector('strong');
	if (mapRaidDiv === null) {
		mapRaidDiv = document.createElement('strong');
		mapRaidDiv.style.marginLeft = '5px';
		locationDiv.appendChild(mapRaidDiv);
	}

	for (i = 0; i < mapLayer.features.length; i++) {
		if (mapLayer.features[i].geometry.components[0].containsPoint(raidCenterPoint)) {
			mapRaidDiv.textContent = '[MapRaid Region: ' + mapLayer.features[i].attributes.name + ']';
			displayedArea = true;
			return;
		}
	}
	if (displayedArea) {
		mapRaidDiv.textContent = '';
		displayedArea = false;
	}
}

function initMapRaidOverlay() {
	if (typeof Waze === 'undefined' || typeof Waze.map === 'undefined' || typeof Waze.loginManager === 'undefined' || !document.querySelector('#topbar-container > div > div > div.location-info-region > div') || !document.getElementById('layer-switcher-group_display')) {
		setTimeout(initMapRaidOverlay, 800);
		return;
	}
	if (!Waze.loginManager.user) {
		Waze.loginManager.events.register("login", null, initMapRaidOverlay);
		Waze.loginManager.events.register("loginStatus", null, initMapRaidOverlay);
		if (!Waze.loginManager.user) {
			return;
		}
	}

	if (localStorage.MapRaidIndiaChhattisgarhVisible === undefined) {
		localStorage.MapRaidIndiaChhattisgarhVisible = true;
	}

	createLayerToggler(document.getElementById('layer-switcher-group_display').parentNode.parentNode, localStorage.MapRaidIndiaChhattisgarhVisible == "true", 'Map Raid: India Chhattisgarh', function(checked) {
		localStorage.MapRaidIndiaChhattisgarhVisible = checked;
		mapLayer.setVisibility(checked);
	});

	mapLayer = new OL.Layer.Vector("WoW divisions Chhattisgarh", {
		uniqueName: "__IndiaChhattisgarhMapRaid",
		styleMap: new OpenLayers.StyleMap({
			strokeColor: '${color}',
			strokeOpacity: 0.8,
			strokeWidth: 3,
			fillColor: '${color}',
			fillOpacity: 0.1,
			label: '${name}',
			labelOutlineColor: "Black",
			labelOutlineWidth: 3,
			fontSize: 14,
			fontColor: '#ffffff',
			fontOpacity: 0.85,
			fontWeight: "bold"
		})
	});

	addRaidPolygon(mapLayer, [
		[81.894356,19.523211],[81.910393,19.519791],[81.944267,19.534641],[82.000328,19.517601],[82.022392,19.501802],[82.059792,19.503641],[82.070847,19.515921],[82.092079,19.50984],[82.091019,19.494059],[82.10183,19.47366],[82.096893,19.461081],[82.119308,19.423901],[82.167229,19.42985],[82.18306,19.41761],[82.166367,19.365931],[82.144562,19.370119],[82.140831,19.361919],[82.142349,19.348171],[82.180252,19.332203],[82.183167,19.3197],[82.173683,19.316301],[82.168533,19.290661],[82.151726,19.265463],[82.151649,19.22357],[82.161179,19.208389],[82.155708,19.196529],[82.173393,19.184311],[82.171127,19.16827],[82.178787,19.158859],[82.164139,19.154638],[82.174789,19.145231],[82.165878,19.143141],[82.168137,19.133841],[82.159782,19.12648],[82.169823,19.11286],[82.176239,19.125061],[82.199753,19.11746],[82.198532,19.09417],[82.212112,19.090549],[82.194092,19.060221],[82.225067,19.014591],[82.239563,18.91046],[82.231216,18.90522],[82.213783,18.91214],[82.172729,18.895288],[82.17041,18.877571],[82.158203,18.869459],[82.16494,18.83021],[82.154297,18.796303],[82.159218,18.788111],[82.145477,18.773279],[82.130661,18.7701],[82.129066,18.75765],[82.081413,18.755871],[82.086746,18.746931],[82.078583,18.712082],[82.033737,18.7188],[81.957161,18.683411],[81.960632,18.667721],[81.947388,18.65571],[81.947441,18.62882],[81.915527,18.63582],[81.893173,18.653881],[81.780418,18.599951],[81.741226,18.595091],[81.697006,18.60413],[81.649643,18.601889],[81.642097,18.60848],[81.651497,18.645651],[81.668678,18.64352],[81.668869,18.65077],[81.718529,18.666571],[81.744583,18.653891],[81.757683,18.66404],[81.731522,18.676731],[81.743378,18.688671],[81.736122,18.69994],[81.741852,18.732059],[81.764671,18.737032],[81.768517,18.75658],[81.767097,18.76461],[81.755249,18.76572],[81.760071,18.77478],[81.748459,18.804941],[81.703987,18.829821],[81.697006,18.815908],[81.675133,18.815491],[81.654053,18.79207],[81.641899,18.79641],[81.62529,18.814821],[81.605247,18.81819],[81.611633,18.833651],[81.597237,18.845341],[81.576256,18.837511],[81.56662,18.85948],[81.54776,18.86866],[81.540848,18.881493],[81.547363,18.905281],[81.520531,18.91626],[81.506531,18.904678],[81.50193,18.921511],[81.45932,18.93869],[81.461693,18.95085],[81.475769,18.961409],[81.462669,18.998899],[81.470917,19.006269],[81.506622,19.005152],[81.515411,19.010361],[81.521797,19.032471],[81.491646,19.04423],[81.495819,19.057159],[81.506348,19.059881],[81.485527,19.07869],[81.485367,19.098471],[81.473923,19.113871],[81.487442,19.118191],[81.487076,19.130892],[81.461517,19.13851],[81.453407,19.13306],[81.401573,19.171141],[81.363991,19.166891],[81.330841,19.13652],[81.295906,19.160761],[81.291428,19.1859],[81.299446,19.182331],[81.302856,19.191971],[81.255173,19.23802],[81.2416,19.23727],[81.238533,19.223051],[81.21756,19.211531],[81.187927,19.22468],[81.167656,19.266418],[81.18528,19.27276],[81.191383,19.284182],[81.214691,19.28344],[81.230446,19.31889],[81.297218,19.331581],[81.335251,19.31496],[81.348351,19.320393],[81.365921,19.30826],[81.372437,19.31461],[81.418381,19.290251],[81.466919,19.24988],[81.468117,19.24032],[81.499069,19.220119],[81.52771,19.21678],[81.535187,19.25174],[81.561966,19.27623],[81.599426,19.26565],[81.606979,19.23163],[81.612831,19.22279],[81.620247,19.224661],[81.666946,19.24531],[81.666023,19.25839],[81.641556,19.260351],[81.619606,19.28775],[81.627731,19.338739],[81.652298,19.34473],[81.660736,19.35829],[81.693672,19.35265],[81.715637,19.37063],[81.752556,19.346958],[81.785187,19.348207],[81.799011,19.396778],[81.783302,19.41651],[81.784393,19.445641],[81.802643,19.470501],[81.808876,19.49658],[81.816513,19.505239],[81.846626,19.466311],[81.850121,19.498562],[81.836899,19.51689],[81.837982,19.53591],[81.848663,19.545179],[81.889343,19.543812],[81.894356,19.523211]
	], '#c2185b', 'Bastar');
	addRaidPolygon(mapLayer, [
		[81.32325,20.55307],[81.377556,20.529551],[81.404678,20.549549],[81.405792,20.52459],[81.417961,20.515699],[81.481613,20.510839],[81.495102,20.516069],[81.50386,20.496773],[81.515602,20.489971],[81.529579,20.495371],[81.538147,20.51156],[81.579002,20.515369],[81.61364,20.51193],[81.632637,20.50404],[81.637299,20.492929],[81.652687,20.49474],[81.688156,20.479151],[81.729752,20.478981],[81.735573,20.461931],[81.731926,20.417179],[81.764183,20.37982],[81.758698,20.352661],[81.777679,20.352541],[81.790176,20.32588],[81.788971,20.31848],[81.760681,20.30691],[81.755676,20.295179],[81.758057,20.281012],[81.766541,20.276609],[81.783363,20.285641],[81.795929,20.254641],[81.782112,20.257179],[81.770081,20.228901],[81.780869,20.206808],[81.79808,20.20734],[81.809372,20.165291],[81.783401,20.152861],[81.746826,20.15905],[81.725197,20.15204],[81.717537,20.134972],[81.678879,20.12565],[81.609489,20.154873],[81.57798,20.19109],[81.445587,20.141571],[81.413948,20.1518],[81.394447,20.110231],[81.398666,20.074039],[81.382126,20.04237],[81.352783,20.041311],[81.350098,20.029051],[81.332947,20.032141],[81.301216,20.014002],[81.285942,20.013281],[81.297127,19.97167],[81.320038,19.962881],[81.321037,19.93672],[81.339462,19.922449],[81.34201,19.906071],[81.363632,19.90451],[81.396011,19.87188],[81.370438,19.848091],[81.386963,19.828671],[81.364822,19.798611],[81.373413,19.747952],[81.365631,19.740913],[81.285835,19.740913],[81.252289,19.75955],[81.203827,19.752096],[81.188911,19.699905],[81.14418,19.703634],[81.080811,19.722275],[81.028625,19.755823],[81.002525,19.785646],[81.002525,19.830379],[81.039803,19.901203],[81.036079,19.938482],[80.995071,19.945938],[80.930634,19.943008],[80.917229,19.92268],[80.88269,19.92765],[80.846176,19.945721],[80.846138,19.927839],[80.827263,19.901718],[80.753006,19.86397],[80.714508,19.827511],[80.715248,19.803381],[80.704353,19.796301],[80.71521,19.79266],[80.725113,19.797371],[80.728119,19.810471],[80.771652,19.83407],[80.80896,19.82571],[80.814957,19.81599],[80.7883,19.8018],[80.778351,19.781591],[80.768547,19.800711],[80.759659,19.80076],[80.711197,19.775999],[80.705109,19.73312],[80.715843,19.702068],[80.664551,19.69075],[80.633507,19.718491],[80.582077,19.738071],[80.570526,19.75474],[80.539673,19.774599],[80.542427,19.819271],[80.517807,19.828861],[80.476028,19.828001],[80.459549,19.811331],[80.48024,19.795441],[80.478088,19.772409],[80.452438,19.7929],[80.394707,19.794579],[80.39753,19.816231],[80.431656,19.810301],[80.460297,19.82803],[80.475021,19.857059],[80.49752,19.86875],[80.482651,19.898899],[80.46122,19.903431],[80.444443,19.893551],[80.407677,19.905903],[80.406296,19.932501],[80.443703,19.952671],[80.4645,19.946251],[80.480476,19.927801],[80.520378,19.93088],[80.545547,19.987181],[80.532539,20.003933],[80.546158,20.06571],[80.535233,20.09218],[80.558868,20.131721],[80.562843,20.183851],[80.578148,20.17284],[80.606537,20.17968],[80.637161,20.20006],[80.650047,20.22216],[80.660507,20.219391],[80.684021,20.188551],[80.707893,20.185261],[80.730042,20.220751],[80.723427,20.264521],[80.741539,20.270929],[80.749092,20.287943],[80.771339,20.28903],[80.781326,20.278761],[80.815506,20.294441],[80.825882,20.316179],[80.819901,20.337009],[80.805771,20.351021],[80.815208,20.355061],[80.838158,20.344271],[80.855637,20.385893],[80.879387,20.38282],[80.93486,20.437681],[80.961029,20.435129],[80.993332,20.456282],[81.017441,20.444391],[81.035728,20.42119],[81.069557,20.416632],[81.146286,20.37505],[81.16983,20.401451],[81.218109,20.414961],[81.231583,20.438473],[81.247269,20.440998],[81.258667,20.477631],[81.249367,20.495291],[81.284798,20.51053],[81.308739,20.547892],[81.32325,20.55307]
	], '#c2185b', 'Bastar - Uttar Bastar Kanker');
	addRaidPolygon(mapLayer, [
		[81.167656,19.266418],[81.15316,19.274061],[81.150482,19.29113],[81.135376,19.292351],[81.134018,19.250771],[81.120636,19.252211],[81.103653,19.269279],[81.084656,19.27178],[81.063133,19.26474],[81.067032,19.23163],[81.058533,19.223501],[81.041,19.229309],[80.962387,19.220772],[80.96769,19.24682],[80.955589,19.275471],[80.956726,19.30541],[80.920372,19.31691],[80.896912,19.313822],[80.884872,19.33223],[80.844772,19.337523],[80.836258,19.33194],[80.826416,19.34804],[80.845009,19.36091],[80.842827,19.36611],[80.815979,19.37907],[80.787933,19.426701],[80.835083,19.442381],[80.867493,19.44346],[80.885628,19.456503],[80.891403,19.490841],[80.879051,19.51903],[80.845383,19.529173],[80.827606,19.562672],[80.785156,19.56041],[80.766411,19.568319],[80.764267,19.584831],[80.720993,19.608391],[80.656853,19.612261],[80.664551,19.69075],[80.715843,19.702068],[80.705109,19.73312],[80.711197,19.775999],[80.759659,19.80076],[80.768547,19.800711],[80.778351,19.781591],[80.7883,19.8018],[80.814926,19.81115],[80.80896,19.82571],[80.771652,19.83407],[80.728119,19.810471],[80.725113,19.797371],[80.71521,19.79266],[80.704353,19.796301],[80.715248,19.803381],[80.714508,19.827511],[80.753006,19.86397],[80.827263,19.901718],[80.846138,19.927839],[80.846176,19.945721],[80.911308,19.92271],[80.930634,19.943008],[80.995071,19.945938],[81.036079,19.938482],[81.039803,19.901203],[81.002525,19.830379],[81.002525,19.785646],[81.028625,19.755823],[81.080811,19.722275],[81.14418,19.703634],[81.188911,19.699905],[81.203827,19.752096],[81.252289,19.75955],[81.285835,19.740913],[81.365631,19.740913],[81.371147,19.72102],[81.416496,19.71557],[81.440857,19.69743],[81.439507,19.67297],[81.475197,19.656441],[81.508308,19.656891],[81.499443,19.647631],[81.446747,19.63302],[81.45459,19.61562],[81.452156,19.564621],[81.432198,19.536051],[81.432442,19.52471],[81.442009,19.519041],[81.414063,19.48797],[81.424767,19.47072],[81.46666,19.46644],[81.457047,19.420912],[81.461227,19.37038],[81.427742,19.371162],[81.401436,19.35869],[81.37999,19.380741],[81.382416,19.40727],[81.36927,19.40834],[81.368477,19.386351],[81.357086,19.366871],[81.382393,19.3566],[81.389473,19.32822],[81.351021,19.325068],[81.335251,19.31496],[81.297218,19.331581],[81.230446,19.31889],[81.214691,19.28344],[81.191383,19.284182],[81.18528,19.27276],[81.167656,19.266418]
	], '#c2185b', 'Bastar - Narayanpur');
	addRaidPolygon(mapLayer, [
		[81.348351,19.320393],[81.389473,19.32822],[81.382393,19.3566],[81.357086,19.366871],[81.368477,19.386351],[81.36927,19.40834],[81.382416,19.40727],[81.37999,19.380741],[81.401436,19.35869],[81.427742,19.371162],[81.461227,19.37038],[81.457047,19.420912],[81.46666,19.46644],[81.424767,19.47072],[81.414063,19.48797],[81.442009,19.519041],[81.432442,19.52471],[81.432198,19.536051],[81.452156,19.564621],[81.45459,19.61562],[81.446747,19.63302],[81.499443,19.647631],[81.508308,19.656891],[81.475197,19.656441],[81.439507,19.67297],[81.440857,19.69743],[81.420792,19.71373],[81.371147,19.72102],[81.364616,19.72891],[81.373413,19.747952],[81.364822,19.798611],[81.386963,19.828671],[81.370438,19.848091],[81.396011,19.87188],[81.363632,19.90451],[81.34201,19.906071],[81.339462,19.922449],[81.321037,19.93672],[81.320038,19.962881],[81.297127,19.97167],[81.285942,20.013281],[81.301216,20.014002],[81.332947,20.032141],[81.350098,20.029051],[81.352783,20.041311],[81.382126,20.04237],[81.398666,20.074039],[81.394447,20.110231],[81.413948,20.1518],[81.445587,20.141571],[81.57798,20.19109],[81.609489,20.154873],[81.672348,20.125641],[81.717537,20.134972],[81.725197,20.15204],[81.746826,20.15905],[81.770683,20.15204],[81.801086,20.156733],[81.809372,20.165291],[81.838646,20.160822],[81.842873,20.106861],[81.867233,20.07938],[81.866516,20.053593],[81.873756,20.046181],[81.837303,19.950081],[81.848831,19.938591],[81.849632,19.908051],[81.898056,19.878519],[81.960373,19.854738],[81.957413,19.83601],[81.980148,19.79578],[82.052193,19.791342],[82.05983,19.783098],[82.057198,19.75341],[82.044006,19.73769],[82.037567,19.703911],[82.051346,19.624441],[82.033958,19.590691],[82.044136,19.564798],[82.041023,19.525702],[82.022392,19.501802],[81.961006,19.531771],[81.944267,19.534641],[81.904587,19.519201],[81.894356,19.523211],[81.889343,19.543812],[81.848663,19.545179],[81.837982,19.53591],[81.836899,19.51689],[81.848579,19.508171],[81.846626,19.466311],[81.816513,19.505239],[81.784393,19.445641],[81.783302,19.41651],[81.799011,19.396778],[81.785187,19.348207],[81.752556,19.346958],[81.715637,19.37063],[81.693672,19.35265],[81.660736,19.35829],[81.652298,19.34473],[81.633591,19.343281],[81.619606,19.28775],[81.641556,19.260351],[81.666023,19.25839],[81.666573,19.24189],[81.637939,19.237619],[81.620247,19.224661],[81.612831,19.22279],[81.606979,19.23163],[81.599426,19.26565],[81.561966,19.27623],[81.535187,19.25174],[81.52771,19.21678],[81.499069,19.220119],[81.468117,19.24032],[81.466919,19.24988],[81.418381,19.290251],[81.348351,19.320393]
	], '#c2185b', 'Bastar - Kondagaon');
	addRaidPolygon(mapLayer, [
		[81.120636,19.252211],[81.124031,19.24267],[81.106079,19.230698],[81.120613,19.222818],[81.120583,19.207979],[81.138466,19.177933],[81.198486,19.18362],[81.204666,19.166361],[81.198059,19.15134],[81.204323,19.135469],[81.202621,19.08868],[81.218201,19.04575],[81.201431,19.017159],[81.217957,19.010201],[81.195976,18.98749],[81.226036,18.961861],[81.211273,18.94187],[81.175842,18.935019],[81.163132,18.91835],[81.183952,18.909781],[81.214867,18.916428],[81.216148,18.903261],[81.207306,18.891479],[81.196747,18.82872],[81.181168,18.810131],[81.191582,18.73867],[81.15509,18.68511],[81.155693,18.660391],[81.171051,18.645441],[81.155121,18.62742],[81.154907,18.60276],[81.143677,18.591171],[81.143127,18.560171],[81.163223,18.584223],[81.190567,18.586691],[81.188622,18.54402],[81.174873,18.533772],[81.15976,18.54331],[81.163193,18.53544],[81.146423,18.524481],[81.074661,18.540133],[81.02755,18.526718],[81.020546,18.518221],[81.023033,18.492571],[80.991592,18.467531],[80.950691,18.40111],[80.931488,18.396049],[80.908417,18.36964],[80.917076,18.37081],[80.933716,18.354698],[80.955856,18.359739],[80.975899,18.341631],[81.010567,18.330761],[81.034012,18.333931],[81.057228,18.290491],[81.043953,18.25802],[81.03125,18.253771],[81.049889,18.24399],[81.071686,18.216631],[81.07682,18.219078],[81.088799,18.19219],[81.075478,18.192739],[81.052681,18.163601],[81.024193,18.14901],[81.003746,18.152712],[81.000786,18.159613],[80.973839,18.1583],[80.973679,18.16815],[80.965569,18.16836],[80.911987,18.13851],[80.862022,18.132669],[80.848198,18.197651],[80.867493,18.207258],[80.8591,18.226002],[80.82959,18.234119],[80.817192,18.22521],[80.817917,18.18712],[80.797928,18.1663],[80.745071,18.164831],[80.734558,18.171713],[80.733269,18.21879],[80.784286,18.243271],[80.788116,18.25404],[80.744621,18.302181],[80.742928,18.322161],[80.716263,18.38294],[80.72654,18.408991],[80.713028,18.405731],[80.69101,18.41935],[80.698891,18.436001],[80.65078,18.472281],[80.63459,18.498631],[80.632683,18.518841],[80.531998,18.58606],[80.510712,18.615671],[80.483467,18.62812],[80.450203,18.62635],[80.381561,18.593599],[80.362518,18.603741],[80.352898,18.59094],[80.338791,18.588209],[80.29631,18.68564],[80.240799,18.74869],[80.249001,18.765251],[80.27182,18.76222],[80.294159,18.79059],[80.318733,18.79598],[80.347786,18.815941],[80.335732,18.856119],[80.267639,18.928789],[80.267723,18.987329],[80.293411,19.021591],[80.288841,19.046289],[80.322113,19.074871],[80.319946,19.088221],[80.331543,19.10108],[80.320862,19.124491],[80.324852,19.141533],[80.386673,19.18902],[80.377022,19.217369],[80.383347,19.23914],[80.437027,19.26107],[80.475586,19.335043],[80.51384,19.3482],[80.53154,19.3743],[80.567818,19.400921],[80.583939,19.377159],[80.585587,19.35302],[80.603943,19.311769],[80.617722,19.304819],[80.664391,19.326578],[80.679222,19.324141],[80.688606,19.283489],[80.749237,19.286741],[80.778091,19.318541],[80.799347,19.325163],[80.826416,19.34804],[80.836258,19.33194],[80.844772,19.337523],[80.884872,19.33223],[80.896912,19.313822],[80.952507,19.309761],[80.959518,19.30028],[80.955589,19.275471],[80.96769,19.24682],[80.962387,19.220772],[81.041,19.229309],[81.058533,19.223501],[81.066307,19.227402],[81.063133,19.26474],[81.070747,19.269161],[81.103653,19.269279],[81.120636,19.252211]
	], '#c2185b', 'Bastar - Bijapur');
	addRaidPolygon(mapLayer, [
		[81.668869,18.65077],[81.653893,18.651562],[81.659813,18.688631],[81.620132,18.70392],[81.624619,18.72172],[81.609207,18.74745],[81.595726,18.726841],[81.564003,18.72909],[81.560387,18.706093],[81.548187,18.68951],[81.536163,18.690651],[81.534523,18.67577],[81.558418,18.641199],[81.554573,18.626551],[81.543686,18.621872],[81.544533,18.603441],[81.569786,18.596331],[81.553802,18.549179],[81.542641,18.564522],[81.536766,18.59911],[81.515503,18.59631],[81.48996,18.61339],[81.449379,18.606411],[81.438187,18.595011],[81.439651,18.576061],[81.415237,18.57506],[81.414177,18.54855],[81.429047,18.530821],[81.406181,18.50843],[81.424942,18.50325],[81.425346,18.474022],[81.378922,18.48642],[81.365646,18.435699],[81.373001,18.42029],[81.409546,18.414612],[81.421066,18.404638],[81.403587,18.381401],[81.368927,18.41143],[81.332893,18.408369],[81.307922,18.4312],[81.292229,18.428659],[81.284943,18.45257],[81.267372,18.457163],[81.26516,18.473],[81.250717,18.47744],[81.243866,18.51289],[81.216988,18.519381],[81.214867,18.508541],[81.174873,18.533772],[81.188622,18.54402],[81.190567,18.586691],[81.163223,18.584223],[81.143127,18.560171],[81.155121,18.62742],[81.171051,18.645441],[81.155693,18.660391],[81.15509,18.68511],[81.191582,18.73867],[81.181168,18.810131],[81.196747,18.82872],[81.207306,18.891479],[81.216148,18.903261],[81.214867,18.916428],[81.183952,18.909781],[81.163132,18.91835],[81.175842,18.935019],[81.211273,18.94187],[81.226036,18.961861],[81.195976,18.98749],[81.217957,19.010201],[81.201431,19.017159],[81.218201,19.04575],[81.202621,19.08868],[81.204323,19.135469],[81.198059,19.15134],[81.204666,19.166361],[81.198486,19.18362],[81.138466,19.177933],[81.120583,19.207979],[81.120613,19.222818],[81.106079,19.230698],[81.124031,19.24267],[81.120636,19.252211],[81.13765,19.25474],[81.135376,19.292351],[81.150482,19.29113],[81.15316,19.274061],[81.172577,19.260321],[81.187927,19.22468],[81.21756,19.211531],[81.238533,19.223051],[81.2416,19.23727],[81.255173,19.23802],[81.302856,19.191971],[81.299446,19.182331],[81.291428,19.1859],[81.295906,19.160761],[81.330841,19.13652],[81.363991,19.166891],[81.401573,19.171141],[81.453407,19.13306],[81.461517,19.13851],[81.487076,19.130892],[81.487442,19.118191],[81.473923,19.113871],[81.485367,19.098471],[81.485527,19.07869],[81.506348,19.059881],[81.495819,19.057159],[81.491646,19.04423],[81.521797,19.032471],[81.515411,19.010361],[81.506622,19.005152],[81.470917,19.006269],[81.462669,18.998899],[81.475769,18.961409],[81.461693,18.95085],[81.45932,18.93869],[81.50193,18.921511],[81.506531,18.904678],[81.520531,18.91626],[81.547363,18.905281],[81.540848,18.881493],[81.54776,18.86866],[81.56662,18.85948],[81.576256,18.837511],[81.597237,18.845341],[81.611633,18.833651],[81.604271,18.822229],[81.611786,18.813148],[81.62529,18.814821],[81.630203,18.804428],[81.654053,18.79207],[81.675133,18.815491],[81.697006,18.815908],[81.703987,18.829821],[81.748459,18.804941],[81.760071,18.77478],[81.755249,18.76572],[81.76857,18.76136],[81.764671,18.737032],[81.741852,18.732059],[81.736122,18.69994],[81.743378,18.688671],[81.731522,18.676731],[81.757683,18.66404],[81.753967,18.65802],[81.740349,18.6548],[81.718529,18.666571],[81.668869,18.65077]
	], '#c2185b', 'Bastar - Dantewada');
	addRaidPolygon(mapLayer, [
		[80.980583,17.939859],[80.962273,18.03153],[80.965958,18.043468],[80.943993,18.08102],[80.949356,18.12318],[80.972633,18.143551],[80.973839,18.1583],[81.000786,18.159613],[81.003746,18.152712],[81.024193,18.14901],[81.052681,18.163601],[81.075478,18.192739],[81.088799,18.19219],[81.07682,18.219078],[81.071686,18.216631],[81.049889,18.24399],[81.03125,18.253771],[81.043953,18.25802],[81.057228,18.290491],[81.034012,18.333931],[81.010567,18.330761],[80.975899,18.341631],[80.955856,18.359739],[80.933716,18.354698],[80.917076,18.37081],[80.908417,18.36964],[80.931488,18.396049],[80.950691,18.40111],[80.991592,18.467531],[81.023033,18.492571],[81.023399,18.524071],[81.074661,18.540133],[81.146423,18.524481],[81.163193,18.53544],[81.15976,18.54331],[81.214867,18.508541],[81.216988,18.519381],[81.243866,18.51289],[81.250717,18.47744],[81.26516,18.473],[81.267372,18.457163],[81.284943,18.45257],[81.292229,18.428659],[81.307922,18.4312],[81.332893,18.408369],[81.368927,18.41143],[81.403587,18.381401],[81.421066,18.404638],[81.409546,18.414612],[81.373001,18.42029],[81.365646,18.435699],[81.378922,18.48642],[81.425346,18.474022],[81.424942,18.50325],[81.406181,18.50843],[81.429047,18.530821],[81.414177,18.54855],[81.415237,18.57506],[81.439651,18.576061],[81.438187,18.595011],[81.449379,18.606411],[81.48996,18.61339],[81.515503,18.59631],[81.536766,18.59911],[81.542641,18.564522],[81.553802,18.549179],[81.569786,18.596331],[81.544533,18.603441],[81.543686,18.621872],[81.554573,18.626551],[81.558418,18.641199],[81.538712,18.66246],[81.536163,18.690651],[81.548187,18.68951],[81.560387,18.706093],[81.564003,18.72909],[81.595726,18.726841],[81.609207,18.74745],[81.624619,18.72172],[81.620132,18.70392],[81.659813,18.688631],[81.653893,18.651562],[81.668869,18.65077],[81.668678,18.64352],[81.651497,18.645651],[81.642097,18.60848],[81.649643,18.601889],[81.697006,18.60413],[81.741226,18.595091],[81.780418,18.599951],[81.885376,18.65033],[81.888367,18.620991],[81.954529,18.58671],[81.943527,18.55542],[81.9086,18.564228],[81.900803,18.557171],[81.896828,18.528393],[81.882599,18.529181],[81.857941,18.51306],[81.844307,18.481541],[81.7621,18.41131],[81.744911,18.34535],[81.658096,18.339291],[81.64917,18.331001],[81.658669,18.311098],[81.593407,18.301281],[81.567596,18.273211],[81.527962,18.259081],[81.504776,18.183811],[81.522606,18.15727],[81.508659,18.092411],[81.473892,18.028511],[81.47731,17.97002],[81.445236,17.92617],[81.448273,17.903021],[81.437256,17.875938],[81.403763,17.888592],[81.393829,17.885139],[81.389549,17.862101],[81.398056,17.846781],[81.38443,17.82579],[81.384132,17.80349],[81.344528,17.811581],[81.254036,17.81213],[81.191963,17.847101],[81.159569,17.852631],[81.089088,17.810871],[81.073601,17.786291],[81.037651,17.78624],[81.004349,17.838348],[80.994339,17.91423],[80.980583,17.939859]
	], '#c2185b', 'Bastar - Sukma');
	addRaidPolygon(mapLayer, [
		[81.092087,20.998781],[81.126617,21.01993],[81.12542,21.033451],[81.139603,21.05661],[81.135498,21.0693],[81.147583,21.078119],[81.153793,21.099791],[81.187447,21.09514],[81.199257,21.10116],[81.190849,21.122841],[81.202156,21.126411],[81.209419,21.15649],[81.209053,21.170061],[81.190742,21.19746],[81.192192,21.21826],[81.144501,21.21199],[81.156593,21.235481],[81.145027,21.240089],[81.158691,21.256359],[81.156448,21.286251],[81.168793,21.295549],[81.182152,21.330721],[81.191696,21.333321],[81.181557,21.356359],[81.18718,21.38464],[81.17347,21.3971],[81.18042,21.401911],[81.166046,21.43638],[81.175491,21.47962],[81.156639,21.482019],[81.153442,21.49984],[81.181557,21.4946],[81.188736,21.513451],[81.198753,21.518301],[81.203041,21.505293],[81.218552,21.50518],[81.212776,21.53116],[81.263069,21.53031],[81.275787,21.511162],[81.303421,21.511433],[81.307381,21.532261],[81.342857,21.533781],[81.350876,21.542299],[81.371407,21.514931],[81.382362,21.521933],[81.464081,21.50581],[81.460983,21.490351],[81.442276,21.495981],[81.438911,21.48698],[81.46627,21.468651],[81.447441,21.44879],[81.435371,21.407042],[81.462791,21.406471],[81.464706,21.41695],[81.476891,21.41868],[81.496742,21.407673],[81.475288,21.38253],[81.494759,21.369249],[81.491646,21.35121],[81.524002,21.345951],[81.546021,21.33143],[81.543732,21.30854],[81.527527,21.300831],[81.539383,21.24287],[81.559807,21.238668],[81.5709,21.22047],[81.595833,21.204363],[81.617523,21.160009],[81.599457,21.15766],[81.599457,21.14747],[81.57692,21.122101],[81.571037,21.092781],[81.573647,21.071899],[81.602448,21.05934],[81.580597,21.044161],[81.606621,21.023651],[81.601959,21.01692],[81.616417,20.993219],[81.606476,20.97794],[81.606331,20.960003],[81.580246,20.93688],[81.534119,20.925001],[81.519501,20.8976],[81.492767,20.88982],[81.479172,20.868921],[81.456078,20.86725],[81.457481,20.848871],[81.411453,20.847851],[81.397743,20.855171],[81.385826,20.850283],[81.394241,20.83897],[81.379128,20.824781],[81.400963,20.814939],[81.385788,20.775181],[81.335953,20.781483],[81.32412,20.770748],[81.309807,20.775459],[81.311493,20.788071],[81.300247,20.789478],[81.280327,20.812099],[81.234779,20.815851],[81.224167,20.803032],[81.208206,20.817389],[81.18425,20.818291],[81.177803,20.84083],[81.184982,20.84878],[81.183258,20.871799],[81.176582,20.87808],[81.206192,20.884529],[81.18718,20.905651],[81.19223,20.913879],[81.182243,20.92646],[81.186516,20.939301],[81.169518,20.95677],[81.166748,20.97172],[81.151833,20.97958],[81.107361,20.95863],[81.098816,20.945202],[81.085587,20.97764],[81.092087,20.998781]
	], '#e65100', 'Durg');
	addRaidPolygon(mapLayer, [
		[81.347946,22.51409],[81.366501,22.51437],[81.378738,22.505301],[81.386177,22.45116],[81.396553,22.44132],[81.41893,22.45422],[81.417587,22.473631],[81.424438,22.479239],[81.448029,22.46739],[81.438057,22.49394],[81.479858,22.493311],[81.476593,22.469641],[81.490616,22.438353],[81.485046,22.410839],[81.509941,22.39378],[81.540733,22.348911],[81.555916,22.34725],[81.539223,22.323799],[81.515106,22.313791],[81.529297,22.289831],[81.525841,22.276371],[81.54393,22.269901],[81.546303,22.25622],[81.545059,22.239813],[81.527618,22.216978],[81.533066,22.19346],[81.520729,22.174803],[81.520828,22.156179],[81.505287,22.13526],[81.50386,22.11121],[81.517036,22.08239],[81.506523,22.05475],[81.496552,22.048363],[81.493637,22.029093],[81.503166,22.03022],[81.501633,22.01602],[81.464203,22.015251],[81.476021,21.989149],[81.465652,21.97448],[81.469963,21.95904],[81.452942,21.941433],[81.45182,21.915541],[81.436317,21.908871],[81.438133,21.899199],[81.419609,21.902561],[81.411461,21.91663],[81.402802,21.892281],[81.386932,21.88026],[81.397011,21.833691],[81.332832,21.83927],[81.318642,21.825581],[81.322968,21.785341],[81.337471,21.77129],[81.331161,21.764338],[81.30748,21.757761],[81.290367,21.76734],[81.246109,21.746641],[81.2192,21.753201],[81.218933,21.723511],[81.22966,21.718121],[81.212837,21.70381],[81.201393,21.709391],[81.176117,21.70146],[81.153519,21.713572],[81.126663,21.714611],[81.123421,21.70612],[81.0979,21.729971],[81.05011,21.7234],[81.037277,21.726],[81.037338,21.736551],[81.030357,21.73827],[80.989532,21.725271],[80.962776,21.757711],[80.946556,21.764681],[80.945053,21.784861],[80.919113,21.825211],[80.870468,21.82291],[80.833687,21.834791],[80.839592,21.875401],[80.825439,21.88665],[80.823807,21.897881],[80.836563,21.935659],[80.818443,21.956791],[80.845772,21.960899],[80.868599,22.011209],[80.876633,22.056789],[80.891228,22.06596],[80.89817,22.10133],[80.910843,22.11916],[80.950523,22.11301],[80.965538,22.08198],[80.963417,22.058361],[80.987762,22.048479],[80.999161,22.061501],[81.003693,22.096889],[80.970818,22.114651],[80.986702,22.130871],[81.015793,22.13271],[81.019051,22.16526],[81.011696,22.18401],[81.025116,22.188822],[81.025757,22.197691],[81.015793,22.214109],[81.019447,22.229191],[81.048866,22.24419],[81.084679,22.24675],[81.096817,22.27746],[81.113846,22.29438],[81.109268,22.329639],[81.115662,22.34409],[81.100937,22.38324],[81.109993,22.44112],[81.148079,22.455851],[81.170662,22.488001],[81.186867,22.48921],[81.194191,22.46208],[81.223557,22.451609],[81.255516,22.472483],[81.260452,22.493561],[81.280197,22.498821],[81.303963,22.48175],[81.31591,22.48971],[81.314812,22.515911],[81.322937,22.52433],[81.347946,22.51409]
	], '#e65100', 'Durg - Kabeerdham');
	addRaidPolygon(mapLayer, [
		[80.866348,21.824659],[80.919113,21.825211],[80.945053,21.784861],[80.946556,21.764681],[80.962776,21.757711],[80.989532,21.725271],[81.019211,21.739321],[81.037338,21.736551],[81.036316,21.726761],[81.05011,21.7234],[81.094788,21.73086],[81.123421,21.70612],[81.126663,21.714611],[81.153519,21.713572],[81.169281,21.702593],[81.17337,21.64249],[81.185379,21.629688],[81.171722,21.621361],[81.170357,21.596281],[81.147713,21.579241],[81.133743,21.549433],[81.149651,21.543711],[81.156708,21.526051],[81.188736,21.513451],[81.181557,21.4946],[81.151398,21.496019],[81.156639,21.482019],[81.175491,21.47962],[81.166046,21.43638],[81.18042,21.401911],[81.17347,21.3971],[81.18718,21.38464],[81.181557,21.356359],[81.191696,21.333321],[81.182152,21.330721],[81.168793,21.295549],[81.156448,21.286251],[81.158691,21.256359],[81.145027,21.240089],[81.156593,21.235481],[81.144501,21.21199],[81.192192,21.21826],[81.190742,21.19746],[81.21019,21.16715],[81.202156,21.126411],[81.190849,21.122841],[81.200027,21.10384],[81.187447,21.09514],[81.153793,21.099791],[81.147583,21.078119],[81.135498,21.0693],[81.139603,21.05661],[81.12542,21.033451],[81.126617,21.01993],[81.086517,20.994322],[81.019272,20.991331],[80.971252,21.005791],[80.943733,21.00037],[80.950668,20.98502],[80.934837,20.976721],[80.942543,20.966143],[80.936386,20.94862],[80.956642,20.94908],[80.957489,20.926941],[80.964897,20.921921],[80.958527,20.911291],[80.988457,20.884251],[80.978699,20.865971],[80.951233,20.854811],[80.945343,20.84247],[80.968811,20.827269],[80.972862,20.811239],[80.950211,20.82263],[80.955139,20.817711],[80.937172,20.802511],[80.924896,20.775],[80.900856,20.779531],[80.893318,20.805481],[80.883842,20.797993],[80.876717,20.802259],[80.851563,20.7773],[80.815086,20.760189],[80.798431,20.718491],[80.8097,20.68874],[80.854271,20.686819],[80.848953,20.66992],[80.880028,20.653301],[80.902039,20.66338],[80.910019,20.646591],[80.922729,20.66206],[80.935822,20.665251],[80.930916,20.629829],[80.981682,20.608011],[80.986481,20.57431],[80.971397,20.55393],[80.946419,20.544401],[80.947319,20.52636],[80.93721,20.505951],[80.961067,20.493851],[80.964943,20.46979],[80.938957,20.459028],[80.938881,20.43837],[80.92366,20.431763],[80.879387,20.38282],[80.855637,20.385893],[80.842339,20.347311],[80.805771,20.351021],[80.819901,20.337009],[80.825882,20.316179],[80.815506,20.294441],[80.781326,20.278761],[80.771339,20.28903],[80.749092,20.287943],[80.741539,20.270929],[80.723427,20.264521],[80.730042,20.220751],[80.707893,20.185261],[80.684021,20.188551],[80.660507,20.219391],[80.650047,20.22216],[80.637161,20.20006],[80.606537,20.17968],[80.578148,20.17284],[80.562843,20.183851],[80.558868,20.131721],[80.540367,20.109833],[80.49115,20.141479],[80.45134,20.144871],[80.444138,20.130342],[80.426956,20.130239],[80.393837,20.14402],[80.384567,20.15851],[80.394592,20.181589],[80.413986,20.190231],[80.382957,20.24172],[80.465446,20.271622],[80.510826,20.269611],[80.542023,20.306849],[80.616692,20.325741],[80.602226,20.37644],[80.586021,20.395611],[80.603439,20.43325],[80.594688,20.446421],[80.603317,20.46242],[80.609947,20.55633],[80.61972,20.56732],[80.612862,20.590578],[80.622322,20.603863],[80.567307,20.612408],[80.511902,20.585119],[80.500099,20.586863],[80.481598,20.6171],[80.484848,20.63518],[80.507607,20.6546],[80.572792,20.67429],[80.580116,20.683641],[80.560188,20.711773],[80.545532,20.765369],[80.543343,20.7918],[80.555893,20.819681],[80.54184,20.93392],[80.459091,20.92815],[80.440697,20.96546],[80.438087,20.9921],[80.423759,21.00959],[80.447342,21.036621],[80.433319,21.097151],[80.439507,21.11178],[80.449333,21.114851],[80.438652,21.121401],[80.457298,21.17284],[80.507637,21.182442],[80.520737,21.203541],[80.550636,21.201172],[80.603447,21.227423],[80.635307,21.250139],[80.654808,21.289511],[80.672951,21.298288],[80.672737,21.31127],[80.656532,21.330772],[80.69165,21.388182],[80.697548,21.427198],[80.721207,21.449402],[80.730217,21.472052],[80.721977,21.49564],[80.730659,21.538721],[80.713547,21.555712],[80.719536,21.571501],[80.709236,21.58675],[80.709396,21.603981],[80.722458,21.622761],[80.707497,21.664101],[80.725113,21.69829],[80.718529,21.711861],[80.742973,21.757961],[80.7621,21.757919],[80.782722,21.739571],[80.811203,21.747492],[80.837097,21.83176],[80.866348,21.824659]
	], '#e65100', 'Durg - Rajnandgaon');
	addRaidPolygon(mapLayer, [
		[81.404678,20.549549],[81.377556,20.529551],[81.357086,20.534309],[81.346237,20.546949],[81.314232,20.552361],[81.290947,20.51582],[81.249367,20.495291],[81.258667,20.477631],[81.247269,20.440998],[81.231583,20.438473],[81.218109,20.414961],[81.16983,20.401451],[81.146286,20.37505],[81.069557,20.416632],[81.035728,20.42119],[81.017441,20.444391],[80.993332,20.456282],[80.961029,20.435129],[80.938881,20.43837],[80.938957,20.459028],[80.964943,20.46979],[80.961067,20.493851],[80.93721,20.505951],[80.947319,20.52636],[80.946419,20.544401],[80.971397,20.55393],[80.986481,20.57431],[80.981682,20.608011],[80.930916,20.629829],[80.935822,20.665251],[80.922729,20.66206],[80.910019,20.646591],[80.902039,20.66338],[80.880028,20.653301],[80.848953,20.66992],[80.854271,20.686819],[80.8097,20.68874],[80.798431,20.718491],[80.815086,20.760189],[80.851563,20.7773],[80.876717,20.802259],[80.883842,20.797993],[80.893318,20.805481],[80.900856,20.779531],[80.924896,20.775],[80.937172,20.802511],[80.955139,20.817711],[80.950211,20.82263],[80.972862,20.811239],[80.968811,20.827269],[80.945343,20.84247],[80.951233,20.854811],[80.978699,20.865971],[80.988457,20.884251],[80.958527,20.911291],[80.964897,20.921921],[80.957489,20.926941],[80.956642,20.94908],[80.936386,20.94862],[80.942543,20.966143],[80.934837,20.976721],[80.950668,20.98502],[80.943733,21.00037],[80.971252,21.005791],[81.019272,20.991331],[81.092087,20.998781],[81.085587,20.97764],[81.098816,20.945202],[81.117737,20.964781],[81.138351,20.967831],[81.138908,20.97879],[81.161392,20.97645],[81.186516,20.939301],[81.182243,20.92646],[81.19223,20.913879],[81.18718,20.905651],[81.206192,20.884529],[81.176582,20.87808],[81.183258,20.871799],[81.184982,20.84878],[81.177803,20.84083],[81.18425,20.818291],[81.208206,20.817389],[81.224167,20.803032],[81.234779,20.815851],[81.280327,20.812099],[81.300247,20.789478],[81.311493,20.788071],[81.309807,20.775459],[81.32412,20.770748],[81.335953,20.781483],[81.385788,20.775181],[81.400658,20.8106],[81.379128,20.824781],[81.394241,20.83897],[81.385826,20.850283],[81.391327,20.853479],[81.44986,20.846081],[81.460266,20.85309],[81.456078,20.86725],[81.46888,20.8685],[81.472839,20.853182],[81.494156,20.84189],[81.48983,20.83153],[81.511879,20.826603],[81.508202,20.79734],[81.475967,20.770651],[81.482811,20.74279],[81.477913,20.721512],[81.486313,20.710951],[81.510223,20.709711],[81.506348,20.66316],[81.489296,20.655918],[81.494713,20.634239],[81.485649,20.620642],[81.493301,20.60828],[81.508873,20.620951],[81.507042,20.61009],[81.468491,20.592171],[81.510277,20.587261],[81.483971,20.58046],[81.439346,20.586971],[81.448936,20.564329],[81.404678,20.549549]
	], '#e65100', 'Durg - Balod');
	addRaidPolygon(mapLayer, [
		[81.188736,21.513451],[81.156708,21.526051],[81.149651,21.543711],[81.133743,21.549433],[81.147713,21.579241],[81.170357,21.596281],[81.171722,21.621361],[81.185379,21.629688],[81.17337,21.64249],[81.169281,21.702593],[81.225166,21.709471],[81.22966,21.718121],[81.218933,21.723511],[81.2192,21.753201],[81.246109,21.746641],[81.290367,21.76734],[81.30748,21.757761],[81.335472,21.766941],[81.322968,21.785341],[81.318642,21.825581],[81.332832,21.83927],[81.397011,21.833691],[81.386932,21.88026],[81.402802,21.892281],[81.411461,21.91663],[81.419609,21.902561],[81.438133,21.899199],[81.436317,21.908871],[81.45182,21.915541],[81.452942,21.941433],[81.469963,21.95904],[81.465652,21.97448],[81.476021,21.989149],[81.464203,22.015251],[81.497009,22.01277],[81.511963,21.991119],[81.519447,22.003481],[81.545792,22.005991],[81.578018,21.98407],[81.586136,21.991289],[81.584587,22.01141],[81.56974,22.01829],[81.577591,22.02392],[81.601967,22.01515],[81.617836,21.984308],[81.653839,21.98572],[81.661179,21.96129],[81.690331,21.960461],[81.722778,21.94243],[81.752731,21.951208],[81.799248,21.943941],[81.799797,21.92662],[81.820862,21.915319],[81.815346,21.8815],[81.836426,21.87752],[81.850838,21.894821],[81.86586,21.88142],[81.888733,21.890093],[81.894753,21.885578],[81.893089,21.84273],[81.919296,21.83107],[81.935417,21.813869],[81.893578,21.77832],[81.841843,21.756611],[81.813469,21.759281],[81.800217,21.769381],[81.765831,21.767839],[81.741226,21.748159],[81.729492,21.76454],[81.694901,21.758369],[81.692276,21.74931],[81.718376,21.709492],[81.71624,21.693192],[81.653099,21.654551],[81.689583,21.62007],[81.691277,21.60218],[81.676346,21.57439],[81.661629,21.564121],[81.661652,21.54439],[81.63829,21.544298],[81.638443,21.51845],[81.624779,21.5049],[81.624863,21.473461],[81.618156,21.46332],[81.632187,21.40271],[81.619499,21.38612],[81.604027,21.382221],[81.604736,21.365841],[81.588913,21.35866],[81.58931,21.3458],[81.578468,21.33432],[81.546021,21.33143],[81.524002,21.345951],[81.491646,21.35121],[81.494759,21.369249],[81.475288,21.38253],[81.496216,21.40472],[81.487076,21.41711],[81.464706,21.41695],[81.462791,21.406471],[81.435371,21.407042],[81.447441,21.44879],[81.46627,21.468651],[81.438911,21.48698],[81.442276,21.495981],[81.460983,21.490351],[81.464081,21.50581],[81.382362,21.521933],[81.371407,21.514931],[81.350876,21.542299],[81.342857,21.533781],[81.307381,21.532261],[81.303421,21.511433],[81.275787,21.511162],[81.265137,21.529133],[81.247147,21.53347],[81.212776,21.53116],[81.218552,21.50518],[81.203041,21.505293],[81.198753,21.518301],[81.188736,21.513451]
	], '#e65100', 'Durg - Bemetara');
	addRaidPolygon(mapLayer, [
		[81.782516,21.60465],[81.793449,21.59214],[81.839531,21.59243],[81.858437,21.601521],[81.859718,21.58923],[81.884773,21.56908],[81.898453,21.59341],[81.913452,21.58975],[81.932793,21.566801],[81.921127,21.548578],[81.93277,21.51844],[81.926468,21.494093],[81.938171,21.48324],[81.951691,21.485701],[81.949966,21.470322],[81.982933,21.472521],[81.990753,21.460201],[82.013237,21.44986],[82.026436,21.45569],[82.047127,21.439583],[82.083977,21.429981],[82.117378,21.409533],[82.112816,21.383678],[82.137543,21.362282],[82.162369,21.37862],[82.186829,21.37557],[82.158867,21.32546],[82.120827,21.29361],[82.060989,21.268831],[82.017059,21.226221],[82.011963,21.170292],[81.991173,21.12956],[81.984047,21.08202],[82.02153,21.0562],[82.055458,21.060671],[82.088058,21.02626],[82.152649,21.014702],[82.168457,20.9683],[82.179832,20.96216],[82.184486,20.928791],[82.160477,20.898321],[82.137428,20.885811],[82.071503,20.873993],[81.980316,20.843891],[81.97596,20.831282],[81.998306,20.79213],[81.967247,20.811171],[81.921417,20.781841],[81.905663,20.7817],[81.919167,20.81093],[81.900528,20.83042],[81.884926,20.86869],[81.886887,20.897928],[81.873016,20.913321],[81.870667,20.9599],[81.857407,20.95507],[81.848831,20.94005],[81.830696,20.937241],[81.810867,20.943291],[81.80352,20.960171],[81.779793,20.963711],[81.74453,21.007921],[81.713058,21.006781],[81.703888,21.01487],[81.679756,20.995861],[81.652397,20.996262],[81.580597,21.044161],[81.602448,21.05934],[81.572662,21.074181],[81.57692,21.122101],[81.599457,21.14747],[81.599457,21.15766],[81.617523,21.160009],[81.595833,21.204363],[81.5709,21.22047],[81.559807,21.238668],[81.539383,21.24287],[81.527527,21.300831],[81.543732,21.30854],[81.547447,21.333578],[81.572632,21.33279],[81.586166,21.34149],[81.588913,21.35866],[81.604736,21.365841],[81.604027,21.382221],[81.619499,21.38612],[81.632187,21.40271],[81.618156,21.46332],[81.624863,21.473461],[81.624779,21.5049],[81.638443,21.51845],[81.63829,21.544298],[81.661652,21.54439],[81.661629,21.564121],[81.686783,21.594412],[81.700409,21.584183],[81.741287,21.57836],[81.750328,21.583311],[81.737633,21.594749],[81.746582,21.60927],[81.765396,21.603592],[81.780586,21.62225],[81.782516,21.60465]
	], '#ffd600', 'Raipur');
	addRaidPolygon(mapLayer, [
		[82.094727,21.855011],[82.118393,21.832211],[82.155853,21.84474],[82.177673,21.84166],[82.180313,21.78812],[82.194107,21.761551],[82.283783,21.74918],[82.298309,21.723831],[82.325119,21.710621],[82.394623,21.710798],[82.438217,21.741213],[82.473976,21.724331],[82.544159,21.73414],[82.592766,21.710821],[82.62191,21.72744],[82.65786,21.707109],[82.696472,21.72489],[82.738846,21.71715],[82.788116,21.720501],[82.859329,21.68631],[82.899368,21.695641],[82.943993,21.719481],[82.946983,21.684031],[82.961617,21.68413],[82.976593,21.633329],[82.919701,21.548691],[82.927277,21.491739],[82.920898,21.48768],[82.908638,21.490051],[82.889832,21.526621],[82.86866,21.54789],[82.817116,21.52597],[82.820953,21.498859],[82.7845,21.504051],[82.765106,21.517019],[82.725693,21.487301],[82.682701,21.47879],[82.694557,21.413799],[82.691841,21.327221],[82.646408,21.326563],[82.647186,21.338621],[82.622162,21.329691],[82.587379,21.33296],[82.558792,21.31115],[82.539383,21.31356],[82.524986,21.32513],[82.498177,21.310789],[82.468483,21.322693],[82.458237,21.320351],[82.459587,21.30537],[82.471741,21.292219],[82.454033,21.291361],[82.450096,21.273581],[82.434372,21.279331],[82.440628,21.299231],[82.418938,21.30512],[82.393921,21.29096],[82.386986,21.262951],[82.379379,21.259062],[82.367661,21.27099],[82.344803,21.26206],[82.346527,21.27924],[82.331276,21.278799],[82.318413,21.288441],[82.308067,21.276911],[82.294098,21.276331],[82.293411,21.26532],[82.278847,21.268221],[82.272026,21.29446],[82.2388,21.310532],[82.2528,21.323803],[82.249817,21.35046],[82.239433,21.36231],[82.254761,21.38031],[82.271332,21.381599],[82.269547,21.39835],[82.245186,21.415119],[82.246147,21.43047],[82.234329,21.43096],[82.197899,21.3813],[82.184166,21.374891],[82.162369,21.37862],[82.137543,21.362282],[82.112816,21.383678],[82.117378,21.409533],[82.083977,21.429981],[82.047127,21.439583],[82.026436,21.45569],[82.013237,21.44986],[81.990753,21.460201],[81.982933,21.472521],[81.949966,21.470322],[81.951691,21.485701],[81.933159,21.485182],[81.926277,21.49884],[81.93277,21.51844],[81.921127,21.548578],[81.932793,21.566801],[81.919083,21.58643],[81.898453,21.59341],[81.884773,21.56908],[81.853218,21.60305],[81.839531,21.59243],[81.786369,21.593971],[81.780586,21.62225],[81.765396,21.603592],[81.746582,21.60927],[81.737411,21.60232],[81.750328,21.583311],[81.741287,21.57836],[81.700409,21.584183],[81.686783,21.594412],[81.689583,21.62007],[81.654213,21.649361],[81.655052,21.659491],[81.71624,21.693192],[81.718376,21.709492],[81.692276,21.74931],[81.701126,21.7623],[81.729492,21.76454],[81.741226,21.748159],[81.765831,21.767839],[81.800217,21.769381],[81.813469,21.759281],[81.841843,21.756611],[81.893578,21.77832],[81.943352,21.82155],[81.950592,21.84473],[82.016541,21.85758],[82.031113,21.882563],[82.094727,21.855011]
	], '#ffd600', 'Raipur - Baloda Bazar');
	addRaidPolygon(mapLayer, [
		[82.889832,21.526621],[82.912811,21.48525],[82.927277,21.491739],[82.95034,21.48859],[82.960701,21.4681],[82.97406,21.470892],[82.99276,21.45476],[83.009827,21.46673],[83.011848,21.483761],[83.041153,21.47666],[83.046921,21.43844],[83.120087,21.41522],[83.111061,21.404449],[83.126259,21.39435],[83.126373,21.376181],[83.141296,21.36039],[83.176361,21.396528],[83.186653,21.389521],[83.18573,21.37793],[83.198631,21.39386],[83.211929,21.390511],[83.221527,21.377119],[83.27002,21.375038],[83.254097,21.31238],[83.274559,21.285671],[83.267677,21.268578],[83.242447,21.27644],[83.218353,21.26012],[83.219063,21.223711],[83.190102,21.135529],[83.161392,21.131451],[83.119843,21.101061],[83.040581,21.118931],[82.992973,21.15428],[82.983421,21.14827],[82.979927,21.157461],[82.965149,21.15576],[82.95607,21.175489],[82.937393,21.161148],[82.902313,21.16297],[82.879227,21.14909],[82.868828,21.15975],[82.812477,21.15856],[82.788849,21.139273],[82.752296,21.15974],[82.635941,21.14945],[82.634087,21.136351],[82.647758,21.124962],[82.6371,21.11162],[82.645027,21.101879],[82.625877,21.07682],[82.609383,21.071198],[82.622307,21.03657],[82.55294,20.941481],[82.485672,20.903511],[82.481926,20.85531],[82.453506,20.82122],[82.436501,20.829531],[82.415527,20.826469],[82.405632,20.83721],[82.401413,20.862431],[82.382797,20.86994],[82.359039,20.866541],[82.359177,20.88271],[82.346619,20.883848],[82.341217,20.868061],[82.332611,20.867121],[82.304459,20.89142],[82.296692,20.88871],[82.269279,20.90773],[82.263641,20.935532],[82.220169,20.94722],[82.217323,20.93202],[82.191963,20.93788],[82.179832,20.96216],[82.168457,20.9683],[82.152649,21.014702],[82.088058,21.02626],[82.055458,21.060671],[82.02153,21.0562],[81.984047,21.08202],[81.991173,21.12956],[82.011963,21.170292],[82.017059,21.226221],[82.060989,21.268831],[82.120827,21.29361],[82.158867,21.32546],[82.184166,21.374891],[82.197899,21.3813],[82.234329,21.43096],[82.246147,21.43047],[82.245186,21.415119],[82.271561,21.390831],[82.271332,21.381599],[82.254761,21.38031],[82.239433,21.36231],[82.249817,21.35046],[82.2528,21.323803],[82.2388,21.310532],[82.272026,21.29446],[82.278847,21.268221],[82.293411,21.26532],[82.294098,21.276331],[82.308067,21.276911],[82.318413,21.288441],[82.331276,21.278799],[82.346527,21.27924],[82.344803,21.26206],[82.367661,21.27099],[82.379379,21.259062],[82.386986,21.262951],[82.393921,21.29096],[82.418938,21.30512],[82.440628,21.299231],[82.434372,21.279331],[82.450096,21.273581],[82.454033,21.291361],[82.471741,21.292219],[82.459587,21.30537],[82.458237,21.320351],[82.468483,21.322693],[82.498177,21.310789],[82.524986,21.32513],[82.539383,21.31356],[82.558792,21.31115],[82.587379,21.33296],[82.622162,21.329691],[82.647186,21.338621],[82.646408,21.326563],[82.691841,21.327221],[82.694557,21.413799],[82.682701,21.47879],[82.725693,21.487301],[82.765106,21.517019],[82.7845,21.504051],[82.820953,21.498859],[82.817116,21.52597],[82.86866,21.54789],[82.889832,21.526621]
	], '#ffd600', 'Raipur - Mahasamund');
	addRaidPolygon(mapLayer, [
		[81.809372,20.165291],[81.79808,20.20734],[81.780869,20.206808],[81.770081,20.228901],[81.782112,20.257179],[81.795929,20.254641],[81.783363,20.285641],[81.766541,20.276609],[81.758057,20.281012],[81.755676,20.295179],[81.760681,20.30691],[81.788971,20.31848],[81.790176,20.32588],[81.777679,20.352541],[81.758698,20.352661],[81.764183,20.37982],[81.731926,20.417179],[81.735573,20.461931],[81.729752,20.478981],[81.688156,20.479151],[81.652687,20.49474],[81.637299,20.492929],[81.632637,20.50404],[81.61364,20.51193],[81.579002,20.515369],[81.538147,20.51156],[81.529579,20.495371],[81.515602,20.489971],[81.50386,20.496773],[81.495102,20.516069],[81.423706,20.513632],[81.405792,20.52459],[81.404678,20.549549],[81.448936,20.564329],[81.439346,20.586971],[81.483971,20.58046],[81.510277,20.587261],[81.468491,20.592171],[81.507042,20.61009],[81.508873,20.620951],[81.493301,20.60828],[81.485649,20.620642],[81.494713,20.634239],[81.489296,20.655918],[81.506348,20.66316],[81.510223,20.709711],[81.486313,20.710951],[81.477913,20.721512],[81.482811,20.74279],[81.475967,20.770651],[81.508202,20.79734],[81.513092,20.822321],[81.48983,20.83153],[81.494156,20.84189],[81.472839,20.853182],[81.46888,20.8685],[81.479172,20.868921],[81.496628,20.892311],[81.513657,20.892391],[81.534119,20.925001],[81.580246,20.93688],[81.606331,20.960003],[81.606476,20.97794],[81.616928,20.987211],[81.601959,21.01692],[81.606621,21.023651],[81.652397,20.996262],[81.679756,20.995861],[81.703888,21.01487],[81.713058,21.006781],[81.74453,21.007921],[81.779793,20.963711],[81.80352,20.960171],[81.810867,20.943291],[81.830696,20.937241],[81.848831,20.94005],[81.857407,20.95507],[81.870667,20.9599],[81.873016,20.913321],[81.886887,20.897928],[81.884926,20.86869],[81.900528,20.83042],[81.919167,20.81093],[81.903763,20.787661],[81.918533,20.767511],[81.9198,20.74572],[81.930443,20.73542],[81.973251,20.723181],[81.977318,20.698502],[82.007378,20.669321],[81.989632,20.624302],[82.010658,20.57382],[82.014,20.52545],[82.041969,20.498421],[82.048256,20.45507],[82.075592,20.408833],[82.076729,20.3258],[82.100807,20.285351],[82.135147,20.282511],[82.158539,20.25515],[82.167206,20.255051],[82.12751,20.18108],[82.128586,20.14254],[82.106697,20.12867],[82.095261,20.099991],[82.027748,20.093929],[82.009956,20.0448],[81.986603,20.052073],[81.973572,20.075611],[81.941353,20.102251],[81.889458,20.04327],[81.876221,20.04439],[81.866516,20.053593],[81.867233,20.07938],[81.842873,20.106861],[81.840569,20.159491],[81.809372,20.165291]
	], '#ffd600', 'Raipur - Dhamtari');
	addRaidPolygon(mapLayer, [
		[82.341217,20.868061],[82.334038,20.84059],[82.335129,20.758518],[82.345863,20.72872],[82.339409,20.72583],[82.346992,20.714239],[82.3433,20.698853],[82.365227,20.663761],[82.368233,20.62406],[82.355827,20.603491],[82.338676,20.59432],[82.340637,20.569733],[82.324013,20.553881],[82.348793,20.52293],[82.380493,20.50985],[82.388092,20.452511],[82.397316,20.45192],[82.41008,20.473301],[82.419388,20.457281],[82.417717,20.438301],[82.429169,20.425753],[82.424286,20.410151],[82.409897,20.402679],[82.410408,20.377201],[82.393776,20.335522],[82.42244,20.30966],[82.42923,20.282963],[82.405083,20.263531],[82.414078,20.24155],[82.404327,20.239601],[82.413597,20.202271],[82.405746,20.178989],[82.383301,20.16046],[82.387192,20.148851],[82.378929,20.14463],[82.392647,20.10825],[82.390862,20.059589],[82.395767,20.049],[82.470772,20.032021],[82.502129,20.013531],[82.543617,20.012131],[82.598366,19.98564],[82.614388,19.986971],[82.63176,20.00009],[82.70063,19.99287],[82.71093,19.983261],[82.711563,19.944481],[82.700531,19.89329],[82.709351,19.870121],[82.717506,19.87081],[82.702713,19.831039],[82.683319,19.823721],[82.645737,19.825371],[82.622963,19.78931],[82.599007,19.781273],[82.595139,19.773069],[82.578476,19.77582],[82.579277,19.797213],[82.571579,19.80201],[82.571823,19.827808],[82.597382,19.86047],[82.590767,19.866219],[82.577583,19.86344],[82.550873,19.874559],[82.544289,19.86903],[82.5299,19.88213],[82.523056,19.872789],[82.512413,19.884121],[82.498482,19.88517],[82.49424,19.89736],[82.458351,19.89465],[82.439491,19.90292],[82.388817,19.88176],[82.36805,19.854481],[82.356071,19.855131],[82.339447,19.829962],[82.298233,19.883461],[82.261696,19.97156],[82.230629,19.998081],[82.214256,19.993341],[82.204292,19.980339],[82.178467,19.978083],[82.165833,19.99815],[82.131699,20.01269],[82.116096,20.010401],[82.093193,20.032673],[82.057899,20.04987],[82.024406,20.01004],[82.014786,20.01951],[82.009956,20.0448],[82.027748,20.093929],[82.059067,20.10162],[82.086632,20.09761],[82.101166,20.10651],[82.106697,20.12867],[82.128586,20.14254],[82.12751,20.18108],[82.167206,20.255051],[82.158539,20.25515],[82.135147,20.282511],[82.100807,20.285351],[82.076729,20.3258],[82.075592,20.408833],[82.048256,20.45507],[82.041969,20.498421],[82.014,20.52545],[82.010658,20.57382],[81.989632,20.624302],[82.007378,20.669321],[81.977318,20.698502],[81.973251,20.723181],[81.921516,20.74305],[81.909737,20.778881],[81.967247,20.811171],[81.998306,20.79213],[81.97596,20.831282],[81.980316,20.843891],[82.071503,20.873993],[82.137428,20.885811],[82.173546,20.91354],[82.184486,20.928791],[82.184807,20.94466],[82.211426,20.932159],[82.218552,20.93408],[82.220169,20.94722],[82.263641,20.935532],[82.266258,20.914351],[82.276642,20.901272],[82.341217,20.868061]
	], '#ffd600', 'Raipur - Gariaband');
	addRaidPolygon(mapLayer, [
		[82.134628,23.084539],[82.15564,23.05047],[82.170502,23.040861],[82.178909,23.015581],[82.172272,22.970793],[82.208328,22.941999],[82.188751,22.907871],[82.154198,22.88307],[82.132141,22.852148],[82.133347,22.843122],[82.150482,22.83812],[82.154732,22.81074],[82.144943,22.744181],[82.159096,22.727779],[82.170746,22.66526],[82.184967,22.669741],[82.199356,22.65943],[82.236542,22.65551],[82.228027,22.59202],[82.201996,22.595119],[82.170868,22.55611],[82.149139,22.54154],[82.159401,22.529791],[82.153709,22.499901],[82.139923,22.485651],[82.136459,22.456701],[82.160667,22.44268],[82.176659,22.41139],[82.162346,22.397301],[82.16066,22.384171],[82.143997,22.383131],[82.147957,22.34886],[82.133102,22.330351],[82.173912,22.325081],[82.194893,22.31238],[82.210289,22.3367],[82.225906,22.328871],[82.260826,22.33392],[82.266426,22.3207],[82.25695,22.29266],[82.286087,22.28491],[82.321518,22.32198],[82.348846,22.32365],[82.365646,22.314301],[82.372589,22.30051],[82.400406,22.29781],[82.412743,22.281651],[82.389938,22.26132],[82.452988,22.215401],[82.453011,22.19458],[82.467827,22.18655],[82.437592,22.168791],[82.420349,22.13649],[82.390106,22.12748],[82.352463,22.132698],[82.329498,22.101591],[82.328423,22.01371],[82.317879,21.99951],[82.32547,21.95949],[82.306366,21.930891],[82.30162,21.902561],[82.31134,21.900011],[82.306747,21.892969],[82.321342,21.86688],[82.348053,21.85038],[82.377518,21.757261],[82.407257,21.7568],[82.43354,21.73752],[82.394623,21.710798],[82.325119,21.710621],[82.298309,21.723831],[82.283783,21.74918],[82.19902,21.759069],[82.180313,21.78812],[82.177673,21.84166],[82.155853,21.84474],[82.118393,21.832211],[82.094727,21.855011],[82.031113,21.882563],[82.0149,21.918251],[81.980652,21.94001],[81.982666,21.950491],[82.007736,21.968],[82.004128,21.983419],[81.971947,22.002861],[81.950043,22.004608],[81.960007,22.01012],[81.946266,22.019621],[81.951477,22.032721],[81.943993,22.048281],[81.93602,22.048241],[81.926468,22.067289],[81.904892,22.079861],[81.899567,22.105181],[81.885582,22.100519],[81.875237,22.124851],[81.862862,22.123751],[81.849442,22.149891],[81.81826,22.17354],[81.799446,22.2222],[81.766891,22.22933],[81.749298,22.25087],[81.725403,22.252453],[81.735306,22.270451],[81.73896,22.31216],[81.757866,22.29211],[81.770126,22.305071],[81.775688,22.30162],[81.781616,22.29557],[81.777046,22.28709],[81.817062,22.2918],[81.808693,22.27743],[81.816429,22.26981],[81.833687,22.28874],[81.853317,22.28945],[81.846077,22.303501],[81.867126,22.321121],[81.892456,22.305071],[81.906776,22.312099],[81.90818,22.29233],[81.922043,22.293751],[81.930161,22.30957],[81.923286,22.317301],[81.929077,22.33572],[81.914139,22.36545],[81.931183,22.36092],[81.951767,22.340219],[81.96727,22.358191],[81.94149,22.40543],[81.919281,22.414371],[81.89563,22.443281],[81.892647,22.456051],[81.903481,22.463291],[81.896118,22.482031],[81.83284,22.508369],[81.828911,22.574242],[81.789078,22.56621],[81.777641,22.59132],[81.781273,22.597683],[81.743179,22.59495],[81.722816,22.63773],[81.728317,22.661991],[81.722946,22.67621],[81.736938,22.66905],[81.74054,22.648069],[81.748932,22.64607],[81.76506,22.66906],[81.746613,22.726488],[81.762497,22.7353],[81.763977,22.746771],[81.784279,22.766621],[81.760857,22.834339],[81.769402,22.873508],[81.856346,22.89086],[81.860008,22.915001],[81.874611,22.913321],[81.913857,22.948221],[81.940247,22.95709],[81.937218,23.009493],[81.918427,23.040979],[81.938103,23.07781],[81.982147,23.086243],[82.024086,23.08012],[82.067131,23.116817],[82.115883,23.1038],[82.134628,23.084539]
	], '#097138', 'Bilaspur');
	addRaidPolygon(mapLayer, [
		[82.031113,21.882563],[82.016541,21.85758],[81.950592,21.84473],[81.935417,21.813869],[81.919296,21.83107],[81.893089,21.84273],[81.894753,21.885578],[81.888733,21.890093],[81.86586,21.88142],[81.850838,21.894821],[81.836426,21.87752],[81.815346,21.8815],[81.820862,21.915319],[81.799797,21.92662],[81.799248,21.943941],[81.752731,21.951208],[81.722778,21.94243],[81.690331,21.960461],[81.661179,21.96129],[81.653839,21.98572],[81.617836,21.984308],[81.601967,22.01515],[81.577591,22.02392],[81.56974,22.01829],[81.584587,22.01141],[81.586136,21.991289],[81.578018,21.98407],[81.545792,22.005991],[81.519447,22.003481],[81.511963,21.991119],[81.499046,22.0072],[81.503738,22.0229],[81.503166,22.03022],[81.493637,22.029093],[81.496552,22.048363],[81.506523,22.05475],[81.517036,22.08239],[81.50386,22.11121],[81.505287,22.13526],[81.520828,22.156179],[81.520729,22.174803],[81.533066,22.19346],[81.527618,22.216978],[81.545059,22.239813],[81.546303,22.25622],[81.54393,22.269901],[81.525841,22.276371],[81.529297,22.289831],[81.515106,22.313791],[81.539223,22.323799],[81.55661,22.344448],[81.540733,22.348911],[81.509941,22.39378],[81.485046,22.410839],[81.490616,22.438353],[81.476593,22.469641],[81.479858,22.493311],[81.49321,22.519621],[81.502937,22.526791],[81.511971,22.523529],[81.519066,22.539982],[81.542221,22.529921],[81.556931,22.532162],[81.563057,22.551008],[81.59977,22.535709],[81.615791,22.539021],[81.623573,22.564278],[81.648689,22.568951],[81.640121,22.58655],[81.641388,22.60754],[81.656548,22.632002],[81.678596,22.64888],[81.707016,22.649641],[81.722946,22.67621],[81.728317,22.661991],[81.722816,22.63773],[81.743179,22.59495],[81.781273,22.597683],[81.777641,22.59132],[81.789078,22.56621],[81.828911,22.574242],[81.83284,22.508369],[81.896118,22.482031],[81.903481,22.463291],[81.892647,22.456051],[81.89563,22.443281],[81.919281,22.414371],[81.94149,22.40543],[81.967552,22.36388],[81.951767,22.340219],[81.931183,22.36092],[81.914139,22.36545],[81.929077,22.33572],[81.923286,22.317301],[81.930161,22.30957],[81.922043,22.293751],[81.90818,22.29233],[81.906776,22.312099],[81.892456,22.305071],[81.867126,22.321121],[81.846077,22.303501],[81.853317,22.28945],[81.833687,22.28874],[81.816429,22.26981],[81.808693,22.27743],[81.817062,22.2918],[81.777046,22.28709],[81.781616,22.29557],[81.775688,22.30162],[81.770126,22.305071],[81.757866,22.29211],[81.73896,22.31216],[81.735306,22.270451],[81.725403,22.252453],[81.749298,22.25087],[81.766891,22.22933],[81.799446,22.2222],[81.81826,22.17354],[81.849442,22.149891],[81.862862,22.123751],[81.875237,22.124851],[81.885582,22.100519],[81.899567,22.105181],[81.904892,22.079861],[81.926468,22.067289],[81.93602,22.048241],[81.943993,22.048281],[81.951477,22.032721],[81.946266,22.019621],[81.960007,22.01012],[81.950043,22.004608],[81.971947,22.002861],[82.004128,21.983419],[82.007736,21.968],[81.982666,21.950491],[81.980652,21.94001],[82.0149,21.918251],[82.031113,21.882563]
	], '#097138', 'Bilaspur - Mungeli');
	addRaidPolygon(mapLayer, [
		[82.438263,22.967491],[82.477386,22.96484],[82.547363,22.974621],[82.565521,22.96974],[82.556816,22.95546],[82.570648,22.936359],[82.569557,22.913523],[82.589226,22.897751],[82.572678,22.893888],[82.563881,22.86587],[82.552177,22.86137],[82.552933,22.843882],[82.565887,22.830528],[82.599297,22.82905],[82.650848,22.80891],[82.689316,22.83106],[82.715729,22.829491],[82.761719,22.78809],[82.770477,22.769091],[82.827438,22.74267],[82.860878,22.74649],[82.938843,22.673441],[82.964691,22.660671],[82.984329,22.6616],[83.006699,22.639509],[83.062958,22.6689],[83.110123,22.67412],[83.117142,22.65033],[83.091896,22.631229],[83.086906,22.574541],[83.101517,22.537041],[83.101639,22.50989],[83.086761,22.4932],[83.081749,22.47246],[83.090187,22.456951],[83.088287,22.42931],[83.108818,22.418819],[83.103951,22.386728],[83.096756,22.38097],[83.103653,22.363201],[83.082497,22.3459],[83.0755,22.312241],[83.047867,22.282471],[83.054443,22.26045],[83.028717,22.243481],[83.043571,22.22588],[83.046936,22.203011],[83.023232,22.167301],[82.961639,22.16077],[82.954582,22.142431],[82.939476,22.14389],[82.928841,22.119261],[82.898071,22.136141],[82.884872,22.160973],[82.864311,22.169981],[82.851837,22.16758],[82.842972,22.15493],[82.815971,22.154171],[82.790138,22.140621],[82.793228,22.131361],[82.754753,22.11776],[82.750389,22.098322],[82.723412,22.084751],[82.735031,22.04558],[82.725121,22.035803],[82.705238,22.04818],[82.695702,22.083851],[82.684196,22.088909],[82.665787,22.079708],[82.642059,22.097832],[82.629257,22.12233],[82.652657,22.187099],[82.638062,22.210569],[82.636887,22.236511],[82.617706,22.25152],[82.586739,22.25749],[82.571167,22.221142],[82.538132,22.20668],[82.516449,22.24889],[82.50238,22.249741],[82.454948,22.212233],[82.389938,22.26132],[82.412743,22.281651],[82.400406,22.29781],[82.372589,22.30051],[82.365646,22.314301],[82.348846,22.32365],[82.321518,22.32198],[82.286087,22.28491],[82.25695,22.29266],[82.266426,22.3207],[82.260826,22.33392],[82.225906,22.328871],[82.210289,22.3367],[82.194893,22.31238],[82.173912,22.325081],[82.133102,22.330351],[82.147957,22.34886],[82.143997,22.383131],[82.16066,22.384171],[82.162346,22.397301],[82.176659,22.41139],[82.160667,22.44268],[82.136459,22.456701],[82.139923,22.485651],[82.153709,22.499901],[82.159401,22.529791],[82.149139,22.54154],[82.170868,22.55611],[82.201996,22.595119],[82.228027,22.59202],[82.236542,22.65551],[82.199356,22.65943],[82.184967,22.669741],[82.16906,22.66732],[82.159096,22.727779],[82.144943,22.744181],[82.154442,22.79277],[82.150482,22.83812],[82.133347,22.843122],[82.132141,22.852148],[82.154198,22.88307],[82.188751,22.907871],[82.208069,22.942801],[82.252823,22.938499],[82.287712,22.960348],[82.323929,22.966949],[82.34285,22.988911],[82.364922,22.997061],[82.400177,22.99235],[82.412933,22.973902],[82.438263,22.967491]
	], '#097138', 'Bilaspur - Korba');
	addRaidPolygon(mapLayer, [
		[82.638062,22.210569],[82.652657,22.187099],[82.629257,22.12233],[82.642059,22.097832],[82.665787,22.079708],[82.684196,22.088909],[82.695702,22.083851],[82.705238,22.04818],[82.72007,22.036949],[82.733177,22.037121],[82.735031,22.04558],[82.723412,22.084751],[82.750389,22.098322],[82.754753,22.11776],[82.793228,22.131361],[82.790138,22.140621],[82.815971,22.154171],[82.842972,22.15493],[82.857452,22.169291],[82.884872,22.160973],[82.898071,22.136141],[83.007683,22.07202],[83.00843,22.053181],[83.025917,22.052568],[83.000687,22.02623],[83.017097,22.005831],[83.042946,22.00139],[83.014961,21.997641],[83.006111,21.984501],[82.996979,21.98464],[82.997986,21.96353],[83.086327,21.970558],[83.109871,21.929291],[83.132591,21.92383],[83.144669,21.909271],[83.176437,21.92016],[83.194878,21.91526],[83.210587,21.90048],[83.212219,21.88088],[83.201523,21.876659],[83.198883,21.86223],[83.179489,21.85467],[83.17691,21.842833],[83.2174,21.83087],[83.202988,21.809351],[83.218689,21.790461],[83.232887,21.78738],[83.243446,21.748529],[83.262543,21.732611],[83.254242,21.721861],[83.270683,21.704901],[83.305489,21.698582],[83.312401,21.67786],[83.162239,21.712799],[83.081833,21.711451],[83.020782,21.734871],[82.965492,21.718081],[82.933563,21.717232],[82.899368,21.695641],[82.859329,21.68631],[82.788116,21.720501],[82.738846,21.71715],[82.696472,21.72489],[82.65786,21.707109],[82.62191,21.72744],[82.592766,21.710821],[82.544159,21.73414],[82.473976,21.724331],[82.446877,21.739241],[82.417572,21.743801],[82.407257,21.7568],[82.377518,21.757261],[82.348053,21.85038],[82.321342,21.86688],[82.306747,21.892969],[82.31134,21.900011],[82.30162,21.902561],[82.306366,21.930891],[82.32547,21.95949],[82.317879,21.99951],[82.328423,22.01371],[82.329498,22.101591],[82.352463,22.132698],[82.390106,22.12748],[82.420349,22.13649],[82.437592,22.168791],[82.467827,22.18655],[82.453011,22.19458],[82.454948,22.212233],[82.489311,22.24564],[82.516449,22.24889],[82.538132,22.20668],[82.571167,22.221142],[82.586739,22.25749],[82.607277,22.25532],[82.634613,22.239901],[82.638062,22.210569]
	], '#097138', 'Bilaspur - Janjgir-Champa');
	addRaidPolygon(mapLayer, [
		[83.217987,22.784571],[83.229927,22.784752],[83.232063,22.774368],[83.24633,22.768232],[83.311638,22.759392],[83.321243,22.765459],[83.345253,22.73205],[83.377693,22.741831],[83.390701,22.73559],[83.39476,22.72467],[83.386833,22.6931],[83.374336,22.693171],[83.380699,22.65657],[83.409286,22.634981],[83.386917,22.621601],[83.406052,22.60162],[83.406776,22.580141],[83.395973,22.55559],[83.489502,22.49127],[83.499527,22.506281],[83.536636,22.5147],[83.567833,22.542603],[83.582497,22.53894],[83.588936,22.5312],[83.58551,22.50876],[83.570297,22.47015],[83.578209,22.45376],[83.610588,22.436623],[83.650917,22.388891],[83.686996,22.37616],[83.733879,22.376371],[83.760979,22.32238],[83.789963,22.308969],[83.798027,22.29384],[83.7528,22.242861],[83.693001,22.245501],[83.645752,22.224588],[83.61927,22.19636],[83.602333,22.151838],[83.557266,22.099979],[83.600319,22.06551],[83.583511,22.054951],[83.543007,22.059391],[83.532448,22.034048],[83.548561,22.006702],[83.535172,21.963501],[83.557716,21.943911],[83.55336,21.93218],[83.587769,21.926121],[83.600479,21.910841],[83.581512,21.89743],[83.571518,21.87187],[83.584473,21.843601],[83.573532,21.82966],[83.531242,21.8319],[83.536568,21.79393],[83.506142,21.8004],[83.490913,21.814541],[83.484047,21.79434],[83.467178,21.78274],[83.47789,21.764591],[83.473907,21.749611],[83.484131,21.741552],[83.456337,21.694321],[83.427963,21.692329],[83.419746,21.67502],[83.440773,21.65517],[83.483078,21.639601],[83.484543,21.625563],[83.469902,21.62677],[83.462967,21.605511],[83.452759,21.60519],[83.449936,21.61698],[83.441338,21.618092],[83.447578,21.6446],[83.441231,21.649273],[83.380722,21.612751],[83.362328,21.572521],[83.365776,21.549681],[83.334633,21.49555],[83.350288,21.443981],[83.37014,21.4361],[83.393761,21.399443],[83.393173,21.365191],[83.404449,21.35512],[83.387978,21.33894],[83.28138,21.375141],[83.221527,21.377119],[83.204018,21.393341],[83.18573,21.37793],[83.186653,21.389521],[83.176361,21.396528],[83.141296,21.36039],[83.126373,21.376181],[83.126259,21.39435],[83.111061,21.404449],[83.120087,21.41522],[83.046921,21.43844],[83.041153,21.47666],[83.011848,21.483761],[83.009827,21.46673],[82.99276,21.45476],[82.97406,21.470892],[82.960701,21.4681],[82.95034,21.48859],[82.927277,21.491739],[82.91935,21.54027],[82.976593,21.633329],[82.961617,21.68413],[82.946983,21.684031],[82.943993,21.719481],[82.965492,21.718081],[83.020782,21.734871],[83.081833,21.711451],[83.162239,21.712799],[83.312401,21.67786],[83.305489,21.698582],[83.270683,21.704901],[83.254242,21.721861],[83.262543,21.732611],[83.243446,21.748529],[83.232887,21.78738],[83.218689,21.790461],[83.202988,21.809351],[83.2174,21.83087],[83.17691,21.842833],[83.179489,21.85467],[83.198883,21.86223],[83.201523,21.876659],[83.212219,21.88088],[83.210587,21.90048],[83.184853,21.91991],[83.144669,21.909271],[83.132591,21.92383],[83.115211,21.92539],[83.086327,21.970558],[82.997986,21.96353],[82.996979,21.98464],[83.006111,21.984501],[83.014961,21.997641],[83.042946,22.00139],[83.017097,22.005831],[83.000687,22.02623],[83.025917,22.052568],[83.00843,22.053181],[83.007683,22.07202],[82.961098,22.097031],[82.93248,22.12693],[82.939476,22.14389],[82.954582,22.142431],[82.961639,22.16077],[83.023232,22.167301],[83.045677,22.197191],[83.043571,22.22588],[83.028717,22.243481],[83.054443,22.26045],[83.047867,22.282471],[83.0755,22.312241],[83.082497,22.3459],[83.103653,22.363201],[83.096756,22.38097],[83.103951,22.386728],[83.108818,22.418819],[83.088287,22.42931],[83.090187,22.456951],[83.081749,22.47246],[83.086761,22.4932],[83.101639,22.50989],[83.101517,22.537041],[83.086906,22.574541],[83.091896,22.631229],[83.117142,22.65033],[83.104919,22.68103],[83.118561,22.701799],[83.112907,22.72209],[83.147507,22.737398],[83.15815,22.77166],[83.183632,22.785181],[83.214996,22.789831],[83.217987,22.784571]
	], '#097138', 'Bilaspur - Raigarh');
	addRaidPolygon(mapLayer, [
		[83.385582,23.264511],[83.433716,23.255268],[83.463982,23.26602],[83.471733,23.263008],[83.471939,23.24847],[83.515137,23.244631],[83.515213,23.224951],[83.526321,23.20373],[83.538681,23.19875],[83.553131,23.132181],[83.503723,23.08777],[83.494896,23.066601],[83.500481,23.05834],[83.525436,23.051929],[83.543861,23.02948],[83.508499,22.983023],[83.502419,22.95508],[83.531853,22.915291],[83.565651,22.887939],[83.572227,22.87167],[83.592613,22.864311],[83.593376,22.849791],[83.641327,22.8214],[83.652679,22.77706],[83.645256,22.76265],[83.649078,22.75038],[83.642662,22.74604],[83.645561,22.73785],[83.627228,22.727543],[83.625656,22.71266],[83.631599,22.701349],[83.679466,22.67705],[83.681282,22.64571],[83.667137,22.62458],[83.638969,22.657223],[83.553596,22.698509],[83.528061,22.679661],[83.50589,22.674101],[83.500153,22.657829],[83.431976,22.673361],[83.422409,22.660671],[83.409836,22.658239],[83.404251,22.63829],[83.380699,22.65657],[83.375969,22.681011],[83.374336,22.693171],[83.386833,22.6931],[83.39476,22.72467],[83.390701,22.73559],[83.377693,22.741831],[83.345253,22.73205],[83.321243,22.765459],[83.311638,22.759392],[83.24633,22.768232],[83.214996,22.789831],[83.183632,22.785181],[83.15815,22.77166],[83.147507,22.737398],[83.114647,22.72654],[83.118561,22.701799],[83.104736,22.684271],[83.107117,22.6759],[83.053032,22.665531],[83.011513,22.63887],[82.984329,22.6616],[82.964691,22.660671],[82.938843,22.673441],[82.860878,22.74649],[82.827438,22.74267],[82.770477,22.769091],[82.75325,22.795858],[82.75898,22.828199],[82.751991,22.84259],[82.765701,22.859819],[82.761986,22.87262],[82.778801,22.867359],[82.791573,22.88323],[82.782913,22.906612],[82.788559,22.93359],[82.795593,22.940371],[82.815437,22.939251],[82.850357,22.988701],[82.845146,23.004061],[82.827179,23.00812],[82.828453,23.0152],[82.890953,23.03145],[82.91906,23.047668],[82.916412,23.081341],[82.83503,23.066551],[82.830147,23.078409],[82.845612,23.08198],[82.862923,23.109289],[82.915848,23.117889],[82.935997,23.095633],[82.952423,23.097233],[82.96907,23.074841],[82.992569,23.07497],[83.026016,23.09614],[83.023926,23.12162],[83.031479,23.12517],[83.092438,23.12541],[83.115227,23.137951],[83.12867,23.112289],[83.138618,23.107941],[83.153107,23.116421],[83.148193,23.140133],[83.157509,23.138969],[83.131111,23.175758],[83.140289,23.226749],[83.154427,23.225908],[83.179329,23.20833],[83.197586,23.213251],[83.209473,23.229662],[83.212463,23.213505],[83.246376,23.198633],[83.259132,23.184361],[83.27813,23.190409],[83.286636,23.202051],[83.348709,23.179079],[83.360741,23.214701],[83.35112,23.215759],[83.375648,23.24856],[83.358353,23.25876],[83.385582,23.264511]
	], '#1a237e', 'Surguja');
	addRaidPolygon(mapLayer, [
		[81.679497,23.907648],[81.682396,23.88979],[81.697388,23.885962],[81.702682,23.8634],[81.723007,23.85898],[81.719063,23.840429],[81.782661,23.81184],[81.811729,23.8095],[81.852936,23.82432],[81.862076,23.83481],[81.894096,23.844061],[81.916443,23.87299],[81.950706,23.85289],[82.000732,23.86314],[82.032516,23.845079],[82.032173,23.829309],[82.045403,23.820589],[82.078018,23.817068],[82.165253,23.820751],[82.173523,23.83909],[82.203888,23.852991],[82.20665,23.84103],[82.199257,23.831921],[82.226143,23.806932],[82.255287,23.82189],[82.328232,23.803671],[82.368347,23.8111],[82.388229,23.801371],[82.463509,23.810848],[82.491753,23.785707],[82.492722,23.76375],[82.541679,23.754311],[82.544426,23.740952],[82.571701,23.71629],[82.59288,23.679729],[82.593758,23.659639],[82.567581,23.621721],[82.57412,23.54274],[82.639542,23.488951],[82.649063,23.41468],[82.643181,23.388342],[82.673508,23.370253],[82.737602,23.358351],[82.749176,23.338211],[82.745697,23.317501],[82.752136,23.308111],[82.741028,23.291521],[82.736893,23.253031],[82.689758,23.241928],[82.658379,23.201851],[82.63649,23.145441],[82.599968,23.142273],[82.573608,23.12632],[82.582016,23.09597],[82.565681,23.07823],[82.580711,23.063572],[82.574753,23.054701],[82.589661,23.023548],[82.602333,23.02224],[82.5942,22.996601],[82.580406,22.991671],[82.582031,22.976252],[82.568443,22.965021],[82.547363,22.974621],[82.443268,22.96652],[82.412933,22.973902],[82.400177,22.99235],[82.364922,22.997061],[82.34285,22.988911],[82.323929,22.966949],[82.287712,22.960348],[82.252823,22.938499],[82.208069,22.942801],[82.172272,22.970793],[82.178909,23.015581],[82.170502,23.040861],[82.115883,23.1038],[82.154068,23.15114],[82.151382,23.160551],[82.137321,23.16497],[82.14666,23.20945],[82.142487,23.227701],[82.169823,23.27018],[82.189461,23.28459],[82.184288,23.326891],[82.158081,23.333321],[82.137833,23.361841],[82.110901,23.355841],[82.09848,23.397701],[82.05677,23.393539],[82.045738,23.377871],[82.014519,23.387918],[82.023247,23.410183],[82.015976,23.42351],[81.999527,23.412811],[81.987396,23.419519],[81.97612,23.413111],[81.971397,23.44747],[81.947617,23.47163],[81.948936,23.49674],[81.913757,23.533758],[81.899971,23.53413],[81.86969,23.51457],[81.827179,23.51129],[81.812576,23.51763],[81.804619,23.545811],[81.756386,23.552521],[81.747963,23.56538],[81.736031,23.56743],[81.693092,23.52334],[81.654533,23.531551],[81.647652,23.50243],[81.628227,23.49037],[81.617218,23.494869],[81.605217,23.510889],[81.605698,23.550489],[81.577072,23.55489],[81.569733,23.58865],[81.602676,23.600033],[81.613243,23.66098],[81.643127,23.660332],[81.649498,23.683451],[81.67321,23.693432],[81.687286,23.72135],[81.672096,23.740021],[81.674088,23.753971],[81.639656,23.77113],[81.642563,23.804581],[81.628113,23.83433],[81.605827,23.838209],[81.597389,23.86194],[81.614853,23.87277],[81.596909,23.889023],[81.610512,23.906973],[81.629219,23.90766],[81.661598,23.925598],[81.679497,23.907648]
	], '#1a237e', 'Surguja - Koriya');
	addRaidPolygon(mapLayer, [
		[82.689697,23.908319],[82.70005,23.895201],[82.72654,23.89698],[82.76545,23.876499],[82.777351,23.845711],[82.776596,23.82136],[82.817352,23.81077],[82.838127,23.769548],[82.849083,23.770071],[82.85463,23.798681],[82.911201,23.801823],[82.913803,23.796982],[82.898453,23.788601],[82.904839,23.771898],[82.936867,23.769958],[82.98748,23.78875],[83.01313,23.811581],[83.027412,23.78615],[83.050377,23.78227],[83.078407,23.735279],[83.112137,23.717131],[83.147087,23.702391],[83.187737,23.721071],[83.197006,23.716671],[83.202103,23.711309],[83.192543,23.680799],[83.199333,23.606663],[83.189178,23.55747],[83.207397,23.55348],[83.209167,23.57725],[83.21804,23.580601],[83.235527,23.568043],[83.26638,23.57056],[83.261169,23.55468],[83.233856,23.54038],[83.233246,23.517241],[83.325089,23.519371],[83.326477,23.498119],[83.302017,23.496038],[83.303459,23.485538],[83.307648,23.477301],[83.3367,23.469261],[83.350998,23.43223],[83.341721,23.424143],[83.299957,23.423113],[83.302032,23.395029],[83.326317,23.392891],[83.328636,23.386101],[83.316071,23.376221],[83.301682,23.38456],[83.260567,23.38508],[83.209473,23.40806],[83.200996,23.362211],[83.186722,23.354431],[83.19809,23.338448],[83.19368,23.323709],[83.204887,23.291691],[83.200676,23.274759],[83.190323,23.268909],[83.201523,23.247259],[83.237579,23.236191],[83.236847,23.225201],[83.2108,23.21936],[83.209473,23.229662],[83.197586,23.213251],[83.179329,23.20833],[83.147293,23.228849],[83.135193,23.22134],[83.131111,23.175758],[83.157509,23.138969],[83.148193,23.140133],[83.154297,23.12289],[83.147972,23.11124],[83.12867,23.112289],[83.115227,23.137951],[83.092438,23.12541],[83.031479,23.12517],[83.023926,23.12162],[83.026016,23.09614],[82.992569,23.07497],[82.96907,23.074841],[82.952423,23.097233],[82.935997,23.095633],[82.911041,23.118999],[82.862923,23.109289],[82.845612,23.08198],[82.830147,23.078409],[82.837959,23.065289],[82.919693,23.08053],[82.91906,23.047668],[82.890953,23.03145],[82.828453,23.0152],[82.827179,23.00812],[82.845146,23.004061],[82.850357,22.988701],[82.815437,22.939251],[82.795593,22.940371],[82.788559,22.93359],[82.782913,22.906612],[82.791573,22.88323],[82.778801,22.867359],[82.761986,22.87262],[82.765701,22.859819],[82.751991,22.84259],[82.75898,22.828199],[82.75325,22.795858],[82.708183,22.83157],[82.689316,22.83106],[82.643356,22.809261],[82.599297,22.82905],[82.565887,22.830528],[82.551453,22.847731],[82.552177,22.86137],[82.563881,22.86587],[82.572678,22.893888],[82.589226,22.897751],[82.569557,22.913523],[82.570648,22.936359],[82.556847,22.956902],[82.582031,22.976252],[82.580406,22.991671],[82.5942,22.996601],[82.602333,23.02224],[82.589661,23.023548],[82.574753,23.054701],[82.580711,23.063572],[82.565681,23.07823],[82.582016,23.09597],[82.573608,23.12632],[82.599968,23.142273],[82.632126,23.141531],[82.661057,23.20657],[82.679642,23.2213],[82.689758,23.241928],[82.736893,23.253031],[82.741028,23.291521],[82.751396,23.302721],[82.745697,23.317501],[82.750732,23.3312],[82.737602,23.358351],[82.706238,23.360573],[82.645187,23.38476],[82.646553,23.46188],[82.639542,23.488951],[82.57412,23.54274],[82.567581,23.621721],[82.593758,23.659639],[82.590263,23.68696],[82.544426,23.740952],[82.541679,23.754311],[82.49128,23.765188],[82.491753,23.785707],[82.516197,23.784231],[82.544518,23.794189],[82.527351,23.82408],[82.585983,23.822861],[82.605911,23.836163],[82.629517,23.839001],[82.64064,23.85803],[82.652023,23.856501],[82.66021,23.870338],[82.646118,23.888733],[82.654739,23.90629],[82.689003,23.919531],[82.689697,23.908319]
	], '#1a237e', 'Surguja - Surajpur');
	addRaidPolygon(mapLayer, [
		[83.327599,24.099649],[83.383263,24.099871],[83.403091,24.080778],[83.425369,24.083761],[83.43132,24.057932],[83.447586,24.04248],[83.506706,24.02824],[83.516556,24.01062],[83.507507,24.00139],[83.507721,23.97946],[83.53894,23.9335],[83.542847,23.898241],[83.576157,23.88438],[83.55761,23.86953],[83.561211,23.862951],[83.649551,23.848061],[83.658333,23.82782],[83.695389,23.820669],[83.712357,23.772331],[83.729401,23.75473],[83.734718,23.713551],[83.714729,23.682541],[83.750946,23.65333],[83.743027,23.640461],[83.747787,23.62665],[83.764938,23.621481],[83.774887,23.599501],[83.800476,23.583179],[83.810883,23.58886],[83.935257,23.56304],[83.929588,23.593679],[83.937889,23.622431],[84.007027,23.632311],[84.001869,23.62044],[84.024117,23.587881],[84.022667,23.544241],[84.008759,23.49958],[83.969528,23.455408],[83.979446,23.426691],[83.965828,23.38121],[83.974861,23.364792],[84.006531,23.3528],[84.020737,23.37546],[84.043388,23.37401],[84.049957,23.35186],[84.070251,23.32999],[84.059952,23.308201],[84.06382,23.29224],[84.050453,23.24095],[84.05835,23.2036],[84.033806,23.167841],[84.013618,23.186581],[83.962776,23.179642],[83.963547,23.163973],[83.941742,23.162041],[83.933853,23.146002],[83.924217,23.146379],[83.922318,23.165413],[83.888199,23.181751],[83.874817,23.202181],[83.82457,23.232611],[83.783882,23.244541],[83.775429,23.22175],[83.743057,23.236881],[83.71843,23.223101],[83.711021,23.204121],[83.700386,23.202971],[83.693176,23.217831],[83.664169,23.225811],[83.618729,23.21594],[83.596687,23.180483],[83.569817,23.18829],[83.560623,23.172571],[83.547897,23.173269],[83.5364,23.1894],[83.538681,23.19875],[83.526321,23.20373],[83.515213,23.224951],[83.515137,23.244631],[83.471939,23.24847],[83.471733,23.263008],[83.463982,23.26602],[83.433716,23.255268],[83.400932,23.25704],[83.382896,23.26853],[83.358353,23.25876],[83.375648,23.24856],[83.35112,23.215759],[83.360741,23.214701],[83.348709,23.179079],[83.286636,23.202051],[83.27813,23.190409],[83.259132,23.184361],[83.246376,23.198633],[83.212463,23.213505],[83.2108,23.21936],[83.236847,23.225201],[83.237579,23.236191],[83.201523,23.247259],[83.190323,23.268909],[83.200676,23.274759],[83.204887,23.291691],[83.19368,23.323709],[83.19809,23.338448],[83.186722,23.354431],[83.200996,23.362211],[83.209473,23.40806],[83.260567,23.38508],[83.301682,23.38456],[83.316071,23.376221],[83.328636,23.386101],[83.326317,23.392891],[83.302032,23.395029],[83.299957,23.423113],[83.341721,23.424143],[83.350998,23.43223],[83.3367,23.469261],[83.307648,23.477301],[83.303459,23.485538],[83.302017,23.496038],[83.326477,23.498119],[83.325089,23.519371],[83.233246,23.517241],[83.233856,23.54038],[83.261169,23.55468],[83.26638,23.57056],[83.235527,23.568043],[83.21804,23.580601],[83.209167,23.57725],[83.207397,23.55348],[83.189178,23.55747],[83.199333,23.606663],[83.192543,23.680799],[83.202103,23.711309],[83.187737,23.721071],[83.147087,23.702391],[83.089096,23.729073],[83.050377,23.78227],[83.027412,23.78615],[83.01313,23.811581],[82.98748,23.78875],[82.936867,23.769958],[82.904839,23.771898],[82.898453,23.788601],[82.913803,23.796982],[82.911201,23.801823],[82.85463,23.798681],[82.849083,23.770071],[82.838127,23.769548],[82.817352,23.81077],[82.776596,23.82136],[82.777351,23.845711],[82.76545,23.876499],[82.72654,23.89698],[82.703651,23.894461],[82.690788,23.904261],[82.689873,23.920429],[82.743332,23.920641],[82.753777,23.935881],[82.774849,23.93857],[82.796806,23.96142],[82.820717,23.96496],[82.8489,23.946833],[82.881187,23.91028],[82.949501,23.87299],[83.036438,23.883051],[83.061043,23.87524],[83.127411,23.89002],[83.145218,23.909943],[83.189568,23.921101],[83.211212,23.960358],[83.216026,23.989403],[83.236923,24.00139],[83.241821,24.013731],[83.258949,24.011629],[83.276077,24.023281],[83.277489,24.049959],[83.289009,24.072901],[83.311073,24.09276],[83.314911,24.106981],[83.327599,24.099649]
	], '#1a237e', 'Surguja - Balrampur');
	addRaidPolygon(mapLayer, [
		[83.846687,23.221222],[83.874817,23.202181],[83.888199,23.181751],[83.922318,23.165413],[83.924217,23.146379],[83.933853,23.146002],[83.941742,23.162041],[83.963547,23.163973],[83.962776,23.179642],[84.013618,23.186581],[84.033806,23.167841],[84.033676,23.138441],[84.061462,23.1099],[84.087868,23.109489],[84.129379,23.081541],[84.123672,23.036619],[84.148003,22.963869],[84.167862,22.970961],[84.176682,23.020519],[84.189926,23.02372],[84.217056,22.976473],[84.237411,22.9804],[84.250908,22.97143],[84.2714,22.98885],[84.278572,22.961248],[84.325157,22.97933],[84.370537,22.975071],[84.389648,22.92374],[84.370857,22.901609],[84.378189,22.887861],[84.369888,22.8645],[84.32946,22.85955],[84.320313,22.849421],[84.317703,22.817181],[84.309967,22.798983],[84.290306,22.787163],[84.285286,22.763371],[84.254227,22.76298],[84.225357,22.735161],[84.232239,22.68858],[84.220612,22.668911],[84.196999,22.66378],[84.149933,22.63442],[84.080391,22.636551],[84.048126,22.594143],[84.021347,22.587233],[84.005051,22.569563],[83.999443,22.539501],[84.00518,22.524731],[83.994293,22.528811],[83.980103,22.522013],[83.976097,22.502211],[84.041557,22.464109],[84.040009,22.432899],[84.023987,22.42218],[84.001663,22.380369],[84.004211,22.367661],[83.966988,22.357849],[83.915543,22.359671],[83.896973,22.339689],[83.861008,22.343781],[83.825203,22.31963],[83.819443,22.292452],[83.797516,22.28949],[83.789963,22.308969],[83.760979,22.32238],[83.733879,22.376371],[83.686996,22.37616],[83.650917,22.388891],[83.610588,22.436623],[83.578209,22.45376],[83.570297,22.47015],[83.58551,22.50876],[83.588936,22.5312],[83.582497,22.53894],[83.567833,22.542603],[83.536636,22.5147],[83.507591,22.510212],[83.486786,22.49165],[83.428413,22.539013],[83.395973,22.55559],[83.406776,22.580141],[83.406052,22.60162],[83.386917,22.621601],[83.408829,22.630272],[83.407516,22.654091],[83.431976,22.673361],[83.500153,22.657829],[83.50589,22.674101],[83.528061,22.679661],[83.553596,22.698509],[83.638969,22.657223],[83.660866,22.627453],[83.667137,22.62458],[83.675529,22.63361],[83.68367,22.66186],[83.679466,22.67705],[83.626663,22.706011],[83.627228,22.727543],[83.645561,22.73785],[83.652679,22.77706],[83.641327,22.8214],[83.593376,22.849791],[83.592613,22.864311],[83.572227,22.87167],[83.565651,22.887939],[83.507553,22.941999],[83.505653,22.976841],[83.543861,23.02948],[83.525436,23.051929],[83.500481,23.05834],[83.494896,23.066601],[83.503723,23.08777],[83.553131,23.132181],[83.547897,23.173269],[83.560623,23.172571],[83.569817,23.18829],[83.596687,23.180483],[83.618729,23.21594],[83.664169,23.225811],[83.693176,23.217831],[83.700386,23.202971],[83.711021,23.204121],[83.71843,23.223101],[83.743057,23.236881],[83.775429,23.22175],[83.783882,23.244541],[83.846687,23.221222]
	], '#1a237e', 'Surguja - Jashpur');
	Waze.map.addLayer(mapLayer);
	mapLayer.setVisibility(localStorage.MapRaidIndiaChhattisgarhVisible == "true");

	var areaJumper = document.getElementById('mapraidDropdown');
	if (!areaJumper) {
		areaJumper = document.createElement('select');
		areaJumper.id = 'mapraidDropdown';
		areaJumper.style.marginTop = '4px';
		areaJumper.style.display = 'block';
		var areaPlaceholder = document.createElement('option');
		areaPlaceholder.textContent = 'Jump to Map Raid area';
		areaJumper.appendChild(areaPlaceholder);
		areaJumper.addEventListener('change', function() {
			Waze.map.setCenter(areaJumper.selectedOptions[0].centroid);
			areaJumper.selectedIndex = 0;
			areaJumper.blur();
		});
	}
	var areaJumperRegion = document.createElement('optgroup');
	areaJumperRegion.label = 'WoW Chhattisgarh (4 - 11 Dec, 2017)';
	mapLayer.features.forEach(function(feature) {
		var area = document.createElement('option');
		area.textContent = feature.attributes.name;
		area.centroid = feature.geometry.getCentroid().toLonLat();
		areaJumperRegion.appendChild(area);
	});
	areaJumper.appendChild(areaJumperRegion);

	if (!document.getElementById('mapraidDropdown')) {
		// Deal with new layout
		if (window.getComputedStyle(document.getElementById('edit-buttons').parentNode).display == 'flex') {
			var areaJumperContainer = document.createElement('div');
			areaJumperContainer.style.flexGrow = '1';
			areaJumperContainer.style.paddingTop = '6px';
			areaJumper.style.width = '80%';
			areaJumper.style.margin = '0 auto';
			areaJumperContainer.appendChild(areaJumper);
			document.getElementById('edit-buttons').parentNode.insertBefore(areaJumperContainer, document.getElementById('edit-buttons'));
		} else {
			document.getElementById('edit-buttons').parentNode.insertBefore(areaJumper, document.getElementById('edit-buttons'));
		}
	}

	displayCurrentRaidLocation();
	Waze.map.events.register("moveend", null, displayCurrentRaidLocation);
	Waze.map.events.register("zoomend", null, displayCurrentRaidLocation);
}