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_E4_Sterea = new getAdventureCollection("E4_Sterea",[{"id":16556,"author":"AnaDigit","name_GR":"\u0395\u03c5\u03c1\u03c5\u03c4\u03b1\u03bd\u03af\u03b1: E4 \u039a\u03b1\u03c1\u03c0\u03b5\u03bd\u03ae\u03c3\u03b9-\u039c\u03c5\u03c1\u03af\u03ba\u03b7","description_GR":"\u0395\u03cd\u03ba\u03bf\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"STEREA\/Sterea_Evrytania_E4_Karpenisi_Myriki","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":8447,"name_EN":"Evrytania: E4 Karpenisi-Myriki","description_EN":"An easy to follow trail","ascent_time":155,"descent_time":150,"marker":"E4","level":9,"ascent":386,"descent":217,"maxelev":1117,"minelev":780,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.79067 38.87933,21.82432 38.9162)","views":53,"millestones":"0,21.7906731,38.9162030#1,21.7987297,38.9112371#2,21.8036208,38.9032868#3,21.8063103,38.8948059#4,21.8041107,38.8899838#5,21.7999213,38.8862014#6,21.8040850,38.8799130#7,21.8138018,38.8817516#8,21.8210667,38.8811425#8.4,21.8242316,38.8797210","x":21.8023651,"y":38.8868032,"coor":[[21.7906731,38.916203],[21.7908986,38.9157072],[21.7911226,38.9153195],[21.791701,38.9145195],[21.7918082,38.9139765],[21.7919046,38.9134737],[21.7929603,38.9132144],[21.7932847,38.9130358],[21.7935705,38.9128745],[21.7942223,38.9121796],[21.7945346,38.9119737],[21.7953658,38.911575],[21.7954991,38.9115189],[21.7965183,38.9113174],[21.7971571,38.911289],[21.7987147,38.9112643],[21.7987719,38.9111617],[21.7998779,38.909705],[21.8006124,38.9090701],[21.8009349,38.9087788],[21.801221,38.9084779],[21.8019961,38.90765],[21.8023289,38.9072103],[21.8025464,38.90689],[21.8032182,38.9054025],[21.8034656,38.9041097],[21.8036809,38.902983],[21.8036034,38.9017562],[21.8036097,38.9014094],[21.8039013,38.9001805],[21.803923,38.9001179],[21.804359,38.8994413],[21.8044974,38.8990655],[21.805105,38.8984282],[21.8050543,38.8974542],[21.805193,38.8970693],[21.8051563,38.8967623],[21.8052333,38.8965115],[21.8056164,38.8960502],[21.8056719,38.8957449],[21.8060068,38.8953547],[21.8070736,38.8934106],[21.8069398,38.8932639],[21.8065069,38.8930936],[21.8050122,38.8933358],[21.8044359,38.8929555],[21.8040332,38.8926596],[21.8035742,38.8925879],[21.8035381,38.8924386],[21.8034037,38.8923099],[21.8033904,38.8919943],[21.8035092,38.8918794],[21.8035288,38.8916185],[21.8034498,38.8915629],[21.8036504,38.8914135],[21.803654,38.8912965],[21.803589,38.8912322],[21.8036143,38.8911606],[21.8039641,38.891032],[21.804361,38.8904989],[21.8043517,38.8904266],[21.8042713,38.8904161],[21.8040583,38.8905923],[21.8038377,38.8906422],[21.8035058,38.8905639],[21.8033484,38.8904348],[21.8033857,38.8903454],[21.8037215,38.8902976],[21.8039913,38.8901495],[21.8044373,38.8895182],[21.8044439,38.8893021],[21.8038627,38.8883361],[21.8037497,38.8882619],[21.8036685,38.8882784],[21.8036057,38.8888178],[21.8032506,38.8891175],[21.8028682,38.8891823],[21.8024806,38.8890399],[21.8023572,38.8889295],[21.8023271,38.8887847],[21.8025758,38.8881947],[21.8025935,38.8879969],[21.8025504,38.8878969],[21.8020628,38.8876355],[21.8019016,38.887254],[21.801939,38.8871646],[21.8023387,38.8869109],[21.8023651,38.8868032],[21.8021698,38.8867815],[21.801718,38.8868541],[21.8014667,38.8867773],[21.8007456,38.8858627],[21.8005865,38.8857876],[21.8002853,38.885836],[21.8001359,38.8861936],[21.799928,38.8862077],[21.7994799,38.8857848],[21.7994158,38.8856214],[21.7994087,38.8855942],[21.7996923,38.8854059],[21.7997911,38.8851915],[21.8001462,38.8848918],[21.8002828,38.8843763],[21.800736,38.8842587],[21.8006475,38.8839958],[21.8005187,38.883687],[21.801335,38.8835717],[21.8015103,38.883494],[21.8016591,38.8831544],[21.8016483,38.8827577],[21.8017676,38.8826248],[21.8029199,38.8822681],[21.8034391,38.8822508],[21.8036262,38.8821643],[21.8037492,38.8819143],[21.803986,38.8817115],[21.8040129,38.8815859],[21.8038917,38.8814034],[21.8035775,38.8811272],[21.8034914,38.8809273],[21.8038526,38.8804296],[21.8043102,38.87942],[21.804714,38.8790312],[21.8049234,38.8789721],[21.805061,38.8789927],[21.8061065,38.8794808],[21.8064914,38.8793349],[21.8068137,38.87935],[21.8072205,38.8792405],[21.8075433,38.8793547],[21.8081429,38.879456],[21.8083371,38.8795137],[21.8088214,38.8798832],[21.8095316,38.8802615],[21.8105173,38.8808206],[21.8113865,38.8810441],[21.8117541,38.881087],[21.8133623,38.8816127],[21.8136919,38.8817631],[21.8140505,38.8817247],[21.8143081,38.8815944],[21.8148631,38.8811633],[21.815037,38.8811305],[21.8150814,38.8811854],[21.815011,38.881977],[21.8151443,38.8821416],[21.8153265,38.8818387],[21.8157369,38.8816121],[21.8161654,38.8815481],[21.816522,38.8811943],[21.8166356,38.8812505],[21.8166668,38.8817377],[21.8167466,38.8817662],[21.8171658,38.8812514],[21.8174467,38.8811125],[21.8175495,38.881191],[21.8176529,38.8815804],[21.8181338,38.8813101],[21.8190009,38.8812272],[21.8195643,38.8812737],[21.8200377,38.8812465],[21.8210203,38.8815352],[21.8211146,38.8814649],[21.8210379,38.8809589],[21.821146,38.8808167],[21.8213382,38.8807843],[21.8218284,38.8806583],[21.8222837,38.8804685],[21.8230995,38.8805558],[21.823305,38.8806227],[21.8239177,38.8805621],[21.8240187,38.8802756],[21.8243023,38.8800467],[21.8242316,38.879721]]},{"id":16557,"author":"AnaDigit","name_GR":"\u0395\u03c5\u03c1\u03c5\u03c4\u03b1\u03bd\u03af\u03b1: E4 \u039a\u03c1\u03af\u03ba\u03b5\u03bb\u03bb\u03bf-\u0386\u03bc\u03c0\u03bb\u03b9\u03b1\u03bd\u03b7","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b9\u03ba\u03c1\u03bf\u03cd \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03bf\u03c2","path":"STEREA\/Sterea_Evrytania_E4_Krikelo_Abliani","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":10876,"name_EN":"Evrytania: E4 Krikelo-Abliani","description_EN":"E4 Krikelo-Abliani","ascent_time":200,"descent_time":200,"marker":"E4","level":9,"ascent":889,"descent":799,"maxelev":1587,"minelev":837,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.85074 38.7536,21.9078 38.79586)","views":32,"millestones":"0,21.8507570,38.7952868#1,21.8569254,38.7921252#2,21.8622428,38.7903021#3,21.8637186,38.7843219#4,21.8663684,38.7790226#5,21.8733634,38.7754484#6,21.8817544,38.7739175#7,21.8896541,38.7715790#8,21.8958071,38.7699315#9,21.9014501,38.7640176#10,21.9053318,38.7583266#10.9,21.9076944,38.7536025","x":21.868093,"y":38.7768496,"coor":[[21.850757,38.7952868],[21.8509032,38.7953166],[21.8512918,38.7954138],[21.8514798,38.7956695],[21.8522146,38.7958227],[21.8524031,38.795682],[21.8525,38.7955216],[21.8526044,38.7954965],[21.8529469,38.7955929],[21.8531789,38.7955341],[21.8532817,38.795563],[21.853398,38.7959075],[21.8536911,38.7957327],[21.8537765,38.7955721],[21.8536519,38.7951193],[21.8538243,38.794744],[21.8537913,38.7943109],[21.8535709,38.7939825],[21.8536529,38.7935515],[21.8538651,38.7933843],[21.8545316,38.7931172],[21.8547073,38.7933276],[21.8550485,38.7934691],[21.855554,38.7931179],[21.8562285,38.792896],[21.8566864,38.7925981],[21.8567964,38.7923839],[21.8567612,38.7920228],[21.8568239,38.7920059],[21.8570575,38.7922805],[21.857217,38.7923375],[21.8575837,38.7923443],[21.8577344,38.792311],[21.8573737,38.7920521],[21.857453,38.7917111],[21.8575267,38.7915593],[21.8582908,38.7910327],[21.8583497,38.7906013],[21.8585512,38.7906005],[21.8586623,38.7903502],[21.8588382,38.7902453],[21.8589971,38.7903203],[21.8591194,38.7904667],[21.8592796,38.7908841],[21.85937,38.7909399],[21.859514,38.7907443],[21.8598766,38.7905527],[21.8599492,38.7904369],[21.860115,38.7906652],[21.8602103,38.7905588],[21.8602783,38.7905961],[21.8603262,38.7907727],[21.8608663,38.7904222],[21.8609814,38.7904243],[21.861182,38.7906442],[21.8612182,38.7905908],[21.8613206,38.7906287],[21.8613645,38.7907016],[21.8612575,38.7908168],[21.8614795,38.7910911],[21.8614156,38.7909188],[21.8615775,38.7908947],[21.8615914,38.7908139],[21.8617886,38.7907634],[21.8618791,38.7908191],[21.8619869,38.7906769],[21.8619655,38.7906225],[21.8621918,38.7905996],[21.8621161,38.790436],[21.8618994,38.790369],[21.8619957,38.7902266],[21.8627487,38.7904566],[21.8630714,38.7904445],[21.8632015,38.7903297],[21.8634099,38.7902885],[21.8637006,38.7898073],[21.86366,38.7896263],[21.8633523,38.7893999],[21.8631955,38.7892529],[21.8626724,38.7890361],[21.8621309,38.7886658],[21.8619428,38.78841],[21.8619244,38.7882565],[21.8620175,38.7882222],[21.8624419,38.788275],[21.8624462,38.7881309],[21.862211,38.7879104],[21.8622022,38.7878201],[21.8624591,38.7876987],[21.8619673,38.7872031],[21.8620308,38.7870061],[21.8619396,38.7865899],[21.8620627,38.7863219],[21.862145,38.7858819],[21.8622873,38.7857403],[21.8623759,38.7854716],[21.8627324,38.7850997],[21.8630907,38.7850522],[21.8636074,38.7847102],[21.8636749,38.7843781],[21.8639262,38.7840583],[21.8640325,38.7835827],[21.8644448,38.7832659],[21.8644607,38.783122],[21.8637904,38.7828214],[21.8637361,38.7827123],[21.8637354,38.7823519],[21.863946,38.7818512],[21.864201,38.7817928],[21.8641703,38.7816661],[21.864368,38.7815976],[21.8643881,38.7814313],[21.8646308,38.7813997],[21.8648095,38.7811957],[21.8652065,38.7813922],[21.8653221,38.7813763],[21.865465,38.7812167],[21.8653115,38.7809616],[21.8653757,38.7807375],[21.8652917,38.7804657],[21.8648811,38.7799536],[21.8648645,38.779737],[21.8650665,38.7799119],[21.8650834,38.779732],[21.865314,38.7797182],[21.8655075,38.7797938],[21.8655326,38.7797222],[21.8653443,38.7794755],[21.865519,38.7794066],[21.8657609,38.779402],[21.8658551,38.7793316],[21.865881,38.779233],[21.8657577,38.7791226],[21.8659664,38.7790724],[21.8661604,38.77913],[21.8661855,38.7790584],[21.8663883,38.7792062],[21.8663707,38.7790257],[21.8661826,38.77877],[21.866242,38.778708],[21.8659298,38.7783689],[21.8659547,38.7783063],[21.8661744,38.7782743],[21.8666929,38.7774818],[21.8668989,38.7775216],[21.8670432,38.777317],[21.8670967,38.7770657],[21.8674771,38.7774331],[21.8676711,38.7774907],[21.8677639,38.7774653],[21.8678148,38.7773041],[21.8677618,38.7771499],[21.8678777,38.777125],[21.868093,38.7768496],[21.8680524,38.7766687],[21.8681682,38.7766438],[21.8681586,38.7765805],[21.868428,38.7764232],[21.8687119,38.7761671],[21.8690225,38.7761728],[21.8695319,38.776074],[21.8698468,38.7759355],[21.8702626,38.7758891],[21.8703924,38.7757833],[21.8716674,38.7758696],[21.8718975,38.7758378],[21.8720206,38.7755697],[21.87229,38.7754124],[21.8731523,38.7754461],[21.8733495,38.7753957],[21.8733805,38.7755134],[21.8734937,38.7755785],[21.8742947,38.7757372],[21.8748509,38.7759996],[21.8755123,38.7762099],[21.876236,38.7762591],[21.876767,38.7765931],[21.8771127,38.7765814],[21.8774669,38.7762815],[21.8778816,38.7757619],[21.878331,38.7753556],[21.8794947,38.7745388],[21.8799278,38.7735194],[21.8801292,38.7733249],[21.8806632,38.7731724],[21.8808582,38.7731939],[21.8811065,38.7733606],[21.8814164,38.7737807],[21.8827019,38.7742906],[21.8828293,38.7742659],[21.8830052,38.7737645],[21.8832575,38.7734086],[21.8833816,38.7731045],[21.8835586,38.7729546],[21.8838246,38.7729143],[21.8844565,38.7729528],[21.8854495,38.7728446],[21.8860576,38.7729097],[21.8860605,38.7724232],[21.8861437,38.7723346],[21.8862447,38.7723499],[21.8863071,38.7722565],[21.88663,38.7722353],[21.886546,38.7719634],[21.886619,38.7718296],[21.8866039,38.771559],[21.8866646,38.771452],[21.886804,38.7714095],[21.8872762,38.7714],[21.8875716,38.7715315],[21.8876395,38.7715687],[21.887677,38.7718577],[21.8878497,38.771978],[21.8882787,38.7719092],[21.8888859,38.7716138],[21.8895534,38.7716168],[21.8897396,38.7715481],[21.8897762,38.7714767],[21.8897136,38.7712593],[21.8895116,38.7708007],[21.8892622,38.7702826],[21.8893627,38.769996],[21.8895995,38.7700904],[21.8899556,38.7701149],[21.8901991,38.7704436],[21.8903925,38.7705192],[21.8904214,38.7703215],[21.8905228,38.7703954],[21.8905767,38.7701261],[21.8906819,38.7700739],[21.89079,38.7703102],[21.8908478,38.7703022],[21.8909232,38.7700873],[21.8910024,38.7701338],[21.8910609,38.7700988],[21.8911572,38.7699564],[21.8912126,38.7700295],[21.8912942,38.7699949],[21.8916089,38.7702529],[21.8916911,38.7698038],[21.8921774,38.769317],[21.8927659,38.7692646],[21.8928365,38.7692118],[21.8934658,38.7697277],[21.8935819,38.7696938],[21.8936724,38.7697495],[21.893835,38.7696983],[21.8948618,38.7700052],[21.8961309,38.7699019],[21.896204,38.7693716],[21.8966507,38.7690553],[21.8972212,38.7688313],[21.8974631,38.7688266],[21.8974617,38.7688716],[21.8978814,38.76869],[21.8980388,38.7688189],[21.8981031,38.7685858],[21.8982553,38.7684985],[21.8981924,38.7682901],[21.8984325,38.767952],[21.8986057,38.7675407],[21.899021,38.7671156],[21.8989703,38.7668804],[21.8985584,38.766801],[21.898424,38.7666724],[21.8987992,38.7664359],[21.9002414,38.7659212],[21.9004185,38.7657712],[21.9010896,38.7648642],[21.9013569,38.7643824],[21.9015136,38.7637455],[21.9017927,38.7632549],[21.9020401,38.7630612],[21.9025696,38.7622687],[21.9026748,38.7618201],[21.9025881,38.7616383],[21.9020172,38.7614839],[21.9018818,38.7613914],[21.9018839,38.7613194],[21.9026688,38.7611668],[21.9029303,38.7611534],[21.9033245,38.7610524],[21.9043536,38.7600977],[21.9043672,38.7600259],[21.9042883,38.7599704],[21.9039558,38.7599284],[21.9035251,38.7597044],[21.903724,38.7595909],[21.9049719,38.7592213],[21.9047912,38.7587135],[21.9052418,38.7586495],[21.905358,38.758219],[21.9058336,38.7579663],[21.9059026,38.7577693],[21.9060857,38.7574121],[21.9061221,38.7569533],[21.9064488,38.7566528],[21.9067921,38.7563255],[21.9068946,38.7557687],[21.9071323,38.7555117],[21.9075615,38.7553932],[21.907755,38.7550723],[21.9076777,38.7546429],[21.907494,38.7541576],[21.9075407,38.753744],[21.9076944,38.7536025]]},{"id":16559,"author":"AnaDigit","name_GR":"\u0395\u03c5\u03c1\u03c5\u03c4\u03b1\u03bd\u03af\u03b1: E4 \u039c\u03c5\u03c1\u03af\u03ba\u03b7-\u039a\u03c1\u03af\u03ba\u03b5\u03bb\u03bb\u03bf","description_GR":"\u03a0\u03b5\u03c1\u03af\u03c0\u03bb\u03bf\u03ba\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03c3\u03b1\u03c6\u03ae\u03c2 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"STEREA\/Sterea_Evrytania_E4_Myriki_Krikelo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":13533,"name_EN":"Evrytania: E4 Myriki-Krikelo","description_EN":"A difficult to follow trail","ascent_time":310,"descent_time":305,"marker":"E4","level":9,"ascent":662,"descent":654,"maxelev":1476,"minelev":919,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.82039 38.79529,21.85076 38.87965)","views":26,"millestones":"0,21.8242316,38.8797210#1,21.8267177,38.8731580#2,21.8252335,38.8652527#3,21.8238475,38.8575633#4,21.8238451,38.8519962#5,21.8331452,38.8487486#6,21.8351710,38.8444663#7,21.8391048,38.8395415#8,21.8377854,38.8310823#9,21.8393431,38.8232301#10,21.8365280,38.8151961#11,21.8357803,38.8067843#12,21.8436104,38.8019670#13,21.8491290,38.7984375#13.5,21.8507570,38.7952868","x":21.8352818,"y":38.8458366,"coor":[[21.8242316,38.879721],[21.823813,38.8793077],[21.8237392,38.8790946],[21.8235206,38.8790815],[21.8233061,38.8785549],[21.8236539,38.8781109],[21.8238531,38.8780065],[21.8242445,38.8776444],[21.8244897,38.8775408],[21.8239669,38.8772968],[21.8239162,38.8766922],[21.8240638,38.8763886],[21.8245318,38.8761631],[21.8241571,38.8759759],[21.8241061,38.8757587],[21.8245236,38.8749195],[21.8248308,38.874673],[21.8248817,38.8745027],[21.8250712,38.8743351],[21.825139,38.874003],[21.8252942,38.8738257],[21.825935,38.8736033],[21.8263579,38.8737193],[21.8265609,38.8734888],[21.8267187,38.873226],[21.8267088,38.8727933],[21.8264219,38.8727519],[21.8262974,38.8726775],[21.8260735,38.8722724],[21.826042,38.8721727],[21.825862,38.8720252],[21.825788,38.8718076],[21.8256587,38.8717601],[21.8255591,38.8716231],[21.8252627,38.8715185],[21.8250416,38.871208],[21.8252363,38.8704908],[21.8252061,38.8703371],[21.8253797,38.869178],[21.8251927,38.8688862],[21.8250501,38.8682709],[21.8251817,38.8681111],[21.8251181,38.8679298],[21.8251582,38.8677503],[21.825348,38.8675736],[21.8252608,38.8674098],[21.8251292,38.8673173],[21.8251106,38.8667943],[21.8252889,38.8658606],[21.8249217,38.8654303],[21.8251649,38.8653898],[21.8252631,38.8651934],[21.8251774,38.8650882],[21.8252366,38.8646568],[21.8251135,38.8641589],[21.824862,38.8637128],[21.8248714,38.8634066],[21.8247233,38.8629713],[21.8251589,38.8623983],[21.8252943,38.8621125],[21.8254945,38.8619721],[21.8254852,38.8618998],[21.8253711,38.8618616],[21.8253459,38.8615548],[21.8251644,38.8614613],[21.8250544,38.8612881],[21.8249074,38.8608168],[21.825276,38.8600669],[21.8252412,38.8596968],[21.8249873,38.8593317],[21.8249505,38.8590246],[21.8247224,38.8589483],[21.8244526,38.8583486],[21.8243001,38.8584359],[21.824004,38.8583222],[21.8239831,38.8582498],[21.8241487,38.8581087],[21.8240459,38.8580797],[21.8240794,38.857738],[21.8238288,38.8576432],[21.8238948,38.8573651],[21.823834,38.8570937],[21.823625,38.8567654],[21.8235324,38.8567817],[21.8233396,38.856679],[21.8232214,38.8563975],[21.8230531,38.8562502],[21.8229143,38.8558872],[21.8229155,38.8554727],[21.8226671,38.8549275],[21.8221022,38.8541781],[21.8217784,38.8542172],[21.8217071,38.8542879],[21.8216517,38.8542148],[21.821544,38.8535911],[21.8213121,38.8532624],[21.8212279,38.8529995],[21.821314,38.8524425],[21.82125,38.8516484],[21.8217729,38.8518834],[21.8227422,38.8518384],[21.8241192,38.8520263],[21.8245403,38.8521963],[21.8253009,38.8521925],[21.8256212,38.8522705],[21.8263162,38.8519501],[21.8269732,38.8511874],[21.827243,38.8510303],[21.8280469,38.8507389],[21.8290786,38.8501544],[21.8295299,38.8500907],[21.8296818,38.8500214],[21.8301238,38.8495071],[21.8305723,38.8495334],[21.8306203,38.8494712],[21.8305709,38.8492],[21.8306428,38.8491113],[21.8312147,38.8488696],[21.8316605,38.8486076],[21.8319945,38.8486138],[21.8328642,38.8488101],[21.8336064,38.8486527],[21.8335529,38.8485166],[21.833203,38.8482758],[21.8331602,38.8481669],[21.8331915,38.8478972],[21.8332869,38.8477908],[21.8339783,38.8474072],[21.834778,38.8472508],[21.8348959,38.8471629],[21.8344188,38.8469378],[21.8335941,38.8467784],[21.8332752,38.8466553],[21.8327077,38.8463745],[21.8325972,38.8462193],[21.8326051,38.8461248],[21.833987,38.8463622],[21.8343853,38.8465227],[21.8346749,38.8464741],[21.8349147,38.8461631],[21.8351938,38.8460782],[21.8352552,38.8459532],[21.8352818,38.8458366],[21.8350117,38.8452459],[21.8349763,38.8448939],[21.8349965,38.8446059],[21.8351854,38.8444562],[21.8354459,38.8446052],[21.8357864,38.8451521],[21.8361106,38.8454825],[21.8363913,38.845722],[21.8365528,38.845716],[21.836685,38.8455382],[21.8366163,38.8447621],[21.8365354,38.8443912],[21.8362238,38.8436465],[21.8362051,38.8431236],[21.8363509,38.842874],[21.8370749,38.8425541],[21.8373188,38.8417296],[21.8374273,38.8415695],[21.8378385,38.8413068],[21.838461,38.8411877],[21.8386895,38.8404891],[21.839094,38.8396857],[21.8391347,38.8391008],[21.8389482,38.8384125],[21.838561,38.8378828],[21.8387594,38.8374179],[21.8387421,38.8372284],[21.8382272,38.8367323],[21.8380067,38.8364039],[21.8382509,38.8359489],[21.8382574,38.8353543],[21.837705,38.8338123],[21.8378462,38.8321931],[21.8374521,38.8315101],[21.8380995,38.8306751],[21.8383946,38.8304373],[21.8389201,38.8302037],[21.8390757,38.8300084],[21.8392136,38.8284972],[21.839762,38.8282641],[21.8399873,38.828052],[21.8407056,38.8263894],[21.8407954,38.8260847],[21.84078,38.8258322],[21.84056,38.8247288],[21.8398675,38.8240132],[21.8393054,38.8231739],[21.839199,38.8228836],[21.8391625,38.8225676],[21.8395432,38.8214033],[21.8394478,38.8211312],[21.8392356,38.8209111],[21.8386796,38.8198736],[21.8388308,38.8194439],[21.8387798,38.8192267],[21.8385769,38.8190788],[21.8382681,38.81901],[21.8379846,38.8188606],[21.8372566,38.8181804],[21.8370764,38.817285],[21.8368722,38.8169794],[21.8364931,38.8165669],[21.8363862,38.8162946],[21.8364165,38.8156735],[21.8365362,38.8151441],[21.8368212,38.8144061],[21.8367493,38.813738],[21.8365558,38.8132839],[21.8365543,38.8129505],[21.8364776,38.8128229],[21.8358242,38.8123423],[21.835652,38.8115642],[21.8352906,38.8106745],[21.8352758,38.8104039],[21.8355782,38.809923],[21.8358874,38.8093971],[21.8362933,38.8081612],[21.8362436,38.8075206],[21.8360463,38.8071925],[21.8358002,38.8069177],[21.835762,38.8066557],[21.8358749,38.8063514],[21.8362266,38.8059795],[21.8366271,38.8056806],[21.8367317,38.805268],[21.8369251,38.8049653],[21.8376633,38.8049249],[21.8378491,38.8048743],[21.8379444,38.8047679],[21.838037,38.8043732],[21.8385313,38.8044003],[21.8387749,38.8043418],[21.839206,38.8037911],[21.8394954,38.8037424],[21.8402733,38.80391],[21.8405846,38.8038977],[21.8410389,38.8037259],[21.8416762,38.8035935],[21.8419233,38.8034179],[21.8419852,38.8032749],[21.8420269,38.8029062],[21.8421343,38.802782],[21.8426713,38.8025397],[21.8431107,38.8020973],[21.8435745,38.8019887],[21.8437504,38.8018838],[21.8438361,38.8017142],[21.8435965,38.8012593],[21.8436118,38.8011334],[21.8438288,38.8011915],[21.8441501,38.8016119],[21.8443101,38.8016509],[21.8444389,38.8015812],[21.8444777,38.8014377],[21.8443215,38.8012727],[21.8443478,38.801165],[21.8455051,38.8009701],[21.8458675,38.8007876],[21.8471647,38.8009197],[21.8477099,38.8007855],[21.8483683,38.8007166],[21.8486535,38.8005912],[21.8492247,38.8005251],[21.8496965,38.8005338],[21.8498603,38.8004467],[21.850006,38.8001971],[21.8499505,38.7997456],[21.8497676,38.7993187],[21.8494326,38.7989702],[21.8491585,38.7985146],[21.8490622,38.7982696],[21.8490835,38.7980177],[21.8493196,38.7978238],[21.8495078,38.7973812],[21.8497688,38.7971248],[21.8497523,38.7969082],[21.8498818,38.7964285],[21.8499507,38.7960514],[21.8502104,38.7955155],[21.8503504,38.7954055],[21.850757,38.7952868]]},{"id":16561,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: E4 \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-51","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae \u03c3\u03c4\u03bf 51","path":"STEREA\/Sterea_Giona_E4_Kaloskopi_51","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":13723,"name_EN":"Giona: E4 Kaloskopi-51 Pass","description_EN":"From Kaloskopi to 51 Pass","ascent_time":250,"descent_time":255,"marker":"E4","level":9,"ascent":412,"descent":595,"maxelev":1061,"minelev":772,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.32067 38.63221,22.38806 38.68891)","views":43,"millestones":"0,22.3228774,38.6888788#1,22.3227255,38.6818391#2,22.3249319,38.6790369#3,22.3335669,38.6787369#4,22.3436177,38.6778911#5,22.3535552,38.6767289#6,22.3629390,38.6742218#7,22.3729454,38.6716164#8,22.3775590,38.6648259#9,22.3832471,38.6606820#10,22.3824535,38.6564556#11,22.3848327,38.6489667#12,22.3847324,38.6416863#13,22.3797610,38.6344830#13.7,22.3759057,38.6320469","x":22.3606844,"y":38.6747361,"coor":[[22.3228774,38.6888788],[22.323296,38.6886775],[22.3234195,38.6888055],[22.3233436,38.6889485],[22.3234363,38.6889183],[22.3234957,38.6887435],[22.3235088,38.6886716],[22.3238794,38.6885597],[22.3238693,38.6884965],[22.3239851,38.6884621],[22.3240651,38.6883281],[22.3236934,38.6879984],[22.3235007,38.6877433],[22.323308,38.6876234],[22.3231997,38.6875408],[22.3232844,38.6874519],[22.3233057,38.6872765],[22.3232967,38.6871682],[22.3235423,38.6869915],[22.3236027,38.6868662],[22.3233792,38.6865927],[22.3235238,38.6863064],[22.3231545,38.685382],[22.3228409,38.6851793],[22.3228172,38.6847194],[22.3225972,38.6842927],[22.3224284,38.6841371],[22.3224113,38.6838845],[22.3222122,38.6835483],[22.3224206,38.6829926],[22.3222328,38.6826655],[22.3229391,38.6814682],[22.3229767,38.6813335],[22.3228973,38.6812243],[22.3226819,38.681095],[22.3224473,38.6808033],[22.3222988,38.6807651],[22.3218562,38.6810111],[22.3216556,38.6812335],[22.3214945,38.6812402],[22.3215539,38.6806643],[22.3214526,38.6805728],[22.321178,38.6805148],[22.3212324,38.6801551],[22.3211426,38.6800637],[22.320891,38.680006],[22.3208808,38.6799518],[22.3219311,38.6792821],[22.3219591,38.6790662],[22.3217696,38.6788112],[22.3217836,38.6787033],[22.3218992,38.6786779],[22.322275,38.6788274],[22.3227953,38.6786997],[22.3232295,38.6788141],[22.3235636,38.6787829],[22.3238887,38.6786433],[22.3240965,38.6781147],[22.324244,38.6781979],[22.3244731,38.6787238],[22.3250955,38.6791472],[22.3253243,38.6791956],[22.3257622,38.6791478],[22.3257909,38.6791482],[22.3266467,38.6791784],[22.3267743,38.6791262],[22.3269292,38.6788941],[22.327023,38.6783188],[22.3273826,38.6781797],[22.3276052,38.6780027],[22.3279884,38.6773414],[22.3282065,38.6773535],[22.3284151,38.6772844],[22.3289741,38.6779592],[22.3293717,38.6781631],[22.3297965,38.6781872],[22.3303211,38.6778703],[22.3305752,38.6778199],[22.331006,38.6780783],[22.3313081,38.6784341],[22.331739,38.6786925],[22.3320254,38.6787327],[22.3327657,38.678536],[22.3332356,38.6787049],[22.33366,38.6787469],[22.3338365,38.6785692],[22.3343129,38.6783508],[22.334652,38.6785989],[22.3349376,38.678675],[22.3355718,38.678594],[22.3363164,38.6787037],[22.3370406,38.678705],[22.3372036,38.6786172],[22.3373369,38.6783217],[22.3378003,38.6781661],[22.3381764,38.677811],[22.3388326,38.6777663],[22.3398978,38.677439],[22.3401157,38.6774601],[22.3406508,38.6776839],[22.3409552,38.6779406],[22.341444,38.6781818],[22.3422106,38.6783368],[22.3424868,38.6783227],[22.3436349,38.6778885],[22.3438558,38.6777339],[22.3443309,38.6775694],[22.344653,38.6775559],[22.3465108,38.678249],[22.3475065,38.6784433],[22.3478278,38.6784659],[22.3483006,38.6784005],[22.3494163,38.6778756],[22.3508183,38.6773908],[22.3515843,38.6765725],[22.3518064,38.6764135],[22.3522229,38.6762932],[22.3527532,38.6762286],[22.3529703,38.6762857],[22.3536936,38.6768275],[22.3539903,38.6769218],[22.3550586,38.6769549],[22.3553241,38.6769045],[22.3555449,38.6767995],[22.3557574,38.6765592],[22.355983,38.6757424],[22.3562196,38.6754483],[22.3569013,38.6752957],[22.3576142,38.6752877],[22.3587456,38.6755739],[22.3590678,38.6755604],[22.3603224,38.6749833],[22.3606844,38.6747361],[22.3610197,38.6746507],[22.3616292,38.6741366],[22.3619766,38.6740243],[22.3624013,38.6740483],[22.3628688,38.674217],[22.3639245,38.6742949],[22.3646908,38.6743551],[22.3647996,38.6742305],[22.3648429,38.6738436],[22.3649375,38.6737278],[22.3657461,38.6735499],[22.3662115,38.6733041],[22.3663603,38.6733332],[22.3672149,38.6730478],[22.3676634,38.673036],[22.3680802,38.6729067],[22.3685966,38.6729409],[22.3688486,38.6724758],[22.3690359,38.6723253],[22.3707488,38.6718085],[22.3715569,38.6716575],[22.3728102,38.6716389],[22.373491,38.6715223],[22.3738819,38.6715187],[22.3742067,38.671388],[22.3746568,38.6713042],[22.3748801,38.671091],[22.3751802,38.6705275],[22.3760917,38.6698643],[22.3766153,38.6695833],[22.3778689,38.6685283],[22.3781306,38.6674867],[22.3780922,38.6666391],[22.3779666,38.6660967],[22.3774759,38.6649185],[22.3775469,38.6648294],[22.3781599,38.6646576],[22.3785085,38.6644913],[22.3785212,38.6644374],[22.3769282,38.6642351],[22.3768512,38.6640808],[22.3776854,38.663786],[22.3788126,38.6637476],[22.3795276,38.6636403],[22.3800715,38.6634767],[22.3805942,38.6632316],[22.3815828,38.6628533],[22.3819866,38.6627868],[22.3823375,38.6625123],[22.3825393,38.6622267],[22.38289,38.660943],[22.3840465,38.660112],[22.3842519,38.6596642],[22.3850078,38.6597828],[22.3857579,38.6596445],[22.3857373,38.6595361],[22.3855894,38.659471],[22.3851405,38.6595008],[22.3848208,38.6594063],[22.3845258,38.65924],[22.3838835,38.6586724],[22.3830962,38.6584183],[22.3825355,38.6583114],[22.3823398,38.6583267],[22.3818582,38.6587886],[22.3816498,38.6588578],[22.3820878,38.6582872],[22.382225,38.6572979],[22.3825005,38.6562924],[22.3824372,38.6560392],[22.3820984,38.6557732],[22.3814971,38.6550801],[22.3812569,38.6545181],[22.3811973,38.6541027],[22.3813763,38.6538079],[22.3817962,38.6535343],[22.3823831,38.6529838],[22.3826762,38.6522129],[22.3829039,38.6519412],[22.3834319,38.6518719],[22.383731,38.651858],[22.3839166,38.6517795],[22.3841424,38.6514492],[22.384374,38.6508576],[22.3844928,38.6496608],[22.3848786,38.6488551],[22.3855111,38.6483232],[22.3865748,38.6470042],[22.3867733,38.6468628],[22.3873177,38.6466721],[22.3875174,38.6464766],[22.3877572,38.6455157],[22.387696,38.6446588],[22.387643,38.6444598],[22.3872642,38.643932],[22.3864544,38.6434072],[22.386155,38.6429255],[22.3856261,38.6424316],[22.3849371,38.6418994],[22.3844767,38.6414245],[22.3837866,38.6409464],[22.3835869,38.6406778],[22.3833616,38.6404764],[22.3825095,38.6400501],[22.3823425,38.6398135],[22.382193,38.6393068],[22.3821771,38.6389912],[22.3822628,38.6387581],[22.3825689,38.638429],[22.382575,38.6381587],[22.3823751,38.6378496],[22.382004,38.637493],[22.3810631,38.6369303],[22.3806598,38.6364742],[22.3804744,38.6350118],[22.3801948,38.6346745],[22.3799568,38.6345271],[22.3796596,38.6344599],[22.3789242,38.6344677],[22.3781104,38.6343843],[22.3778565,38.6344349],[22.377124,38.6348212],[22.3769216,38.6347869],[22.3766531,38.6348147],[22.3764825,38.6347402],[22.3763709,38.6345945],[22.3763754,38.6343963],[22.3768275,38.6331951],[22.3766626,38.6328684],[22.3760066,38.6324088],[22.3759057,38.6320469]]},{"id":16562,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: E4 \u03a3\u03c4\u03c1\u03cc\u03bc\u03b7-\u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u03a3\u03c4\u03c1\u03cc\u03bc\u03b7 \u03c3\u03c4\u03b7\u03bd \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae","path":"STEREA\/Sterea_Giona_E4_Stromi_Kaloskopi","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":13852,"name_EN":"Giona: E4 Stromi-Kaloskopi","description_EN":"From Stromi \u03c4\u03bf Kaloskopi","ascent_time":260,"descent_time":250,"marker":"E4","level":9,"ascent":656,"descent":425,"maxelev":1360,"minelev":825,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25697 38.6695,22.32333 38.70948)","views":31,"millestones":"0,22.2574299,38.7094892#1,22.2608370,38.7043024#2,22.2638907,38.6971967#3,22.2647250,38.6892088#4,22.2649539,38.6818219#5,22.2735655,38.6770443#6,22.2783742,38.6719676#7,22.2850716,38.6714113#8,22.2901483,38.6716119#9,22.2996228,38.6745730#10,22.3070412,38.6794860#11,22.3136895,38.6842791#12,22.3184322,38.6910465#13,22.3210662,38.6934986#13.9,22.3228792,38.6888788","x":22.2859288,"y":38.6711952,"coor":[[22.2574299,38.7094892],[22.2577429,38.7092415],[22.2577813,38.7090799],[22.2572475,38.7081528],[22.2573318,38.7075233],[22.2571223,38.7071508],[22.2570378,38.7068431],[22.2571103,38.7067001],[22.2574821,38.7065434],[22.2576921,38.7063573],[22.2578004,38.7061607],[22.257926,38.7052525],[22.2580218,38.7043843],[22.2579199,38.7038422],[22.2580523,38.7036008],[22.2590943,38.70331],[22.2599973,38.7040083],[22.2610201,38.7043749],[22.2618023,38.7043685],[22.2628658,38.7036635],[22.2635136,38.7031189],[22.2637509,38.7028161],[22.2640563,38.7020727],[22.2639959,38.7012428],[22.2637624,38.700915],[22.2633683,38.7005667],[22.2632662,38.7005111],[22.2631586,38.7002031],[22.2631572,38.6997436],[22.2632772,38.6990605],[22.2632107,38.6984828],[22.2632504,38.6982672],[22.2636504,38.6978946],[22.2638157,38.6972393],[22.2644102,38.6969057],[22.2646821,38.6965944],[22.2649956,38.6955177],[22.2649351,38.6951654],[22.2646879,38.6949275],[22.2647617,38.6947303],[22.2652744,38.6944496],[22.2656496,38.6941488],[22.2655804,38.6936792],[22.2650451,38.6925178],[22.2648966,38.692002],[22.2647017,38.6917423],[22.2647271,38.691166],[22.2646057,38.6904794],[22.2646658,38.6898946],[22.2647285,38.6896792],[22.2649521,38.6894663],[22.2649777,38.6893585],[22.2641267,38.6888458],[22.263489,38.688593],[22.2627366,38.687852],[22.2626265,38.6876521],[22.2626169,38.6866247],[22.2625101,38.6858122],[22.2626955,38.6852743],[22.262642,38.6851113],[22.2627179,38.684824],[22.2626776,38.6845892],[22.2628455,38.6843033],[22.2628405,38.6840329],[22.2635973,38.6831611],[22.2636757,38.6827748],[22.2641534,38.6825115],[22.2643611,38.682001],[22.2645611,38.6818147],[22.2646771,38.6817714],[22.2649975,38.6818302],[22.2652625,38.6818071],[22.2661246,38.6813333],[22.2664906,38.6814108],[22.2670572,38.6812751],[22.2677471,38.6812673],[22.2682183,38.6807967],[22.2683924,38.6807272],[22.2687261,38.6807141],[22.2689306,38.6803387],[22.2691886,38.6801262],[22.2698592,38.6799649],[22.2703011,38.6797552],[22.270834,38.6795874],[22.2719872,38.6789556],[22.2725691,38.6781803],[22.2728507,38.6774636],[22.2730764,38.6771605],[22.2732859,38.6770555],[22.2737806,38.6770358],[22.2740148,38.676859],[22.274466,38.6767395],[22.2753713,38.6763744],[22.275478,38.6762408],[22.2755266,38.6760884],[22.2755092,38.6758538],[22.2755803,38.6757648],[22.276263,38.6755766],[22.2764995,38.6753007],[22.2763516,38.6747579],[22.2764412,38.6743808],[22.2763119,38.6740184],[22.2759665,38.6735628],[22.2755121,38.6733398],[22.2755611,38.6732144],[22.2759684,38.6730041],[22.2760631,38.6728884],[22.2760696,38.6726182],[22.2759204,38.6721294],[22.2759818,38.6719681],[22.2760867,38.6719065],[22.276488,38.6719485],[22.2768715,38.6717739],[22.2770558,38.6717586],[22.2776626,38.6718577],[22.2781528,38.6720271],[22.2786618,38.6718904],[22.2792359,38.6719169],[22.2794184,38.6719736],[22.2797571,38.6722309],[22.2801636,38.6720567],[22.2802941,38.672365],[22.2811493,38.6731345],[22.2813876,38.6732641],[22.2817661,38.6732967],[22.2819175,38.6732178],[22.2824125,38.6727025],[22.2825872,38.6721284],[22.2829712,38.6714492],[22.2831468,38.6713166],[22.2835279,38.6712411],[22.2838344,38.6709212],[22.284618,38.670356],[22.2855529,38.6706761],[22.2855397,38.670748],[22.2851541,38.6710126],[22.2850084,38.6713349],[22.2850978,38.6714443],[22.2855089,38.6715585],[22.2857067,38.6719398],[22.2859577,38.6720156],[22.2859288,38.6711952],[22.2861267,38.67109],[22.2868553,38.6709024],[22.2875342,38.6703897],[22.2875023,38.6702811],[22.2871832,38.6701683],[22.2873548,38.6697203],[22.2872778,38.669575],[22.2871754,38.6695284],[22.2867423,38.6690895],[22.2868104,38.6689734],[22.2871968,38.6691593],[22.288041,38.6694239],[22.2883355,38.6696085],[22.2888966,38.670662],[22.2902518,38.671673],[22.2907629,38.6718877],[22.2913383,38.6718601],[22.2921115,38.6722138],[22.2928234,38.6727288],[22.29304,38.672804],[22.2935801,38.6728119],[22.2939192,38.6730512],[22.2944914,38.6731586],[22.2949846,38.6736884],[22.295858,38.6741788],[22.2964317,38.6742232],[22.296642,38.674082],[22.2967412,38.6737771],[22.2971112,38.6736834],[22.2977272,38.6738816],[22.2988291,38.6739517],[22.2992627,38.6740842],[22.2995059,38.6744932],[22.299653,38.6745944],[22.2998594,38.6746155],[22.3005309,38.674409],[22.3010595,38.6744166],[22.3013089,38.6745644],[22.301656,38.674957],[22.3019288,38.6750871],[22.3024004,38.6751795],[22.3024774,38.6753248],[22.3025191,38.6755056],[22.302391,38.6760625],[22.3024332,38.6762253],[22.302603,38.6763359],[22.3029922,38.6764046],[22.3035382,38.6766468],[22.3036617,38.6767747],[22.3037489,38.6774608],[22.3038596,38.6776427],[22.3046005,38.6780003],[22.3055184,38.678757],[22.3063633,38.6790036],[22.3069136,38.6790656],[22.3070958,38.6791403],[22.3070149,38.6796438],[22.3072993,38.679774],[22.3076292,38.6804096],[22.3084211,38.6809527],[22.3083183,38.6814107],[22.3082605,38.6824011],[22.3083016,38.682609],[22.3084021,38.6827366],[22.3086758,38.6828306],[22.3092838,38.6828845],[22.3101138,38.6827883],[22.3108333,38.6825014],[22.3115881,38.6824672],[22.311898,38.6824897],[22.3120908,38.6826006],[22.3124589,38.6830835],[22.3130233,38.6835242],[22.3131344,38.683688],[22.3130821,38.6839576],[22.3131375,38.6840485],[22.3138888,38.6843657],[22.3146482,38.6848272],[22.3149267,38.6852097],[22.3149872,38.685571],[22.3151551,38.6857626],[22.3158333,38.686259],[22.3165301,38.6864492],[22.3168422,38.6868682],[22.3167959,38.6873722],[22.317006,38.6877266],[22.3179548,38.6884521],[22.3182507,38.6885825],[22.3190293,38.6892065],[22.3190132,38.6894045],[22.3185944,38.6896147],[22.3182539,38.6899162],[22.318284,38.6901059],[22.3185586,38.6906505],[22.3182864,38.6914756],[22.3183532,38.6915666],[22.3187862,38.6917351],[22.3191025,38.6919739],[22.319198,38.6923177],[22.3195208,38.6927729],[22.3197314,38.6935058],[22.319681,38.6936943],[22.3193179,38.6939774],[22.3191022,38.6943528],[22.3186919,38.6946893],[22.3184036,38.6952168],[22.3181937,38.6953399],[22.3178997,38.6953762],[22.3182161,38.6954574],[22.3184941,38.6953713],[22.3188541,38.6947277],[22.3192857,38.6944635],[22.3195594,38.694071],[22.3200208,38.6940055],[22.3205006,38.6941386],[22.3207932,38.6939175],[22.3210677,38.6934889],[22.3210817,38.693381],[22.3208009,38.6930976],[22.3206016,38.6927704],[22.3203185,38.6925861],[22.3201775,38.6922236],[22.3202253,38.6921432],[22.3204927,38.6920209],[22.3206235,38.6918336],[22.3206405,38.6915995],[22.3204993,38.6912461],[22.3205839,38.6910671],[22.3208747,38.6909271],[22.3212761,38.6909689],[22.3215714,38.6910317],[22.3215864,38.6910679],[22.3217177,38.6911689],[22.3222601,38.6913254],[22.3221723,38.6907024],[22.3223151,38.6900016],[22.3225852,38.6897622],[22.3226274,38.6894294],[22.3227453,38.6893049],[22.3227378,38.6891336],[22.3228792,38.6888788]]},{"id":16608,"author":"AnaDigit","name_GR":"\u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2: E4 \u0394\u03b9\u03ac\u03c3\u03b5\u03bb\u03bf 51-\u0391\u03b3\u03cc\u03c1\u03b9\u03b1\u03bd\u03b7","description_GR":"\u039a\u03b1\u03ba\u03ae \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7","path":"STEREA\/Sterea_Parnassos_E4_51_Agoriani","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":3,"length":18494,"name_EN":"Parnassos Mt: E4 51 Km Pass-Agoriani","description_EN":"Poor waymarking","ascent_time":685,"descent_time":670,"marker":"E4","level":9,"ascent":893,"descent":970,"maxelev":1512,"minelev":797,"link_logo":"PRS_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnassos","pdf_link":"","bbox":"LINESTRING(22.37586 38.58194,22.49458 38.63205)","views":92,"millestones":"0,22.3759057,38.6320469#1,22.3772011,38.6238587#2,22.3813134,38.6166453#3,22.3870720,38.6112931#4,22.3915731,38.6096102#5,22.3991551,38.6063593#6,22.4073275,38.6025306#7,22.4145609,38.6035866#8,22.4204263,38.6099356#9,22.4289673,38.6135045#10,22.4374954,38.6090524#11,22.4458034,38.6040662#12,22.4529859,38.5974159#13,22.4609280,38.5932733#14,22.4654599,38.5869806#15,22.4739335,38.5818477#16,22.4813632,38.5862985#17,22.4855240,38.5911513#18,22.4919776,38.5968610#18.5,22.4942546,38.5974862","x":22.4233143,"y":38.612407,"coor":[[22.3759057,38.6320469],[22.3759239,38.6317949],[22.3763381,38.6317195],[22.3765588,38.6316144],[22.3770467,38.6308643],[22.3766844,38.6301203],[22.3765152,38.6294692],[22.3765,38.6291266],[22.3762625,38.6289611],[22.3760647,38.6285618],[22.3760577,38.6283635],[22.3759551,38.6278214],[22.3761026,38.6273909],[22.3761107,38.6270306],[22.3762563,38.6266902],[22.3766462,38.626209],[22.3766677,38.6252541],[22.3767694,38.624823],[22.3771678,38.6239635],[22.3776862,38.6223667],[22.3778252,38.6212963],[22.377841,38.6205936],[22.377736,38.6201597],[22.3778396,38.6186202],[22.3780034,38.6179737],[22.3781418,38.6179981],[22.3783825,38.6180195],[22.3787872,38.6178989],[22.3794527,38.6174216],[22.3797303,38.6173353],[22.3798369,38.6171926],[22.38008,38.6171058],[22.3803252,38.616929],[22.3812389,38.6166443],[22.381549,38.6166486],[22.3817196,38.616723],[22.3818582,38.6166889],[22.3823159,38.6162537],[22.3825589,38.6156623],[22.3826989,38.6155651],[22.3832381,38.6155906],[22.3836368,38.6157403],[22.3838626,38.6159146],[22.3842783,38.6158122],[22.3843271,38.6156868],[22.3845473,38.6155997],[22.3846534,38.615475],[22.3846426,38.6149342],[22.3847598,38.6148277],[22.3848694,38.6145498],[22.3853755,38.6140071],[22.3853664,38.6138989],[22.3854599,38.6138281],[22.3854257,38.613305],[22.3856219,38.6132626],[22.3858324,38.6130943],[22.3859055,38.6129061],[22.3861174,38.6126747],[22.3860681,38.6123136],[22.3862312,38.6122077],[22.3863062,38.6119384],[22.3860859,38.6115209],[22.3861334,38.6114494],[22.3864442,38.6114177],[22.3866301,38.6113211],[22.3868702,38.6113695],[22.3869981,38.6112992],[22.3871937,38.6112838],[22.3875029,38.6113241],[22.3875583,38.611415],[22.3878455,38.61141],[22.3879128,38.611483],[22.3879033,38.6113927],[22.3880808,38.6111609],[22.3883543,38.6112548],[22.388477,38.6114187],[22.3885455,38.6114376],[22.3886627,38.6113311],[22.3885416,38.6110951],[22.3881577,38.6108015],[22.388081,38.6106382],[22.3882051,38.6102254],[22.3875458,38.6094054],[22.3872741,38.6092304],[22.3872531,38.6090003],[22.3876423,38.6094112],[22.3882997,38.6097987],[22.3888858,38.6102934],[22.3892385,38.6104424],[22.3902502,38.6106546],[22.3904248,38.6105489],[22.3905342,38.61028],[22.3907898,38.6101484],[22.3909684,38.6098625],[22.3916059,38.6096009],[22.3921107,38.6096259],[22.3922049,38.609519],[22.3926686,38.6093272],[22.3927276,38.6092559],[22.3926948,38.6091833],[22.3930529,38.6090891],[22.393066,38.6090172],[22.393275,38.608912],[22.393682,38.608895],[22.3938805,38.6086364],[22.3940886,38.6085762],[22.3941599,38.6084691],[22.3945889,38.6082857],[22.3949422,38.6078941],[22.3949645,38.6074078],[22.3954233,38.6069185],[22.3957722,38.6062024],[22.3958624,38.605762],[22.3960036,38.6056108],[22.3967122,38.6056205],[22.3973952,38.6058912],[22.3980849,38.6063782],[22.3982327,38.6064433],[22.3983366,38.6064177],[22.3984243,38.6066081],[22.3986638,38.6066835],[22.3986774,38.6065846],[22.3992345,38.6063219],[22.3996929,38.6058505],[22.4004598,38.6054465],[22.4007816,38.6054329],[22.4013046,38.6051517],[22.401501,38.6051003],[22.4017876,38.6051222],[22.4018229,38.6050867],[22.4017207,38.6050312],[22.4017671,38.6050138],[22.4022591,38.6050926],[22.4023545,38.6049317],[22.4025842,38.6049349],[22.4027014,38.6048283],[22.4029072,38.6048672],[22.4034492,38.6047665],[22.4038193,38.6046454],[22.4043655,38.6043554],[22.4049091,38.6041826],[22.4051044,38.6041763],[22.4055502,38.6037498],[22.4056179,38.6038048],[22.4056654,38.6037334],[22.4057909,38.6037711],[22.4059132,38.6036962],[22.4060341,38.6035672],[22.4060389,38.603351],[22.4061531,38.6033796],[22.4062572,38.6033449],[22.4063992,38.6036713],[22.406604,38.6032415],[22.4067439,38.6031443],[22.4068459,38.6032088],[22.4069397,38.6031199],[22.4069783,38.6029312],[22.4071656,38.6027716],[22.4072151,38.6026101],[22.4073784,38.6024951],[22.407551,38.6024795],[22.4077905,38.6020322],[22.407974,38.6018499],[22.4081157,38.6016716],[22.4085455,38.6014522],[22.4086286,38.6013272],[22.4089057,38.6012589],[22.4096032,38.6008718],[22.4100387,38.6009138],[22.4103736,38.6008283],[22.4107868,38.6008339],[22.4113068,38.6006877],[22.4116785,38.6004945],[22.4120337,38.6004183],[22.4121481,38.6004378],[22.4125637,38.6003353],[22.4129575,38.6003947],[22.4131616,38.6005147],[22.4132051,38.6006234],[22.4136067,38.6008496],[22.4138725,38.6012948],[22.4140005,38.6014317],[22.4140155,38.6017923],[22.4142894,38.6023908],[22.4142298,38.6030117],[22.4143378,38.6033196],[22.4145312,38.6034033],[22.4144837,38.6034747],[22.4145619,38.6035749],[22.4145465,38.6037549],[22.4142642,38.6040575],[22.4142915,38.6043822],[22.4142142,38.6045028],[22.4143325,38.6048649],[22.4150403,38.6061],[22.4151276,38.6060967],[22.4152389,38.6062604],[22.4156225,38.606572],[22.4159304,38.6071889],[22.41626,38.6073465],[22.4166383,38.6074778],[22.4168928,38.6073912],[22.4172135,38.6074315],[22.4174902,38.6073812],[22.4181745,38.6075977],[22.4183301,38.6078341],[22.418544,38.6079812],[22.4188322,38.6084537],[22.4192392,38.6087475],[22.4196642,38.6092669],[22.4200021,38.6095688],[22.4200667,38.6097679],[22.4204202,38.6098808],[22.4204396,38.6100433],[22.4208023,38.6102645],[22.4209131,38.6104462],[22.4211058,38.6105659],[22.4212962,38.6107848],[22.4211623,38.6108686],[22.4212945,38.6111227],[22.4216091,38.6114423],[22.4220862,38.611683],[22.4219911,38.6117809],[22.4222275,38.6120003],[22.4225363,38.6120586],[22.4228048,38.6123866],[22.4228066,38.6125173],[22.4233143,38.612407],[22.4235204,38.6124368],[22.4235445,38.612383],[22.423888,38.6124327],[22.4241653,38.6123553],[22.4245995,38.6124603],[22.4249336,38.6124107],[22.4255283,38.6125269],[22.4257124,38.6125113],[22.4259444,38.6124063],[22.4262477,38.6127168],[22.4266009,38.6128477],[22.4268262,38.613049],[22.4270214,38.6130516],[22.4272689,38.6132892],[22.4275335,38.6132657],[22.427659,38.6133035],[22.4279209,38.6132935],[22.4282278,38.6134418],[22.4284816,38.6133911],[22.4286861,38.613493],[22.4290877,38.6135074],[22.429388,38.6134303],[22.429698,38.6134345],[22.4300334,38.6133308],[22.4302626,38.6133519],[22.4312276,38.6128152],[22.4318725,38.6127337],[22.4322197,38.6126122],[22.4324371,38.6126512],[22.432656,38.6126181],[22.4329577,38.6124779],[22.4332671,38.6125091],[22.433617,38.6122615],[22.4338459,38.6123006],[22.4341919,38.6122331],[22.4344785,38.612255],[22.4346187,38.6121487],[22.4348122,38.6117008],[22.4350588,38.6114518],[22.4354497,38.61143],[22.4361595,38.6110069],[22.436526,38.6105252],[22.4364475,38.6104341],[22.4365203,38.6102548],[22.4368837,38.6099172],[22.4368751,38.6097324],[22.4371963,38.609223],[22.4379986,38.6087652],[22.438361,38.6084726],[22.4392874,38.6070612],[22.4402053,38.6065689],[22.4405032,38.6060682],[22.4409889,38.6059125],[22.4414069,38.6057018],[22.4419679,38.6057813],[22.4439829,38.6055378],[22.4454771,38.6049449],[22.4455716,38.60482],[22.4455913,38.6044418],[22.4457002,38.6041819],[22.446018,38.6038257],[22.4467383,38.6034388],[22.4475104,38.6027822],[22.4478277,38.602444],[22.4480238,38.6018699],[22.44834,38.6015857],[22.4489293,38.6008816],[22.4493957,38.6005544],[22.4499718,38.6004629],[22.4503997,38.6003244],[22.4505997,38.6001018],[22.450728,38.599743],[22.4508638,38.5994655],[22.4522,38.5982036],[22.4527414,38.597589],[22.453511,38.5970404],[22.4540392,38.5965067],[22.4545063,38.5961435],[22.455277,38.5946713],[22.4554378,38.5941327],[22.455581,38.5938823],[22.4562776,38.593522],[22.4570372,38.593442],[22.4578139,38.5930917],[22.457928,38.5931293],[22.4580383,38.593338],[22.458422,38.5936494],[22.4586388,38.5937154],[22.4591888,38.5937677],[22.4602363,38.5936463],[22.4607454,38.5934638],[22.4609568,38.5932413],[22.4609708,38.5931243],[22.4604244,38.5918285],[22.4615908,38.5915104],[22.4615075,38.5911128],[22.4615712,38.5908163],[22.4614909,38.5902746],[22.4615301,38.5899011],[22.4616529,38.5895243],[22.4617418,38.5885883],[22.4619936,38.588087],[22.4627853,38.5877234],[22.4635092,38.5876969],[22.4644997,38.5875477],[22.4650451,38.5872755],[22.4652789,38.5870803],[22.4656671,38.5868646],[22.4657547,38.5865233],[22.466076,38.5862076],[22.4662867,38.5860212],[22.4663837,38.5857791],[22.4667585,38.5853785],[22.4671996,38.58515],[22.4679583,38.5845652],[22.4686848,38.5838719],[22.4695781,38.583433],[22.4700005,38.583006],[22.4707094,38.5826007],[22.4712653,38.5823737],[22.4721545,38.582124],[22.4729135,38.5820618],[22.4731794,38.5819751],[22.4733998,38.5818699],[22.4735415,38.5816825],[22.4736827,38.5816708],[22.4739429,38.5818544],[22.4743657,38.5819501],[22.4746178,38.5819714],[22.4750786,38.5818963],[22.4752371,38.5819975],[22.4753982,38.5819815],[22.4755901,38.5821372],[22.4761173,38.5821801],[22.4763481,38.5821201],[22.4768721,38.5823161],[22.4770075,38.582426],[22.477169,38.5823921],[22.4771699,38.582347],[22.4774343,38.5823325],[22.4775342,38.582559],[22.4777429,38.5824626],[22.4779444,38.5827085],[22.478177,38.5825674],[22.4781739,38.5827115],[22.4782874,38.5827761],[22.4784642,38.5831028],[22.4785791,38.5830953],[22.4786805,38.5831867],[22.4787746,38.5830798],[22.4788066,38.5831974],[22.4791913,38.5834637],[22.4791672,38.5835174],[22.4792923,38.5835731],[22.4795139,38.5839545],[22.4797406,38.5840926],[22.4798391,38.5843192],[22.4800205,38.5844296],[22.4801527,38.5846927],[22.4803337,38.5848212],[22.4805908,38.5851489],[22.48053,38.5853104],[22.4806927,38.585763],[22.4809738,38.586046],[22.481151,38.5860799],[22.4812601,38.5860768],[22.4813811,38.5863307],[22.4818229,38.5860661],[22.4818667,38.5861657],[22.4821009,38.5859525],[22.4822118,38.5861342],[22.4823498,38.586127],[22.4828132,38.5859257],[22.4828614,38.5858182],[22.4830198,38.5859284],[22.4832501,38.5858953],[22.4834189,38.5860597],[22.4834503,38.5862043],[22.4836292,38.5864319],[22.4840565,38.5863113],[22.4839701,38.5865985],[22.483974,38.586959],[22.4842115,38.5871333],[22.4846696,38.587734],[22.4843638,38.5880094],[22.4847101,38.5879237],[22.4848559,38.5880878],[22.4850359,38.5882614],[22.4847295,38.5886359],[22.4848004,38.5890874],[22.4845657,38.5893276],[22.4845135,38.5896288],[22.484529,38.5899805],[22.4846714,38.5903067],[22.4853266,38.5908198],[22.4858077,38.5916416],[22.4860324,38.5918788],[22.4866896,38.5922432],[22.4876308,38.5922554],[22.4878816,38.5927858],[22.488997,38.5930345],[22.4894292,38.5932293],[22.489592,38.5934071],[22.4897753,38.5934275],[22.4900428,38.5938094],[22.4902028,38.5938475],[22.4907542,38.5938366],[22.4912069,38.5941489],[22.4913236,38.5942134],[22.4910422,38.5949397],[22.4910783,38.5954088],[22.4914286,38.5962243],[22.4915223,38.5966851],[22.4916238,38.5967765],[22.4918078,38.5967608],[22.4920686,38.5969174],[22.4921802,38.597072],[22.492291,38.5971636],[22.4925461,38.5971488],[22.4927716,38.5970706],[22.4928102,38.5968729],[22.4929035,38.596802],[22.4934814,38.5967959],[22.4938124,38.5968903],[22.4938741,38.5972335],[22.4941589,38.5973453],[22.4942546,38.5974862]]},{"id":16609,"author":"AnaDigit","name_GR":"\u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2: E4 \u0391\u03b3\u03cc\u03c1\u03b9\u03b1\u03bd\u03b7-\u0394\u03b5\u03bb\u03c6\u03bf\u03af","description_GR":"\u0395\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03c5\u03c3\u03b1 \u03bf\u03c1\u03b5\u03b9\u03bd\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"STEREA\/Sterea_Parnassos_E4_Agoriani_Delfi","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":5,"length":18300,"name_EN":"Parnassos Mt: E4 Agoriani-Delfi","description_EN":"Gorgeous way to reach Delfi","ascent_time":605,"descent_time":570,"marker":"E4","level":9,"ascent":776,"descent":1019,"maxelev":1407,"minelev":546,"link_logo":"PRS_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnassos","pdf_link":"","bbox":"LINESTRING(22.48663 38.47824,22.50133 38.59739)","views":107,"millestones":"0,22.4942564,38.5974862#1,22.4895836,38.5912160#2,22.4905315,38.5826857#3,22.4920552,38.5749011#4,22.4941329,38.5676539#5,22.4968691,38.5594314#6,22.4985186,38.5533316#7,22.4961834,38.5451744#8,22.4952401,38.5375799#9,22.4937008,38.5294778#10,22.4895157,38.5233247#11,22.4912550,38.5180470#12,22.4919739,38.5113526#13,22.4946041,38.5045250#14,22.4967885,38.4963553#15,22.5003508,38.4882018#16,22.4985251,38.4854622#17,22.4957762,38.4834085#18.3,22.4941241,38.4792020","x":22.4940661,"y":38.5318141,"coor":[[22.4942564,38.5974862],[22.4941607,38.5973453],[22.4938759,38.5972335],[22.4938142,38.5968903],[22.4934832,38.5967959],[22.4929053,38.596802],[22.492812,38.5968729],[22.4927734,38.5970707],[22.4925479,38.5971489],[22.4922928,38.5971636],[22.492182,38.5970721],[22.4920704,38.5969174],[22.4918096,38.5967609],[22.4916256,38.5967765],[22.4915241,38.5966851],[22.4914304,38.5962243],[22.4910801,38.5954088],[22.491044,38.5949397],[22.4913258,38.5942135],[22.4912087,38.5941489],[22.4912393,38.5940592],[22.4909213,38.5933432],[22.4905354,38.5931309],[22.4899421,38.5924024],[22.4896538,38.5919121],[22.4896572,38.5917499],[22.4896789,38.5915384],[22.4894435,38.5907154],[22.4895888,38.5903568],[22.4894927,38.5900131],[22.4896066,38.5899019],[22.4896968,38.5894345],[22.4899457,38.5890593],[22.4901281,38.588575],[22.4900809,38.5880878],[22.4899055,38.587689],[22.4899357,38.587347],[22.4901131,38.587097],[22.4901634,38.5868904],[22.4900859,38.5862045],[22.4901443,38.5856105],[22.4900805,38.5853664],[22.4904629,38.5846504],[22.4903103,38.584261],[22.4903188,38.5838556],[22.4902532,38.5835799],[22.4901719,38.5835698],[22.490146,38.5833352],[22.4902293,38.5831921],[22.4903596,38.5827297],[22.4906156,38.5826654],[22.4902535,38.5819714],[22.4901998,38.5816373],[22.490296,38.5814313],[22.4900669,38.5810138],[22.4899719,38.5797915],[22.48975,38.5794282],[22.4897438,38.5791758],[22.4900406,38.5791526],[22.490192,38.5790464],[22.4906865,38.5790078],[22.4909553,38.5787769],[22.4912458,38.5782851],[22.4914641,38.5776075],[22.4916981,38.5773943],[22.4916368,38.577033],[22.4920761,38.5764575],[22.4922238,38.5759818],[22.492138,38.5756923],[22.4919802,38.5755551],[22.4921009,38.5749439],[22.4918645,38.5747246],[22.4919256,38.5745451],[22.4918697,38.5744723],[22.4916746,38.5744698],[22.4915001,38.5743594],[22.4916873,38.5741906],[22.4915882,38.5739911],[22.491626,38.5738294],[22.491753,38.573795],[22.4919064,38.573869],[22.4918236,38.5734354],[22.4919391,38.5734009],[22.492236,38.5734768],[22.4922087,38.573134],[22.4923707,38.573073],[22.492588,38.5731119],[22.492715,38.5730775],[22.4928424,38.5724753],[22.4931193,38.5724068],[22.4932942,38.5722739],[22.49383,38.5713526],[22.4939502,38.5705432],[22.4941662,38.5700954],[22.4941964,38.5680953],[22.4941218,38.567824],[22.4941776,38.5667974],[22.494108,38.5662829],[22.4941692,38.5661034],[22.4946457,38.5655418],[22.4947413,38.5653628],[22.4947358,38.5650744],[22.4947067,38.5649749],[22.4951407,38.5644263],[22.4953857,38.5642312],[22.4954864,38.563809],[22.4954213,38.5636279],[22.4951056,38.5633535],[22.4951162,38.5632275],[22.4951365,38.5627502],[22.4959547,38.5614901],[22.4960185,38.5611845],[22.4960072,38.5606257],[22.496249,38.560034],[22.4969869,38.5593226],[22.4973588,38.5588227],[22.4974159,38.5586117],[22.4975107,38.5584688],[22.4974037,38.5580979],[22.4974452,38.557756],[22.4973002,38.5575559],[22.4973169,38.5573038],[22.4976603,38.5567946],[22.4976975,38.5561102],[22.4975621,38.5560003],[22.4974759,38.5557289],[22.497192,38.5554819],[22.4974482,38.555305],[22.4979543,38.5546987],[22.4980267,38.5545284],[22.4980097,38.5542398],[22.4981752,38.5540077],[22.4985801,38.5538507],[22.4997663,38.5536496],[22.499115,38.5535151],[22.4985965,38.5536166],[22.4982007,38.5535574],[22.4982378,38.5534318],[22.4984452,38.5533894],[22.4987369,38.5531588],[22.4986778,38.5526895],[22.4982774,38.5526303],[22.4981085,38.5524749],[22.4979939,38.5517931],[22.4981801,38.5511196],[22.4975444,38.5507871],[22.4975605,38.5500123],[22.4974352,38.5494159],[22.4974489,38.5487583],[22.497082,38.5481949],[22.496879,38.5474714],[22.4968621,38.5471828],[22.4965845,38.5467377],[22.496484,38.5460515],[22.4960082,38.5446577],[22.4959051,38.5430658],[22.496003,38.54222],[22.4961685,38.5419879],[22.4961747,38.5414112],[22.4967057,38.5407061],[22.4967714,38.5403105],[22.4966971,38.5400212],[22.4970995,38.5397019],[22.4973154,38.5392541],[22.4973585,38.5384932],[22.4972652,38.5385641],[22.4971277,38.5385534],[22.4953688,38.5376206],[22.4949015,38.5374704],[22.4944854,38.537411],[22.4944342,38.5365678],[22.4943928,38.536351],[22.4944695,38.5359735],[22.4945483,38.5351545],[22.4948821,38.5346181],[22.495031,38.5340793],[22.4948633,38.5333202],[22.494651,38.5330472],[22.4945152,38.5329553],[22.4944502,38.5327742],[22.4940704,38.5322827],[22.4940074,38.5320026],[22.4940661,38.5318141],[22.4940338,38.5311649],[22.4942953,38.5307267],[22.4942658,38.530492],[22.4941089,38.5303143],[22.4939092,38.5299873],[22.4939244,38.5298072],[22.493056,38.5285435],[22.4928755,38.528397],[22.492294,38.5282273],[22.4920902,38.5280985],[22.4919441,38.5279525],[22.4919272,38.5276639],[22.4918273,38.5275004],[22.4916247,38.5273175],[22.4902631,38.5265971],[22.4902073,38.5263711],[22.4897519,38.526203],[22.489687,38.526067],[22.4893551,38.5259816],[22.4889273,38.5261383],[22.4887668,38.5261363],[22.4886131,38.5260802],[22.4889667,38.5257288],[22.4889957,38.5254408],[22.4891615,38.5251906],[22.4891771,38.5249926],[22.4890546,38.5248198],[22.4890818,38.5246129],[22.489111,38.5242663],[22.4892069,38.5240693],[22.4893322,38.5239898],[22.4890855,38.5237163],[22.4893177,38.5235841],[22.489414,38.5233691],[22.4903284,38.5229754],[22.4903873,38.5229041],[22.490285,38.5228577],[22.4896983,38.5229402],[22.4895881,38.5227225],[22.4894507,38.5227118],[22.4893268,38.522602],[22.4891595,38.5223746],[22.4889406,38.5214436],[22.4889784,38.5213314],[22.4887945,38.521248],[22.4888013,38.5209236],[22.4882591,38.5205201],[22.4882377,38.5204478],[22.4884593,38.5202704],[22.4889897,38.5201421],[22.4889032,38.5198886],[22.4889872,38.5197095],[22.4892406,38.5196587],[22.4897871,38.519855],[22.4901089,38.5198231],[22.4906357,38.5198659],[22.4908015,38.5196158],[22.4914076,38.519155],[22.4914907,38.5190209],[22.4911653,38.5186743],[22.4910884,38.5185111],[22.4911754,38.5181878],[22.4913897,38.5178121],[22.4916343,38.517635],[22.4916824,38.5175275],[22.4909747,38.5168155],[22.4908972,38.5161296],[22.4903096,38.5157075],[22.4901303,38.5155069],[22.4897083,38.514294],[22.4899629,38.5141891],[22.4914668,38.5141184],[22.4915619,38.5139574],[22.4916274,38.5135708],[22.4922817,38.5129935],[22.4926736,38.5123497],[22.492679,38.5120884],[22.4925689,38.5118707],[22.4914541,38.5108832],[22.4914445,38.5107929],[22.4915738,38.5106414],[22.4922924,38.5102812],[22.4923753,38.5101561],[22.4923006,38.5098848],[22.4919165,38.5096095],[22.4916661,38.5089665],[22.4917018,38.5089039],[22.4919208,38.5088526],[22.4935186,38.5086749],[22.4937853,38.5085342],[22.4944976,38.5068222],[22.494626,38.506166],[22.4948949,38.5053674],[22.4948573,38.5049704],[22.494271,38.5039356],[22.4942438,38.5035928],[22.4948167,38.5014104],[22.4950531,38.5010035],[22.4962742,38.4994241],[22.496523,38.4990398],[22.4965386,38.4988418],[22.4963609,38.4987224],[22.4963648,38.4985332],[22.496971,38.4980543],[22.4971948,38.4977688],[22.4972326,38.4976071],[22.4971726,38.4971828],[22.4968725,38.4967284],[22.4967864,38.4964569],[22.4967957,38.4960065],[22.496962,38.4951796],[22.4971448,38.4946593],[22.4977847,38.4937799],[22.4990952,38.492517],[22.499191,38.49232],[22.4991717,38.4920224],[22.4991762,38.4918062],[22.4994544,38.4912826],[22.5005617,38.4898549],[22.5006301,38.4893241],[22.5002802,38.4879499],[22.500264,38.4876253],[22.5003474,38.4874732],[22.499849,38.4871784],[22.5001829,38.4871106],[22.4993783,38.486812],[22.49885,38.4868593],[22.4978428,38.4867742],[22.4959136,38.486371],[22.4982386,38.4859323],[22.4996805,38.4854596],[22.4994954,38.4854347],[22.4980042,38.4854697],[22.4966348,38.4851637],[22.4956605,38.4851512],[22.4952494,38.4850738],[22.4944696,38.4850818],[22.4933396,38.4853917],[22.4938067,38.4849832],[22.4925495,38.4853455],[22.4936213,38.4845303],[22.4955075,38.4836894],[22.4958613,38.48332],[22.4959426,38.483267],[22.4960178,38.4829615],[22.4960641,38.4823854],[22.4961868,38.4819995],[22.4963388,38.4818573],[22.4964002,38.4816598],[22.496418,38.4813536],[22.4963055,38.4812531],[22.496561,38.4810941],[22.496495,38.4809581],[22.4965649,38.4809049],[22.4964965,38.480886],[22.4964905,38.4806246],[22.4968041,38.4804304],[22.4968296,38.4803046],[22.4970398,38.480118],[22.4970994,38.4799566],[22.4971787,38.4800027],[22.4972723,38.4799138],[22.4972195,38.4796968],[22.4974405,38.4795419],[22.4976587,38.4795763],[22.4976872,38.479428],[22.4974959,38.4792543],[22.4976704,38.4789591],[22.4976406,38.4788416],[22.4976985,38.4788153],[22.4978679,38.4788851],[22.497904,38.4788044],[22.497851,38.4787137],[22.4976342,38.4786658],[22.4972366,38.4787013],[22.4967036,38.4789197],[22.4965764,38.4789721],[22.4968834,38.4785435],[22.4966675,38.4781758],[22.4953775,38.4786909],[22.4941241,38.479202]]},{"id":16610,"author":"AnaDigit","name_GR":"\u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2: E4 \u0394\u03b5\u03bb\u03c6\u03bf\u03af-\u0399\u03c4\u03ad\u03b1","description_GR":"","path":"STEREA\/Sterea_Parnassos_E4_Delfi_Itea","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":13399,"name_EN":"Parnassos Mt: E4 Delfi-Itea","description_EN":"","ascent_time":240,"descent_time":255,"marker":"E4","level":9,"ascent":92,"descent":644,"maxelev":563,"minelev":1,"link_logo":"PRS_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnassos","pdf_link":"","bbox":"LINESTRING(22.43161 38.42888,22.49517 38.47859)","views":78,"millestones":"0,22.4941273,38.4792020#1,22.4884445,38.4768651#2,22.4858485,38.4755892#3,22.4839673,38.4738711#4,22.4809382,38.4733751#5,22.4758591,38.4712941#6,22.4774366,38.4700274#7,22.4693607,38.4642028#8,22.4586447,38.4616990#9,22.4564608,38.4554811#10,22.4471715,38.4505869#11,22.4420015,38.4429224#12,22.4406347,38.4340229#13,22.4355833,38.4291234#13.4,22.4326980,38.4283964","x":22.4774017,"y":38.4715964,"coor":[[22.4941273,38.479202],[22.4938229,38.478716],[22.4929374,38.4793985],[22.4927765,38.4790945],[22.4927006,38.4788863],[22.4926308,38.4787097],[22.492516,38.4787172],[22.4920456,38.478238],[22.4919018,38.4779839],[22.4924651,38.47791],[22.492344,38.4777913],[22.4918177,38.4777395],[22.4918226,38.4775052],[22.4912689,38.4776693],[22.4913586,38.4772199],[22.4910591,38.4772882],[22.4910395,38.4771257],[22.4907149,38.4773017],[22.4906288,38.4770303],[22.4903408,38.4770987],[22.4901807,38.4770786],[22.4901565,38.4765917],[22.4899948,38.4766526],[22.4899412,38.4764717],[22.4898236,38.4766144],[22.4897682,38.4765236],[22.4895256,38.4766106],[22.4890336,38.4765682],[22.4887574,38.4766187],[22.4879997,38.4772217],[22.4879213,38.4771305],[22.4877834,38.4771468],[22.4871347,38.477197],[22.4867856,38.4770528],[22.4863409,38.4769389],[22.4859042,38.4769873],[22.4854588,38.4769095],[22.4837749,38.4768516],[22.483265,38.4765657],[22.4827869,38.4764063],[22.4822575,38.4759579],[22.48293,38.4762595],[22.4840973,38.4763557],[22.4854188,38.4759267],[22.4855862,38.4758703],[22.4861297,38.475643],[22.4861309,38.475589],[22.4858443,38.4755898],[22.4848977,38.475902],[22.4842389,38.4760421],[22.4839274,38.4759164],[22.4847841,38.475513],[22.4848829,38.4751718],[22.4848268,38.475117],[22.4846549,38.4751148],[22.4843978,38.4752467],[22.4847841,38.475513],[22.4848829,38.4751718],[22.4848268,38.475117],[22.4846549,38.4751148],[22.4841102,38.4753961],[22.4835639,38.4752088],[22.4829355,38.4751106],[22.4828453,38.4750373],[22.482825,38.4749109],[22.4828609,38.4748393],[22.4838273,38.4746716],[22.4839553,38.4745831],[22.4839795,38.4745203],[22.4837274,38.4745171],[22.4834086,38.4744138],[22.4833879,38.4743054],[22.4834582,38.4742342],[22.483827,38.4741399],[22.4844086,38.4742826],[22.4844579,38.474121],[22.48363,38.4736958],[22.4832657,38.4735739],[22.4828841,38.4737312],[22.4826504,38.4739444],[22.4825931,38.4739437],[22.4825962,38.4738626],[22.4827686,38.4732971],[22.4830476,38.4731115],[22.4841137,38.4731073],[22.4843745,38.4732458],[22.4846377,38.4732673],[22.4854344,38.4735389],[22.4854592,38.4734491],[22.4854156,38.4733404],[22.4849292,38.4729106],[22.4847741,38.4727734],[22.4845128,38.4726619],[22.4838576,38.4722028],[22.4830477,38.4720121],[22.4824251,38.4721843],[22.4819022,38.4725199],[22.481465,38.4731451],[22.4809096,38.4733902],[22.4799257,38.4733504],[22.4795006,38.4732773],[22.4786922,38.4731361],[22.4783049,38.473023],[22.477684,38.4725643],[22.4765978,38.4718924],[22.4761982,38.4718151],[22.4757627,38.4718094],[22.4749523,38.4716457],[22.4742648,38.4716367],[22.4737572,38.4712426],[22.4732335,38.4710736],[22.4742471,38.4708435],[22.4745717,38.4709919],[22.4748643,38.471248],[22.4751493,38.4713238],[22.4767212,38.4712542],[22.477097,38.4713672],[22.4774017,38.4715964],[22.4779382,38.4717025],[22.4780328,38.4715686],[22.4781363,38.4715519],[22.4783846,38.4717354],[22.4785821,38.4716118],[22.4789324,38.4718506],[22.4791379,38.4718893],[22.4794599,38.4718394],[22.4797179,38.4717347],[22.4802576,38.4715164],[22.4806197,38.4711967],[22.4808523,38.4710375],[22.4817492,38.4706796],[22.4815906,38.4705875],[22.4813508,38.4705483],[22.4803034,38.470751],[22.4795081,38.4704163],[22.4785241,38.4703314],[22.4781791,38.4702278],[22.4767166,38.4698348],[22.4765703,38.4697067],[22.4759121,38.4693918],[22.475633,38.4690412],[22.4741832,38.468761],[22.4739106,38.4686403],[22.4734388,38.4681836],[22.4728293,38.4671934],[22.4723123,38.4667091],[22.471945,38.4661906],[22.4715966,38.4658617],[22.4709407,38.4654386],[22.47082,38.4651847],[22.4705391,38.4649197],[22.4701531,38.4647434],[22.4685485,38.4636591],[22.465847,38.4629569],[22.4653155,38.4627202],[22.4648139,38.4624928],[22.4630482,38.4625237],[22.4626947,38.462438],[22.4622295,38.4622156],[22.4617025,38.4622087],[22.4611011,38.4621918],[22.4602677,38.4620366],[22.459311,38.4617537],[22.4582355,38.4616675],[22.4572032,38.461708],[22.4559806,38.4615296],[22.456679,38.4599528],[22.4569888,38.4588575],[22.4575723,38.4578289],[22.4581028,38.457133],[22.457369,38.4565601],[22.4568371,38.4562467],[22.4567634,38.4559394],[22.4565087,38.4555215],[22.4562724,38.4553201],[22.455808,38.4550617],[22.4546954,38.4545694],[22.4537685,38.4539714],[22.4529268,38.453672],[22.4523785,38.4535926],[22.4519023,38.453352],[22.4517114,38.4531693],[22.4511185,38.4530263],[22.4507329,38.452841],[22.4500142,38.4526873],[22.4494042,38.4522737],[22.4489265,38.4521051],[22.4475049,38.451068],[22.4472167,38.4506136],[22.4469677,38.4504662],[22.4465809,38.4503349],[22.4459521,38.4497318],[22.4458233,38.4495949],[22.445059,38.4488999],[22.4449107,38.4486501],[22.4447965,38.4482656],[22.4448967,38.4481363],[22.4449013,38.4479201],[22.4445444,38.4474647],[22.4445331,38.4469239],[22.4442506,38.4462578],[22.4441309,38.4461796],[22.4428274,38.4444501],[22.4419672,38.4428888],[22.4417769,38.4421473],[22.4415547,38.4407566],[22.4415335,38.4401435],[22.4416139,38.4396039],[22.4415962,38.4387115],[22.441283,38.4378242],[22.4412527,38.4371029],[22.440974,38.4358421],[22.4409323,38.4356523],[22.4409101,38.4354538],[22.4407812,38.4348393],[22.4405859,38.4337959],[22.4408633,38.4331508],[22.4407493,38.4315272],[22.4409533,38.4310973],[22.4410035,38.4303591],[22.4404339,38.430329],[22.4371595,38.4304971],[22.4370873,38.4302303],[22.4369423,38.4300481],[22.436725,38.4300272],[22.4363795,38.4301127],[22.4362774,38.4300663],[22.4358845,38.4291599],[22.4356796,38.4291031],[22.4351848,38.4292046],[22.4348034,38.4282984],[22.4341002,38.4280863],[22.4337454,38.4280725],[22.4334228,38.4281583],[22.432698,38.4283964]]},{"id":16637,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: E4 \u0391\u03c1\u03c4\u03bf\u03c4\u03af\u03bd\u03b1-\u0391\u03b8\u03b1\u03bd. \u0394\u03b9\u03ac\u03ba\u03bf\u03c2","description_GR":"\u0388\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c9\u03c1\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03ba\u03bf\u03bc\u03bc\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03954","path":"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":18422,"name_EN":"Vardousia: E4 Artotina-Athanasios Diakos","description_EN":"A nice mountain crossing","ascent_time":675,"descent_time":615,"marker":"E4","level":11,"ascent":970,"descent":1088,"maxelev":1736,"minelev":973,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.03621 38.69833,22.1765 38.72259)","views":55,"millestones":"0,22.0368303,38.6998519#1,22.0445747,38.6978728#2,22.0472894,38.7043456#3,22.0566047,38.7059760#4,22.0640286,38.7099739#5,22.0741703,38.7099591#6,22.0833668,38.7119657#7,22.0916604,38.7166890#8,22.0982173,38.7230070#9,22.1071207,38.7212266#10,22.1104257,38.7137240#11,22.1159313,38.7073766#12,22.1237601,38.7031171#13,22.1292723,38.7026167#14,22.1375889,38.7004852#15,22.1458897,38.7000289#16,22.1554792,38.7012609#17,22.1657160,38.7005313#18.4,22.1764769,38.6991265","x":22.1077952,"y":38.7175296,"coor":[[22.0368303,38.6998519],[22.03726,38.6996969],[22.0375121,38.6993047],[22.0375985,38.6990899],[22.0375688,38.6984947],[22.0377222,38.6983486],[22.0380575,38.6982821],[22.0381659,38.698392],[22.0385972,38.6985975],[22.0388322,38.6985834],[22.0391245,38.6984081],[22.0392795,38.6982981],[22.0393358,38.6982495],[22.0403068,38.698482],[22.0404745,38.6982731],[22.0411615,38.6979602],[22.0415182,38.6979482],[22.0416847,38.6979194],[22.0419314,38.6977253],[22.0424655,38.697536],[22.042904,38.6974803],[22.0430103,38.6973739],[22.0430839,38.6976275],[22.0431394,38.6977005],[22.0432428,38.6977022],[22.0432499,38.6978645],[22.0433411,38.6978931],[22.0436128,38.6976273],[22.0437153,38.6976651],[22.0438219,38.6979732],[22.0440207,38.6978504],[22.0441351,38.6978703],[22.0441762,38.6980512],[22.0442671,38.6980888],[22.0443305,38.6978736],[22.044506,38.697854],[22.0447799,38.6979307],[22.044875,38.6980269],[22.0451939,38.6981403],[22.0451899,38.6982844],[22.0448808,38.6991984],[22.0450193,38.6993133],[22.0451046,38.6991345],[22.0452257,38.6993348],[22.0449955,38.6997634],[22.0446169,38.7001536],[22.0445521,38.7004228],[22.0447225,38.7004977],[22.0447061,38.7006777],[22.0448216,38.7006616],[22.0448069,38.7007785],[22.0451434,38.700667],[22.0452578,38.7006869],[22.0458902,38.701112],[22.046065,38.7014483],[22.0462592,38.7014966],[22.04646,38.7013017],[22.0465976,38.701313],[22.04678,38.7022171],[22.0469626,38.7031933],[22.0472027,38.7036659],[22.0472765,38.7043339],[22.047703,38.7047195],[22.0478505,38.704794],[22.0479521,38.7047822],[22.0482175,38.7047506],[22.0485359,38.7048821],[22.0486929,38.7048171],[22.048957,38.7048305],[22.0491729,38.7049242],[22.0492769,38.7049079],[22.0494187,38.7047661],[22.0495772,38.7048589],[22.0497635,38.7047719],[22.0498944,38.7046119],[22.0500093,38.7046138],[22.0500727,38.7043986],[22.0503744,38.7042955],[22.0503424,38.7042049],[22.0507887,38.7042844],[22.0509687,38.7044316],[22.0516684,38.7044973],[22.0517704,38.7045531],[22.0522316,38.7045067],[22.0532421,38.7041361],[22.0534827,38.7041671],[22.0535849,38.7042138],[22.053884,38.7046333],[22.05412,38.7048355],[22.0545634,38.7050231],[22.0549591,38.7052729],[22.0556084,38.7055],[22.0558449,38.7056841],[22.056327,38.7057192],[22.056519,38.7058485],[22.0567623,38.706204],[22.0568707,38.7068726],[22.0568282,38.7071692],[22.056634,38.7075444],[22.0566661,38.7076351],[22.0574005,38.7076923],[22.0581606,38.7076509],[22.0588332,38.7078693],[22.0591044,38.708045],[22.0596873,38.7081809],[22.0598563,38.7083098],[22.0600099,38.7085827],[22.0599368,38.7091581],[22.0600122,38.7093486],[22.0609682,38.7092924],[22.0616173,38.7095284],[22.0619531,38.7094439],[22.062206,38.7094481],[22.0625474,38.7095799],[22.0630105,38.7098939],[22.0630863,38.7100664],[22.0632128,38.7100685],[22.0633996,38.7099634],[22.0641123,38.7099752],[22.0645018,38.7096033],[22.0647219,38.7095438],[22.0648642,38.709384],[22.0659342,38.7093657],[22.0662925,38.7092995],[22.067115,38.7090788],[22.0677657,38.7088283],[22.0679086,38.708727],[22.0688984,38.7086983],[22.0701766,38.7090618],[22.0710617,38.7090764],[22.0713207,38.7092789],[22.071733,38.7097723],[22.0720999,38.7098144],[22.072426,38.7100901],[22.0728345,38.7102951],[22.0742355,38.7099397],[22.074715,38.7096413],[22.0749829,38.709943],[22.0760644,38.7099248],[22.0762579,38.7100001],[22.0766397,38.7099162],[22.076751,38.7100532],[22.0768802,38.7108122],[22.0770372,38.710959],[22.0772772,38.711017],[22.0774575,38.7111551],[22.0776701,38.7113749],[22.077888,38.711829],[22.0783167,38.7117099],[22.0786913,38.7114638],[22.0791755,38.7114177],[22.080046,38.7115491],[22.0803645,38.7116805],[22.0813404,38.7117415],[22.0823228,38.7119919],[22.0830115,38.7120393],[22.0834625,38.7119476],[22.0841611,38.7120581],[22.0846324,38.7120659],[22.0852388,38.7121839],[22.0853861,38.7122674],[22.0857084,38.7122547],[22.0856485,38.7123438],[22.0857105,38.7126061],[22.0859821,38.7127728],[22.0864146,38.712942],[22.08677,38.7129839],[22.0869151,38.7131485],[22.0870705,38.7137908],[22.0875107,38.7141043],[22.0878297,38.7142177],[22.0880072,38.7144639],[22.0885422,38.7146709],[22.0896103,38.7147244],[22.0896985,38.71487],[22.0901875,38.7150762],[22.0909417,38.7156922],[22.0910672,38.7161628],[22.0913464,38.7164738],[22.0917981,38.7167875],[22.0918044,38.7169858],[22.0920075,38.7175658],[22.0924843,38.7177989],[22.0928297,38.7177865],[22.0932623,38.7179557],[22.0933447,38.71875],[22.0935492,38.719276],[22.0934999,38.7198338],[22.0936153,38.7198177],[22.0937806,38.7200907],[22.0950137,38.7208677],[22.0952304,38.7209343],[22.0957176,38.7212126],[22.0964597,38.7214229],[22.0974279,38.7226461],[22.0979154,38.7229153],[22.0982692,38.7230202],[22.0996129,38.7230961],[22.1003389,38.7230448],[22.1006527,38.7229238],[22.101115,38.7228412],[22.1014062,38.7227018],[22.1016371,38.7226695],[22.1019801,38.7227471],[22.1022374,38.7230216],[22.1028653,38.7234598],[22.1030727,38.7234452],[22.1032888,38.7235388],[22.1037611,38.7235104],[22.1048941,38.723727],[22.1054939,38.7236646],[22.1059743,38.72333],[22.106768,38.7224598],[22.1069255,38.722156],[22.1069484,38.7217239],[22.107172,38.7210968],[22.1077326,38.7203399],[22.1079709,38.7191544],[22.1081427,38.7187427],[22.1080315,38.7181642],[22.1077952,38.7175296],[22.1079418,38.7167661],[22.1087146,38.7153729],[22.109207,38.7150205],[22.1091691,38.7147135],[22.1092519,38.7146247],[22.1096928,38.7144787],[22.1101859,38.7145317],[22.1106735,38.7143594],[22.110702,38.7141526],[22.1105613,38.7138169],[22.1101545,38.71354],[22.1103003,38.7131639],[22.1105388,38.7128434],[22.110743,38.7126485],[22.1109512,38.7121653],[22.1111655,38.7118894],[22.1114374,38.7111729],[22.1118252,38.7108548],[22.1118514,38.7102966],[22.1119347,38.7101898],[22.1123002,38.7102858],[22.1124056,38.7102154],[22.1126358,38.7097686],[22.113025,38.709838],[22.1132873,38.7098692],[22.1136531,38.7095147],[22.1141028,38.7094679],[22.1142103,38.7093164],[22.1140718,38.7088997],[22.1141555,38.7087749],[22.1144599,38.7085726],[22.1147471,38.7081447],[22.1154674,38.707868],[22.1157501,38.7076112],[22.1162619,38.7069527],[22.1164838,38.7068211],[22.1166596,38.7067924],[22.1169423,38.7069727],[22.1173971,38.7067322],[22.1176503,38.7067273],[22.117952,38.706624],[22.1186276,38.7062925],[22.118835,38.7062778],[22.1190428,38.7064253],[22.1193159,38.706317],[22.1195997,38.7064568],[22.1199455,38.7064263],[22.1199833,38.7063007],[22.1197945,38.7060454],[22.1196559,38.7056287],[22.119754,38.705396],[22.1201366,38.705276],[22.1207199,38.704961],[22.121533,38.7046497],[22.1220871,38.7045685],[22.122275,38.7044183],[22.122363,38.7041314],[22.122576,38.7039005],[22.123196,38.703496],[22.1233147,38.7033537],[22.1236844,38.7032876],[22.1238921,38.7028223],[22.1241424,38.7024839],[22.1242691,38.702477],[22.1242904,38.7030225],[22.124383,38.7034384],[22.1242066,38.7035888],[22.123952,38.7040893],[22.123564,38.7044165],[22.1236196,38.7044894],[22.1246494,38.7042447],[22.1249453,38.703925],[22.1256195,38.7036475],[22.125646,38.7035128],[22.1254361,38.703185],[22.1255304,38.7030964],[22.1260995,38.7028803],[22.1264338,38.7028496],[22.1269733,38.7028853],[22.1271898,38.7029608],[22.1274265,38.7031448],[22.1282292,38.7032298],[22.1283451,38.7031956],[22.1282841,38.7028882],[22.1283899,38.7027998],[22.129442,38.7025824],[22.1300922,38.702782],[22.1304621,38.7031484],[22.1309841,38.7029765],[22.1311159,38.7027713],[22.131407,38.7026318],[22.1314439,38.7025423],[22.131342,38.7020361],[22.1315105,38.7017504],[22.1314255,38.7014788],[22.1314532,38.701299],[22.1316639,38.7011582],[22.1320542,38.7010428],[22.1326465,38.700818],[22.1329805,38.7007963],[22.133707,38.7007178],[22.1341853,38.7004551],[22.1348266,38.7005554],[22.1352636,38.7005534],[22.1354726,38.7004756],[22.1357196,38.7002633],[22.1362849,38.7006327],[22.136798,38.7008031],[22.1369823,38.700788],[22.1371305,38.7007138],[22.137229,38.7004631],[22.1373219,38.7004285],[22.1387286,38.7007212],[22.1393263,38.7007307],[22.1394574,38.7005526],[22.1393178,38.7001719],[22.1393786,38.7000468],[22.1394726,38.6999672],[22.1398165,38.7000087],[22.1402499,38.6997002],[22.1406573,38.6995084],[22.141096,38.6994433],[22.1416157,38.6989109],[22.1416118,38.6986586],[22.1416148,38.6985415],[22.1417309,38.6984983],[22.1429465,38.6986257],[22.1438383,38.6988201],[22.14515,38.6987869],[22.145469,38.6989],[22.1456016,38.6991094],[22.1457101,38.6997103],[22.1458971,38.7000377],[22.1462356,38.7002863],[22.1467813,38.7005293],[22.1469671,38.7004601],[22.1476725,38.6998586],[22.147876,38.6995464],[22.148016,38.6994676],[22.1485553,38.6995121],[22.1490977,38.6998812],[22.1494639,38.69995],[22.1498965,38.7001191],[22.1503338,38.700108],[22.1509875,38.7001724],[22.1518063,38.7005277],[22.1524951,38.7010162],[22.1527468,38.7010652],[22.153151,38.7009995],[22.1533225,38.7010383],[22.1532029,38.7012166],[22.1539638,38.7011385],[22.1544351,38.7011459],[22.1548737,38.7010808],[22.1553952,38.7012467],[22.1560706,38.7013655],[22.1563092,38.7014774],[22.1563892,38.7014967],[22.1568713,38.7014862],[22.1570975,38.701269],[22.1573511,38.701246],[22.1576881,38.7011071],[22.1584935,38.7006423],[22.1596438,38.7001738],[22.1599441,38.7001245],[22.1604099,38.7002039],[22.160506,38.7000432],[22.1610536,38.6997635],[22.1618922,38.6997947],[22.1624552,38.6996413],[22.1628093,38.699737],[22.1631318,38.699715],[22.1638193,38.6998069],[22.1639589,38.6997461],[22.1641764,38.6997855],[22.1646874,38.7000368],[22.1649554,38.7003474],[22.1658926,38.7005694],[22.1669015,38.7006888],[22.1670842,38.7007367],[22.1676412,38.7007094],[22.1681791,38.7003574],[22.1683843,38.7001579],[22.1685446,38.7000027],[22.1688807,38.6998998],[22.169429,38.6995075],[22.1698448,38.6994329],[22.1700149,38.6995256],[22.1701204,38.6994912],[22.1701825,38.699312],[22.1708523,38.6991963],[22.1709227,38.6991434],[22.1711059,38.6991733],[22.1712594,38.6990135],[22.1713617,38.6990601],[22.1714458,38.6989173],[22.1715732,38.6988832],[22.1716479,38.6986591],[22.1717382,38.6987236],[22.1718417,38.6987252],[22.171901,38.6986541],[22.1719566,38.698727],[22.1720991,38.698549],[22.1722017,38.6985867],[22.1722492,38.6985244],[22.1724074,38.698635],[22.172663,38.6985308],[22.1726881,38.6984501],[22.1728587,38.6985249],[22.1731984,38.6982779],[22.1734793,38.6985346],[22.1737434,38.6985928],[22.1743201,38.6985207],[22.1747767,38.6986539],[22.1747009,38.6987924],[22.1747455,38.6988472],[22.1753555,38.6988252],[22.1755656,38.6987879],[22.1761417,38.6991934],[22.1764769,38.6991265]]},{"id":16638,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: E4 \u0391\u03b8\u03b1\u03bd\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2 \u0394\u03b9\u03ac\u03ba\u03bf\u03c2-\u03a3\u03c4\u03c1\u03cc\u03bc\u03b7","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf \u0394\u03b9\u03ac\u03ba\u03bf \u03c3\u03c4\u03b7 \u03a3\u03c4\u03c1\u03cc\u03bc\u03b7","path":"STEREA\/Sterea_Vardousia_E4_Diakos_Stromi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11109,"name_EN":"Vardousia: E4 Athanasios Diakos-Stromi","description_EN":"From Athanasios Diakos to Stromi","ascent_time":255,"descent_time":250,"marker":"E4","level":9,"ascent":482,"descent":597,"maxelev":1115,"minelev":640,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.1758 38.69063,22.25823 38.70965)","views":47,"millestones":"0,22.1764783,38.6991265#1,22.1795015,38.6957979#2,22.1853061,38.7009865#3,22.1908823,38.6972892#4,22.2009188,38.6940591#5,22.2111314,38.6926784#6,22.2174768,38.6919567#7,22.2261503,38.6963920#8,22.2360057,38.7002307#9,22.2420702,38.7057006#10,22.2509551,38.7104434#11.1,22.2574831,38.7065434","x":22.2105098,"y":38.6932142,"coor":[[22.1764783,38.6991265],[22.1760794,38.6986202],[22.1763345,38.6985341],[22.1778341,38.6974401],[22.1777475,38.6976821],[22.1780259,38.6982226],[22.1782176,38.6979192],[22.17872,38.6976026],[22.1787476,38.6974228],[22.1789992,38.696796],[22.1791277,38.6967169],[22.1796237,38.6966525],[22.1796941,38.6965996],[22.1796495,38.6965448],[22.1793527,38.6964591],[22.1790129,38.6962556],[22.178555,38.6961763],[22.1778483,38.695931],[22.177555,38.6957508],[22.1785731,38.6959153],[22.1792436,38.6957726],[22.1798859,38.6958366],[22.1810959,38.6957293],[22.1812302,38.6958756],[22.1812483,38.6968896],[22.181381,38.6970989],[22.1815838,38.6972642],[22.1831192,38.6979279],[22.1831731,38.6980729],[22.1829854,38.6984034],[22.1829937,38.6985296],[22.1830944,38.6986393],[22.1833565,38.6987335],[22.1836346,38.6986477],[22.1838245,38.6984164],[22.1840088,38.6984012],[22.1842125,38.6989856],[22.1848241,38.6993555],[22.1850978,38.6999004],[22.1851259,38.7001532],[22.1848878,38.7004739],[22.1849278,38.7007088],[22.185436,38.7010771],[22.185815,38.7015515],[22.1860987,38.7017001],[22.1866035,38.701744],[22.1873558,38.7020079],[22.188137,38.7020381],[22.1882758,38.7019456],[22.1882923,38.7017476],[22.1882099,38.7013679],[22.1884935,38.7010659],[22.1889278,38.7002617],[22.1888859,38.7000988],[22.1886044,38.6998602],[22.1885731,38.6997336],[22.1888685,38.6989632],[22.1887168,38.6981409],[22.1892477,38.6976085],[22.1894035,38.6973586],[22.1895547,38.6972888],[22.1902188,38.6973982],[22.1907723,38.6973347],[22.1911907,38.697161],[22.1916967,38.6967002],[22.1919178,38.6965955],[22.19252,38.6964246],[22.1942522,38.696127],[22.1944152,38.6960484],[22.1949276,38.69616],[22.1954878,38.6958307],[22.1958385,38.6956018],[22.1963023,38.6954468],[22.1966318,38.6951455],[22.1969247,38.6948437],[22.1974629,38.6944735],[22.1981446,38.6943398],[22.1987774,38.6943226],[22.1997814,38.6941758],[22.2002508,38.6942551],[22.2005551,38.6940436],[22.2012902,38.6940729],[22.2016857,38.6938898],[22.2029486,38.6935037],[22.2035688,38.6935312],[22.2038879,38.6936443],[22.2041412,38.6936301],[22.2046546,38.6933317],[22.2048863,38.6932631],[22.205074,38.6931128],[22.2056766,38.6929238],[22.2062729,38.6929871],[22.2063896,38.6929168],[22.2067572,38.6929314],[22.2068592,38.692987],[22.2070891,38.6929906],[22.2073839,38.6931573],[22.2078659,38.6931917],[22.2082116,38.693161],[22.2087113,38.6934119],[22.2093835,38.6931969],[22.2095329,38.6931992],[22.2097017,38.693346],[22.209806,38.6933115],[22.2101727,38.6933622],[22.2105098,38.6932142],[22.2107636,38.693182],[22.2110099,38.6929876],[22.2115136,38.6916887],[22.2124788,38.6912529],[22.2130565,38.6911356],[22.2135622,38.6911433],[22.2144282,38.6909944],[22.2148249,38.6912257],[22.2151828,38.6916276],[22.2153358,38.6914858],[22.2153031,38.6914132],[22.2156024,38.6907465],[22.2155097,38.6903576],[22.2151607,38.6900594],[22.2157868,38.6899924],[22.2166369,38.6907577],[22.2171428,38.6916846],[22.2177786,38.6921989],[22.2186258,38.6921127],[22.2190603,38.6922094],[22.2191736,38.6922742],[22.2194074,38.6925841],[22.2197018,38.6927688],[22.2211736,38.6933589],[22.2213799,38.6938486],[22.2218055,38.6943056],[22.2223014,38.6947096],[22.2226721,38.6955263],[22.2228918,38.6954755],[22.2234068,38.6955735],[22.2241221,38.6954762],[22.2246954,38.695539],[22.2260025,38.6961535],[22.2262456,38.6965537],[22.2266888,38.6967677],[22.228362,38.6969913],[22.2297699,38.6977154],[22.2301722,38.6977215],[22.2304963,38.6976363],[22.230801,38.6978662],[22.2315506,38.698247],[22.2329511,38.6988088],[22.2334652,38.6989427],[22.2344037,38.6995877],[22.234379,38.6996594],[22.2346842,38.6998713],[22.235327,38.699917],[22.2357943,38.7000863],[22.2364389,38.7005285],[22.2368748,38.7005711],[22.2372886,38.7015145],[22.2376025,38.7018436],[22.2379822,38.7018313],[22.2383014,38.7019442],[22.2389164,38.7026564],[22.2390404,38.7032259],[22.239388,38.7035916],[22.2395991,38.7034235],[22.2398699,38.7036349],[22.2398059,38.704134],[22.2397073,38.7044029],[22.2396892,38.7051415],[22.2398309,38.705459],[22.2401567,38.7057703],[22.2406148,38.7058492],[22.2417241,38.7056316],[22.2419876,38.7056717],[22.242877,38.7059824],[22.2432634,38.7061684],[22.2434549,38.7063335],[22.2440622,38.7073608],[22.244221,38.7074533],[22.244656,38.7075319],[22.2448608,38.7076251],[22.2456545,38.7085561],[22.2458376,38.7085949],[22.2461495,38.7085365],[22.246828,38.7085377],[22.2473889,38.7086452],[22.2477521,38.7088399],[22.2483027,38.7093708],[22.248994,38.7097866],[22.2501242,38.7101279],[22.2506688,38.7104334],[22.2508868,38.7104547],[22.2512794,38.7103885],[22.2517963,38.7104143],[22.2528014,38.7106996],[22.2535916,38.7108376],[22.2539365,38.7108427],[22.2547246,38.7105932],[22.2558344,38.7103574],[22.2561834,38.7101914],[22.2566054,38.7098643],[22.2569191,38.7097339],[22.2571085,38.7095114],[22.257431,38.7094892],[22.2577443,38.7092416],[22.2577827,38.7090799],[22.2572486,38.7081529],[22.2573328,38.7075234],[22.2571234,38.7071508],[22.2570389,38.7068432],[22.2571113,38.7067001],[22.2574831,38.7065434]]},{"id":16639,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: E4 \u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03b7 \u039f\u03be\u03b9\u03ac-\u0391\u03c1\u03c4\u03bf\u03c4\u03af\u03bd\u03b1","description_GR":"\u0388\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c9\u03c1\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03ba\u03bf\u03bc\u03bc\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03954","path":"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":7166,"name_EN":"Vardousia: E4 Grameni Oxia-Artotina","description_EN":"A nice mountain ride","ascent_time":210,"descent_time":205,"marker":"E4","level":11,"ascent":369,"descent":388,"maxelev":1169,"minelev":812,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.00706 38.69985,22.03683 38.7364)","views":58,"millestones":"0,22.0368303,38.6998519#1,22.0309156,38.7060563#2,22.0286265,38.7130644#3,22.0234512,38.7194449#4,22.0154166,38.7206673#5,22.0154202,38.7217212#6,22.0117406,38.7283397#7.2,22.0070592,38.7363950","x":22.0208298,"y":38.720401,"coor":[[22.0368303,38.6998519],[22.0364815,38.6999902],[22.0360702,38.6998932],[22.0358256,38.7000107],[22.0354103,38.7000578],[22.0348123,38.7004802],[22.034737,38.7007132],[22.0347092,38.7013075],[22.0344695,38.7016639],[22.0341747,38.7019292],[22.0340771,38.7021348],[22.034071,38.7027925],[22.0338142,38.7037703],[22.0333152,38.7043566],[22.0331168,38.7044614],[22.03275,38.7044192],[22.0326226,38.7044531],[22.0324051,38.7048369],[22.0317596,38.7053126],[22.0315297,38.7053358],[22.0313137,38.705242],[22.0311284,38.705293],[22.0310091,38.7058676],[22.0305946,38.7067257],[22.0307442,38.7075572],[22.0309208,38.7078665],[22.0311558,38.7081047],[22.0310904,38.708392],[22.0308896,38.7085868],[22.0304691,38.708823],[22.0301149,38.7091595],[22.0301307,38.709421],[22.0299374,38.7097602],[22.0297507,38.7098562],[22.02922,38.7099193],[22.029276,38.7102086],[22.0286591,38.7104775],[22.0282578,38.7104347],[22.0281763,38.7104694],[22.0284609,38.7109968],[22.0284469,38.7110866],[22.0281106,38.7111891],[22.0280327,38.7115122],[22.0281387,38.7118383],[22.0285272,38.7123495],[22.0284488,38.7126906],[22.0286473,38.7130003],[22.0286221,38.7130809],[22.0279487,38.7133129],[22.0277603,38.7134719],[22.02738,38.7135015],[22.0271571,38.7136599],[22.0268559,38.7141594],[22.0266199,38.7147952],[22.0260912,38.7152008],[22.0259708,38.715397],[22.0257628,38.7154295],[22.0255359,38.7153175],[22.0252067,38.7159968],[22.0246606,38.7162894],[22.0251188,38.7162656],[22.0251953,38.7164111],[22.0244309,38.7170199],[22.024299,38.7172159],[22.0240903,38.7181134],[22.0236343,38.718385],[22.0234272,38.7192195],[22.023464,38.7195535],[22.0230693,38.7200514],[22.0220115,38.7196731],[22.0213184,38.720202],[22.0207066,38.7202818],[22.0208298,38.720401],[22.0214236,38.7205552],[22.0214671,38.7206461],[22.0213267,38.7207338],[22.0199103,38.7203764],[22.0191126,38.7205251],[22.0187452,38.7205008],[22.0185065,38.7203977],[22.0181041,38.7199764],[22.0178872,38.7199186],[22.0177587,38.7199885],[22.0175313,38.720309],[22.0171325,38.7205906],[22.0159104,38.720696],[22.0151411,38.7206469],[22.0144438,38.7204909],[22.0136716,38.7201354],[22.0131772,38.7197125],[22.0126219,38.7198292],[22.0114748,38.7197196],[22.0104741,38.7193827],[22.0104714,38.7194818],[22.0112091,38.7198367],[22.0128976,38.720334],[22.0131371,38.7208246],[22.0136139,38.721049],[22.0139863,38.7213076],[22.015185,38.7216343],[22.0161245,38.7219747],[22.0165106,38.7221524],[22.0166121,38.7222532],[22.0167008,38.7223449],[22.0167086,38.7224802],[22.0163571,38.7235464],[22.0164183,38.7238538],[22.0165415,38.7239731],[22.0164236,38.7240792],[22.0164311,38.7242235],[22.0158898,38.7246648],[22.0154099,38.724963],[22.015014,38.7251365],[22.0143102,38.7256292],[22.0137638,38.7267327],[22.0130265,38.7271887],[22.0127006,38.7273273],[22.0122612,38.72741],[22.0118238,38.727799],[22.0117208,38.7281036],[22.0117553,38.7285187],[22.0115283,38.7288212],[22.0113681,38.7296204],[22.0111887,38.7298696],[22.0107802,38.7300789],[22.0105318,38.7303135],[22.009398,38.7309609],[22.0095415,38.7311796],[22.0095272,38.7312785],[22.0092918,38.7314727],[22.009266,38.7315714],[22.009341,38.7321854],[22.0091338,38.7326054],[22.009137,38.7333172],[22.0089838,38.7334498],[22.0089308,38.7337012],[22.0086721,38.733904],[22.0082159,38.7345901],[22.0078149,38.7353581],[22.0075774,38.7356244],[22.0075519,38.7357141],[22.0077401,38.7359786],[22.0077198,38.7361539],[22.0075392,38.736277],[22.0070592,38.736395]]},{"id":17897,"author":"AnaDigit","name_GR":"\u0395\u03c5\u03c1\u03c5\u03c4\u03b1\u03bd\u03af\u03b1: E4 -\u039a\u03b1\u03c1\u03c0\u03b5\u03bd\u03ae\u03c3\u03b9-\u039d\u03ad\u03b1 \u0392\u03af\u03bd\u03b9\u03b1\u03bd\u03b7","description_GR":"\u0395\u03cd\u03ba\u03bf\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"STEREA\/Sterea_Evrytania_E4_Viniani_Karpenisi","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":18243,"name_EN":"Evrytania: E4 Karpenisi-Nea Viniani","description_EN":"An easy trail","ascent_time":350,"descent_time":345,"marker":"E4","level":9,"ascent":1175,"descent":787,"maxelev":1438,"minelev":337,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.67718 38.9162,21.79067 38.97945)","views":23,"millestones":"0,21.6772848,38.9761509#1,21.6862379,38.9708480#2,21.6942159,38.9747825#3,21.6986629,38.9792141#4,21.7043327,38.9761039#5,21.7027445,38.9695687#6,21.7120368,38.9681156#7,21.7216019,38.9675416#8,21.7275302,38.9626421#9,21.7352175,38.9577897#10,21.7450238,38.9541474#11,21.7506611,38.9543829#12,21.7573850,38.9488060#13,21.7617398,38.9419901#14,21.7643813,38.9367165#15,21.7723659,38.9325407#16,21.7822123,38.9309402#17,21.7839529,38.9238323#18.2,21.7906739,38.9162030","x":21.7330303,"y":38.9595928,"coor":[[21.6772848,38.9761509],[21.6785348,38.9749865],[21.6788527,38.9744748],[21.6806165,38.9738657],[21.6813993,38.9732235],[21.6827277,38.9728355],[21.6829288,38.9726863],[21.6836294,38.9724389],[21.6840756,38.9722045],[21.6847489,38.9717313],[21.6852634,38.9715253],[21.6855964,38.9712256],[21.6861381,38.970894],[21.6870166,38.9704969],[21.6873085,38.9704397],[21.6880363,38.9704181],[21.6887556,38.9706576],[21.6889207,38.9716159],[21.6895467,38.9722409],[21.6894877,38.9726362],[21.6896523,38.9732521],[21.6897665,38.9732904],[21.690208,38.9732001],[21.6903456,38.9732298],[21.6905364,38.9733958],[21.6906779,38.9736598],[21.6914094,38.9738816],[21.6918945,38.9742245],[21.692146,38.9743016],[21.6929966,38.9744085],[21.6949962,38.9750337],[21.6949778,38.9748891],[21.6942479,38.9742621],[21.6943996,38.974211],[21.6957704,38.9746525],[21.6972241,38.975384],[21.6980487,38.9759409],[21.6991846,38.9768643],[21.6995511,38.9776644],[21.6992619,38.9783975],[21.6991186,38.9784667],[21.6990291,38.9787352],[21.6987383,38.979162],[21.6985493,38.9792934],[21.6984737,38.9794901],[21.6985691,38.9797533],[21.6989633,38.979698],[21.6993971,38.9794903],[21.6996527,38.9794413],[21.6991767,38.9798824],[21.6997477,38.9797135],[21.7001284,38.979721],[21.7008159,38.9791669],[21.7013425,38.978943],[21.7015747,38.9789026],[21.7025266,38.9790925],[21.7030758,38.9788871],[21.7034579,38.9788496],[21.7035217,38.9786616],[21.7036884,38.9785027],[21.7040178,38.978311],[21.7043911,38.9781922],[21.7045766,38.9778084],[21.7046033,38.97698],[21.7043014,38.975965],[21.7039099,38.9755789],[21.7040905,38.9753482],[21.7049205,38.9750221],[21.7050036,38.9749517],[21.7052354,38.9749202],[21.7053774,38.9748149],[21.7049212,38.9746437],[21.7045713,38.9740422],[21.7039719,38.9733006],[21.7034893,38.972309],[21.7024505,38.9714822],[21.7014624,38.9702734],[21.7015109,38.9702023],[21.7017208,38.9701344],[21.7021943,38.9701257],[21.702511,38.9699697],[21.7029512,38.9692036],[21.703353,38.9689142],[21.7037013,38.9688489],[21.7037809,38.9688865],[21.7038449,38.96905],[21.7040392,38.9691079],[21.7048876,38.9689263],[21.7051183,38.9689309],[21.7055156,38.9691369],[21.705771,38.9694483],[21.7067755,38.9697924],[21.7074085,38.9694895],[21.7083181,38.9688406],[21.7087516,38.9686419],[21.7089825,38.9686374],[21.7091157,38.9688022],[21.7093204,38.9688964],[21.709512,38.9686839],[21.7105772,38.9682183],[21.7111704,38.9680767],[21.7117831,38.9680437],[21.7121179,38.9680413],[21.7120227,38.9681295],[21.7121121,38.9682213],[21.7124621,38.9679714],[21.7127838,38.9680138],[21.7136414,38.9682648],[21.7144251,38.9682982],[21.7156258,38.9686461],[21.7160075,38.9686175],[21.716278,38.968821],[21.7164052,38.9688145],[21.7169213,38.9685543],[21.7174081,38.9684918],[21.717624,38.9685951],[21.7176984,38.9687948],[21.7178902,38.9689337],[21.7181105,38.968902],[21.7185384,38.9685139],[21.7193545,38.9682596],[21.7197357,38.968249],[21.7200776,38.9683818],[21.7204222,38.9684336],[21.7207481,38.9683499],[21.7210203,38.9682741],[21.7212347,38.9681116],[21.7212185,38.967895],[21.7214607,38.9678998],[21.7215207,38.9678289],[21.7217157,38.9671479],[21.7218598,38.9669705],[21.7218627,38.9668805],[21.7219677,38.9668465],[21.7216703,38.9661424],[21.7217465,38.9659277],[21.7220169,38.9657708],[21.7223762,38.9657238],[21.722732,38.9657848],[21.7230036,38.9659522],[21.7231539,38.9659462],[21.7234587,38.9657989],[21.7237911,38.9655081],[21.7239018,38.965294],[21.7239237,38.9649701],[21.7241929,38.9642456],[21.7244815,38.9635214],[21.7248727,38.9631641],[21.7251033,38.9628082],[21.7252919,38.9626858],[21.7256166,38.9622776],[21.7258608,38.9622193],[21.7265741,38.9622873],[21.7268685,38.9624642],[21.726944,38.9626279],[21.7271136,38.9627393],[21.7274844,38.9626925],[21.7277594,38.9623915],[21.7285353,38.9619471],[21.7288712,38.9615482],[21.7296392,38.9609865],[21.7299067,38.9605592],[21.7301561,38.9603388],[21.7307056,38.9601153],[21.730923,38.9601736],[21.7311439,38.9601238],[21.731258,38.9601621],[21.7320163,38.9599065],[21.7321985,38.9599821],[21.732364,38.9598592],[21.7330303,38.9595928],[21.733124,38.9595496],[21.7330432,38.9591877],[21.7330639,38.9588997],[21.7335975,38.9580902],[21.7338512,38.9580951],[21.7344988,38.9584141],[21.7348586,38.958349],[21.7350851,38.9581191],[21.7352728,38.9576632],[21.7355801,38.9574349],[21.7360465,38.9572818],[21.737194,38.9571239],[21.7376512,38.9568985],[21.7380204,38.9565363],[21.7392444,38.9557851],[21.7403399,38.955446],[21.7408945,38.9554207],[21.7412305,38.9553326],[21.7416712,38.9548996],[21.7425972,38.9548094],[21.7427154,38.9547216],[21.7428883,38.9543646],[21.7431688,38.9542528],[21.7441709,38.9543083],[21.7458193,38.9539978],[21.7464531,38.9543884],[21.7464606,38.9545147],[21.7461114,38.9549765],[21.7458619,38.9555663],[21.7459257,38.9557387],[21.7461821,38.9559869],[21.7464495,38.9562894],[21.7467996,38.9565305],[21.7470389,38.9566252],[21.7482421,38.9568917],[21.7484095,38.9567057],[21.7484893,38.9549143],[21.7486247,38.9546466],[21.7490738,38.9543129],[21.7495593,38.9542862],[21.7518029,38.9544916],[21.7520231,38.9544598],[21.7526561,38.9541477],[21.7533208,38.9539262],[21.7544952,38.9536425],[21.754641,38.953411],[21.7548204,38.9528469],[21.7554868,38.9525714],[21.7557338,38.952423],[21.7558067,38.9523072],[21.7562214,38.9508646],[21.756984,38.9504648],[21.7570162,38.9501771],[21.7567694,38.9495867],[21.756831,38.9494618],[21.7576464,38.9484864],[21.7580829,38.9474496],[21.7587555,38.946976],[21.7591392,38.9465148],[21.7594576,38.9462957],[21.7595066,38.9462066],[21.7593764,38.9459428],[21.7594139,38.9458534],[21.7597781,38.9456441],[21.759851,38.9455284],[21.7597597,38.9451302],[21.7598236,38.9449332],[21.7607659,38.9443206],[21.7613118,38.944205],[21.7615694,38.9440838],[21.7619604,38.943839],[21.76248,38.9430921],[21.7625951,38.9427339],[21.7625281,38.9426606],[21.7622849,38.9426919],[21.7620684,38.9426067],[21.7616433,38.9418147],[21.7613278,38.9415744],[21.7594601,38.9411691],[21.759313,38.9410762],[21.7592709,38.9409492],[21.7592935,38.9408145],[21.7593816,38.940582],[21.7594477,38.9405652],[21.7595102,38.9404132],[21.7600192,38.9403689],[21.7603477,38.9401951],[21.7608083,38.9402219],[21.7610412,38.9401543],[21.7611107,38.9397772],[21.7613988,38.9394224],[21.7616587,38.9392291],[21.7622132,38.9392037],[21.7625175,38.9390654],[21.7632369,38.938935],[21.7637272,38.9383858],[21.7638737,38.9381273],[21.764099,38.9379334],[21.7643323,38.937118],[21.7643413,38.9368298],[21.7647856,38.9355409],[21.765501,38.9351672],[21.7662203,38.9350368],[21.7664583,38.9348071],[21.7670869,38.9338911],[21.7672019,38.9339023],[21.7676062,38.9342524],[21.767859,38.9342843],[21.7690423,38.9340727],[21.7694399,38.9339001],[21.7701789,38.9338782],[21.7704719,38.9337306],[21.7707151,38.9336992],[21.7710464,38.9334352],[21.7716867,38.9332492],[21.7717688,38.9328364],[21.7720295,38.9329855],[21.7721954,38.9328445],[21.7723393,38.9325634],[21.772861,38.9321139],[21.7733525,38.931889],[21.774193,38.9312023],[21.7745203,38.9310644],[21.7749111,38.9311078],[21.775185,38.9308338],[21.7758388,38.9305849],[21.7774856,38.930301],[21.7780884,38.9302764],[21.7782518,38.9305859],[21.7783478,38.9306868],[21.7788089,38.9306956],[21.7788854,38.9308322],[21.7806104,38.9306307],[21.7808401,38.9306621],[21.7809625,38.9308086],[21.7810454,38.9307381],[21.7811371,38.9307579],[21.7819267,38.9309621],[21.7828863,38.9308902],[21.7838136,38.9307457],[21.7837934,38.9306552],[21.783598,38.9306335],[21.7834068,38.9304767],[21.783306,38.9296368],[21.7836668,38.92854],[21.7836813,38.9280717],[21.7835891,38.9277005],[21.7833166,38.9271908],[21.7832114,38.9268284],[21.7833514,38.926777],[21.7835086,38.9265457],[21.7832527,38.926613],[21.7831158,38.9265653],[21.7830978,38.9264028],[21.7834978,38.9250409],[21.7840268,38.9236093],[21.7842106,38.9232614],[21.7849234,38.9223289],[21.7857279,38.9216774],[21.7867523,38.9206337],[21.7871899,38.9203176],[21.7873563,38.9201586],[21.7880796,38.91942],[21.7891947,38.918423],[21.7898939,38.9177019],[21.7902183,38.9172125],[21.7904266,38.91682],[21.7905564,38.9165026],[21.7906739,38.916203]]},{"id":17953,"author":"AnaDigit","name_GR":"\u0395\u03c5\u03c1\u03c5\u03c4\u03b1\u03bd\u03af\u03b1: E4 \u0386\u03bc\u03c0\u03bb\u03b9\u03b1\u03bd\u03b7-\u039b\u03b5\u03cd\u03ba\u03b1","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b9\u03ba\u03c1\u03bf\u03cd \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03bf\u03c2","path":"STEREA\/Sterea_Evrytania_E4_Abliani_Lefka","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":13029,"name_EN":"Evrytania: E4 Abliani-Lefka","description_EN":"Abliani-Lefka","ascent_time":235,"descent_time":235,"marker":"E4","level":9,"ascent":644,"descent":788,"maxelev":1264,"minelev":808,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.90769 38.7256,21.96873 38.7536)","views":12,"millestones":"0,21.9076929,38.7536025#1,21.9117893,38.7474231#2,21.9144722,38.7402516#3,21.9203109,38.7387910#4,21.9248330,38.7366346#5,21.9313482,38.7328691#6,21.9371479,38.7302351#7,21.9448726,38.7257475#8,21.9509721,38.7295751#9,21.9543111,38.7333472#10,21.9574937,38.7300270#11,21.9604352,38.7301707#12,21.9645809,38.7293721#13,21.9686379,38.7290206","x":21.9371677,"y":38.7301498,"coor":[[21.9076929,38.7536025],[21.9077767,38.7530994],[21.9084768,38.7523731],[21.9085352,38.7521084],[21.9084333,38.751656],[21.908551,38.751568],[21.9086997,38.7515977],[21.9093672,38.7519881],[21.9096876,38.7520479],[21.9097922,38.7520137],[21.9098076,38.7518788],[21.9096707,38.7516061],[21.9099346,38.7514351],[21.910097,38.7511902],[21.9103753,38.750132],[21.9106142,38.7498299],[21.9105541,38.7499189],[21.9108223,38.7494011],[21.9108966,38.7488258],[21.9109824,38.7486471],[21.9118465,38.748212],[21.9120969,38.7479101],[21.9119984,38.7477372],[21.9117272,38.7475702],[21.9118757,38.7472124],[21.9118543,38.7467615],[21.9116907,38.7464522],[21.9112509,38.746147],[21.9111903,38.7458576],[21.9112888,38.7456341],[21.9112371,38.7454349],[21.9108794,38.7450771],[21.9109499,38.7450243],[21.9109196,38.7448796],[21.911076,38.7446482],[21.9116515,38.744244],[21.9116821,38.7439832],[21.9119571,38.7436277],[21.9118902,38.7435544],[21.9120535,38.7434763],[21.912127,38.7433244],[21.912346,38.7433103],[21.9123852,38.7431488],[21.9123095,38.7429853],[21.9123696,38.7428962],[21.9127365,38.7425424],[21.9130862,38.7423864],[21.9132551,38.7421552],[21.9133074,38.7418182],[21.9134579,38.7417849],[21.9135107,38.7415515],[21.9136965,38.7414918],[21.9137122,38.7413479],[21.9141403,38.7412654],[21.9141322,38.7411482],[21.9142391,38.7410329],[21.9140891,38.7406518],[21.9141048,38.7405079],[21.9146215,38.7401477],[21.9146722,38.7399864],[21.9147538,38.7399519],[21.9147227,38.7398342],[21.9142188,38.7397531],[21.9143824,38.7396659],[21.9143735,38.7395756],[21.9144666,38.7395413],[21.9140702,38.7393269],[21.9141177,38.7392737],[21.9140626,38.7391917],[21.9141102,38.7391384],[21.9141896,38.7391759],[21.9141243,38.7390486],[21.9143208,38.7390161],[21.9145236,38.7391638],[21.9149062,38.7390625],[21.9150003,38.7389921],[21.9149276,38.7387205],[21.9149642,38.7386491],[21.9154046,38.7385398],[21.9159189,38.7386571],[21.9163971,38.7384314],[21.916649,38.7384719],[21.9168646,38.7385749],[21.9171322,38.7384715],[21.9170768,38.7383984],[21.9172634,38.7383117],[21.9173873,38.738404],[21.9175572,38.7381006],[21.9176617,38.7380665],[21.9177639,38.7381133],[21.9179667,38.7378647],[21.9181574,38.7380303],[21.9183012,38.7378346],[21.9184052,38.7378184],[21.9184721,38.7378917],[21.9184624,38.7378284],[21.9185777,38.7378215],[21.9189043,38.7380616],[21.9189908,38.7378559],[21.9194721,38.7382068],[21.9199378,38.7384134],[21.9202273,38.7387429],[21.9210646,38.7392263],[21.9213793,38.7398807],[21.9218257,38.7403572],[21.9220873,38.7404609],[21.9223418,38.7404114],[21.9224411,38.7401609],[21.9219986,38.7391528],[21.9218447,38.7389068],[21.9214632,38.7385757],[21.9219874,38.7371613],[21.9222544,38.7366795],[21.9228011,38.7360765],[21.9229281,38.7360608],[21.923596,38.7364331],[21.9242002,38.736624],[21.9246586,38.7366862],[21.9250414,38.7365759],[21.9248655,38.7362934],[21.9247829,38.7359676],[21.9248754,38.7355547],[21.924756,38.7353093],[21.9246488,38.7346407],[21.9246629,38.7345508],[21.924828,38.7344096],[21.9255017,38.7341873],[21.9257065,38.7338665],[21.9262861,38.7337146],[21.9266201,38.7337025],[21.9268897,38.7331306],[21.9271013,38.7329722],[21.9274437,38.7330684],[21.9278621,38.7333191],[21.9280235,38.7333039],[21.9286935,38.7328112],[21.9289694,38.7328161],[21.9299585,38.7332211],[21.9300981,38.7331695],[21.9304179,38.7328508],[21.9306397,38.7327376],[21.9309151,38.7327605],[21.9311284,38.7329445],[21.9312549,38.7329467],[21.9316322,38.732629],[21.9316645,38.7323052],[21.9315437,38.7321048],[21.9310135,38.731744],[21.9308922,38.7315617],[21.9310244,38.7313658],[21.9312815,38.7312262],[21.9314064,38.730886],[21.931677,38.7306745],[21.9321343,38.7307727],[21.9326875,38.7307375],[21.9328438,38.7309024],[21.9328888,38.7313357],[21.9332087,38.7318099],[21.9333101,38.7318838],[21.9334596,38.7318864],[21.9338264,38.7315325],[21.9339403,38.7311741],[21.9344988,38.7305532],[21.9351876,38.7306014],[21.9358571,38.7305232],[21.9361843,38.7307452],[21.9363102,38.7307654],[21.9364994,38.7305886],[21.9369726,38.7305339],[21.9370896,38.7304638],[21.9371677,38.7301498],[21.9376677,38.729564],[21.9377225,38.7292586],[21.9385496,38.7288947],[21.938791,38.7285025],[21.9397112,38.7285008],[21.9399898,38.7284156],[21.9404381,38.7284235],[21.9405432,38.7283712],[21.9408294,38.7280159],[21.9405134,38.7274066],[21.9405776,38.7271735],[21.9414052,38.7267916],[21.9416717,38.7267242],[21.9423135,38.7260056],[21.9436025,38.7255778],[21.9438544,38.7256183],[21.9442522,38.7257875],[21.9445401,38.7257745],[21.9446684,38.7257137],[21.9448253,38.72573],[21.9450757,38.7258245],[21.9455716,38.7257791],[21.9459316,38.7256593],[21.9469308,38.7257129],[21.9472469,38.7255202],[21.9476401,38.7254461],[21.9480309,38.7254529],[21.948635,38.7252473],[21.9488508,38.7253412],[21.9492673,38.7260603],[21.9495687,38.726381],[21.9498191,38.7264754],[21.9504376,38.7265674],[21.9508448,38.7268088],[21.9512114,38.7268603],[21.9514273,38.7269542],[21.9515476,38.7271725],[21.9515327,38.7272894],[21.951154,38.7276612],[21.9510094,38.7278929],[21.9510003,38.7286136],[21.9507332,38.7291045],[21.9507625,38.7292852],[21.9510114,38.7294338],[21.9510088,38.7295238],[21.9506612,38.7300133],[21.9504041,38.7305584],[21.9506238,38.730756],[21.9508115,38.7310296],[21.950557,38.7314847],[21.9510564,38.7317187],[21.9512131,38.7326766],[21.9506588,38.7331534],[21.9506889,38.7333071],[21.9508818,38.7334006],[21.9512163,38.7333704],[21.9517286,38.7331541],[21.9524835,38.7325006],[21.9526167,38.7322687],[21.9529361,38.7319589],[21.9532147,38.7318737],[21.9535353,38.7319243],[21.9541778,38.7327916],[21.9541723,38.7333862],[21.9543578,38.7333354],[21.9544887,38.7331845],[21.9549167,38.7331019],[21.9555339,38.7332388],[21.9562739,38.7331076],[21.9569753,38.7331198],[21.9582377,38.7336285],[21.958981,38.7337856],[21.9594634,38.7338121],[21.959781,38.7335653],[21.9598536,38.7334404],[21.9597903,38.7332411],[21.9592961,38.732818],[21.958953,38.7323435],[21.9584224,38.7319918],[21.9582126,38.7316818],[21.9574099,38.7311902],[21.9573103,38.7310533],[21.9573742,38.7304237],[21.9575396,38.7298679],[21.9574548,38.7296141],[21.957218,38.7294478],[21.9572732,38.7291244],[21.9573578,38.7289817],[21.9574503,38.7289653],[21.9574947,38.7290201],[21.95743,38.7292713],[21.9578488,38.7295129],[21.9578853,38.7294415],[21.9577739,38.7293134],[21.957823,38.7292061],[21.958462,38.728983],[21.9583922,38.7294143],[21.9585889,38.7297781],[21.9583334,38.7302692],[21.9583717,38.7305402],[21.9587074,38.7308705],[21.9592761,38.7310966],[21.9593796,38.7310984],[21.9593701,38.7310262],[21.9591121,38.730391],[21.9595912,38.730129],[21.9598662,38.7297644],[21.9600624,38.7297408],[21.9606472,38.729805],[21.9607865,38.7297624],[21.9609766,38.7295495],[21.961042,38.7296768],[21.9609819,38.7297658],[21.9604991,38.7299196],[21.960382,38.7303951],[21.9605619,38.7305424],[21.9606896,38.7309051],[21.9608915,38.7310888],[21.9612392,38.7309957],[21.9617433,38.7310676],[21.9621248,38.7310022],[21.9622086,38.731292],[21.9623414,38.7314745],[21.9621797,38.7319042],[21.9625029,38.7322702],[21.9626431,38.7330025],[21.9627456,38.7330404],[21.9628741,38.7329705],[21.9631864,38.7325074],[21.9631626,38.7321286],[21.9629385,38.7319174],[21.9633857,38.7315648],[21.9634478,38.7314037],[21.9633719,38.7312402],[21.9634135,38.7309886],[21.9637562,38.7306702],[21.9642667,38.7305169],[21.9641443,38.7303706],[21.9639624,38.7302953],[21.9639115,38.7300602],[21.964085,38.7296217],[21.9647036,38.7293081],[21.9647297,38.7292004],[21.9645764,38.7289274],[21.9646599,38.7288208],[21.9647631,38.7288316],[21.9648745,38.7289597],[21.9651234,38.7299191],[21.9653484,38.7300221],[21.9654008,38.7293923],[21.9655155,38.7294033],[21.9656333,38.7297117],[21.9657886,38.7299127],[21.9658369,38.7298324],[21.9657595,38.7297229],[21.9657638,38.7295698],[21.9658463,38.7294992],[21.9659173,38.7295455],[21.9661161,38.7298373],[21.96623,38.7298753],[21.9667387,38.729785],[21.9669298,38.7295361],[21.9674641,38.7293561],[21.9679797,38.7290227],[21.967646,38.7286204],[21.9677065,38.7285134],[21.9679289,38.7284677],[21.9684769,38.7290178],[21.9686379,38.7290206]]},{"id":17954,"author":"AnaDigit","name_GR":"\u0395\u03c5\u03c1\u03c5\u03c4\u03b1\u03bd\u03af\u03b1: E4 \u039b\u03b5\u03cd\u03ba\u03b1-\u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03b7 \u039f\u03be\u03c5\u03ac","description_GR":"\u03a0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b9\u03ba\u03c1\u03bf\u03cd \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03bf\u03c2","path":"STEREA\/Sterea_Evrytania_E4_Lefka_Grameni","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":6307,"name_EN":"Evrytania: E4 Lefka-Grameni Oxia","description_EN":"E4Lefka-Grameni","ascent_time":110,"descent_time":110,"marker":"E4","level":11,"ascent":337,"descent":289,"maxelev":1204,"minelev":1066,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(21.96837 38.72276,22.00807 38.73573)","views":14,"millestones":"0,21.9686436,38.7290207#1,21.9694930,38.7241711#2,21.9779243,38.7225576#3,21.9875310,38.7241464#4,21.9921459,38.7312922#5,22.0018308,38.7305938#6.3,22.0070638,38.7363950","x":21.9868945,"y":38.7233671,"coor":[[21.9686436,38.7290207],[21.9687114,38.7292292],[21.9685522,38.7294066],[21.9686913,38.7295352],[21.9691019,38.7296594],[21.9694067,38.729863],[21.9696916,38.729958],[21.9697816,38.7298244],[21.9695683,38.7296405],[21.9695289,38.7294055],[21.9696991,38.7290841],[21.9700506,38.728856],[21.9697481,38.7285714],[21.9697731,38.7284997],[21.9700487,38.7282252],[21.9702663,38.7278505],[21.9699511,38.7276108],[21.9695762,38.7272033],[21.969974,38.7273724],[21.970101,38.7273566],[21.9701605,38.7272855],[21.9700452,38.7268871],[21.9701428,38.7266905],[21.970095,38.7263473],[21.9703471,38.7255678],[21.9703956,38.725073],[21.9697112,38.7244665],[21.9693918,38.7243708],[21.9693829,38.7242805],[21.9695533,38.7241123],[21.9698272,38.7241892],[21.9700638,38.7243645],[21.9705078,38.7245253],[21.9711874,38.7248976],[21.9715326,38.7248945],[21.9718341,38.7248097],[21.9723844,38.7248733],[21.9724444,38.7247842],[21.9722768,38.7246101],[21.9721907,38.7243608],[21.9723208,38.7242369],[21.9729326,38.7241575],[21.9736109,38.7241692],[21.9742437,38.7237567],[21.9747281,38.723711],[21.9748942,38.7236463],[21.9751029,38.7234337],[21.975166,38.7232365],[21.9750216,38.7230538],[21.9749807,38.7228729],[21.9753383,38.7224286],[21.9756868,38.7223085],[21.976667,38.7222173],[21.9769422,38.7222491],[21.9774069,38.7224914],[21.97798,38.7225644],[21.9787429,38.7228389],[21.9797138,38.7234864],[21.9806264,38.7237545],[21.9813847,38.7237856],[21.9819761,38.7236156],[21.982125,38.7236362],[21.9825027,38.7241113],[21.9826622,38.7241681],[21.9832275,38.7241058],[21.983519,38.7239666],[21.9837037,38.7239428],[21.9847619,38.723943],[21.9854997,38.7238837],[21.9860331,38.7237307],[21.9868945,38.7233671],[21.9872407,38.723328],[21.9874098,38.723448],[21.9875281,38.7241529],[21.9882541,38.7249223],[21.9886594,38.7252356],[21.9889847,38.725944],[21.989231,38.7261825],[21.9892909,38.7265079],[21.9899212,38.7265909],[21.9908221,38.7272821],[21.991056,38.7275565],[21.9909734,38.7280416],[21.9905423,38.7286469],[21.9908946,38.7292116],[21.990934,38.7294466],[21.9908595,38.7296435],[21.9909047,38.7298245],[21.9912345,38.7303708],[21.9912679,38.7308219],[21.9913806,38.730905],[21.9918617,38.7309763],[21.9920197,38.7310871],[21.992328,38.731579],[21.9928039,38.7318395],[21.9930447,38.7322761],[21.9933411,38.7323713],[21.9945599,38.7323922],[21.9950403,38.7324906],[21.9953233,38.7326576],[21.9955427,38.7326253],[21.9958745,38.7322796],[21.9965462,38.7321199],[21.9968494,38.731972],[21.9973444,38.7315479],[21.9977996,38.7313124],[21.9981313,38.7309667],[21.9983856,38.730926],[21.9996388,38.7309475],[22.0008577,38.7305539],[22.0011531,38.7304778],[22.0014866,38.7304835],[22.0020224,38.7306549],[22.0022499,38.7307489],[22.0028792,38.7312822],[22.0031191,38.7317549],[22.003809,38.7317667],[22.0041394,38.7318804],[22.0042279,38.7320081],[22.0041474,38.7324212],[22.0045475,38.7333381],[22.0046932,38.7334757],[22.0053866,38.7336993],[22.0055721,38.7332339],[22.006064,38.732918],[22.0062815,38.7329577],[22.0064052,38.7330589],[22.0066642,38.7336761],[22.0070986,38.7337736],[22.0071698,38.7336937],[22.0071233,38.7334271],[22.0074388,38.7335361],[22.0077468,38.734537],[22.0077143,38.7348789],[22.0075828,38.7350568],[22.0069878,38.735353],[22.0066004,38.7356348],[22.0065624,38.7357603],[22.0068113,38.7359087],[22.0069864,38.7361144],[22.0070638,38.736395]]}],{"extent":[21.67718,38.42888,22.50133,38.97945],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"openurl"},"sort":{"type":"byname"}},"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}}}); 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_E4_Sterea = new getPoiCollection("E4_Sterea",[{"name":"\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2
\u039f\u03bc\u03b7\u03c1\u03b9\u03ba\u03ae \u039a\u03c1\u03af\u03c3\u03c3\u03b1","owner":"AnaDigit","x":22.463438,"y":38.465868,"photo":"AgGeorgios_Chriso","type":203,"zoom_level":14,"id":45,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/3\/gh351.jsp?obj_id=2428","hlink_EN":"http:\/\/odysseus.culture.gr\/h\/3\/eh351.jsp?obj_id=2428","description":"\u03a0\u03b1\u03bb\u03b9\u03ac \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7 \u03c1\u03ac\u03c7\u03b7 \u03cc\u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03ba\u03b1\u03c4\u03bf\u03af\u03ba\u03b7\u03c3\u03b7\u03c2, \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03c3\u03c5\u03bd\u03b7\u03b3\u03bf\u03c1\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03c0\u03b9\u03b8\u03b1\u03bd\u03ae \u03b8\u03ad\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039a\u03c1\u03af\u03c3\u03c3\u03b1\u03c2 \u03ae \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03ae\u03c2 \u03c4\u03b7\u03c2. \u0397 \u03b8\u03ad\u03c3\u03b7 \u03b5\u03b3\u03ba\u03b1\u03bb\u03b5\u03af\u03c6\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b1 \u03bc\u03c5\u03ba\u03b7\u03bd\u03b1\u03ca\u03ba\u03ac \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03be\u03b1\u03bd\u03b1\u03ba\u03b1\u03c4\u03bf\u03b9\u03ba\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b1 \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ac.","height":0,"width":0},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1\u03c2
\u039a\u03c1\u03ae\u03bd\u03b7","owner":"AnaDigit","x":22.417205,"y":38.548363,"photo":"ELEONAS_Krini_22_417205_38_548363","type":0,"zoom_level":14,"id":62,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03ba\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03b7 \u03b2\u03cc\u03c1\u03b5\u03b9\u03b1 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03c4\u03bf\u03c5 \u03c7\u03c9\u03c1\u03b9\u03bf\u03cd \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1\u03c2.","height":444,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039c\u03bf\u03bd\u03ae \u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03bf\u03c5 \u0397\u03bb\u03b9\u03bf\u03cd
\u0386\u03bc\u03c6\u03b9\u03c3\u03c3\u03b1","owner":"AnaDigit","x":22.44183,"y":38.504957,"photo":"PARNASOS_Moni_Prf_Ilia_22_44183_38_504957","type":9,"zoom_level":13,"id":69,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bc\u03bf\u03bd\u03ae \u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03bf\u03c5 \u0397\u03bb\u03b9\u03bf\u03cd, \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03b5\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1 \u03c4\u03b7\u03c2 \u0386\u03bc\u03c6\u03b9\u03c3\u03c3\u03b1\u03c2","height":402,"width":512},{"name":"\u0394\u0395\u039b\u03a6\u039f\u0399
\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u0391\u03c0\u03cc\u03bb\u03bb\u03c9\u03bd\u03b1","owner":"A. Bonetti","x":22.500950813291,"y":38.482513905992,"photo":"Delphi 01","type":10,"zoom_level":14,"id":163,"hlink_GR":"","hlink_EN":"","description":"","height":334,"width":511},{"name":"\u0394\u0395\u039b\u03a6\u039f\u0399
\u03a4\u03bf \u03a3\u03c4\u03ac\u03b4\u03b9\u03bf","owner":"A. Bonetti","x":22.498976707456,"y":38.482009993478,"photo":"Delphi 02","type":10,"zoom_level":11,"id":164,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u039f\u0399\u03a4\u0397
\u039b\u03b5\u03b9\u03b2\u03b1\u03b4\u03b9\u03ad\u03c2
\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u0393\u03c1\u03b5\u03b2\u03b5\u03bd\u03cc","owner":"A. Bonetti","x":22.274872779846,"y":38.822585918802,"photo":"Mt Iti - Greveno and alpine lake 01","type":0,"zoom_level":11,"id":214,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bb\u03af\u03bc\u03bd\u03b7 \u03c3\u03c4\u03b9\u03c2 \u039b\u03b5\u03b9\u03b2\u03b1\u03b4\u03b9\u03ad\u03c2","height":333,"width":512},{"name":"\u0392\u0391\u03a1\u0394\u039f\u03a5\u03a3\u0399\u0391
\u03a4\u03bf \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03b1\u03c0\u03bf \u03c4\u03b1 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ac","owner":"AnaDigit","x":22.106601715088,"y":38.684399209886,"photo":"Vardousia1","type":0,"zoom_level":12,"id":339,"hlink_GR":"","hlink_EN":"","description":"","height":240,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039f\u03b9 \u0394\u03b5\u03bb\u03c6\u03bf\u03af \u03b1\u03c0\u03cc \u03c8\u03b7\u03bb\u03ac","owner":"AnaDigit","x":22.50262451172,"y":38.486108379726,"photo":"Parnassos_Delfi5","type":10,"zoom_level":12,"id":342,"hlink_GR":"","hlink_EN":"","description":"","height":288,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039b\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5
\u03c0\u03cd\u03c1\u03b3\u03bf\u03c5 \u03c3\u03c4\u03bf \u039a\u03c1\u03cc\u03ba\u03b9","owner":"AnaDigit","x":22.484256744384,"y":38.515361398105,"photo":"Parnassos_Marmara","type":10,"zoom_level":13,"id":378,"hlink_GR":"","hlink_EN":"","description":"","height":321,"width":512},{"name":"\u03a6\u03a9\u039a\u0399\u0394\u0391
\u0399\u03c4\u03ad\u03b1
\u03a7\u03c1\u03c5\u03c3\u03cc
\u0394\u03b5\u03bb\u03c6\u03bf\u03af","owner":"AnaDigit","x":22.40559291839,"y":38.42938214647,"photo":"Fokida_Itea_Chriso_Delfi","type":0,"zoom_level":12,"id":599,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u0399\u03c4\u03ad\u03b1, \u03c4\u03bf \u03a7\u03c1\u03c5\u03c3\u03cc \u03ba\u03b1\u03b9 \u03bf\u03b9 \u0394\u03b5\u03bb\u03c6\u03bf\u03af \u03ba\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b5\u03c0\u03af\u03b2\u03bb\u03b5\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03bf\u03cd","height":367,"width":600},{"name":"\u0395\u03a5\u03a1\u03a5\u03a4\u0391\u039d\u0399\u0391
\u039c\u03bd\u03b7\u03bc\u03b5\u03af\u03bf \u03bc\u03ac\u03c7\u03b7\u03c2 \u0391\u03b9\u03c4\u03c9\u03bb\u03ce\u03bd \u03ba\u03b1\u03c4\u03ac \u0393\u03b1\u03bb\u03b1\u03c4\u03ce\u03bd \u03c4\u03bf 279 \u03c0.\u03a7.","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":21.876559,"y":38.864435,"photo":"Mnimeio_Kokalia","type":9,"zoom_level":14,"id":650,"hlink_GR":"","hlink_EN":"","description":"","height":375,"width":500},{"name":"\u0395\u03a5\u03a1\u03a5\u03a4\u0391\u039d\u0399\u0391
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c4\u03c9\u03bd \u039a\u03bf\u03ba\u03ba\u03b1\u03bb\u03b9\u03ce\u03bd","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":21.889450073242,"y":38.847958526455,"photo":"Korifogrami_Kokalia1","type":0,"zoom_level":12,"id":651,"hlink_GR":"","hlink_EN":"","description":"","height":384,"width":512},{"name":"\u0395\u03a5\u03a1\u03a5\u03a4\u0391\u039d\u0399\u0391
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf \u0391\u03bb\u03bf\u03b3\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":21.930090904236,"y":38.816467059324,"photo":"Fhtiotida_Alogovouni","type":0,"zoom_level":13,"id":652,"hlink_GR":"","hlink_EN":"","description":"","height":384,"width":512},{"name":"\u039c\u0391\u039d\u0399\u03a4\u0391\u03a1\u0399\u0391
Amanita muscaria","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":22.180723,"y":38.7650868,"photo":"Amanita_Muscaria","type":6,"zoom_level":14,"id":706,"hlink_GR":"","hlink_EN":"","description":"","height":491,"width":522},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039c\u03c0\u03b1\u03c1\u03bf\u03c5\u03c4\u03bf\u03c3\u03c0\u03b7\u03bb\u03b9\u03ac","owner":"AnaDigit","x":22.467669963839,"y":38.633059199552,"photo":"Parnassos_Baroutospilia","type":0,"zoom_level":12,"id":740,"hlink_GR":"http:\/\/www.routes.gr\/?Page=el\/Hiking\/Parnassos-Anavasi-Sti-Baroutospilia","hlink_EN":"","description":"","height":600,"width":472},{"name":"\u03a0\u0391\u03a1\u03a3\u03a3\u039f\u03a3
Mountain bike","owner":"bikenature","x":22.493704,"y":38.516229,"photo":"mtb_bikenature_parnassos","type":0,"zoom_level":14,"id":976,"hlink_GR":"","hlink_EN":"","description":"","height":374,"width":800},{"name":"\u039a\u0391\u039b\u039b\u0399\u0394\u03a1\u039f\u039c\u039f
\u0398\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7 \u03bb\u03b5\u03ba\u03ac\u03bd\u03b7
\u03c4\u03bf\u03c5 \u0392\u03bf\u03b9\u03c9\u03c4\u03b9\u03ba\u03bf\u03cd \u039a\u03b7\u03c6\u03b9\u03c3\u03bf\u03cd","owner":"\u0392. \u039a\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03bf\u03c2","x":22.479501,"y":38.735688,"photo":"Kallidromo_MTB_Elefth_Damasta5","type":0,"zoom_level":13,"id":1209,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":960},{"name":"\u039a\u0391\u039b\u039b\u0399\u0394\u03a1\u039f\u039c\u039f
\u0391\u03bd\u03b5\u03b2\u03b1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03b4\u03ac\u03c3\u03b7
\u03c4\u03b7\u03c2 \u0394\u03b1\u03bc\u03ac\u03c3\u03c4\u03b1\u03c2","owner":"\u0392. \u039a\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03bf\u03c2","x":22.499497,"y":38.78366,"photo":"Kallidromo_MTB_Elefth_Damasta1","type":0,"zoom_level":14,"id":1210,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":503},{"name":"\u039a\u0391\u039b\u039b\u0399\u0394\u03a1\u039f\u039c\u039f
\u03a3\u03c4\u03b7 \u039d\u03b5\u03c5\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7
\u03bc\u03b5 \u03b8\u03ad\u03b1 \u03c4\u03b7 \u0393\u03ba\u03b9\u03ce\u03bd\u03b1","owner":"\u0392. \u039a\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03bf\u03c2","x":22.459603,"y":38.743574,"photo":"Kallidromo_MTB_Elefth_Damasta2","type":0,"zoom_level":14,"id":1211,"hlink_GR":"","hlink_EN":"","description":"","height":455,"width":800},{"name":"\u039a\u0391\u039b\u039b\u0399\u0394\u03a1\u039f\u039c\u039f
\u03a3\u03c4\u03b7 \u03bb\u03af\u03bc\u03bd\u03b7 \u039d\u03b5\u03c5\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2","owner":"\u0392. \u039a\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03bf\u03c2","x":22.494037,"y":38.750614,"photo":"Kallidromo_MTB_Elefth_Damasta4","type":0,"zoom_level":13,"id":1212,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a0\u03b5\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03b9\u03ce\u03bd\u03b1\u03c2","owner":"\u0394. \u0396\u03ad\u03c0\u03c0\u03bf\u03c2","x":22.398348,"y":38.474141,"photo":"Zeppos_Peristerionas","type":0,"zoom_level":14,"id":1563,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u039c\u03b1\u03c1\u03b9\u03bf\u03bb\u03ac\u03c4\u03b1\u03c2","owner":"AnaDigit","x":22.4551116,"y":38.6341065,"photo":"AgGeorgios_Mariolatas","type":9,"zoom_level":15,"id":3187,"hlink_GR":"","hlink_EN":"","description":"","height":480,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2 \u039c\u03b1\u03c1\u03b9\u03bf\u03bb\u03ac\u03c4\u03b1\u03c2","owner":"AnaDigit","x":22.4498299,"y":38.6419664,"photo":"PrfIlias_Mariolatas","type":9,"zoom_level":15,"id":3188,"hlink_GR":"","hlink_EN":"","description":"","height":581,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2 \u0392\u03ac\u03c1\u03b3\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.4307584,"y":38.6518567,"photo":"PrfIlias_Varianis","type":9,"zoom_level":15,"id":3189,"hlink_GR":"","hlink_EN":"","description":"","height":458,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2 \u0392\u03ac\u03c1\u03b3\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.4270059,"y":38.641144,"photo":"Vargiani_AgAthanasios","type":9,"zoom_level":15,"id":3190,"hlink_GR":"","hlink_EN":"","description":"","height":515,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u0392\u03ac\u03c1\u03b3\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.423894,"y":38.642851,"photo":"Vargiani_AgParaskevi","type":9,"zoom_level":15,"id":3191,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0393\u03ad\u03bd\u03b5\u03c3\u03b7 \u0398\u03b5\u03bf\u03c4\u03cc\u03ba\u03bf\u03c5 \u03a0\u03b1\u03bb\u03b9\u03ac\u03c2 \u039c\u03b1\u03c1\u03b9\u03bf\u03bb\u03ac\u03c4\u03b1\u03c2","owner":"AnaDigit","x":22.4646473,"y":38.6534901,"photo":"Palia_Mariolata_Genisis_Theotokou","type":9,"zoom_level":15,"id":3194,"hlink_GR":"","hlink_EN":"","description":"","height":638,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039c. \u03a0\u0391\u039d\u0391\u0393\u0399\u0391\u03a3 \u03a0\u0391\u039d\u0391\u03a3\u0391\u03a1\u0397\u03a3","owner":"AnaDigit","x":22.45275,"y":38.6611041,"photo":"moni_panassaris","type":9,"zoom_level":14,"id":3197,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039d\u03b5\u03ce\u03bd\u03bf\u03c2","owner":"AnaDigit","x":22.4698984,"y":38.6525935,"photo":"Parnassos_Vion","type":10,"zoom_level":14,"id":3200,"hlink_GR":"","hlink_EN":"","description":"","height":725,"width":800},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03b7 \u03bc\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1","owner":"AnaDigit","x":22.341032,"y":38.738142,"photo":"mousiki_gefyra2","type":0,"zoom_level":16,"id":4059,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.33845,"y":38.736905,"photo":"xylini_gefyra_12","type":0,"zoom_level":17,"id":4060,"hlink_GR":"","hlink_EN":"","description":"","height":929,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.337015,"y":38.736382,"photo":"xylini_gefyra_21","type":0,"zoom_level":17,"id":4061,"hlink_GR":"","hlink_EN":"","description":"","height":516,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03ba\u03b1\u03c6\u03ad \"\u03c4\u03bf \u0393\u03bf\u03cd\u03c0\u03b1\u03c4\u03bf\"","owner":"AnaDigit","x":22.335605,"y":38.735115,"photo":"goupato1","type":0,"zoom_level":16,"id":4062,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03c4\u03bf Jacouzi","owner":"AnaDigit","x":22.332033,"y":38.733417,"photo":"jacouzi1","type":0,"zoom_level":16,"id":4063,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":741},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03bf \u03a4\u03ac\u03bb\u03c9\u03c2","owner":"AnaDigit","x":22.332133,"y":38.733343,"photo":"talos_katouron1","type":0,"zoom_level":17,"id":4064,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":926},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03b7 \u03b8\u03ad\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u039c\u03b5\u03c3\u03cc\u03c1\u03b1\u03c7\u03bf","owner":"AnaDigit","x":22.335957,"y":38.731728,"photo":"thronos_11","type":0,"zoom_level":15,"id":4065,"hlink_GR":"","hlink_EN":"","description":"","height":535,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03bf \u0398\u03c1\u03cc\u03bd\u03bf\u03c2 \u03c4\u03bf\u03c5 \u0394\u03af\u03b1","owner":"AnaDigit","x":22.340987,"y":38.736798,"photo":"thronos_dia1","type":0,"zoom_level":15,"id":4066,"hlink_GR":"","hlink_EN":"","description":"","height":425,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.33559,"y":38.734925,"photo":"xylini_gefyra_31","type":0,"zoom_level":17,"id":4067,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.334427,"y":38.734282,"photo":"xylini_gefyra_41","type":0,"zoom_level":17,"id":4068,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.333602,"y":38.734325,"photo":"xylini_gefyra_51","type":0,"zoom_level":17,"id":4069,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.339008,"y":38.737087,"photo":"K3II31871","type":450,"zoom_level":18,"id":4070,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.34109655885,"y":38.736646845033,"photo":"K3II32481","type":450,"zoom_level":18,"id":4071,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.342668,"y":38.736408,"photo":"K3II32691","type":450,"zoom_level":18,"id":4072,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.342905,"y":38.736458,"photo":"K3II32711","type":450,"zoom_level":18,"id":4073,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.34316,"y":38.737177,"photo":"K3II32721","type":450,"zoom_level":18,"id":4074,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.343012,"y":38.73775,"photo":"K3II32741","type":450,"zoom_level":18,"id":4075,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.342727,"y":38.738482,"photo":"K3II32751","type":450,"zoom_level":18,"id":4076,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.343528,"y":38.738543,"photo":"K3II32761","type":450,"zoom_level":18,"id":4077,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.322292,"y":38.740937,"photo":"K3II33011","type":450,"zoom_level":18,"id":4078,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.332963,"y":38.737912,"photo":"K3II33061","type":450,"zoom_level":18,"id":4079,"hlink_GR":"","hlink_EN":"","description":"","height":786,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a6\u03b1\u03bd\u03c4\u03b1\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.341528,"y":38.736667,"photo":"K3II32661","type":450,"zoom_level":18,"id":4080,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u03a6\u03b1\u03bd\u03c4\u03b1\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.342183,"y":38.737118,"photo":"K3II32681","type":450,"zoom_level":18,"id":4081,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1 \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae\u03c2","owner":"AnaDigit","x":22.329268,"y":38.71148,"photo":"K3II32831","type":9,"zoom_level":15,"id":4082,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bd\u03b7\u03bc\u03b5\u03bb\u03b9\u03bf \u03c0\u03b5\u03c3\u03cc\u03bd\u03c4\u03c9\u03bd \u03bc\u03ac\u03c7\u03b7\u03c2 \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae\u03c2","owner":"AnaDigit","x":22.329673,"y":38.708817,"photo":"K3II32872","type":9,"zoom_level":15,"id":4083,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u0391\u03c3\u03b2\u03b5\u03c3\u03c4\u03bf\u03ba\u03ac\u03bc\u03b9\u03bd\u03bf \u0394\u03b7\u03bc\u03ac\u03ba\u03b7","owner":"AnaDigit","x":22.32739,"y":38.724282,"photo":"K3II32271","type":9,"zoom_level":16,"id":4084,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b5\u03c1\u03c0\u03b1\u03c4\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c3\u03c4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac \u03c4\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9\u03b1","owner":"AnaDigit","x":22.33362,"y":38.729233,"photo":"K3II32381","type":9,"zoom_level":15,"id":4085,"hlink_GR":"","hlink_EN":"","description":"","height":729,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u0397 \u039b\u03b9\u03b1\u03bd\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","owner":"AnaDigit","x":22.32169,"y":38.73965,"photo":"K3II32991","type":1001,"zoom_level":16,"id":4086,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u0397 \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.35065,"y":38.738858,"photo":"Oeta_Pavliani_AgParaskevi1","type":9,"zoom_level":15,"id":4087,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.325378,"y":38.721128,"photo":"K3II30891","type":450,"zoom_level":17,"id":4088,"hlink_GR":"","hlink_EN":"","description":"","height":660,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","owner":"AnaDigit","x":22.30354,"y":38.759603,"photo":"K3II31431","type":450,"zoom_level":17,"id":4089,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u0395\u0394 \u039f\u03af\u03c4\u03b7\u03c2","owner":"AnaDigit","x":22.298019791005,"y":38.771886666667,"photo":"K3II31561","type":450,"zoom_level":16,"id":4090,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b5\u03c1\u03b4\u03b9\u03ba\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","owner":"AnaDigit","x":22.261438,"y":38.847397,"photo":"Oeta_Amaliovrysi_21","type":1001,"zoom_level":15,"id":4091,"hlink_GR":"","hlink_EN":"","description":"","height":1600,"width":1064},{"name":"\u039f\u0399\u03a4\u0397
\u0391\u03bc\u03b1\u03bb\u03b9\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","owner":"AnaDigit","x":22.261438,"y":38.847397,"photo":"Oeta_Amaliovrysi_22","type":1001,"zoom_level":15,"id":4092,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u039f\u0399\u03a4\u0397
\u0397 \u03bb\u03af\u03bc\u03bd\u03b7 \u03c3\u03c4\u03b9\u03c2 \u039b\u03b5\u03b9\u03b2\u03b1\u03b4\u03b9\u03ad\u03c2","owner":"AnaDigit","x":22.274094164021,"y":38.820733435832,"photo":"K3II31601","type":1001,"zoom_level":15,"id":4093,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03c4\u03b7\u03bd \u0391\u03bc\u03b1\u03bb\u03b9\u03cc\u03bb\u03b1\u03ba\u03ba\u03b1","owner":"AnaDigit","x":22.263454560851,"y":38.846756711052,"photo":"Oeta_Amaliolaka1","type":0,"zoom_level":15,"id":4094,"hlink_GR":"","hlink_EN":"","description":"","height":529,"width":1200},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.322525,"y":38.720398,"photo":"20161105_0757421","type":450,"zoom_level":18,"id":4095,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":950},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.306448,"y":38.717552,"photo":"20161105_0907511","type":450,"zoom_level":18,"id":4096,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":924},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.316891,"y":38.717869,"photo":"20161105_0933171","type":450,"zoom_level":17,"id":4097,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.325186,"y":38.718605,"photo":"20161105_0938331","type":450,"zoom_level":18,"id":4098,"hlink_GR":"","hlink_EN":"","description":"","height":880,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.325233,"y":38.721958,"photo":"20161105_0942161","type":450,"zoom_level":17,"id":4099,"hlink_GR":"","hlink_EN":"","description":"","height":925,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.329803,"y":38.722416,"photo":"20161105_0945541","type":450,"zoom_level":16,"id":4100,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":982},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.267168,"y":38.838593,"photo":"20161105_1527131","type":450,"zoom_level":18,"id":4101,"hlink_GR":"","hlink_EN":"","description":"","height":945,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.265644,"y":38.840019,"photo":"20161105_1530251","type":450,"zoom_level":17,"id":4102,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":952},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u039f\u03af\u03c4\u03b7","owner":"AnaDigit","x":22.239546,"y":38.864452,"photo":"20161105_1702281","type":450,"zoom_level":18,"id":4103,"hlink_GR":"","hlink_EN":"","description":"","height":642,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.341446,"y":38.738415,"photo":"20161106_1449021","type":450,"zoom_level":18,"id":4104,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":810},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.334055,"y":38.729813,"photo":"20161106_1203081","type":450,"zoom_level":18,"id":4105,"hlink_GR":"","hlink_EN":"","description":"","height":715,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.334055,"y":38.729813,"photo":"20161106_1202421","type":450,"zoom_level":18,"id":4106,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":859},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.330225,"y":38.732704,"photo":"20161106_0930141","type":450,"zoom_level":18,"id":4107,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a6\u03b9\u03bb\u03bf\u03ba\u03c4\u03af\u03c4\u03b5\u03b9\u03bf \u0394\u03c1\u03cc\u03bc\u03bf","owner":"AnaDigit","x":22.325792,"y":38.728035,"photo":"20161106_1019091","type":450,"zoom_level":18,"id":4108,"hlink_GR":"","hlink_EN":"","description":"","height":957,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03c4\u03bf \"\u03c0\u03bf\u03b4\u03bf\u03c3\u03c6\u03b1\u03b9\u03c1\u03ac\u03ba\u03b9\"","owner":"AnaDigit","x":22.335511910073,"y":38.735047705732,"photo":"20161106_0915411","type":0,"zoom_level":15,"id":4109,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.33201,"y":38.733585,"photo":"20161106_0924501","type":0,"zoom_level":18,"id":4110,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03c4\u03b1 \u03b4\u03b5\u03bd\u03c4\u03c1\u03cc\u03c3\u03c0\u03b9\u03c4\u03b1","owner":"AnaDigit","x":22.329666,"y":38.733089,"photo":"20161106_0932521","type":0,"zoom_level":18,"id":4111,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":716},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2: \u03c4\u03b1 \u03b4\u03b5\u03bd\u03c4\u03c1\u03cc\u03c3\u03c0\u03b9\u03c4\u03b1","owner":"AnaDigit","x":22.328951,"y":38.733227,"photo":"20161106_0935451","type":0,"zoom_level":18,"id":4112,"hlink_GR":"","hlink_EN":"","description":"","height":711,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.327152,"y":38.728729,"photo":"20161106_1015351","type":0,"zoom_level":18,"id":4113,"hlink_GR":"","hlink_EN":"","description":"","height":693,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \"\u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9\" \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","owner":"AnaDigit","x":22.324726,"y":38.726879,"photo":"20161106_1025211","type":0,"zoom_level":18,"id":4114,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3 \u039f\u03af\u03c4\u03b7\u03c2","owner":"AnaDigit","x":22.271793,"y":38.83206,"photo":"Oeta_eos_refuge1","type":447,"zoom_level":15,"id":4115,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u039f\u03c1\u03b5\u03b9\u03b2\u03b1\u03c4\u03b9\u03ba\u03cc\u03c2 \u03be\u03b5\u03bd\u03ce\u03bd\u03b1\u03c2 \"\u03a6\u03bf\u03af\u03b2\u03bf\u03c2\"","owner":"AnaDigit","x":22.333235,"y":38.736425,"photo":"Oeta_Fivos_hostel1","type":447,"zoom_level":15,"id":4116,"hlink_GR":"","hlink_EN":"","description":"","height":642,"width":800},{"name":"\u039f\u0399\u03a4\u0397
\u0397 \u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1 \u03c4\u03b7\u03c2 \u039f\u03af\u03c4\u03b7\u03c2","owner":"AnaDigit","x":22.299075090229,"y":38.771811548171,"photo":"oeta_katavothra1","type":73,"zoom_level":14,"id":4117,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u039f\u0399\u03a4\u0397
\u03a3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039f\u03af\u03c4\u03b7\u03c2","owner":"AnaDigit","x":22.298385,"y":38.736593,"photo":"K3II31281","type":0,"zoom_level":16,"id":4118,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1","owner":"AnaDigit","x":22.301448,"y":38.757272,"photo":"K3II31421","type":0,"zoom_level":15,"id":4119,"hlink_GR":"","hlink_EN":"","description":"","height":509,"width":1600},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.340278,"y":38.736944,"photo":"20161106_1431421","type":450,"zoom_level":18,"id":4120,"hlink_GR":"","hlink_EN":"","description":"","height":470,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.340278,"y":38.736944,"photo":"20161106_1432521","type":450,"zoom_level":18,"id":4121,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.345278,"y":38.739444,"photo":"20161106_1512501","type":450,"zoom_level":18,"id":4122,"hlink_GR":"","hlink_EN":"","description":"","height":914,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.345278,"y":38.739444,"photo":"20161106_1513301","type":450,"zoom_level":18,"id":4123,"hlink_GR":"","hlink_EN":"","description":"","height":988,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.345833,"y":38.739444,"photo":"20161106_1515501","type":450,"zoom_level":18,"id":4124,"hlink_GR":"","hlink_EN":"","description":"","height":702,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.346111,"y":38.739722,"photo":"20161106_1517441","type":450,"zoom_level":18,"id":4125,"hlink_GR":"","hlink_EN":"","description":"","height":447,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.3475,"y":38.739722,"photo":"20161106_1524411","type":450,"zoom_level":18,"id":4127,"hlink_GR":"","hlink_EN":"","description":"","height":626,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.347778,"y":38.739722,"photo":"20161106_1525311","type":450,"zoom_level":18,"id":4128,"hlink_GR":"","hlink_EN":"","description":"","height":471,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.348611,"y":38.74,"photo":"20161106_1528231","type":450,"zoom_level":18,"id":4129,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.348333,"y":38.74,"photo":"20161106_1529091","type":450,"zoom_level":18,"id":4130,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.348611,"y":38.739722,"photo":"20161106_1539001","type":450,"zoom_level":18,"id":4131,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.350833,"y":38.741111,"photo":"20161106_1600401","type":450,"zoom_level":18,"id":4132,"hlink_GR":"","hlink_EN":"","description":"","height":723,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.355556,"y":38.7425,"photo":"20161106_1621071","type":450,"zoom_level":18,"id":4133,"hlink_GR":"","hlink_EN":"","description":"","height":657,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.355833,"y":38.7425,"photo":"20161106_1622361","type":450,"zoom_level":18,"id":4134,"hlink_GR":"","hlink_EN":"","description":"","height":504,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.359167,"y":38.742778,"photo":"20161106_1633471","type":450,"zoom_level":18,"id":4135,"hlink_GR":"","hlink_EN":"","description":"","height":1007,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.36,"y":38.741944,"photo":"20161106_1637431","type":450,"zoom_level":18,"id":4136,"hlink_GR":"","hlink_EN":"","description":"","height":561,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.355833,"y":38.738889,"photo":"20161106_1656251","type":450,"zoom_level":18,"id":4137,"hlink_GR":"","hlink_EN":"","description":"","height":499,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.353611,"y":38.738889,"photo":"20161106_1701032","type":450,"zoom_level":17,"id":4138,"hlink_GR":"","hlink_EN":"","description":"","height":717,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03bf \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u0398\u03b5\u03bf\u03c7\u03ac\u03c1\u03b7","owner":"AnaDigit","x":22.343333,"y":38.739444,"photo":"20161106_1504521","type":9,"zoom_level":16,"id":4139,"hlink_GR":"","hlink_EN":"","description":"","height":636,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03bf \u03ba\u03b1\u03c4\u03b1\u03c1\u03c1\u03b1\u03ba\u03c4\u03bf\u03cd\u03bb\u03b7\u03c2","owner":"AnaDigit","x":22.344444,"y":38.739167,"photo":"20161106_1509181","type":1001,"zoom_level":15,"id":4140,"hlink_GR":"","hlink_EN":"","description":"","height":1449,"width":1000},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c6\u03b1\u03bd\u03c4\u03b1\u03c3\u03af\u03b1","owner":"AnaDigit","x":22.350833,"y":38.741111,"photo":"20161106_1559211","type":0,"zoom_level":17,"id":4141,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039f\u0399\u03a4\u0397
\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","owner":"AnaDigit","x":22.355,"y":38.741944,"photo":"20161106_1617061","type":0,"zoom_level":18,"id":4142,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":758}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathListDivId'))?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('pathListDivId').innerHTML="
E4 Άμπλιανη-Λεύκα
E4 Καρπενήσι-Μυρίκη
E4 Κρίκελλο-Άμπλιανη
E4 Λεύκα-Γραμμένη Οξυά
E4 Μυρίκη-Κρίκελλο
E4 -Καρπενήσι-Νέα Βίνιανη
E4 Καλοσκοπή-51
E4 Στρόμη-Καλοσκοπή
E4 Διάσελο 51-Αγόριανη
E4 Αγόριανη-Δελφοί
E4 Δελφοί-Ιτέα
E4 Αρτοτίνα-Αθαν. Διάκος
E4 Αθανανάσιος Διάκος-Στρόμη
E4 Γραμμένη Οξιά-Αρτοτίνα
";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["E4_Sterea"],pc:["E4_Sterea"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_E4_Sterea.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); }