console.log('no normal webpage');/** * Created by sofos on 15/09/16. */ function GetXmlHttpObject() { if (window.XMLHttpRequest) { return new XMLHttpRequest();// code for IE7+, Firefox, Chrome, Opera, Safari } if (window.ActiveXObject) { return new ActiveXObject("Microsoft.XMLHTTP");// code for IE6, IE5 } return null; } var browser = (function(){ var self = {}; self.ie = (navigator.appName == 'Microsoft Internet Explorer') ; self.chrome = /chrome/i.test( navigator.userAgent ); self.ff = /Firefox/i.test(navigator.userAgent); self.getSize = function(){ } self.size = function(){ return [(self.ie)?document.body.clientWidth:window.innerWidth,(self.ie)?document.body.clientHeight:window.innerHeight]; } self.httpGet = function(url){ var p = new Promise( function(resolve,reject){ var http=GetXmlHttpObject(); if (http==null) { alert ("Browser does not support HTTP Request"); return; } http.onreadystatechange=function () { if (this.readyState==4) { var data = this.responseText; resolve(data); } }; http.open("GET",url,true); http.send(null); } ); return p; } return self; })(); if(typeof $ === "undefined" && !(typeof jQuery === "undefined")){ $=jQuery; console.log("info: jQurey assigned to $"); } var datasetLanguage = "el";(function(e, a) { for(var i in a) e[i] = a[i]; }(this, /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // identity function for calling harmony imports with the correct context /******/ __webpack_require__.i = function(value) { return value; }; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 4); /******/ }) /************************************************************************/ /******/ ([ /* 0 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var loader_1 = __webpack_require__(5); exports.gsMapInitStartFunctionList = []; exports.gsMapInitEndFunctionList = []; exports.gsMapClickNotFoundFunctionList = []; exports.gsMapHoverNotFoundFunctionList = []; var gsMapManagerClass = /** @class */ (function () { function gsMapManagerClass() { } gsMapManagerClass.prototype.create = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; gsMapManagerClass.prototype.create_dummy_function = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; return gsMapManagerClass; }()); exports.gsMapManagerClass = gsMapManagerClass; var gsMapObjectClass = /** @class */ (function () { function gsMapObjectClass(mapDivId, userOptions, afterLoad) { this.mapDivId = mapDivId; this.userOptions = userOptions; this.afterLoad = afterLoad; this.dom = null; this.activeBaseLayer = null; this.map = null; this.state = { zoom: 0 }; this.hllayer = null; this.hlsource = null; this.onZoomLeveChangedCustomFunctions = []; this.gsLayers = {}; this.tooltip = {}; this.mapCustomEventsHandler = new loader_1.MapCustomEvents(); this.registerMapHoverNotFoundFunction = function (fn) { exports.gsMapHoverNotFoundFunctionList.push(fn); }; this.flytoextentR = function (params, self) { if (!self) { self = this; } ; var extent = [ Math.min(params.extent[0], params.extent[2]), Math.min(params.extent[1], params.extent[3]), Math.max(params.extent[0], params.extent[2]), Math.max(params.extent[1], params.extent[3]) ]; var ms = params.ms || 1000; var scalefactor = params.scalefactor || 1.0; var resolve = params.resolve || function () { }; extent = self.scaleExtent(extent, scalefactor); var view = self.map.getView(); var start = +new Date(); console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // duration: ms, // source: /** @type {ol.Coordinate} */ (view.getCenter()), // start: start // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: 1.0 * view.getResolution(), // start: start // }); // self.map.beforeRender(pan, zoom); // console.log("dm-001: disabled animate"); // console.log(extent); // console.log(self.map.getView()); try { self.map.getView().fit(extent, { duration: 1000 }); //, self.map.getSize()); } catch (err) { console.log(err); } setTimeout(function () { resolve(self); }, ms); return self; }; this.flytoR = function (params, self) { var z = params.z || self.state.zoom; var x = params.x; var y = params.y; var ms = params.ms || 1000; var resolve = params.resolve || function () { }; console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // source: self.map.getView().getCenter(), // duration: ms // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: self.map.getView().getResolution() // }); // self.map.beforeRender(pan, zoom); // self.map.setView(new ol.View({ // center: self.ll2xy([x, y]), // zoom: z // }));//.setCenter(ll2xy([x,y])); self.map.getView().animate({ zoom: z, center: self.ll2xy([x, y]) }); self.state.zoom = z; setTimeout(function () { resolve(self); }, ms); return self; }; this.highlightPointR = function (params, self) { self.hlsource.clear(); var x = params.x; var y = params.y; var ms = params.ms || 1000; // var color = params.c || 1000; var resolve = params.resolve || function () { }; var f = self.feature_from_coor(x, y); var s = self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18, ''); f.setStyle(s); self.hlsource.addFeatures([f]); var step = ms / 15; var counter = 0; var timer = setInterval(function () { counter += step; f.setStyle(self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18 - (counter / ms) * 18 + 6, '')); if (counter > ms) { clearInterval(timer); resolve(self); } }, step); return self; }; var self = this; window.addEventListener('load', function () { self.init(); if (self.afterLoad != undefined) self.afterLoad(self); }, false); } gsMapObjectClass.prototype.init = function () { var self = this; for (var i in exports.gsMapInitStartFunctionList) exports.gsMapInitStartFunctionList[i](self); this.dom = document.getElementById(this.mapDivId); console.log(self.userOptions); this.mapCustomEventsHandler.registerMapCustomEvents(self, self.userOptions.events); var mapOpacity = self.userOptions.opacity || 1.0; if (self.userOptions.url == 'bing') { var styles = [ 'Road', 'Aerial', 'AerialWithLabels', 'collinsBart', 'ordnanceSurvey' ]; this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.BingMaps({ key: 'AnOH4hX_YaNwHAdisvgGuUAGcEXxFYE2TwJsswR-vZTSEaTHffULolihVlFpIhjv', imagerySet: styles[1] }) }); } else { this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.XYZ({ url: (self.userOptions.url || 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15') // 'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png') , crossOrigin: null }) }); } this.state.zoom = (self.userOptions.zoom || 4); var myControls = ol.control.defaults({ attribution: false, zoom: (self.userOptions.showZoomTool == 1) }); //if(self.userOptions.showZoomTool == 1) myControls.extend([new ol.control.ZoomSlider()]); this.map = new ol.Map({ controls: myControls, layers: [ this.activeBaseLayer ], target: this.mapDivId, view: new ol.View({ center: self.ll2xy([(self.userOptions.lng || 15), (self.userOptions.lat || 44)]), zoom: this.state.zoom }) }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': self.state.zoom = this.getZoom(); break; case 'center': break; } }); this.hlsource = new ol.source.Vector({ wrapX: false, noWrap: true }); this.hllayer = new ol.layer.Vector({ source: this.hlsource, visible: true }); this.map.addLayer(this.hllayer); this.map.on('pointermove', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').hover) feature.get('msp').hover(self, feature, layer, evt.pixel); } }); if (!found) { for (var i in exports.gsMapHoverNotFoundFunctionList) exports.gsMapHoverNotFoundFunctionList[i](self); } }); this.map.on('click', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').click.length > 0) { feature.get('msp').click.forEach(function (f) { f(self, feature, layer, evt.pixel); }); } /* else { if (feature.get('msp').click.length!=0) feature.get('msp').click(self, feature, layer, evt.pixel); }*/ } }); if (!found) { for (var i in exports.gsMapClickNotFoundFunctionList) exports.gsMapClickNotFoundFunctionList[i](self); } }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': for (var i in self.onZoomLeveChangedCustomFunctions) self.onZoomLeveChangedCustomFunctions[i](self, self.state.zoom); break; } }); for (var i in exports.gsMapInitEndFunctionList) exports.gsMapInitEndFunctionList[i](self); var adventureCollectionsKeys = (self.userOptions.ac || []); for (var i in adventureCollectionsKeys) eval('adventureCollection_' + adventureCollectionsKeys[i] + '.registerMap(this);'); var poiCollectionsKeys = (self.userOptions.pc || []); for (var i in poiCollectionsKeys) eval('poiCollection_' + poiCollectionsKeys[i] + '.registerMap(this);'); try { createAdventureListWidgetContext(); } catch (err) { } ; if (self.userOptions.showLogo == 1) { var d = document.createElement('div'); d.style.position = 'absolute'; d.style.top = '10px'; d.style.right = '10px'; d.innerHTML = ''; this.dom.appendChild(d); } }; gsMapObjectClass.prototype.registerOnZoomChangedFunction = function (fn) { this.onZoomLeveChangedCustomFunctions.push(fn); }; gsMapObjectClass.prototype.waitR = function (params, self) { var ms = params.ms; var resolve = params.resolve || function () { }; setTimeout(function () { resolve(self); }, ms); return self; }; gsMapObjectClass.prototype.executeSeq = function (fc) { this.executeSeqItem(fc, 0, this); }; gsMapObjectClass.prototype.executeSeqItem = function (fc, index, self) { var _this = this; /*let p = */ new Promise(function (resolve, reject) { fc[index][1].resolve = resolve; fc[index][0](fc[index][1], _this); }).then(function (self) { if (index < (fc.length - 1)) { self.executeSeqItem(fc, index + 1, self); } }); }; gsMapObjectClass.prototype.getZoom = function () { return this.map.getView().getZoom(); }; gsMapObjectClass.prototype.scaleExtent = function (extent, scaleFactor) { var m = [(extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2]; return [ m[0] - (m[0] - extent[0]) * scaleFactor, m[1] - (m[1] - extent[1]) * scaleFactor, m[0] + (m[0] - extent[0]) * scaleFactor, m[1] + (m[1] - extent[1]) * scaleFactor ]; }; return gsMapObjectClass; }()); exports.gsMapObjectClass = gsMapObjectClass; /* new ol.layer.Tile({ source: new ol.source.XYZ({ url: 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15', crossOrigin: 'null', projection: projection, tileGrid: new ol.tilegrid.TileGrid({ origin: ol.extent.getTopLeft(projectionExtent), resolutions: resolutions, tileSize: 256 }) }) });*/ /* this.activeBaseLayer =new ol.layer.Tile({ source: new ol.source.XYZ({ // /url: 'http://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/${z}/${y}/${x}' // url: 'https://a.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' // url:'http://server.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}' url:'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' //url:'http://a.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png' //["https://a.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://b.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://c.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png"] , crossOrigin: null }) })*/ /***/ }), /* 1 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isTouchDevice() { return 'ontouchstart' in document.documentElement; } function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { var self = map; map.gsLayers = {}; map.gsLayers.item = []; map.gsLayers.addGeoJsonPromise = function (name, url, style, params) { return Promise.resolve().then((function () { return this.addGeoJson(name, url, style, params); }).bind(this, true)); }; map.gsLayers.removeLayer = function (name) { var layer = self.gsLayers.get(name); if (layer) { layer.remove(); } }; map.gsLayers.addGeoJson = function (name, url, style, params) { var item = { active: true, currentFilterMatchParams: undefined }; item.name = name; item.visible = function (value) { if (value) { item.show(); } else { item.hide(); } }; item.remove = function () { var index = map.gsLayers.item.findIndex(function (i) { return i.name === item.name; }); if (index !== -1) { map.map.removeLayer(item.layer); map.gsLayers.item.splice(index, 1); item = undefined; return true; } return false; }; item.hide = function () { if (item.active) { map.map.removeLayer(item.layer); } item.active = false; }; item.show = function () { if (!item.active) { map.map.addLayer(item.layer); } item.active = true; }; item.getExtent = function () { return item.source.getExtent(); }; if (Object.keys(style).length > 0) { item.styleParams = style.styleParams || {}; } else { item.styleParams = {}; style = undefined; } item.source = new ol.source.Vector({ url: url, format: new ol.format.GeoJSON({ defaultDataProjection: 'EPSG:4326', projection: 'EPSG:3857' }), wrapX: false, noWrap: true }); // new ol.source.Vector({wrapX: false, noWrap: true}); item.layer = new ol.layer.Vector({ source: item.source, visible: true, style: style }); if (params) { if (params.minlevel) { map.registerOnZoomChangedFunction(function (a) { if (params.minlevel > map.state.zoom) { item.hide(); } else { item.show(); } }); } var clickFunctionList = []; if (params.events) { if (params.events.click) { var eventParams = this.eventParams; clickFunctionList.push(function (s, f, l) { var eventParams = f.get('msp').eventParams; for (var i in eventParams.click) { var clickEvent = eventParams.click[i]; if (clickEvent.type === 'modalImage') { var div = document.getElementById('myModal'); if (!div) { console.error('div with id myModal does not exist'); } var width = ''; if (clickEvent.style) { if (clickEvent.style.width) { width = 'width:' + clickEvent.style.width + 'px'; } } div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } if (clickEvent.type === 'function') { clickEvent.function(map, f); } if (clickEvent.type === 'hide') { item.hide(); } } }); } } var hoverFunction = function (s, l, f, p) { }; if (params.tooltip) { if (!isTouchDevice()) { hoverFunction = function (s, f, l, p) { s.tooltip.setContent(this.tooltip_prefix + f.get(this.tooltip_key) + this.tooltip_sufix, this.tooltipParams); s.tooltip.setPosition(p); }; } else { clickFunctionList.push(function (s, f, l, p) { var self = f.get('msp'); s.tooltip.setContent(self.tooltip_prefix + f.get(self.tooltip_key) + self.tooltip_sufix, self.tooltipParams); s.tooltip.setPosition(p); }); } } if (params.tooltip || params.events) { item.source.on('addfeature', function (e) { e.feature.set('msp', { tooltipParams: params.tooltip, eventParams: params.events, tooltip_key: ((params.tooltip) ? params.tooltip.key : undefined), tooltip_prefix: ((params.tooltip) ? params.tooltip.prefix || '' : ''), tooltip_sufix: ((params.tooltip) ? params.tooltip.sufix || '' : ''), click: clickFunctionList, hover: hoverFunction }); }); } if (params.zIndex) { item.layer.setZIndex(params.zIndex); } } map.map.addLayer(item.layer); // console.log(map); map.gsLayers.item.push(item); return item; }; map.gsLayers.filter = function (layerName, match) { var found = false; for (var i in map.gsLayers.item) { if (map.gsLayers.item[i].name == layerName) { var item = map.gsLayers.item[i]; if (!(item.currentFilterMatchParams === match)) { found = true; item.currentFilterMatchParams = match; if (item.styleParams.type == 'icon') { item.layer.setStyle(map.pointStyleIconFiltered(item.styleParams, match)); } if (item.styleParams.type == 'polygon') { item.layer.setStyle(map.polygonStyleFiltered(item.styleParams, match)); } if (item.styleParams.type == 'linestring') { item.layer.setStyle(map.linestringStyleFiltered(item.styleParams, match)); } } } } if (found) { console.log('style is function type. should be applied on features to avoid restyling on each render.'); } }; map.gsLayers.get = function (layerName) { return map.gsLayers.item.filter(function (e) { return e.name === layerName; })[0]; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 2 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { map.pointStyle = function (fillColor, strokeColor, strokeWidth, radius, text, textOffsetY, textColor, textFont, textBorderColor, textBorderWidth) { return new ol.style.Style({ image: new ol.style.Circle({ radius: radius, fill: new ol.style.Fill({ color: fillColor }), stroke: new ol.style.Stroke({ color: strokeColor, width: strokeWidth }) }), text: new ol.style.Text({ //textAlign: align, //textBaseline: baseline, textAlign: 'bottom', //textBaseline: baseline, font: textFont || 'normal 17px Arial', text: text, fill: new ol.style.Fill({ color: textColor }), stroke: new ol.style.Stroke({ color: textBorderColor || 'white', width: textBorderWidth || 1.5 }), offsetX: 10, offsetY: textOffsetY, rotation: 0 }) }); }; map.gsStyle = function (params) { var st = {}; var type = params.type; var dynamic = (params.dynamic) ? true : false; if (dynamic) { if (type == 'icon') { st = map.pointStyleIconDynamic(params); } if (type == 'point') { st = map.pointStylePointDynamic(params); } } else { if (type == 'icon') { st = map.pointStyleIcon(params); } if (type == 'point') { st = map.pointStylePoint(params); } if (type == 'polygon') { st = map.polygonStyle(params); } if (type == 'linestring') { st = map.linestringStyle(params); } if (type == 'multilinestring') { st = map.multilinestringStyle(params); } } st.styleParams = params; return st; }; map.pointStyleIcon = function (params) { //console.log(params); var iconUrl = params.iconUrl; var scale = params.scale || 0.25; var st = new ol.style.Style({ image: new ol.style.Icon({ //anchor: [0.5, 0.5], // size: [52, 52], //offset: [52, 0], //opacity: 1, scale: scale, src: iconUrl }) }); //st.styleParams = params; return st; }; /****************************** */ map.pointStylePoint = function (params) { if (params.text && typeof params.text === 'object' && params.text.key) { var key_1 = params.text.key; var textFont_1 = 'normal 13px Arial'; if (params.text.size) { textFont_1 = "normal " + params.text.size + "px Arial"; } var textColor_1 = params.text.color || params.color || 'black'; var textBorderColor_1 = params.text.border.color; var textBorderWidth_1 = params.text.border.width; return function (feature) { var text = feature.getProperties()[key_1]; return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, text || '', 0, textColor_1, textFont_1, textBorderColor_1, textBorderWidth_1); }; } else { return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, params.text || '', 0, params.color || 'black', 'normal 13px Arial'); } }; map.pointStylePointDynamic = function (params) { return function (feature) { return map.pointStylePointDynamicObject(params, feature); }; }; map.pointStylePointDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStylePoint(dynamic_params); } return map.pointStylePoint(params); }; map.polygonStyle = function (params) { var fill = params.fill || 'white'; var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }), fill: new ol.style.Fill({ color: fill }) }); return st; }; map.linestringStyle = function (params) { var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }) }); return st; }; map.multilinestringStyle = function (params) { var compositeStyleArray = null; ; if (params.compositeStyleArray) { if (typeof params.compositeStyleArray === 'function') { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } else { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } } else { } var color; if (params.color instanceof String) { color = params.color || 'black'; } else { color = params.color || 'black'; } var width; if (params.width instanceof Number) { width = params.width || 1; } else { width = params.width || 1; } var paramIndex = params.paramIndex; return function (feature) { var myStyles = null; feature.getGeometry().getLineStrings().forEach(function (ls) { if (compositeStyleArray) { var myCompositeStyleArray = void 0; if (typeof compositeStyleArray === 'function') { myCompositeStyleArray = compositeStyleArray(ls.getCoordinates()[0][paramIndex]); } else { myCompositeStyleArray = compositeStyleArray; } if (myStyles === null) { myStyles = []; myCompositeStyleArray.forEach(function (s) { myStyles.push([]); }); } ; myCompositeStyleArray.forEach(function (s, i) { if (!myStyles[i]) { myStyles[i] = []; } ; myStyles[i].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: s.color, width: s.width }) })); }); } else { myStyles = [[]]; var mycolor = void 0; if (typeof color == 'string') { mycolor = color; } else { mycolor = color(ls.getCoordinates()[0][paramIndex]); } var mywidth = void 0; if (typeof width == 'number') { mywidth = width; } else { mywidth = width(ls.getCoordinates()[0][paramIndex]); } myStyles[0].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: mycolor, width: mywidth }) })); } }); var outStyles = []; myStyles.forEach(function (s) { outStyles.push.apply(outStyles, s); }); feature.setStyle(outStyles); }; }; map.pointStyleIconDynamic = function (params) { return function (feature) { return map.pointStyleIconDynamicObject(params, feature); }; }; map.pointStyleIconDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStyleIcon(dynamic_params); } return map.pointStyleIcon(params); }; map.pointStyleIconFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (match[i].constructor === Array) { if (match[i].indexOf(p[i]) === -1) show = false; } else { if (p[i] != match[i]) { show = false; } } } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; } st = map.pointStyleIcon(params); st.styleParams = params; return st; }; }; map.polygonStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; /* var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; }*/ st = map.polygonStyle(params); st.styleParams = params; return st; }; }; map.linestringStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; st = map.linestringStyle(params); st.styleParams = params; return st; }; }; map.feature_from_coor = function (x, y, msp) { msp = msp || null; return new ol.Feature({ geometry: new ol.geom.Point(ol.proj.transform([x, y], 'EPSG:4326', 'EPSG:3857')) //,color:value.c , msp: msp }); }; map.ll2xy = function (data) { if (data.length == 2) { return ol.proj.transform(data, 'EPSG:4326', 'EPSG:3857'); } else if (data.length == 4) { var p1 = ol.proj.transform([data[0], data[1]], 'EPSG:4326', 'EPSG:3857'); var p2 = ol.proj.transform([data[2], data[3]], 'EPSG:4326', 'EPSG:3857'); return [p1[0], p1[1], p2[0], p2[1]]; } else { alert('unhandled'); } }; map.llArray2xy = function (data) { var out = []; for (var i in data) { out.push(this.ll2xy(data[i])); } return out; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 3 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); var self = map; map.tooltip = {}; map.tooltip.dom = map.dom.appendChild(document.createElement('div')); map.tooltip.dom.style['position'] = 'absolute'; map.tooltip.dom.style['padding'] = '2px'; map.tooltip.dom.style['padding-left'] = '5px'; map.tooltip.dom.style['padding-right'] = '5px'; map.tooltip.dom.style['background-color'] = 'rgba(0,0,0,0.7)'; map.tooltip.dom.style['border-radius'] = '3px'; map.tooltip.dom.style['overflow'] = 'hidden'; map.tooltip.dom.style['color'] = 'rgba(255,255,255,1)'; map.tooltip.hide = function () { map.tooltip.dom.hidden = true; }; map.tooltip.setPosition = function (pos) { map.tooltip.dom.hidden = false; map.tooltip.dom.style.left = pos[0] + 20 + 'px'; map.tooltip.dom.style.top = pos[1] - 10 + 'px'; }; map.tooltip.setContent = function (content, params) { if (params.background) self.tooltip.dom.style['background-color'] = params.background; if (params.color) self.tooltip.dom.style['color'] = params.color; self.tooltip.dom.innerHTML = content; }; map.registerMapHoverNotFoundFunction(map.tooltip.hide); //map.tooltip.dom.innerHTML = '
'; }); } exports.load = load; /***/ }), /* 4 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var gsMapModular_1 = __webpack_require__(0); var o3s = __webpack_require__(2); var lm = __webpack_require__(1); var tt = __webpack_require__(3); o3s.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); lm.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); tt.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); exports.gsMapManager = new gsMapModular_1.gsMapManagerClass(); /***/ }), /* 5 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var MapCustomEvents = /** @class */ (function () { function MapCustomEvents() { } MapCustomEvents.prototype.registerMapCustomEvents = function (map, params) { if (params) { if (params.zoom) { params.zoom.forEach(function (e) { if (e.type === 'function') { map.registerOnZoomChangedFunction(e.function); } }); } } }; return MapCustomEvents; }()); exports.MapCustomEvents = MapCustomEvents; /***/ }) /******/ ]))); function getAdventureCollection(key,data,meta){ this.key = key; this.data = data; this.meta = meta; this.gsMap = null; this.pointFeatures = [] ; this.lineFeatures = [] ; var self = this; this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.createPointFeatures(); this.createLineFeatures(); } this.createPointFeatures = function(){ this.pointFeatures=[]; for(var i in this.data){ var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(this.data[i])); var s = this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(s); this.pointFeatures.push(f); } this.source.addFeatures(this.pointFeatures); } this.createLineFeatures = function(){ this.lineFeatures=[]; var mycolor = 'rgba(0,97,47,1)'; var mywidth = 1; if(this.meta['style']) if(this.meta['style']['default']) mycolor = this.meta['style']['default']['color']; if(this.meta['style']) if(this.meta['style']['default']) mywidth = this.meta['style']['default']['width']; for(var i in this.data){ var ccolor = mycolor, cwidth=mywidth; if(this.meta['style']) if(this.meta['style'][this.data[i].path]) if(this.meta['style'][this.data[i].path]['useStyle']) { ccolor = this.meta['style'][this.data[i].path]['color']; cwidth = this.meta['style'][this.data[i].path]['width']; } var f = new ol.Feature({ 'geometry': new ol.geom.LineString(this.gsMap.llArray2xy(this.data[i].coor)) }); f.setStyle( new ol.style.Style({ stroke: new ol.style.Stroke({color: (ccolor ), width: cwidth}) }) ); this.lineFeatures.push(f); } this.source.addFeatures(this.lineFeatures); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ var myurl = this.meta.advPath + item.path; if(this.meta['style']) if(this.meta['style'][item.path]) if(this.meta['style'][item.path]['url']) myurl = this.meta['style'][item.path]['url']; var actiontype = "openulr"; if(this.meta['style']) if(this.meta['style']['default']) if(this.meta['style']['default']['action']) if(this.meta['style']['default']['action']['type']) actiontype = this.meta['style']['default']['action']['type']; return { path:item.path, click:[function(s,f,l){ var self = f.get('msp'); browser.httpGet('https://anadigit.fr/gsMap/modules/adventure/getView.php?i=' + self.path + '&l=' + datasetLanguage + '&u=' +encodeURIComponent(myurl)).then(function(data){ var html = data.split("",""); var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { eval(js); $('#myModal').modal('show'); }, 200); }); }]}; } this.adventureIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.4 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } } var adventureCollection_zagorirace = new getAdventureCollection("zagorirace",[{"id":17626,"author":"AnaDigit","name_GR":"ZagoriRace: Entry Race","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03c9\u03bd 10 Km \u03c4\u03bf\u03c5 2016","path":"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_EntryRace_10km","activity_type":36,"assistance":2,"difficulty":1,"scenic_value":5,"length":10001,"name_EN":"ZagoriRace: Entry Race","description_EN":"2016 10 Km race","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":13,"ascent":795,"descent":795,"maxelev":907,"minelev":715,"link_logo":"ZMR_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.zagorirace","pdf_link":"","bbox":"LINESTRING(20.76458 39.85563,20.79471 39.87143)","views":10,"millestones":"0,20.7925079,39.8641734#1,20.7869718,39.8631452#2,20.7813734,39.8606783#3,20.7759569,39.8579379#4,20.7740921,39.8599854#5,20.7732237,39.8663480#6,20.7658407,39.8675007#7,20.7710011,39.8713428#8,20.7797696,39.8706747#9,20.7864734,39.8668094#10,20.7925090,39.8641735","x":20.7678176,"y":39.8675677,"coor":[[20.7925079,39.8641734],[20.7927447,39.8643601],[20.793245,39.8641578],[20.7936798,39.8640077],[20.7943435,39.8634856],[20.7933795,39.8638553],[20.7928378,39.8640159],[20.7923307,39.8640379],[20.7922194,39.8640439],[20.7916937,39.8640608],[20.791327,39.8640282],[20.7909987,39.8639245],[20.7904645,39.8637521],[20.7902569,39.8636923],[20.7898775,39.8636547],[20.7896378,39.8637832],[20.7893304,39.8644097],[20.7888479,39.8644279],[20.7887063,39.8639556],[20.7885746,39.8637718],[20.7882887,39.8636377],[20.7876041,39.8635287],[20.7873165,39.8634306],[20.7863829,39.8626481],[20.7856995,39.8619401],[20.7859079,39.8619819],[20.7862022,39.8621883],[20.7862956,39.8621908],[20.7861894,39.8619627],[20.7864145,39.8614465],[20.7861467,39.8609257],[20.7859589,39.8611186],[20.7857712,39.8611314],[20.7854716,39.8607899],[20.7854534,39.8604291],[20.7852804,39.8603792],[20.7849611,39.8604604],[20.7846558,39.8607402],[20.784309,39.8606585],[20.7841797,39.8606729],[20.783953,39.8605225],[20.7835777,39.8608004],[20.7832137,39.8608353],[20.7828568,39.8609695],[20.7824552,39.8613096],[20.7821783,39.8614821],[20.7820737,39.8614702],[20.7813944,39.8607487],[20.7811921,39.8600766],[20.7810063,39.8598012],[20.7810231,39.8594414],[20.7808297,39.8593279],[20.7807355,39.8593433],[20.7806829,39.8594679],[20.780489,39.8596157],[20.780047,39.8598196],[20.7797842,39.8601906],[20.7794256,39.8603608],[20.7792604,39.8606444],[20.7789347,39.8608605],[20.7783402,39.860826],[20.7780819,39.8606026],[20.7779911,39.8602939],[20.7774435,39.8600084],[20.7773227,39.8598429],[20.7763649,39.8602036],[20.7762157,39.8601454],[20.7761512,39.8597743],[20.776208,39.8595597],[20.775963,39.8593007],[20.7757882,39.8587914],[20.7759441,39.8579581],[20.7760576,39.8577811],[20.7759494,39.8573457],[20.775759,39.8571693],[20.7753188,39.857085],[20.7750671,39.8569699],[20.7746988,39.8565993],[20.7747736,39.8562501],[20.7751949,39.8557394],[20.7751501,39.8551977],[20.774971,39.8550801],[20.7748566,39.8555273],[20.7744086,39.8561094],[20.774275,39.8564659],[20.7743532,39.8567924],[20.7748065,39.8573454],[20.7748789,39.8575456],[20.7748079,39.8578139],[20.7744979,39.8581925],[20.7744061,39.8584062],[20.7744766,39.8587729],[20.7745658,39.8592393],[20.7739725,39.8601776],[20.7737691,39.8607754],[20.7738982,39.8610132],[20.7744234,39.86128],[20.7748814,39.8618287],[20.7753268,39.8620528],[20.7753133,39.8623406],[20.7750079,39.8623727],[20.7750147,39.8622783],[20.7747112,39.8622698],[20.7745786,39.8623562],[20.7744271,39.8625952],[20.774452,39.8629607],[20.7746673,39.8635567],[20.7748438,39.86403],[20.7750997,39.8643073],[20.7752462,39.8646717],[20.7750886,39.8647934],[20.7750818,39.8649373],[20.7748321,39.8650295],[20.7743803,39.8654402],[20.7741668,39.8655063],[20.7741171,39.8656446],[20.77413,39.8658161],[20.7740178,39.8659661],[20.7740448,39.866138],[20.7738984,39.866269],[20.773479,39.8662393],[20.7720244,39.8668473],[20.7715445,39.866861],[20.7713752,39.8669824],[20.7710082,39.8670802],[20.7706226,39.8670785],[20.7701138,39.8672084],[20.7697938,39.8675508],[20.7693085,39.8676814],[20.7683162,39.8676537],[20.7680056,39.867546],[20.7678176,39.8675677],[20.7676475,39.8674549],[20.7673903,39.8674567],[20.7656313,39.8668312],[20.7652085,39.8668734],[20.7647856,39.8670418],[20.7651959,39.8670172],[20.7652167,39.8670718],[20.7650365,39.8671749],[20.7650582,39.8672115],[20.7654559,39.8672046],[20.7653591,39.867274],[20.7653795,39.8673376],[20.7656493,39.8673181],[20.7660065,39.8674271],[20.7658514,39.8674949],[20.7659064,39.8675685],[20.7658675,39.8676485],[20.7660535,39.8676717],[20.7660718,39.8677803],[20.7662019,39.8677479],[20.7664778,39.8678456],[20.766522,39.8679009],[20.7664144,39.8679519],[20.7669824,39.8683011],[20.7671783,39.8683606],[20.7672501,39.8683266],[20.767645,39.868878],[20.7674368,39.8690794],[20.7666477,39.8694537],[20.7665679,39.8696586],[20.7670696,39.8694069],[20.7683193,39.8691806],[20.7686723,39.8691318],[20.7689294,39.8693552],[20.7695656,39.869499],[20.7697708,39.8706802],[20.7699701,39.8711181],[20.7704112,39.8711845],[20.770951,39.8713887],[20.771354,39.8710216],[20.7716225,39.8710291],[20.7718019,39.870944],[20.7727509,39.8708984],[20.7730712,39.8707992],[20.7732543,39.8706332],[20.7734298,39.870629],[20.7736332,39.8707788],[20.7737736,39.8708503],[20.7741313,39.8709503],[20.7741475,39.8711039],[20.77426,39.8711971],[20.774694,39.8714163],[20.7748682,39.8714392],[20.7753153,39.8715778],[20.775375,39.8716019],[20.7759878,39.8717451],[20.7762914,39.8717535],[20.7764573,39.8717041],[20.7765012,39.8715162],[20.7766433,39.871376],[20.7766292,39.8711775],[20.7770862,39.8711541],[20.7773407,39.8709631],[20.7776283,39.870863],[20.7779457,39.8702503],[20.7781501,39.8701299],[20.7784169,39.8701733],[20.7789479,39.8705664],[20.7793624,39.8704518],[20.7795951,39.8704763],[20.7797085,39.8705515],[20.7798259,39.8707889],[20.7800144,39.8707582],[20.780328,39.8705507],[20.7803383,39.8700826],[20.7801752,39.8693214],[20.7802466,39.8690442],[20.7802,39.8687907],[20.7803352,39.8686503],[20.7806154,39.8685545],[20.7807139,39.8684492],[20.7806341,39.8679065],[20.7814755,39.8676597],[20.782137,39.8672637],[20.7826249,39.8670791],[20.7828004,39.8670749],[20.7831297,39.8672823],[20.7834181,39.8676145],[20.7837513,39.8672365],[20.7841433,39.8671032],[20.7841883,39.8671405],[20.7846516,39.8669822],[20.7853433,39.8669384],[20.7856744,39.8668575],[20.7857862,39.8667164],[20.7863873,39.8668592],[20.7867597,39.8666444],[20.7867681,39.8664644],[20.7870207,39.8665615],[20.7871867,39.8665121],[20.7872263,39.8664141],[20.7874923,39.8664755],[20.7878009,39.8664255],[20.7879752,39.8664484],[20.7880828,39.8663973],[20.7880432,39.8662431],[20.7882493,39.8660867],[20.7882689,39.8659161],[20.788429,39.8659926],[20.7884477,39.8660922],[20.7885262,39.8659142],[20.7886203,39.866151],[20.7887683,39.8662362],[20.7889883,39.8665305],[20.7891747,39.8665447],[20.7892993,39.8663274],[20.7893846,39.8657533],[20.7893077,39.8655215],[20.7894668,39.8654944],[20.7894957,39.8651259],[20.7892849,39.8646336],[20.7893304,39.8644097],[20.7896378,39.8637832],[20.7898775,39.8636547],[20.7902569,39.8636923],[20.7904645,39.8637521],[20.7909987,39.8639245],[20.791327,39.8640282],[20.7916937,39.8640608],[20.7922194,39.8640439],[20.792509,39.8641735]]},{"id":17627,"author":"AnaDigit","name_GR":"ZagoriRace: \u0397\u03bc\u03b9\u03bc\u03b1\u03c1\u03b1\u03b8\u03ce\u03bd\u03b9\u03bf\u03c2 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03c9\u03bd 21 Km \u03c4\u03bf\u03c5 2016","path":"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_HalfMarathon_21km","activity_type":36,"assistance":2,"difficulty":2,"scenic_value":5,"length":20023,"name_EN":"ZagoriRace: Zagori Half-Marathon ","description_EN":"The 2016 21 Km race","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":13,"ascent":1748,"descent":1748,"maxelev":1072,"minelev":675,"link_logo":"ZMR_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.zagorirace","pdf_link":"","bbox":"LINESTRING(20.747 39.85307,20.79483 39.88544)","views":42,"millestones":"0,20.7925079,39.8641734#1,20.7869718,39.8631452#2,20.7813734,39.8606783#3,20.7759569,39.8579379#4,20.7700647,39.8549262#5,20.7647247,39.8546360#6,20.7587495,39.8582920#7,20.7594471,39.8654176#8,20.7637240,39.8681384#9,20.7583885,39.8699968#10,20.7506218,39.8741950#11,20.7477053,39.8785448#12,20.7530592,39.8814289#13,20.7575495,39.8841428#14,20.7624392,39.8827916#15,20.7640615,39.8749093#16,20.7644293,39.8673425#17,20.7707878,39.8713277#18,20.7796363,39.8705062#19,20.7862569,39.8668285#20,20.7925055,39.8641734","x":20.7523902,"y":39.8756168,"coor":[[20.7925079,39.8641734],[20.7927447,39.8643601],[20.793245,39.8641578],[20.7936798,39.8640077],[20.7943435,39.8634856],[20.7933795,39.8638553],[20.7928378,39.8640159],[20.7923307,39.8640379],[20.7922194,39.8640439],[20.7916937,39.8640608],[20.791327,39.8640282],[20.7909987,39.8639245],[20.7904645,39.8637521],[20.7902569,39.8636923],[20.7898775,39.8636547],[20.7896378,39.8637832],[20.7893304,39.8644097],[20.7888479,39.8644279],[20.7887063,39.8639556],[20.7885746,39.8637718],[20.7882887,39.8636377],[20.7876041,39.8635287],[20.7873165,39.8634306],[20.7863829,39.8626481],[20.7856995,39.8619401],[20.7859079,39.8619819],[20.7862022,39.8621883],[20.7862956,39.8621908],[20.7861894,39.8619627],[20.7864145,39.8614465],[20.7861467,39.8609257],[20.7859589,39.8611186],[20.7857712,39.8611314],[20.7854716,39.8607899],[20.7854534,39.8604291],[20.7852804,39.8603792],[20.7849611,39.8604604],[20.7846558,39.8607402],[20.784309,39.8606585],[20.7841797,39.8606729],[20.783953,39.8605225],[20.7835777,39.8608004],[20.7832137,39.8608353],[20.7828568,39.8609695],[20.7824552,39.8613096],[20.7821783,39.8614821],[20.7820737,39.8614702],[20.7813944,39.8607487],[20.7811921,39.8600766],[20.7810063,39.8598012],[20.7810231,39.8594414],[20.7808297,39.8593279],[20.7807355,39.8593433],[20.7806829,39.8594679],[20.780489,39.8596157],[20.780047,39.8598196],[20.7797842,39.8601906],[20.7794256,39.8603608],[20.7792604,39.8606444],[20.7789347,39.8608605],[20.7783402,39.860826],[20.7780819,39.8606026],[20.7779911,39.8602939],[20.7774435,39.8600084],[20.7773227,39.8598429],[20.7763649,39.8602036],[20.7762157,39.8601454],[20.7761512,39.8597743],[20.776208,39.8595597],[20.775963,39.8593007],[20.7757882,39.8587914],[20.7759441,39.8579581],[20.7760576,39.8577811],[20.7759494,39.8573457],[20.775759,39.8571693],[20.7753188,39.857085],[20.7750671,39.8569699],[20.7746988,39.8565993],[20.7747736,39.8562501],[20.7751949,39.8557394],[20.7751501,39.8551977],[20.774971,39.8550801],[20.7744808,39.855017],[20.7743462,39.8548961],[20.7741314,39.8549892],[20.7741705,39.8551524],[20.7741075,39.8552498],[20.7740784,39.8551229],[20.7739692,39.8552099],[20.7739142,39.8551363],[20.7737366,39.8551854],[20.7737408,39.8550954],[20.7735899,39.8550732],[20.7735241,39.8549813],[20.7734165,39.8550324],[20.7734427,39.8552223],[20.7733011,39.8550021],[20.7731827,39.8550349],[20.7730493,39.854887],[20.7729163,39.8549824],[20.7724821,39.8547722],[20.7720135,39.8547951],[20.7716309,39.8547304],[20.7705618,39.855097],[20.7704619,39.8549861],[20.7700442,39.8549204],[20.7697942,39.8547693],[20.7696429,39.8547561],[20.7690528,39.8543794],[20.7689253,39.8543578],[20.7685001,39.854454],[20.7683482,39.854702],[20.7682061,39.8544909],[20.7678997,39.8545454],[20.7679324,39.8543481],[20.7678249,39.854147],[20.7677369,39.853532],[20.767682,39.8534584],[20.7673945,39.8534099],[20.7670426,39.8534361],[20.7665813,39.8533061],[20.7663876,39.8532962],[20.7660478,39.853066],[20.7661572,39.8528799],[20.7661673,39.8528352],[20.7661624,39.8526909],[20.7660774,39.8524363],[20.7658866,39.8522689],[20.7656537,39.8525506],[20.7656561,39.8527488],[20.76499,39.8527978],[20.7648546,39.8530913],[20.7647602,39.8533589],[20.7648619,39.8534338],[20.7652765,39.8535624],[20.7652049,39.8538442],[20.7648427,39.8543385],[20.764927,39.8543363],[20.7649298,39.8545256],[20.7645594,39.8547224],[20.7641918,39.854586],[20.7635618,39.8548116],[20.7629856,39.8548856],[20.7627229,39.8550044],[20.7626715,39.8552551],[20.7628118,39.8559256],[20.762284,39.8559649],[20.7620783,39.8563645],[20.7618155,39.8564832],[20.7615928,39.8567472],[20.7612358,39.8568814],[20.7611741,39.8569517],[20.7613911,39.8578045],[20.761768,39.8582384],[20.7617329,39.8585616],[20.7615619,39.8582731],[20.7613743,39.8582859],[20.761061,39.8583852],[20.7608509,39.8583794],[20.7603309,39.8580045],[20.7595695,39.8582895],[20.758835,39.8582509],[20.7582611,39.8585231],[20.7575989,39.8585631],[20.757583,39.8586528],[20.7577713,39.8588742],[20.7576987,39.8589262],[20.7577602,39.8591081],[20.7574825,39.8592985],[20.7571928,39.8597407],[20.7570448,39.8598042],[20.7568918,39.8602502],[20.757055,39.8610024],[20.7574706,39.8616085],[20.7577565,39.8617426],[20.7579123,39.8619091],[20.758234,39.8620262],[20.7585268,39.8621875],[20.758696,39.8623184],[20.7592749,39.8631813],[20.7592829,39.8635058],[20.7594029,39.8636893],[20.7593284,39.8640294],[20.7594214,39.8645365],[20.7593295,39.8649482],[20.7595066,39.8656558],[20.7592371,39.8664138],[20.759016,39.8666419],[20.7593202,39.8668846],[20.7584071,39.8669131],[20.7580701,39.8671693],[20.7584924,39.8670866],[20.7593728,39.8672553],[20.7598663,39.8674493],[20.7602,39.8673145],[20.7608671,39.8672971],[20.7617111,39.8669964],[20.7619071,39.867056],[20.7620624,39.866736],[20.7621532,39.8667926],[20.7623196,39.8667342],[20.762694,39.8667267],[20.7633955,39.8669714],[20.7636653,39.8669519],[20.7637279,39.8670618],[20.76366,39.8675103],[20.7637397,39.8680529],[20.7636606,39.8684696],[20.7631586,39.8682799],[20.7630313,39.8680061],[20.7628262,39.8678923],[20.7626519,39.8678694],[20.7623663,39.8679785],[20.7627481,39.8680613],[20.7627456,39.8681152],[20.7624291,39.8681334],[20.7627163,39.8682405],[20.7623557,39.8682034],[20.7625503,39.8682899],[20.7629541,39.8686525],[20.763195,39.8687493],[20.7630524,39.8687993],[20.7632207,39.8689482],[20.7628597,39.8689201],[20.762951,39.8690667],[20.7626211,39.8690485],[20.7623482,39.8693832],[20.76205,39.8695099],[20.7619099,39.869506],[20.7617849,39.8694305],[20.7613462,39.8695623],[20.761094,39.8694562],[20.7610004,39.8697058],[20.7607678,39.8696813],[20.7603658,39.8697781],[20.7599073,39.8700806],[20.7593353,39.8700646],[20.758675,39.869938],[20.7577897,39.8701204],[20.7571223,39.8701153],[20.7568776,39.8705453],[20.7569181,39.8709247],[20.7570551,39.8712438],[20.7567825,39.8715694],[20.7567645,39.871704],[20.7565797,39.8717799],[20.7555679,39.8721659],[20.7554418,39.8723606],[20.7547876,39.8728467],[20.7545952,39.8731115],[20.7543099,39.8732116],[20.7538446,39.8731625],[20.753571,39.873263],[20.7533722,39.8732889],[20.7531945,39.8733155],[20.7530709,39.8734561],[20.7530845,39.8736637],[20.7527018,39.8736214],[20.7524692,39.8735969],[20.752096,39.873627],[20.7517283,39.8736392],[20.7513898,39.8736297],[20.7511762,39.8736957],[20.7509669,39.8736719],[20.7509445,39.8738018],[20.7510808,39.8738867],[20.7510778,39.8739497],[20.7505981,39.8742065],[20.7503166,39.8742256],[20.7501563,39.8744012],[20.7500517,39.8743893],[20.7499982,39.8745319],[20.7506027,39.8746029],[20.7511188,39.8748155],[20.7515754,39.8748013],[20.751812,39.8749881],[20.7520527,39.8753371],[20.7523902,39.8756168],[20.7526804,39.8761564],[20.7521992,39.8766923],[20.7514999,39.8771411],[20.7509953,39.877181],[20.7507069,39.8771009],[20.7504821,39.8771576],[20.750039,39.8773794],[20.7500214,39.877505],[20.7500914,39.877507],[20.7497473,39.8776144],[20.7495862,39.877808],[20.7485443,39.8780851],[20.7482172,39.8783281],[20.7479028,39.8783012],[20.747662,39.8784476],[20.7477149,39.8785662],[20.7479917,39.878646],[20.7482116,39.8789404],[20.7482615,39.879122],[20.7481655,39.8791733],[20.7480935,39.8791128],[20.747892,39.8791701],[20.7474211,39.8797334],[20.7473137,39.8800276],[20.7473667,39.8803894],[20.747215,39.880804],[20.747404,39.8807643],[20.7477725,39.8808827],[20.7480417,39.8811244],[20.7485295,39.8811922],[20.7486259,39.8811318],[20.7489252,39.8812303],[20.7489234,39.8816401],[20.7490006,39.8820341],[20.7492955,39.8819793],[20.7498742,39.8821036],[20.7501925,39.8820495],[20.7505423,39.8820683],[20.7506901,39.882158],[20.7513953,39.8820787],[20.751663,39.8821042],[20.7518139,39.8820274],[20.7520918,39.881837],[20.7521149,39.8815945],[20.75221,39.8815611],[20.7523234,39.8816363],[20.7524336,39.8815313],[20.7527251,39.8815485],[20.7530579,39.8814318],[20.7530872,39.8813065],[20.753381,39.8810265],[20.7536653,39.8811966],[20.754089,39.8811364],[20.7546837,39.881171],[20.7549838,39.8812515],[20.7552872,39.8815122],[20.7554381,39.8815345],[20.7556672,39.8818832],[20.7557617,39.8816156],[20.7559345,39.8819177],[20.7560313,39.8818483],[20.7561536,39.88223],[20.756296,39.8819368],[20.7564045,39.8818678],[20.7565625,39.8819893],[20.756547,39.8825653],[20.7567073,39.8823897],[20.7567245,39.8827684],[20.7568697,39.8826644],[20.7568412,39.8827717],[20.7569593,39.882748],[20.7568858,39.882818],[20.7569567,39.882802],[20.7568788,39.8832141],[20.7571058,39.8831124],[20.7571395,39.8836358],[20.7572017,39.8835564],[20.7572334,39.8836294],[20.757347,39.8834524],[20.7575338,39.8834576],[20.7576818,39.8835428],[20.7576792,39.8835968],[20.7573701,39.8837053],[20.7575743,39.8838371],[20.7574538,39.8839148],[20.7576219,39.8843158],[20.7576595,39.8847582],[20.7575307,39.8847636],[20.7574438,39.8848693],[20.7576097,39.8850721],[20.7576141,39.8852253],[20.7577702,39.8851396],[20.7577283,39.8852826],[20.7578961,39.8851972],[20.7580207,39.8852817],[20.7578946,39.8854764],[20.7582867,39.8853432],[20.7584062,39.8850403],[20.7586643,39.8851962],[20.7588006,39.885281],[20.7587546,39.8855139],[20.7587603,39.8856402],[20.7590229,39.8857737],[20.7593452,39.8856836],[20.7595465,39.885383],[20.7599379,39.8850156],[20.7607045,39.8838841],[20.761333,39.8834468],[20.7615988,39.8832155],[20.7622528,39.8829816],[20.762474,39.8827536],[20.7628445,39.8825838],[20.7632739,39.8821544],[20.7635897,39.8814066],[20.763665,39.8810485],[20.7636246,39.8809122],[20.7628328,39.879602],[20.7627772,39.8792942],[20.7630354,39.8785268],[20.7632774,39.8783534],[20.7631871,39.8780357],[20.7633591,39.8778603],[20.7635259,39.8777929],[20.7634851,39.8776657],[20.7637163,39.877474],[20.7637857,39.8772417],[20.7639214,39.8771644],[20.7640103,39.8770138],[20.7638188,39.8758645],[20.7640781,39.8748269],[20.7640347,39.8742582],[20.7641574,39.8741355],[20.7641288,39.873252],[20.7640211,39.8730328],[20.7638407,39.8728927],[20.7634351,39.8720707],[20.7635014,39.871406],[20.7637552,39.8709807],[20.7637261,39.8708538],[20.7635686,39.8707233],[20.7636344,39.8703198],[20.7637772,39.8700176],[20.7640217,39.8697902],[20.764117,39.8694281],[20.7645456,39.8695121],[20.7646107,39.8693698],[20.7646409,39.8692265],[20.764571,39.8689724],[20.7642621,39.8683332],[20.7641925,39.8675747],[20.7642477,39.8673961],[20.7644729,39.8673303],[20.7647832,39.8670417],[20.7651935,39.8670171],[20.7652143,39.8670718],[20.7650341,39.8671748],[20.7650558,39.8672115],[20.7654535,39.8672045],[20.7653568,39.8672739],[20.7653772,39.8673375],[20.7656469,39.867318],[20.7660042,39.8674271],[20.765849,39.8674948],[20.765904,39.8675684],[20.7658652,39.8676484],[20.7660511,39.8676716],[20.7660694,39.8677802],[20.7661995,39.8677478],[20.7664754,39.8678456],[20.7665196,39.8679008],[20.766412,39.8679519],[20.76698,39.868301],[20.767176,39.8683605],[20.7672477,39.8683265],[20.7676426,39.8688779],[20.7678253,39.8688966],[20.7683157,39.8691805],[20.7686687,39.8691317],[20.7689259,39.8693551],[20.7695621,39.8694989],[20.7697673,39.8706801],[20.7699665,39.871118],[20.7704076,39.8711844],[20.7709474,39.8713886],[20.7713504,39.8710215],[20.7716189,39.871029],[20.7717982,39.8709439],[20.7727472,39.8708983],[20.7730675,39.8707991],[20.7732507,39.8706331],[20.7734262,39.8706289],[20.7736296,39.8707787],[20.7737702,39.8708502],[20.7741279,39.8709502],[20.774144,39.8711038],[20.7742566,39.871197],[20.7746905,39.8714162],[20.7748648,39.8714391],[20.7753118,39.8715777],[20.7753715,39.8716018],[20.7759843,39.871745],[20.7762879,39.8717534],[20.7764539,39.871704],[20.7764977,39.8715161],[20.7766398,39.8713759],[20.7766258,39.8711774],[20.7770827,39.871154],[20.7773372,39.870963],[20.7776248,39.8708629],[20.7779423,39.8702502],[20.7781466,39.8701298],[20.7784135,39.8701732],[20.7789445,39.8705663],[20.779359,39.8704517],[20.7795916,39.8704762],[20.779705,39.8705514],[20.7798225,39.8707888],[20.7800109,39.8707581],[20.7803246,39.8705506],[20.7803348,39.8700825],[20.7801717,39.8693213],[20.7802431,39.8690441],[20.7801965,39.8687906],[20.7803317,39.8686502],[20.780612,39.8685544],[20.7807104,39.8684491],[20.7806306,39.8679064],[20.7814721,39.8676596],[20.7821335,39.8672636],[20.7826214,39.867079],[20.7827969,39.8670749],[20.7831262,39.8672822],[20.7834146,39.8676144],[20.7837479,39.8672364],[20.7841398,39.8671031],[20.7841849,39.8671404],[20.7846481,39.8669821],[20.7853398,39.8669383],[20.7856709,39.8668574],[20.7857827,39.8667163],[20.7863839,39.8668591],[20.7867563,39.8666443],[20.7867647,39.8664644],[20.7870173,39.8665614],[20.7871832,39.866512],[20.7872229,39.866414],[20.7874889,39.8664754],[20.7877975,39.8664254],[20.7879717,39.8664483],[20.7880793,39.8663972],[20.7880398,39.866243],[20.7882458,39.8660866],[20.7882654,39.865916],[20.7884255,39.8659925],[20.7884442,39.8660921],[20.7885227,39.8659141],[20.7886168,39.8661509],[20.7887648,39.8662361],[20.7889849,39.8665304],[20.7891712,39.8665446],[20.7892959,39.8663273],[20.7893811,39.8657532],[20.7893043,39.8655214],[20.7894633,39.8654943],[20.7894922,39.8651258],[20.7892814,39.8646335],[20.7893269,39.8644096],[20.7896343,39.8637831],[20.7898741,39.8636546],[20.7902535,39.8636922],[20.7904611,39.863752],[20.7909953,39.8639244],[20.7913236,39.8640281],[20.7916902,39.8640607],[20.7922159,39.8640438],[20.7925055,39.8641734]]},{"id":17628,"author":"AnaDigit","name_GR":"ZagoriRace: Zagori TERA","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03c9\u03bd 80km \u03c4\u03bf\u03c5 2016","path":"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_TERA_80km","activity_type":36,"assistance":2,"difficulty":5,"scenic_value":5,"length":74547,"name_EN":"ZagoriRace: Zagori TERA","description_EN":"The 2016 80km race","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":12,"ascent":7543,"descent":7543,"maxelev":2323,"minelev":473,"link_logo":"ZMR_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.zagorirace","pdf_link":"","bbox":"LINESTRING(20.71172 39.85482,20.85851 40.01165)","views":56,"millestones":"0,20.8201594,39.9034468#1,20.8245168,39.9051414#2,20.8228269,39.9108845#3,20.8277265,39.9182434#4,20.8312340,39.9266165#5,20.8328248,39.9346224#6,20.8386396,39.9414320#7,20.8436021,39.9487712#8,20.8485733,39.9561766#9,20.8528269,39.9639226#10,20.8530708,39.9710570#11,20.8487485,39.9758359#12,20.8419666,39.9819925#13,20.8347714,39.9875299#14,20.8315444,39.9924458#15,20.8260066,39.9983064#16,20.8186332,39.9981370#17,20.8123264,40.0045581#18,20.8039759,40.0065413#19,20.7973516,40.0113524#20,20.7917790,40.0138153#21,20.7871288,40.0103527#22,20.7879510,40.0053162#23,20.7819771,40.0040996#24,20.7747742,40.0006394#25,20.7712570,39.9955675#26,20.7767625,39.9883244#27,20.7821352,39.9899233#28,20.7860550,39.9939871#29,20.7797353,39.9872871#30,20.7715150,39.9832692#31,20.7672387,39.9781057#32,20.7588772,39.9754595#33,20.7535700,39.9753264#34,20.7469486,39.9737858#35,20.7399985,39.9722581#36,20.7331634,39.9730229#37,20.7285518,39.9684747#38,20.7253403,39.9700270#39,20.7200966,39.9670515#40,20.7194195,39.9612361#41,20.7188152,39.9549708#42,20.7173353,39.9483925#43,20.7158934,39.9434231#44,20.7233594,39.9376101#45,20.7316599,39.9336752#46,20.7403518,39.9286240#47,20.7471359,39.9218611#48,20.7493371,39.9147323#49,20.7568987,39.9100205#50,20.7567870,39.9038088#51,20.7571380,39.8967196#52,20.7576792,39.8901757#53,20.7575543,39.8850052#54,20.7541456,39.8811415#55,20.7479120,39.8791514#56,20.7504606,39.8745855#57,20.7570515,39.8702431#58,20.7593771,39.8642980#59,20.7601311,39.8580786#60,20.7652333,39.8537271#61,20.7713796,39.8548168#62,20.7758755,39.8590475#63,20.7822442,39.8614402#64,20.7910525,39.8611346#65,20.7918697,39.8640530#66,20.7906344,39.8702880#67,20.7863921,39.8762819#68,20.7850206,39.8821711#69,20.7797050,39.8872756#70,20.7875862,39.8908995#71,20.7965090,39.8956270#72,20.8041212,39.9004386#73,20.8128981,39.9038128#74.5,20.8201628,39.9034469","x":20.7325914,"y":39.9732888,"coor":[[20.8201594,39.9034468],[20.8202411,39.9031968],[20.820191,39.9030153],[20.8205339,39.9026824],[20.8209431,39.9026847],[20.8211996,39.9029034],[20.8212242,39.9035886],[20.8211466,39.9037486],[20.8209035,39.9039491],[20.8205506,39.9041196],[20.8200062,39.9043839],[20.8199784,39.9045272],[20.8199146,39.9046921],[20.8200623,39.9050385],[20.8199814,39.9052704],[20.8199296,39.9054537],[20.8199945,39.9055455],[20.8204341,39.9053954],[20.820785,39.9053961],[20.8211558,39.9052936],[20.8213306,39.9051048],[20.8216531,39.9052127],[20.8221111,39.9051217],[20.8227059,39.9049038],[20.8229185,39.904761],[20.8232847,39.904681],[20.82355,39.9045081],[20.8242392,39.904527],[20.8243418,39.9045839],[20.8244809,39.9050381],[20.8247276,39.9057744],[20.8245842,39.9056894],[20.8241987,39.9051744],[20.8240018,39.905133],[20.8237306,39.9051796],[20.8236265,39.9052578],[20.8238693,39.9054176],[20.8239327,39.9055635],[20.8238711,39.9061383],[20.8236984,39.9065839],[20.8234457,39.9069913],[20.8228487,39.9075064],[20.8224692,39.9081265],[20.8219811,39.9085635],[20.8219817,39.9087797],[20.8227436,39.9089987],[20.8229371,39.9091121],[20.8230682,39.9093139],[20.8231304,39.9095363],[20.8232389,39.909922],[20.8231513,39.9100458],[20.8227636,39.9102333],[20.822545,39.9104074],[20.8225996,39.9107197],[20.8227457,39.9108723],[20.8231313,39.9109324],[20.823704,39.9109662],[20.8245902,39.9115309],[20.8247221,39.9117147],[20.8247864,39.9120947],[20.8249494,39.9123649],[20.8250946,39.9127427],[20.8249369,39.9131167],[20.8249073,39.9134537],[20.8256525,39.9140325],[20.8259739,39.9146719],[20.8261693,39.9152537],[20.8265824,39.9156793],[20.8267573,39.9161976],[20.8272244,39.916976],[20.8275388,39.9180204],[20.827967,39.9185276],[20.8283265,39.9196093],[20.8290751,39.9210034],[20.8310712,39.9238864],[20.8312544,39.9257469],[20.8312317,39.9267461],[20.8313516,39.927443],[20.8311844,39.9277717],[20.8311557,39.927933],[20.8312726,39.9281884],[20.8311704,39.9283748],[20.8312172,39.9286283],[20.8314139,39.9289309],[20.8313563,39.9291635],[20.8310697,39.9292908],[20.8309404,39.9298097],[20.8310214,39.9298299],[20.8311491,39.9301036],[20.8312295,39.9308985],[20.8314515,39.9311568],[20.8314416,39.9316249],[20.8315198,39.9319603],[20.8317077,39.9324518],[20.8318529,39.9325999],[20.8319315,39.9329263],[20.8322888,39.9332964],[20.83245,39.9336071],[20.8325119,39.9340411],[20.8327094,39.9343257],[20.8326935,39.9344154],[20.8328079,39.9344725],[20.8328493,39.934843],[20.8332392,39.935268],[20.8333427,39.9353068],[20.8333244,39.9354505],[20.8335399,39.9358527],[20.8335583,39.9362135],[20.8339341,39.9366921],[20.8339722,39.9371345],[20.8344765,39.9376167],[20.8347049,39.9379922],[20.8348478,39.9386987],[20.8353514,39.9391989],[20.8356904,39.9397126],[20.8358653,39.9397263],[20.8362878,39.9399541],[20.8367974,39.9400671],[20.8373826,39.940065],[20.8384138,39.9407958],[20.8384769,39.9409506],[20.8384319,39.9411656],[20.8386849,39.9414922],[20.8388218,39.9416941],[20.839795,39.9424143],[20.839902,39.9426333],[20.8396907,39.9431545],[20.8397191,39.9434525],[20.8399192,39.9439354],[20.8399426,39.9441882],[20.8401706,39.9443206],[20.8402237,39.9446913],[20.8404706,39.9451754],[20.8408836,39.94561],[20.841046,39.9456415],[20.841431,39.9459222],[20.8415817,39.9462056],[20.8417421,39.946282],[20.8418273,39.9464645],[20.8420452,39.9465605],[20.8422356,39.9467458],[20.8422866,39.9469093],[20.8425096,39.9471496],[20.8426768,39.9475865],[20.8432463,39.9479263],[20.8433521,39.9484246],[20.8435417,39.9486279],[20.8436579,39.9489013],[20.8439448,39.9492784],[20.8441168,39.9493552],[20.8441454,39.9497523],[20.84435,39.949884],[20.8444937,39.9503202],[20.8450359,39.9510016],[20.845329,39.9512437],[20.8454319,39.9515528],[20.8458449,39.9519874],[20.8459157,39.9524847],[20.8461054,39.9529403],[20.8460425,39.9532898],[20.8462631,39.9535841],[20.8463245,39.9537749],[20.8465542,39.9538712],[20.846974,39.9544141],[20.8474538,39.9546704],[20.8475048,39.9548339],[20.8474573,39.9551028],[20.8475518,39.9553396],[20.8481699,39.9558968],[20.8487821,39.9563278],[20.8490595,39.9566597],[20.8492541,39.956755],[20.8496684,39.9571626],[20.8498405,39.9572394],[20.8500494,39.9575333],[20.8503369,39.9581536],[20.8504641,39.9586975],[20.8505635,39.9588263],[20.8506661,39.9593966],[20.8507973,39.9595983],[20.8512333,39.9597903],[20.851372,39.9600823],[20.8514651,39.9600938],[20.8515471,39.9603483],[20.8519201,39.9606377],[20.8518847,39.9608979],[20.8519675,39.9611343],[20.8520273,39.9621268],[20.8519174,39.9627363],[20.8522044,39.9631134],[20.8522973,39.9633862],[20.8526686,39.9637115],[20.8530732,39.9642584],[20.8531736,39.9646215],[20.8531319,39.9647644],[20.8532313,39.9648707],[20.8532936,39.9653228],[20.8531868,39.9656081],[20.8528704,39.9658698],[20.8525985,39.9664388],[20.8528206,39.9664449],[20.8527473,39.9667672],[20.8528183,39.9667511],[20.8528117,39.966895],[20.8529169,39.9668979],[20.8528393,39.9670579],[20.8529096,39.967312],[20.8530212,39.9674321],[20.8530381,39.9678289],[20.8533342,39.9680081],[20.853155,39.9685977],[20.8525707,39.9693385],[20.8522811,39.9695288],[20.8521197,39.9699837],[20.8529758,39.9706646],[20.8530945,39.970884],[20.8530595,39.9711352],[20.8525266,39.9710126],[20.8520673,39.9710722],[20.8520398,39.9711615],[20.852475,39.9713715],[20.8521335,39.9714163],[20.8519648,39.9715198],[20.8521574,39.9716601],[20.851904,39.9718244],[20.8517498,39.9723787],[20.8514808,39.9723714],[20.8511013,39.9724781],[20.8506224,39.9727083],[20.850425,39.9729281],[20.8504209,39.9730181],[20.8505663,39.9731662],[20.8507722,39.9732708],[20.8511786,39.9733449],[20.8510567,39.9734497],[20.8508115,39.973434],[20.8505961,39.9735363],[20.850458,39.9737397],[20.8507002,39.974584],[20.8505315,39.9746875],[20.8499636,39.9748161],[20.849544,39.9750299],[20.849312,39.9752398],[20.8487334,39.9758545],[20.8484442,39.976288],[20.8480188,39.9766277],[20.847538,39.9771551],[20.847214,39.9773264],[20.847027,39.9775735],[20.8468333,39.9777124],[20.8466877,39.9780777],[20.8468506,39.9783524],[20.8464894,39.9783155],[20.8459416,39.978769],[20.8452284,39.9790018],[20.8447208,39.9796004],[20.8446871,39.9798247],[20.8444191,39.9800516],[20.8439205,39.9802001],[20.8439565,39.9804353],[20.8437168,39.9805549],[20.8434901,39.9809],[20.8432584,39.9811008],[20.8426713,39.9813911],[20.8425477,39.9815318],[20.8425916,39.9815961],[20.842174,39.9817648],[20.8419027,39.9820637],[20.8414668,39.9823761],[20.8406714,39.98312],[20.8400818,39.9834642],[20.8398392,39.983899],[20.8394158,39.9841936],[20.8391428,39.9845285],[20.8390418,39.9846878],[20.8389792,39.9850284],[20.8387528,39.9852925],[20.8384688,39.9853568],[20.8383125,39.9856002],[20.8378938,39.9857914],[20.8375397,39.9858538],[20.8375472,39.9859441],[20.8373572,39.986002],[20.8370919,39.9859137],[20.8370602,39.9858407],[20.8367035,39.9859571],[20.8363812,39.9863446],[20.8363887,39.9864349],[20.83621,39.9865021],[20.8359503,39.9868012],[20.8354174,39.987183],[20.8353297,39.9873067],[20.8352236,39.9873218],[20.8349935,39.9872344],[20.8346569,39.9876756],[20.834611,39.9879085],[20.8343713,39.9880281],[20.8342661,39.9882774],[20.8343614,39.9884962],[20.8346321,39.9887198],[20.8346468,39.9889093],[20.8348891,39.9892402],[20.8349179,39.9893761],[20.8349147,39.9897994],[20.8349757,39.9899992],[20.83483,39.9901123],[20.8347724,39.9903449],[20.8341008,39.9906869],[20.8339371,39.9909346],[20.8331476,39.9907869],[20.8330248,39.9906574],[20.8328519,39.9905987],[20.8326263,39.9906646],[20.8324526,39.9906238],[20.8323456,39.9906569],[20.8321865,39.9905535],[20.8321,39.9906502],[20.8318832,39.9905271],[20.8316744,39.9907376],[20.8314555,39.9906596],[20.8313963,39.9909282],[20.8314585,39.991101],[20.831421,39.9914062],[20.8316048,39.9917355],[20.8317097,39.9917474],[20.8318033,39.9922544],[20.8316121,39.9923392],[20.8315235,39.9924809],[20.8312637,39.9925278],[20.8311422,39.9926236],[20.8308865,39.9925806],[20.8306159,39.9926092],[20.830506,39.9927053],[20.8299622,39.9928165],[20.829801,39.9930102],[20.8294894,39.9931638],[20.8292572,39.9933736],[20.829167,39.9935513],[20.8292685,39.9936352],[20.8290839,39.9938283],[20.8290426,39.9939622],[20.8285885,39.994157],[20.8282711,39.9944365],[20.8277532,39.995251],[20.827582,39.9956607],[20.8275437,39.9962361],[20.8278904,39.9965879],[20.8278796,39.9968217],[20.8276269,39.9974724],[20.8272443,39.9973898],[20.8272159,39.9974971],[20.8270513,39.9975106],[20.8270572,39.9976369],[20.8269034,39.9976687],[20.8266666,39.9979775],[20.8263203,39.9981211],[20.8260776,39.9983036],[20.8258195,39.9983145],[20.8256637,39.9983913],[20.8253082,39.9987329],[20.8248604,39.9987927],[20.824527,39.9989096],[20.8243441,39.9988145],[20.8241047,39.9989251],[20.8235387,39.9990086],[20.8232847,39.9989296],[20.8229542,39.9987314],[20.8225197,39.9979989],[20.8221559,39.9977637],[20.8220122,39.9975796],[20.8217252,39.9974546],[20.8214775,39.9972407],[20.8211767,39.9971603],[20.8207681,39.9968789],[20.8201441,39.9966996],[20.8201006,39.9968786],[20.8198892,39.9968908],[20.8196549,39.9971456],[20.8194561,39.9971401],[20.8194285,39.9972294],[20.8193349,39.9972269],[20.8192459,39.9976297],[20.8190362,39.9978582],[20.8187242,39.9980207],[20.8179522,39.9990083],[20.8175436,39.9992313],[20.8175474,39.9994026],[20.8173986,39.9995786],[20.8171303,39.9998369],[20.8167487,40.0006371],[20.8165916,40.0007409],[20.8163159,40.0011296],[20.8162678,40.0014075],[20.8156971,40.0018422],[20.8154431,40.0022676],[20.8150387,40.0026528],[20.8149363,40.0028391],[20.8149806,40.0028944],[20.8148126,40.0029798],[20.8146539,40.0033718],[20.8145569,40.0034412],[20.8143572,40.0034537],[20.8142076,40.0038999],[20.8138529,40.0042234],[20.8137464,40.0042475],[20.8134113,40.0046526],[20.8130482,40.0046517],[20.8125966,40.0045401],[20.8117745,40.0045896],[20.8115702,40.0044488],[20.8114445,40.0041301],[20.8113091,40.0040183],[20.8109992,40.0038837],[20.8101745,40.0037348],[20.8098094,40.0037788],[20.8095186,40.003987],[20.8092312,40.003871],[20.8087394,40.0041186],[20.8083229,40.0042603],[20.8080359,40.0041353],[20.8075334,40.0043106],[20.8075035,40.0044494],[20.8071295,40.0046822],[20.8069758,40.004714],[20.8069119,40.0048294],[20.8064122,40.0049957],[20.8062592,40.0052617],[20.8061055,40.0052935],[20.8060887,40.0054011],[20.805925,40.0053966],[20.8059316,40.0055049],[20.8057954,40.0056633],[20.8056358,40.0055688],[20.8055831,40.0056934],[20.8053709,40.0057236],[20.8048896,40.0059986],[20.8048369,40.005871],[20.8046623,40.0061004],[20.8045461,40.0060792],[20.8041291,40.0062298],[20.8041049,40.0064993],[20.8038788,40.0065742],[20.803657,40.006559],[20.8031013,40.0066698],[20.8030486,40.0067944],[20.8026425,40.0069634],[20.8025656,40.0071054],[20.8024348,40.0071468],[20.8020261,40.0076219],[20.8018581,40.0077073],[20.801541,40.0077256],[20.8013814,40.0078833],[20.8012882,40.0078717],[20.8012254,40.0082123],[20.8009672,40.0082231],[20.8007825,40.0084162],[20.8005594,40.0084281],[20.8004741,40.0084978],[20.8002519,40.0084916],[20.7999802,40.0087904],[20.7996062,40.0090232],[20.7995669,40.0091122],[20.79933,40.0091687],[20.7991825,40.0093177],[20.7988123,40.0094696],[20.7986009,40.0094818],[20.7981244,40.009901],[20.7980187,40.0099071],[20.7979406,40.0098238],[20.7978086,40.0098922],[20.7977257,40.0104124],[20.7974005,40.0108537],[20.7973929,40.0110157],[20.7974697,40.0111259],[20.7974275,40.0112778],[20.7969857,40.011707],[20.7968462,40.0116851],[20.7967722,40.0117641],[20.7966427,40.0117785],[20.7966475,40.012175],[20.7964502,40.0123857],[20.7961159,40.0125206],[20.7960232,40.0125],[20.7958861,40.0126763],[20.7957298,40.0127621],[20.7957248,40.0126178],[20.7957976,40.0125658],[20.7956422,40.0123814],[20.7954792,40.0123588],[20.7954261,40.0124925],[20.7951758,40.0125846],[20.7950715,40.0123115],[20.7951556,40.0120166],[20.7948752,40.0119998],[20.7947934,40.0117454],[20.7948554,40.0114228],[20.7947739,40.0114116],[20.7945666,40.011586],[20.794465,40.0115787],[20.7943947,40.0118289],[20.7940453,40.0120354],[20.7938201,40.0120922],[20.7937177,40.0122785],[20.7934461,40.0123251],[20.7933541,40.0125387],[20.7929755,40.0126183],[20.792591,40.0128238],[20.7923082,40.0136086],[20.7920378,40.0138803],[20.7918849,40.0138941],[20.791783,40.0138192],[20.7917613,40.0135304],[20.7917994,40.0134684],[20.7919256,40.0135259],[20.7919348,40.013328],[20.7921606,40.01301],[20.7920311,40.0130245],[20.7917652,40.0131972],[20.7913717,40.0130963],[20.7910138,40.0127351],[20.7910857,40.012701],[20.7910703,40.0125295],[20.7909249,40.0123813],[20.7909626,40.0123283],[20.7907988,40.0123238],[20.7905933,40.01221],[20.7904847,40.0120268],[20.7903118,40.011968],[20.7902913,40.0119044],[20.7901133,40.0119535],[20.7899496,40.0116967],[20.7898435,40.0117118],[20.789699,40.0115457],[20.7893089,40.0113727],[20.7891751,40.0114771],[20.7891964,40.0115227],[20.7891145,40.0115205],[20.7891345,40.0115931],[20.7890171,40.0115988],[20.7890455,40.0117437],[20.7889602,40.0118134],[20.7886758,40.0116344],[20.7884184,40.0116273],[20.7882831,40.0115154],[20.788222,40.0115678],[20.7879038,40.0113608],[20.7878277,40.0114848],[20.7877596,40.0114378],[20.7876635,40.0114892],[20.7874623,40.0110333],[20.7872685,40.0109198],[20.787312,40.0107409],[20.7871667,40.0105927],[20.7870509,40.0098149],[20.787174,40.00944],[20.7870905,40.0092215],[20.787295,40.0088579],[20.7874379,40.0088078],[20.7874647,40.0087365],[20.7877605,40.0086726],[20.7881465,40.0086834],[20.7882927,40.0088135],[20.7884056,40.0086545],[20.7884979,40.0086841],[20.7886291,40.0086337],[20.7886559,40.0085624],[20.7889036,40.0085242],[20.7889792,40.0086389],[20.7890381,40.0086315],[20.7892609,40.0083765],[20.7895609,40.0082227],[20.7893815,40.0078034],[20.7891993,40.0076902],[20.7891798,40.0076086],[20.7891087,40.0076247],[20.7891108,40.0075797],[20.7888117,40.0074633],[20.7887976,40.0072648],[20.788694,40.0072259],[20.7887059,40.006974],[20.7885989,40.007007],[20.7884619,40.0069312],[20.7881084,40.0069754],[20.7879497,40.0068629],[20.7882796,40.0063226],[20.7880934,40.0060473],[20.788081,40.0058127],[20.7878852,40.005492],[20.7879789,40.0052424],[20.7878649,40.0051762],[20.7877007,40.0051807],[20.7876706,40.0050718],[20.7877994,40.0048231],[20.787964,40.0048097],[20.7880259,40.0047393],[20.7875297,40.0045815],[20.7875548,40.0045461],[20.7874052,40.0044879],[20.7870309,40.0044775],[20.7868997,40.0045279],[20.7868073,40.0044488],[20.7865885,40.0043707],[20.7863452,40.0045621],[20.7859326,40.0043705],[20.7853656,40.0037242],[20.785293,40.0035241],[20.7853157,40.0032905],[20.7851478,40.0031237],[20.784769,40.0029601],[20.7846633,40.0029661],[20.7843231,40.0032269],[20.7839441,40.0033155],[20.7837398,40.0034269],[20.7833614,40.0032542],[20.783079,40.0032824],[20.7830464,40.0032275],[20.7827753,40.003265],[20.7824635,40.0034185],[20.7824175,40.0036514],[20.7820368,40.0037759],[20.781974,40.0041164],[20.7815152,40.0041577],[20.7812988,40.0042778],[20.7806035,40.0043666],[20.7803277,40.004503],[20.7800701,40.0042526],[20.7801242,40.0038488],[20.7799701,40.003142],[20.779725,40.0028739],[20.7788905,40.0026886],[20.7788738,40.002544],[20.7784839,40.0021188],[20.7781451,40.0021004],[20.7777684,40.0018918],[20.7776227,40.0017526],[20.777627,40.0016626],[20.7773647,40.0015112],[20.7771659,40.0015057],[20.7771012,40.0013868],[20.7769734,40.0013652],[20.7769325,40.001238],[20.7767955,40.0011621],[20.7766894,40.0011772],[20.7766347,40.0010946],[20.7758955,40.0008758],[20.7751782,40.0009369],[20.7750399,40.000888],[20.7748143,40.0009538],[20.7746765,40.0008959],[20.7746122,40.000768],[20.7747217,40.000681],[20.7746671,40.0005984],[20.7745593,40.0006495],[20.7744684,40.0003407],[20.7744133,40.0002671],[20.7743085,40.0002552],[20.7743758,40.0000679],[20.7743099,39.999976],[20.7741436,40.0000254],[20.7742106,39.9998471],[20.7741355,39.9997009],[20.7738122,39.9996018],[20.7735467,39.9992702],[20.773561,39.9992165],[20.7732303,39.9990272],[20.7731369,39.9987724],[20.7730642,39.9988244],[20.7729991,39.9987145],[20.7728419,39.9988182],[20.7725993,39.9987484],[20.7724338,39.9987798],[20.772286,39.9986856],[20.7721423,39.9987537],[20.7716595,39.99856],[20.7716295,39.9984511],[20.7714817,39.9983569],[20.7716063,39.9981983],[20.77176,39.9981665],[20.7716833,39.9980563],[20.77171,39.997985],[20.7716207,39.9978924],[20.7713881,39.9978589],[20.7712583,39.9976301],[20.7712098,39.9976648],[20.7710967,39.9975806],[20.7709235,39.9972785],[20.7706279,39.9970901],[20.7706989,39.9965787],[20.7709636,39.9961807],[20.7711891,39.9956196],[20.7713956,39.9954632],[20.771339,39.9951734],[20.7716762,39.9949756],[20.772162,39.9943587],[20.7732588,39.9939479],[20.7740373,39.9933301],[20.7741955,39.9929562],[20.7743129,39.9922028],[20.774524,39.9919475],[20.7747596,39.991918],[20.7749511,39.9915811],[20.7749462,39.9914368],[20.7756016,39.9906985],[20.7755862,39.9900315],[20.775644,39.9897989],[20.7757736,39.9895323],[20.7760683,39.9892433],[20.7763592,39.988783],[20.7770029,39.9880443],[20.777088,39.9874792],[20.7772577,39.9873579],[20.7773873,39.9870912],[20.777444,39.9866335],[20.7782667,39.9860709],[20.7784533,39.9857878],[20.7785751,39.9859353],[20.7788265,39.9860684],[20.7790594,39.9863451],[20.7790107,39.986632],[20.7791522,39.9868611],[20.7792363,39.9873138],[20.7793782,39.9875339],[20.7795181,39.9875468],[20.7797538,39.9872652],[20.7798967,39.9872151],[20.7801562,39.9876727],[20.7803499,39.9877862],[20.7812394,39.9887927],[20.7820207,39.9898592],[20.7825226,39.9901434],[20.7826967,39.9904275],[20.7829989,39.9907241],[20.7835572,39.9910549],[20.7836114,39.9911464],[20.7838328,39.9911706],[20.7842862,39.9914894],[20.7847711,39.991638],[20.7847818,39.9919085],[20.7850272,39.9924197],[20.7852843,39.9926791],[20.785725,39.99352],[20.7860617,39.9938086],[20.7865839,39.9936609],[20.7868888,39.9936514],[20.7871553,39.9937128],[20.7873263,39.9938346],[20.7873365,39.9938439],[20.7873777,39.9942144],[20.786968,39.9949596],[20.7866323,39.9948017],[20.7862347,39.994615],[20.7860443,39.9944296],[20.7860617,39.9938086],[20.785725,39.99352],[20.7852843,39.9926791],[20.7850272,39.9924197],[20.7847818,39.9919085],[20.7847711,39.991638],[20.7842862,39.9914894],[20.7838328,39.9911706],[20.7836114,39.9911464],[20.7835572,39.9910549],[20.7829989,39.9907241],[20.7826967,39.9904275],[20.7825226,39.9901434],[20.7820207,39.9898592],[20.7812394,39.9887927],[20.7803499,39.9877862],[20.7801562,39.9876727],[20.7798967,39.9872151],[20.7797538,39.9872652],[20.7795181,39.9875468],[20.7793782,39.9875339],[20.7792363,39.9873138],[20.7791522,39.9868611],[20.7790107,39.986632],[20.7790594,39.9863451],[20.7788265,39.9860684],[20.7785751,39.9859353],[20.7784533,39.9857878],[20.7775736,39.9852229],[20.7774017,39.984993],[20.777003,39.9847567],[20.7767053,39.9846133],[20.7764712,39.9846113],[20.7758549,39.9842698],[20.7754407,39.9841142],[20.775196,39.9840894],[20.7748409,39.9836742],[20.7740419,39.9833366],[20.7737889,39.9832395],[20.7731883,39.9833129],[20.7729876,39.9834199],[20.7727087,39.9833761],[20.772173,39.9834377],[20.7716481,39.983396],[20.7714014,39.983164],[20.7712847,39.9829085],[20.7710705,39.9827314],[20.7704898,39.9818865],[20.7703014,39.9814129],[20.770287,39.9804758],[20.7699374,39.9799436],[20.7699335,39.9795291],[20.7698407,39.9792383],[20.7698492,39.9790584],[20.7697703,39.9789932],[20.7700792,39.9786505],[20.7700207,39.9786489],[20.7700192,39.9784326],[20.7698655,39.9784644],[20.7697517,39.9785198],[20.7697191,39.9784648],[20.7696156,39.9784259],[20.7694521,39.9786645],[20.7693578,39.9786799],[20.76918,39.9784768],[20.7691985,39.9783332],[20.7689729,39.978399],[20.7689166,39.9783523],[20.7687295,39.9783696],[20.7686175,39.9782404],[20.7684465,39.9783888],[20.7683894,39.9783601],[20.7683743,39.9784318],[20.7682828,39.9783842],[20.7681007,39.9785232],[20.7680067,39.9785296],[20.7679767,39.9784207],[20.7678719,39.9784088],[20.7677354,39.9783239],[20.7674684,39.9782489],[20.7673544,39.9781826],[20.7672729,39.9781263],[20.766772,39.9778241],[20.7666196,39.9778289],[20.766498,39.9779471],[20.7655184,39.9778657],[20.764917,39.9779569],[20.7646844,39.9779234],[20.7646172,39.9778585],[20.7642535,39.9778754],[20.7641485,39.9779175],[20.7640575,39.9778609],[20.763731,39.9778337],[20.7637146,39.9779324],[20.7635977,39.9779291],[20.7635131,39.9780078],[20.7624761,39.9776545],[20.7619457,39.9777298],[20.7615974,39.977666],[20.7611624,39.9771855],[20.7609321,39.9769313],[20.7607543,39.9772236],[20.7606166,39.9771657],[20.7603585,39.9767036],[20.7601547,39.9763106],[20.7597312,39.9758574],[20.7594431,39.9757592],[20.7587988,39.9752728],[20.7590995,39.9759973],[20.7590975,39.9761369],[20.7588257,39.9760437],[20.7579075,39.9754055],[20.7563349,39.9749922],[20.7559968,39.9748611],[20.7555372,39.9746771],[20.7555121,39.9747124],[20.7553384,39.9746715],[20.755345,39.9747798],[20.7551501,39.9746933],[20.7551917,39.9748025],[20.7557908,39.9753057],[20.7560535,39.9756914],[20.756061,39.9757816],[20.7560025,39.97578],[20.7556295,39.9755489],[20.7548161,39.975418],[20.7547591,39.9753624],[20.7544126,39.9752626],[20.7541913,39.9752384],[20.7540714,39.9752981],[20.7543254,39.9756204],[20.7543531,39.9758013],[20.754328,39.9758367],[20.75404,39.9757385],[20.7536331,39.9754299],[20.753591,39.9753296],[20.7534399,39.9753074],[20.7533415,39.9751605],[20.7533242,39.9757725],[20.7534079,39.975982],[20.7534108,39.9760451],[20.7532696,39.9760592],[20.7530922,39.9759236],[20.7530437,39.9759583],[20.7529887,39.9758847],[20.7527427,39.9758868],[20.7523979,39.975751],[20.7522926,39.9758246],[20.7521534,39.9756496],[20.752122,39.9755722],[20.7520886,39.9755352],[20.7520393,39.9755878],[20.751978,39.9756222],[20.7519455,39.9755672],[20.7519444,39.9755131],[20.7518999,39.9754173],[20.7517549,39.9755123],[20.7515215,39.9754697],[20.7513003,39.9753194],[20.7511516,39.9753198],[20.7508598,39.9751765],[20.7507293,39.9749656],[20.750619,39.9750706],[20.7503172,39.9748685],[20.7501414,39.9748726],[20.7497983,39.9747008],[20.7497574,39.9746276],[20.7496855,39.9746616],[20.7495603,39.9746086],[20.7493078,39.9744529],[20.7492325,39.9745588],[20.7488966,39.9743602],[20.7486795,39.9742731],[20.7486049,39.9741179],[20.7484872,39.9741326],[20.7484786,39.9743125],[20.7483162,39.9741818],[20.7483102,39.9743078],[20.7482175,39.9742871],[20.7479017,39.9740351],[20.7478307,39.9740511],[20.7478017,39.9741674],[20.7477773,39.9742162],[20.7477322,39.9741789],[20.7476169,39.9742658],[20.7475544,39.9741019],[20.747354,39.9741323],[20.7472578,39.974035],[20.7469857,39.9738472],[20.746899,39.9737007],[20.7465075,39.9735636],[20.7464456,39.9736339],[20.7465791,39.9737817],[20.7464379,39.9737958],[20.7464458,39.9738771],[20.746477,39.973959],[20.7462782,39.9739534],[20.746121,39.9738139],[20.7459527,39.9737326],[20.7454053,39.9736722],[20.7451664,39.9737736],[20.7448981,39.9735048],[20.7447551,39.9733117],[20.7441049,39.9729511],[20.7440231,39.9729488],[20.7440305,39.9730391],[20.7438694,39.9729805],[20.7438539,39.9730611],[20.7437382,39.9730309],[20.7436889,39.9730835],[20.7435304,39.972971],[20.7433983,39.9730393],[20.743145,39.9729511],[20.7430397,39.9729482],[20.7430255,39.9730018],[20.7426382,39.973072],[20.7413915,39.9729468],[20.7409317,39.973015],[20.7407054,39.972923],[20.7404852,39.97189],[20.7404142,39.971906],[20.7404048,39.9721039],[20.7401103,39.9718975],[20.7401718,39.9720793],[20.7400438,39.9723099],[20.739822,39.9720515],[20.7397284,39.9720488],[20.7397394,39.9723104],[20.7396356,39.9725236],[20.7394202,39.9722518],[20.7389006,39.9721021],[20.7387335,39.9721694],[20.7386556,39.9723294],[20.7385391,39.9723171],[20.7384998,39.9724061],[20.7383724,39.9723754],[20.7383682,39.9724654],[20.7380944,39.9723136],[20.7379316,39.972291],[20.7377654,39.9723403],[20.7377048,39.9723837],[20.7377421,39.9725829],[20.737507,39.9726033],[20.7372291,39.9727846],[20.7369948,39.972787],[20.7368845,39.972892],[20.736567,39.9726759],[20.7365439,39.972423],[20.7364304,39.9723478],[20.7361532,39.9722679],[20.7360204,39.9723542],[20.7358316,39.9723624],[20.735774,39.9723428],[20.7356277,39.9724647],[20.7354389,39.9724954],[20.7353428,39.9725468],[20.7353385,39.9726367],[20.7352082,39.9726691],[20.7349423,39.9725985],[20.7348783,39.9727138],[20.7347271,39.9726916],[20.7346258,39.9726076],[20.7346029,39.9728412],[20.7347221,39.9730427],[20.7345459,39.9730557],[20.7344242,39.9731514],[20.7344325,39.9732237],[20.7341831,39.9732977],[20.7336405,39.9731383],[20.7332748,39.9727046],[20.7330042,39.972733],[20.7331984,39.9730808],[20.7331349,39.9734303],[20.7328343,39.9733497],[20.732733,39.9732658],[20.7325914,39.9732888],[20.7324662,39.9732132],[20.7323576,39.9732822],[20.7323159,39.973173],[20.7319668,39.9728839],[20.7317888,39.972442],[20.7315662,39.9722016],[20.7314864,39.9719111],[20.7310966,39.9717379],[20.7306883,39.9717084],[20.7303301,39.9716082],[20.7297787,39.9711423],[20.729428,39.9711324],[20.7292783,39.9710291],[20.7292033,39.9706396],[20.7293602,39.970518],[20.7297269,39.9704383],[20.729936,39.9703],[20.7299571,39.9701025],[20.7297072,39.9699423],[20.7296118,39.9697324],[20.7296969,39.9691764],[20.7298321,39.968847],[20.7295754,39.968556],[20.72941,39.9685873],[20.729197,39.9685138],[20.7288099,39.9685299],[20.7287051,39.9684729],[20.7284085,39.968478],[20.7278951,39.9688103],[20.727809,39.9689249],[20.7278711,39.969341],[20.7285069,39.9697553],[20.7286035,39.9699607],[20.7285165,39.9701158],[20.7281014,39.9702302],[20.7278351,39.9704118],[20.7276166,39.97082],[20.7275588,39.9712957],[20.7274848,39.9713747],[20.7273596,39.9712991],[20.7274701,39.9704556],[20.7273624,39.9705066],[20.727267,39.9707381],[20.72715,39.9704916],[20.7268237,39.9709507],[20.7265146,39.9710501],[20.7262456,39.9715604],[20.7262463,39.971056],[20.7260967,39.9710473],[20.7259989,39.9711346],[20.7259753,39.9706475],[20.7258515,39.9705449],[20.7257682,39.9703264],[20.7255277,39.9701935],[20.7250335,39.9697562],[20.7239338,39.9690045],[20.723645,39.9689243],[20.7233433,39.9690148],[20.7232638,39.9690396],[20.7227391,39.9692139],[20.7225989,39.9693315],[20.7217693,39.9695422],[20.7216044,39.9695646],[20.7216364,39.9693853],[20.7213706,39.969558],[20.7213138,39.9695203],[20.7211138,39.9695417],[20.7205258,39.9695971],[20.7201595,39.9694246],[20.7201413,39.969388],[20.7194425,39.9694358],[20.718915,39.9690606],[20.7188361,39.9686305],[20.7187996,39.9683637],[20.7184681,39.9681021],[20.7187211,39.9679247],[20.7190153,39.9678925],[20.7196084,39.9674859],[20.7198737,39.9673493],[20.7200092,39.9672091],[20.7207267,39.9659143],[20.7210366,39.9655538],[20.7210192,39.9654272],[20.7206991,39.9650218],[20.7218516,39.9653517],[20.7220178,39.9653024],[20.7222971,39.9653373],[20.7223074,39.9651214],[20.7221432,39.9648826],[20.7221856,39.9647307],[20.7221162,39.9644675],[20.72172,39.9641861],[20.7215796,39.9639389],[20.7215835,39.9637363],[20.7215066,39.9635315],[20.7211605,39.9631794],[20.7206357,39.9628943],[20.7205504,39.9627208],[20.7202131,39.9626752],[20.7201407,39.962475],[20.7198749,39.9624044],[20.7196982,39.9621832],[20.7196709,39.9620203],[20.7197708,39.9618881],[20.7196929,39.9618048],[20.7196907,39.9616066],[20.7194364,39.9612931],[20.7193658,39.9610569],[20.7192082,39.9609264],[20.7191259,39.9606899],[20.7191145,39.9604373],[20.7192456,39.9601438],[20.7186767,39.9598034],[20.7185671,39.9596472],[20.7185376,39.9592861],[20.7186626,39.9588753],[20.7182826,39.9580088],[20.7183232,39.9576497],[20.7185354,39.9576197],[20.7187894,39.9574467],[20.7186915,39.9572908],[20.7184538,39.957122],[20.7183416,39.9567765],[20.717603,39.9563142],[20.7176618,39.9563069],[20.7178061,39.9552481],[20.7179719,39.9552078],[20.7181196,39.9553021],[20.7182598,39.955306],[20.7187035,39.9550844],[20.7191094,39.9546726],[20.7192928,39.9542634],[20.7186824,39.9525888],[20.7183797,39.95231],[20.7183658,39.9521115],[20.7185056,39.9518813],[20.7185293,39.9516297],[20.7182612,39.9511177],[20.7179637,39.950731],[20.7175074,39.9504839],[20.7173767,39.950282],[20.7173057,39.950298],[20.717345,39.9499659],[20.7172644,39.9496934],[20.7176794,39.9493358],[20.7177459,39.9489234],[20.717957,39.948425],[20.7171607,39.9489248],[20.7171862,39.9486373],[20.7173385,39.9483894],[20.7173082,39.9482895],[20.717071,39.9483548],[20.717122,39.9482662],[20.7170605,39.9480843],[20.7169402,39.9481529],[20.7167878,39.9479144],[20.7166384,39.9478562],[20.7164778,39.9475454],[20.7163483,39.9475597],[20.7162929,39.9474951],[20.7162627,39.9476383],[20.7161886,39.9474741],[20.7160644,39.9476237],[20.7159864,39.9472972],[20.7159154,39.9473132],[20.7159207,39.9474485],[20.715844,39.9473382],[20.7157501,39.9473446],[20.7157215,39.9472087],[20.7156388,39.9472243],[20.715644,39.9471164],[20.7155622,39.9471141],[20.7155306,39.9470411],[20.7156595,39.9467926],[20.7154266,39.946768],[20.715598,39.9466107],[20.7152924,39.946638],[20.7149908,39.9468276],[20.7150262,39.9465765],[20.7148366,39.9466251],[20.7152672,39.946187],[20.7151612,39.946202],[20.715188,39.9461307],[20.7156735,39.9457661],[20.7157518,39.945354],[20.7158796,39.9450784],[20.7161668,39.9442624],[20.7160091,39.9436455],[20.7158889,39.9435159],[20.7159298,39.9426614],[20.7160968,39.9423509],[20.7163318,39.9420874],[20.7167186,39.9418281],[20.717282,39.9413036],[20.7179086,39.9409251],[20.7181102,39.9406245],[20.7183365,39.9405409],[20.7189907,39.940073],[20.7207087,39.9393831],[20.7210245,39.9388966],[20.7211314,39.9388636],[20.721211,39.9386677],[20.7217886,39.9383328],[20.7218608,39.9380466],[20.7220014,39.9380416],[20.7220551,39.937899],[20.7222748,39.937707],[20.7227379,39.937567],[20.7232053,39.9375802],[20.7241908,39.9377703],[20.724396,39.9378841],[20.7247448,39.93793],[20.7249613,39.9380533],[20.72561,39.9379455],[20.7258653,39.9379887],[20.7259739,39.9379198],[20.7264698,39.9378257],[20.7266156,39.9377127],[20.727099,39.9376363],[20.7280647,39.9370151],[20.7280348,39.9369061],[20.7288272,39.9367304],[20.7294602,39.93646],[20.729606,39.936347],[20.730015,39.93562],[20.7301904,39.9348863],[20.730472,39.9346241],[20.7306237,39.934142],[20.7307716,39.933984],[20.7308923,39.9339063],[20.7311269,39.9338949],[20.7314007,39.9337946],[20.7318914,39.9335652],[20.7322649,39.9335848],[20.7331238,39.9334829],[20.7336006,39.9332982],[20.7337867,39.9333215],[20.7344876,39.9328548],[20.7351301,39.9326297],[20.7355043,39.9323881],[20.7356889,39.9321951],[20.7361939,39.9321553],[20.7366459,39.9317537],[20.7367963,39.9312986],[20.7375811,39.9302939],[20.7383507,39.9298562],[20.7392679,39.9295127],[20.7398185,39.9290058],[20.7398361,39.9288802],[20.7401442,39.9287988],[20.7403154,39.9286415],[20.7407463,39.9284374],[20.7409569,39.9281911],[20.7417511,39.9277271],[20.7419639,39.927679],[20.7427005,39.9271953],[20.7432371,39.9264898],[20.7433291,39.9262762],[20.7434853,39.9261906],[20.7436115,39.925996],[20.7436066,39.9258517],[20.7437883,39.9257217],[20.7442421,39.9250319],[20.7444675,39.9249662],[20.7446764,39.9247559],[20.7450955,39.9245515],[20.7455107,39.9241848],[20.7457448,39.923687],[20.7459028,39.9230699],[20.7464156,39.922616],[20.7464622,39.9223741],[20.7465616,39.9222508],[20.7469408,39.9219011],[20.7474842,39.9217903],[20.7477289,39.921563],[20.7477638,39.9213207],[20.7478498,39.9212331],[20.7478042,39.9209616],[20.7479022,39.9206221],[20.7482369,39.9204693],[20.7484126,39.9204652],[20.7485813,39.9203619],[20.7487098,39.9203655],[20.7488927,39.9202085],[20.7489626,39.9199673],[20.7489201,39.919876],[20.7490053,39.9198063],[20.7491409,39.9194138],[20.7490489,39.919132],[20.7483653,39.9185003],[20.7485762,39.918245],[20.7486521,39.9178779],[20.7487965,39.9177919],[20.7486141,39.9174445],[20.7486919,39.9172845],[20.7486286,39.9171386],[20.7486855,39.916924],[20.748613,39.9159852],[20.7487209,39.915682],[20.7485844,39.9153539],[20.748821,39.9152975],[20.748903,39.9150476],[20.7491093,39.9148913],[20.7492866,39.9148512],[20.7495639,39.9141834],[20.7495516,39.9139489],[20.7497047,39.9139262],[20.7497353,39.9137739],[20.7500467,39.9136205],[20.7502313,39.9134275],[20.7502763,39.9134648],[20.7504449,39.9133615],[20.7508714,39.9132473],[20.7510904,39.9133165],[20.7513153,39.9132598],[20.7521435,39.9128146],[20.7523414,39.912586],[20.7526844,39.9125055],[20.7532214,39.9120342],[20.7535026,39.9120241],[20.7537296,39.9119223],[20.7538443,39.9114752],[20.7542268,39.9110535],[20.7549356,39.9106591],[20.7555498,39.9105322],[20.7558374,39.9102385],[20.7560615,39.9101727],[20.7562392,39.9101236],[20.7564066,39.9100472],[20.7568872,39.9100247],[20.7573037,39.9098742],[20.7578384,39.9094478],[20.7581627,39.9092677],[20.758374,39.9090034],[20.7585769,39.908919],[20.7587673,39.9086001],[20.7590203,39.908445],[20.7591938,39.9079905],[20.7591052,39.9076367],[20.7592589,39.9073528],[20.7590982,39.9070421],[20.7592118,39.9068651],[20.7595273,39.9066217],[20.7594649,39.9064578],[20.7589766,39.9061469],[20.7588042,39.9058359],[20.7576482,39.9052991],[20.757575,39.9051169],[20.7576945,39.904814],[20.7576671,39.9046511],[20.757163,39.9044298],[20.756919,39.9039006],[20.7566471,39.9037128],[20.7563819,39.9036333],[20.7562294,39.9033949],[20.7562254,39.9032326],[20.7560336,39.9030831],[20.756026,39.9027497],[20.755893,39.9025928],[20.7559115,39.9024492],[20.7560935,39.9023102],[20.7560661,39.9021473],[20.7555626,39.9016648],[20.7554662,39.9012298],[20.7547886,39.9004722],[20.7546459,39.9000268],[20.7547896,39.8997066],[20.7547177,39.8994974],[20.7552615,39.8986299],[20.7556651,39.8982539],[20.7560915,39.8981397],[20.7564655,39.897898],[20.7565207,39.8977194],[20.7567536,39.8974917],[20.7567105,39.8971663],[20.7568358,39.8969896],[20.7570523,39.8968606],[20.7573313,39.8964],[20.7572823,39.8962005],[20.7571663,39.8961792],[20.7572298,39.8960729],[20.7571986,39.8954956],[20.7570778,39.8953301],[20.7571752,39.8949995],[20.7571119,39.8948536],[20.7572251,39.8946857],[20.7571427,39.8944492],[20.7573612,39.8940319],[20.7579684,39.8935535],[20.7579553,39.893337],[20.7581202,39.8930624],[20.7580404,39.8927719],[20.7577646,39.8924219],[20.7575306,39.8919289],[20.7575212,39.8916314],[20.7577233,39.8913128],[20.7578749,39.8905785],[20.7576817,39.8902128],[20.7576528,39.8898337],[20.7573084,39.8896979],[20.7570918,39.8888362],[20.7571336,39.8886932],[20.7576353,39.8882209],[20.7579488,39.8877703],[20.7585768,39.8873465],[20.7585853,39.8871666],[20.7584254,39.8868378],[20.7581679,39.8865964],[20.7582118,39.8864085],[20.7583855,39.8861972],[20.758133,39.8858478],[20.7582691,39.8856895],[20.75863,39.8854744],[20.758663,39.8851961],[20.7584049,39.8850403],[20.7582854,39.8853432],[20.7578933,39.8854763],[20.7580194,39.8852817],[20.7578948,39.8851972],[20.7577271,39.8852825],[20.7577689,39.8851396],[20.7576128,39.8852253],[20.7576084,39.885072],[20.7574426,39.8848692],[20.7575294,39.8847636],[20.7576582,39.8847582],[20.7576207,39.8843158],[20.7574525,39.8839147],[20.7575731,39.883837],[20.7573688,39.8837052],[20.7576779,39.8835968],[20.7576805,39.8835428],[20.7575325,39.8834576],[20.7573457,39.8834524],[20.7572321,39.8836293],[20.7572005,39.8835564],[20.7571383,39.8836357],[20.7571045,39.8831124],[20.7568776,39.8832141],[20.7569554,39.8828019],[20.7568845,39.882818],[20.756958,39.882748],[20.75684,39.8827717],[20.7568684,39.8826644],[20.7567232,39.8827684],[20.756706,39.8823896],[20.7565457,39.8825653],[20.7565612,39.8819892],[20.7564032,39.8818677],[20.7562948,39.8819367],[20.7561523,39.88223],[20.75603,39.8818483],[20.7559332,39.8819176],[20.7557604,39.8816155],[20.7556659,39.8818831],[20.7554369,39.8815344],[20.7552859,39.8815122],[20.7549826,39.8812515],[20.7546824,39.881171],[20.7540878,39.8811363],[20.753664,39.8811965],[20.7533798,39.8810264],[20.7530859,39.8813064],[20.7530566,39.8814317],[20.7527238,39.8815485],[20.7524323,39.8815313],[20.7523221,39.8816363],[20.7522088,39.8815611],[20.7521136,39.8815944],[20.7520905,39.881837],[20.7518126,39.8820274],[20.7516617,39.8821042],[20.751394,39.8820787],[20.7506888,39.882158],[20.750541,39.8820683],[20.7501912,39.8820494],[20.7498729,39.8821036],[20.7492942,39.8819793],[20.7489994,39.882034],[20.7489221,39.88164],[20.7489239,39.8812303],[20.7486246,39.8811318],[20.7485282,39.8811921],[20.7480404,39.8811244],[20.7477712,39.8808827],[20.7474027,39.8807642],[20.7472137,39.880804],[20.7473654,39.8803894],[20.7473124,39.8800276],[20.7474198,39.8797334],[20.7478907,39.8791701],[20.7480922,39.8791127],[20.7481642,39.8791733],[20.7482602,39.8791219],[20.7482103,39.8789404],[20.7479904,39.878646],[20.7477136,39.8785662],[20.7476608,39.8784476],[20.7479015,39.8783012],[20.7482159,39.878328],[20.748543,39.878085],[20.7495849,39.877808],[20.7497461,39.8776144],[20.7500902,39.8775069],[20.7500201,39.877505],[20.7500377,39.8773793],[20.7504808,39.8771576],[20.7507056,39.8771008],[20.7509941,39.877181],[20.7514986,39.8771411],[20.7521979,39.8766923],[20.7526791,39.8761563],[20.752389,39.8756168],[20.7520515,39.8753371],[20.7518108,39.8749881],[20.7515741,39.8748013],[20.7511175,39.8748155],[20.7506015,39.8746029],[20.7499969,39.8745319],[20.7500504,39.8743893],[20.7501551,39.8744012],[20.7503153,39.8742256],[20.7505968,39.8742064],[20.7510765,39.8739497],[20.7510795,39.8738867],[20.7509432,39.8738018],[20.7509656,39.8736718],[20.7511749,39.8736957],[20.7513885,39.8736296],[20.751727,39.8736391],[20.7520948,39.8736269],[20.7524679,39.8735968],[20.7527005,39.8736214],[20.7530832,39.8736636],[20.7530696,39.8734561],[20.7531932,39.8733154],[20.7535697,39.8732629],[20.7537137,39.8732084],[20.7538434,39.8731625],[20.7543086,39.8732116],[20.7545939,39.8731115],[20.7547863,39.8728466],[20.7554405,39.8723605],[20.7555666,39.8721659],[20.7565784,39.8717799],[20.7567632,39.871704],[20.7567812,39.8715694],[20.7570538,39.8712438],[20.7569169,39.8709247],[20.7568763,39.8705452],[20.757121,39.8701152],[20.757141,39.8699672],[20.7572628,39.8698625],[20.7574971,39.869851],[20.7576202,39.8697194],[20.7578554,39.8696899],[20.7577406,39.8693985],[20.7580445,39.8689025],[20.7580772,39.8687053],[20.7577879,39.8681703],[20.7578596,39.8681363],[20.757839,39.8678294],[20.7577473,39.8677908],[20.7577207,39.8676099],[20.7575374,39.8675327],[20.7574166,39.8673672],[20.7571069,39.8672415],[20.7572845,39.8671924],[20.7577719,39.8672691],[20.7580688,39.8671693],[20.7584058,39.866913],[20.7593189,39.8668845],[20.7590147,39.8666418],[20.7592358,39.8664138],[20.7595053,39.8656557],[20.7593283,39.8649482],[20.7594201,39.8645364],[20.7593271,39.8640294],[20.7594016,39.8636892],[20.7592817,39.8635057],[20.7592736,39.8631812],[20.7586947,39.8623183],[20.7585256,39.8621875],[20.7582327,39.8620262],[20.757911,39.8619091],[20.7577552,39.8617426],[20.7574693,39.8616085],[20.7570537,39.8610024],[20.7568905,39.8602502],[20.7570435,39.8598041],[20.7571915,39.8597407],[20.7574812,39.8592985],[20.757759,39.8591081],[20.7576974,39.8589262],[20.75777,39.8588742],[20.7575817,39.8586527],[20.7575976,39.8585631],[20.7582599,39.8585231],[20.7588337,39.8582509],[20.7595682,39.8582895],[20.7603296,39.8580045],[20.7608496,39.8583793],[20.7610597,39.8583852],[20.761373,39.8582859],[20.7615606,39.8582731],[20.7617316,39.8585616],[20.7617668,39.8582383],[20.7613898,39.8578044],[20.7611728,39.8569517],[20.7612345,39.8568813],[20.7615915,39.8567472],[20.7618143,39.8564832],[20.762077,39.8563644],[20.7622828,39.8559649],[20.7628105,39.8559256],[20.7626702,39.8552551],[20.7627217,39.8550043],[20.7629844,39.8548856],[20.7635605,39.8548116],[20.7641905,39.854586],[20.7645581,39.8547223],[20.7649285,39.8545255],[20.7649257,39.8543363],[20.7648415,39.8543384],[20.7652036,39.8538441],[20.7652753,39.8535624],[20.7648606,39.8534337],[20.7647589,39.8533588],[20.7648533,39.8530912],[20.7649887,39.8527978],[20.7656548,39.8527488],[20.7656524,39.8525506],[20.7658853,39.8522688],[20.7660761,39.8524363],[20.7661611,39.8526909],[20.766166,39.8528351],[20.7661559,39.8528799],[20.7660465,39.853066],[20.7663863,39.8532962],[20.76658,39.8533061],[20.7670413,39.853436],[20.7673932,39.8534098],[20.7676807,39.8534584],[20.7677357,39.853532],[20.7678237,39.8541469],[20.7679311,39.8543481],[20.7678985,39.8545453],[20.7682049,39.8544908],[20.7683469,39.854702],[20.7684988,39.854454],[20.768924,39.8543578],[20.7690516,39.8543793],[20.7696416,39.8547561],[20.7697929,39.8547693],[20.7700429,39.8549204],[20.7704606,39.8549861],[20.7705606,39.8550969],[20.7716296,39.8547304],[20.7720122,39.8547951],[20.7724808,39.8547721],[20.772915,39.8549824],[20.7730481,39.854887],[20.7731814,39.8550348],[20.7732998,39.8550021],[20.7734414,39.8552222],[20.7734152,39.8550323],[20.7735228,39.8549813],[20.7735886,39.8550732],[20.7737395,39.8550954],[20.7737353,39.8551854],[20.7739129,39.8551363],[20.7739679,39.8552099],[20.7740772,39.8551228],[20.7741063,39.8552497],[20.7741693,39.8551524],[20.7741302,39.8549892],[20.7743449,39.8548961],[20.7744795,39.8550169],[20.7749697,39.8550801],[20.7751489,39.8551977],[20.7751936,39.8557394],[20.7747723,39.8562501],[20.7746975,39.8565993],[20.7750658,39.8569698],[20.7753176,39.8570849],[20.7757577,39.8571692],[20.7759482,39.8573457],[20.7760563,39.857781],[20.7759428,39.857958],[20.7757869,39.8587914],[20.7759618,39.8593007],[20.7762068,39.8595597],[20.77615,39.8597743],[20.7762144,39.8601454],[20.7763636,39.8602036],[20.7773214,39.8598429],[20.7774422,39.8600084],[20.7779899,39.8602938],[20.7780806,39.8606026],[20.778339,39.860826],[20.7789334,39.8608605],[20.7792591,39.8606444],[20.7794243,39.8603607],[20.7797829,39.8601906],[20.7800457,39.8598195],[20.7804877,39.8596156],[20.7806816,39.8594679],[20.7807342,39.8593433],[20.7808285,39.8593279],[20.7810218,39.8594413],[20.781005,39.8598012],[20.7811908,39.8600765],[20.7813931,39.8607487],[20.7820724,39.8614701],[20.782177,39.8614821],[20.7824539,39.8613096],[20.7828555,39.8609695],[20.7832124,39.8608353],[20.7835764,39.8608003],[20.7839517,39.8605225],[20.7841784,39.8606729],[20.7843077,39.8606585],[20.7846545,39.8607402],[20.7849598,39.8604604],[20.7852791,39.8603792],[20.7854521,39.860429],[20.7854703,39.8607898],[20.78577,39.8611314],[20.7859576,39.8611186],[20.7861454,39.8609256],[20.7862396,39.8608877],[20.7867663,39.8613707],[20.786861,39.8613463],[20.7871144,39.8614254],[20.7877505,39.8618213],[20.7884734,39.8618594],[20.7889929,39.8617477],[20.7891272,39.8616253],[20.7895541,39.861493],[20.789643,39.8613423],[20.7899931,39.861352],[20.7903084,39.8611086],[20.7905665,39.8610887],[20.7907836,39.8611938],[20.7915278,39.8610252],[20.7916171,39.8608656],[20.7918656,39.8608004],[20.792024,39.8606607],[20.79205,39.8603551],[20.7922376,39.8603153],[20.792764,39.8605551],[20.7927885,39.8607089],[20.7929237,39.8607937],[20.793449,39.8608082],[20.7935686,39.8610232],[20.7946234,39.8609623],[20.7949477,39.8610253],[20.7950903,39.8611508],[20.7949626,39.8611563],[20.7949472,39.8615387],[20.7947945,39.8617552],[20.7947102,39.8620591],[20.7947555,39.8623396],[20.7951565,39.8630172],[20.7949113,39.8632626],[20.7948436,39.8632833],[20.7943433,39.8634856],[20.7933793,39.8638553],[20.7928378,39.8640159],[20.7923305,39.8640379],[20.7922192,39.8640439],[20.7916937,39.8640608],[20.791327,39.8640282],[20.7909987,39.8639245],[20.7904643,39.8637521],[20.7902567,39.8636923],[20.7898775,39.8636547],[20.7896378,39.8637832],[20.7893304,39.8644097],[20.7892849,39.8646336],[20.7894957,39.8651259],[20.7894668,39.8654944],[20.7893077,39.8655215],[20.7893846,39.8657533],[20.7892993,39.8663274],[20.7893326,39.8667427],[20.789571,39.8668934],[20.7901653,39.8676845],[20.7902961,39.8681385],[20.7904786,39.8684859],[20.790421,39.8687185],[20.7908811,39.8693797],[20.7908606,39.8695683],[20.7906988,39.869753],[20.790735,39.8699792],[20.7906107,39.8701379],[20.7906739,39.8705359],[20.7905689,39.870533],[20.7906806,39.8706442],[20.7904354,39.8706374],[20.7905696,39.8707672],[20.7903498,39.8709683],[20.7904153,39.8710692],[20.7903043,39.8711923],[20.7904352,39.871394],[20.7903951,39.871501],[20.7902292,39.8715505],[20.7901524,39.8716925],[20.7898046,39.871881],[20.789777,39.8719703],[20.7894901,39.8721065],[20.7893095,39.8724708],[20.7891877,39.8725755],[20.7887377,39.8726981],[20.788721,39.8728057],[20.788349,39.8730116],[20.7877453,39.8729228],[20.7877022,39.873345],[20.7874427,39.873644],[20.7866095,39.8739632],[20.7867836,39.8744905],[20.7863556,39.8748929],[20.7865257,39.8750057],[20.7867211,39.8755786],[20.7866422,39.8757656],[20.7863899,39.8759117],[20.786449,39.8761476],[20.7863831,39.8763079],[20.7861127,39.8765886],[20.7859001,39.8766367],[20.7857962,39.876859],[20.785862,39.8769509],[20.7855008,39.8771751],[20.7854565,39.8773721],[20.7851796,39.8775445],[20.7852153,39.8777797],[20.7854621,39.8780027],[20.7857057,39.8777933],[20.7862361,39.8779521],[20.7867315,39.8778578],[20.786658,39.87818],[20.7867247,39.8782539],[20.7864482,39.8784174],[20.7866625,39.8785855],[20.7865323,39.8786179],[20.7864435,39.8787686],[20.7866065,39.8787821],[20.7866944,39.8789016],[20.7865968,39.878989],[20.7867273,39.8791998],[20.7865562,39.8793572],[20.7865203,39.8796264],[20.7865686,39.8798439],[20.7862281,39.8803749],[20.7860842,39.880452],[20.7859211,39.8806907],[20.7859532,39.8807546],[20.7858055,39.8809126],[20.7857733,39.8811009],[20.7851734,39.8816787],[20.7849698,39.8820829],[20.7852615,39.8825954],[20.785039,39.8831027],[20.7850931,39.8834465],[20.7849496,39.8835145],[20.7848491,39.8836649],[20.7840382,39.8840027],[20.7840414,39.8844351],[20.7836293,39.8844957],[20.7832556,39.8847376],[20.7830012,39.8846765],[20.7825908,39.8847011],[20.7821295,39.8848144],[20.7820323,39.8848928],[20.7820121,39.8853245],[20.7819366,39.8854395],[20.7818667,39.885933],[20.7818524,39.8862389],[20.7819775,39.8863144],[20.7821237,39.8864626],[20.7819434,39.8865657],[20.7817656,39.886867],[20.7813152,39.8866743],[20.781095,39.8866322],[20.7806604,39.8866741],[20.7805244,39.8868325],[20.7802658,39.8868613],[20.7798307,39.8871645],[20.7794894,39.8874613],[20.7794836,39.8877088],[20.779534,39.8879084],[20.7798444,39.887971],[20.7803073,39.888074],[20.7804641,39.8882224],[20.7805459,39.8882743],[20.7808203,39.8881558],[20.7810765,39.8882259],[20.7816353,39.8882775],[20.7823773,39.8883657],[20.7828848,39.8885149],[20.7831228,39.8886251],[20.7834502,39.8886251],[20.7846662,39.8881275],[20.7849886,39.8880824],[20.7853122,39.8881634],[20.7859926,39.8887407],[20.7863447,39.8894621],[20.7866572,39.8902589],[20.7868269,39.8903807],[20.7874245,39.8906044],[20.7874107,39.8906986],[20.7877326,39.8910679],[20.7884211,39.8913482],[20.7889898,39.8917647],[20.7891128,39.8918853],[20.7897416,39.8921909],[20.7914015,39.8927053],[20.793103,39.8933289],[20.794138,39.8939024],[20.7943453,39.8939712],[20.79449,39.8938762],[20.795023,39.8942332],[20.7954256,39.8946542],[20.7955382,39.8947473],[20.7955464,39.895324],[20.7960274,39.8952923],[20.7965145,39.89563],[20.7968398,39.8956751],[20.7969941,39.8956253],[20.7972127,39.8957034],[20.7974011,39.8957221],[20.7976033,39.8958763],[20.7980538,39.8959969],[20.7983507,39.8961492],[20.7984074,39.896439],[20.7987786,39.8967555],[20.7988627,39.8974604],[20.7990621,39.8974479],[20.7993974,39.897277],[20.7994992,39.8973519],[20.8000202,39.8972131],[20.8001954,39.897218],[20.8011927,39.8976509],[20.8019117,39.8982832],[20.8026149,39.8985008],[20.802828,39.8986958],[20.8029957,39.8991148],[20.8033819,39.8996118],[20.8038139,39.9001282],[20.803985,39.900223],[20.8045071,39.901066],[20.8046656,39.9011785],[20.8047273,39.9013604],[20.8049367,39.9013841],[20.8053656,39.9009636],[20.8054791,39.9010388],[20.8054866,39.9011291],[20.8060685,39.9011902],[20.8064562,39.9016782],[20.8067289,39.9019019],[20.8068798,39.9022529],[20.8070854,39.9023576],[20.8083827,39.9026276],[20.8087921,39.902855],[20.8090265,39.9028435],[20.8096168,39.9029768],[20.8098863,39.9032184],[20.8100056,39.9031677],[20.810321,39.9031764],[20.8107139,39.9032772],[20.8112612,39.9035806],[20.8113572,39.9035291],[20.8116838,39.9035471],[20.8120759,39.903666],[20.8125882,39.9037161],[20.8130955,39.9038742],[20.8133358,39.9039889],[20.8133458,39.9042774],[20.8134442,39.9041721],[20.8135068,39.9043359],[20.813619,39.9041859],[20.814065,39.9051619],[20.8142368,39.9052387],[20.8143557,39.9051969],[20.8149089,39.9056265],[20.8154104,39.9056583],[20.8157082,39.9057926],[20.8157595,39.9056949],[20.8160983,39.9057042],[20.816246,39.9057984],[20.8162877,39.9059076],[20.8165526,39.9059959],[20.8168838,39.9064194],[20.8173731,39.906613],[20.817595,39.9066191],[20.8176254,39.9064668],[20.8177581,39.9063803],[20.8181227,39.9063363],[20.8182167,39.9065551],[20.8183886,39.9066319],[20.8187359,39.9065603],[20.8188385,39.9066172],[20.8186971,39.9063881],[20.8186767,39.9061173],[20.8188145,39.9061256],[20.8189284,39.9057099],[20.8191737,39.9057166],[20.8194348,39.9056337],[20.8195868,39.9056109],[20.8197084,39.9055106],[20.8199333,39.9054538],[20.8199849,39.9052705],[20.8200658,39.9050386],[20.8199181,39.9046922],[20.819982,39.9045273],[20.8200097,39.904384],[20.8207299,39.9040344],[20.8209069,39.9039492],[20.8211501,39.9037487],[20.8212277,39.9035887],[20.8212033,39.9029035],[20.8209466,39.9026848],[20.8205374,39.9026825],[20.8201945,39.9030154],[20.8202446,39.9031969],[20.8201628,39.9034469]]},{"id":17629,"author":"AnaDigit","name_GR":"ZagoriRace: Zagori Marathon","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03c9\u03bd 42 Km \u03c4\u03bf\u03c5 2016","path":"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_Marathon_42km","activity_type":36,"assistance":1,"difficulty":3,"scenic_value":5,"length":45039,"name_EN":"ZagoriRace: Zagori Marathon","description_EN":"The 2016 42 Km race","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":12,"ascent":4428,"descent":4428,"maxelev":1984,"minelev":473,"link_logo":"ZMR_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.zagorirace","pdf_link":"","bbox":"LINESTRING(20.71335 39.8829,20.82218 39.97773)","views":28,"millestones":"0,20.8201594,39.9034468#1,20.8158646,39.9056978#2,20.8074372,39.9024322#3,20.8001056,39.8972155#4,20.7922353,39.8930171#5,20.7837633,39.8884952#6,20.7750339,39.8852655#7,20.7668502,39.8815189#8,20.7590382,39.8857693#9,20.7575245,39.8917265#10,20.7559576,39.8981755#11,20.7576040,39.9050442#12,20.7547588,39.9107583#13,20.7486299,39.9162238#14,20.7458294,39.9233625#15,20.7385537,39.9297802#16,20.7301780,39.9349447#17,20.7215538,39.9384692#18,20.7158061,39.9452358#19,20.7177459,39.9489248#20,20.7177031,39.9559978#21,20.7203632,39.9626957#22,20.7186275,39.9682288#23,20.7262466,39.9714101#24,20.7296555,39.9694390#25,20.7345156,39.9730797#26,20.7406521,39.9727034#27,20.7483699,39.9742238#28,20.7545886,39.9753118#29,20.7602554,39.9765008#30,20.7686705,39.9782999#31,20.7750661,39.9763173#32,20.7837162,39.9716745#33,20.7900330,39.9653025#34,20.7937030,39.9588527#35,20.8005372,39.9523559#36,20.8057515,39.9460336#37,20.8113329,39.9420993#38,20.8098861,39.9341486#39,20.8057156,39.9281093#40,20.8037301,39.9213259#41,20.8012012,39.9139956#42,20.8002134,39.9059559#43,20.8070243,39.9023270#44,20.8155357,39.9057156#45,20.8201583,39.9034468","x":20.7278964,"y":39.9688103,"coor":[[20.8201594,39.9034468],[20.8202411,39.9031968],[20.820191,39.9030153],[20.8205339,39.9026824],[20.8209431,39.9026847],[20.8211996,39.9029034],[20.8212242,39.9035886],[20.8211466,39.9037486],[20.8209035,39.9039491],[20.8206867,39.9040558],[20.8200062,39.9043839],[20.8199784,39.9045272],[20.8199146,39.9046921],[20.8200623,39.9050385],[20.8199814,39.9052704],[20.8199296,39.9054537],[20.8197048,39.9055105],[20.8195832,39.9056108],[20.8194314,39.9056336],[20.8191702,39.9057165],[20.8189249,39.9057098],[20.8188108,39.9061255],[20.8186732,39.9061172],[20.8183841,39.9060237],[20.8182894,39.9061968],[20.8181205,39.9063363],[20.8177559,39.9063803],[20.8176232,39.9064667],[20.8175928,39.906619],[20.8173709,39.9066129],[20.8168815,39.9064193],[20.8165502,39.9059959],[20.8162853,39.9059075],[20.8162436,39.9057983],[20.8160959,39.9057042],[20.8157572,39.9056948],[20.8157058,39.9057925],[20.815408,39.9056582],[20.8149065,39.9056264],[20.8143534,39.9051969],[20.8142345,39.9052386],[20.8140626,39.9051619],[20.8136166,39.9041858],[20.8135044,39.9043358],[20.8134418,39.904172],[20.8133434,39.9042774],[20.8133334,39.9039889],[20.8130931,39.9038742],[20.8125858,39.9037161],[20.8120736,39.903666],[20.8116814,39.9035471],[20.8113548,39.9035291],[20.8112588,39.9035805],[20.8107115,39.9032772],[20.8103186,39.9031763],[20.8100032,39.9031676],[20.8098839,39.9032184],[20.8096144,39.9029768],[20.8090242,39.9028434],[20.8087897,39.902855],[20.8083805,39.9026275],[20.8070832,39.9023576],[20.8068776,39.9022528],[20.8067265,39.9019019],[20.806454,39.9016782],[20.8060661,39.9011901],[20.8054842,39.901129],[20.8054767,39.9010387],[20.8053632,39.9009636],[20.8049344,39.9013841],[20.8047249,39.9013603],[20.8046632,39.9011784],[20.8045047,39.901066],[20.8039826,39.9002229],[20.8038116,39.9001281],[20.8033795,39.8996118],[20.8029933,39.8991147],[20.8028257,39.8986957],[20.8026125,39.8985007],[20.8019093,39.8982831],[20.8011903,39.8976508],[20.800193,39.8972179],[20.8000178,39.8972131],[20.7994968,39.8973518],[20.7993951,39.8972769],[20.7990597,39.8974478],[20.7988603,39.8974603],[20.7987762,39.8967554],[20.798405,39.8964389],[20.7983483,39.8961491],[20.7980514,39.8959968],[20.7976009,39.8958763],[20.7973989,39.8957221],[20.7972103,39.8957033],[20.7969918,39.8956252],[20.7968374,39.895675],[20.7965121,39.89563],[20.796025,39.8952922],[20.7955441,39.895324],[20.7955359,39.8947473],[20.7954233,39.8946541],[20.7950206,39.8942331],[20.7944877,39.8938761],[20.7943429,39.8939712],[20.7941356,39.8939024],[20.7931006,39.8933288],[20.7913991,39.8927052],[20.7897393,39.8921908],[20.7891104,39.8918852],[20.7889874,39.8917647],[20.7884187,39.8913481],[20.7877302,39.8910678],[20.7874084,39.8906986],[20.7874221,39.8906044],[20.7868245,39.8903806],[20.7866548,39.8902588],[20.7863425,39.889462],[20.7859904,39.8887407],[20.78531,39.8881633],[20.7849864,39.8880823],[20.7846638,39.8881274],[20.7834479,39.8886251],[20.7831205,39.888625],[20.7828825,39.8885148],[20.782375,39.8883656],[20.7816331,39.8882774],[20.7810743,39.8882259],[20.780818,39.8881557],[20.7805435,39.8882742],[20.7804617,39.8882224],[20.7803049,39.8880739],[20.779842,39.887971],[20.7795317,39.8879083],[20.7794813,39.8877087],[20.7793594,39.8878134],[20.7791172,39.8877436],[20.7789936,39.8878843],[20.7787883,39.887775],[20.7787383,39.8877196],[20.7785865,39.8877154],[20.7784539,39.8875496],[20.7780261,39.8874476],[20.7780795,39.887305],[20.7778761,39.8871552],[20.777191,39.8868029],[20.7769137,39.8867321],[20.776366,39.8861944],[20.7761083,39.8862053],[20.7758269,39.8859723],[20.7752594,39.8858574],[20.7753595,39.8857161],[20.7752242,39.885361],[20.7748494,39.8851749],[20.7742617,39.8847442],[20.774344,39.8844853],[20.7742239,39.8843018],[20.7739279,39.8841314],[20.7736249,39.8838618],[20.7734164,39.88382],[20.7731826,39.8835702],[20.772955,39.8834378],[20.7726535,39.8833844],[20.77243,39.8834142],[20.7716319,39.8832298],[20.7713521,39.883213],[20.7711703,39.8830998],[20.7711403,39.8829909],[20.7706397,39.8826977],[20.770418,39.8824394],[20.7702454,39.8823805],[20.7699301,39.8823717],[20.7697759,39.8821693],[20.7695741,39.8822357],[20.7695337,39.8820995],[20.769145,39.8821607],[20.76916,39.882089],[20.7690558,39.8820681],[20.7690876,39.8818889],[20.7684813,39.8818539],[20.7683704,39.8817247],[20.7680552,39.8817159],[20.7677824,39.8817984],[20.7674088,39.881788],[20.7671712,39.8816192],[20.766457,39.8813921],[20.7659165,39.8814491],[20.7655246,39.8813301],[20.7651363,39.8813823],[20.7650633,39.8814433],[20.7649249,39.8814034],[20.7646578,39.8816121],[20.764761,39.8819032],[20.7642143,39.8825905],[20.763919,39.8826544],[20.7634596,39.8829748],[20.7629941,39.883178],[20.7619581,39.8833292],[20.7614475,39.883495],[20.7613329,39.8834468],[20.7607043,39.8838841],[20.7599378,39.8850156],[20.7595463,39.885383],[20.7593451,39.8856836],[20.7590228,39.8857737],[20.7587601,39.8856402],[20.7587544,39.8855139],[20.7588004,39.885281],[20.7586641,39.8851962],[20.7586313,39.8854745],[20.7582704,39.8856896],[20.7581343,39.8858479],[20.7583867,39.8861972],[20.7582131,39.8864085],[20.7581692,39.8865965],[20.7584267,39.8868379],[20.7585866,39.8871666],[20.7585781,39.8873465],[20.7579501,39.8877703],[20.7576366,39.8882209],[20.7571349,39.8886932],[20.7570931,39.8888362],[20.7573097,39.889698],[20.757654,39.8898337],[20.7576829,39.8902128],[20.7578762,39.8905785],[20.7577246,39.8913129],[20.7575225,39.8916315],[20.7575318,39.891929],[20.7577658,39.8924219],[20.7580417,39.8927719],[20.7581215,39.8930624],[20.7579565,39.893337],[20.7579697,39.8935536],[20.7573625,39.894032],[20.757144,39.8944492],[20.7572264,39.8946857],[20.7571132,39.8948537],[20.7571765,39.8949995],[20.7570791,39.8953301],[20.7571999,39.8954956],[20.7572311,39.8960729],[20.7571676,39.8961793],[20.7572836,39.8962005],[20.7573326,39.8964001],[20.7570536,39.8968606],[20.756837,39.8969897],[20.7567118,39.8971663],[20.7567549,39.8974918],[20.7565219,39.8977194],[20.7564667,39.8978981],[20.7560928,39.8981398],[20.7556664,39.8982539],[20.7552628,39.89863],[20.7547189,39.8994974],[20.7547909,39.8997066],[20.7546472,39.9000269],[20.7547898,39.9004722],[20.7554675,39.9012298],[20.7555639,39.9016649],[20.7560674,39.9021473],[20.7560948,39.9023102],[20.7559128,39.9024493],[20.7558943,39.9025929],[20.7560272,39.9027497],[20.7560349,39.9030832],[20.7562266,39.9032327],[20.7562307,39.9033949],[20.7563832,39.9036334],[20.7566484,39.9037129],[20.7569202,39.9039006],[20.7571642,39.9044299],[20.7576684,39.9046511],[20.7576958,39.904814],[20.7575762,39.9051169],[20.7576495,39.9052991],[20.7588055,39.9058359],[20.7589779,39.906147],[20.7594662,39.9064579],[20.7595286,39.9066218],[20.759213,39.9068651],[20.7590994,39.9070421],[20.7592602,39.9073528],[20.7591065,39.9076368],[20.759195,39.9079905],[20.7590216,39.9084451],[20.7587686,39.9086001],[20.7585781,39.9089191],[20.7583753,39.9090034],[20.758164,39.9092678],[20.7578397,39.9094478],[20.757305,39.9098742],[20.7568885,39.9100247],[20.7564079,39.9100473],[20.7562405,39.9101237],[20.7560627,39.9101727],[20.7558385,39.9102385],[20.7555509,39.9105322],[20.7549367,39.9106591],[20.7542279,39.9110536],[20.7538454,39.9114752],[20.7537307,39.9119224],[20.7535037,39.9120241],[20.7532225,39.9120342],[20.7526855,39.9125056],[20.7523425,39.912586],[20.7521446,39.9128147],[20.7513164,39.9132598],[20.7510915,39.9133166],[20.7508725,39.9132474],[20.750446,39.9133615],[20.7502774,39.9134649],[20.7502324,39.9134276],[20.7500478,39.9136206],[20.7497364,39.913774],[20.7497058,39.9139262],[20.7495527,39.9139489],[20.749565,39.9141835],[20.7492877,39.9148512],[20.7491104,39.9148913],[20.7489041,39.9150476],[20.7488221,39.9152976],[20.7485855,39.915354],[20.748722,39.9156821],[20.7486141,39.9159853],[20.7486866,39.9169241],[20.7486297,39.9171386],[20.748693,39.9172845],[20.7486152,39.9174445],[20.7487976,39.9177919],[20.7486532,39.9178779],[20.7485773,39.9182451],[20.7483664,39.9185004],[20.74905,39.919132],[20.749142,39.9194139],[20.7490064,39.9198064],[20.7489212,39.919876],[20.7489637,39.9199673],[20.7488938,39.9202085],[20.7487109,39.9203655],[20.7485824,39.9203619],[20.7484137,39.9204653],[20.748238,39.9204694],[20.7479033,39.9206221],[20.7478053,39.9209616],[20.7478509,39.9212331],[20.7477649,39.9213208],[20.74773,39.921563],[20.7474853,39.9217903],[20.7469419,39.9219012],[20.7465627,39.9222508],[20.7464633,39.9223741],[20.7464167,39.922616],[20.7459039,39.92307],[20.7457459,39.923687],[20.7455118,39.9241849],[20.7450966,39.9245515],[20.7446775,39.9247559],[20.7444686,39.9249662],[20.7442432,39.9250319],[20.7437894,39.9257217],[20.7436077,39.9258517],[20.7436126,39.925996],[20.7434863,39.9261906],[20.7433302,39.9262763],[20.7432382,39.9264899],[20.7427016,39.9271954],[20.741965,39.9276791],[20.7417522,39.9277271],[20.740958,39.9281912],[20.7407474,39.9284374],[20.7403165,39.9286415],[20.7401453,39.9287988],[20.7398372,39.9288802],[20.7398195,39.9290058],[20.739269,39.9295127],[20.7383518,39.9298562],[20.7375822,39.9302939],[20.7367974,39.9312986],[20.736647,39.9317538],[20.736195,39.9321554],[20.73569,39.9321952],[20.7355054,39.9323881],[20.7351312,39.9326298],[20.7344886,39.9328549],[20.7337878,39.9333215],[20.7336017,39.9332982],[20.7331249,39.9334829],[20.732266,39.9335848],[20.7318925,39.9335653],[20.7314018,39.9337946],[20.731128,39.933895],[20.7308934,39.9339064],[20.7307727,39.933984],[20.7306248,39.934142],[20.7304731,39.9346241],[20.7301915,39.9348864],[20.7300161,39.93562],[20.7296071,39.9363471],[20.7294613,39.93646],[20.7288283,39.9367304],[20.7280359,39.9369062],[20.7280658,39.9370151],[20.7271001,39.9376363],[20.7266167,39.9377127],[20.7264709,39.9378257],[20.725975,39.9379198],[20.7258664,39.9379888],[20.7256111,39.9379455],[20.7249623,39.9380533],[20.7247459,39.9379301],[20.7243971,39.9378842],[20.7241919,39.9377703],[20.7232064,39.9375803],[20.722739,39.9375671],[20.7222759,39.9377071],[20.7220561,39.937899],[20.7220025,39.9380416],[20.7218619,39.9380466],[20.7217897,39.9383328],[20.721212,39.9386678],[20.7211325,39.9388637],[20.7210256,39.9388967],[20.7207098,39.9393831],[20.7189918,39.9400731],[20.7183376,39.9405409],[20.7181113,39.9406246],[20.7179097,39.9409251],[20.7172831,39.9413037],[20.7167197,39.9418281],[20.7163328,39.9420874],[20.7160979,39.9423509],[20.7159309,39.9426615],[20.71589,39.943516],[20.7160104,39.9436455],[20.7161681,39.9442625],[20.7158809,39.9450785],[20.715753,39.9453541],[20.7156748,39.9457662],[20.7151893,39.9461307],[20.7151624,39.946202],[20.7152685,39.946187],[20.7148379,39.9466252],[20.7150275,39.9465765],[20.7149921,39.9468277],[20.7152937,39.9466381],[20.7155993,39.9466107],[20.7154279,39.946768],[20.7156608,39.9467926],[20.7155319,39.9470412],[20.7155635,39.9471141],[20.7156453,39.9471164],[20.7156401,39.9472244],[20.7157228,39.9472087],[20.7157514,39.9473446],[20.7158453,39.9473383],[20.7159219,39.9474485],[20.7159167,39.9473133],[20.7159877,39.9472973],[20.7160657,39.9476237],[20.7161899,39.9474741],[20.7162639,39.9476384],[20.7162942,39.9474951],[20.7163496,39.9475597],[20.716479,39.9475454],[20.7166397,39.9478562],[20.7167891,39.9479145],[20.7169415,39.948153],[20.7170618,39.9480843],[20.7171233,39.9482662],[20.7170723,39.9483548],[20.7173094,39.9482895],[20.7173398,39.9483894],[20.7171875,39.9486373],[20.717162,39.9489248],[20.7179583,39.948425],[20.7177472,39.9489234],[20.7176807,39.9493359],[20.7172657,39.9496934],[20.7173463,39.9499659],[20.717307,39.950298],[20.7173779,39.950282],[20.7175087,39.9504839],[20.717965,39.950731],[20.7182625,39.9511178],[20.7185306,39.9516298],[20.7185069,39.9518813],[20.7183671,39.9521115],[20.718381,39.9523101],[20.7186837,39.9525889],[20.7192941,39.9542635],[20.7191107,39.9546726],[20.7187047,39.9550845],[20.7182611,39.9553061],[20.7181208,39.9553021],[20.7179732,39.9552078],[20.7178074,39.9552482],[20.7176631,39.9563069],[20.7176042,39.9563143],[20.7183429,39.9567766],[20.7184551,39.957122],[20.7186928,39.9572909],[20.7187907,39.9574468],[20.7185366,39.9576197],[20.7183245,39.9576497],[20.7182839,39.9580089],[20.7186638,39.9588753],[20.7185388,39.9592861],[20.7185684,39.9596472],[20.7186779,39.9598035],[20.7192469,39.9601438],[20.7191158,39.9604374],[20.7191271,39.9606899],[20.7192095,39.9609264],[20.7193671,39.961057],[20.7194377,39.9612932],[20.7196919,39.9616066],[20.7196942,39.9618048],[20.7197721,39.9618881],[20.7196722,39.9620204],[20.7196995,39.9621833],[20.7198762,39.9624045],[20.720142,39.962475],[20.7202144,39.9626752],[20.7205517,39.9627208],[20.720637,39.9628944],[20.7211618,39.9631795],[20.7215078,39.9635315],[20.7215846,39.9637364],[20.7215807,39.9639389],[20.7217211,39.9641861],[20.7221173,39.9644675],[20.7221867,39.9647307],[20.7221443,39.9648826],[20.7223085,39.9651214],[20.7222982,39.9653373],[20.7220189,39.9653024],[20.7218526,39.9653517],[20.7207002,39.9650219],[20.7210203,39.9654273],[20.7210377,39.9655538],[20.7207278,39.9659144],[20.7200103,39.9672091],[20.7198748,39.9673494],[20.7196097,39.967486],[20.7190166,39.9678925],[20.7187224,39.9679247],[20.7184692,39.9681022],[20.7188009,39.9683638],[20.7188372,39.9686305],[20.7189161,39.9690606],[20.7194437,39.9694358],[20.7201426,39.9693881],[20.7201608,39.9694246],[20.7205271,39.9695971],[20.7211151,39.9695417],[20.7213151,39.9695204],[20.7213718,39.969558],[20.7216376,39.9693854],[20.7216057,39.9695646],[20.7217706,39.9695423],[20.7226001,39.9693316],[20.7227404,39.9692139],[20.7232649,39.9690396],[20.7233446,39.9690149],[20.7236461,39.9689243],[20.7239349,39.9690045],[20.7250346,39.9697562],[20.7255288,39.9701935],[20.7257695,39.9703264],[20.7258527,39.970545],[20.7259766,39.9706475],[20.7260002,39.9711346],[20.726098,39.9710473],[20.7262474,39.971056],[20.7262467,39.9715604],[20.7265158,39.9710501],[20.726825,39.9709507],[20.7271512,39.9704916],[20.7272683,39.9707381],[20.7273634,39.9705066],[20.7274712,39.9704556],[20.7273607,39.9712992],[20.7274859,39.9713748],[20.7275599,39.9712958],[20.7276177,39.97082],[20.7278362,39.9704119],[20.7281025,39.9702302],[20.7285176,39.9701159],[20.7286048,39.9699607],[20.728508,39.9697553],[20.7278722,39.969341],[20.7278101,39.9689249],[20.7278964,39.9688103],[20.7284098,39.968478],[20.7287062,39.9684729],[20.7288112,39.9685299],[20.7291982,39.9685138],[20.7294113,39.9685874],[20.7295767,39.968556],[20.7298331,39.968847],[20.729698,39.9691764],[20.7296129,39.9697325],[20.7297083,39.9699423],[20.7299582,39.9701025],[20.7299371,39.9703001],[20.729728,39.9704383],[20.7293613,39.970518],[20.7292046,39.9706397],[20.7292796,39.9710291],[20.7294291,39.9711324],[20.7297798,39.9711423],[20.7303312,39.9716082],[20.7306894,39.9717084],[20.7310977,39.971738],[20.7314875,39.9719111],[20.7315673,39.9722016],[20.7317899,39.9724421],[20.7319679,39.9728839],[20.732317,39.973173],[20.7323587,39.9732823],[20.7324673,39.9732133],[20.7325925,39.9732889],[20.7327341,39.9732658],[20.7328354,39.9733498],[20.733136,39.9734303],[20.7331995,39.9730808],[20.7330053,39.9727331],[20.7332759,39.9727047],[20.7336416,39.9731383],[20.7341842,39.9732977],[20.7344336,39.9732237],[20.7344253,39.9731514],[20.734547,39.9730558],[20.7347232,39.9730427],[20.734604,39.9728412],[20.7346269,39.9726077],[20.7347282,39.9726916],[20.7348794,39.9727139],[20.7349434,39.9725986],[20.7352093,39.9726691],[20.7353396,39.9726368],[20.7353439,39.9725468],[20.73544,39.9724955],[20.7356288,39.9724648],[20.735775,39.9723428],[20.7358326,39.9723624],[20.7360216,39.9723542],[20.7361545,39.9722679],[20.7364317,39.9723478],[20.7365452,39.972423],[20.7365683,39.9726759],[20.7368858,39.972892],[20.7369961,39.972787],[20.7372304,39.9727846],[20.7375083,39.9726033],[20.7377434,39.9725829],[20.737706,39.9723837],[20.7377666,39.9723404],[20.7379329,39.972291],[20.7380957,39.9723136],[20.7383694,39.9724654],[20.7383737,39.9723755],[20.738501,39.9724061],[20.7385404,39.9723171],[20.7386569,39.9723294],[20.7387347,39.9721695],[20.7389018,39.9721021],[20.7394215,39.9722519],[20.7396369,39.9725236],[20.7397407,39.9723104],[20.7397297,39.9720489],[20.7398232,39.9720515],[20.7400451,39.97231],[20.7401731,39.9720794],[20.7401115,39.9718975],[20.7404061,39.9721039],[20.7404155,39.9719061],[20.7404865,39.97189],[20.7407066,39.9729231],[20.7409329,39.973015],[20.7413928,39.9729469],[20.7426395,39.973072],[20.7430268,39.9730018],[20.743041,39.9729482],[20.7431462,39.9729512],[20.7433996,39.9730394],[20.7435316,39.972971],[20.7436902,39.9730836],[20.7437395,39.9730309],[20.7438551,39.9730612],[20.7438707,39.9729805],[20.7440318,39.9730391],[20.7440244,39.9729488],[20.7441062,39.9729511],[20.7447564,39.9733117],[20.7448994,39.9735049],[20.7451676,39.9737736],[20.7454066,39.9736722],[20.745954,39.9737327],[20.7461222,39.9738139],[20.7462795,39.9739535],[20.7464783,39.9739591],[20.746447,39.9738771],[20.7464392,39.9737958],[20.7465804,39.9737818],[20.7464469,39.9736339],[20.7465088,39.9735636],[20.7469003,39.9737007],[20.746987,39.9738472],[20.7472591,39.974035],[20.7473551,39.9741323],[20.7475555,39.9741019],[20.747618,39.9742658],[20.7477333,39.974179],[20.7477784,39.9742163],[20.747803,39.9741674],[20.747832,39.9740511],[20.747903,39.9740351],[20.7482188,39.9742872],[20.7483115,39.9743078],[20.7483175,39.9741819],[20.7484797,39.9743125],[20.7484883,39.9741326],[20.748606,39.9741179],[20.7486806,39.9742731],[20.7488978,39.9743603],[20.7492338,39.9745589],[20.7493091,39.9744529],[20.7495616,39.9746086],[20.7496866,39.9746616],[20.7497585,39.9746276],[20.7497994,39.9747008],[20.7501425,39.9748726],[20.7503183,39.9748685],[20.7506203,39.9750707],[20.7507306,39.9749657],[20.7508611,39.9751765],[20.7511529,39.9753198],[20.7513016,39.9753195],[20.7515228,39.9754698],[20.751756,39.9755124],[20.751901,39.9754173],[20.7519457,39.9755132],[20.7519466,39.9755672],[20.7519791,39.9756222],[20.7520404,39.9755879],[20.7520897,39.9755352],[20.752123,39.9755722],[20.7521545,39.9756496],[20.7522938,39.9758247],[20.7523992,39.9757511],[20.752744,39.9758868],[20.75299,39.9758847],[20.753045,39.9759583],[20.7530935,39.9759237],[20.7532707,39.9760592],[20.7534119,39.9760452],[20.753409,39.975982],[20.7533253,39.9757725],[20.7533426,39.9751605],[20.753441,39.9753074],[20.7535921,39.9753297],[20.7536342,39.9754299],[20.7540411,39.9757386],[20.7543291,39.9758367],[20.7543542,39.9758014],[20.7543265,39.9756205],[20.7540725,39.9752981],[20.7541924,39.9752384],[20.7544137,39.9752626],[20.7547602,39.9753624],[20.7548172,39.975418],[20.7556306,39.9755489],[20.7560038,39.97578],[20.7560622,39.9757817],[20.7560548,39.9756914],[20.7557921,39.9753057],[20.755193,39.9748026],[20.7551514,39.9746933],[20.7553463,39.9747798],[20.7553397,39.9746716],[20.7555134,39.9747125],[20.7555385,39.9746771],[20.7559981,39.9748611],[20.756336,39.9749922],[20.7579086,39.9754055],[20.7588268,39.9760437],[20.7590988,39.9761369],[20.7591006,39.9759974],[20.7588001,39.9752729],[20.7594444,39.9757593],[20.7597325,39.9758574],[20.7601559,39.9763106],[20.7603598,39.9767036],[20.7606177,39.9771657],[20.7607554,39.9772236],[20.7609332,39.9769313],[20.7611635,39.9771855],[20.7615987,39.977666],[20.7619469,39.9777298],[20.7624774,39.9776546],[20.7635144,39.9780078],[20.7635988,39.9779291],[20.7637157,39.9779324],[20.7637321,39.9778338],[20.7640586,39.9778609],[20.7641496,39.9779175],[20.7642546,39.9778754],[20.7646183,39.9778585],[20.7646855,39.9779235],[20.7649181,39.977957],[20.7655195,39.9778657],[20.7664991,39.9779471],[20.7666207,39.9778289],[20.7671035,39.9777703],[20.7673654,39.9779262],[20.7675421,39.9779042],[20.7679012,39.9779862],[20.7679778,39.9784207],[20.7680078,39.9785296],[20.7681018,39.9785233],[20.7682839,39.9783842],[20.7683754,39.9784318],[20.7683904,39.9783602],[20.7684476,39.9783888],[20.7686185,39.9782404],[20.7687308,39.9783697],[20.7689177,39.9783524],[20.768974,39.978399],[20.7691996,39.9783332],[20.7691811,39.9784768],[20.7693589,39.9786799],[20.7694532,39.9786646],[20.7696167,39.9784259],[20.7697202,39.9784648],[20.7697528,39.9785198],[20.7698666,39.9784644],[20.7700203,39.9784327],[20.7700218,39.9786489],[20.7700803,39.9786505],[20.7697714,39.9789932],[20.7698503,39.9790584],[20.7698418,39.9792383],[20.7699288,39.9791327],[20.7700991,39.9792455],[20.7701856,39.9791489],[20.7704694,39.9793369],[20.7705823,39.9791779],[20.7708219,39.9793107],[20.7713276,39.9787664],[20.7730134,39.9782729],[20.7733269,39.978079],[20.7737324,39.9777976],[20.7737936,39.977493],[20.7740025,39.9772827],[20.7743107,39.9772012],[20.7746435,39.976598],[20.774905,39.9765152],[20.7751039,39.9762685],[20.7753922,39.9761144],[20.7756628,39.9760859],[20.7758558,39.9759652],[20.7760796,39.9759354],[20.7762049,39.9760109],[20.7767695,39.9759546],[20.777015,39.9759614],[20.7771177,39.9760183],[20.7774368,39.9759551],[20.7776581,39.9759793],[20.7779138,39.9757703],[20.7779572,39.9758435],[20.7785669,39.9758245],[20.7791374,39.9756422],[20.7798801,39.9752845],[20.7805385,39.9747264],[20.7809149,39.9744666],[20.7810316,39.9742266],[20.781837,39.9735284],[20.7820234,39.9732994],[20.7832612,39.9722439],[20.7835095,39.9718635],[20.7838521,39.9715488],[20.7839315,39.9713528],[20.7848895,39.970249],[20.7857842,39.9696433],[20.7860208,39.9690915],[20.7859916,39.9689645],[20.7857871,39.9688328],[20.7857532,39.9685796],[20.7858401,39.9684739],[20.7859793,39.9684778],[20.7865498,39.9684711],[20.7871311,39.9683071],[20.7874619,39.967992],[20.7874361,39.9677931],[20.7879657,39.9674836],[20.7885973,39.9667445],[20.788949,39.966484],[20.7893335,39.9665217],[20.7896743,39.9660673],[20.7897316,39.9656455],[20.7902633,39.9650387],[20.7906567,39.9648875],[20.7909118,39.9649396],[20.7911883,39.9647851],[20.7913625,39.9645648],[20.7914434,39.964585],[20.7917287,39.9644939],[20.791951,39.9643694],[20.7919886,39.9643164],[20.7921816,39.9642452],[20.7927028,39.9638633],[20.7928342,39.9630563],[20.7929955,39.9626104],[20.7929697,39.9624115],[20.7932596,39.9622214],[20.7932492,39.9619419],[20.7930217,39.9618005],[20.7927909,39.9614788],[20.7925409,39.9613188],[20.7923037,39.9613077],[20.79211,39.9611942],[20.7919698,39.9609382],[20.7919128,39.9605808],[20.79213,39.960168],[20.7926262,39.9595692],[20.7928918,39.9593964],[20.7929704,39.9592184],[20.7932719,39.9590286],[20.7940472,39.9587168],[20.7942209,39.9587577],[20.7942281,39.9586047],[20.794451,39.9585929],[20.7947496,39.9582138],[20.7949981,39.9580541],[20.7952036,39.9579157],[20.7957787,39.9571299],[20.7962748,39.9567834],[20.796765,39.9563105],[20.7967935,39.9562032],[20.7970573,39.9560664],[20.7971705,39.9558984],[20.7975647,39.9557291],[20.7974311,39.9555813],[20.797736,39.9550673],[20.7977991,39.9547178],[20.7986935,39.954112],[20.7994233,39.9537719],[20.800086,39.9531146],[20.8004761,39.9525309],[20.8006248,39.9521027],[20.8005419,39.9513708],[20.8004359,39.9511337],[20.8005864,39.9501651],[20.8006774,39.9499694],[20.800988,39.9498339],[20.8012736,39.949585],[20.8022101,39.9489759],[20.8028234,39.9483713],[20.8032935,39.9478258],[20.80361,39.9473121],[20.8045978,39.9462045],[20.8047034,39.9461984],[20.804675,39.9463057],[20.8048027,39.9465794],[20.805343,39.9460359],[20.8055926,39.9459527],[20.8056623,39.9459636],[20.8056815,39.9460542],[20.8058476,39.9460048],[20.8060304,39.9460999],[20.8061381,39.9460488],[20.8062091,39.9462849],[20.8063723,39.9462985],[20.8066206,39.9459675],[20.8068836,39.9458487],[20.807008,39.9459422],[20.807162,39.9459014],[20.8072037,39.9460106],[20.8072993,39.9459682],[20.8072935,39.9460942],[20.8074947,39.9460457],[20.8074429,39.9461523],[20.8074997,39.9461899],[20.8076424,39.9461398],[20.8076833,39.946267],[20.8079125,39.9463724],[20.8078841,39.9464797],[20.8080201,39.9465736],[20.8082097,39.9465247],[20.8088091,39.946217],[20.8090337,39.9459169],[20.809321,39.9452763],[20.8096437,39.9448799],[20.8103082,39.944682],[20.8105002,39.944327],[20.8108292,39.9440478],[20.8110312,39.9432247],[20.8112391,39.9427801],[20.8113486,39.9419364],[20.811599,39.941583],[20.8117555,39.9413126],[20.8117738,39.9408672],[20.8112225,39.9398882],[20.8111524,39.9393819],[20.8109955,39.9389813],[20.8109313,39.9378446],[20.8110685,39.9369071],[20.8100485,39.9359422],[20.8096254,39.935228],[20.8096491,39.935071],[20.8097119,39.9348025],[20.8097324,39.9343617],[20.8099953,39.9339907],[20.8096673,39.9337474],[20.8094269,39.9333805],[20.8092116,39.9332305],[20.8086166,39.931935],[20.8081843,39.9316709],[20.8080512,39.9315141],[20.8080236,39.9313512],[20.8077774,39.9311103],[20.8077599,39.9309837],[20.8079452,39.9307726],[20.8079252,39.9307],[20.8073886,39.9301628],[20.8071576,39.929697],[20.8068655,39.9294368],[20.8067253,39.9291807],[20.8066044,39.9285108],[20.8064404,39.9285153],[20.8060323,39.9282338],[20.8055382,39.9280401],[20.8051285,39.9277946],[20.8049491,39.9273753],[20.8045326,39.9272737],[20.803921,39.9265903],[20.8036577,39.9264659],[20.8033218,39.9261414],[20.8029087,39.9259679],[20.8027844,39.9256222],[20.8022967,39.9252935],[20.8020522,39.9250165],[20.8018853,39.9246786],[20.8021927,39.9237818],[20.8026952,39.9230391],[20.8027917,39.922776],[20.8034445,39.9218213],[20.8036282,39.921394],[20.803942,39.9211865],[20.8040438,39.9210091],[20.803922,39.9208616],[20.8033846,39.9208468],[20.8032602,39.9207533],[20.803254,39.920636],[20.8031718,39.9206428],[20.8030708,39.9205499],[20.8030537,39.9203873],[20.8034374,39.9197629],[20.803147,39.9194666],[20.8028184,39.9190342],[20.8028092,39.9186827],[20.8029181,39.9184515],[20.8030988,39.9183664],[20.8032491,39.9181544],[20.8034056,39.9175552],[20.8033089,39.9173724],[20.8031837,39.9172969],[20.8030711,39.9169515],[20.8025596,39.9166311],[20.8024103,39.9163207],[20.802234,39.9161628],[20.8020261,39.9159273],[20.8020112,39.9157468],[20.8017601,39.9153615],[20.8017055,39.9150267],[20.8014206,39.9146135],[20.8012488,39.9140323],[20.8010681,39.9138922],[20.8004892,39.9130115],[20.8002043,39.9128505],[20.8001624,39.9097328],[20.7999596,39.9095651],[20.7995775,39.9094825],[20.7993865,39.9090629],[20.7993924,39.9086847],[20.7995352,39.9083824],[20.7996822,39.9077379],[20.8004674,39.906949],[20.8002827,39.9063944],[20.8002002,39.9059057],[20.8002509,39.9058216],[20.8007876,39.9056743],[20.8012259,39.9054296],[20.80219,39.9048167],[20.8024508,39.9045177],[20.803339,39.9040288],[20.8037612,39.9040044],[20.8037879,39.9041853],[20.8040123,39.9043896],[20.8040607,39.9043549],[20.8040236,39.9041467],[20.8042455,39.9041529],[20.8043069,39.9040915],[20.8044088,39.9041619],[20.8045857,39.9041307],[20.8048623,39.903715],[20.8047689,39.9034602],[20.804487,39.9032363],[20.80492,39.9032302],[20.8050626,39.9031801],[20.8053713,39.9033327],[20.8054101,39.9032527],[20.8056216,39.9032315],[20.8059537,39.9033848],[20.8060822,39.9031361],[20.806028,39.9027924],[20.8063743,39.9023876],[20.8065305,39.9022703],[20.8067657,39.9022407],[20.8068221,39.9022873],[20.8068763,39.9022528],[20.8070819,39.9023575],[20.8083793,39.9026275],[20.8087886,39.9028549],[20.8090231,39.9028434],[20.8096133,39.9029767],[20.8098828,39.9032183],[20.8100021,39.9031676],[20.8103175,39.9031763],[20.8107104,39.9032772],[20.8112577,39.9035805],[20.8113537,39.9035291],[20.8116803,39.903547],[20.8120725,39.9036659],[20.8125847,39.9037161],[20.813092,39.9038741],[20.8133323,39.9039888],[20.8133423,39.9042773],[20.8134407,39.904172],[20.8135033,39.9043358],[20.8136155,39.9041858],[20.8140615,39.9051618],[20.8142334,39.9052386],[20.8143523,39.9051968],[20.8149054,39.9056264],[20.8154069,39.9056582],[20.8157048,39.9057925],[20.8157561,39.9056948],[20.8160948,39.9057041],[20.8162425,39.9057983],[20.8162842,39.9059075],[20.8165491,39.9059958],[20.8168804,39.9064193],[20.8173696,39.9066129],[20.8175915,39.906619],[20.817622,39.9064667],[20.8177546,39.9063802],[20.8181192,39.9063362],[20.8182871,39.9061967],[20.8183817,39.9060237],[20.8186721,39.9061172],[20.8188097,39.9061255],[20.8189236,39.9057098],[20.8191689,39.9057165],[20.8194301,39.9056336],[20.8195821,39.9056108],[20.8197037,39.9055105],[20.8199285,39.9054536],[20.8199803,39.9052704],[20.8200612,39.9050384],[20.8199135,39.9046921],[20.8199773,39.9045272],[20.8200049,39.9043838],[20.8206977,39.9040471],[20.8209022,39.9039491],[20.8211454,39.9037486],[20.8212229,39.9035886],[20.8211985,39.9029034],[20.820942,39.9026846],[20.8205328,39.9026824],[20.8201899,39.9030153],[20.82024,39.9031968],[20.8201583,39.9034468]]}],{"extent":[20.71172,39.85307,20.85851,40.01165],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"openurl"},"sort":{"type":"none"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":true},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Volima_AgAndreas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Vassilikos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Prodromos_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Klima_Schinari":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kiliomeno_Yperaghathos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Argasi_Skopiotisa":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Agalas_Kiliomenos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Skopelos_monasteries_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Klima":{"url":null,"color":"#1ab933","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Skopelos_Loutraki_Faros_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Taxiarches":{"url":null,"color":"#2f7aff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Foukalida":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Damoulianata_AgThekli":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Vilatoria_Petani":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Kefalonia_Gerogombos":{"url":null,"color":"#f029e0","width":6,"exclude":false,"useStyle":true},"Geology\/GEO_Kefalonia_4_karst_formations":{"url":null,"color":"#fff741","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Ainos":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Anavasi_AgDinati":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Fiskardo_Battery":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Gyro_apo_Zoodocho_Pigi":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Sami_Poros":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4x4\/SUV_Kefalonia_Ainos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"SUV_4x4\/SUV_Kefalonia_Livadi-AgEleni_beach":{"url":null,"color":"#f72fff","width":6,"exclude":false,"useStyle":true},"GEOLOGY\/GEO_Kefalonia_Mntzavinata_formations":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Antisamos_Fanentes":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Proni_acropolis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_traverse":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Assos_castle":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_AgDinati_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Atros_ascent":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_ridge":{"url":null,"color":"#e99429","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Koutavos_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Sami_Fanentes":{"url":null,"color":"#3ee373","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Kalymnos_Vathys_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Palionisos":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Eborios":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_1":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_12":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_8a":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_10":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_9":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_5":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_16":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_14":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_4":{"url":"http:\/\/www.alternetgreece.com\/en\/activities\/hiking","color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_17":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_6":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_3":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Kokkinoplos_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Litochoro_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Karya_Skolio":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Krania_Rapsani":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Rapsani_Tembi":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Dion_Petrostrouga":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Gortsia_Apostolidis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_Litochoro_Livadaki_Mouses":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Vrondou_Barbalas":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Ascent_Pyramida":{"url":null,"color":"#0f4a96","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Sykia_Pyramida":{"url":null,"color":"#960f65","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Viniani_Reka_Giona_ref":{"url":null,"color":"#f7f70d","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Kaloskopi_51":{"url":null,"color":"#0f962a","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Stromi_Kaloskopi":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Vardousia_Koprisies":{"url":null,"color":"#178e12","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Diakos_Stromi":{"url":null,"color":"#502fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Southern_Ridge":{"url":null,"color":"#eff900","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos":{"url":null,"color":"#ff2fe6","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina":{"url":null,"color":"#c52fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Oxia_AthDiakos":{"url":null,"color":"#40ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argirochori_Abelaki":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argyrochori_Trapeza":{"url":null,"color":"#2f72ff","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Gersali":{"url":null,"color":"#59ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Trapeza":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Oiti_Ypati_Kapnochori":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"STEREA\/Sterea_Oeta_Ypati_Kastania":{"url":null,"color":"#127a2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Pyrgos":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Greveno":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra_Pyrgos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Neochori_Pyrgos":{"url":null,"color":"#2fe6ff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra-Pyrgos":{"url":null,"color":"#69ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Eleftherochori_Gioza":{"url":null,"color":"#13a713","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Tithronio_Gioza":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Elati_Vytina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Nymfasia_Magouliana":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Sea\/SEA_TOUR_Ydra_Gyros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Crete\/Crete_Akrotiri_Gouverneto_loop":{"url":null,"color":"#328e06","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Klokova_Riza_Paliovouna":{"url":null,"color":"#f40808","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Klokova_KatoKalavrouza_Paliovouna":{"url":null,"color":"#ffac2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Ochi_CasteloRosso_loop":{"url":null,"color":"#f01704","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Ochi_Kastanologos_Dimosari":{"url":null,"color":"#20a107","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Knimis_KamenaVourla_Karya":{"url":null,"color":"#f20202","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Knimis_monopati_Spileon":{"url":null,"color":"#14a008","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evrytania_MikroChorio_MegaloChorio":{"url":null,"color":"#f80c0c","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evrytania_MikroChorio_Ailiades":{"url":null,"color":"#ffff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evrytania_MikroChorio_KatoKaritsa":{"url":null,"color":"#06a112","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evritania_MikroChorio_MegaloChorio":{"url":null,"color":"#f40202","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evritania_MikroChorio_KatoKaritsa":{"url":null,"color":"#05881a","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evritania_MikroChorio_Ailiades":{"url":null,"color":"#ffee2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evritania_MegaloChorio_KaliakoudaRef":{"url":null,"color":"#ea0404","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Evritania_Kaliakouda_ascent":{"url":null,"color":"#ff0","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Arachneo_Karababa_gorge":{"url":null,"color":"#ffcd2f","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Arachneo_WEcrossing_1":{"url":null,"color":"#fa0909","width":6,"exclude":false,"useStyle":true},"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_EntryRace_10km":{"url":null,"color":"#99de10","width":10,"exclude":false,"useStyle":true},"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_HalfMarathon_21km":{"url":null,"color":"#0af","width":6,"exclude":false,"useStyle":true},"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_Marathon_42km":{"url":null,"color":"#f00","width":4,"exclude":false,"useStyle":true},"MOUNTAIN_RUNNING\/MountRun_ZagoriRace_TERA_80km":{"url":null,"color":"#000","width":2,"exclude":false,"useStyle":true}}}); function getPoiCollection(key,data,meta){ this.key = key; this.data = data; this.item = []; //this.meta = meta; this.gsMap = null; this.features = [] ; //this.lineFeatures = [] ; var self = this; //console.log(data); this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.features=[]; for(var i in this.data){ //console.log(this.data[i]); var newItem = this.getItem(this.data[i]); newItem.style = this.getIconStyle(newItem); var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem)); //var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(newItem.style); f.show = function () { var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } newItem.feature = f; this.item.push(newItem); this.features.push(f); } this.source.addFeatures(this.features); this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();}); this.refresh(); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ return { width:item.width, height:item.height, photoPath:item.photoPath, name:item.name, description:item.description, parent:this, click:[function(s,f,l){ var div = document.getElementById("myModal"); var self = f.get('msp'); //#34b0ff div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); }]}; } this.poiIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.5 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } this.getIconStyle = function(myItem) { var icon_size = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) var icon_size_set = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) * icon_size / 100; var is = (icon_size > 0) ? icon_size : 9; var icon_index = myItem.icon_index; if (wpt_icon.anch_fraction_x[icon_index] >= 0) { var anch_x = wpt_icon.anch_fraction_x[icon_index]; var anch_y = wpt_icon.anch_fraction_y[icon_index]; } else { var anch_x = 0.5; var anch_y = 0.5; } if (wpt_icon.scale[icon_index] >= 0) { var scale = wpt_icon.scale[icon_index]; } else { if (icon_size_set > 0) { var scale = icon_size_set; } else { var scale = 0.3; } } scale = 0.2; var MarkerIcon = wpt_icon.url_s[icon_index]; var iconStyle = new ol.style.Style({ image: new ol.style.Icon(({ anchor: [anch_x, anch_y], anchorXUnits: 'fraction', anchorYUnits: 'fraction', //anchorYUnits: 'pixels', opacity: 0.95, src: MarkerIcon, scale: scale })) }); return iconStyle; } this.getItem = function (dat){ var type = dat.type * 1;//[3]*1; var icon = map_point_collection.get(type); var icon_index = icon.iconindex; var img_path = icon.path; return { image: dat.photo, name: dat.name, description: dat.description, link_en: dat.hlink_EN, type: dat.type * 1, dbid: dat.id, hlink: dat.hlink_GR, zoom_level: dat.zoom_level, width: dat.width * 1, height: dat.height * 1, owner: dat.owner, icon_index: icon_index, photoPath: img_path + dat.photo + '.jpg', thumb_path: img_path + 'thumbs/' + dat.photo + '.jpg', //tmpim:add_image(pop_info_tmp, fp.attributes.thumb_path,-230,3,-1,-1,null), path: (dat.type * 1 == 1) ? img_path + dat.photo + '.jpg' : "" } } this.pop_info_adjust_size = function(type, dl) { if (dl < 0) dl = 0; var new_size = 9 + (1.5 * dl); return new_size * 0.2; } this.refresh = function () { try { this.source.clear(); } catch (err) { } var zoom = this.gsMap.getZoom(); for (var i = 0; i < this.item.length; i++) { if (zoom >= this.item[i].zoom_level) this.source.addFeatures([this.item[i].feature]); } } this.getImagetItem = function(path,width,height){ /* PARADOXES - OLES OI EIKONES PIANOYN TO MEGISTO PLATOS - AN TO YPSOS EINEI MEGALYTERO TOY DIAUESIMOY H EIKONA KOVETAI KATV */ var minAvailableWidth =568; //APO BOOTSTRAP, http://www.topoguide.gr/css/bootstrap.css, 5489, var maxAvailableHeight = browser.size()[1]-250; var style = "",divStyle = ""; if(height>maxAvailableHeight){ var ratio = width/height; var renderWidth = maxAvailableHeight*ratio; var renderHeight = maxAvailableHeight; if(minAvailableWidth/ratio>maxAvailableHeight) divStyle += "height:" + renderHeight + "px;"; divStyle += "width:100%;"; style += "width:100%;"; } else{ if(width'; } } var img_path = 'https://anadigit.fr/TopoMedia/map_points/img'; var map_point_collection = { 0 :{iconindex:14,path:img_path + "/Landscape/"}, 1 :{iconindex:17,path:img_path + "/Flora/"}, 2 :{iconindex:18,path:img_path + "/Animals/"}, 3 :{iconindex:19,path:img_path + "/Books/"}, 4 :{iconindex:20,path:img_path + "/Maps/"}, 5 :{iconindex:21,path:img_path + "/Apps/"}, 6 :{iconindex:22,path:img_path + "/Mushrooms/"}, 7 :{iconindex:23,path:img_path + "/Animals/"}, 8 :{iconindex:24,path:img_path + "/Animals/"}, 9 :{iconindex:25,path:img_path + "/Architecture/"}, 10:{iconindex:26,path:img_path + "/Monuments/"}, 447:{iconindex:38,path:img_path + "/Refuges/"}, 450:{iconindex:41,path:img_path + "/Signposts/"}, 71:{iconindex:36,path:img_path + "/Geology/"}, 72:{iconindex:34,path:img_path + "/Geology/"}, 73:{iconindex:35,path:img_path + "/Geology/"}, 204:{iconindex:27,path:img_path + "/logos/"}, 206:{iconindex:28,path:img_path + "/logos/"}, 200:{iconindex:29,path:img_path + "/logos/"}, 201:{iconindex:30,path:img_path + "/logos/"}, 205:{iconindex:31,path:img_path + "/logos/"}, 202:{iconindex:32,path:img_path + "/logos/"}, 203:{iconindex:33,path:img_path + "/logos/"}, 301:{iconindex:42,path:img_path + "/Beach/"}, 1001:{iconindex:42,path:img_path + "/Water/"}, default: {iconindex:28,path:""} } map_point_collection.get = function(key){ return this[key] || this.default; } function wpt_icon_class(){ this.count=0; this.url = new Array(); this.url_s = new Array(); this.cx = new Array(); this.cy = new Array(); this.scx = new Array(); this.scy = new Array(); this.ix = new Array(); this.iy = new Array(); this.anch_fraction_x = new Array(); this.anch_fraction_y = new Array(); this.scale = new Array(); this.inwptwindow = new Array(); this.add = function(url,url_s,cx,cy,ix,iy,scx,scy,anch_fraction_x, anch_fraction_y,scale,inwptwindow){ this.count+=1; this.url[this.count]="https://anadigit.fr/TopoMedia/" + url; this.url_s[this.count]="https://anadigit.fr/TopoMedia/" + url_s; this.cx[this.count]=cx; this.cy[this.count]=cy; this.scx[this.count]=scx; //kentro simeiou gia xarti this.scy[this.count]=scy; this.ix[this.count]=ix; //offset sto icon list this.iy[this.count]=iy; this.anch_fraction_x[this.count]=anch_fraction_x; //offset sto icon list this.anch_fraction_y[this.count]=anch_fraction_y; this.scale[this.count]=scale; this.inwptwindow[this.count]=inwptwindow; } } var wpt_icon = new wpt_icon_class(); wpt_icon.add("Icons/WPT/pin_blue.png","Icons/WPT/pin_blue_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_green.png","Icons/WPT/pin_green_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_red.png","Icons/WPT/pin_red_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/star_blue.png","Icons/WPT/star_blue_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_green.png","Icons/WPT/star_green_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_red.png","Icons/WPT/star_red_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/lmk_red.png","Icons/WPT/lmk_red_s.png",32,32,-3,0,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/house_blue.png","Icons/WPT/house_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true);; wpt_icon.add("Icons/WPT/house_red.png","Icons/WPT/house_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/monastery_red.png","Icons/WPT/monastery_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/church_red.png","Icons/WPT/church_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_blue.png","Icons/WPT/anchor_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_red.png","Icons/WPT/anchor_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); //photo_points wpt_icon.add("Icons/WPT/landscape.png","Icons/WPT/landscape.png",28,28,5,8,16,16); wpt_icon.add("img/NAV_START.png","img/NAV_START.png",32*1.5,42,-5,-48,11,11,0.5,1.0,0.6,true); wpt_icon.add("img/NAV_END.png","img/NAV_END.png",32*1.5,162,-5,-28,11,11,0.5,1.0,0.6,true); wpt_icon.add("Icons/WPT/flora.png","Icons/WPT/flora.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/bird.png","Icons/WPT/bird.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/book.png","Icons/WPT/book.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/map.png","Icons/WPT/map.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/iphone.png","Icons/WPT/iphone.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mushroom.png","Icons/WPT/mushroom.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mammal.png","Icons/WPT/mammal.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/turtle.png","Icons/WPT/turtle.png",30,30,5,8,16,16); wpt_icon.add("Icons/WPT/architecture.png","Icons/WPT/architecture.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/monument.png","Icons/WPT/monument.png",28,28,5,8,16,16); // pop_info wpt_icon.add("pop_info/Icons/pop_info_1.png","pop_info/Icons/pop_info_1.png",32,32,5,8,32,32,0.5,1); // iconindex= 27 wpt_icon.add("pop_info/Icons/pop_info_2.png","pop_info/Icons/pop_info_2.png",32,32,5,8,32,32,0.5,1); // iconindex= 28 wpt_icon.add("pop_info/Icons/pop_info_3.png","pop_info/Icons/pop_info_3.png",32,32,5,8,32,32); // iconindex= 29 wpt_icon.add("pop_info/Icons/pop_info_4.png","pop_info/Icons/pop_info_4.png",32,32,5,8,32,32,0.5,1); // iconindex= 30 wpt_icon.add("pop_info/Icons/pop_info_5.png","pop_info/Icons/pop_info_5.png",32,32,5,8,32,32); // iconindex= 31 wpt_icon.add("pop_info/Icons/pop_info_6.png","pop_info/Icons/pop_info_6.png",32,32,5,8,32,32); // iconindex= 32 wpt_icon.add("pop_info/Icons/pop_info_7.png","pop_info/Icons/pop_info_7.png",32,32,5,8,32,32); // iconindex= 33 wpt_icon.add("pop_info/Icons/pop_info_101.png","pop_info/Icons/pop_info_101.png",32,32,5,8,32,32,0.5,0.5); // iconindex= 34 wpt_icon.add("pop_info/Icons/pop_info_102.png","pop_info/Icons/pop_info_102.png",32,32,5,8,32,32); // iconindex= 35 wpt_icon.add("pop_info/Icons/pop_info_103.png","pop_info/Icons/pop_info_103.png",32,32,5,8,32,32); // iconindex= 36 wpt_icon.add("Icons/WPT/POI_446_icon.png","Icons/WPT/POI_446_icon.png",32,32,5,8,32,32); // iconindex= 37 wpt_icon.add("Icons/WPT/POI_447_icon.png","Icons/WPT/POI_447_icon.png",32,32,5,8,32,32); // iconindex= 38 wpt_icon.add("Icons/WPT/POI_448_icon.png","Icons/WPT/POI_448_icon.png",32,32,5,8,32,32); // iconindex= 39 wpt_icon.add("Icons/WPT/POI_449_icon.png","Icons/WPT/POI_449_icon.png",32,32,5,8,32,32); // iconindex= 40 wpt_icon.add("Icons/WPT/POI_450_icon.png","Icons/WPT/POI_450_icon.png",32,32,5,8,32,32); // iconindex= 41 wpt_icon.add("Icons/WPT/Fountain_blue.png","Icons/WPT/Fountain_blue.png",32,32,5,8,32,32); // iconindex= 42 console.log('poi signature up to date');var poiCollection_zagorirace = new getPoiCollection("zagorirace",[{"name":"\u039a\u039f\u039d\u0399\u03a4\u03a3\u0391
\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03bf\u03bd\u03cc\u03c4\u03bf\u03be\u03b7 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c3\u03c4\u03bf\u03bd \u0391\u03ce\u03bf","owner":"A. Bonetti","x":20.744168281551,"y":40.037138712793,"photo":"Aoos River - Konista bridge","type":9,"zoom_level":12,"id":148,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":345},{"name":"\u03a4\u03a5\u039c\u03a6\u0397
\u0397 \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c6\u03ae
\u0393\u03ba\u03b1\u03bc\u03ae\u03bb\u03b1 2495\u03bc","owner":"A. Bonetti","x":20.802618980408,"y":39.990399807429,"photo":"Mt Timfi - Gamila-01","type":0,"zoom_level":12,"id":225,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":330},{"name":"\u03a4\u03a5\u039c\u03a6\u0397
\u0397 \u039e\u03b5\u03c1\u03bf\u03bb\u03bf\u03cd\u03c4\u03c3\u03b1 \u03a4\u03c3\u03bf\u03c5\u03bc\u03ac\u03bd\u03b7","owner":"A. Bonetti","x":20.772406578063,"y":39.983363192954,"photo":"Timfi Xeroloutsa Lake - Astraka","type":0,"zoom_level":12,"id":248,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03ba\u03bf\u03c1\u03c6\u03ae \u0391\u03c3\u03c4\u03c1\u03ac\u03ba\u03b1 \u03c3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2","height":512,"width":338},{"name":"\u03a4\u03a5\u039c\u03a6\u0397
\u0391\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf","owner":"A. Bonetti","x":20.768587112426,"y":39.979581535311,"photo":"Timfi-Refuge-Lakka Tsoumani","type":0,"zoom_level":14,"id":249,"hlink_GR":"","hlink_EN":"","description":"\u0398\u03ad\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03a0\u03bb\u03cc\u03c3\u03ba\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b7 \u0393\u03ba\u03b1\u03bc\u03ae\u03bb\u03b1","height":338,"width":512},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397 \u03bc\u03bf\u03bd\u03ae \u03a3\u03c0\u03b7\u03bb\u03b9\u03ce\u03c4\u03b9\u03c3\u03b1\u03c2","owner":"A. Bonetti","x":20.685331344604,"y":39.948202149474,"photo":"Vikos - Monastery Panaghia Spiliotissa","type":10,"zoom_level":14,"id":252,"hlink_GR":"","hlink_EN":"","description":"","height":511,"width":334},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0398\u03ad\u03b1 \u03c3\u03c4\u03bf \u0392\u03af\u03ba\u03bf","owner":"A. Bonetti","x":20.753824234008,"y":39.906735608044,"photo":"Vikos-gorge-shrine","type":0,"zoom_level":14,"id":253,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":338},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03b9\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c4\u03bf\u03c5 \u0392\u03af\u03ba\u03bf\u03c5","owner":"A. Bonetti","x":20.713612556455,"y":39.954814727022,"photo":"Voidomati River - Vikos-Aoos National Park Greece 03","type":0,"zoom_level":14,"id":255,"hlink_GR":"","hlink_EN":"","description":"","height":345,"width":512},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.75306,"y":39.87369,"photo":"DSC040961","type":450,"zoom_level":17,"id":3451,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.754701,"y":39.873015,"photo":"DSC040971","type":450,"zoom_level":17,"id":3452,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.755725,"y":39.872015,"photo":"DSC040981","type":450,"zoom_level":18,"id":3453,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.756706442459,"y":39.871779325608,"photo":"DSC040991","type":450,"zoom_level":17,"id":3454,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.759631,"y":39.870318,"photo":"DSC041051","type":450,"zoom_level":18,"id":3456,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.762961,"y":39.869063,"photo":"DSC041061","type":450,"zoom_level":17,"id":3457,"hlink_GR":"","hlink_EN":"","description":"","height":652,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.764153,"y":39.869023,"photo":"DSC041221","type":450,"zoom_level":17,"id":3458,"hlink_GR":"","hlink_EN":"","description":"","height":411,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.764946,"y":39.867061,"photo":"DSC041271","type":450,"zoom_level":17,"id":3459,"hlink_GR":"","hlink_EN":"","description":"","height":754,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.774748012564,"y":39.862570212705,"photo":"DSC041301","type":450,"zoom_level":17,"id":3460,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776503,"y":39.871051,"photo":"DSC041381","type":450,"zoom_level":17,"id":3461,"hlink_GR":"","hlink_EN":"","description":"","height":559,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.775096,"y":39.866986,"photo":"DSC041401","type":450,"zoom_level":17,"id":3462,"hlink_GR":"","hlink_EN":"","description":"","height":528,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776108,"y":39.86561,"photo":"DSC041411","type":450,"zoom_level":18,"id":3463,"hlink_GR":"","hlink_EN":"","description":"","height":552,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.779841,"y":39.869326,"photo":"DSC041631","type":450,"zoom_level":17,"id":3464,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.780401,"y":39.868826,"photo":"DSC041641","type":450,"zoom_level":18,"id":3465,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.789786,"y":39.865965,"photo":"DSC041871","type":450,"zoom_level":17,"id":3466,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776465,"y":39.859958,"photo":"DSC042291","type":450,"zoom_level":17,"id":3467,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.773916,"y":39.86131,"photo":"DSC042341","type":450,"zoom_level":17,"id":3468,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.789375,"y":39.864371,"photo":"DSC042022","type":450,"zoom_level":17,"id":3469,"hlink_GR":"","hlink_EN":"","description":"","height":818,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0393\u03ad\u03c6\u03c5\u03c1\u03b1 \u0391\u03c1\u03ba\u03bf\u03cd\u03b4\u03b1","owner":"AnaDigit","x":20.774190563491,"y":39.854962861284,"photo":"Zagori_gef_Arkouda_11","type":9,"zoom_level":15,"id":3471,"hlink_GR":"","hlink_EN":"","description":"","height":730,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397\u03c1\u03ce\u03bf \u039a\u03b1\u03c0\u03b5\u03c4\u03ac\u03bd \u0391\u03c1\u03ba\u03bf\u03cd\u03b4\u03b1","owner":"AnaDigit","x":20.774903,"y":39.854955,"photo":"Zagori_iroo_Arkouda_21","type":9,"zoom_level":16,"id":3472,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c0\u03b7\u03bb\u03af\u03c4\u03c3\u03b1 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039f3","owner":"AnaDigit","x":20.772751,"y":39.866583,"photo":"Zagori_path_VitsaKokori_1","type":73,"zoom_level":16,"id":3473,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0392\u03af\u03c4\u03c3\u03b1","owner":"AnaDigit","x":20.753113,"y":39.873612,"photo":"Zagori_Vitsa_11","type":9,"zoom_level":14,"id":3474,"hlink_GR":"","hlink_EN":"","description":"","height":526,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u0394\u03af\u03bb\u03bf\u03c6\u03bf","owner":"AnaDigit","x":20.766093,"y":39.853023,"photo":"Zagori_Dilofo_fnt1","type":1001,"zoom_level":17,"id":3476,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf\u03c5\u03c2 \u039a\u03ae\u03c0\u03bf\u03c5\u03c2","owner":"AnaDigit","x":20.79244,"y":39.864346,"photo":"Zagori_Kipoi_fnt_11","type":1001,"zoom_level":18,"id":3477,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039b\u03b1\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u039c\u03bf\u03c5\u03c3\u03b5\u03af\u03bf \u0391\u03b3\u03b1\u03c0\u03af\u03bf\u03c5 \u03a4\u03cc\u03bb\u03b7 \u03c3\u03c4\u03bf\u03c5\u03c2 \u039a\u03ae\u03c0\u03bf\u03c5\u03c2","owner":"AnaDigit","x":20.794003,"y":39.863716,"photo":"Zagori_Kipoi_mouseio_Agapios_Tolis1","type":9,"zoom_level":17,"id":3478,"hlink_GR":"","hlink_EN":"","description":"","height":801,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0393\u03ad\u03c6\u03c5\u03c1\u03b1 \u039c\u03af\u03c3\u03b9\u03bf\u03c5","owner":"AnaDigit","x":20.764375343916,"y":39.869261276358,"photo":"Zagori_gef_Kokori_Misiou1","type":9,"zoom_level":15,"id":3480,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0393\u03ad\u03c6\u03c5\u03c1\u03b1 \u039b\u03b1\u03b6\u03b1\u03c1\u03af\u03b4\u03b7-\u039a\u03bf\u03bd\u03c4\u03bf\u03b4\u03ae\u03bc\u03bf\u03c5","owner":"AnaDigit","x":20.789472609787,"y":39.865669030133,"photo":"Zagori_gef_Lazaridi_Kondodimou_31","type":9,"zoom_level":15,"id":3481,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03ae\u03c0\u03bf\u03b9 (\u039c\u03c0\u03ac\u03b3\u03b9\u03b1)","owner":"AnaDigit","x":20.793145002679,"y":39.864982228607,"photo":"Zagori_Kipoi_21","type":9,"zoom_level":14,"id":3482,"hlink_GR":"","hlink_EN":"","description":"","height":585,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039a\u03bf\u03c5\u03ba\u03bf\u03cd\u03bb\u03b9","owner":"AnaDigit","x":20.775218,"y":39.871092,"photo":"Zagori_Koukouli_21","type":9,"zoom_level":14,"id":3483,"hlink_GR":"","hlink_EN":"","description":"","height":607,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03bd\u03b5\u03ba\u03c1\u03bf\u03c4\u03b1\u03c6\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u0394\u03b9\u03bb\u03cc\u03c6\u03bf\u03c5","owner":"AnaDigit","x":20.766509513228,"y":39.853510022274,"photo":"Zagori_Dilofo_nec1","type":9,"zoom_level":16,"id":3484,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03bf\u03c5\u03ba\u03bf\u03cd\u03bb\u03b9-\u039a\u03ae\u03c0\u03bf\u03b9","owner":"AnaDigit","x":20.789395,"y":39.865915,"photo":"Zagori_path_Koukouli_Kipoi_41","type":0,"zoom_level":16,"id":3485,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039f \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c4\u03c9\u03bd \u039a\u03ae\u03c0\u03c9\u03bd","owner":"AnaDigit","x":20.79486732672,"y":39.86116325132,"photo":"Zagori_Kipoi_wmill1","type":9,"zoom_level":15,"id":3486,"hlink_GR":"","hlink_EN":"","description":"","height":558,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039f \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c4\u03c9\u03bd \u039a\u03ae\u03c0\u03c9\u03bd \u03c3\u03c4\u03bf \u0392\u03b9\u03ba\u03ac\u03ba\u03b7","owner":"AnaDigit","x":20.789871,"y":39.866311,"photo":"Zagori_path_Koukouli_Kipoi_wmill1","type":9,"zoom_level":16,"id":3487,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c4\u03bf\u03c5 \u039a\u03cc\u03ba\u03ba\u03bf\u03c1\u03b7","owner":"AnaDigit","x":20.775343462966,"y":39.862220212275,"photo":"Zagori_gef_Kokori_21","type":9,"zoom_level":15,"id":3488,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397 \u03ba\u03c4\u03b7\u03c4\u03bf\u03c1\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03a3\u03ba\u03ac\u03bb\u03b1\u03c2 \u03c4\u03b7\u03c2 \u0392\u03af\u03c4\u03c3\u03b1\u03c2","owner":"AnaDigit","x":20.763043,"y":39.868618,"photo":"Zagori_Skala_Vitsas1","type":9,"zoom_level":17,"id":3489,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u0394\u03af\u03bb\u03bf\u03c6\u03bf","owner":"AnaDigit","x":20.765183468254,"y":39.853157125345,"photo":"Zagori_Dilofo_11","type":9,"zoom_level":14,"id":3490,"hlink_GR":"","hlink_EN":"","description":"","height":682,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03c1\u03af\u03c4\u03bf\u03be\u03b7 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03a0\u03bb\u03b1\u03ba\u03af\u03b4\u03b1 \u03ae \u039d\u03bf\u03cd\u03c4\u03c3\u03bf\u03c5","owner":"AnaDigit","x":20.786281576726,"y":39.861933348561,"photo":"Zagori_gef_Plakida_31","type":9,"zoom_level":14,"id":3491,"hlink_GR":"","hlink_EN":"","description":"","height":746,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u039f\u03b9 \u03c8\u03b7\u03bb\u03ad\u03c2 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ad\u03c2 \u03bc\u03ad\u03c3\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u0392\u03b9\u03ba\u03ac\u03ba\u03b7","owner":"AnaDigit","x":20.848241119521,"y":39.968168914985,"photo":"Zagori_Vikakis_31","type":0,"zoom_level":14,"id":3492,"hlink_GR":"","hlink_EN":"","description":"","height":759,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c4\u03bf\u03c5 \u0392\u03b9\u03ba\u03ac\u03ba\u03b7 \u03ba\u03b1\u03b9 \u03b7 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u039a\u03bf\u03bd\u03c4\u03bf\u03b4\u03ae\u03bc\u03bf\u03c5","owner":"AnaDigit","x":20.789127,"y":39.864394,"photo":"Zagori_Vikakis_21","type":0,"zoom_level":15,"id":3493,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03ae\u03bb\u03b7 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03ba\u03c4\u03b7\u03c4\u03bf\u03c1\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03a3\u03ba\u03ac\u03bb\u03b1\u03c2 \u039a\u03ae\u03c0\u03c9\u03bd","owner":"AnaDigit","x":20.78917,"y":39.8663,"photo":"Zagori_path_Koukouli_Kipoi_51","type":9,"zoom_level":17,"id":3494,"hlink_GR":"","hlink_EN":"","description":"","height":801,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.791376,"y":39.869555,"photo":"DSC064091","type":450,"zoom_level":17,"id":3644,"hlink_GR":"","hlink_EN":"","description":"","height":620,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.786761,"y":39.877956,"photo":"DSC064201","type":450,"zoom_level":17,"id":3645,"hlink_GR":"","hlink_EN":"","description":"","height":671,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.78496,"y":39.881736,"photo":"DSC064211","type":450,"zoom_level":17,"id":3646,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.776361,"y":39.886533,"photo":"DSC064241","type":450,"zoom_level":18,"id":3647,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.772878,"y":39.8834,"photo":"DSC064253","type":450,"zoom_level":18,"id":3649,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.762083,"y":39.883085,"photo":"DSC064311","type":450,"zoom_level":17,"id":3650,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.761866,"y":39.88369,"photo":"DSC064331","type":450,"zoom_level":18,"id":3651,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.761528,"y":39.883713,"photo":"DSC064341","type":450,"zoom_level":17,"id":3652,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.809231,"y":39.933766,"photo":"DSC065581","type":450,"zoom_level":17,"id":3655,"hlink_GR":"","hlink_EN":"","description":"","height":833,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.803119,"y":39.918343,"photo":"DSC065641","type":450,"zoom_level":17,"id":3657,"hlink_GR":"","hlink_EN":"","description":"","height":734,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.809361,"y":39.899745,"photo":"DSC065681","type":450,"zoom_level":17,"id":3659,"hlink_GR":"","hlink_EN":"","description":"","height":792,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.797208,"y":39.895535,"photo":"DSC065691","type":450,"zoom_level":17,"id":3660,"hlink_GR":"","hlink_EN":"","description":"","height":689,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.786681,"y":39.889353,"photo":"DSC065731","type":450,"zoom_level":17,"id":3661,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03bf\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.7867,"y":39.889035,"photo":"DSC065741","type":450,"zoom_level":16,"id":3662,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03ae\u03c0\u03bf\u03b9-\u039a\u03b1\u03c0\u03ad\u03c3\u03bf\u03b2\u03bf","owner":"AnaDigit","x":20.790518,"y":39.870895,"photo":"DSC064131","type":0,"zoom_level":16,"id":3663,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03b7 \u03a3\u03ba\u03ac\u03bb\u03b1 \u039a\u03b1\u03c0\u03b5\u03c3\u03cc\u03b2\u03bf\u03c5","owner":"AnaDigit","x":20.765112552929,"y":39.881424140208,"photo":"DSC064291","type":0,"zoom_level":15,"id":3664,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u0392\u03af\u03ba\u03bf","owner":"AnaDigit","x":20.763366,"y":39.881832,"photo":"DSC064401","type":0,"zoom_level":16,"id":3665,"hlink_GR":"","hlink_EN":"","description":"","height":789,"width":1300},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u0392\u03af\u03ba\u03bf","owner":"AnaDigit","x":20.763755,"y":39.877275,"photo":"DSC064471","type":0,"zoom_level":16,"id":3666,"hlink_GR":"","hlink_EN":"","description":"","height":855,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c4\u03bf\u03c5 \u039c\u03af\u03c3\u03c3\u03b9\u03bf\u03c5","owner":"AnaDigit","x":20.764041,"y":39.86895,"photo":"DSC064491","type":0,"zoom_level":15,"id":3667,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0391\u03c0\u03cc \u03c4\u03bf \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c4\u03bf\u03c5 \u039c\u03af\u03c3\u03c3\u03b9\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c2 \u03b3\u03b5\u03c6. \u039a\u03cc\u03ba\u03ba\u03bf\u03c1\u03b7","owner":"AnaDigit","x":20.764451,"y":39.868803,"photo":"DSC064541","type":0,"zoom_level":15,"id":3668,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":900},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u03a6\u03bf\u03cd\u03bd\u03ba\u03bf","owner":"AnaDigit","x":20.83773,"y":39.940408,"photo":"DSC064631","type":0,"zoom_level":15,"id":3669,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u039b\u03ac\u03ba\u03ba\u03bf \u039c\u03b5\u03b3\u03ac\u03bb\u03c9\u03bd \u039b\u03b9\u03b8\u03b1\u03c1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":20.838556,"y":39.941291,"photo":"DSC064661","type":0,"zoom_level":16,"id":3670,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u039b\u03ac\u03ba\u03ba\u03bf \u039c\u03b5\u03b3\u03ac\u03bb\u03c9\u03bd \u039b\u03b9\u03b8\u03b1\u03c1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":20.850778,"y":39.95947,"photo":"DSC064881","type":0,"zoom_level":15,"id":3671,"hlink_GR":"","hlink_EN":"","description":"","height":735,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u039b\u03ac\u03ba\u03ba\u03bf \u039c\u03b5\u03b3\u03ac\u03bb\u03c9\u03bd \u039b\u03b9\u03b8\u03b1\u03c1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":20.852163,"y":39.962726,"photo":"DSC064931","type":0,"zoom_level":15,"id":3672,"hlink_GR":"","hlink_EN":"","description":"","height":756,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03bf \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b2\u03ac\u03bb\u03bf\u03c5","owner":"AnaDigit","x":20.852726,"y":39.96934,"photo":"DSC065131","type":0,"zoom_level":15,"id":3673,"hlink_GR":"","hlink_EN":"","description":"","height":643,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b2\u03ac\u03bb\u03bf\u03c5","owner":"AnaDigit","x":20.851763,"y":39.970855,"photo":"DSC065151","type":0,"zoom_level":14,"id":3674,"hlink_GR":"","hlink_EN":"","description":"","height":663,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u03a6\u03bf\u03cd\u03bd\u03ba\u03bf","owner":"AnaDigit","x":20.839168,"y":39.941978,"photo":"DSC064712","type":0,"zoom_level":16,"id":3675,"hlink_GR":"","hlink_EN":"","description":"","height":613,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03cd\u03bc\u03c6\u03b7\u03c2","owner":"AnaDigit","x":20.81631,"y":39.964138,"photo":"DSC065311","type":0,"zoom_level":15,"id":3676,"hlink_GR":"","hlink_EN":"","description":"","height":667,"width":1400},{"name":"\u0398\u0397\u039b\u0391\u03a3\u03a4\u0399\u039a\u0391
\u0391\u03b3\u03c1\u03b9\u03cc\u03b3\u03b9\u03b4\u03bf \u03c3\u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03cd\u03bc\u03c6\u03b7\u03c2","owner":"AnaDigit","x":20.831596,"y":39.972243,"photo":"DSC065221","type":7,"zoom_level":14,"id":3677,"hlink_GR":"","hlink_EN":"","description":"","height":885,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0392\u03b9\u03cc\u03bb\u03b5\u03c2 \u03c3\u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03cd\u03bc\u03c6\u03b7\u03c2","owner":"AnaDigit","x":20.80949,"y":39.955433,"photo":"DSC065391","type":0,"zoom_level":14,"id":3678,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":900},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
Dactylorhiza sambucina \u03c3\u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1","owner":"AnaDigit","x":20.807506,"y":39.955005,"photo":"DSC065471","type":1,"zoom_level":15,"id":3679,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":900},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03b1\u03bb\u03c0\u03b9\u03ba\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1","owner":"AnaDigit","x":20.808605,"y":39.955561,"photo":"DSC065421","type":0,"zoom_level":16,"id":3680,"hlink_GR":"","hlink_EN":"","description":"","height":614,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c4\u03b7\u03bd \u03c0\u03b7\u03b3\u03ae \u039a\u03c1\u03bf\u03cd\u03bd\u03b1","owner":"AnaDigit","x":20.80935,"y":39.9366,"photo":"DSC065522","type":1001,"zoom_level":14,"id":3681,"hlink_GR":"","hlink_EN":"","description":"","height":705,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03c0\u03b7\u03b3\u03ae \u039a\u03c1\u03bf\u03cd\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03a4\u03c3\u03b5\u03c0\u03ad\u03bb\u03bf\u03b2\u03bf","owner":"AnaDigit","x":20.809516,"y":39.934236,"photo":"DSC06556_stitch2","type":0,"zoom_level":15,"id":3682,"hlink_GR":"","hlink_EN":"","description":"","height":656,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0397 \u03bb\u03bf\u03cd\u03c4\u03c3\u03b1 \u03a0\u03b1\u03c5\u03bb\u03bf\u03b3\u03b9\u03b1\u03bd\u03bd\u03ac\u03ba\u03b7 \u03c3\u03c4\u03bf\u03bd \u0391\u03c5\u03b3\u03b5\u03c1\u03b9\u03bd\u03cc","owner":"AnaDigit","x":20.803143,"y":39.918183,"photo":"DSC065621","type":1001,"zoom_level":15,"id":3683,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03c7\u03bf\u03bb\u03b5\u03af\u03bf","owner":"AnaDigit","x":20.820338096561,"y":39.903068079764,"photo":"K3II0821s1","type":9,"zoom_level":16,"id":3730,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1024},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03c3\u03c4\u03b7 \u039b\u03bf\u03cd\u03c4\u03c3\u03b1 \u03a4\u03c3\u03b5\u03c0\u03b5\u03bb\u03cc\u03b2\u03bf\u03c5","owner":"AnaDigit","x":20.811068,"y":39.902061,"photo":"Ag_Georgios_Loutsa_Tsepelovo1","type":9,"zoom_level":15,"id":3733,"hlink_GR":"","hlink_EN":"","description":"","height":1050,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 Zagori Race","owner":"AnaDigit","x":20.806776,"y":39.902106,"photo":"DSC075471","type":450,"zoom_level":17,"id":3735,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 Zagori Race","owner":"AnaDigit","x":20.806835,"y":39.902216,"photo":"DSC075481","type":450,"zoom_level":17,"id":3736,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u0396\u03b1\u03b3\u03cc\u03c1\u03b9","owner":"AnaDigit","x":20.806843,"y":39.902255,"photo":"DSC075491","type":450,"zoom_level":16,"id":3737,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u0396\u03b1\u03b3\u03cc\u03c1\u03b9","owner":"AnaDigit","x":20.808558,"y":39.902711,"photo":"DSC075501","type":450,"zoom_level":16,"id":3738,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u0396\u03b1\u03b3\u03cc\u03c1\u03b9","owner":"AnaDigit","x":20.80854,"y":39.902711,"photo":"DSC075511","type":450,"zoom_level":17,"id":3739,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":558},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.741911,"y":39.909725,"photo":"DSC076071","type":0,"zoom_level":15,"id":3743,"hlink_GR":"","hlink_EN":"","description":"","height":672,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.748586,"y":39.908589,"photo":"DSC076062","type":0,"zoom_level":15,"id":3744,"hlink_GR":"","hlink_EN":"","description":"","height":469,"width":1200},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.737643,"y":39.90937,"photo":"DSC076081","type":0,"zoom_level":14,"id":3745,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.735543,"y":39.912573,"photo":"DSC076151","type":0,"zoom_level":15,"id":3746,"hlink_GR":"","hlink_EN":"","description":"","height":547,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.739915,"y":39.915586,"photo":"DSC076171","type":0,"zoom_level":14,"id":3747,"hlink_GR":"","hlink_EN":"","description":"","height":516,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.720076,"y":39.927085,"photo":"DSC076221","type":0,"zoom_level":15,"id":3748,"hlink_GR":"","hlink_EN":"","description":"","height":586,"width":1400},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.720061,"y":39.928008,"photo":"DSC076241","type":0,"zoom_level":13,"id":3749,"hlink_GR":"","hlink_EN":"","description":"","height":779,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.719236,"y":39.913861,"photo":"DSC076291","type":0,"zoom_level":14,"id":3750,"hlink_GR":"","hlink_EN":"","description":"","height":722,"width":1600},{"name":"\u0396\u0391\u0393\u039f\u03a1\u0399
\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03bf\u03cd\u03c1\u03bf\u03c5","owner":"AnaDigit","x":20.741238,"y":39.91843,"photo":"vikos_11","type":0,"zoom_level":12,"id":3751,"hlink_GR":"","hlink_EN":"","description":"","height":938,"width":2000}],{});function createAdventureListWidgetContext(){};console.log('sort type: none');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="
Entry Race
Ημιμαραθώνιος Ζαγορίου
Zagori TERA
Zagori Marathon
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["zagorirace"],pc:["zagorirace"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_zagorirace.zoomTo();}; var gsMapManager = this.gsMapManager; gsMapManager.create = function(mapDivId,options,afterLoad){ if(typeof overrideUserOptions != "undefined") { for( var i in options) overrideUserOptions[i] = options[i]; options = overrideUserOptions; } if(typeof afterLoad != "undefined") { afterLoad = afterLoad }else{ if(typeof overrideAfterLoad != "undefined") afterLoad = overrideAfterLoad }; return gsMapManager.create_dummy_function(mapDivId,options,afterLoad); // return new gsMapObject(mapDivId,options,afterLoad); }