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_oeta = new getAdventureCollection("oeta",[{"id":16585,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u0391\u03c1\u03b3\u03c5\u03c1\u03bf\u03c7\u03ce\u03c1\u03b9-\u03c0\u03b7\u03b3\u03ae \u0391\u03bc\u03c0\u03b5\u03bb\u03ac\u03ba\u03b9","description_GR":"\u03a0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03b8\u03ad\u03b1 \u03c3\u03c4\u03b7 \u03bb\u03b5\u03ba\u03ac\u03bd\u03b7 \u03c4\u03bf\u03c5 \u03a3\u03c0\u03b5\u03c1\u03c7\u03b5\u03b9\u03bf\u03cd","path":"STEREA\/Sterea_Oeta_Argirochori_Abelaki","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":4187,"name_EN":"Oeta: Argirochori-Abelaki spring","description_EN":"Nice view to the Sperchios valley","ascent_time":105,"descent_time":85,"marker":"Red_dots","level":9,"ascent":566,"descent":31,"maxelev":800,"minelev":244,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25476 38.86473,22.27504 38.87665)","views":28,"millestones":"0,22.2547644,38.8766523#1,22.2601488,38.8730016#2,22.2567824,38.8690166#3,22.2655515,38.8682103#4.2,22.2749963,38.8647301","x":22.2569866,"y":38.8681615,"coor":[[22.2547644,38.8766523],[22.2550224,38.8764759],[22.2556401,38.8761968],[22.256485,38.8760563],[22.2572193,38.8757248],[22.2579225,38.8755326],[22.2579819,38.8754614],[22.2584097,38.8754092],[22.2594081,38.8751177],[22.259678,38.8749235],[22.2602818,38.8747433],[22.2603232,38.8746403],[22.2603936,38.8745873],[22.2605784,38.874572],[22.2608381,38.8743236],[22.2610942,38.8742193],[22.2611784,38.8740764],[22.2613306,38.8739795],[22.2612992,38.8733753],[22.2611164,38.8731924],[22.2606373,38.8734556],[22.2602824,38.8738287],[22.2602022,38.8738095],[22.2601366,38.8736644],[22.2601328,38.8733489],[22.2602222,38.8731836],[22.2604678,38.87298],[22.2604225,38.8729433],[22.260191,38.8729849],[22.259679,38.8731845],[22.2593665,38.8732339],[22.2589202,38.8731011],[22.2583423,38.8731646],[22.2579634,38.8731048],[22.2578034,38.8730484],[22.257533,38.8727921],[22.2573205,38.8725276],[22.2571922,38.872368],[22.2571408,38.8721735],[22.2572546,38.8717607],[22.2576273,38.8716041],[22.2583197,38.8711549],[22.2584624,38.8709768],[22.2584681,38.8707426],[22.2583205,38.8706503],[22.2576903,38.8704967],[22.2573063,38.8701756],[22.2565999,38.8703092],[22.2563123,38.8702869],[22.2559557,38.869786],[22.2559588,38.8696599],[22.2560771,38.8695355],[22.2568741,38.8694663],[22.2570837,38.8693793],[22.2570854,38.8693073],[22.2567304,38.8692119],[22.2567107,38.8690764],[22.2568166,38.8689879],[22.2572114,38.8688676],[22.2569765,38.8685758],[22.2570011,38.8685131],[22.2575083,38.8685117],[22.2569866,38.8681615],[22.2575945,38.8682697],[22.2582975,38.8682711],[22.2587895,38.8684226],[22.2594253,38.868342],[22.259767,38.8685093],[22.2598211,38.8686543],[22.2601244,38.8685056],[22.2600881,38.8685772],[22.2601781,38.8686686],[22.2603505,38.8686892],[22.2608716,38.8685888],[22.2613198,38.8686406],[22.2618173,38.8685669],[22.2619775,38.8686143],[22.2621534,38.8684908],[22.2628945,38.8683486],[22.2631936,38.8683711],[22.2634258,38.8683025],[22.2639686,38.868243],[22.2641512,38.8683178],[22.2642462,38.868202],[22.2644193,38.8681956],[22.2650849,38.8681649],[22.2655564,38.868208],[22.2660683,38.8684859],[22.2663347,38.8684358],[22.2668247,38.8681908],[22.2670214,38.8681577],[22.2671858,38.8680339],[22.2672352,38.8678995],[22.2671478,38.8677],[22.2674437,38.8678576],[22.2682139,38.8679411],[22.2685945,38.8679287],[22.2688387,38.8678422],[22.2691922,38.8675231],[22.2694826,38.8674283],[22.2697294,38.8672337],[22.270439,38.8669649],[22.2706694,38.8669683],[22.2707531,38.8668434],[22.2713353,38.8665997],[22.2713842,38.8664833],[22.2717005,38.8662717],[22.2719544,38.8662574],[22.2720833,38.8661692],[22.2725231,38.8660946],[22.2727748,38.8661705],[22.2729729,38.8660833],[22.2732383,38.8660692],[22.273287,38.8659618],[22.2740129,38.8659725],[22.274164,38.8659207],[22.2740637,38.865775],[22.2741448,38.8657582],[22.2745845,38.8658368],[22.2745989,38.8657199],[22.2748317,38.8656242],[22.2749488,38.8654277],[22.2750245,38.8651585],[22.2749565,38.8649457],[22.2749963,38.8647301]]},{"id":16586,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u0391\u03c1\u03b3\u03c5\u03c1\u03bf\u03c7\u03ce\u03c1\u03b9-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03b5\u03c1\u03af\u03c0\u03bb\u03bf\u03ba\u03b7 \u03bf\u03c1\u03b5\u03b9\u03bd\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"STEREA\/Sterea_Oeta_Argyrochori_Trapeza","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":13956,"name_EN":"Oeta: Argyrochori-HAC refuge","description_EN":"A difficult mountain trip","ascent_time":585,"descent_time":490,"marker":"Red_dots","level":9,"ascent":1871,"descent":350,"maxelev":1780,"minelev":99,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25472 38.83183,22.28936 38.87847)","views":49,"millestones":"0,22.2547644,38.8766523#1,22.2648506,38.8754105#2,22.2692738,38.8780900#3,22.2788242,38.8780435#4,22.2817544,38.8722463#5,22.2821366,38.8673537#6,22.2827748,38.8645925#7,22.2882913,38.8589832#8,22.2884543,38.8508942#9,22.2864800,38.8428029#10,22.2784169,38.8375278#11,22.2706941,38.8412315#12,22.2655121,38.8405251#13,22.2690091,38.8345195#14.0,22.2718927,38.8319484","x":22.2792362,"y":38.8664461,"coor":[[22.2547644,38.8766523],[22.2550224,38.8764759],[22.2556401,38.8761968],[22.256485,38.8760563],[22.2572193,38.8757248],[22.2576759,38.8757181],[22.2582851,38.8757903],[22.2589055,38.8756374],[22.2590852,38.875595],[22.2596046,38.8755667],[22.2599988,38.8754735],[22.2602439,38.875351],[22.2604335,38.8751375],[22.2610668,38.875165],[22.2611809,38.8752568],[22.2613638,38.8753226],[22.262033,38.8752965],[22.2624805,38.8749067],[22.2632175,38.8749357],[22.2635071,38.8748769],[22.2637291,38.8747541],[22.2638969,38.8747295],[22.2640219,38.8748035],[22.2642296,38.8752661],[22.2644337,38.8754043],[22.2654247,38.875419],[22.2657032,38.8753421],[22.2659098,38.8753812],[22.2664495,38.8759388],[22.2671326,38.8762914],[22.2675217,38.8764053],[22.2676885,38.8766601],[22.2678702,38.8767709],[22.2687149,38.8766392],[22.2694926,38.8764165],[22.2697457,38.8764383],[22.2701953,38.8769135],[22.2705814,38.8771535],[22.2703381,38.8772039],[22.2697982,38.8771239],[22.2696358,38.8771665],[22.2694825,38.8773084],[22.2690346,38.8772387],[22.268907,38.8772728],[22.2687539,38.8774057],[22.2685812,38.8778717],[22.2685019,38.8785283],[22.2689735,38.8780938],[22.2695386,38.8780841],[22.2699928,38.8778926],[22.2706134,38.8779739],[22.2715746,38.8777899],[22.2722129,38.8780877],[22.2725117,38.8781282],[22.2732065,38.8779943],[22.2740491,38.8779527],[22.2744793,38.8777968],[22.2752655,38.8777003],[22.2758469,38.8774927],[22.2762351,38.8775164],[22.2764066,38.877573],[22.2769825,38.8780681],[22.2770444,38.8781771],[22.2774671,38.8783365],[22.2775825,38.8788068],[22.278143,38.8787024],[22.2781561,38.8784458],[22.2783515,38.8784667],[22.2784924,38.8783607],[22.2787116,38.8783549],[22.2788114,38.878041],[22.2789089,38.8780605],[22.2789243,38.8778985],[22.2790772,38.8777746],[22.2790911,38.8776757],[22.2787767,38.8773286],[22.2785825,38.8772537],[22.2785982,38.8770827],[22.2787068,38.8769266],[22.2791007,38.8768423],[22.279359,38.8766479],[22.2796143,38.8765796],[22.2795277,38.876344],[22.2795536,38.8762273],[22.279753,38.8760861],[22.2797336,38.8759326],[22.2798502,38.8758802],[22.2798771,38.8757184],[22.2800526,38.8756129],[22.279953,38.8754402],[22.2801302,38.8752626],[22.2803739,38.8751941],[22.2805502,38.8750526],[22.2804956,38.8749256],[22.280543,38.8748722],[22.2803839,38.8747798],[22.28048,38.874619],[22.2807587,38.874533],[22.2810057,38.8743294],[22.2822336,38.8740772],[22.2820053,38.8739837],[22.2818492,38.8737651],[22.2819329,38.8736402],[22.2821996,38.8735721],[22.2819837,38.8734427],[22.2825186,38.8732524],[22.2825788,38.8731451],[22.2820822,38.8727053],[22.281735,38.8722857],[22.2817956,38.8721605],[22.2820624,38.8720923],[22.282362,38.8720967],[22.2826991,38.8719755],[22.2830102,38.8719801],[22.2838231,38.8717307],[22.2846818,38.8710135],[22.2848031,38.870763],[22.2855572,38.8705578],[22.2857452,38.8704074],[22.2853689,38.8702397],[22.2853602,38.8701224],[22.2851678,38.8699754],[22.284386,38.8698918],[22.2841703,38.8697535],[22.2840484,38.8695535],[22.2838312,38.8694782],[22.2836277,38.869313],[22.2835164,38.8691492],[22.2835761,38.86906],[22.2834985,38.8689327],[22.2835594,38.8687984],[22.2835044,38.8686895],[22.2835996,38.8685647],[22.2833756,38.8682911],[22.283655,38.8681781],[22.2832332,38.8679827],[22.2831654,38.8679276],[22.283168,38.8678195],[22.2828356,38.8677425],[22.2827225,38.8676508],[22.2825445,38.8673868],[22.2824532,38.8673494],[22.2822443,38.8674094],[22.282153,38.8673721],[22.2820408,38.8672443],[22.2820549,38.8671363],[22.2819197,38.8670082],[22.2817008,38.867005],[22.2816449,38.8669321],[22.2815282,38.8669934],[22.2813188,38.8665939],[22.2810179,38.8666435],[22.2809514,38.8665344],[22.2808588,38.8665511],[22.280814,38.8664963],[22.2807205,38.866549],[22.2805362,38.8665463],[22.2805112,38.866627],[22.2805727,38.8674209],[22.2801875,38.8676225],[22.2800404,38.8675122],[22.2799362,38.8675287],[22.2799384,38.8674386],[22.2797323,38.8673815],[22.2795764,38.8671539],[22.279393,38.8671152],[22.2791538,38.8665169],[22.2792362,38.8664461],[22.2792512,38.8663021],[22.279416,38.8661604],[22.2795418,38.8657207],[22.2794764,38.8655666],[22.2795292,38.865288],[22.279612,38.8651991],[22.2799866,38.8649614],[22.2803214,38.8649393],[22.2805309,38.8648522],[22.2807724,38.8648738],[22.2817104,38.8646894],[22.2819524,38.864693],[22.282225,38.8648592],[22.2824213,38.864844],[22.2825152,38.8647733],[22.2825297,38.8646474],[22.2827484,38.8646596],[22.2828588,38.8643819],[22.282974,38.8643836],[22.2830334,38.8643124],[22.2830023,38.8641678],[22.2827949,38.8641647],[22.2826401,38.8638921],[22.2826486,38.8638247],[22.2818488,38.8635336],[22.2816253,38.8632419],[22.281596,38.8630252],[22.2816712,38.8627741],[22.2823507,38.8623155],[22.283218,38.861711],[22.2851771,38.8607576],[22.2864869,38.8599659],[22.2878514,38.8592921],[22.2883789,38.8589214],[22.2883889,38.8585071],[22.2878877,38.8577789],[22.2872834,38.8575087],[22.2870231,38.8563515],[22.2869804,38.8557291],[22.2874004,38.8550325],[22.2883675,38.8541095],[22.2886885,38.8536997],[22.2888462,38.8533687],[22.2886433,38.8526989],[22.2883807,38.8521184],[22.2883369,38.851541],[22.2884844,38.8506782],[22.2888346,38.8500075],[22.2887711,38.8488082],[22.288941,38.8479727],[22.2888626,38.8473948],[22.2885493,38.8465252],[22.2881583,38.8460149],[22.2875201,38.8457172],[22.2869366,38.8455464],[22.2867592,38.8452555],[22.2862633,38.8438335],[22.2862771,38.8435589],[22.2863829,38.8434704],[22.2863557,38.8431636],[22.2865291,38.8426615],[22.2861705,38.8422418],[22.2856517,38.8422522],[22.2854466,38.8421591],[22.2846698,38.8409222],[22.2835783,38.8398339],[22.2815675,38.838651],[22.2810162,38.8385798],[22.2806703,38.8385927],[22.2803665,38.8382909],[22.2797165,38.838011],[22.2792873,38.8381308],[22.2786122,38.8379407],[22.278449,38.8375418],[22.278278,38.8374672],[22.278147,38.8374923],[22.2772506,38.83788],[22.2764568,38.8378323],[22.2763194,38.8382718],[22.2756008,38.8384504],[22.2746501,38.8382201],[22.2745745,38.8384893],[22.2746446,38.8394004],[22.2743763,38.8395406],[22.2736748,38.8394852],[22.2733738,38.8395438],[22.2734325,38.8399772],[22.2733788,38.8402918],[22.2732588,38.8404882],[22.2728598,38.8407887],[22.2726695,38.8410382],[22.2710377,38.8413384],[22.2707293,38.8412257],[22.2706252,38.8412422],[22.2705168,38.8414388],[22.2705241,38.8416102],[22.2709219,38.8422243],[22.2709461,38.8422652],[22.2710506,38.8427082],[22.27078,38.8429385],[22.2702,38.8431011],[22.2698884,38.8431235],[22.2695242,38.8429379],[22.2691751,38.8430769],[22.2689328,38.8430914],[22.2680334,38.8426455],[22.2680041,38.8424288],[22.2682002,38.8419452],[22.2682407,38.8412249],[22.2680189,38.8408702],[22.2679887,38.8406895],[22.2677685,38.8407403],[22.2674471,38.8406905],[22.2673724,38.8409237],[22.2672307,38.8410657],[22.2666276,38.841228],[22.2661478,38.8410587],[22.2656905,38.8404392],[22.2655979,38.8404558],[22.2653158,38.8406859],[22.2649624,38.8407663],[22.265272,38.8403969],[22.2652175,38.84027],[22.2656879,38.8399796],[22.2656263,38.8399066],[22.2656944,38.8399527],[22.2660794,38.8397511],[22.2662123,38.8395008],[22.266671,38.8395887],[22.2668566,38.8395374],[22.2667332,38.8394004],[22.2667362,38.8392743],[22.266937,38.83907],[22.2670485,38.8387473],[22.2673202,38.838472],[22.2674196,38.8381761],[22.267583,38.8380884],[22.2677495,38.8378747],[22.2678132,38.8376233],[22.2684403,38.8374163],[22.2686305,38.8374552],[22.2687051,38.837231],[22.2688557,38.8371972],[22.2689035,38.8371259],[22.2688052,38.8366198],[22.2687685,38.8362769],[22.2687597,38.8358848],[22.2686531,38.835766],[22.2686857,38.8356989],[22.2688374,38.8356201],[22.2692446,38.8349774],[22.2689142,38.8343507],[22.2691616,38.8336516],[22.2688355,38.8333223],[22.2688429,38.8330161],[22.2686797,38.8326172],[22.2687736,38.8325465],[22.2692351,38.8325173],[22.2692638,38.8322835],[22.2693466,38.8321946],[22.2699459,38.8321854],[22.2701434,38.8321163],[22.2702892,38.8315643],[22.2712109,38.8315599],[22.2714851,38.8316541],[22.2718927,38.8319484]]},{"id":16587,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039a\u03b1\u03c0\u03bd\u03bf\u03c7\u03ce\u03c1\u03b9-\u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03b9\u03ac","description_GR":"","path":"STEREA\/Sterea_Oeta_Kapnochori_Kastania","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":2685,"name_EN":"Oeta: Kapnochori-Kastania","description_EN":"","ascent_time":55,"descent_time":40,"marker":"Red_dots","level":9,"ascent":418,"descent":4,"maxelev":1027,"minelev":592,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.21082 38.84948,22.223 38.86424)","views":31,"millestones":"0,22.2226582,38.8632918#1,22.2175758,38.8595344#2,22.2130329,38.8539741#2.7,22.2111890,38.8492945","x":22.2151144,"y":38.8574731,"coor":[[22.2226582,38.8632918],[22.2222706,38.8635833],[22.2214082,38.8639666],[22.2209323,38.8641035],[22.2209331,38.8643018],[22.2208156,38.8643901],[22.219816,38.8643704],[22.2188138,38.8638865],[22.2183237,38.8637529],[22.2182112,38.8636431],[22.2181812,38.8634624],[22.2183659,38.8629877],[22.2184083,38.8622134],[22.2183109,38.8619596],[22.2179049,38.861602],[22.2179408,38.8615485],[22.2179502,38.8612603],[22.2180238,38.8610812],[22.2184846,38.8610882],[22.218341,38.8604373],[22.2179176,38.8598541],[22.2174219,38.859396],[22.2167512,38.8585658],[22.2165969,38.8580994],[22.2165004,38.8578096],[22.2162399,38.8576254],[22.2155664,38.8578314],[22.2154797,38.8580734],[22.2153633,38.8581166],[22.2153568,38.8579183],[22.2151433,38.8576988],[22.2151144,38.8574731],[22.2151512,38.8573835],[22.2153608,38.8572966],[22.2153626,38.8572246],[22.2149402,38.8570649],[22.2143091,38.8564966],[22.2138404,38.8563453],[22.2134437,38.8564383],[22.2134974,38.8561328],[22.2133892,38.8558518],[22.212877,38.8556007],[22.2124471,38.8552787],[22.2126806,38.8546966],[22.2126662,38.854354],[22.2130318,38.8540172],[22.2130339,38.8539361],[22.212946,38.8539078],[22.2126553,38.8540114],[22.2124949,38.8539729],[22.2123194,38.8536188],[22.212274,38.8531316],[22.2124531,38.852882],[22.2123309,38.8526999],[22.211888,38.8524409],[22.2117671,38.8522047],[22.2116519,38.8517434],[22.2119295,38.8512431],[22.2118992,38.8501523],[22.2118979,38.8500172],[22.2117698,38.8497133],[22.211189,38.8492945]]},{"id":16588,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03b9\u03ac-\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2","description_GR":"\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03b9\u03ac \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03bf\u03c1\u03b5\u03b9\u03bd\u03ac \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9\u03b1","path":"STEREA\/Sterea_Oeta_Kastania_Pyrgos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9138,"name_EN":"Oeta: Kastania-Pyrgos","description_EN":"The old road from Kastania to mountain pastures","ascent_time":260,"descent_time":210,"marker":"No_marks","level":9,"ascent":995,"descent":102,"maxelev":2151,"minelev":1235,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.19985 38.79216,22.25643 38.83796)","views":98,"millestones":"0,22.2023517,38.8379946#1,22.2025866,38.8300056#2,22.2020298,38.8227270#3,22.2100455,38.8191779#4,22.2188052,38.8142746#5,22.2268908,38.8105713#6,22.2335849,38.8041644#7,22.2426562,38.8008471#8,22.2512769,38.7964304#9.1,22.2550942,38.7921372","x":22.2240123,"y":38.8112175,"coor":[[22.2023517,38.8379946],[22.2025347,38.837646],[22.2026101,38.8375976],[22.2031404,38.8369255],[22.2034775,38.8349754],[22.2027882,38.8344422],[22.2027492,38.8337027],[22.2022332,38.8336046],[22.201841,38.8331661],[22.201709,38.8324612],[22.2020699,38.8318541],[22.2027452,38.8301975],[22.2025664,38.8299785],[22.2023377,38.8294524],[22.2023904,38.8287323],[22.2019235,38.8275988],[22.2009211,38.8271509],[22.2005037,38.826802],[22.2001472,38.826319],[22.2003205,38.8253845],[22.2001822,38.8249319],[22.2002875,38.8244109],[22.2005194,38.8238918],[22.2006362,38.823371],[22.2009263,38.8232403],[22.2009977,38.8231919],[22.2011698,38.8232216],[22.2012098,38.8230059],[22.2014186,38.8229461],[22.2014355,38.8227301],[22.2019647,38.8227562],[22.2020812,38.822704],[22.2023327,38.8227799],[22.2025289,38.8227649],[22.2027107,38.8228668],[22.2026278,38.8229557],[22.2027072,38.8229884],[22.2028228,38.8229722],[22.2028162,38.822891],[22.2031041,38.8228954],[22.2031863,38.8228336],[22.203391,38.8229359],[22.2039516,38.8226291],[22.2042404,38.8225975],[22.2047903,38.8227141],[22.2050929,38.8225926],[22.2062074,38.8228755],[22.2063939,38.8227883],[22.2066241,38.8227918],[22.2067695,38.8225057],[22.2071222,38.8222228],[22.2072484,38.8222428],[22.2073538,38.8221723],[22.2076839,38.821871],[22.2077828,38.8216022],[22.2079826,38.8214431],[22.2079959,38.8213712],[22.2083955,38.8210529],[22.2090177,38.8203822],[22.2094505,38.8201185],[22.2094067,38.8200277],[22.2095036,38.81984],[22.2097483,38.8197266],[22.2096575,38.8196711],[22.2097751,38.8195738],[22.2097562,38.8194113],[22.2100618,38.8191637],[22.2106084,38.8189558],[22.21084,38.8187747],[22.2110484,38.8187328],[22.2112947,38.8185564],[22.2117008,38.8184364],[22.2119245,38.8182416],[22.2122146,38.818156],[22.2124144,38.8179968],[22.2124956,38.8178314],[22.2126913,38.8178344],[22.2131015,38.8175523],[22.2131148,38.8174804],[22.2130233,38.817452],[22.2131739,38.8174183],[22.2134973,38.817225],[22.2138939,38.8170238],[22.213932,38.8168802],[22.2144375,38.8164734],[22.2144397,38.8163834],[22.2148259,38.816137],[22.2150631,38.8158477],[22.2153886,38.8157266],[22.2156982,38.8154655],[22.2160601,38.8152728],[22.2161571,38.815076],[22.2163214,38.8149524],[22.2171736,38.8149564],[22.2177874,38.8148216],[22.2187336,38.8142864],[22.2190343,38.8142369],[22.2194767,38.8140454],[22.2196787,38.8137962],[22.219806,38.8137711],[22.220046,38.8138468],[22.2203013,38.8137696],[22.2205882,38.81381],[22.2206126,38.8137563],[22.22025,38.8135751],[22.2202637,38.8134852],[22.221098,38.8132817],[22.2213354,38.8129969],[22.2221591,38.8127572],[22.222369,38.812463],[22.2225582,38.8122677],[22.2229616,38.8122558],[22.2237146,38.812078],[22.2238555,38.8115035],[22.2240123,38.8112175],[22.224162,38.8112198],[22.2245485,38.8114239],[22.2249818,38.811408],[22.2255733,38.8114305],[22.2259112,38.8112734],[22.2260649,38.8111136],[22.2263901,38.8110014],[22.2264442,38.8106778],[22.2265151,38.8106068],[22.2270807,38.8105523],[22.2271574,38.8102471],[22.2277519,38.8099588],[22.2278245,38.8098157],[22.2281292,38.8096041],[22.2282409,38.8092814],[22.2287457,38.8088926],[22.2288365,38.8084794],[22.2288051,38.8083528],[22.2287061,38.8082837],[22.2287659,38.8081945],[22.2291856,38.8079846],[22.2293526,38.8077529],[22.2300594,38.8071148],[22.2304551,38.8064811],[22.2309114,38.8061906],[22.2313139,38.8057462],[22.2316066,38.8055524],[22.2324432,38.8051776],[22.2325813,38.8051797],[22.2327803,38.805034],[22.233096,38.8048406],[22.2332156,38.8046622],[22.2336004,38.8044697],[22.2337655,38.80431],[22.2335836,38.8042172],[22.2335853,38.8041451],[22.2338313,38.8039776],[22.23412,38.803946],[22.2343723,38.8039858],[22.2345423,38.8040965],[22.2345631,38.8041869],[22.2349177,38.8042824],[22.2350922,38.804213],[22.2350608,38.8040863],[22.2354167,38.8041278],[22.2356268,38.8040138],[22.2357875,38.8040342],[22.2362834,38.8035371],[22.2366159,38.8035962],[22.2370775,38.8035581],[22.237526,38.8031144],[22.2378973,38.8030028],[22.2383657,38.8022169],[22.2396326,38.8017405],[22.2400235,38.8017644],[22.2400718,38.801675],[22.2410737,38.8016721],[22.2417218,38.8015376],[22.242339,38.8012586],[22.2428264,38.8006352],[22.2431073,38.8004502],[22.2432109,38.8004517],[22.2442819,38.8001975],[22.2444929,38.8000475],[22.2451069,38.7998945],[22.2450976,38.7998043],[22.2451917,38.7997246],[22.245738,38.7995166],[22.2459443,38.7995557],[22.2463613,38.7994538],[22.2471564,38.7989612],[22.2473045,38.7988057],[22.2475635,38.7985753],[22.2479805,38.7984734],[22.2483377,38.7984608],[22.2486405,38.7983211],[22.2489761,38.7982541],[22.2495126,38.7979738],[22.2498216,38.7975819],[22.2497718,38.7972658],[22.2498545,38.7971769],[22.2497807,38.7970317],[22.2498655,38.7968617],[22.2499465,38.7968449],[22.2499505,38.7966828],[22.2503586,38.7964726],[22.2504651,38.7963571],[22.2509412,38.7963237],[22.251364,38.7964562],[22.2515366,38.7964587],[22.2518558,38.7965897],[22.252493,38.7965181],[22.2532726,38.7966559],[22.2536034,38.796787],[22.2540164,38.7968473],[22.2542351,38.7968505],[22.2543987,38.7967538],[22.2546045,38.796811],[22.2547209,38.7967587],[22.2553553,38.7967141],[22.2556338,38.7966281],[22.2559222,38.796709],[22.2563262,38.7964763],[22.2560534,38.7961523],[22.2561974,38.7959112],[22.2557768,38.7956886],[22.2558472,38.7956356],[22.2557337,38.7955709],[22.2555353,38.7952075],[22.2553691,38.7944661],[22.2551499,38.7940123],[22.2552773,38.7935096],[22.2550447,38.7926591],[22.2550942,38.7921372]]},{"id":16589,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1-\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03bf\u03bb\u03cd \u03bb\u03af\u03b3\u03bf \u03b3\u03bd\u03c9\u03c3\u03c4\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03a0\u03cd\u03c1\u03b3\u03bf","path":"STEREA\/Sterea_Oeta_Katavothra_Pyrgos","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":7052,"name_EN":"Oeta: Katavothra-Pyrgos peak","description_EN":"The least known way to climb Pyrgos peak","ascent_time":340,"descent_time":285,"marker":"No_marks","level":9,"ascent":648,"descent":73,"maxelev":2144,"minelev":1516,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25509 38.75962,22.30456 38.79218)","views":126,"millestones":"0,22.3034369,38.7596084#1,22.3000302,38.7660360#2,22.2908960,38.7708186#3,22.2824249,38.7750588#4,22.2752162,38.7800112#5,22.2711019,38.7863558#6,22.2629559,38.7903056#7.1,22.2550942,38.7921372","x":22.2732185,"y":38.7837067,"coor":[[22.3034369,38.7596084],[22.3032099,38.7601458],[22.303384,38.7605223],[22.3037168,38.7606217],[22.3041708,38.7604526],[22.3043255,38.7604774],[22.3045282,38.7608633],[22.3042785,38.7612021],[22.3042551,38.7617063],[22.30407,38.7618073],[22.3032589,38.7620388],[22.3028601,38.7623574],[22.3020142,38.7625974],[22.3016085,38.7627357],[22.3013049,38.7629205],[22.30101,38.7637092],[22.3003579,38.7655424],[22.3000826,38.7659889],[22.2990006,38.7669644],[22.2980104,38.7674636],[22.2974487,38.7678518],[22.2969189,38.7683487],[22.2965056,38.7689104],[22.2961297,38.7692293],[22.2953619,38.7695695],[22.2938653,38.7695837],[22.2930571,38.7696891],[22.2915543,38.770442],[22.2910169,38.7707766],[22.290599,38.7709236],[22.2904619,38.7713632],[22.2902828,38.7716309],[22.290215,38.7720624],[22.2898101,38.7721466],[22.2890777,38.7724512],[22.2889459,38.7726656],[22.2889842,38.7729905],[22.2886728,38.7734996],[22.2882764,38.77371],[22.2876014,38.7735379],[22.2870475,38.7735929],[22.2861482,38.7741384],[22.285351,38.7747394],[22.2852117,38.7747914],[22.2844173,38.7747978],[22.2831565,38.7750496],[22.2823046,38.7750551],[22.2819108,38.7751574],[22.2813943,38.7750958],[22.2809664,38.7751796],[22.2805762,38.7751288],[22.2793182,38.7747859],[22.2791346,38.7747652],[22.2789607,38.7748167],[22.2788311,38.7749409],[22.2785137,38.7756931],[22.2785029,38.7761435],[22.2784056,38.7763583],[22.2778594,38.7770531],[22.2776488,38.7771942],[22.2774086,38.7777448],[22.2770542,38.778118],[22.2767173,38.7787258],[22.2766285,38.7790669],[22.2764315,38.7793163],[22.2753909,38.7799227],[22.2750387,38.7801022],[22.2746385,38.7804657],[22.2743461,38.7806597],[22.2741163,38.7809852],[22.2735569,38.7812652],[22.2744517,38.7818461],[22.2745839,38.7819877],[22.2744141,38.7823457],[22.27403,38.7825202],[22.2740048,38.7826099],[22.2739119,38.7826446],[22.2739427,38.7827983],[22.2738356,38.7829408],[22.2733254,38.7830955],[22.2731816,38.7833277],[22.2732185,38.7837067],[22.2730283,38.7839561],[22.2730374,38.7840554],[22.272898,38.7841074],[22.2728889,38.7844857],[22.2727354,38.7846456],[22.2728251,38.7847461],[22.2727782,38.7847814],[22.2728928,38.7848012],[22.2729801,38.7850007],[22.2729594,38.7853788],[22.2726192,38.7856441],[22.2720648,38.785717],[22.2717717,38.7859379],[22.2715345,38.7862228],[22.2713013,38.7863455],[22.2711402,38.7863431],[22.2708848,38.7864294],[22.2706264,38.7866419],[22.2705183,38.7868295],[22.2704136,38.786873],[22.2703637,38.7870344],[22.2701304,38.7871571],[22.2700585,38.7872732],[22.2699617,38.78747],[22.2699693,38.7876323],[22.2698031,38.7878371],[22.269855,38.7880722],[22.2697621,38.7881068],[22.269759,38.7882329],[22.2693586,38.7886055],[22.2691603,38.7887106],[22.2692051,38.7887654],[22.2687281,38.7894431],[22.268484,38.7896017],[22.268528,38.7896834],[22.2681587,38.789723],[22.268075,38.7898479],[22.2677506,38.7899332],[22.2674399,38.7899286],[22.266386,38.7901833],[22.2660409,38.7901692],[22.2657567,38.7900208],[22.2651263,38.7899033],[22.2648412,38.7897909],[22.2644729,38.7897855],[22.2641069,38.7901585],[22.2637812,38.7902978],[22.2630566,38.790269],[22.2627197,38.7903902],[22.2625863,38.7903882],[22.2620278,38.7901546],[22.2618724,38.789918],[22.2613752,38.7895322],[22.2610201,38.7894548],[22.2605872,38.7892681],[22.2604021,38.7893014],[22.26,38.7892684],[22.2597778,38.7894093],[22.2596514,38.7893984],[22.259558,38.789451],[22.2594328,38.7893951],[22.2593153,38.7894925],[22.2590833,38.7895611],[22.2588447,38.7894314],[22.2587783,38.7893223],[22.2585707,38.7893372],[22.258557,38.7894271],[22.2582303,38.7896025],[22.2577938,38.7900375],[22.2577679,38.7901542],[22.2576161,38.7902421],[22.2574015,38.7905452],[22.2574007,38.7910498],[22.2571392,38.7913883],[22.2569629,38.7919939],[22.2569035,38.7920651],[22.2566946,38.7921341],[22.2559563,38.7921952],[22.2556698,38.7921368],[22.2550942,38.7921372]]},{"id":16590,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039a\u03c9\u03c3\u03c4\u03b1\u03bb\u03ad\u03be\u03b7-\u039b\u03bf\u03cd\u03ba\u03b1","description_GR":"\u03a0\u03b5\u03b6\u03bf\u03c0\u03bf\u03c1\u03b9\u03ba\u03ae \u03c0\u03c1\u03bf\u03c3\u03c0\u03ad\u03bb\u03b1\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bf\u03c1\u03bf\u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u039b\u03bf\u03cd\u03ba\u03b1","path":"STEREA\/Sterea_Oeta_Kostalexi_Louka","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":8632,"name_EN":"Oeta: Kostalexi-Louka","description_EN":"A hike to Louka plateau","ascent_time":185,"descent_time":145,"marker":"No_marks","level":9,"ascent":1102,"descent":53,"maxelev":1162,"minelev":85,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.32077 38.84388,22.36529 38.85698)","views":29,"millestones":"0,22.3649780,38.8576042#1,22.3596688,38.8537825#2,22.3546808,38.8514553#3,22.3495358,38.8526699#4,22.3399908,38.8538547#5,22.3391386,38.8508317#6,22.3337819,38.8488318#7,22.3317966,38.8466477#8,22.3210801,38.8468414#8.6,22.3233418,38.8432860","x":22.3382031,"y":38.8539688,"coor":[[22.364978,38.8576042],[22.3639863,38.8568784],[22.3635916,38.8573009],[22.3634756,38.8573353],[22.3633153,38.857288],[22.3631516,38.8568893],[22.3633886,38.8566042],[22.3633051,38.8562246],[22.3629489,38.855679],[22.3621139,38.8549014],[22.3617065,38.8550353],[22.3604821,38.8556579],[22.3599131,38.8558481],[22.359765,38.855774],[22.360329,38.855052],[22.3603286,38.8545654],[22.3601509,38.8542746],[22.3601651,38.8541577],[22.3589301,38.8532392],[22.3574789,38.851705],[22.3570886,38.8511409],[22.356836,38.8505967],[22.3569604,38.8496974],[22.3568135,38.8497313],[22.3566481,38.8499092],[22.3563576,38.8500133],[22.355912,38.8503494],[22.3550776,38.8515541],[22.3548184,38.8518027],[22.3545151,38.8519607],[22.3542908,38.8521918],[22.3543596,38.8517062],[22.3546999,38.8514406],[22.3547016,38.8513686],[22.3540741,38.851594],[22.3538499,38.8518251],[22.3534306,38.8520175],[22.3526107,38.8525916],[22.3525066,38.8526082],[22.352427,38.852562],[22.3525933,38.8523481],[22.3525841,38.8522488],[22.3524931,38.8521935],[22.3523771,38.8522279],[22.352093,38.8525573],[22.3518139,38.8531661],[22.3514985,38.8534409],[22.3510949,38.8534533],[22.3508275,38.8535576],[22.3506277,38.853726],[22.3505253,38.8536705],[22.350627,38.8532574],[22.3507463,38.8530789],[22.3513541,38.852709],[22.351215,38.8522475],[22.3513239,38.8518661],[22.3512557,38.8518246],[22.3507463,38.8519255],[22.3504955,38.8523094],[22.3503291,38.8524332],[22.3498667,38.8524988],[22.3495632,38.8526657],[22.3489271,38.8527648],[22.3481767,38.8528263],[22.3471518,38.8527938],[22.3468618,38.8528798],[22.3462079,38.853249],[22.3461626,38.8532123],[22.3463281,38.8530344],[22.3462497,38.8529342],[22.3444541,38.853936],[22.3443146,38.8540466],[22.3439309,38.8541944],[22.3435981,38.8541356],[22.3434134,38.854151],[22.3430609,38.8544434],[22.3426709,38.8543657],[22.3417451,38.8545328],[22.34103,38.8545587],[22.3403746,38.8544953],[22.3399976,38.8538592],[22.3398841,38.8537855],[22.339102,38.8537203],[22.338774,38.8539499],[22.3385125,38.8540453],[22.3382031,38.8539688],[22.3377486,38.8541876],[22.3372859,38.8542622],[22.3368978,38.854599],[22.3364695,38.854683],[22.3368394,38.8544315],[22.3368384,38.853981],[22.3368985,38.8538737],[22.3371655,38.8537874],[22.3373652,38.853628],[22.3373578,38.8534477],[22.3371922,38.853139],[22.3374141,38.8530115],[22.3374279,38.8529126],[22.3379397,38.8524603],[22.338394,38.8522505],[22.3385392,38.8519552],[22.3385084,38.8517926],[22.3381867,38.851752],[22.3380158,38.8516684],[22.3376926,38.8516909],[22.3380721,38.8512277],[22.3386526,38.8510873],[22.3390469,38.8508857],[22.3393353,38.8507186],[22.3394543,38.8504635],[22.3392306,38.8501719],[22.3391776,38.8499729],[22.3393333,38.8497228],[22.3398363,38.8493966],[22.3405551,38.8492086],[22.3408234,38.8490682],[22.3410358,38.848855],[22.3410054,38.8486743],[22.3407858,38.8485],[22.3407178,38.848454],[22.3390867,38.8482326],[22.3376263,38.8481037],[22.336603,38.8485036],[22.3361204,38.8484426],[22.3358088,38.8484652],[22.3352167,38.848655],[22.3337142,38.8488499],[22.3328195,38.8491705],[22.3319677,38.8486357],[22.3317369,38.8486504],[22.3314707,38.8487007],[22.3309982,38.8491985],[22.3304949,38.8495338],[22.3302525,38.8495483],[22.3300695,38.8494916],[22.3299673,38.8494271],[22.3298678,38.8492004],[22.3304747,38.8483801],[22.3315354,38.847368],[22.3315411,38.8470122],[22.3324463,38.8467368],[22.3327031,38.8465963],[22.333061,38.8465653],[22.3331364,38.8464538],[22.3330796,38.8464169],[22.3317721,38.8466506],[22.3307017,38.8465992],[22.3301928,38.846682],[22.3298242,38.8466768],[22.3294872,38.8467981],[22.3285429,38.8467756],[22.3279609,38.8470286],[22.327335,38.8471818],[22.326818,38.8471203],[22.3261813,38.8472464],[22.3255888,38.8474541],[22.3247944,38.8474247],[22.3232044,38.8477578],[22.3228148,38.8476621],[22.3220081,38.8476685],[22.3213182,38.847118],[22.3210152,38.8467712],[22.3212762,38.845964],[22.3212722,38.845153],[22.3215895,38.8448872],[22.3219984,38.8446498],[22.322378,38.8441867],[22.3229326,38.8435369],[22.3233418,38.843286]]},{"id":16591,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039b\u03bf\u03cd\u03ba\u03b1-\u0386\u03b3\u03b9\u03bf \u03a0\u03bd\u03b5\u03cd\u03bc\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u039b\u03bf\u03cd\u03ba\u03b1 \u03c3\u03c4\u03bf \u0386\u03b3\u03b9\u03bf \u03a0\u03bd\u03b5\u03cd\u03bc\u03b1","path":"STEREA\/Sterea_Oeta_Louka_AgPnevma","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":14230,"name_EN":"Oeta: Louka-Aghio Pnevma","description_EN":"From Louka plateau to Aghio Pnevma","ascent_time":345,"descent_time":325,"marker":"No_marks","level":9,"ascent":735,"descent":649,"maxelev":1606,"minelev":1141,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.31742 38.7868,22.33653 38.84412)","views":41,"millestones":"0,22.3223783,38.8441867#1,22.3278322,38.8378549#2,22.3309289,38.8305318#3,22.3244874,38.8242394#4,22.3297147,38.8213908#5,22.3342720,38.8194301#6,22.3254940,38.8161542#7,22.3323364,38.8110151#8,22.3308221,38.8072072#9,22.3274688,38.8050123#10,22.3212055,38.8048830#11,22.3225399,38.7973430#12,22.3225000,38.7933617#13,22.3266589,38.7917666#14.2,22.3250680,38.7880342","x":22.3275028,"y":38.8137904,"coor":[[22.3223783,38.8441867],[22.3229333,38.8435369],[22.3233426,38.8432815],[22.323622,38.8432359],[22.3240421,38.8430077],[22.3243722,38.842688],[22.3250487,38.8423373],[22.3257242,38.841536],[22.3259291,38.8411515],[22.3260662,38.8409552],[22.3264765,38.8406547],[22.3272302,38.8404493],[22.3276895,38.8404243],[22.3280513,38.8401952],[22.3282618,38.8400315],[22.3283963,38.8397001],[22.3283775,38.8395196],[22.3282248,38.8393507],[22.328238,38.8392788],[22.3279526,38.8391666],[22.3278762,38.8389853],[22.3277964,38.8389481],[22.3278522,38.8385344],[22.3277392,38.8380868],[22.3276518,38.8380675],[22.3277479,38.8378977],[22.3280627,38.83774],[22.3282053,38.8375528],[22.3281157,38.8374434],[22.3285394,38.837062],[22.3280193,38.83664],[22.3281843,38.8364802],[22.3285456,38.8363052],[22.3289458,38.8359414],[22.328962,38.8357434],[22.3290929,38.8355651],[22.3290985,38.8353219],[22.3295961,38.8347343],[22.3296588,38.8345189],[22.3301505,38.833688],[22.3303018,38.8331315],[22.3305037,38.832873],[22.330626,38.8325684],[22.33072,38.8324887],[22.3308113,38.832526],[22.3308815,38.832482],[22.3308844,38.8323559],[22.3310507,38.832142],[22.3316416,38.8315017],[22.3315397,38.8314281],[22.3315426,38.831302],[22.3313027,38.8312175],[22.3313152,38.831069],[22.3310687,38.8307681],[22.3309821,38.8305326],[22.3308669,38.8305309],[22.3306532,38.8303116],[22.3304206,38.8299118],[22.3303071,38.8298381],[22.3302207,38.8295936],[22.3300607,38.8295372],[22.3299125,38.8289765],[22.3297222,38.8287395],[22.3294718,38.8286097],[22.3290326,38.8286755],[22.3289442,38.8285121],[22.3290854,38.8283879],[22.3290069,38.8282967],[22.3286323,38.8280571],[22.3281504,38.8279781],[22.3276586,38.8278269],[22.327534,38.827735],[22.3271739,38.8273694],[22.3271378,38.8269454],[22.3270484,38.826827],[22.3270197,38.8265742],[22.3268209,38.826211],[22.3263922,38.8258264],[22.3264634,38.8257373],[22.3262032,38.8255353],[22.3261146,38.8253809],[22.3259197,38.825342],[22.3252593,38.8245216],[22.3240377,38.8240716],[22.3244693,38.8238435],[22.3247678,38.8238838],[22.3249759,38.8238507],[22.3253082,38.8239276],[22.3255738,38.8238954],[22.3258892,38.8237106],[22.3259446,38.8238016],[22.3264521,38.8237728],[22.3264777,38.823665],[22.3263467,38.8233568],[22.3263575,38.8228974],[22.3260554,38.8225146],[22.3258618,38.8224217],[22.3257918,38.8224568],[22.3256099,38.822355],[22.3254124,38.8219377],[22.325588,38.8218141],[22.3258504,38.821926],[22.3259489,38.8221436],[22.3263417,38.8220952],[22.3267083,38.8221815],[22.3269289,38.8221036],[22.3270539,38.8221775],[22.3272184,38.8225313],[22.3275911,38.8223564],[22.3282158,38.8222392],[22.3283442,38.8221689],[22.3284053,38.8220166],[22.3288701,38.8218431],[22.3290663,38.8218278],[22.3294662,38.8214731],[22.3297216,38.8213867],[22.3298368,38.8213883],[22.3303499,38.8216119],[22.3306323,38.8218502],[22.3308521,38.8218083],[22.3309727,38.8215758],[22.3308358,38.8215197],[22.3306238,38.8212284],[22.3304794,38.821001],[22.3305493,38.820966],[22.3314514,38.8213033],[22.3321521,38.8213854],[22.3324753,38.8213539],[22.3327554,38.8211957],[22.3329947,38.8213073],[22.3334419,38.8213948],[22.333726,38.821561],[22.3338556,38.8214367],[22.3338581,38.8213286],[22.3342117,38.8209822],[22.3352382,38.8209248],[22.3356171,38.8209752],[22.335641,38.8209395],[22.3355277,38.8207983],[22.3354971,38.8206266],[22.3357511,38.8201076],[22.3354124,38.8198144],[22.3351731,38.8197029],[22.3350739,38.8195123],[22.3343152,38.8194474],[22.3338016,38.8192418],[22.3327679,38.8191189],[22.3319592,38.8187289],[22.3316697,38.8187969],[22.3314117,38.8189914],[22.3313248,38.8192605],[22.331173,38.8193485],[22.3308197,38.8191902],[22.3300701,38.8182424],[22.3291445,38.8174362],[22.3289277,38.8168564],[22.3285297,38.8166345],[22.3281354,38.8162594],[22.3279524,38.8162027],[22.3272043,38.816183],[22.3266836,38.8162837],[22.3258324,38.8162354],[22.3253178,38.8161109],[22.3257947,38.8159105],[22.3266348,38.8159405],[22.3276648,38.8152344],[22.3280823,38.8146187],[22.3279507,38.8143375],[22.3275028,38.8137904],[22.3275066,38.8136283],[22.3278548,38.8130205],[22.3287565,38.8123846],[22.3300954,38.811764],[22.330499,38.8117428],[22.3309633,38.8115872],[22.3315863,38.811542],[22.3318727,38.8111136],[22.3321168,38.811018],[22.3323818,38.8110127],[22.3330568,38.8112026],[22.3338029,38.8113124],[22.3339662,38.8112246],[22.3336373,38.8110036],[22.333146,38.8108344],[22.3331592,38.8107625],[22.3334615,38.8106407],[22.3334875,38.8105149],[22.3330623,38.8104728],[22.3326102,38.8101059],[22.3319331,38.8100061],[22.3316158,38.8097854],[22.3303826,38.8098218],[22.3304448,38.8096245],[22.3312757,38.8090596],[22.3317174,38.8088857],[22.3320644,38.8088186],[22.3321706,38.808712],[22.3321275,38.8085852],[22.3316843,38.8083266],[22.3309422,38.8075591],[22.3308022,38.8071426],[22.3306448,38.8069781],[22.3298868,38.807152],[22.3295266,38.8072911],[22.3294929,38.8072545],[22.3302592,38.8064906],[22.3307135,38.8062718],[22.3310948,38.8062142],[22.3311434,38.8061067],[22.3310871,38.8060518],[22.3300971,38.8060377],[22.329785,38.8060873],[22.3293437,38.8062432],[22.3285709,38.8067908],[22.3278554,38.8068526],[22.3273315,38.8070974],[22.3272752,38.8070426],[22.3271991,38.8063567],[22.3267096,38.8061154],[22.3266439,38.8059703],[22.3269365,38.8057672],[22.3272386,38.8056544],[22.3274035,38.8054946],[22.3275588,38.8042713],[22.3275556,38.8034243],[22.3271916,38.8032298],[22.3267103,38.8031328],[22.3263057,38.8031991],[22.3258866,38.8033913],[22.3256303,38.8030272],[22.3253789,38.8029425],[22.3246256,38.803148],[22.3244477,38.8028751],[22.324003,38.8026885],[22.3239327,38.8023091],[22.323795,38.8022891],[22.3236789,38.8023325],[22.3232424,38.8027767],[22.3230736,38.8030987],[22.3225118,38.8034871],[22.3224269,38.8036661],[22.3224155,38.8041525],[22.3223077,38.8043312],[22.3216052,38.8048257],[22.3213677,38.8048854],[22.3206424,38.8048749],[22.3205085,38.8046928],[22.32085,38.8043733],[22.3209604,38.8040866],[22.3208571,38.8035805],[22.3202247,38.8030488],[22.3203127,38.8017525],[22.3207583,38.8009209],[22.3208537,38.8002915],[22.3207297,38.799686],[22.3211697,38.798602],[22.3212656,38.7984412],[22.3217939,38.7980073],[22.3224124,38.7976557],[22.322671,38.7974341],[22.3225695,38.7973426],[22.3219935,38.7973523],[22.3217077,38.7972671],[22.3211389,38.7969706],[22.3207543,38.7966767],[22.3201144,38.7964693],[22.3197277,38.7962655],[22.318702,38.7963048],[22.3185421,38.7962484],[22.3192565,38.7957361],[22.3194378,38.7953693],[22.3194678,38.7950723],[22.3189707,38.7946687],[22.3190318,38.7945164],[22.3197614,38.7943377],[22.3203842,38.7942926],[22.3207826,38.7944875],[22.3211041,38.7945282],[22.3214293,38.7944067],[22.3216636,38.7942389],[22.3216887,38.7941491],[22.3218626,38.7940976],[22.3220391,38.7939379],[22.3227504,38.7930651],[22.3234586,38.7928139],[22.3235693,38.7925091],[22.3238555,38.7920897],[22.3239075,38.7918382],[22.3237853,38.7916472],[22.3230115,38.7912576],[22.3230052,38.7910323],[22.3231225,38.7909439],[22.3233298,38.7909378],[22.3238092,38.7911159],[22.3245599,38.7910185],[22.3249154,38.7910777],[22.325118,38.7912788],[22.3252003,38.7916945],[22.3255952,38.7920426],[22.3256387,38.7921513],[22.3255552,38.7922763],[22.3251381,38.7923875],[22.3251324,38.7926307],[22.3252791,38.7927589],[22.3258064,38.7928566],[22.3260224,38.7929768],[22.3261146,38.7929691],[22.3260244,38.7926885],[22.3260615,38.7925809],[22.3266381,38.7920485],[22.3267003,38.7918512],[22.3265685,38.791579],[22.3262747,38.7913405],[22.3263884,38.7909096],[22.3262654,38.7907546],[22.3259252,38.7905335],[22.3257242,38.7897737],[22.3255344,38.7895187],[22.3253752,38.7894353],[22.3245616,38.7892705],[22.3241358,38.7892644],[22.3235227,38.7888951],[22.3236194,38.7886983],[22.3237946,38.7885927],[22.3245218,38.788513],[22.3252982,38.7882989],[22.3257483,38.7882512],[22.325877,38.788163],[22.3259532,38.7878577],[22.3260597,38.7877331],[22.3259566,38.7875108],[22.3259988,38.787187],[22.3263838,38.7866609],[22.3254284,38.7873906],[22.3252329,38.7878744],[22.325068,38.7880342]]},{"id":16592,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039b\u03bf\u03cd\u03ba\u03b1-\u039b\u03b9\u03b2\u03b1\u03b4\u03b9\u03ad\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u039b\u03bf\u03cd\u03ba\u03b1 \u03c3\u03c4\u03b9\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03b9\u03ad\u03c2","path":"STEREA\/Sterea_Oeta_Louka_Livadies","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10074,"name_EN":"Oeta: Louka-Livadies","description_EN":"From Louka plateau to Livadies","ascent_time":290,"descent_time":250,"marker":"No_marks","level":9,"ascent":998,"descent":344,"maxelev":2007,"minelev":1150,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.273 38.81946,22.32418 38.84347)","views":29,"millestones":"0,22.3236220,38.8432359#1,22.3170161,38.8388594#2,22.3106282,38.8370075#3,22.3010727,38.8377467#4,22.3061798,38.8306360#5,22.3016574,38.8282026#6,22.2963474,38.8238201#7,22.2920457,38.8238863#8,22.2863585,38.8252050#9,22.2786896,38.8219473#10.1,22.2735650,38.8202322","x":22.3014933,"y":38.8265843,"coor":[[22.323622,38.8432359],[22.3233426,38.8432815],[22.3229333,38.8435369],[22.3223783,38.8441867],[22.3222406,38.8440856],[22.3214804,38.8440747],[22.3209668,38.8438691],[22.3200479,38.8427656],[22.3190513,38.8420304],[22.3186364,38.8415468],[22.3185045,38.8412746],[22.3182795,38.8410461],[22.318352,38.840903],[22.3181338,38.8408728],[22.3180524,38.8404121],[22.317873,38.8402023],[22.3178803,38.839896],[22.3178235,38.8398591],[22.3174191,38.8399074],[22.3173566,38.8396271],[22.3171988,38.8394807],[22.3171456,38.8392907],[22.3171359,38.8390608],[22.3169476,38.8387427],[22.3168378,38.8388943],[22.3166786,38.8388019],[22.3165677,38.8386201],[22.3163792,38.8387976],[22.3163532,38.8389234],[22.3162982,38.8388144],[22.3162064,38.8387951],[22.3160887,38.8389015],[22.3159008,38.8385654],[22.3157959,38.838618],[22.3157752,38.8385186],[22.3157282,38.8385539],[22.3156732,38.838445],[22.3150972,38.8389323],[22.3150596,38.8385713],[22.3148321,38.8389375],[22.3143744,38.8392913],[22.3142358,38.8397939],[22.3141675,38.8397569],[22.3140852,38.8398278],[22.3140242,38.8394845],[22.3138871,38.8393428],[22.3135812,38.8391221],[22.3133927,38.8388131],[22.3130036,38.8386993],[22.3126865,38.8384695],[22.3124122,38.8383754],[22.3114708,38.8382356],[22.3112831,38.8378905],[22.3113449,38.8377112],[22.3111229,38.8373566],[22.3105675,38.8369701],[22.309962,38.8367541],[22.3097502,38.8364537],[22.3094435,38.8362825],[22.3086493,38.8367396],[22.3077836,38.8368081],[22.3064353,38.8368246],[22.3063065,38.8369129],[22.3062455,38.8370562],[22.3064357,38.8372932],[22.3059916,38.8375571],[22.3052149,38.8377621],[22.3047536,38.8377824],[22.3041035,38.8379892],[22.3038714,38.8375714],[22.3034705,38.8374754],[22.3024016,38.8373698],[22.3010444,38.8377555],[22.3008158,38.8376801],[22.3009723,38.8372319],[22.3010088,38.8369666],[22.3009867,38.8364436],[22.3013114,38.8358717],[22.3013517,38.835629],[22.3014801,38.8355588],[22.301835,38.8351674],[22.3020023,38.834431],[22.3026424,38.8336744],[22.3028518,38.8331008],[22.3030751,38.8329148],[22.3033561,38.8323917],[22.3035331,38.8322141],[22.3045368,38.83167],[22.3047769,38.831259],[22.3053845,38.8308984],[22.3056323,38.8306497],[22.3059219,38.8305818],[22.3062544,38.8306497],[22.3064317,38.8306117],[22.3064518,38.8302516],[22.3061826,38.8299413],[22.3059314,38.829361],[22.305339,38.829082],[22.3052429,38.8282787],[22.3045951,38.8279089],[22.3043424,38.8273916],[22.3040212,38.8273329],[22.3038223,38.8274651],[22.303278,38.8275834],[22.3029763,38.8281647],[22.3029084,38.8285962],[22.3027911,38.8286846],[22.3024652,38.8293106],[22.302057,38.829521],[22.3017698,38.8294897],[22.3016218,38.8294155],[22.3012849,38.8290502],[22.3014263,38.8289171],[22.3014295,38.828782],[22.3015583,38.8286937],[22.3015624,38.8285226],[22.301681,38.8283801],[22.301652,38.8281454],[22.3017821,38.8280032],[22.30187,38.8272115],[22.3016965,38.8267584],[22.3014933,38.8265843],[22.3012272,38.8261479],[22.300979,38.825928],[22.3006719,38.8257614],[22.300402,38.8254871],[22.3001851,38.8254029],[22.3001928,38.8255652],[22.3000486,38.8258154],[22.299943,38.8258949],[22.2997144,38.8263061],[22.2995267,38.8264475],[22.2994352,38.8264192],[22.2991682,38.8265054],[22.2987895,38.8264458],[22.2984074,38.8265303],[22.298363,38.8264576],[22.2979628,38.8263346],[22.297334,38.8256497],[22.2962801,38.8249225],[22.2963672,38.8246534],[22.296213,38.8243538],[22.2962747,38.8241835],[22.2962359,38.8238766],[22.2966556,38.8236664],[22.2966953,38.8234508],[22.296838,38.8232636],[22.2967949,38.8231368],[22.2968881,38.8230931],[22.2969383,38.8229227],[22.2971157,38.822727],[22.2971728,38.8227459],[22.2972343,38.8225846],[22.2970757,38.8219876],[22.2966969,38.8214504],[22.2964474,38.8212846],[22.2963551,38.8212922],[22.2961078,38.8210363],[22.2956533,38.8207774],[22.2955816,38.8208845],[22.2956133,38.8210021],[22.2954726,38.8211082],[22.2955796,38.8214521],[22.2954774,38.8218741],[22.295611,38.8220653],[22.2954609,38.8220811],[22.2954114,38.8222246],[22.29525,38.8222312],[22.2951239,38.822689],[22.2946812,38.8228988],[22.2943519,38.8231823],[22.2942776,38.8233975],[22.2937771,38.8236154],[22.2929127,38.8236388],[22.2921693,38.8238983],[22.2912892,38.8238088],[22.2913296,38.8240437],[22.290953,38.8243806],[22.2909,38.8246682],[22.2905801,38.8250419],[22.290444,38.825914],[22.2905551,38.8260868],[22.2904384,38.8261482],[22.2903773,38.826778],[22.2901038,38.8271344],[22.2899183,38.8271858],[22.2896695,38.8274705],[22.289449,38.8275393],[22.2891381,38.8275348],[22.2889856,38.8276497],[22.2889126,38.8278108],[22.2887734,38.8278538],[22.2886685,38.8278433],[22.2886052,38.8275991],[22.2884701,38.8274709],[22.2883183,38.8270722],[22.288228,38.8269988],[22.2882305,38.8268907],[22.2872916,38.8261741],[22.2872153,38.8259928],[22.2864146,38.8252782],[22.2857779,38.8244489],[22.2856182,38.8243835],[22.285304,38.8240365],[22.2850405,38.8239785],[22.2847104,38.8238115],[22.2844271,38.8236181],[22.2842933,38.8234359],[22.2839483,38.8234129],[22.2836556,38.8231292],[22.2833206,38.8231694],[22.2831146,38.8231123],[22.2828945,38.8231631],[22.2827898,38.8232066],[22.2827375,38.8234671],[22.2824772,38.8237517],[22.2818815,38.8240808],[22.2819586,38.8237621],[22.2818289,38.8229312],[22.2816829,38.8227758],[22.2813813,38.8226227],[22.2805822,38.8223226],[22.2802935,38.8223544],[22.2800534,38.8222788],[22.2793956,38.8218546],[22.278978,38.8219746],[22.2787362,38.821971],[22.2784062,38.821804],[22.2781705,38.8215482],[22.2780866,38.8212046],[22.2778298,38.8208674],[22.2779962,38.8206536],[22.277719,38.820208],[22.2778921,38.8197149],[22.277863,38.8194892],[22.2779403,38.819148],[22.2780359,38.8190052],[22.2782697,38.8188645],[22.2782254,38.8187917],[22.2777622,38.818893],[22.2748555,38.8200215],[22.2738359,38.8206733],[22.273565,38.8202322]]},{"id":16593,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u0391\u03c3\u03c9\u03c0\u03cc\u03c2, \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03a3\u03b9\u03b4\u03b7\u03c1\u03bf\u03b4\u03c1\u03bf\u03bc\u03b9\u03ba\u03ce\u03bd","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 19\u03bf\u03c5 \u03b1\u03b9. \u03bb\u03b1\u03be\u03b5\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03bf \u03b2\u03c1\u03ac\u03c7\u03bf","path":"STEREA\/Sterea_Oeta_monopati_sidirodromikon","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":5409,"name_EN":"Oeta: Asopos valley, path of the railwaymen","description_EN":"A 19th c. path carved on teh rocks","ascent_time":105,"descent_time":95,"marker":"Red_dots","level":9,"ascent":519,"descent":319,"maxelev":314,"minelev":62,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.42146 38.7763,22.44364 38.79235)","views":113,"millestones":"0,22.4433224,38.7908591#1,22.4395600,38.7912530#2,22.4372686,38.7879457#3,22.4318267,38.7843382#4,22.4321922,38.7779285#5,22.4247069,38.7765182#5.4,22.4217887,38.7772656","x":22.433789,"y":38.786393,"coor":[[22.4433224,38.7908591],[22.4422439,38.7913809],[22.4413181,38.7921255],[22.4412159,38.792061],[22.4413827,38.7918019],[22.4414862,38.7912807],[22.4421646,38.7907941],[22.4414919,38.7910194],[22.4410186,38.7910762],[22.4406861,38.7915403],[22.4397074,38.7920679],[22.4396758,38.792464],[22.4395926,38.79258],[22.4394886,38.7925966],[22.4391418,38.7921324],[22.4391108,38.7919698],[22.4390188,38.7919686],[22.4388287,38.7922364],[22.4387606,38.7921904],[22.438788,38.7919925],[22.4390832,38.7916541],[22.4394336,38.7914245],[22.4397659,38.7909694],[22.4401159,38.7907578],[22.4402357,38.7905431],[22.4404111,38.7904193],[22.440292,38.7900753],[22.4402104,38.7901193],[22.4401133,38.7903522],[22.4400224,38.790297],[22.4400044,38.7900624],[22.440294,38.7894536],[22.4402158,38.7893444],[22.4401122,38.789343],[22.439921,38.7896648],[22.4395686,38.7899845],[22.4392729,38.7898184],[22.4393121,38.7896027],[22.4392263,38.7893132],[22.4390867,38.7893834],[22.4390458,38.7896712],[22.4388849,38.78966],[22.4388812,38.7892995],[22.4389695,38.7890484],[22.4389221,38.7885792],[22.4390866,38.7884282],[22.4390921,38.788176],[22.4394534,38.7879736],[22.4393756,38.7878464],[22.4387914,38.7877124],[22.4382441,38.7879935],[22.4374006,38.7881354],[22.4372867,38.7880798],[22.4372568,38.7878631],[22.437052,38.7877522],[22.4369466,38.7873093],[22.436414,38.7874463],[22.4358988,38.7873133],[22.43574,38.787203],[22.4355539,38.7872907],[22.435034,38.7873738],[22.4349161,38.7874984],[22.4345923,38.7875661],[22.4345675,38.7876469],[22.4343609,38.7876171],[22.434198,38.787696],[22.4340039,38.7876213],[22.4341848,38.7872453],[22.4338336,38.7869883],[22.4338601,38.7868264],[22.4336811,38.7865897],[22.433789,38.786393],[22.4337467,38.7862212],[22.4335388,38.7862544],[22.4331638,38.7865558],[22.4328066,38.786569],[22.432543,38.7865114],[22.4324882,38.7863845],[22.432564,38.7860792],[22.4327287,38.7859192],[22.4327215,38.7857208],[22.4324286,38.7854286],[22.4317396,38.7853472],[22.4321078,38.7848295],[22.4318566,38.7847361],[22.4317593,38.7844464],[22.4319978,38.7840711],[22.4322087,38.7839028],[22.4322357,38.7837229],[22.4324129,38.783518],[22.4323605,38.7832831],[22.4326949,38.7827289],[22.4329892,38.7824354],[22.4330991,38.7821486],[22.4333121,38.7818811],[22.4334123,38.781513],[22.4336462,38.7813449],[22.4340745,38.7807109],[22.4338594,38.7805458],[22.4338173,38.780365],[22.4340546,38.7800438],[22.4341877,38.7797482],[22.4342047,38.7794962],[22.4343114,38.7793534],[22.4340975,38.7791343],[22.4340776,38.7789899],[22.4344123,38.7784266],[22.4345993,38.778294],[22.4345898,38.7782038],[22.434214,38.7780185],[22.4335844,38.7778569],[22.4332372,38.7779423],[22.4329844,38.7779209],[22.4325903,38.7780418],[22.4321328,38.7779095],[22.431627,38.7778757],[22.4311379,38.7781304],[22.4309264,38.7783258],[22.4300478,38.7779716],[22.4297351,38.7780575],[22.4297169,38.777841],[22.4298988,38.7774199],[22.4297787,38.777121],[22.4293382,38.7767366],[22.4291775,38.7767164],[22.4287727,38.7768011],[22.4286354,38.7767632],[22.4285774,38.7762578],[22.4284625,38.7762472],[22.4284189,38.7761385],[22.4282818,38.7760916],[22.4279473,38.7761232],[22.4268439,38.7765679],[22.426714,38.7767193],[22.4260743,38.7770171],[22.4258039,38.7772747],[22.4255,38.7770093],[22.4256031,38.7765061],[22.4254662,38.7764502],[22.4251095,38.7764454],[22.4242899,38.7765965],[22.4217887,38.7772656]]},{"id":16594,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039d\u03b5\u03bf\u03c7\u03ce\u03c1\u03b9-\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2","description_GR":"","path":"STEREA\/Sterea_Oeta_Neochori_Pyrgos","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":6354,"name_EN":"Oeta: Neochori-Pyrgos peak","description_EN":"","ascent_time":185,"descent_time":150,"marker":"No_marks","level":9,"ascent":796,"descent":27,"maxelev":2144,"minelev":1363,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.20357 38.79216,22.25643 38.80477)","views":125,"millestones":"0,22.2037025,38.7993508#1,22.2131986,38.7977102#2,22.2211158,38.8035768#3,22.2315199,38.8051928#4,22.2400699,38.8016792#5,22.2497071,38.7977312#6,22.2553412,38.7944090#6.4,22.2550942,38.7921372","x":22.2362834,"y":38.8035371,"coor":[[22.2037025,38.7993508],[22.20386,38.7989252],[22.2039881,38.7986974],[22.2044412,38.7985332],[22.2051064,38.798183],[22.2053398,38.7979298],[22.2057941,38.7977205],[22.2061245,38.7974012],[22.2068697,38.7970702],[22.2080649,38.7971606],[22.2085276,38.7970776],[22.2087458,38.797099],[22.2090756,38.7972662],[22.2094439,38.7972719],[22.2101859,38.797067],[22.2106743,38.7973358],[22.2112358,38.796984],[22.2120282,38.7970682],[22.2123059,38.797158],[22.2125686,38.7972431],[22.212733,38.7973177],[22.2140522,38.7984372],[22.2144483,38.7987136],[22.2149058,38.7988377],[22.2152687,38.7990595],[22.2160255,38.7996478],[22.2172478,38.800964],[22.2182611,38.8018895],[22.2186201,38.8022734],[22.2190948,38.8030916],[22.2194007,38.8032945],[22.2201158,38.8037109],[22.2207153,38.803684],[22.2217239,38.803411],[22.2230201,38.8031514],[22.2230125,38.8034577],[22.2231807,38.8036404],[22.2235188,38.8039339],[22.2244418,38.8044435],[22.2251993,38.8047344],[22.2262083,38.8049119],[22.2267037,38.8049014],[22.2285878,38.8050832],[22.2296481,38.8050452],[22.2307045,38.8051693],[22.2318667,38.8052049],[22.2321443,38.8051551],[22.2324432,38.8051776],[22.2325813,38.8051797],[22.2327803,38.805034],[22.233096,38.8048406],[22.2332156,38.8046622],[22.2336004,38.8044697],[22.2337655,38.80431],[22.2335836,38.8042172],[22.2335853,38.8041451],[22.2338313,38.8039776],[22.23412,38.803946],[22.2343723,38.8039858],[22.2345423,38.8040965],[22.2345631,38.8041869],[22.2349177,38.8042824],[22.2350922,38.804213],[22.2350608,38.8040863],[22.2354167,38.8041278],[22.2356268,38.8040138],[22.2357875,38.8040342],[22.2362834,38.8035371],[22.2366159,38.8035962],[22.2370775,38.8035581],[22.237526,38.8031144],[22.2378973,38.8030028],[22.2383657,38.8022169],[22.2396326,38.8017405],[22.2400235,38.8017644],[22.2400718,38.801675],[22.2410737,38.8016721],[22.2417218,38.8015376],[22.242339,38.8012586],[22.2428264,38.8006352],[22.2431073,38.8004502],[22.2432109,38.8004517],[22.2442819,38.8001975],[22.2444929,38.8000475],[22.2451069,38.7998945],[22.2450976,38.7998043],[22.2451917,38.7997246],[22.245738,38.7995166],[22.2459443,38.7995557],[22.2463613,38.7994538],[22.2471564,38.7989612],[22.2473045,38.7988057],[22.2475635,38.7985753],[22.2479805,38.7984734],[22.2483377,38.7984608],[22.2486405,38.7983211],[22.2489761,38.7982541],[22.2495126,38.7979738],[22.2498216,38.7975819],[22.2497718,38.7972658],[22.2498545,38.7971769],[22.2497807,38.7970317],[22.2498655,38.7968617],[22.2499465,38.7968449],[22.2499505,38.7966828],[22.2503586,38.7964726],[22.2504651,38.7963571],[22.2509412,38.7963237],[22.251364,38.7964562],[22.2515366,38.7964587],[22.2518558,38.7965897],[22.252493,38.7965181],[22.2532726,38.7966559],[22.2536034,38.796787],[22.2540164,38.7968473],[22.2542351,38.7968505],[22.2543987,38.7967538],[22.2546045,38.796811],[22.2547209,38.7967587],[22.2553553,38.7967141],[22.2556338,38.7966281],[22.2559222,38.796709],[22.2563262,38.7964763],[22.2560534,38.7961523],[22.2561974,38.7959112],[22.2557768,38.7956886],[22.2558472,38.7956356],[22.2557337,38.7955709],[22.2555353,38.7952075],[22.2553691,38.7944661],[22.2551499,38.7940123],[22.2552773,38.7935096],[22.2550447,38.7926591],[22.2550942,38.7921372]]},{"id":16595,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7-\u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7 \u03c3\u03c4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1 (\u03a0\u03c5\u03c1\u03ac \u0397\u03c1\u03b1\u03ba\u03bb\u03ad\u03bf\u03c5\u03c2)","path":"STEREA\/Sterea_Oeta_Pavliani_Katavothra","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":5772,"name_EN":"Oeta: Pavliani-Katavothra","description_EN":"From Pavliani to Katavothra plateau (Hercules Fireplace)","ascent_time":115,"descent_time":95,"marker":"Red_dots","level":9,"ascent":582,"descent":21,"maxelev":1582,"minelev":1008,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.30338 38.7408,22.33858 38.76218)","views":132,"millestones":"0,22.3367309,38.7407678#1,22.3383002,38.7474826#2,22.3350804,38.7533031#3,22.3298260,38.7590132#4,22.3210550,38.7620443#5,22.3110489,38.7611928#5.8,22.3034369,38.7596084","x":22.3324013,"y":38.7553262,"coor":[[22.3367309,38.7407678],[22.3366407,38.740798],[22.3365943,38.7409055],[22.3366713,38.7410598],[22.3364431,38.7409754],[22.3364977,38.7411024],[22.3364055,38.7411101],[22.3363271,38.7410188],[22.3363946,38.7413307],[22.3362778,38.7415948],[22.3363074,38.7417124],[22.3365728,38.7416801],[22.3366869,38.7417178],[22.3368195,38.741954],[22.3367718,38.7420254],[22.3364362,38.7421107],[22.3363864,38.7422722],[22.3366537,38.7423436],[22.3370619,38.7426017],[22.3372454,38.7431269],[22.3372733,38.7433346],[22.3367668,38.743841],[22.3367532,38.7439309],[22.3373573,38.7441738],[22.3375368,38.7443295],[22.3377724,38.7445852],[22.3378906,38.7449473],[22.3378954,38.7452357],[22.3377014,38.7456655],[22.3379664,38.7461468],[22.3379551,38.7466333],[22.3383557,38.7468642],[22.3384283,38.7472077],[22.3381137,38.74787],[22.3379847,38.7479763],[22.3369731,38.7484305],[22.3368135,38.7488607],[22.3367824,38.7497073],[22.3368817,38.7498889],[22.3371864,38.7501456],[22.3374282,38.7506356],[22.3373259,38.7507378],[22.3372609,38.7505341],[22.3370703,38.7503151],[22.336968,38.7502596],[22.3365769,38.750254],[22.3365019,38.7500187],[22.3364098,38.7500174],[22.3363356,38.7502416],[22.3360741,38.7505983],[22.3361179,38.7511936],[22.3364686,38.7519465],[22.3363077,38.7523542],[22.3355736,38.7527493],[22.3351239,38.7532835],[22.3347347,38.7534582],[22.3342785,38.7537761],[22.3331537,38.7541475],[22.3327447,38.754412],[22.3323578,38.7552175],[22.3324013,38.7553262],[22.3326386,38.7555098],[22.3326462,38.7556811],[22.3324316,38.7560025],[22.3320473,38.7561952],[22.331868,38.756481],[22.3315405,38.7567106],[22.3313739,38.7569425],[22.3316149,38.7574686],[22.3322204,38.7576574],[22.3322869,38.7577665],[22.3308256,38.7582503],[22.3304516,38.7584972],[22.3305354,38.7588498],[22.3299665,38.759067],[22.3293392,38.7588237],[22.3290903,38.75864],[22.3289066,38.7586193],[22.3286054,38.7587051],[22.3284939,38.7590459],[22.3283772,38.7591163],[22.3279664,38.7589663],[22.3275011,38.7589912],[22.327412,38.7597603],[22.3262436,38.7605095],[22.3253049,38.76128],[22.3247386,38.7616143],[22.324534,38.7615032],[22.3237523,38.761465],[22.323352,38.7613601],[22.3229459,38.7614985],[22.3222097,38.7619745],[22.3218043,38.7620858],[22.3208502,38.7620361],[22.3199899,38.7619156],[22.3192701,38.761689],[22.3189947,38.761658],[22.3188903,38.7616925],[22.3188103,38.7621599],[22.3177766,38.762082],[22.3168183,38.7622124],[22.3161161,38.7622203],[22.3154339,38.7623546],[22.3151024,38.7622597],[22.3145347,38.7614405],[22.3140752,38.7614069],[22.3135189,38.7615701],[22.3128391,38.7616053],[22.3118036,38.7615904],[22.3111683,38.7612027],[22.3104906,38.7611479],[22.3093231,38.7613653],[22.3086438,38.7613735],[22.3079727,38.7612241],[22.3062896,38.7603707],[22.3057729,38.7603182],[22.3051483,38.7599667],[22.3041407,38.7595826],[22.303842,38.7595603],[22.3034369,38.7596084]]},{"id":16596,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a0\u03b1\u03c1\u03ba\u03ac\u03ba\u03b9 \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","description_GR":"\u03a0\u03b1\u03b9\u03c7\u03bd\u03b9\u03b4\u03bf\u03c0\u03b5\u03c1\u03c0\u03ac\u03c4\u03b7\u03bc\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03bb\u03b7\u03b8\u03b9\u03bd\u03cc \u03c0\u03b5\u03c1\u03c0\u03ac\u03c4\u03b7\u03bc\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7","path":"STEREA\/Sterea_Oeta_Pavliani_Parkaki","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":5,"length":6083,"name_EN":"Oeta: Pavliani Parkaki Trail","description_EN":"A combination of playing-trail and hiking aroud Pavliani","ascent_time":115,"descent_time":115,"marker":"Red_square","level":9,"ascent":308,"descent":308,"maxelev":1210,"minelev":935,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.32214 38.72221,22.34376 38.73817)","views":89,"millestones":"0,22.3411339,38.7383118#1,22.3326175,38.7337506#2,22.3259123,38.7280551#3,22.3254009,38.7220709#4,22.3323615,38.7272083#5,22.3384747,38.7343199#6.1,22.3411339,38.7383118","x":22.3252502,"y":38.7220054,"coor":[[22.3411339,38.7383118],[22.3411176,38.738226],[22.3408775,38.7381595],[22.3410279,38.7381256],[22.3410439,38.7379276],[22.3407624,38.7379146],[22.3405821,38.7377498],[22.3401365,38.7376173],[22.3396311,38.7375831],[22.3394459,38.7374273],[22.3389572,38.7371681],[22.3388182,38.7372111],[22.3385595,38.7369552],[22.3382385,38.7369055],[22.3380225,38.7367943],[22.337956,38.7366853],[22.3372958,38.7363785],[22.3370204,38.7363476],[22.3370221,38.7362755],[22.3368188,38.7361104],[22.3366007,38.7360893],[22.33657,38.7359266],[22.3363027,38.7355444],[22.3356321,38.7351924],[22.3355771,38.7350835],[22.3354741,38.735064],[22.3354425,38.7349374],[22.3352587,38.7349258],[22.3350711,38.7345807],[22.3344549,38.7343647],[22.3337052,38.7341512],[22.3334982,38.7341483],[22.3331118,38.7339445],[22.3327574,38.7338494],[22.3325197,38.7336838],[22.3322036,38.7335621],[22.3319617,38.7335767],[22.3315437,38.7332464],[22.3312242,38.7331337],[22.3306492,38.7331255],[22.3303729,38.7327476],[22.3301604,38.7325778],[22.3297728,38.7324281],[22.3297084,38.7322289],[22.3297807,38.7320858],[22.32969,38.7320304],[22.3295953,38.7316506],[22.3294807,38.731631],[22.3294379,38.7314952],[22.3292769,38.7314929],[22.32911,38.7312472],[22.3287885,38.7312246],[22.3287916,38.7310895],[22.328645,38.7309612],[22.3286398,38.7306908],[22.3283664,38.7305788],[22.3283398,38.730236],[22.3281958,38.7299997],[22.3276156,38.729721],[22.3277453,38.7295877],[22.3277016,38.729488],[22.3270528,38.7291903],[22.3268636,38.7289173],[22.3266361,38.7288059],[22.3262575,38.7287645],[22.3261452,38.7286457],[22.3260378,38.7283198],[22.3259471,38.7282644],[22.3260644,38.728167],[22.3259289,38.7280569],[22.3257453,38.7280363],[22.325875,38.7279029],[22.3254539,38.7277077],[22.3253107,38.7274353],[22.3246909,38.7268858],[22.3241948,38.7266083],[22.3240376,38.7264439],[22.3238992,38.7264599],[22.3238208,38.7263687],[22.3232691,38.7263518],[22.3227834,38.7259663],[22.3227116,38.7255959],[22.3225107,38.7253317],[22.3224529,38.7248533],[22.322616,38.7247655],[22.3226384,38.7242972],[22.3232541,38.7235492],[22.3246486,38.7227402],[22.3252878,38.722461],[22.3252502,38.7220054],[22.3251282,38.7219496],[22.3252502,38.7220054],[22.3255359,38.7221311],[22.3255547,38.7223116],[22.3254474,38.7224723],[22.3255127,38.7226354],[22.3256606,38.7227952],[22.3259681,38.7229258],[22.3263459,38.7230033],[22.3267881,38.7232799],[22.3269714,38.7233096],[22.3272097,38.7234481],[22.3272743,38.7236383],[22.3272182,38.72407],[22.3273365,38.7244231],[22.3279115,38.7244314],[22.3285954,38.7242069],[22.3292278,38.7242159],[22.3301611,38.7246437],[22.3304032,38.7251158],[22.3303879,38.7257733],[22.3308428,38.7259961],[22.3310763,38.7263419],[22.3310728,38.726495],[22.3312751,38.7266961],[22.3319908,38.7270848],[22.3324131,38.727226],[22.33265,38.7274276],[22.3327347,38.7277442],[22.3330675,38.7282716],[22.3330608,38.7285598],[22.3331265,38.7287049],[22.3334869,38.7290345],[22.3337146,38.7296324],[22.3340443,38.7297993],[22.3340366,38.7299299],[22.3343319,38.7300963],[22.3345662,38.730406],[22.334873,38.7305725],[22.3349158,38.7307083],[22.3351868,38.7309284],[22.3352063,38.7310819],[22.3353855,38.7312917],[22.3355895,38.7314208],[22.3356429,38.7316017],[22.3359648,38.731719],[22.3359936,38.7319627],[22.3363384,38.7324722],[22.3369975,38.732824],[22.3373913,38.733208],[22.3378339,38.7334666],[22.3379548,38.7337116],[22.338294,38.7339688],[22.338525,38.7344226],[22.3387417,38.7345068],[22.33891,38.7346894],[22.3390171,38.7350333],[22.3391758,38.7351347],[22.3393713,38.7351375],[22.3394387,38.7352105],[22.3395116,38.735536],[22.3397157,38.735665],[22.3400719,38.7356881],[22.3402042,38.7359333],[22.3406681,38.7362732],[22.3410808,38.7367251],[22.3414534,38.7365322],[22.3418919,38.7369709],[22.3419728,38.7369541],[22.3421663,38.7370469],[22.3422739,38.7368682],[22.3422404,38.7363271],[22.3423523,38.7364638],[22.342768,38.7363977],[22.3429476,38.7364543],[22.3428884,38.7365255],[22.3430657,38.7368164],[22.3430492,38.7370324],[22.343127,38.7371507],[22.3429981,38.7377526],[22.3430667,38.7377715],[22.3430642,38.7378796],[22.3431899,38.7379175],[22.3433906,38.7381906],[22.3427182,38.7384154],[22.3427744,38.7384703],[22.3419338,38.7383006],[22.3414677,38.7383075],[22.3411339,38.7383118]]},{"id":16597,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7-\u03a0\u03c5\u03c1\u03ac \u0397\u03c1\u03b1\u03ba\u03bb\u03ad\u03bf\u03c5\u03c2","description_GR":"\u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7-\u03a0\u03c5\u03c1\u03b3\u03ac\u03ba\u03b9-\u039c\u03b1\u03ba\u03c1\u03c5\u03c1\u03ac\u03c7\u03b7-\u03a0\u03c5\u03c1\u03ac \u0397\u03c1\u03b1\u03ba\u03bb\u03ad\u03bf\u03c5\u03c2","path":"STEREA\/Sterea_Oeta_Pavliani_PyraIrakleous","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10840,"name_EN":"Oeta: Pavliani-Pyra of Hercules","description_EN":"Pavliani-Pyrgaki-Makryrachi-Pyra of Hercules","ascent_time":275,"descent_time":245,"marker":"Red_square","level":9,"ascent":926,"descent":289,"maxelev":1689,"minelev":935,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.2956 38.71491,22.34168 38.75949)","views":123,"millestones":"0,22.3411351,38.7383073#1,22.3326149,38.7337485#2,22.3259084,38.7280545#3,22.3252495,38.7217072#4,22.3176111,38.7182052#5,22.3097387,38.7156190#6,22.3046881,38.7219306#7,22.3010292,38.7296993#8,22.2984671,38.7379025#9,22.2972281,38.7457778#10,22.3002141,38.7539085#10.8,22.3034369,38.7596084","x":22.3094659,"y":38.7158941,"coor":[[22.3411351,38.7383073],[22.3411179,38.738226],[22.3408779,38.7381595],[22.3410282,38.7381256],[22.3410454,38.7379276],[22.3407627,38.7379146],[22.3405825,38.7377498],[22.3401368,38.7376173],[22.3396314,38.7375831],[22.3394509,38.7374274],[22.3389576,38.7371681],[22.3388185,38.7372111],[22.3385598,38.7369552],[22.3382388,38.7369055],[22.3380228,38.7367943],[22.3379563,38.7366853],[22.3372962,38.7363785],[22.3370208,38.7363476],[22.3370224,38.7362755],[22.3368192,38.7361104],[22.3366011,38.7360893],[22.3365703,38.7359267],[22.3363031,38.7355444],[22.3356325,38.7351924],[22.3355775,38.7350835],[22.3354744,38.735064],[22.3354428,38.7349374],[22.335259,38.7349258],[22.3350715,38.7345807],[22.3344598,38.7343693],[22.3337056,38.7341513],[22.3334986,38.7341483],[22.3331122,38.7339446],[22.3327578,38.7338494],[22.33252,38.7336838],[22.3322043,38.7335622],[22.3319624,38.7335767],[22.3315444,38.7332464],[22.3312249,38.7331337],[22.3306499,38.7331255],[22.330376,38.7327521],[22.3301615,38.7325778],[22.3297738,38.7324281],[22.3297095,38.732229],[22.3297818,38.7320858],[22.3296911,38.7320305],[22.3295964,38.7316507],[22.3294818,38.731631],[22.3294389,38.7314952],[22.3292779,38.7314929],[22.3291111,38.7312472],[22.3287895,38.7312246],[22.3287927,38.7310895],[22.3286461,38.7309612],[22.3286409,38.7306908],[22.3283674,38.7305788],[22.3283409,38.730236],[22.3281969,38.7299997],[22.3276167,38.729721],[22.3277463,38.7295877],[22.3277026,38.729488],[22.3270539,38.7291904],[22.3268647,38.7289173],[22.3266372,38.7288059],[22.3262586,38.7287645],[22.3261463,38.7286457],[22.3260389,38.7283198],[22.3259481,38.7282644],[22.3260655,38.728167],[22.32593,38.7280569],[22.3257464,38.7280363],[22.3258761,38.727903],[22.325455,38.7277077],[22.3253118,38.7274353],[22.324692,38.7268858],[22.3241963,38.7266084],[22.3240391,38.7264439],[22.3239006,38.7264599],[22.3238223,38.7263687],[22.3232705,38.7263518],[22.3227849,38.7259664],[22.322713,38.7255959],[22.3225121,38.7253317],[22.3224543,38.7248533],[22.3226174,38.7247655],[22.3226399,38.7242973],[22.323262,38.7235493],[22.3246497,38.7227402],[22.3252888,38.722461],[22.3252419,38.7220098],[22.3251304,38.7219496],[22.3253479,38.7215022],[22.325485,38.7214005],[22.3252624,38.7210819],[22.3248448,38.7207426],[22.3245816,38.7206847],[22.3243048,38.7207168],[22.3241996,38.7207874],[22.3233783,38.7205548],[22.3230491,38.7203699],[22.3228979,38.7204398],[22.3225313,38.7203625],[22.3224213,38.7203474],[22.3220189,38.7203416],[22.3217011,38.7201568],[22.3210719,38.7190304],[22.3205282,38.7186712],[22.3203089,38.7187041],[22.3201163,38.7190708],[22.3197054,38.7194253],[22.3195546,38.7194772],[22.3188583,38.7192509],[22.3182105,38.7189172],[22.3180263,38.7189236],[22.3179296,38.7186338],[22.3177306,38.7184778],[22.3174573,38.7178701],[22.3171013,38.7178289],[22.3169083,38.7179073],[22.3161005,38.717346],[22.3157002,38.7172501],[22.3155643,38.717158],[22.3151272,38.7171607],[22.3147114,38.7172358],[22.3145973,38.7171981],[22.3145453,38.7169631],[22.3142961,38.7167973],[22.3142305,38.7166522],[22.3140834,38.716551],[22.3135976,38.7156879],[22.3131677,38.7153844],[22.3128598,38.7152718],[22.3127476,38.715153],[22.312553,38.7151142],[22.3125236,38.7148975],[22.3123179,38.7148405],[22.3124739,38.7145634],[22.3123282,38.7144937],[22.3117389,38.7146113],[22.3114397,38.714616],[22.3113231,38.7146864],[22.3112507,38.7148295],[22.3111589,38.7148192],[22.31081,38.7149854],[22.3106196,38.7152529],[22.3103999,38.7153038],[22.3102824,38.7154103],[22.3099253,38.7154321],[22.3094659,38.7158941],[22.3093043,38.7159188],[22.3089929,38.7158647],[22.308408,38.7163744],[22.3084054,38.7164689],[22.3083242,38.7164948],[22.308225,38.7163131],[22.3079286,38.7162007],[22.3077728,38.7164688],[22.3075505,38.7166278],[22.3073832,38.7168957],[22.3070791,38.7171075],[22.3070189,38.7172238],[22.3066965,38.7172372],[22.3066228,38.7174343],[22.3064263,38.7174765],[22.3062615,38.7176363],[22.3061748,38.7178243],[22.3062178,38.7179511],[22.3060066,38.7181282],[22.305987,38.7184704],[22.3058495,38.7189369],[22.3057971,38.7196931],[22.3058542,38.7201985],[22.3057286,38.7206473],[22.3055846,38.7208975],[22.3054466,38.7208955],[22.305502,38.7209864],[22.3054085,38.7210481],[22.3054767,38.7210851],[22.305284,38.7214518],[22.3047372,38.7217142],[22.3046729,38.7220016],[22.304474,38.7221429],[22.3045159,38.7223147],[22.3042576,38.7225362],[22.3042312,38.72268],[22.3039979,38.7228208],[22.3039438,38.7231624],[22.3036491,38.7234645],[22.303698,38.7238257],[22.3033769,38.7242716],[22.3034434,38.7243807],[22.3031478,38.7247188],[22.302927,38.7253013],[22.3027408,38.7253887],[22.3027221,38.7256948],[22.3028524,38.7260211],[22.3026786,38.7260726],[22.3026744,38.7262528],[22.3023899,38.7266091],[22.302455,38.7267722],[22.3023123,38.7269684],[22.302412,38.727132],[22.3020593,38.7274513],[22.3019043,38.7276833],[22.3016147,38.7277692],[22.3015197,38.727894],[22.301574,38.7280299],[22.301479,38.7281547],[22.3014924,38.7285604],[22.3013497,38.7287566],[22.3012134,38.7291691],[22.3009873,38.7294902],[22.3010488,38.7298065],[22.3009704,38.7302018],[22.3005996,38.7308001],[22.3007212,38.7310092],[22.3005794,38.7311693],[22.3006319,38.7313773],[22.300545,38.7316464],[22.3005759,38.7318],[22.3004068,38.7321399],[22.3002907,38.7326699],[22.3003222,38.7327965],[22.3002319,38.7332097],[22.3002962,38.7334089],[22.3001765,38.7336054],[22.3002621,38.7338769],[22.3002548,38.7341832],[22.3000184,38.7344501],[22.2999066,38.7347999],[22.2997042,38.7350853],[22.299366,38.7352786],[22.2991724,38.7356813],[22.2984687,38.7362477],[22.2982173,38.7366586],[22.2985469,38.7377987],[22.2983569,38.7380483],[22.2983976,38.7382741],[22.2983362,38.7384354],[22.2985458,38.7388169],[22.2984158,38.7389592],[22.2984471,38.7390948],[22.29833,38.7391832],[22.2982307,38.7394882],[22.2980901,38.7395943],[22.2976479,38.7402907],[22.2975814,38.7406681],[22.2969403,38.7410192],[22.2966284,38.7415553],[22.2967821,38.7418639],[22.2966756,38.7419885],[22.2966952,38.742133],[22.2960331,38.7428803],[22.2959943,38.7430599],[22.2961229,38.7434583],[22.2960856,38.7440615],[22.2963377,38.7445878],[22.2963675,38.7447864],[22.2964597,38.7447788],[22.2966028,38.7450512],[22.2969421,38.7452994],[22.2971875,38.7456274],[22.2972403,38.7458264],[22.2975351,38.7460109],[22.2975544,38.7461644],[22.2976799,38.7462112],[22.2978686,38.7465023],[22.2980628,38.7465592],[22.2982537,38.7467602],[22.2983145,38.7471035],[22.2984909,38.7474305],[22.2984862,38.7476287],[22.2983918,38.7477264],[22.2982772,38.7481933],[22.2985046,38.7487913],[22.2984424,38.7489887],[22.2985866,38.749216],[22.2987302,38.7496326],[22.298769,38.7499396],[22.2990476,38.7503221],[22.2990384,38.7508446],[22.2991321,38.7512604],[22.2996084,38.7515557],[22.2998171,38.7519732],[22.3001156,38.7522614],[22.3000525,38.7529814],[22.3001061,38.7536309],[22.3005834,38.7548543],[22.3006291,38.7550352],[22.3010886,38.7568441],[22.3012778,38.7571171],[22.3016397,38.7573837],[22.3019158,38.7578743],[22.3026318,38.7587407],[22.3030599,38.7590533],[22.3034369,38.7596084]]},{"id":16598,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7, \u03a5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf\u03c2 \u03a4\u03b6\u03b9\u03c1\u03bf\u03cd","description_GR":"\u039c\u03b9\u03b1 \u03c9\u03c1\u03b1\u03ac\u03b9 \u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c4\u03b7\u03c2 \u03a0\u03b1\u03cd\u03bb\u03b9\u03b1\u03bd\u03b7\u03c2","path":"STEREA\/Sterea_Oeta_Pavliani_Ygrotopos","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":4,"length":4801,"name_EN":"Oeta: Pavliani, Tzirou wetland","description_EN":"A nice hike along thePavlianis stream","ascent_time":90,"descent_time":85,"marker":"Red_square","level":9,"ascent":216,"descent":216,"maxelev":955,"minelev":739,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34126 38.73734,22.36025 38.74415)","views":77,"millestones":"0,22.3455877,38.7380055#1,22.3468181,38.7401386#2,22.3553010,38.7423906#3,22.3586815,38.7408671#4,22.3524109,38.7392829#4.8,22.3455888,38.7380055","x":22.3559184,"y":38.7428054,"coor":[[22.3455877,38.7380055],[22.3443265,38.7385643],[22.3427755,38.7384703],[22.3419349,38.7383007],[22.341391,38.7382974],[22.3414109,38.7383698],[22.3416183,38.7383547],[22.34157,38.7384532],[22.3419701,38.738567],[22.3421499,38.7387497],[22.3422645,38.7387694],[22.3422403,38.7388231],[22.3423195,38.7388783],[22.3426271,38.7390088],[22.3430395,38.7390867],[22.3433183,38.7394692],[22.3439193,38.7393515],[22.3440613,38.7391823],[22.3442116,38.7391484],[22.3444753,38.7391882],[22.3445653,38.7392796],[22.3449699,38.7391952],[22.3452106,38.7392347],[22.3453125,38.7393037],[22.3457212,38.7395437],[22.3459167,38.7395465],[22.3460029,38.7398],[22.3461282,38.7398559],[22.3461598,38.7399825],[22.346628,38.7401333],[22.3471454,38.7401496],[22.3474634,38.7398297],[22.3480192,38.7396754],[22.3481441,38.7397492],[22.3481826,38.7400742],[22.3483079,38.74013],[22.3484925,38.7401056],[22.3486983,38.7401625],[22.3489292,38.7401298],[22.349236,38.7402963],[22.3494217,38.7402268],[22.3495593,38.7402468],[22.3494639,38.7403896],[22.3497381,38.7404746],[22.3498124,38.740746],[22.3500408,38.7408213],[22.3502102,38.7409588],[22.3505778,38.740982],[22.3506998,38.741182],[22.3508824,38.7412477],[22.3510894,38.7412506],[22.3512427,38.7410905],[22.3516662,38.7411866],[22.3518207,38.7409725],[22.3522849,38.7407989],[22.3524204,38.7409089],[22.3525695,38.740929],[22.3526578,38.7410925],[22.3527508,38.7410487],[22.352992,38.7410701],[22.3533431,38.7413094],[22.3535629,38.7412584],[22.3540205,38.741373],[22.354018,38.7414811],[22.3544863,38.7416318],[22.3546543,38.7418325],[22.354826,38.7418709],[22.3552287,38.7423722],[22.3555261,38.7424485],[22.3558438,38.7426422],[22.3559184,38.7428054],[22.3560753,38.7431455],[22.3565851,38.7434951],[22.3567818,38.7439484],[22.3570083,38.7441048],[22.3572207,38.7443781],[22.3575009,38.7442018],[22.3578702,38.7441529],[22.358823,38.7437428],[22.3591102,38.7437649],[22.3594002,38.7436608],[22.3597088,38.7432506],[22.3595788,38.7428974],[22.359223,38.7428563],[22.3590419,38.7427276],[22.3590361,38.7426194],[22.3594153,38.7426428],[22.3596005,38.7425913],[22.3601432,38.7420042],[22.3594187,38.7409848],[22.3592149,38.7408378],[22.3589751,38.7407623],[22.3588594,38.7407877],[22.3587532,38.7409034],[22.3586844,38.7408934],[22.3586368,38.7404602],[22.358536,38.7403417],[22.3583756,38.7403124],[22.3582248,38.7403643],[22.357961,38.7408292],[22.3576792,38.7410775],[22.357365,38.7412353],[22.3568905,38.7413548],[22.3566568,38.7410091],[22.3566381,38.7408196],[22.3568505,38.7405883],[22.3573172,38.7403065],[22.3573596,38.7399647],[22.3574902,38.7397863],[22.3574808,38.7396961],[22.3568967,38.7395797],[22.3564588,38.7396096],[22.3560747,38.7392979],[22.356032,38.7391531],[22.3560933,38.7389917],[22.3560142,38.7389276],[22.3556685,38.7389497],[22.3554457,38.7391358],[22.3547648,38.7392254],[22.3544777,38.7392033],[22.3540218,38.7390167],[22.3535505,38.7389965],[22.3532102,38.7392395],[22.3520929,38.7392958],[22.3518384,38.7393553],[22.3515883,38.7392257],[22.3510605,38.7391641],[22.3508563,38.7390351],[22.350478,38.7389757],[22.3501186,38.7390968],[22.3497844,38.7391191],[22.3497358,38.7387309],[22.3496137,38.73854],[22.3488158,38.7382133],[22.3482043,38.7377902],[22.3473988,38.7377968],[22.3469613,38.7371554],[22.3463759,38.7375976],[22.3462573,38.7377492],[22.3455888,38.7380055]]},{"id":16599,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u0393\u03c1\u03b5\u03b2\u03b5\u03bd\u03cc","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03b7\u03c2 \u039f\u03af\u03c4\u03b7\u03c2","path":"STEREA\/Sterea_Oeta_Trapeza_Greveno","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":5,"length":4317,"name_EN":"Oeta: Trapeza refuge-Greveno peak","description_EN":"Ascent to the 2nd summit of Oeat Mt.","ascent_time":135,"descent_time":115,"marker":"Red_dots","level":9,"ascent":344,"descent":20,"maxelev":2093,"minelev":1742,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.27028 38.81895,22.28913 38.83192)","views":64,"millestones":"0,22.2718906,38.8319484#1,22.2738203,38.8247356#2,22.2778796,38.8194152#3,22.2838393,38.8233071#4,22.2887340,38.8251272#4.3,22.2881430,38.8227896","x":22.2802935,"y":38.8223544,"coor":[[22.2718906,38.8319484],[22.271483,38.831654],[22.2712088,38.8315599],[22.2702871,38.8315642],[22.2707547,38.8312828],[22.2709555,38.830601],[22.271353,38.829886],[22.271662,38.8294941],[22.2718106,38.8290638],[22.2721489,38.8288886],[22.2725459,38.8281916],[22.2726426,38.8280038],[22.2730556,38.8275955],[22.2734789,38.8267637],[22.2735756,38.8260984],[22.273832,38.8254984],[22.2738103,38.8252053],[22.2737799,38.8247948],[22.2740906,38.8243309],[22.2744189,38.8240924],[22.2745062,38.823918],[22.2744736,38.8233589],[22.2745393,38.8225489],[22.2738359,38.8206733],[22.2748555,38.8200215],[22.2777622,38.818893],[22.2782254,38.8187917],[22.2782697,38.8188645],[22.2780359,38.8190052],[22.2779403,38.819148],[22.277863,38.8194892],[22.2778921,38.8197149],[22.277719,38.820208],[22.2779962,38.8206536],[22.2778298,38.8208674],[22.2780866,38.8212046],[22.2781705,38.8215482],[22.2784062,38.821804],[22.2787362,38.821971],[22.278978,38.8219746],[22.2793956,38.8218546],[22.2800534,38.8222788],[22.2802935,38.8223544],[22.2805822,38.8223226],[22.2813813,38.8226227],[22.2816829,38.8227758],[22.2818289,38.8229312],[22.2819586,38.8237621],[22.2818815,38.8240808],[22.2824772,38.8237517],[22.2827375,38.8234671],[22.2827898,38.8232066],[22.2828945,38.8231631],[22.2831146,38.8231123],[22.2833206,38.8231694],[22.2836556,38.8231292],[22.2839483,38.8234129],[22.2842933,38.8234359],[22.2844271,38.8236181],[22.2847104,38.8238115],[22.2850405,38.8239785],[22.285304,38.8240365],[22.2856182,38.8243835],[22.2857779,38.8244489],[22.2864146,38.8252782],[22.2872153,38.8259928],[22.2872916,38.8261741],[22.2882305,38.8268907],[22.288228,38.8269988],[22.2883183,38.8270722],[22.2884701,38.8274709],[22.2886052,38.8275991],[22.2886685,38.8278433],[22.2887734,38.8278538],[22.2889363,38.82682],[22.2887909,38.8251959],[22.288679,38.8250591],[22.2886416,38.8246982],[22.2886694,38.8245003],[22.2885978,38.8244813],[22.2884031,38.8239558],[22.2884321,38.8237039],[22.2881987,38.8233491],[22.288143,38.8227896]]},{"id":16600,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03a0\u03cd\u03c1\u03b3\u03bf\u03c2","description_GR":"\u0397 \u03ba\u03bb\u03b1\u03c3\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03b7\u03c2 \u039f\u03af\u03c4\u03b7\u03c2","path":"STEREA\/Sterea_Oeta_Trapeza_Pyrgos","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":6343,"name_EN":"Oeta: HAC refuge-Pyrgos peak","description_EN":"The classin ascent to Mt. Oeta summit","ascent_time":310,"descent_time":245,"marker":"No_marks","level":9,"ascent":420,"descent":44,"maxelev":2144,"minelev":1742,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25409 38.79244,22.27527 38.83168)","views":77,"millestones":"0,22.2718906,38.8319484#1,22.2738203,38.8247356#2,22.2692689,38.8198301#3,22.2649150,38.8145201#4,22.2582431,38.8105898#5,22.2556761,38.8024609#6,22.2554363,38.7947642#6.3,22.2550942,38.7921372","x":22.2647969,"y":38.8126685,"coor":[[22.2718906,38.8319484],[22.271483,38.831654],[22.2712088,38.8315599],[22.2702871,38.8315642],[22.2707547,38.8312828],[22.2709555,38.830601],[22.271353,38.829886],[22.271662,38.8294941],[22.2718106,38.8290638],[22.2721489,38.8288886],[22.2725459,38.8281916],[22.2726426,38.8280038],[22.2730556,38.8275955],[22.2734789,38.8267637],[22.2735756,38.8260984],[22.273832,38.8254984],[22.2738103,38.8252053],[22.2737799,38.8247948],[22.2740906,38.8243309],[22.2744189,38.8240924],[22.2745062,38.823918],[22.2744736,38.8233589],[22.2745393,38.8225489],[22.2738359,38.8206733],[22.273565,38.8202322],[22.2724066,38.8205801],[22.272044,38.820809],[22.2717844,38.8210664],[22.2716104,38.8211179],[22.2714505,38.8210615],[22.2710779,38.8207496],[22.2707992,38.820367],[22.2703022,38.8199632],[22.2696235,38.8199261],[22.269143,38.8197929],[22.2684969,38.8198373],[22.2684763,38.8197379],[22.2688663,38.8193292],[22.2693994,38.8191929],[22.2695448,38.8188977],[22.2692737,38.8186775],[22.269565,38.8185376],[22.2695804,38.8183756],[22.2697578,38.8181125],[22.2694984,38.8178834],[22.2692894,38.8178622],[22.2689301,38.817956],[22.2688502,38.8179278],[22.2689143,38.8176584],[22.2686032,38.8171853],[22.2681842,38.8168907],[22.2678417,38.8167685],[22.2678187,38.8162906],[22.2672561,38.8157416],[22.2663345,38.8152774],[22.2656804,38.8151776],[22.2655112,38.8150309],[22.2648061,38.81466],[22.2648087,38.8145519],[22.2650988,38.8144661],[22.2651585,38.8143769],[22.2645632,38.8137553],[22.2643816,38.8136445],[22.2644681,38.8134025],[22.2642922,38.8130575],[22.2643524,38.8129502],[22.2647243,38.8128116],[22.2647969,38.8126685],[22.2644518,38.8121768],[22.264484,38.8117988],[22.2640546,38.811459],[22.2628891,38.8110813],[22.2618669,38.810967],[22.2613366,38.8109861],[22.260827,38.8111047],[22.2603043,38.8112861],[22.2600467,38.8114625],[22.2594842,38.8109135],[22.2590387,38.8107627],[22.2582455,38.8107058],[22.2582399,38.8104624],[22.2580605,38.8102615],[22.2579531,38.8101202],[22.2576015,38.8098987],[22.2568385,38.8095449],[22.2566493,38.8094069],[22.2566903,38.8091462],[22.2565507,38.8087297],[22.2565502,38.8082791],[22.2563876,38.8078622],[22.2562993,38.8072301],[22.2564133,38.8068083],[22.2563678,38.8063121],[22.2562243,38.8060576],[22.2561419,38.8056419],[22.2561569,38.8050294],[22.2560907,38.8049113],[22.2557723,38.8047443],[22.2557305,38.8036264],[22.2556211,38.8033905],[22.2558074,38.8028346],[22.255686,38.8026165],[22.2556782,38.8024632],[22.2552744,38.8020247],[22.2551767,38.8017799],[22.2552963,38.8011239],[22.2555121,38.8007757],[22.2557215,38.8006888],[22.2558879,38.800475],[22.2561916,38.8002993],[22.2562783,38.8000483],[22.2564923,38.7997722],[22.256239,38.7992998],[22.2562104,38.7990561],[22.2560346,38.7987111],[22.2560748,38.7984774],[22.2559986,38.798296],[22.255843,38.7980685],[22.2556163,38.7979209],[22.2554715,38.7977205],[22.2556684,38.7972008],[22.2556373,38.7970562],[22.2559222,38.796709],[22.2563262,38.7964763],[22.2560534,38.7961523],[22.2561974,38.7959112],[22.2557768,38.7956886],[22.2558472,38.7956356],[22.2557337,38.7955709],[22.2555353,38.7952075],[22.2553691,38.7944661],[22.2551499,38.7940123],[22.2552773,38.7935096],[22.2550447,38.7926591],[22.2550942,38.7921372]]},{"id":16601,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a5\u03c0\u03ac\u03c4\u03b7-\u0393\u03b5\u03c1\u03c3\u03b1\u03bb\u03ae","description_GR":"\u0391\u03c0\u03cc\u03c4\u03bf\u03bc\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03b1\u03bb\u03b9\u03ac \u03c3\u03c0\u03b7\u03bb\u03b1\u03b9\u03bf\u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03b9\u03ac","path":"STEREA\/Sterea_Oeta_Ypati_Gersali","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":5,"length":3075,"name_EN":"Oeta: Ypati-Gersali","description_EN":"Steep slopes to the cave-church","ascent_time":95,"descent_time":75,"marker":"Red_dots","level":9,"ascent":696,"descent":49,"maxelev":1063,"minelev":402,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.24105 38.86217,22.25836 38.87172)","views":42,"millestones":"0,22.2410889,38.8717120#1,22.2454541,38.8670668#2,22.2534773,38.8637790#3.1,22.2583595,38.8621764","x":22.2527903,"y":38.8641656,"coor":[[22.2410889,38.871712],[22.2419265,38.8717336],[22.2419661,38.8710494],[22.2419958,38.8707796],[22.2420249,38.8705773],[22.2423216,38.8702303],[22.2419788,38.870108],[22.2411542,38.8697487],[22.2411001,38.8696037],[22.2412977,38.8695391],[22.2416781,38.8695358],[22.2421594,38.8696512],[22.2423326,38.8696358],[22.2428152,38.8692286],[22.2435358,38.8689871],[22.2435841,38.8688977],[22.2434846,38.868725],[22.2436362,38.8686552],[22.2434538,38.8685714],[22.2438185,38.8682705],[22.2441645,38.8677666],[22.2441711,38.8674964],[22.2443694,38.8674003],[22.2446703,38.8673507],[22.2448518,38.8674706],[22.2449792,38.8674455],[22.2452752,38.8671255],[22.2453556,38.867325],[22.2454307,38.8671144],[22.2460014,38.8659335],[22.2461274,38.8661562],[22.2466552,38.8662542],[22.246906,38.8663661],[22.2474196,38.8664234],[22.2475849,38.8662637],[22.2476824,38.8660489],[22.2482748,38.8658595],[22.2484756,38.8656643],[22.2488231,38.8655028],[22.2499107,38.8653299],[22.2506117,38.8649439],[22.2510595,38.8645452],[22.2513242,38.8645582],[22.2519189,38.8642787],[22.2520584,38.8642267],[22.2521807,38.8639402],[22.2523609,38.8641141],[22.2524134,38.8643222],[22.2525175,38.8643057],[22.2526167,38.8641991],[22.2526605,38.8642898],[22.2527642,38.8642914],[22.2527903,38.8641656],[22.2529169,38.8641765],[22.2529762,38.8641053],[22.2531958,38.8640816],[22.2532591,38.8638482],[22.2534687,38.8637613],[22.2535126,38.863852],[22.2537182,38.8639272],[22.2537936,38.8641446],[22.2539535,38.864201],[22.2539786,38.8641203],[22.2540477,38.8641213],[22.2540998,38.8643474],[22.2543973,38.8644329],[22.2544802,38.8643441],[22.2547587,38.8642671],[22.254775,38.8641728],[22.2546288,38.8640264],[22.2547675,38.8640105],[22.2547236,38.8639197],[22.2548986,38.8638322],[22.2548891,38.863751],[22.2549941,38.8636985],[22.2549267,38.8636254],[22.2552907,38.8633515],[22.2551336,38.8631779],[22.2551555,38.8631197],[22.2553261,38.8632124],[22.2553416,38.8630504],[22.2554949,38.8629085],[22.2558029,38.8630393],[22.255876,38.8628782],[22.2557926,38.8625165],[22.2558963,38.8625181],[22.2558301,38.8623999],[22.2561194,38.8623502],[22.2560981,38.8622778],[22.2571026,38.8622027],[22.2572373,38.8623489],[22.2571268,38.8626265],[22.2573821,38.8625583],[22.2573621,38.8624318],[22.2574549,38.8624062],[22.2575316,38.8625695],[22.2576136,38.8625167],[22.2578635,38.8626646],[22.2579455,38.8626117],[22.2579596,38.8625038],[22.2580624,38.8625414],[22.2581289,38.8626505],[22.2583316,38.8623742],[22.2583595,38.8621764]]},{"id":16602,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03c9\u03bd \u03a6\u03b1\u03c1\u03bc\u03b1\u03ba\u03b9\u03b4\u03ce\u03bd","description_GR":"\u03a5\u03c0\u03ac\u03c4\u03b7-\u039a\u03b1\u03c0\u03bd\u03bf\u03c7\u03ce\u03c1\u03b9","path":"STEREA\/Sterea_Oeta_Ypati_Kapnochori","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":5,"length":2754,"name_EN":"Oeta: Farmakides Trail","description_EN":"Ipati-Kapnochori","ascent_time":140,"descent_time":140,"marker":"Red_dots","level":9,"ascent":395,"descent":395,"maxelev":594,"minelev":368,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.22212 38.86013,22.24114 38.87141)","views":71,"millestones":"0,22.2408555,38.8716950#1,22.2322288,38.8676745#2,22.2280983,38.8629530#3,22.2237220,38.8610630#4,22.2304457,38.8610386#5,22.2341375,38.8653392#6,22.2374992,38.8715400#2.8,22.2408555,38.8716950","x":22.2247534,"y":38.8599132,"coor":[[22.2408555,38.871695],[22.2407288,38.8716931],[22.2400955,38.8716655],[22.2399737,38.8716547],[22.2393531,38.8716228],[22.2391182,38.8716102],[22.2381292,38.8715638],[22.2373601,38.8715341],[22.2372926,38.8713214],[22.2372915,38.8709024],[22.2373939,38.8704894],[22.2373554,38.8703266],[22.2371744,38.8701888],[22.2364946,38.8701785],[22.2358981,38.8700614],[22.2351134,38.869635],[22.2342644,38.8689058],[22.2336527,38.8684731],[22.2327269,38.8676932],[22.232532,38.8676542],[22.2316545,38.867713],[22.2314332,38.8678087],[22.2312954,38.8680184],[22.231681,38.8677629],[22.2316616,38.8676185],[22.2319618,38.8673617],[22.2320137,38.8671282],[22.2319411,38.8668027],[22.2318379,38.8667832],[22.2319884,38.8662899],[22.2317954,38.8661698],[22.2317529,38.866025],[22.231507,38.8661834],[22.2314161,38.866128],[22.2314162,38.8656595],[22.2315399,38.8653189],[22.2316465,38.8652034],[22.2315818,38.8650222],[22.2316288,38.864622],[22.2315186,38.8639535],[22.2312039,38.8636334],[22.2308853,38.8634663],[22.2306611,38.8632107],[22.2304558,38.8631264],[22.229849,38.8629641],[22.2291941,38.8628821],[22.2289499,38.8629685],[22.2284541,38.862979],[22.2282718,38.8628951],[22.2281543,38.8629834],[22.2280976,38.8629465],[22.2281071,38.8630278],[22.2278873,38.8630605],[22.2270233,38.8630473],[22.2268381,38.8630806],[22.2268947,38.8632076],[22.2266155,38.8633115],[22.2261099,38.8632497],[22.2260193,38.8631853],[22.2253414,38.8631029],[22.2248949,38.8634475],[22.2246085,38.8638396],[22.2244487,38.8639678],[22.2240965,38.8637643],[22.2232616,38.8635894],[22.2229065,38.8635029],[22.2226593,38.8632919],[22.2223349,38.8628094],[22.2225183,38.8624743],[22.2228151,38.8621859],[22.2231287,38.8617537],[22.2231731,38.8613579],[22.2229337,38.8612551],[22.2228672,38.861146],[22.2230201,38.8610222],[22.2230278,38.8607159],[22.2233479,38.8608199],[22.2234839,38.8609121],[22.2235494,38.8610573],[22.2237315,38.8611501],[22.2237222,38.8610599],[22.22386,38.86108],[22.2239201,38.8609818],[22.2238755,38.8604585],[22.2239242,38.8603511],[22.2240412,38.8602808],[22.2243877,38.8602501],[22.2244595,38.860143],[22.2247033,38.8600746],[22.2247534,38.8599132],[22.2250884,38.8598823],[22.2252244,38.8599744],[22.2252375,38.8603711],[22.2253629,38.8604271],[22.225449,38.8606717],[22.2257945,38.8611455],[22.2257998,38.8613978],[22.2258822,38.861327],[22.2258982,38.861147],[22.225811,38.8609475],[22.2259031,38.8609489],[22.2263089,38.8613155],[22.2264386,38.8616598],[22.2268498,38.8618103],[22.2273013,38.861727],[22.2274314,38.8615938],[22.2280128,38.8613864],[22.2281263,38.8609917],[22.2282608,38.860872],[22.2287072,38.8605274],[22.2289828,38.8605676],[22.2296632,38.8608257],[22.2300674,38.8609805],[22.2305152,38.8610504],[22.2306195,38.861025],[22.2309173,38.8611421],[22.231286,38.8611477],[22.2315602,38.8612419],[22.2319778,38.861469],[22.2322549,38.8616219],[22.232515,38.8618241],[22.232604,38.8618209],[22.2328865,38.8617126],[22.2330355,38.8612823],[22.2330376,38.8607327],[22.2328229,38.8605582],[22.2328814,38.8605231],[22.2328229,38.8605582],[22.2330376,38.8607327],[22.2330355,38.8612823],[22.2328865,38.8617126],[22.232604,38.8618209],[22.232631,38.8621277],[22.23273,38.8623184],[22.2333112,38.863048],[22.2333694,38.8638554],[22.233486,38.8639022],[22.2337195,38.8642481],[22.2339009,38.864368],[22.2338792,38.8647822],[22.2340289,38.8647844],[22.2340178,38.8652348],[22.2341418,38.8653448],[22.2342278,38.8655984],[22.234169,38.8661111],[22.2337794,38.8664837],[22.2344051,38.8665832],[22.2348723,38.8667975],[22.2348914,38.86696],[22.2346268,38.8674065],[22.2346223,38.8675867],[22.2349316,38.8676634],[22.2351897,38.8679467],[22.2358562,38.8680288],[22.2359802,38.8682695],[22.2361834,38.8684438],[22.2360562,38.8689284],[22.2363012,38.8692745],[22.2363288,38.8695543],[22.2364387,38.8697722],[22.2363343,38.8697976],[22.2361177,38.8697042],[22.2360818,38.8697578],[22.236467,38.8700249],[22.2367077,38.8700826],[22.2371918,38.8700809],[22.2371744,38.8701888],[22.2373554,38.8703266],[22.2373939,38.8704894],[22.2372915,38.8709024],[22.2372926,38.8713214],[22.2373601,38.8715341],[22.2381292,38.8715638],[22.2391182,38.8716102],[22.2393531,38.8716228],[22.2399737,38.8716547],[22.2400955,38.8716655],[22.2407288,38.8716931],[22.2408555,38.871695]]},{"id":16603,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a5\u03c0\u03ac\u03c4\u03b7-\u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03b9\u03ac","description_GR":"","path":"STEREA\/Sterea_Oeta_Ypati_Kastania","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8893,"name_EN":"Oeta: Ypati-Kastania","description_EN":"","ascent_time":225,"descent_time":205,"marker":"Red_dots","level":9,"ascent":1009,"descent":370,"maxelev":1197,"minelev":407,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.21147 38.84176,22.24696 38.87126)","views":54,"millestones":"0,22.2410889,38.8717120#1,22.2389088,38.8656524#2,22.2396788,38.8594913#3,22.2443376,38.8522402#4,22.2416399,38.8499142#5,22.2400355,38.8475296#6,22.2320945,38.8454296#7,22.2269848,38.8421088#8,22.2172536,38.8427065#8.9,22.2121184,38.8452945","x":22.2422409,"y":38.8495813,"coor":[[22.2410889,38.871712],[22.2409769,38.8716202],[22.2408597,38.8716996],[22.2407284,38.8716931],[22.2406755,38.871503],[22.2405487,38.8715011],[22.2404375,38.8714094],[22.2405242,38.8711674],[22.2405053,38.8709959],[22.2403608,38.8706648],[22.2405249,38.870379],[22.2402147,38.8703382],[22.239879,38.8701349],[22.2398073,38.8700032],[22.2396735,38.869821],[22.2392848,38.869689],[22.2389489,38.8696253],[22.2383959,38.8691484],[22.2387956,38.8688301],[22.2393638,38.8686945],[22.2393662,38.8685954],[22.2397553,38.8682409],[22.2401797,38.8680625],[22.2404546,38.8681298],[22.2400345,38.8678306],[22.2394265,38.8672447],[22.2393958,38.8670911],[22.2394804,38.8669302],[22.239312,38.8667474],[22.2392715,38.8665936],[22.2389027,38.86566],[22.2389912,38.8655487],[22.2390541,38.8655226],[22.2392613,38.865314],[22.2394968,38.8651103],[22.2396471,38.864626],[22.2394905,38.8644344],[22.23949,38.8640154],[22.2393274,38.8635985],[22.2391708,38.8634069],[22.23892,38.863295],[22.238951,38.862971],[22.2392058,38.8629208],[22.2392306,38.8628491],[22.2386256,38.8626147],[22.2389619,38.8625297],[22.2390574,38.862396],[22.2389555,38.8623223],[22.2388266,38.8624105],[22.2382399,38.8623656],[22.2381719,38.8623195],[22.238214,38.8620138],[22.2381551,38.8615984],[22.2382023,38.8615541],[22.2383392,38.8616102],[22.2383875,38.8615208],[22.2386295,38.8615245],[22.2387123,38.8614356],[22.2388489,38.8614197],[22.2388633,38.8613028],[22.2390494,38.8612335],[22.2391462,38.8610457],[22.2391267,38.8609013],[22.2393399,38.8606702],[22.2393874,38.8605222],[22.2397107,38.8605001],[22.2397931,38.8604292],[22.2395955,38.8600298],[22.2398279,38.8599522],[22.2396777,38.8594994],[22.2397331,38.8591218],[22.2399403,38.8586654],[22.2402828,38.8587967],[22.2403639,38.8587799],[22.2403914,38.8586001],[22.2403262,38.8584369],[22.2404804,38.858259],[22.2405474,38.8578816],[22.241006,38.8570415],[22.241407,38.8566691],[22.2415305,38.8560267],[22.2416869,38.8557587],[22.2421785,38.8554508],[22.242505,38.8548249],[22.2433055,38.8546523],[22.2431597,38.8545915],[22.2431517,38.8544472],[22.2433759,38.8537658],[22.2443116,38.8522661],[22.2447323,38.8518534],[22.245127,38.8517332],[22.2453149,38.8515918],[22.2457045,38.8512102],[22.2459617,38.8505924],[22.2459397,38.8505199],[22.2460573,38.8504226],[22.2463916,38.8504186],[22.2463699,38.8503642],[22.2467584,38.8500276],[22.2467369,38.8499642],[22.2465869,38.849971],[22.246431,38.8497524],[22.2462923,38.8497683],[22.2462013,38.8497219],[22.2462372,38.8496684],[22.2461136,38.8495404],[22.2461384,38.8494687],[22.2458088,38.8497521],[22.2455877,38.8498389],[22.2454851,38.8497923],[22.2452517,38.8499149],[22.2452029,38.8500223],[22.2451347,38.8499852],[22.2449827,38.8500731],[22.2443937,38.8505958],[22.2441547,38.8504751],[22.2440827,38.8505912],[22.2439551,38.8506253],[22.243929,38.850751],[22.2436565,38.8505847],[22.243482,38.8506542],[22.2434147,38.8505811],[22.2432755,38.8506151],[22.2431165,38.8505226],[22.2429652,38.8505834],[22.242543,38.8504148],[22.242403,38.8504848],[22.2424181,38.8503408],[22.2422249,38.8502298],[22.2422502,38.8501401],[22.2419848,38.8501541],[22.2418625,38.8499721],[22.2416448,38.8499237],[22.2416118,38.8498602],[22.241797,38.8498269],[22.2422409,38.8495813],[22.242407,38.8493855],[22.2423738,38.849331],[22.2424934,38.8491526],[22.242644,38.8491188],[22.2427464,38.8491744],[22.2428407,38.8490857],[22.2430622,38.8485124],[22.2433374,38.8485706],[22.2438021,38.8484154],[22.2443525,38.8480542],[22.2444079,38.8476766],[22.2445971,38.8474812],[22.24464,38.8471394],[22.2445798,38.8467781],[22.2442247,38.8466917],[22.2440951,38.8468069],[22.2439729,38.8470934],[22.2438555,38.8471817],[22.2437172,38.8471796],[22.2435033,38.8474467],[22.2432178,38.8473433],[22.2431303,38.8471528],[22.2429703,38.8470963],[22.2427276,38.8471287],[22.2426598,38.8470736],[22.2424591,38.8472688],[22.2422066,38.847229],[22.2419727,38.8473696],[22.2417662,38.8473305],[22.2415804,38.8473908],[22.241018,38.8473012],[22.240728,38.8473779],[22.2406104,38.8474753],[22.2399406,38.8475373],[22.2395038,38.8474946],[22.2390736,38.8476503],[22.2387857,38.847646],[22.2386226,38.8477156],[22.2383837,38.847694],[22.238245,38.8477099],[22.2380858,38.8476264],[22.2380758,38.8475632],[22.2382267,38.8475204],[22.237948,38.8471378],[22.2376657,38.8469083],[22.237749,38.8458643],[22.2375747,38.8459247],[22.2367937,38.8458228],[22.2365365,38.8459721],[22.2360213,38.8458382],[22.2358475,38.8458806],[22.2356361,38.8460396],[22.2348139,38.8462074],[22.2345858,38.8461139],[22.2344338,38.8462017],[22.2343208,38.8461098],[22.2340878,38.8462145],[22.2336501,38.8462078],[22.233204,38.8460749],[22.2330468,38.8459104],[22.2330956,38.845803],[22.2329146,38.8456651],[22.2328938,38.8455747],[22.2329631,38.8455667],[22.2328746,38.8454212],[22.2327054,38.8452745],[22.2323745,38.845346],[22.2316663,38.8455606],[22.2315317,38.8454144],[22.231281,38.8453024],[22.2311355,38.845129],[22.231219,38.8450132],[22.2315322,38.8449278],[22.2325308,38.84415],[22.2326217,38.8437369],[22.2325367,38.8434473],[22.2318028,38.8428414],[22.2317505,38.8426244],[22.2311007,38.8423442],[22.2307742,38.8425015],[22.230631,38.8427156],[22.2302368,38.8428177],[22.2298261,38.8431179],[22.2293871,38.8431653],[22.2290768,38.8431335],[22.2287818,38.8429488],[22.2280887,38.8420913],[22.2278371,38.8420154],[22.2274801,38.84201],[22.2274194,38.8421352],[22.2271994,38.8421769],[22.2266621,38.8420066],[22.2261423,38.8420618],[22.2258792,38.8419857],[22.2253459,38.8416532],[22.2248418,38.8415374],[22.224712,38.8416616],[22.2245973,38.8416418],[22.2243134,38.8414753],[22.2239807,38.8414162],[22.2234735,38.8414265],[22.2232728,38.8416217],[22.2230079,38.8416177],[22.2228108,38.8416687],[22.2224218,38.8420232],[22.2221311,38.8421269],[22.2216037,38.8415602],[22.2212451,38.8416179],[22.2208796,38.8419547],[22.2205539,38.8420759],[22.2205284,38.8421746],[22.2204264,38.84211],[22.220355,38.842199],[22.2200188,38.842284],[22.219807,38.842461],[22.2191907,38.8426858],[22.2183296,38.8425646],[22.2176682,38.8427527],[22.2172201,38.8427008],[22.2166109,38.843106],[22.216339,38.8433812],[22.2160506,38.8433948],[22.215776,38.8433185],[22.2152794,38.843365],[22.2150213,38.8430907],[22.2142968,38.8434942],[22.2134538,38.8435714],[22.2128589,38.8434001],[22.212938,38.8439239],[22.2128414,38.8441026],[22.2121878,38.844435],[22.2121395,38.8445244],[22.212198,38.8448902],[22.2121264,38.8449882],[22.2121184,38.8452945]]},{"id":16604,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a5\u03c0\u03ac\u03c4\u03b7-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3","description_GR":"\u039a\u03b1\u03bb\u03bf\u03c3\u03b7\u03bc\u03b1\u03b4\u03b5\u03bc\u03ad\u03bd\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c3\u03b5 \u03b5\u03bb\u03b1\u03c4\u03cc\u03b4\u03b1\u03c3\u03bf\u03c2, \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2","path":"STEREA\/Sterea_Oeta_Ypati_Trapeza","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":8089,"name_EN":"Oeta: Ypati-HAC refuge","description_EN":"Well marked trail alongs a fir forest, sources and streams","ascent_time":255,"descent_time":195,"marker":"Red_square","level":9,"ascent":1386,"descent":38,"maxelev":1780,"minelev":407,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.23791 38.83157,22.2719 38.87157)","views":97,"millestones":"0,22.2409744,38.8716202#1,22.2391430,38.8654336#2,22.2397170,38.8592071#3,22.2449044,38.8542377#4,22.2524879,38.8504936#5,22.2597110,38.8471833#6,22.2628347,38.8429718#7,22.2688392,38.8368213#8.1,22.2718899,38.8319484","x":22.2527942,"y":38.8506047,"coor":[[22.2409744,38.8716202],[22.2410007,38.8710214],[22.2410308,38.8704587],[22.2405256,38.870379],[22.2402154,38.8703383],[22.2398746,38.8701349],[22.2398076,38.8700032],[22.2396738,38.869821],[22.2392852,38.869689],[22.2389489,38.8696253],[22.2383959,38.8691484],[22.2387956,38.8688301],[22.2393638,38.8686945],[22.2393662,38.8685954],[22.2397553,38.8682409],[22.2401793,38.8680625],[22.2404543,38.8681298],[22.2400341,38.8678306],[22.2394262,38.8672447],[22.2393954,38.8670911],[22.23948,38.8669302],[22.2393117,38.8667474],[22.2392716,38.8665891],[22.2389027,38.86566],[22.238986,38.8655531],[22.2390537,38.8655226],[22.2392665,38.8653095],[22.2394961,38.8651103],[22.2396464,38.864626],[22.2394873,38.8644298],[22.2394896,38.8640154],[22.239327,38.8635984],[22.2391704,38.8634069],[22.2389196,38.863295],[22.2389507,38.862971],[22.2392055,38.8629208],[22.2392303,38.8628491],[22.2386252,38.8626147],[22.2389616,38.8625297],[22.2390571,38.862396],[22.2389552,38.8623223],[22.2388262,38.8624105],[22.2382395,38.8623656],[22.2381715,38.8623195],[22.2382136,38.8620138],[22.2381548,38.8615984],[22.2382019,38.8615541],[22.2383389,38.8616102],[22.2383872,38.8615208],[22.2386291,38.8615245],[22.238712,38.8614356],[22.2388481,38.8614197],[22.2388625,38.8613027],[22.2390486,38.8612335],[22.2391455,38.8610457],[22.239126,38.8609012],[22.2393482,38.8606838],[22.2393867,38.8605222],[22.23971,38.8605001],[22.2397924,38.8604292],[22.2395948,38.8600298],[22.2398272,38.8599522],[22.239677,38.8594994],[22.2397324,38.8591218],[22.2399396,38.8586654],[22.2402821,38.8587967],[22.2403632,38.8587799],[22.2403906,38.8586001],[22.2403255,38.8584369],[22.2404797,38.858259],[22.2405466,38.8578816],[22.2410053,38.8570415],[22.2414063,38.8566691],[22.2415372,38.8560313],[22.2416858,38.8557587],[22.2421774,38.8554507],[22.2425039,38.8548249],[22.2433065,38.8546568],[22.2440076,38.8546853],[22.2441919,38.8547782],[22.2445383,38.8552159],[22.2445676,38.8554326],[22.244628,38.8555552],[22.244877,38.8552706],[22.244878,38.8542885],[22.2450754,38.8539085],[22.2458498,38.8528749],[22.24628,38.8527191],[22.2468546,38.8523133],[22.2471222,38.8522092],[22.2474573,38.8521691],[22.2477639,38.8518854],[22.2478336,38.8517738],[22.2479364,38.8518114],[22.2482264,38.8517347],[22.2483218,38.8516009],[22.2485522,38.8516044],[22.2488211,38.8514462],[22.2489283,38.8513037],[22.249055,38.8513056],[22.2492416,38.8512183],[22.2493435,38.8512919],[22.24946,38.8512396],[22.2494294,38.8510769],[22.2495118,38.8510061],[22.249627,38.8510078],[22.2496775,38.8508283],[22.2498166,38.8507944],[22.2498471,38.8504885],[22.2499402,38.8504538],[22.2500992,38.8505463],[22.2502046,38.8504758],[22.2502547,38.8503144],[22.2503573,38.8503609],[22.2503544,38.850478],[22.2507584,38.8504481],[22.2511558,38.8502197],[22.2513521,38.8502046],[22.2515005,38.8502609],[22.2517929,38.8500851],[22.2520472,38.8500529],[22.2521491,38.8501265],[22.2520521,38.8503233],[22.2521994,38.8504246],[22.2523389,38.8503726],[22.252644,38.8506205],[22.2527942,38.8506047],[22.2528338,38.850398],[22.2531306,38.8505106],[22.2534191,38.8504969],[22.2537956,38.8506467],[22.2540267,38.8506231],[22.254506,38.8503419],[22.2547213,38.8500208],[22.2549182,38.8499787],[22.2548743,38.8498879],[22.2549669,38.8498713],[22.2549797,38.8498174],[22.2551277,38.8498917],[22.2552471,38.8497223],[22.2554458,38.8496081],[22.2554401,38.8498423],[22.2555198,38.8498795],[22.2556502,38.8497283],[22.2559998,38.8495713],[22.2562961,38.8492333],[22.2564589,38.8491727],[22.2567853,38.8485468],[22.2567334,38.8483118],[22.2569921,38.8480994],[22.2568485,38.8478449],[22.2571148,38.8477948],[22.2571626,38.8477235],[22.2574882,38.8476022],[22.2580889,38.8475391],[22.2582183,38.8479014],[22.2588652,38.8473614],[22.2590637,38.8472562],[22.2592471,38.847295],[22.2595044,38.8471367],[22.2597565,38.8471945],[22.2596733,38.8473014],[22.2597145,38.8475002],[22.2596412,38.8476703],[22.2604213,38.8473396],[22.2605593,38.8473506],[22.2606382,38.8474239],[22.2607658,38.8473897],[22.2609137,38.847464],[22.2613045,38.8475059],[22.2616125,38.8471591],[22.2619922,38.8471827],[22.2621291,38.8472388],[22.2621995,38.8471858],[22.2623951,38.8471977],[22.2624562,38.8470545],[22.2629856,38.8470804],[22.2631512,38.8469026],[22.2634655,38.8467721],[22.2636338,38.8464863],[22.2637138,38.846037],[22.2636693,38.8459732],[22.2633125,38.8459589],[22.2628676,38.8457721],[22.2627686,38.8455814],[22.262419,38.8452698],[22.2623675,38.8450167],[22.2624791,38.844694],[22.2623913,38.8445125],[22.2624852,38.8444418],[22.2624533,38.8443332],[22.2625246,38.8442442],[22.262295,38.8437362],[22.2625721,38.8437132],[22.2625527,38.8435598],[22.2627262,38.8435353],[22.2626758,38.8432372],[22.2628441,38.8429514],[22.2633448,38.8427336],[22.2636852,38.8424773],[22.2637476,38.84228],[22.2637185,38.8420543],[22.2640136,38.8417614],[22.2645367,38.8415709],[22.2644592,38.8414436],[22.2648028,38.8410522],[22.2649596,38.8407662],[22.2652692,38.8403969],[22.2652146,38.8402699],[22.2656847,38.8399795],[22.2656231,38.8399065],[22.2656911,38.8399526],[22.2660762,38.8397511],[22.266209,38.8395008],[22.2666677,38.8395887],[22.2668533,38.8395373],[22.2667299,38.8394004],[22.266733,38.8392743],[22.2669338,38.83907],[22.2670453,38.8387473],[22.267317,38.838472],[22.2674163,38.8381761],[22.2675797,38.8380884],[22.2677462,38.8378746],[22.2678099,38.8376233],[22.2684371,38.8374163],[22.2686273,38.8374552],[22.2687019,38.837231],[22.2688524,38.8371972],[22.2689003,38.8371258],[22.268802,38.8366198],[22.2687653,38.8362768],[22.2687564,38.8358847],[22.2686499,38.835766],[22.2686828,38.8356989],[22.2688345,38.8356201],[22.2692418,38.8349773],[22.2689113,38.8343507],[22.2691587,38.8336515],[22.2688326,38.8333223],[22.26884,38.8330161],[22.2686769,38.8326172],[22.2687707,38.8325465],[22.2692322,38.8325173],[22.2692609,38.8322834],[22.2693437,38.8321945],[22.269943,38.8321854],[22.2701405,38.8321162],[22.2702864,38.8315642],[22.2712081,38.8315599],[22.2714823,38.831654],[22.2718899,38.8319484]]},{"id":17612,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u0394\u03cd\u03bf \u0392\u03bf\u03c5\u03bd\u03ac-\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf \u03c4\u03bf\u03c0\u03af\u03bf \u03c4\u03bf\u03c5 \u039c\u03ad\u03bb\u03b1\u03bd\u03b1 \u03c0\u03bf\u03c4\u03b1\u03bc\u03bf\u03cd","path":"STEREA\/Sterea_Oeta_DyoVouna_PrfIlias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9432,"name_EN":"Oeta: Dyo Vouna-Profitis Ilias","description_EN":"Across the upper valley of Melas river","ascent_time":245,"descent_time":200,"marker":"No_marks","level":9,"ascent":1176,"descent":55,"maxelev":1610,"minelev":471,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34945 38.79218,22.38155 38.80352)","views":26,"millestones":"0,22.3808587,38.8004447#1,22.3761624,38.7962825#2,22.3712863,38.7959226#3,22.3628826,38.7930543#4,22.3578594,38.7937268#5,22.3614843,38.7978289#6,22.3595028,38.7990964#7,22.3575914,38.7986514#8,22.3502012,38.8031246#9.4,22.3504724,38.8001998","x":22.3574684,"y":38.7943107,"coor":[[22.3808587,38.8004447],[22.3812013,38.800062],[22.3814005,38.7988934],[22.3812573,38.798603],[22.3805567,38.7980166],[22.3803972,38.7977801],[22.3802515,38.7976069],[22.3800888,38.7971631],[22.3799379,38.7972646],[22.37985,38.7975878],[22.3798644,38.7979665],[22.3795767,38.7979625],[22.3794295,38.7978523],[22.3793077,38.7976344],[22.3791957,38.797403],[22.378812,38.7970553],[22.3784432,38.7965636],[22.3782513,38.7964438],[22.3782227,38.7966867],[22.3779461,38.7967009],[22.3778285,38.7968074],[22.3775757,38.7967858],[22.3774458,38.7969282],[22.3773303,38.7969446],[22.3771047,38.7967342],[22.3768646,38.7966588],[22.3767818,38.7967568],[22.3766671,38.7967372],[22.376103,38.7962247],[22.375953,38.7962407],[22.3758568,38.7964195],[22.3754975,38.7960181],[22.375109,38.7958865],[22.3749176,38.7956946],[22.3745844,38.7956629],[22.3744709,38.7955893],[22.3743782,38.795615],[22.3742701,38.7955099],[22.3742105,38.7955992],[22.3740835,38.7956154],[22.3737752,38.795503],[22.373732,38.7953763],[22.3734734,38.7951023],[22.3731548,38.7949357],[22.373427,38.7956243],[22.3735191,38.7961302],[22.373373,38.7964796],[22.3730219,38.796727],[22.3731093,38.7964309],[22.3730727,38.7960159],[22.3723097,38.796654],[22.3722564,38.796464],[22.3722988,38.7961222],[22.372349,38.7954786],[22.3718793,38.7958325],[22.3712785,38.7959233],[22.3705525,38.7958546],[22.370305,38.7959007],[22.3696739,38.7956441],[22.3694098,38.7956134],[22.3690754,38.7956357],[22.3683342,38.7958236],[22.3679344,38.7956829],[22.3670812,38.7952294],[22.3667827,38.7951892],[22.3664328,38.7950852],[22.3653537,38.7950386],[22.3652925,38.7946953],[22.3655108,38.7942118],[22.3655638,38.7939061],[22.3655151,38.793518],[22.365465,38.7931929],[22.3653197,38.7930016],[22.3645859,38.7928652],[22.3638381,38.7928367],[22.363596,38.7928514],[22.3627615,38.793092],[22.3618366,38.7932592],[22.3611352,38.7937179],[22.3607069,38.7938201],[22.3600623,38.793811],[22.3596516,38.7936431],[22.3596296,38.7935977],[22.3597575,38.7935454],[22.3601489,38.7935509],[22.3606395,38.7932424],[22.360783,38.7930102],[22.3607672,38.7926946],[22.3608418,38.7924523],[22.3609717,38.79231],[22.361426,38.7920821],[22.3615674,38.7919399],[22.3615107,38.791903],[22.3607608,38.7923295],[22.3603301,38.7930353],[22.3602134,38.7931058],[22.3590015,38.7932329],[22.3579885,38.7937233],[22.3574009,38.7937421],[22.3570531,38.7938453],[22.3569696,38.7939703],[22.3573236,38.7941014],[22.3574684,38.7943107],[22.357336,38.7945612],[22.356987,38.7947185],[22.3569155,38.7948256],[22.357188,38.7949916],[22.3575325,38.7950325],[22.357982,38.7950118],[22.3584237,38.7948288],[22.3586544,38.794814],[22.3590531,38.7949998],[22.3596841,38.7950988],[22.3600019,38.7953015],[22.3602306,38.7953678],[22.3605881,38.7953457],[22.3615283,38.7950165],[22.3617453,38.7950916],[22.3619621,38.7956804],[22.3619393,38.7961757],[22.3620186,38.7967354],[22.3615751,38.7974951],[22.361374,38.7982312],[22.361292,38.7982931],[22.3612133,38.7982109],[22.3611871,38.7973455],[22.3613853,38.7967356],[22.3612948,38.7966622],[22.360706,38.7977353],[22.3605317,38.7983095],[22.3605376,38.7985529],[22.3604554,38.7986238],[22.3603991,38.798569],[22.3603005,38.7978467],[22.3604338,38.7970556],[22.3606145,38.7967067],[22.3605468,38.7966427],[22.3601651,38.7972231],[22.3596462,38.798261],[22.3594743,38.7987272],[22.3595583,38.7990798],[22.3594424,38.7991142],[22.3592418,38.798823],[22.3591999,38.7986422],[22.3593276,38.7975898],[22.3594901,38.7970334],[22.3593877,38.7969779],[22.3592154,38.797462],[22.3589399,38.7979267],[22.3585259,38.7984075],[22.3583354,38.7996843],[22.357798,38.8000192],[22.3576664,38.8002336],[22.3576015,38.8000525],[22.3578733,38.7997499],[22.3579374,38.7994625],[22.3578191,38.7991004],[22.3577246,38.798198],[22.3576597,38.7980169],[22.35758,38.7979797],[22.3576128,38.7985569],[22.3574213,38.7993741],[22.3573378,38.7994991],[22.3566826,38.7999495],[22.3564831,38.8006135],[22.3561969,38.8010419],[22.3559617,38.8012549],[22.3551671,38.8017573],[22.3540928,38.8019044],[22.3534058,38.8022371],[22.3519704,38.8025593],[22.3512951,38.8028832],[22.3510065,38.8029151],[22.3509113,38.8030489],[22.3509603,38.8034191],[22.3508423,38.8035436],[22.3499822,38.8033872],[22.3499962,38.8032793],[22.3502541,38.8030847],[22.3502919,38.8029411],[22.3494805,38.8021727],[22.3495276,38.8021283],[22.3498376,38.8021687],[22.3505649,38.8020889],[22.3511804,38.8018633],[22.3517647,38.8014931],[22.3530102,38.8004114],[22.3531889,38.8001526],[22.3531598,38.7999179],[22.3532597,38.7995769],[22.3527609,38.8002366],[22.3515143,38.8008678],[22.3514569,38.800858],[22.3522127,38.8000397],[22.3522897,38.7996984],[22.3521976,38.7996971],[22.3514834,38.8002096],[22.3508802,38.8003993],[22.3508375,38.8003492],[22.3510024,38.8001893],[22.350877,38.8001335],[22.3509494,38.7999903],[22.3508458,38.7999889],[22.3504724,38.8001998]]},{"id":17794,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039c\u03b1\u03c5\u03c1\u03bf\u03bb\u03b9\u03b8\u03ac\u03c1\u03b9-\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2","description_GR":"\u0397 \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ac","path":"STEREA\/Sterea_Oeta_Mavrolithari_Pyrgos","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":10287,"name_EN":"Oeta: Mavrolithari-Pyrgos peak","description_EN":"An unknown side of Mt. Oeta","ascent_time":400,"descent_time":330,"marker":"No_marks","level":9,"ascent":1155,"descent":155,"maxelev":2144,"minelev":1134,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.22179 38.72886,22.25849 38.79163)","views":40,"millestones":"0,22.2308145,38.7285167#1,22.2280141,38.7352021#2,22.2237080,38.7409704#3,22.2266327,38.7472060#4,22.2308364,38.7535515#5,22.2363689,38.7604229#6,22.2383179,38.7670110#7,22.2454636,38.7728080#8,22.2554581,38.7757943#9,22.2536273,38.7829189#10.3,22.2550942,38.7921372","x":22.2341624,"y":38.7560411,"coor":[[22.2308145,38.7285167],[22.2305381,38.7284404],[22.2303075,38.7284639],[22.2300841,38.7286588],[22.2297361,38.7287346],[22.2295268,38.7288216],[22.229295,38.7289217],[22.2286365,38.7290379],[22.2278217,38.729422],[22.2276518,38.7297798],[22.2277409,38.7303669],[22.2277987,38.7305885],[22.2277039,38.7311638],[22.2273967,38.7314925],[22.2273347,38.7316718],[22.2273165,38.7324104],[22.2271181,38.7326101],[22.2270355,38.7332486],[22.2270827,38.7336639],[22.2269392,38.7338869],[22.2272229,38.7338822],[22.2272534,38.7340449],[22.2274451,38.7343497],[22.2278718,38.7347706],[22.228023,38.7351694],[22.2279343,38.7355015],[22.2282509,38.7357225],[22.2279807,38.7359527],[22.2279972,38.7362143],[22.2278901,38.7363568],[22.2278601,38.7365546],[22.2278958,38.7369696],[22.2281485,38.737451],[22.2281361,38.7379554],[22.2280993,38.7382522],[22.2282328,38.7384345],[22.2279789,38.7384802],[22.2277454,38.7386208],[22.2276264,38.7387812],[22.2274764,38.738797],[22.2273519,38.7390609],[22.2271578,38.7390039],[22.2268958,38.7390269],[22.2266521,38.7391133],[22.2263991,38.7391095],[22.2262009,38.7392146],[22.2261106,38.7396097],[22.2260177,38.7396444],[22.2260892,38.7397175],[22.2260065,38.7398064],[22.2259027,38.7398138],[22.2258147,38.7396503],[22.2255529,38.7395382],[22.2249081,38.740024],[22.2248487,38.7401582],[22.224201,38.7404548],[22.2239962,38.7403616],[22.2238896,38.7404861],[22.2239203,38.7406397],[22.2237212,38.7407809],[22.2237041,38.7410059],[22.2233626,38.7413251],[22.2233236,38.7415047],[22.2232063,38.741593],[22.2232249,38.7417735],[22.2231067,38.7418979],[22.2231248,38.7420964],[22.2233256,38.7423518],[22.2230816,38.7424472],[22.2230055,38.7427343],[22.2233464,38.7433703],[22.2233326,38.7434602],[22.2231349,38.7435473],[22.2230932,38.743835],[22.2231806,38.7440255],[22.2232602,38.7440628],[22.2233247,38.744244],[22.2235724,38.744464],[22.2239163,38.7445143],[22.223984,38.7445694],[22.2237087,38.7449977],[22.2237494,38.7452146],[22.2239756,38.7453712],[22.2236827,38.745583],[22.2236571,38.7456908],[22.2238893,38.7456042],[22.2240543,38.7459131],[22.224446,38.745892],[22.2246172,38.7459486],[22.2247761,38.7461223],[22.2252609,38.7465261],[22.2253365,38.7467255],[22.2257572,38.7469301],[22.2259027,38.7470945],[22.2259915,38.7471815],[22.2265219,38.7471355],[22.2266692,38.7472278],[22.2270012,38.7472959],[22.2273515,38.7475535],[22.2272984,38.7478411],[22.2273407,38.7479318],[22.2271175,38.7481176],[22.2270317,38.7483326],[22.2270117,38.7486747],[22.2268771,38.7489971],[22.2268687,38.7493393],[22.2267492,38.7495177],[22.2266832,38.7498591],[22.2265545,38.7499473],[22.2265248,38.7502172],[22.2271834,38.7505696],[22.2273635,38.7507345],[22.2274386,38.7509519],[22.2275857,38.7510532],[22.2280348,38.751042],[22.2285917,38.7513208],[22.22872,38.7517192],[22.2288093,38.7518287],[22.2290265,38.7518861],[22.2289482,38.7522633],[22.229047,38.752454],[22.2290397,38.7527513],[22.2291529,38.7528251],[22.2291724,38.7529696],[22.2294604,38.7529559],[22.229605,38.7531563],[22.230258,38.7532743],[22.2305177,38.7534765],[22.2307431,38.7535385],[22.231351,38.7536198],[22.2322513,38.7539758],[22.2325729,38.7539987],[22.2326282,38.7540896],[22.2329339,38.7542925],[22.2332002,38.754693],[22.2332066,38.7549003],[22.233522,38.7551754],[22.233618,38.7554833],[22.2341624,38.7560411],[22.2341548,38.7563474],[22.2342968,38.7566559],[22.2343247,38.7569266],[22.2344791,38.7571993],[22.2343233,38.7574492],[22.2347711,38.7574921],[22.2349733,38.7576933],[22.2349546,38.7579814],[22.2350962,38.7583079],[22.2354787,38.7586651],[22.2358755,38.759374],[22.2359693,38.7597718],[22.2363224,38.7603899],[22.2368201,38.7607398],[22.2375143,38.7610567],[22.237532,38.7612732],[22.2373451,38.7613875],[22.2373084,38.7614771],[22.2374955,38.7618223],[22.2373371,38.7621803],[22.2374191,38.7625871],[22.2372198,38.7627372],[22.2368494,38.7628218],[22.2365999,38.7630838],[22.2370542,38.7639287],[22.2368533,38.7641419],[22.2365541,38.7641374],[22.2365055,38.7642448],[22.2366393,38.764418],[22.2367021,38.7646712],[22.2368479,38.7648266],[22.236766,38.764956],[22.2365483,38.7649167],[22.2367157,38.7650679],[22.2367133,38.765167],[22.2368279,38.7651867],[22.236906,38.765287],[22.236713,38.7656446],[22.2368489,38.7657367],[22.2370445,38.7662082],[22.2374803,38.7667374],[22.237756,38.7667596],[22.2381761,38.7669912],[22.2384514,38.7670314],[22.2387472,38.767171],[22.2391853,38.7671416],[22.2393326,38.7672339],[22.23933,38.767342],[22.23942,38.7674245],[22.2395798,38.7674809],[22.2396667,38.7676895],[22.2403072,38.7681046],[22.2406738,38.7682903],[22.2412062,38.7686408],[22.2413613,38.7688864],[22.2412754,38.7691014],[22.2413834,38.7693913],[22.2415761,38.7695114],[22.2419107,38.7699489],[22.2420465,38.7700411],[22.2421988,38.7704038],[22.2425835,38.7706709],[22.2427283,38.7708713],[22.2427446,38.7711419],[22.2432252,38.7712572],[22.2432726,38.7712039],[22.243478,38.7714502],[22.2437511,38.7715805],[22.2439038,38.7719252],[22.2440598,38.7720041],[22.2440084,38.7722196],[22.2440974,38.7723471],[22.2450838,38.7724881],[22.2455235,38.7728641],[22.2458568,38.7728872],[22.2460829,38.7730527],[22.2461148,38.7731613],[22.2465806,38.7734116],[22.2466804,38.7735663],[22.2469878,38.7737061],[22.2471653,38.7739791],[22.247325,38.7740355],[22.2474295,38.7740011],[22.2478347,38.7743315],[22.2483494,38.7744654],[22.2495087,38.7750685],[22.2510768,38.7754343],[22.2521517,38.7752522],[22.252982,38.7751925],[22.2534524,38.7752536],[22.2544199,38.775232],[22.254826,38.7753778],[22.2555059,38.7758204],[22.2554748,38.7761534],[22.2556054,38.7764617],[22.2563986,38.7769781],[22.2568437,38.7776065],[22.2569177,38.7778779],[22.2571439,38.7780435],[22.2572874,38.7784151],[22.2571908,38.7790714],[22.2569134,38.7795899],[22.2566524,38.7799104],[22.2564563,38.7799255],[22.2563262,38.7800677],[22.2560841,38.7800821],[22.2559985,38.7802881],[22.2553933,38.7805584],[22.254826,38.7811627],[22.2546528,38.7811871],[22.2545924,38.7813033],[22.254102,38.7815844],[22.2537816,38.7819761],[22.253683,38.7822449],[22.2534582,38.7824938],[22.2536326,38.7828929],[22.2535146,38.7834859],[22.2536827,38.7841462],[22.2541449,38.7850181],[22.2539208,38.7866547],[22.2537062,38.7869579],[22.2535471,38.7873429],[22.2536109,38.7880287],[22.2538394,38.7885728],[22.2545305,38.7890336],[22.2547669,38.7892534],[22.2550118,38.7895995],[22.2553615,38.7898931],[22.2553664,38.7901634],[22.2551522,38.7904486],[22.2553283,38.7907846],[22.2553354,38.7909649],[22.2552185,38.7910353],[22.2552976,38.7915681],[22.2550662,38.7918665],[22.254983,38.7919734],[22.2550942,38.7921372]]},{"id":17864,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u039f \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03c3\u03bf\u03c2 \u03c4\u03c9\u03bd \u03bc\u03b1\u03bd\u03b9\u03c4\u03b1\u03c1\u03b9\u03ce\u03bd","description_GR":"","path":"NATURE\/Nature_Oeta_Mushrooms_Vryzes_loop","activity_type":97,"assistance":2,"difficulty":1,"scenic_value":4,"length":4056,"name_EN":"Oeta: A small mushroom paradise","description_EN":"","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":13,"ascent":126,"descent":126,"maxelev":1296,"minelev":1196,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.29914 38.69665,22.31428 38.70678)","views":20,"millestones":"0,22.3047591,38.7068646#1,22.2994286,38.7000811#2,22.3079371,38.6974466#3,22.3141009,38.7031247#4.1,22.3047591,38.7068646","x":22.3047741,"y":38.6980116,"coor":[[22.3047591,38.7068646],[22.3044715,38.7067478],[22.3036316,38.7064923],[22.3033782,38.7064796],[22.3024679,38.7060699],[22.3022007,38.7056966],[22.3020951,38.7052986],[22.3016406,38.7050667],[22.3015627,38.7049574],[22.3013456,38.7049002],[22.3013256,38.7047738],[22.3007155,38.7043144],[22.3005513,38.7039605],[22.300513,38.7036356],[22.3002848,38.7035602],[22.3001622,38.7033962],[22.3001537,38.7032699],[22.3000181,38.7031688],[22.2999862,38.7030603],[22.300033,38.7030249],[22.2998895,38.7027705],[22.2997491,38.7019034],[22.2995884,38.7014055],[22.2994769,38.7012597],[22.2995735,38.7010628],[22.2994735,38.7009172],[22.2992806,38.7008063],[22.2993053,38.700248],[22.2994361,38.7000696],[22.2995755,38.7000086],[22.29969,38.7000283],[22.3000757,38.7002502],[22.3004925,38.7001301],[22.3008948,38.7001359],[22.3013689,38.7000257],[22.3015901,38.6999117],[22.3016625,38.6997686],[22.3018275,38.6996268],[22.3021789,38.6993256],[22.3024224,38.699239],[22.3024633,38.6989693],[22.3030308,38.6987973],[22.303342,38.6987657],[22.3037839,38.6985559],[22.3043569,38.6981497],[22.3047741,38.6980116],[22.3047337,38.6977767],[22.304968,38.6975909],[22.3055128,38.6974096],[22.3056975,38.6973762],[22.3059146,38.6974334],[22.3063076,38.697349],[22.3068784,38.6965463],[22.3070683,38.6967833],[22.3071648,38.6970821],[22.3081539,38.6975559],[22.3081288,38.6976457],[22.3082955,38.6978914],[22.3082047,38.6983316],[22.308372,38.6985503],[22.3084333,38.6988756],[22.3088867,38.6991525],[22.3090311,38.6993708],[22.3091905,38.6994362],[22.3097674,38.6993544],[22.3100569,38.6992685],[22.310036,38.6991781],[22.3101054,38.6991611],[22.3108701,38.6994064],[22.3113186,38.6994039],[22.3115238,38.6994789],[22.3118506,38.7002676],[22.3116876,38.7008419],[22.3120677,38.7013655],[22.3127659,38.7015018],[22.3131397,38.7017415],[22.3140316,38.7029348],[22.3141288,38.7032065],[22.3141113,38.7034585],[22.3140246,38.7037546],[22.3140383,38.7041513],[22.313199,38.7045402],[22.3122025,38.7058414],[22.3120618,38.7059565],[22.3117137,38.7060867],[22.3099879,38.7065663],[22.3087059,38.7068001],[22.3077849,38.7068408],[22.3068541,38.7068093],[22.3053149,38.7068096],[22.3047591,38.7068646]]},{"id":17871,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a0\u03c5\u03c1\u03ac-\u03a0\u03c5\u03c1\u03ac \u0397\u03c1\u03b1\u03ba\u03bb\u03ad\u03bf\u03c5\u03c2","description_GR":"\u03a4\u03bf \u03bd\u03ad\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03a0\u03c5\u03c1\u03ac \u0397\u03c1\u03b1\u03ba\u03bb\u03ad\u03bf\u03c5\u03c2","path":"STEREA\/Sterea_Oeta_Pyra_PyraIrakleous","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":2971,"name_EN":"Oeta: Pyra-Pyra of Hercules","description_EN":"A new path to Pyra of Hercules","ascent_time":65,"descent_time":50,"marker":"Cyan_dots","level":9,"ascent":395,"descent":8,"maxelev":1562,"minelev":1164,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.27974 38.7457,22.29916 38.7556)","views":32,"millestones":"0,22.2799804,38.7454159#1,22.2881312,38.7501938#2,22.2959125,38.7548115#3.0,22.2990359,38.7508445","x":22.2922414,"y":38.7521691,"coor":[[22.2799804,38.7454159],[22.2800171,38.7456102],[22.280164,38.7457205],[22.2801925,38.7459732],[22.2803756,38.746012],[22.2806806,38.7462507],[22.281035,38.7463461],[22.2815001,38.7466232],[22.2819529,38.7469362],[22.2821068,38.7472359],[22.2822904,38.7472566],[22.2824714,38.7473854],[22.2826098,38.7473694],[22.2828479,38.7475171],[22.2834646,38.7481929],[22.2834369,38.7483908],[22.283688,38.7484756],[22.2839773,38.7484077],[22.2844701,38.748487],[22.2848246,38.7485824],[22.2850514,38.7487208],[22.2853287,38.7486708],[22.2860862,38.748754],[22.2863974,38.7487316],[22.2865652,38.7489323],[22.2871263,38.7490486],[22.2872016,38.749266],[22.287533,38.749361],[22.287725,38.7499945],[22.2883278,38.7502917],[22.2885761,38.7504936],[22.2896748,38.7507439],[22.2899201,38.7510719],[22.2909622,38.7512854],[22.291265,38.7516142],[22.291749,38.7515853],[22.2919207,38.7516238],[22.2922564,38.7520252],[22.2922414,38.7521691],[22.2923737,38.7524144],[22.2922552,38.7525568],[22.2922023,38.7528444],[22.2924396,38.7530281],[22.2924562,38.7532986],[22.2926106,38.7535802],[22.2926821,38.7539597],[22.2932163,38.7542379],[22.2941012,38.7542868],[22.2943943,38.7545434],[22.2950708,38.7546028],[22.2954994,38.7544829],[22.2955198,38.7545914],[22.2957823,38.7546853],[22.2960634,38.7549597],[22.2964096,38.7549197],[22.2966035,38.7549946],[22.297257,38.7550943],[22.2973092,38.7553203],[22.2978716,38.7558691],[22.2982755,38.7558209],[22.2985554,38.7556628],[22.2984046,38.7552281],[22.2984164,38.7547327],[22.2985583,38.7545726],[22.2986725,38.7541237],[22.2988766,38.7537662],[22.2988573,38.7526396],[22.2988985,38.7523609],[22.2988342,38.7521617],[22.2989062,38.7520366],[22.2986934,38.7517902],[22.2985609,38.751599],[22.2984442,38.7511828],[22.2986035,38.75064],[22.2987722,38.7508046],[22.2990359,38.7508445]]},{"id":17878,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u0392\u03c1\u03cd\u03b6\u03b5\u03c2-\u03a0\u03c5\u03c1\u03b3\u03ac\u03ba\u03b9","description_GR":"\u039c\u03b9\u03b1 \u03c3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b7 \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u0392\u03c1\u03cd\u03b6\u03b5\u03c2","path":"STEREA\/Sterea_Oeta_Vryzes_Pyrgaki","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":1839,"name_EN":"Oeta: Vryzes-Pyrgaki","description_EN":"A short hike from Vryzes","ascent_time":50,"descent_time":35,"marker":"Red_dots","level":9,"ascent":350,"descent":4,"maxelev":1566,"minelev":1214,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.30506 38.70687,22.30957 38.71756)","views":39,"millestones":"0,22.3053149,38.7068096#1,22.3090538,38.7130042#1.8,22.3065000,38.7171127","x":22.3086153,"y":38.7128676,"coor":[[22.3053149,38.7068096],[22.3053788,38.7070267],[22.3057186,38.7072479],[22.3061401,38.7074162],[22.3062742,38.7075804],[22.3062628,38.7080668],[22.3063837,38.7083028],[22.3064107,38.7086186],[22.3067999,38.7091829],[22.3066682,38.7098929],[22.3066852,38.7101454],[22.3065899,38.7102882],[22.3066665,38.7104515],[22.3065865,38.7104323],[22.306434,38.7105563],[22.3065814,38.7106485],[22.3068224,38.71067],[22.307516,38.7105179],[22.3076746,38.7106193],[22.3079152,38.7106588],[22.3080038,38.7108043],[22.3079867,38.7110383],[22.3081238,38.7110764],[22.3082124,38.7112218],[22.3080332,38.7115076],[22.3081045,38.7116528],[22.3078577,38.711924],[22.3081837,38.7121495],[22.3081573,38.7122933],[22.3087303,38.7123827],[22.3087922,38.712681],[22.3086153,38.7128676],[22.3087955,38.7130324],[22.3090837,38.7130005],[22.3091762,38.7134705],[22.3093908,38.7136358],[22.3092126,38.7138765],[22.3091739,38.7140561],[22.309251,38.7142014],[22.3091794,38.7143085],[22.3091922,38.7147412],[22.3092921,38.7148958],[22.3091153,38.7151681],[22.3093173,38.7152927],[22.3093697,38.7155097],[22.3089955,38.7158602],[22.3084197,38.716379],[22.3084061,38.7164689],[22.308325,38.7164948],[22.3082257,38.7163132],[22.3079293,38.7162007],[22.3077735,38.7164688],[22.3075512,38.7166278],[22.3073839,38.7168957],[22.3070798,38.7171075],[22.3070196,38.7172238],[22.3066972,38.7172372],[22.3066236,38.7174343],[22.306427,38.7174765],[22.3062616,38.7175733],[22.3063688,38.717309],[22.3065,38.7171127]]},{"id":20090,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u0391\u03c1\u03b3\u03c5\u03c1\u03bf\u03c7\u03ce\u03c1\u03b9-\u0393\u03b5\u03c1\u03c3\u03b1\u03bb\u03ae","description_GR":"\u0391\u03c0\u03cc\u03c4\u03bf\u03bc\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03b1\u03bb\u03b9\u03ac \u03c3\u03c0\u03b7\u03bb\u03b1\u03b9\u03bf\u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03b9\u03ac","path":"STEREA\/Sterea_Oeta_Argyrochori_Gersali","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":5,"length":3812,"name_EN":"Oeta: Argyrochori-Gersali","description_EN":"Steep slopes to the cave-church","ascent_time":115,"descent_time":90,"marker":"Red_dots","level":9,"ascent":835,"descent":32,"maxelev":1063,"minelev":243,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25216 38.86218,22.25868 38.87661)","views":4,"millestones":"0,22.2547644,38.8766523#1,22.2569672,38.8722474#2,22.2557920,38.8677416#3,22.2549940,38.8635747#3.8,22.2583595,38.8621764","x":22.2534857,"y":38.8655817,"coor":[[22.2547644,38.8766523],[22.2545979,38.8761723],[22.2542256,38.8758423],[22.2540039,38.87542],[22.2539284,38.8752387],[22.253735,38.8741905],[22.2536561,38.8741173],[22.2533815,38.874005],[22.2535938,38.87381],[22.2535973,38.8736659],[22.2532884,38.8735711],[22.2533909,38.8731492],[22.2530621,38.872928],[22.2530576,38.8726396],[22.2534476,38.8727175],[22.2538648,38.8726246],[22.2541356,38.872863],[22.2541775,38.8730348],[22.2545965,38.8729735],[22.254936,38.8732308],[22.2550234,38.8734304],[22.2560719,38.873446],[22.2565912,38.8729492],[22.2566538,38.8726438],[22.2568669,38.8724127],[22.2569165,38.8722693],[22.2571408,38.8721735],[22.2572546,38.8717607],[22.2576273,38.8716041],[22.2583197,38.8711549],[22.2584624,38.8709768],[22.2584681,38.8707426],[22.2583205,38.8706503],[22.2576903,38.8704967],[22.2573063,38.8701756],[22.2565999,38.8703092],[22.2563123,38.8702869],[22.2559557,38.869786],[22.2559588,38.8696599],[22.2560771,38.8695355],[22.2568741,38.8694663],[22.2570837,38.8693793],[22.2570854,38.8693073],[22.2567304,38.8692119],[22.2567107,38.8690764],[22.2568166,38.8689879],[22.2572114,38.8688676],[22.2569765,38.8685758],[22.2570011,38.8685131],[22.2575083,38.8685117],[22.2569866,38.8681615],[22.2564908,38.8681541],[22.2563215,38.8680074],[22.2558988,38.8678569],[22.2554475,38.8673681],[22.2551643,38.8671656],[22.2549294,38.8668738],[22.2549208,38.8667565],[22.2543841,38.8665502],[22.2540938,38.8661674],[22.2534769,38.865942],[22.2532119,38.865938],[22.2532935,38.8659032],[22.2532731,38.8657947],[22.2533692,38.865634],[22.2534857,38.8655817],[22.2534493,38.8653333],[22.2533709,38.8652421],[22.2533323,38.8649351],[22.2530252,38.8647683],[22.2529154,38.8647081],[22.2527058,38.8647951],[22.2524997,38.8647379],[22.252462,38.864395],[22.2525175,38.8643057],[22.2526167,38.8641991],[22.2526605,38.8642898],[22.2527642,38.8642914],[22.2527903,38.8641656],[22.2529169,38.8641765],[22.2529762,38.8641053],[22.2531958,38.8640816],[22.2532591,38.8638482],[22.2534687,38.8637613],[22.2535126,38.863852],[22.2537182,38.8639272],[22.2537936,38.8641446],[22.2539535,38.864201],[22.2539786,38.8641203],[22.2540477,38.8641213],[22.2540998,38.8643474],[22.2543973,38.8644329],[22.2544802,38.8643441],[22.2547587,38.8642671],[22.254775,38.8641728],[22.2546288,38.8640264],[22.2547675,38.8640105],[22.2547236,38.8639197],[22.2548986,38.8638322],[22.2548891,38.863751],[22.2549941,38.8636985],[22.2549267,38.8636254],[22.2552907,38.8633515],[22.2551336,38.8631779],[22.2551555,38.8631197],[22.2553261,38.8632124],[22.2553416,38.8630504],[22.2554949,38.8629085],[22.2558029,38.8630393],[22.255876,38.8628782],[22.2557926,38.8625165],[22.2558963,38.8625181],[22.2558301,38.8623999],[22.2561194,38.8623502],[22.2560981,38.8622778],[22.2571026,38.8622027],[22.2572373,38.8623489],[22.2571268,38.8626265],[22.2573821,38.8625583],[22.2573621,38.8624318],[22.2574549,38.8624062],[22.2575316,38.8625695],[22.2576136,38.8625167],[22.2578635,38.8626646],[22.2579455,38.8626117],[22.2579596,38.8625038],[22.2580624,38.8625414],[22.2581289,38.8626505],[22.2583316,38.8623742],[22.2583595,38.8621764]]},{"id":20091,"author":"AnaDigit","name_GR":"\u039f\u03af\u03c4\u03b7: \u03a5\u03c0\u03ac\u03c4\u03b7 - \u03a4\u03bf \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03c9\u03bd \u03a6\u03b1\u03c1\u03bc\u03b1\u03ba\u03af\u03b4\u03c9\u03bd","description_GR":"","path":"STEREA\/Sterea_Oeta_Ypati_Farmakides","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":866,"name_EN":"Oeta: Ypati-The Farmakides Trail","description_EN":"","ascent_time":20,"descent_time":20,"marker":"Red_dots","level":9,"ascent":56,"descent":9,"maxelev":447,"minelev":383,"link_logo":"OETA_144","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.23246 38.86053,22.23346 38.86769)","views":3,"millestones":"0,22.2327262,38.8676932#0.9,22.2328807,38.8605231","x":22.2333711,"y":38.8638599,"coor":[[22.2327262,38.8676932],[22.2327589,38.8672882],[22.2326172,38.8669617],[22.2327479,38.8664545],[22.2326793,38.8659669],[22.2329266,38.8657544],[22.2331555,38.8653524],[22.233074,38.8649187],[22.233305,38.8644356],[22.2333755,38.863914],[22.2333711,38.8638599],[22.2333105,38.863048],[22.2327293,38.8623184],[22.2326303,38.8621277],[22.2326033,38.8618209],[22.2328858,38.8617125],[22.2330348,38.8612823],[22.2330369,38.8607327],[22.2328222,38.8605582],[22.2328807,38.8605231]]}],{"extent":[22.19985,38.69665,22.44364,38.87847],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"openurl"},"sort":{"type":"none"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":true},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Volima_AgAndreas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Vassilikos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Prodromos_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Klima_Schinari":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kiliomeno_Yperaghathos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Argasi_Skopiotisa":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Agalas_Kiliomenos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Skopelos_monasteries_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Klima":{"url":null,"color":"#1ab933","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Skopelos_Loutraki_Faros_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Taxiarches":{"url":null,"color":"#2f7aff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Foukalida":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Damoulianata_AgThekli":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Vilatoria_Petani":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Kefalonia_Gerogombos":{"url":null,"color":"#f029e0","width":6,"exclude":false,"useStyle":true},"Geology\/GEO_Kefalonia_4_karst_formations":{"url":null,"color":"#fff741","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Ainos":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Anavasi_AgDinati":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Fiskardo_Battery":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Gyro_apo_Zoodocho_Pigi":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Sami_Poros":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4x4\/SUV_Kefalonia_Ainos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"SUV_4x4\/SUV_Kefalonia_Livadi-AgEleni_beach":{"url":null,"color":"#f72fff","width":6,"exclude":false,"useStyle":true},"GEOLOGY\/GEO_Kefalonia_Mntzavinata_formations":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Antisamos_Fanentes":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Proni_acropolis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_traverse":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Assos_castle":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_AgDinati_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Atros_ascent":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_ridge":{"url":null,"color":"#e99429","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Koutavos_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Sami_Fanentes":{"url":null,"color":"#3ee373","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Kalymnos_Vathys_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Palionisos":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Eborios":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_1":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_12":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_8a":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_10":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_9":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_5":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_16":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_14":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_4":{"url":"http:\/\/www.alternetgreece.com\/en\/activities\/hiking","color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_17":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_6":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_3":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Kokkinoplos_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Litochoro_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Karya_Skolio":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Krania_Rapsani":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Rapsani_Tembi":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Dion_Petrostrouga":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Gortsia_Apostolidis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_Litochoro_Livadaki_Mouses":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Vrondou_Barbalas":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Ascent_Pyramida":{"url":null,"color":"#0f4a96","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Sykia_Pyramida":{"url":null,"color":"#960f65","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Viniani_Reka_Giona_ref":{"url":null,"color":"#f7f70d","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Kaloskopi_51":{"url":null,"color":"#0f962a","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Stromi_Kaloskopi":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Vardousia_Koprisies":{"url":null,"color":"#178e12","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Diakos_Stromi":{"url":null,"color":"#502fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Southern_Ridge":{"url":null,"color":"#eff900","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos":{"url":null,"color":"#ff2fe6","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina":{"url":null,"color":"#c52fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Oxia_AthDiakos":{"url":null,"color":"#40ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argirochori_Abelaki":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argyrochori_Trapeza":{"url":null,"color":"#2f72ff","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Gersali":{"url":null,"color":"#59ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Trapeza":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Oiti_Ypati_Kapnochori":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"STEREA\/Sterea_Oeta_Ypati_Kastania":{"url":null,"color":"#127a2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Pyrgos":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Greveno":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra_Pyrgos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Neochori_Pyrgos":{"url":null,"color":"#2fe6ff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra-Pyrgos":{"url":null,"color":"#69ff2f","width":6,"exclude":false,"useStyle":true}}}); 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_oeta = new getPoiCollection("oeta",[{"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":"\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\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}],{});function createAdventureListWidgetContext(){};console.log('sort type: none');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="
Αργυροχώρι-πηγή Αμπελάκι
Αργυροχώρι-καταφύγιο ΕΟΣ
Καπνοχώρι-Καστανιά
Καστανιά-Πύργος
Καταβόθρα-Πύργος
Κωσταλέξη-Λούκα
Λούκα-Άγιο Πνεύμα
Λούκα-Λιβαδιές
Ασωπός, μονοπάτι Σιδηροδρομικών
Νεοχώρι-Πύργος
Παύλιανη-Καταβόθρα
Παρκάκι Παύλιανης
Παύλιανη-Πυρά Ηρακλέους
Παύλιανη, Υγρότοπος Τζιρού
Καταφύγιο ΕΟΣ-κορυφή Γρεβενό
Καταφύγιο ΕΟΣ-κορυφή Πύργος
Υπάτη-Γερσαλή
Το μονοπάτι των Φαρμακιδών
Υπάτη-Καστανιά
Υπάτη-καταφύγιο ΕΟΣ
Δύο Βουνά-Προφήτης Ηλίας
Μαυρολιθάρι-Πύργος
Ο μικρός παράδεισος των μανιταριών
Πυρά-Πυρά Ηρακλέους
Βρύζες-Πυργάκι
Αργυροχώρι-Γερσαλή
Υπάτη - Το Μονοπάτι των Φαρμακίδων
";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["oeta"],pc:["oeta"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_oeta.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); }