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 = "en";(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_giona = new getAdventureCollection("giona",[{"id":16561,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: E4 \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-51","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae \u03c3\u03c4\u03bf 51","path":"STEREA\/Sterea_Giona_E4_Kaloskopi_51","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":13723,"name_EN":"Giona: E4 Kaloskopi-51 Pass","description_EN":"From Kaloskopi to 51 Pass","ascent_time":250,"descent_time":255,"marker":"E4","level":9,"ascent":412,"descent":595,"maxelev":1061,"minelev":772,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.32067 38.63221,22.38806 38.68891)","views":43,"millestones":"0,22.3228774,38.6888788#1,22.3227255,38.6818391#2,22.3249319,38.6790369#3,22.3335669,38.6787369#4,22.3436177,38.6778911#5,22.3535552,38.6767289#6,22.3629390,38.6742218#7,22.3729454,38.6716164#8,22.3775590,38.6648259#9,22.3832471,38.6606820#10,22.3824535,38.6564556#11,22.3848327,38.6489667#12,22.3847324,38.6416863#13,22.3797610,38.6344830#13.7,22.3759057,38.6320469","x":22.3606844,"y":38.6747361,"coor":[[22.3228774,38.6888788],[22.323296,38.6886775],[22.3234195,38.6888055],[22.3233436,38.6889485],[22.3234363,38.6889183],[22.3234957,38.6887435],[22.3235088,38.6886716],[22.3238794,38.6885597],[22.3238693,38.6884965],[22.3239851,38.6884621],[22.3240651,38.6883281],[22.3236934,38.6879984],[22.3235007,38.6877433],[22.323308,38.6876234],[22.3231997,38.6875408],[22.3232844,38.6874519],[22.3233057,38.6872765],[22.3232967,38.6871682],[22.3235423,38.6869915],[22.3236027,38.6868662],[22.3233792,38.6865927],[22.3235238,38.6863064],[22.3231545,38.685382],[22.3228409,38.6851793],[22.3228172,38.6847194],[22.3225972,38.6842927],[22.3224284,38.6841371],[22.3224113,38.6838845],[22.3222122,38.6835483],[22.3224206,38.6829926],[22.3222328,38.6826655],[22.3229391,38.6814682],[22.3229767,38.6813335],[22.3228973,38.6812243],[22.3226819,38.681095],[22.3224473,38.6808033],[22.3222988,38.6807651],[22.3218562,38.6810111],[22.3216556,38.6812335],[22.3214945,38.6812402],[22.3215539,38.6806643],[22.3214526,38.6805728],[22.321178,38.6805148],[22.3212324,38.6801551],[22.3211426,38.6800637],[22.320891,38.680006],[22.3208808,38.6799518],[22.3219311,38.6792821],[22.3219591,38.6790662],[22.3217696,38.6788112],[22.3217836,38.6787033],[22.3218992,38.6786779],[22.322275,38.6788274],[22.3227953,38.6786997],[22.3232295,38.6788141],[22.3235636,38.6787829],[22.3238887,38.6786433],[22.3240965,38.6781147],[22.324244,38.6781979],[22.3244731,38.6787238],[22.3250955,38.6791472],[22.3253243,38.6791956],[22.3257622,38.6791478],[22.3257909,38.6791482],[22.3266467,38.6791784],[22.3267743,38.6791262],[22.3269292,38.6788941],[22.327023,38.6783188],[22.3273826,38.6781797],[22.3276052,38.6780027],[22.3279884,38.6773414],[22.3282065,38.6773535],[22.3284151,38.6772844],[22.3289741,38.6779592],[22.3293717,38.6781631],[22.3297965,38.6781872],[22.3303211,38.6778703],[22.3305752,38.6778199],[22.331006,38.6780783],[22.3313081,38.6784341],[22.331739,38.6786925],[22.3320254,38.6787327],[22.3327657,38.678536],[22.3332356,38.6787049],[22.33366,38.6787469],[22.3338365,38.6785692],[22.3343129,38.6783508],[22.334652,38.6785989],[22.3349376,38.678675],[22.3355718,38.678594],[22.3363164,38.6787037],[22.3370406,38.678705],[22.3372036,38.6786172],[22.3373369,38.6783217],[22.3378003,38.6781661],[22.3381764,38.677811],[22.3388326,38.6777663],[22.3398978,38.677439],[22.3401157,38.6774601],[22.3406508,38.6776839],[22.3409552,38.6779406],[22.341444,38.6781818],[22.3422106,38.6783368],[22.3424868,38.6783227],[22.3436349,38.6778885],[22.3438558,38.6777339],[22.3443309,38.6775694],[22.344653,38.6775559],[22.3465108,38.678249],[22.3475065,38.6784433],[22.3478278,38.6784659],[22.3483006,38.6784005],[22.3494163,38.6778756],[22.3508183,38.6773908],[22.3515843,38.6765725],[22.3518064,38.6764135],[22.3522229,38.6762932],[22.3527532,38.6762286],[22.3529703,38.6762857],[22.3536936,38.6768275],[22.3539903,38.6769218],[22.3550586,38.6769549],[22.3553241,38.6769045],[22.3555449,38.6767995],[22.3557574,38.6765592],[22.355983,38.6757424],[22.3562196,38.6754483],[22.3569013,38.6752957],[22.3576142,38.6752877],[22.3587456,38.6755739],[22.3590678,38.6755604],[22.3603224,38.6749833],[22.3606844,38.6747361],[22.3610197,38.6746507],[22.3616292,38.6741366],[22.3619766,38.6740243],[22.3624013,38.6740483],[22.3628688,38.674217],[22.3639245,38.6742949],[22.3646908,38.6743551],[22.3647996,38.6742305],[22.3648429,38.6738436],[22.3649375,38.6737278],[22.3657461,38.6735499],[22.3662115,38.6733041],[22.3663603,38.6733332],[22.3672149,38.6730478],[22.3676634,38.673036],[22.3680802,38.6729067],[22.3685966,38.6729409],[22.3688486,38.6724758],[22.3690359,38.6723253],[22.3707488,38.6718085],[22.3715569,38.6716575],[22.3728102,38.6716389],[22.373491,38.6715223],[22.3738819,38.6715187],[22.3742067,38.671388],[22.3746568,38.6713042],[22.3748801,38.671091],[22.3751802,38.6705275],[22.3760917,38.6698643],[22.3766153,38.6695833],[22.3778689,38.6685283],[22.3781306,38.6674867],[22.3780922,38.6666391],[22.3779666,38.6660967],[22.3774759,38.6649185],[22.3775469,38.6648294],[22.3781599,38.6646576],[22.3785085,38.6644913],[22.3785212,38.6644374],[22.3769282,38.6642351],[22.3768512,38.6640808],[22.3776854,38.663786],[22.3788126,38.6637476],[22.3795276,38.6636403],[22.3800715,38.6634767],[22.3805942,38.6632316],[22.3815828,38.6628533],[22.3819866,38.6627868],[22.3823375,38.6625123],[22.3825393,38.6622267],[22.38289,38.660943],[22.3840465,38.660112],[22.3842519,38.6596642],[22.3850078,38.6597828],[22.3857579,38.6596445],[22.3857373,38.6595361],[22.3855894,38.659471],[22.3851405,38.6595008],[22.3848208,38.6594063],[22.3845258,38.65924],[22.3838835,38.6586724],[22.3830962,38.6584183],[22.3825355,38.6583114],[22.3823398,38.6583267],[22.3818582,38.6587886],[22.3816498,38.6588578],[22.3820878,38.6582872],[22.382225,38.6572979],[22.3825005,38.6562924],[22.3824372,38.6560392],[22.3820984,38.6557732],[22.3814971,38.6550801],[22.3812569,38.6545181],[22.3811973,38.6541027],[22.3813763,38.6538079],[22.3817962,38.6535343],[22.3823831,38.6529838],[22.3826762,38.6522129],[22.3829039,38.6519412],[22.3834319,38.6518719],[22.383731,38.651858],[22.3839166,38.6517795],[22.3841424,38.6514492],[22.384374,38.6508576],[22.3844928,38.6496608],[22.3848786,38.6488551],[22.3855111,38.6483232],[22.3865748,38.6470042],[22.3867733,38.6468628],[22.3873177,38.6466721],[22.3875174,38.6464766],[22.3877572,38.6455157],[22.387696,38.6446588],[22.387643,38.6444598],[22.3872642,38.643932],[22.3864544,38.6434072],[22.386155,38.6429255],[22.3856261,38.6424316],[22.3849371,38.6418994],[22.3844767,38.6414245],[22.3837866,38.6409464],[22.3835869,38.6406778],[22.3833616,38.6404764],[22.3825095,38.6400501],[22.3823425,38.6398135],[22.382193,38.6393068],[22.3821771,38.6389912],[22.3822628,38.6387581],[22.3825689,38.638429],[22.382575,38.6381587],[22.3823751,38.6378496],[22.382004,38.637493],[22.3810631,38.6369303],[22.3806598,38.6364742],[22.3804744,38.6350118],[22.3801948,38.6346745],[22.3799568,38.6345271],[22.3796596,38.6344599],[22.3789242,38.6344677],[22.3781104,38.6343843],[22.3778565,38.6344349],[22.377124,38.6348212],[22.3769216,38.6347869],[22.3766531,38.6348147],[22.3764825,38.6347402],[22.3763709,38.6345945],[22.3763754,38.6343963],[22.3768275,38.6331951],[22.3766626,38.6328684],[22.3760066,38.6324088],[22.3759057,38.6320469]]},{"id":16562,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: E4 \u03a3\u03c4\u03c1\u03cc\u03bc\u03b7-\u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u03a3\u03c4\u03c1\u03cc\u03bc\u03b7 \u03c3\u03c4\u03b7\u03bd \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae","path":"STEREA\/Sterea_Giona_E4_Stromi_Kaloskopi","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":13852,"name_EN":"Giona: E4 Stromi-Kaloskopi","description_EN":"From Stromi \u03c4\u03bf Kaloskopi","ascent_time":260,"descent_time":250,"marker":"E4","level":9,"ascent":656,"descent":425,"maxelev":1360,"minelev":825,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.25697 38.6695,22.32333 38.70948)","views":31,"millestones":"0,22.2574299,38.7094892#1,22.2608370,38.7043024#2,22.2638907,38.6971967#3,22.2647250,38.6892088#4,22.2649539,38.6818219#5,22.2735655,38.6770443#6,22.2783742,38.6719676#7,22.2850716,38.6714113#8,22.2901483,38.6716119#9,22.2996228,38.6745730#10,22.3070412,38.6794860#11,22.3136895,38.6842791#12,22.3184322,38.6910465#13,22.3210662,38.6934986#13.9,22.3228792,38.6888788","x":22.2859288,"y":38.6711952,"coor":[[22.2574299,38.7094892],[22.2577429,38.7092415],[22.2577813,38.7090799],[22.2572475,38.7081528],[22.2573318,38.7075233],[22.2571223,38.7071508],[22.2570378,38.7068431],[22.2571103,38.7067001],[22.2574821,38.7065434],[22.2576921,38.7063573],[22.2578004,38.7061607],[22.257926,38.7052525],[22.2580218,38.7043843],[22.2579199,38.7038422],[22.2580523,38.7036008],[22.2590943,38.70331],[22.2599973,38.7040083],[22.2610201,38.7043749],[22.2618023,38.7043685],[22.2628658,38.7036635],[22.2635136,38.7031189],[22.2637509,38.7028161],[22.2640563,38.7020727],[22.2639959,38.7012428],[22.2637624,38.700915],[22.2633683,38.7005667],[22.2632662,38.7005111],[22.2631586,38.7002031],[22.2631572,38.6997436],[22.2632772,38.6990605],[22.2632107,38.6984828],[22.2632504,38.6982672],[22.2636504,38.6978946],[22.2638157,38.6972393],[22.2644102,38.6969057],[22.2646821,38.6965944],[22.2649956,38.6955177],[22.2649351,38.6951654],[22.2646879,38.6949275],[22.2647617,38.6947303],[22.2652744,38.6944496],[22.2656496,38.6941488],[22.2655804,38.6936792],[22.2650451,38.6925178],[22.2648966,38.692002],[22.2647017,38.6917423],[22.2647271,38.691166],[22.2646057,38.6904794],[22.2646658,38.6898946],[22.2647285,38.6896792],[22.2649521,38.6894663],[22.2649777,38.6893585],[22.2641267,38.6888458],[22.263489,38.688593],[22.2627366,38.687852],[22.2626265,38.6876521],[22.2626169,38.6866247],[22.2625101,38.6858122],[22.2626955,38.6852743],[22.262642,38.6851113],[22.2627179,38.684824],[22.2626776,38.6845892],[22.2628455,38.6843033],[22.2628405,38.6840329],[22.2635973,38.6831611],[22.2636757,38.6827748],[22.2641534,38.6825115],[22.2643611,38.682001],[22.2645611,38.6818147],[22.2646771,38.6817714],[22.2649975,38.6818302],[22.2652625,38.6818071],[22.2661246,38.6813333],[22.2664906,38.6814108],[22.2670572,38.6812751],[22.2677471,38.6812673],[22.2682183,38.6807967],[22.2683924,38.6807272],[22.2687261,38.6807141],[22.2689306,38.6803387],[22.2691886,38.6801262],[22.2698592,38.6799649],[22.2703011,38.6797552],[22.270834,38.6795874],[22.2719872,38.6789556],[22.2725691,38.6781803],[22.2728507,38.6774636],[22.2730764,38.6771605],[22.2732859,38.6770555],[22.2737806,38.6770358],[22.2740148,38.676859],[22.274466,38.6767395],[22.2753713,38.6763744],[22.275478,38.6762408],[22.2755266,38.6760884],[22.2755092,38.6758538],[22.2755803,38.6757648],[22.276263,38.6755766],[22.2764995,38.6753007],[22.2763516,38.6747579],[22.2764412,38.6743808],[22.2763119,38.6740184],[22.2759665,38.6735628],[22.2755121,38.6733398],[22.2755611,38.6732144],[22.2759684,38.6730041],[22.2760631,38.6728884],[22.2760696,38.6726182],[22.2759204,38.6721294],[22.2759818,38.6719681],[22.2760867,38.6719065],[22.276488,38.6719485],[22.2768715,38.6717739],[22.2770558,38.6717586],[22.2776626,38.6718577],[22.2781528,38.6720271],[22.2786618,38.6718904],[22.2792359,38.6719169],[22.2794184,38.6719736],[22.2797571,38.6722309],[22.2801636,38.6720567],[22.2802941,38.672365],[22.2811493,38.6731345],[22.2813876,38.6732641],[22.2817661,38.6732967],[22.2819175,38.6732178],[22.2824125,38.6727025],[22.2825872,38.6721284],[22.2829712,38.6714492],[22.2831468,38.6713166],[22.2835279,38.6712411],[22.2838344,38.6709212],[22.284618,38.670356],[22.2855529,38.6706761],[22.2855397,38.670748],[22.2851541,38.6710126],[22.2850084,38.6713349],[22.2850978,38.6714443],[22.2855089,38.6715585],[22.2857067,38.6719398],[22.2859577,38.6720156],[22.2859288,38.6711952],[22.2861267,38.67109],[22.2868553,38.6709024],[22.2875342,38.6703897],[22.2875023,38.6702811],[22.2871832,38.6701683],[22.2873548,38.6697203],[22.2872778,38.669575],[22.2871754,38.6695284],[22.2867423,38.6690895],[22.2868104,38.6689734],[22.2871968,38.6691593],[22.288041,38.6694239],[22.2883355,38.6696085],[22.2888966,38.670662],[22.2902518,38.671673],[22.2907629,38.6718877],[22.2913383,38.6718601],[22.2921115,38.6722138],[22.2928234,38.6727288],[22.29304,38.672804],[22.2935801,38.6728119],[22.2939192,38.6730512],[22.2944914,38.6731586],[22.2949846,38.6736884],[22.295858,38.6741788],[22.2964317,38.6742232],[22.296642,38.674082],[22.2967412,38.6737771],[22.2971112,38.6736834],[22.2977272,38.6738816],[22.2988291,38.6739517],[22.2992627,38.6740842],[22.2995059,38.6744932],[22.299653,38.6745944],[22.2998594,38.6746155],[22.3005309,38.674409],[22.3010595,38.6744166],[22.3013089,38.6745644],[22.301656,38.674957],[22.3019288,38.6750871],[22.3024004,38.6751795],[22.3024774,38.6753248],[22.3025191,38.6755056],[22.302391,38.6760625],[22.3024332,38.6762253],[22.302603,38.6763359],[22.3029922,38.6764046],[22.3035382,38.6766468],[22.3036617,38.6767747],[22.3037489,38.6774608],[22.3038596,38.6776427],[22.3046005,38.6780003],[22.3055184,38.678757],[22.3063633,38.6790036],[22.3069136,38.6790656],[22.3070958,38.6791403],[22.3070149,38.6796438],[22.3072993,38.679774],[22.3076292,38.6804096],[22.3084211,38.6809527],[22.3083183,38.6814107],[22.3082605,38.6824011],[22.3083016,38.682609],[22.3084021,38.6827366],[22.3086758,38.6828306],[22.3092838,38.6828845],[22.3101138,38.6827883],[22.3108333,38.6825014],[22.3115881,38.6824672],[22.311898,38.6824897],[22.3120908,38.6826006],[22.3124589,38.6830835],[22.3130233,38.6835242],[22.3131344,38.683688],[22.3130821,38.6839576],[22.3131375,38.6840485],[22.3138888,38.6843657],[22.3146482,38.6848272],[22.3149267,38.6852097],[22.3149872,38.685571],[22.3151551,38.6857626],[22.3158333,38.686259],[22.3165301,38.6864492],[22.3168422,38.6868682],[22.3167959,38.6873722],[22.317006,38.6877266],[22.3179548,38.6884521],[22.3182507,38.6885825],[22.3190293,38.6892065],[22.3190132,38.6894045],[22.3185944,38.6896147],[22.3182539,38.6899162],[22.318284,38.6901059],[22.3185586,38.6906505],[22.3182864,38.6914756],[22.3183532,38.6915666],[22.3187862,38.6917351],[22.3191025,38.6919739],[22.319198,38.6923177],[22.3195208,38.6927729],[22.3197314,38.6935058],[22.319681,38.6936943],[22.3193179,38.6939774],[22.3191022,38.6943528],[22.3186919,38.6946893],[22.3184036,38.6952168],[22.3181937,38.6953399],[22.3178997,38.6953762],[22.3182161,38.6954574],[22.3184941,38.6953713],[22.3188541,38.6947277],[22.3192857,38.6944635],[22.3195594,38.694071],[22.3200208,38.6940055],[22.3205006,38.6941386],[22.3207932,38.6939175],[22.3210677,38.6934889],[22.3210817,38.693381],[22.3208009,38.6930976],[22.3206016,38.6927704],[22.3203185,38.6925861],[22.3201775,38.6922236],[22.3202253,38.6921432],[22.3204927,38.6920209],[22.3206235,38.6918336],[22.3206405,38.6915995],[22.3204993,38.6912461],[22.3205839,38.6910671],[22.3208747,38.6909271],[22.3212761,38.6909689],[22.3215714,38.6910317],[22.3215864,38.6910679],[22.3217177,38.6911689],[22.3222601,38.6913254],[22.3221723,38.6907024],[22.3223151,38.6900016],[22.3225852,38.6897622],[22.3226274,38.6894294],[22.3227453,38.6893049],[22.3227378,38.6891336],[22.3228792,38.6888788]]},{"id":16563,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0393\u03ba\u03b9\u03ce\u03bd\u03b1\u03c2 \u03b1\u03c0\u03cc \u039a\u03c1\u03b9\u03b8\u03b1\u03c1\u03cc\u03bb\u03b1\u03ba\u03ba\u03b1","description_GR":"\u039f \u03ba\u03bb\u03b1\u03c3\u03b9\u03ba\u03cc\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u039b\u03ac\u03ba\u03ba\u03b1 \u039a\u03b1\u03c1\u03b2\u03bf\u03cd\u03bd\u03b7","path":"STEREA\/Sterea_Giona_refuge1","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":12338,"name_EN":"Giona: Kaloskopi-Giona refuge via Kritharolaka","description_EN":"The classic way to mountain hut","ascent_time":320,"descent_time":285,"marker":"Red_dots","level":9,"ascent":1050,"descent":358,"maxelev":2015,"minelev":1056,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.2602 38.63401,22.32416 38.69461)","views":76,"millestones":"0,22.3228774,38.6888788#1,22.3191779,38.6945283#2,22.3190232,38.6892744#3,22.3121723,38.6827112#4,22.3051131,38.6784290#5,22.2973667,38.6737676#6,22.2885261,38.6699786#7,22.2816051,38.6678534#8,22.2766485,38.6627335#9,22.2770893,38.6548550#10,22.2744738,38.6467540#11,22.2689321,38.6392986#12.3,22.2621361,38.6331108","x":22.2868086,"y":38.6689734,"coor":[[22.3228774,38.6888788],[22.3227356,38.6891336],[22.3227431,38.6893049],[22.3226253,38.6894293],[22.322583,38.6897621],[22.322313,38.6900016],[22.3221701,38.6907024],[22.322258,38.6913254],[22.3217155,38.6911689],[22.3215846,38.6910679],[22.3215692,38.6910316],[22.3212743,38.6909688],[22.3208729,38.690927],[22.3205821,38.691067],[22.3204975,38.691246],[22.3206387,38.6915995],[22.3206217,38.6918335],[22.3204909,38.6920209],[22.3202236,38.6921432],[22.3201757,38.6922236],[22.3203167,38.6925861],[22.3205998,38.6927704],[22.3207991,38.6930976],[22.3210799,38.693381],[22.3210659,38.6934889],[22.3207914,38.6939175],[22.3204988,38.6941386],[22.320019,38.6940055],[22.3195576,38.694071],[22.3192839,38.6944635],[22.3188523,38.6947276],[22.3184923,38.6953713],[22.3182143,38.6954574],[22.3178975,38.6953762],[22.3181916,38.6953399],[22.3184014,38.6952168],[22.3186897,38.6946893],[22.3191,38.6943527],[22.3193158,38.6939774],[22.3196788,38.6936943],[22.3197292,38.6935058],[22.319519,38.6927728],[22.3191962,38.6923177],[22.3191007,38.6919739],[22.3187844,38.691735],[22.3183514,38.6915666],[22.3182846,38.6914755],[22.3185569,38.6906505],[22.3182822,38.6901058],[22.3182521,38.6899162],[22.3185926,38.6896147],[22.3190114,38.6894045],[22.3190275,38.6892065],[22.3182489,38.6885825],[22.317953,38.6884521],[22.3170042,38.6877266],[22.3167941,38.6873721],[22.3168404,38.6868682],[22.3165283,38.6864492],[22.3158315,38.686259],[22.3151533,38.6857626],[22.3149854,38.6855709],[22.3149249,38.6852096],[22.3146464,38.6848272],[22.313887,38.6843657],[22.3131357,38.6840485],[22.3130803,38.6839575],[22.3131326,38.683688],[22.3130215,38.6835242],[22.3124571,38.6830835],[22.312089,38.6826006],[22.3118962,38.6824897],[22.3115864,38.6824672],[22.3108311,38.6825013],[22.3101116,38.6827883],[22.3092816,38.6828844],[22.3086736,38.6828306],[22.3083999,38.6827365],[22.3082995,38.6826089],[22.3082584,38.6824011],[22.3083162,38.6814107],[22.3084189,38.6809526],[22.307627,38.6804095],[22.3072971,38.679774],[22.3070128,38.6796437],[22.3070936,38.6791403],[22.3069115,38.6790656],[22.3063611,38.6790035],[22.3055163,38.678757],[22.3045987,38.6780003],[22.3038574,38.6776426],[22.3037468,38.6774608],[22.3036595,38.6767747],[22.3035361,38.6766468],[22.30299,38.6764046],[22.3026008,38.6763358],[22.302431,38.6762252],[22.3023889,38.6760624],[22.302517,38.6755056],[22.3024753,38.6753248],[22.3023982,38.6751795],[22.301927,38.675087],[22.3016542,38.6749569],[22.3013071,38.6745644],[22.3010577,38.6744166],[22.3005292,38.6744089],[22.2998576,38.6746154],[22.2996512,38.6745944],[22.2995041,38.6744932],[22.2992609,38.6740841],[22.2988273,38.6739517],[22.2977254,38.6738816],[22.2971094,38.6736834],[22.2967394,38.6737771],[22.2966402,38.674082],[22.2964299,38.6742231],[22.2958562,38.6741787],[22.2949828,38.6736884],[22.2944896,38.6731586],[22.2939174,38.6730511],[22.2935783,38.6728119],[22.2930382,38.672804],[22.2928216,38.6727288],[22.2921097,38.6722138],[22.2913365,38.67186],[22.2907611,38.6718877],[22.29025,38.671673],[22.2888948,38.6706619],[22.2883337,38.6696085],[22.2880392,38.6694239],[22.287195,38.6691593],[22.2868086,38.6689734],[22.2866517,38.6684755],[22.286047,38.6682864],[22.2854617,38.6682508],[22.2849116,38.6677021],[22.2847575,38.6669339],[22.2847915,38.6664748],[22.2845818,38.6661113],[22.284208,38.6658805],[22.2837229,38.6659816],[22.283474,38.6662933],[22.2828242,38.6665541],[22.2825856,38.66692],[22.2822858,38.6669607],[22.2821806,38.6670312],[22.2820693,38.667363],[22.2817177,38.6676462],[22.281333,38.6683524],[22.2810881,38.668502],[22.2806497,38.6685676],[22.2806044,38.6684813],[22.2807875,38.6680335],[22.2807706,38.6677809],[22.2806944,38.6675996],[22.2804694,38.667398],[22.2802952,38.66699],[22.2802265,38.66698],[22.2800368,38.6667429],[22.2796386,38.6665748],[22.2794437,38.6665539],[22.2793572,38.666386],[22.2792768,38.6663848],[22.2782334,38.6656486],[22.2778136,38.6655703],[22.2776571,38.6653878],[22.2774223,38.6655916],[22.2772072,38.6656379],[22.2770187,38.6653468],[22.2766885,38.6642606],[22.2767033,38.6633598],[22.2766184,38.6624484],[22.2765882,38.6620785],[22.2766883,38.6617376],[22.2770066,38.6615981],[22.2771477,38.661465],[22.2771171,38.6613024],[22.2772036,38.6610513],[22.2771572,38.66092],[22.277179,38.6604878],[22.2773773,38.6601258],[22.2771967,38.6595104],[22.2772248,38.6592945],[22.2771959,38.659258],[22.27742,38.6590181],[22.2775256,38.6587763],[22.2774406,38.6584867],[22.2772948,38.6583404],[22.277288,38.658142],[22.2774918,38.6579423],[22.2774969,38.6577261],[22.2773162,38.6575973],[22.2774737,38.6574509],[22.2772723,38.6572227],[22.2769568,38.6570513],[22.2767498,38.6565797],[22.2768648,38.6564868],[22.2769282,38.6562354],[22.2774879,38.6559013],[22.2774249,38.6558328],[22.2771565,38.6555224],[22.2772468,38.6551093],[22.277081,38.6548365],[22.276944,38.6547534],[22.2767651,38.6540659],[22.2765882,38.6537749],[22.2763716,38.6527445],[22.276569,38.6525717],[22.276595,38.6524459],[22.2766478,38.6520547],[22.2766066,38.6518559],[22.2760948,38.6513482],[22.2760996,38.6511501],[22.2758372,38.6509795],[22.2757518,38.6507079],[22.2753137,38.6502869],[22.2751934,38.6500329],[22.2753122,38.6498724],[22.2753575,38.6494225],[22.2746775,38.6485475],[22.2750272,38.6473812],[22.2745898,38.6469332],[22.2743016,38.6464964],[22.2743494,38.6459385],[22.2737939,38.6446687],[22.2732224,38.6440656],[22.2729567,38.6436471],[22.2725514,38.6432987],[22.2724567,38.6429369],[22.2720566,38.6423723],[22.2710177,38.6416181],[22.2707226,38.6414695],[22.2706688,38.640838],[22.2702133,38.6401915],[22.2699103,38.6398896],[22.2692769,38.6394747],[22.2684823,38.6390755],[22.2682019,38.638792],[22.2678892,38.6388955],[22.2675217,38.6388901],[22.2673173,38.6387879],[22.2668462,38.63879],[22.2664323,38.6383243],[22.2660659,38.6382738],[22.2658345,38.6383424],[22.2655651,38.638361],[22.2653596,38.6383534],[22.2649333,38.6384012],[22.26388,38.6382504],[22.2637686,38.6381045],[22.2633369,38.6379495],[22.2632069,38.6376231],[22.2627698,38.6371661],[22.2625873,38.6361632],[22.262159,38.6353458],[22.2621003,38.6349214],[22.2619376,38.6345225],[22.2620098,38.6339109],[22.2620813,38.6338038],[22.2616744,38.6335274],[22.2617532,38.633416],[22.2619383,38.6333646],[22.2621361,38.6331108]]},{"id":16564,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u03a3\u03c5\u03ba\u03b9\u03ac-\u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf \u039b\u03b1\u03b6\u03cc\u03c1\u03b5\u03bc\u03b1","path":"STEREA\/Sterea_Giona_Sykia_Pyramida","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":9138,"name_EN":"Giona: Sykia-Pyramida","description_EN":"A wild trip through Lazorema to the summit","ascent_time":275,"descent_time":205,"marker":"Red_dots","level":9,"ascent":1810,"descent":41,"maxelev":2492,"minelev":707,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.21843 38.63998,22.26284 38.65939)","views":98,"millestones":"0,22.2188901,38.6409215#1,22.2283886,38.6400497#2,22.2318672,38.6445240#3,22.2378667,38.6514533#4,22.2426637,38.6583647#5,22.2508846,38.6589799#6,22.2586014,38.6560546#7,22.2608294,38.6496434#8,22.2562795,38.6456335#9.1,22.2523025,38.6471565","x":22.2493679,"y":38.6587186,"coor":[[22.2188901,38.6409215],[22.2190354,38.641158],[22.2194687,38.6412907],[22.2201599,38.6417833],[22.2202971,38.6418125],[22.2203525,38.6418944],[22.2209848,38.641877],[22.2214379,38.6416766],[22.2218819,38.641377],[22.2223289,38.6414198],[22.2231841,38.6412166],[22.2240308,38.640896],[22.2247234,38.6407624],[22.2254293,38.6410254],[22.2255565,38.6409913],[22.2258193,38.6410493],[22.2258805,38.6408971],[22.225767,38.6408413],[22.2257697,38.6407332],[22.2258408,38.6406442],[22.2259923,38.6405563],[22.2262062,38.6402712],[22.2267285,38.6400539],[22.22726,38.6399358],[22.2276275,38.6399414],[22.2280595,38.6401281],[22.2288338,38.6399416],[22.2292817,38.6399484],[22.2293034,38.6400028],[22.2294178,38.6400225],[22.2298635,38.6396508],[22.2300336,38.6397435],[22.2301074,38.6395464],[22.2302006,38.6394937],[22.2303304,38.6398201],[22.2304369,38.6396956],[22.2305751,38.6396796],[22.2307315,38.6403308],[22.2307027,38.6405646],[22.2307699,38.6406377],[22.2308966,38.6406216],[22.2308794,38.6408556],[22.2311232,38.6407512],[22.2312456,38.6409152],[22.2312747,38.641132],[22.2313551,38.6411332],[22.2317799,38.64068],[22.2317719,38.6414143],[22.2315677,38.6422402],[22.2318356,38.6425596],[22.2319942,38.6431207],[22.2319677,38.6432645],[22.2321731,38.6437902],[22.2318678,38.6445245],[22.2319702,38.6450307],[22.2322313,38.6456293],[22.2331152,38.6461293],[22.2333606,38.6464303],[22.2334663,38.6467023],[22.23367,38.6468315],[22.2340245,38.6468999],[22.2343086,38.6470304],[22.2350213,38.6474827],[22.2355139,38.6475442],[22.2358435,38.6476933],[22.2360688,38.6483455],[22.236352,38.648512],[22.2365165,38.6488298],[22.2364527,38.6490902],[22.2364951,38.649235],[22.2369495,38.6499177],[22.2370622,38.650478],[22.238022,38.6516369],[22.2376447,38.6524962],[22.2376027,38.652802],[22.2377971,38.6533095],[22.2378351,38.6536345],[22.2377238,38.6539572],[22.2382873,38.6544072],[22.238491,38.655005],[22.2388061,38.6552801],[22.238961,38.6559943],[22.239506,38.6562638],[22.2398007,38.656899],[22.2400278,38.6573485],[22.2405514,38.6575546],[22.24089,38.6576453],[22.2411392,38.6577932],[22.2421468,38.6579435],[22.2428003,38.658476],[22.2430743,38.6585522],[22.243618,38.6588757],[22.2439385,38.6589256],[22.2439554,38.6591781],[22.2442806,38.6595074],[22.2445788,38.6595299],[22.245125,38.6597544],[22.2453428,38.6597757],[22.2455512,38.6597157],[22.2458823,38.6598018],[22.2459216,38.6596041],[22.2460721,38.6595613],[22.2460301,38.6593985],[22.2463316,38.6592859],[22.2476835,38.6594593],[22.2476088,38.6592239],[22.247656,38.6591706],[22.2475217,38.6590244],[22.2476026,38.6590076],[22.2477101,38.658838],[22.2481175,38.6586278],[22.2481923,38.6583856],[22.2486399,38.6584104],[22.2486037,38.6584819],[22.2487981,38.6585209],[22.2494191,38.6585031],[22.2493679,38.6587186],[22.2495168,38.6587389],[22.2500819,38.6586572],[22.250195,38.658731],[22.2504712,38.6587171],[22.2506166,38.6588815],[22.2511747,38.6590881],[22.2513249,38.6590543],[22.2513802,38.6591452],[22.2518679,38.6589362],[22.2518935,38.6588285],[22.2520875,38.6588855],[22.2522963,38.6588075],[22.252508,38.6588422],[22.2526803,38.6588448],[22.2529138,38.6586951],[22.2531973,38.6588525],[22.253659,38.6587693],[22.2539451,38.6588186],[22.2541608,38.65893],[22.254461,38.6588714],[22.2546537,38.6589824],[22.2548193,38.6587866],[22.2550014,38.6588614],[22.2554427,38.6586697],[22.2557423,38.6586382],[22.2559116,38.6585866],[22.2573359,38.6588106],[22.2578592,38.6585571],[22.2579461,38.6582881],[22.2578712,38.6580617],[22.2579135,38.6577379],[22.2580947,38.6573712],[22.2582833,38.6572388],[22.2582174,38.6571117],[22.2582456,38.6568958],[22.2583379,38.6568792],[22.2583259,38.6564284],[22.2584349,38.6561958],[22.2583885,38.6561546],[22.2586443,38.6560322],[22.2590035,38.6556726],[22.2594659,38.6555624],[22.2600749,38.6555624],[22.260329,38.6555121],[22.2604928,38.6553884],[22.2605228,38.6551005],[22.2607107,38.6549321],[22.2619577,38.6546307],[22.2620851,38.6543668],[22.2624763,38.653868],[22.2623338,38.653109],[22.2624518,38.6528314],[22.2625405,38.6524903],[22.2624264,38.6519209],[22.261946,38.6513551],[22.2619609,38.6512111],[22.2617477,38.6510007],[22.2616407,38.6506747],[22.261349,38.650382],[22.261375,38.6502563],[22.260966,38.650124],[22.2609554,38.6500698],[22.2610963,38.6499458],[22.2609037,38.6498348],[22.260817,38.6496172],[22.2609115,38.6495105],[22.2610607,38.6490441],[22.2613977,38.648887],[22.2619269,38.6488588],[22.2620934,38.648627],[22.2620115,38.6482113],[22.2620684,38.6477615],[22.2622608,38.647404],[22.2622669,38.6471518],[22.2621426,38.6467084],[22.2619591,38.6466966],[22.2607684,38.6469943],[22.2595586,38.6471295],[22.2593389,38.6471893],[22.2592792,38.6472785],[22.2592121,38.6472054],[22.259027,38.6472568],[22.2589373,38.6471653],[22.2587199,38.647126],[22.2587102,38.6470538],[22.2578548,38.6467888],[22.2571478,38.6460934],[22.2567298,38.6457988],[22.2559668,38.6455171],[22.2552523,38.645128],[22.2546835,38.6448942],[22.2545788,38.6449467],[22.2544759,38.6449272],[22.2544739,38.6450083],[22.2542574,38.6449329],[22.2536355,38.6449957],[22.2535988,38.6450853],[22.2532993,38.6451169],[22.2532973,38.6451979],[22.2530518,38.6453745],[22.252868,38.6453717],[22.2528989,38.6455164],[22.2527947,38.6455509],[22.2523591,38.6455083],[22.2523344,38.64558],[22.2521491,38.6456403],[22.2516587,38.6454888],[22.2513707,38.6455206],[22.2511325,38.6453909],[22.2508204,38.6454673],[22.2506981,38.6455646],[22.2508532,38.6458012],[22.2517002,38.6464086],[22.2519773,38.6468272],[22.2523025,38.6471565]]},{"id":16565,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u03a7\u03b1\u03c1\u03ac\u03b4\u03c1\u03b1 \u03a1\u03b5\u03ba\u03ac\u03c2","description_GR":"\u0392\u03af\u03bd\u03b9\u03b1\u03bd\u03b7-\u03a1\u03b5\u03ba\u03ac-\u03ba\u03b1\u03c4. \u0393\u03ba\u03b9\u03ce\u03bd\u03b1\u03c2","path":"STEREA\/Sterea_Giona_Viniani_Reka_Giona_ref","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":5,"length":12569,"name_EN":"Giona: The Reka gorge","description_EN":"Viniani-Reka gorge-Giona mountain hut","ascent_time":375,"descent_time":310,"marker":"Red_dots","level":9,"ascent":1279,"descent":50,"maxelev":1764,"minelev":520,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.25893 38.59674,22.35572 38.63349)","views":112,"millestones":"0,22.3557200,38.5967434#1,22.3498091,38.6025205#2,22.3443052,38.6046035#3,22.3338139,38.6066743#4,22.3235174,38.6103133#5,22.3138402,38.6143674#6,22.3044258,38.6161285#7,22.2985731,38.6228242#8,22.2910909,38.6175433#9,22.2833806,38.6179729#10,22.2732559,38.6203239#11,22.2634372,38.6246683#12.6,22.2616826,38.6335320","x":22.2997109,"y":38.6224443,"coor":[[22.35572,38.5967434],[22.3556925,38.5969412],[22.3554116,38.5972211],[22.3551056,38.5975007],[22.3545433,38.5979884],[22.3540341,38.5984137],[22.3540109,38.598517],[22.3517608,38.6005039],[22.3515615,38.6006813],[22.3510178,38.6009665],[22.34955,38.6018829],[22.348925,38.602595],[22.3487783,38.6026875],[22.348973,38.6027083],[22.3497242,38.6025026],[22.3503641,38.6026378],[22.3506863,38.6031109],[22.3508273,38.6034734],[22.3509962,38.6036199],[22.3511667,38.6036944],[22.351833,38.6036858],[22.3519121,38.603741],[22.3518537,38.6037852],[22.3516015,38.6037636],[22.351071,38.6038643],[22.350635,38.6038491],[22.3494549,38.604229],[22.3490638,38.6042595],[22.3484881,38.6048281],[22.3483029,38.6048885],[22.3481541,38.6048684],[22.3480232,38.6045692],[22.3478422,38.6044495],[22.347398,38.60429],[22.3468701,38.6042736],[22.3457493,38.604465],[22.3442703,38.6046108],[22.3438508,38.6045778],[22.3428571,38.6048431],[22.3419252,38.60492],[22.341275,38.6047306],[22.3407416,38.6044527],[22.3400996,38.6044075],[22.3393806,38.6047127],[22.3379096,38.6057551],[22.3334762,38.6067734],[22.3324614,38.6069572],[22.3305394,38.607137],[22.3295928,38.6073488],[22.3272839,38.6083611],[22.3243185,38.6099496],[22.3235409,38.6102989],[22.3227604,38.6107743],[22.3206199,38.6124377],[22.3201076,38.6127367],[22.3188469,38.6131151],[22.3181505,38.6134295],[22.3175985,38.6134576],[22.3169937,38.6137823],[22.3164206,38.6142246],[22.3157396,38.614368],[22.3140993,38.6142813],[22.3132659,38.6145576],[22.3122875,38.6151383],[22.3111191,38.616473],[22.3105447,38.6169694],[22.3099388,38.6173391],[22.3093934,38.6175745],[22.3083779,38.6172895],[22.306808,38.616645],[22.3053214,38.6163712],[22.3042487,38.6160763],[22.3032566,38.6162602],[22.302384,38.6167341],[22.3019273,38.6171059],[22.3015367,38.6180825],[22.3015206,38.6187671],[22.3013628,38.6196118],[22.3010292,38.6206072],[22.3007285,38.6211795],[22.2999146,38.6220868],[22.2997109,38.6224443],[22.2989092,38.6228291],[22.2984269,38.6228221],[22.2980042,38.6227258],[22.2976062,38.6225579],[22.2972455,38.6222643],[22.2967833,38.6214105],[22.2966305,38.6205883],[22.2962193,38.6200056],[22.2954308,38.6198319],[22.2948397,38.619571],[22.2930993,38.6178876],[22.2928008,38.6173966],[22.2917258,38.6172007],[22.2911683,38.6174629],[22.290756,38.6178984],[22.290548,38.6179494],[22.2904392,38.6176955],[22.2904716,38.6172995],[22.2906175,38.6169592],[22.2910564,38.6163709],[22.2910503,38.6161456],[22.2907296,38.6161048],[22.290372,38.6161717],[22.2900935,38.6162938],[22.2890898,38.6169639],[22.288185,38.6173382],[22.2875382,38.6174909],[22.2857164,38.6177886],[22.2836096,38.617992],[22.2828416,38.6179267],[22.2821562,38.6177724],[22.2804016,38.6176566],[22.2786603,38.6174687],[22.2776203,38.6177328],[22.275235,38.6185357],[22.2740159,38.6195629],[22.2730393,38.6205307],[22.2723127,38.6211328],[22.2709858,38.6218611],[22.2696346,38.6222556],[22.2683676,38.622399],[22.2675879,38.62282],[22.2670326,38.622983],[22.2664026,38.6233882],[22.2650444,38.6239808],[22.2641175,38.6243094],[22.2634309,38.6246777],[22.2630979,38.6246728],[22.2624129,38.6245004],[22.2619538,38.6244846],[22.2615365,38.6246406],[22.260976,38.6250197],[22.2606701,38.6253215],[22.2601942,38.6259993],[22.2592304,38.6269041],[22.2590839,38.6272623],[22.2590908,38.6274517],[22.2592541,38.6278235],[22.259946,38.6286628],[22.2601444,38.6290082],[22.2601195,38.6295665],[22.2597982,38.6304989],[22.2598441,38.6307383],[22.2597581,38.6309714],[22.259464,38.6312553],[22.2596713,38.631709],[22.259646,38.6318077],[22.2599099,38.6318206],[22.2602955,38.6320246],[22.2604266,38.6323059],[22.2608781,38.632637],[22.2609873,38.6328729],[22.261122,38.6329155],[22.2612214,38.6330791],[22.2616361,38.6330312],[22.2618756,38.6331069],[22.2621397,38.6331108],[22.2619418,38.6333647],[22.2617568,38.633416],[22.2616826,38.633532]]},{"id":16638,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: E4 \u0391\u03b8\u03b1\u03bd\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2 \u0394\u03b9\u03ac\u03ba\u03bf\u03c2-\u03a3\u03c4\u03c1\u03cc\u03bc\u03b7","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf \u0394\u03b9\u03ac\u03ba\u03bf \u03c3\u03c4\u03b7 \u03a3\u03c4\u03c1\u03cc\u03bc\u03b7","path":"STEREA\/Sterea_Vardousia_E4_Diakos_Stromi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11109,"name_EN":"Vardousia: E4 Athanasios Diakos-Stromi","description_EN":"From Athanasios Diakos to Stromi","ascent_time":255,"descent_time":250,"marker":"E4","level":9,"ascent":482,"descent":597,"maxelev":1115,"minelev":640,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.1758 38.69063,22.25823 38.70965)","views":47,"millestones":"0,22.1764783,38.6991265#1,22.1795015,38.6957979#2,22.1853061,38.7009865#3,22.1908823,38.6972892#4,22.2009188,38.6940591#5,22.2111314,38.6926784#6,22.2174768,38.6919567#7,22.2261503,38.6963920#8,22.2360057,38.7002307#9,22.2420702,38.7057006#10,22.2509551,38.7104434#11.1,22.2574831,38.7065434","x":22.2105098,"y":38.6932142,"coor":[[22.1764783,38.6991265],[22.1760794,38.6986202],[22.1763345,38.6985341],[22.1778341,38.6974401],[22.1777475,38.6976821],[22.1780259,38.6982226],[22.1782176,38.6979192],[22.17872,38.6976026],[22.1787476,38.6974228],[22.1789992,38.696796],[22.1791277,38.6967169],[22.1796237,38.6966525],[22.1796941,38.6965996],[22.1796495,38.6965448],[22.1793527,38.6964591],[22.1790129,38.6962556],[22.178555,38.6961763],[22.1778483,38.695931],[22.177555,38.6957508],[22.1785731,38.6959153],[22.1792436,38.6957726],[22.1798859,38.6958366],[22.1810959,38.6957293],[22.1812302,38.6958756],[22.1812483,38.6968896],[22.181381,38.6970989],[22.1815838,38.6972642],[22.1831192,38.6979279],[22.1831731,38.6980729],[22.1829854,38.6984034],[22.1829937,38.6985296],[22.1830944,38.6986393],[22.1833565,38.6987335],[22.1836346,38.6986477],[22.1838245,38.6984164],[22.1840088,38.6984012],[22.1842125,38.6989856],[22.1848241,38.6993555],[22.1850978,38.6999004],[22.1851259,38.7001532],[22.1848878,38.7004739],[22.1849278,38.7007088],[22.185436,38.7010771],[22.185815,38.7015515],[22.1860987,38.7017001],[22.1866035,38.701744],[22.1873558,38.7020079],[22.188137,38.7020381],[22.1882758,38.7019456],[22.1882923,38.7017476],[22.1882099,38.7013679],[22.1884935,38.7010659],[22.1889278,38.7002617],[22.1888859,38.7000988],[22.1886044,38.6998602],[22.1885731,38.6997336],[22.1888685,38.6989632],[22.1887168,38.6981409],[22.1892477,38.6976085],[22.1894035,38.6973586],[22.1895547,38.6972888],[22.1902188,38.6973982],[22.1907723,38.6973347],[22.1911907,38.697161],[22.1916967,38.6967002],[22.1919178,38.6965955],[22.19252,38.6964246],[22.1942522,38.696127],[22.1944152,38.6960484],[22.1949276,38.69616],[22.1954878,38.6958307],[22.1958385,38.6956018],[22.1963023,38.6954468],[22.1966318,38.6951455],[22.1969247,38.6948437],[22.1974629,38.6944735],[22.1981446,38.6943398],[22.1987774,38.6943226],[22.1997814,38.6941758],[22.2002508,38.6942551],[22.2005551,38.6940436],[22.2012902,38.6940729],[22.2016857,38.6938898],[22.2029486,38.6935037],[22.2035688,38.6935312],[22.2038879,38.6936443],[22.2041412,38.6936301],[22.2046546,38.6933317],[22.2048863,38.6932631],[22.205074,38.6931128],[22.2056766,38.6929238],[22.2062729,38.6929871],[22.2063896,38.6929168],[22.2067572,38.6929314],[22.2068592,38.692987],[22.2070891,38.6929906],[22.2073839,38.6931573],[22.2078659,38.6931917],[22.2082116,38.693161],[22.2087113,38.6934119],[22.2093835,38.6931969],[22.2095329,38.6931992],[22.2097017,38.693346],[22.209806,38.6933115],[22.2101727,38.6933622],[22.2105098,38.6932142],[22.2107636,38.693182],[22.2110099,38.6929876],[22.2115136,38.6916887],[22.2124788,38.6912529],[22.2130565,38.6911356],[22.2135622,38.6911433],[22.2144282,38.6909944],[22.2148249,38.6912257],[22.2151828,38.6916276],[22.2153358,38.6914858],[22.2153031,38.6914132],[22.2156024,38.6907465],[22.2155097,38.6903576],[22.2151607,38.6900594],[22.2157868,38.6899924],[22.2166369,38.6907577],[22.2171428,38.6916846],[22.2177786,38.6921989],[22.2186258,38.6921127],[22.2190603,38.6922094],[22.2191736,38.6922742],[22.2194074,38.6925841],[22.2197018,38.6927688],[22.2211736,38.6933589],[22.2213799,38.6938486],[22.2218055,38.6943056],[22.2223014,38.6947096],[22.2226721,38.6955263],[22.2228918,38.6954755],[22.2234068,38.6955735],[22.2241221,38.6954762],[22.2246954,38.695539],[22.2260025,38.6961535],[22.2262456,38.6965537],[22.2266888,38.6967677],[22.228362,38.6969913],[22.2297699,38.6977154],[22.2301722,38.6977215],[22.2304963,38.6976363],[22.230801,38.6978662],[22.2315506,38.698247],[22.2329511,38.6988088],[22.2334652,38.6989427],[22.2344037,38.6995877],[22.234379,38.6996594],[22.2346842,38.6998713],[22.235327,38.699917],[22.2357943,38.7000863],[22.2364389,38.7005285],[22.2368748,38.7005711],[22.2372886,38.7015145],[22.2376025,38.7018436],[22.2379822,38.7018313],[22.2383014,38.7019442],[22.2389164,38.7026564],[22.2390404,38.7032259],[22.239388,38.7035916],[22.2395991,38.7034235],[22.2398699,38.7036349],[22.2398059,38.704134],[22.2397073,38.7044029],[22.2396892,38.7051415],[22.2398309,38.705459],[22.2401567,38.7057703],[22.2406148,38.7058492],[22.2417241,38.7056316],[22.2419876,38.7056717],[22.242877,38.7059824],[22.2432634,38.7061684],[22.2434549,38.7063335],[22.2440622,38.7073608],[22.244221,38.7074533],[22.244656,38.7075319],[22.2448608,38.7076251],[22.2456545,38.7085561],[22.2458376,38.7085949],[22.2461495,38.7085365],[22.246828,38.7085377],[22.2473889,38.7086452],[22.2477521,38.7088399],[22.2483027,38.7093708],[22.248994,38.7097866],[22.2501242,38.7101279],[22.2506688,38.7104334],[22.2508868,38.7104547],[22.2512794,38.7103885],[22.2517963,38.7104143],[22.2528014,38.7106996],[22.2535916,38.7108376],[22.2539365,38.7108427],[22.2547246,38.7105932],[22.2558344,38.7103574],[22.2561834,38.7101914],[22.2566054,38.7098643],[22.2569191,38.7097339],[22.2571085,38.7095114],[22.257431,38.7094892],[22.2577443,38.7092416],[22.2577827,38.7090799],[22.2572486,38.7081529],[22.2573328,38.7075234],[22.2571234,38.7071508],[22.2570389,38.7068432],[22.2571113,38.7067001],[22.2574831,38.7065434]]},{"id":17873,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1","description_GR":"\u0397 \u03ba\u03bb\u03b1\u03c3\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u0392\u03b1\u03b8\u03b9\u03ac \u039b\u03ac\u03ba\u03ba\u03b1","path":"STEREA\/Sterea_Giona_Ascent_Pyramida","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":5,"length":13175,"name_EN":"Giona: Ascent to Pyramida","description_EN":"Giona: an all-times classic ascent","ascent_time":485,"descent_time":390,"marker":"Red_dots","level":9,"ascent":1534,"descent":104,"maxelev":2492,"minelev":1056,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.2495 38.6459,22.32388 38.69445)","views":98,"millestones":"0,22.3228774,38.6888788#1,22.3191779,38.6945283#2,22.3190232,38.6892744#3,22.3121723,38.6827112#4,22.3051131,38.6784290#5,22.2973667,38.6737676#6,22.2885261,38.6699786#7,22.2816051,38.6678534#8,22.2739694,38.6647021#9,22.2676862,38.6639470#10,22.2608906,38.6586301#11,22.2613515,38.6503520#12,22.2573164,38.6462694#13.2,22.2522989,38.6471564","x":22.2792768,"y":38.6663848,"coor":[[22.3228774,38.6888788],[22.3227356,38.6891336],[22.3227431,38.6893049],[22.3226253,38.6894293],[22.322583,38.6897621],[22.322313,38.6900016],[22.3221701,38.6907024],[22.322258,38.6913254],[22.3217155,38.6911689],[22.3215846,38.6910679],[22.3215692,38.6910316],[22.3212743,38.6909688],[22.3208729,38.690927],[22.3205821,38.691067],[22.3204975,38.691246],[22.3206387,38.6915995],[22.3206217,38.6918335],[22.3204909,38.6920209],[22.3202236,38.6921432],[22.3201757,38.6922236],[22.3203167,38.6925861],[22.3205998,38.6927704],[22.3207991,38.6930976],[22.3210799,38.693381],[22.3210659,38.6934889],[22.3207914,38.6939175],[22.3204988,38.6941386],[22.320019,38.6940055],[22.3195576,38.694071],[22.3192839,38.6944635],[22.3188523,38.6947276],[22.3184923,38.6953713],[22.3182143,38.6954574],[22.3178975,38.6953762],[22.3181916,38.6953399],[22.3184014,38.6952168],[22.3186897,38.6946893],[22.3191,38.6943527],[22.3193158,38.6939774],[22.3196788,38.6936943],[22.3197292,38.6935058],[22.319519,38.6927728],[22.3191962,38.6923177],[22.3191007,38.6919739],[22.3187844,38.691735],[22.3183514,38.6915666],[22.3182846,38.6914755],[22.3185569,38.6906505],[22.3182822,38.6901058],[22.3182521,38.6899162],[22.3185926,38.6896147],[22.3190114,38.6894045],[22.3190275,38.6892065],[22.3182489,38.6885825],[22.317953,38.6884521],[22.3170042,38.6877266],[22.3167941,38.6873721],[22.3168404,38.6868682],[22.3165283,38.6864492],[22.3158315,38.686259],[22.3151533,38.6857626],[22.3149854,38.6855709],[22.3149249,38.6852096],[22.3146464,38.6848272],[22.313887,38.6843657],[22.3131357,38.6840485],[22.3130803,38.6839575],[22.3131326,38.683688],[22.3130215,38.6835242],[22.3124571,38.6830835],[22.312089,38.6826006],[22.3118962,38.6824897],[22.3115864,38.6824672],[22.3108311,38.6825013],[22.3101116,38.6827883],[22.3092816,38.6828844],[22.3086736,38.6828306],[22.3083999,38.6827365],[22.3082995,38.6826089],[22.3082584,38.6824011],[22.3083162,38.6814107],[22.3084189,38.6809526],[22.307627,38.6804095],[22.3072971,38.679774],[22.3070128,38.6796437],[22.3070936,38.6791403],[22.3069115,38.6790656],[22.3063611,38.6790035],[22.3055163,38.678757],[22.3045987,38.6780003],[22.3038574,38.6776426],[22.3037468,38.6774608],[22.3036595,38.6767747],[22.3035361,38.6766468],[22.30299,38.6764046],[22.3026008,38.6763358],[22.302431,38.6762252],[22.3023889,38.6760624],[22.302517,38.6755056],[22.3024753,38.6753248],[22.3023982,38.6751795],[22.301927,38.675087],[22.3016542,38.6749569],[22.3013071,38.6745644],[22.3010577,38.6744166],[22.3005292,38.6744089],[22.2998576,38.6746154],[22.2996512,38.6745944],[22.2995041,38.6744932],[22.2992609,38.6740841],[22.2988273,38.6739517],[22.2977254,38.6738816],[22.2971094,38.6736834],[22.2967394,38.6737771],[22.2966402,38.674082],[22.2964299,38.6742231],[22.2958562,38.6741787],[22.2949828,38.6736884],[22.2944896,38.6731586],[22.2939174,38.6730511],[22.2935783,38.6728119],[22.2930382,38.672804],[22.2928216,38.6727288],[22.2921097,38.6722138],[22.2913365,38.67186],[22.2907611,38.6718877],[22.29025,38.671673],[22.2888948,38.6706619],[22.2883337,38.6696085],[22.2880392,38.6694239],[22.287195,38.6691593],[22.2868086,38.6689734],[22.2866517,38.6684755],[22.286047,38.6682864],[22.2854617,38.6682508],[22.2849116,38.6677021],[22.2847575,38.6669339],[22.2847915,38.6664748],[22.2845818,38.6661113],[22.284208,38.6658805],[22.2837229,38.6659816],[22.283474,38.6662933],[22.2828242,38.6665541],[22.2825856,38.66692],[22.2822858,38.6669607],[22.2821806,38.6670312],[22.2820693,38.667363],[22.2817177,38.6676462],[22.281333,38.6683524],[22.2810881,38.668502],[22.2806497,38.6685676],[22.2806044,38.6684813],[22.2807875,38.6680335],[22.2807706,38.6677809],[22.2806944,38.6675996],[22.2804694,38.667398],[22.2802952,38.66699],[22.2802265,38.66698],[22.2800368,38.6667429],[22.2796386,38.6665748],[22.2794437,38.6665539],[22.2793572,38.666386],[22.2792768,38.6663848],[22.2782334,38.6656486],[22.2778136,38.6655703],[22.2776571,38.6653878],[22.2774223,38.6655916],[22.2772072,38.6656379],[22.2771595,38.6657093],[22.2769748,38.6657427],[22.2767127,38.6656487],[22.2764374,38.6656266],[22.276171,38.6657128],[22.2758863,38.6656005],[22.2757025,38.6655977],[22.2749758,38.6652266],[22.2745069,38.6651296],[22.2742245,38.6649272],[22.2741296,38.6647636],[22.2738061,38.6646416],[22.2732756,38.6642373],[22.2728613,38.6642582],[22.2722954,38.664376],[22.2718358,38.6643693],[22.2707068,38.6644787],[22.2704886,38.6646242],[22.2701199,38.6648079],[22.2700313,38.665149],[22.2699398,38.6653099],[22.2696708,38.6655041],[22.2690605,38.6655492],[22.2690048,38.6654763],[22.2691514,38.665118],[22.268898,38.6651413],[22.2688648,38.6650867],[22.2689818,38.6649984],[22.2688657,38.6650507],[22.2688104,38.6649598],[22.2686703,38.6650478],[22.2686866,38.6648498],[22.2684197,38.664954],[22.2684475,38.6647562],[22.2685995,38.6646503],[22.2685773,38.6646139],[22.2683816,38.664629],[22.2685756,38.6642084],[22.2679713,38.6644878],[22.267764,38.6645027],[22.2677085,38.6644208],[22.2678141,38.6643323],[22.2675737,38.6642927],[22.2675869,38.6642208],[22.2674605,38.6642189],[22.2675087,38.6641295],[22.2673955,38.6640557],[22.26765,38.6639874],[22.2678035,38.6638185],[22.2675384,38.6638506],[22.2676095,38.6637616],[22.2673682,38.663758],[22.2674278,38.6636688],[22.2672785,38.6636665],[22.2672347,38.6635758],[22.2670964,38.6635918],[22.2670522,38.663519],[22.2666501,38.6635131],[22.2664955,38.6632494],[22.2666449,38.6632517],[22.2665441,38.663142],[22.2657039,38.6627151],[22.2654785,38.6625315],[22.2651432,38.6621391],[22.2653153,38.6621506],[22.2651583,38.6619861],[22.2647276,38.6617364],[22.2645445,38.6617067],[22.2643245,38.6617755],[22.2641411,38.6617548],[22.2635905,38.661233],[22.2630877,38.6611174],[22.2627727,38.6608333],[22.2624201,38.6606839],[22.2618791,38.6602434],[22.2617389,38.6598628],[22.2613425,38.6596227],[22.2612178,38.659373],[22.2609127,38.6586836],[22.2608244,38.6584706],[22.2608401,38.657822],[22.2607668,38.6576317],[22.261325,38.6568831],[22.261363,38.6567395],[22.2612908,38.656396],[22.2613986,38.6562174],[22.261331,38.6561623],[22.2618517,38.6555393],[22.2617773,38.6552859],[22.2619541,38.6546307],[22.2620811,38.6543667],[22.2624724,38.653868],[22.2623298,38.6531089],[22.2624479,38.6528313],[22.2625365,38.6524902],[22.2624228,38.6519209],[22.2619424,38.651355],[22.2619573,38.6512111],[22.2617441,38.6510007],[22.2616371,38.6506747],[22.2613454,38.650382],[22.2613714,38.6502562],[22.260962,38.650124],[22.2609518,38.6500698],[22.2610927,38.6499457],[22.2609001,38.6498347],[22.2608134,38.6496172],[22.2609079,38.6495104],[22.2610571,38.6490441],[22.2613941,38.6488869],[22.2619233,38.6488587],[22.2620898,38.6486269],[22.2620079,38.6482112],[22.2620648,38.6477615],[22.2622573,38.6474039],[22.2622633,38.6471517],[22.2621387,38.6467083],[22.2619551,38.6466966],[22.2607644,38.6469943],[22.2595547,38.6471294],[22.2593349,38.6471893],[22.2592753,38.6472785],[22.2592081,38.6472054],[22.259023,38.6472567],[22.2589333,38.6471653],[22.258716,38.647126],[22.2587062,38.6470537],[22.2578509,38.6467887],[22.2571438,38.6460933],[22.2567258,38.6457988],[22.2559628,38.6455171],[22.2552484,38.6451279],[22.2546796,38.6448942],[22.2545749,38.6449467],[22.2544719,38.6449271],[22.25447,38.6450082],[22.2542535,38.6449329],[22.2536315,38.6449957],[22.2535949,38.6450852],[22.2532954,38.6451168],[22.2532934,38.6451979],[22.2530478,38.6453744],[22.252864,38.6453717],[22.252895,38.6455163],[22.2527907,38.6455508],[22.2523552,38.6455083],[22.2523304,38.64558],[22.2521451,38.6456403],[22.2516547,38.6454888],[22.2513667,38.6455205],[22.2511286,38.6453908],[22.2508165,38.6454672],[22.2506945,38.6455645],[22.2508497,38.6458011],[22.2516966,38.6464085],[22.2519737,38.6468272],[22.2522989,38.6471564]]},{"id":17874,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0393\u03ba\u03b9\u03ce\u03bd\u03b1\u03c2-\u039a\u03bf\u03c1\u03c5\u03c6\u03ae \u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03c4\u03bf\u03c5 \u03a0\u039f\u0391","path":"STEREA\/Sterea_Giona_GionaRef_Pyramida","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":3500,"name_EN":"Giona: Giona mountain refuge-Pyramida","description_EN":"Ascent from POA refuge to Pyramida summit","ascent_time":100,"descent_time":75,"marker":"Red_dots","level":9,"ascent":769,"descent":26,"maxelev":2508,"minelev":1732,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.25066 38.63314,22.26435 38.64715)","views":57,"millestones":"0,22.2621411,38.6331108#1,22.2640528,38.6412890#2,22.2613681,38.6468467#3,22.2519095,38.6455676#3.5,22.2523040,38.6471565","x":22.2619602,"y":38.6466967,"coor":[[22.2621411,38.6331108],[22.2619433,38.6333647],[22.2617582,38.633416],[22.2616798,38.6335275],[22.2620867,38.6338039],[22.2620152,38.6339109],[22.261943,38.6345226],[22.2621057,38.6349215],[22.2621643,38.6353459],[22.2625926,38.6361632],[22.2627752,38.6371662],[22.2632123,38.6376232],[22.2633423,38.6379495],[22.2636115,38.6387825],[22.2634789,38.6390419],[22.2634082,38.6395905],[22.2634643,38.6396454],[22.2635686,38.6396109],[22.2640312,38.6403927],[22.2640101,38.6407889],[22.2640944,38.6411055],[22.2640174,38.6414378],[22.2640202,38.6422758],[22.264125,38.6426919],[22.2640459,38.6431142],[22.2640719,38.6434661],[22.2637754,38.6438491],[22.2627128,38.6445542],[22.2618398,38.6450188],[22.2612731,38.6451726],[22.2608535,38.6454187],[22.2604131,38.6460519],[22.2601896,38.6462648],[22.2602214,38.6463734],[22.260324,38.646411],[22.2613586,38.6463903],[22.2620456,38.6464907],[22.2622848,38.6465753],[22.2621437,38.6467084],[22.2619602,38.6466967],[22.2607695,38.6469943],[22.2595597,38.6471295],[22.2593399,38.6471893],[22.2592803,38.6472786],[22.2592132,38.6472055],[22.2590281,38.6472568],[22.2589384,38.6471653],[22.258721,38.6471261],[22.2587112,38.6470538],[22.2578559,38.6467888],[22.2571489,38.6460934],[22.2567309,38.6457988],[22.2559678,38.6455171],[22.2552534,38.645128],[22.2546846,38.6448943],[22.2545799,38.6449468],[22.254477,38.6449272],[22.254475,38.6450083],[22.2542585,38.6449329],[22.2536365,38.6449958],[22.2535999,38.6450853],[22.2533004,38.6451169],[22.2532984,38.645198],[22.2530528,38.6453745],[22.2528691,38.6453718],[22.2529,38.6455164],[22.2527958,38.6455509],[22.2523602,38.6455083],[22.2523355,38.64558],[22.2521501,38.6456404],[22.2516598,38.6454889],[22.2513717,38.6455206],[22.2511336,38.6453909],[22.2508215,38.6454673],[22.2506996,38.6455646],[22.2508547,38.6458012],[22.2517017,38.6464086],[22.2519788,38.6468272],[22.252304,38.6471565]]},{"id":17875,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03b1\u03c1\u03b1\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03b4\u03cd\u03c3\u03ba\u03bf\u03bb\u03bf \u03b4\u03c1\u03cc\u03bc\u03bf","path":"STEREA\/Sterea_Giona_monopati_Karagiani","activity_type":33,"assistance":1,"difficulty":5,"scenic_value":5,"length":5768,"name_EN":"Giona: Karagianis Way","description_EN":"Sykia-Pyramida via the hard way","ascent_time":300,"descent_time":205,"marker":"Red_dots","level":9,"ascent":1785,"descent":15,"maxelev":2492,"minelev":707,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.21875 38.63983,22.25248 38.64665)","views":105,"millestones":"0,22.2188901,38.6409215#1,22.2283886,38.6400497#2,22.2318672,38.6445240#3,22.2372039,38.6439079#4,22.2444363,38.6432208#5,22.2506602,38.6451495#5.8,22.2523025,38.6471565","x":22.2353552,"y":38.6438113,"coor":[[22.2188901,38.6409215],[22.2190354,38.641158],[22.2194687,38.6412907],[22.2201599,38.6417833],[22.2202971,38.6418125],[22.2203525,38.6418944],[22.2209848,38.641877],[22.2214379,38.6416766],[22.2218819,38.641377],[22.2223289,38.6414198],[22.2231841,38.6412166],[22.2240308,38.640896],[22.2247234,38.6407624],[22.2254293,38.6410254],[22.2255565,38.6409913],[22.2258193,38.6410493],[22.2258805,38.6408971],[22.225767,38.6408413],[22.2257697,38.6407332],[22.2258408,38.6406442],[22.2259923,38.6405563],[22.2262062,38.6402712],[22.2267285,38.6400539],[22.22726,38.6399358],[22.2276275,38.6399414],[22.2280595,38.6401281],[22.2288338,38.6399416],[22.2292817,38.6399484],[22.2293034,38.6400028],[22.2294178,38.6400225],[22.2298635,38.6396508],[22.2300336,38.6397435],[22.2301074,38.6395464],[22.2302006,38.6394937],[22.2303304,38.6398201],[22.2304369,38.6396956],[22.2305751,38.6396796],[22.2307315,38.6403308],[22.2307027,38.6405646],[22.2307699,38.6406377],[22.2308966,38.6406216],[22.2308794,38.6408556],[22.2311232,38.6407512],[22.2312456,38.6409152],[22.2312747,38.641132],[22.2313551,38.6411332],[22.2317799,38.64068],[22.2317719,38.6414143],[22.2315677,38.6422402],[22.2318356,38.6425596],[22.2319942,38.6431207],[22.2319677,38.6432645],[22.2321731,38.6437902],[22.2318678,38.6445245],[22.2319702,38.6450307],[22.2322313,38.6456293],[22.2331152,38.6461293],[22.2333606,38.6464303],[22.2334663,38.6467023],[22.233726,38.646526],[22.2340807,38.6461168],[22.2340838,38.6459907],[22.2343758,38.6457969],[22.2344363,38.6456717],[22.2346053,38.6448722],[22.2344967,38.6446183],[22.2347054,38.6440718],[22.2349939,38.6440221],[22.2352399,38.6438275],[22.2353552,38.6438113],[22.235353,38.6439013],[22.2356437,38.6442301],[22.2361124,38.6443273],[22.2361844,38.6446708],[22.2363326,38.6447181],[22.2364832,38.6446663],[22.236792,38.644725],[22.2369661,38.6446555],[22.2369464,38.6445201],[22.2368338,38.6444283],[22.2370279,38.6440077],[22.2371194,38.6440271],[22.2372146,38.6438934],[22.2373522,38.6439044],[22.2375218,38.6440151],[22.2377202,38.6443605],[22.2381504,38.6446193],[22.2383245,38.6445499],[22.2385767,38.6445717],[22.2386487,38.6444466],[22.2388652,38.644522],[22.2390618,38.6444709],[22.239382,38.6445297],[22.2395861,38.6446409],[22.2398848,38.6446454],[22.2401799,38.6447941],[22.2405923,38.6448453],[22.2407402,38.6449016],[22.2409406,38.6451659],[22.2413285,38.6452799],[22.2416112,38.6454644],[22.2418847,38.6455586],[22.2419708,38.6457942],[22.2420393,38.6458132],[22.242586,38.6455421],[22.2427759,38.6452926],[22.2429906,38.64544],[22.2432618,38.6451558],[22.2433475,38.6449408],[22.2433126,38.6444897],[22.243002,38.6440345],[22.2431877,38.6434876],[22.2432818,38.6433989],[22.2442752,38.6431796],[22.2455086,38.6434864],[22.2458194,38.6434641],[22.246494,38.6436003],[22.246619,38.6436563],[22.2466515,38.6437378],[22.2465406,38.6440426],[22.2467638,38.6443162],[22.2478541,38.6448372],[22.2485972,38.6449925],[22.2491477,38.6445592],[22.2490616,38.6443236],[22.2492552,38.643921],[22.2492061,38.6435779],[22.2496155,38.6432776],[22.24967,38.642945],[22.2498547,38.6433803],[22.2496999,38.6436033],[22.2496823,38.6438553],[22.2503773,38.6445686],[22.2508204,38.6454673],[22.2506981,38.6455646],[22.2508532,38.6458012],[22.2517002,38.6464086],[22.2519773,38.6468272],[22.2523025,38.6471565]]},{"id":17876,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039c\u03c0\u03ad\u03ba\u03bf\u03c5","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a4\u03c1\u03b1\u03b3\u03bf\u03bd\u03cc\u03c1\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03b9\u03bf \u03b4\u03cd\u03c3\u03ba\u03bf\u03bb\u03bf \u03b4\u03c1\u03cc\u03bc\u03bf","path":"STEREA\/Sterea_Giona_monopati_Bekou","activity_type":33,"assistance":1,"difficulty":5,"scenic_value":5,"length":8812,"name_EN":"Giona: Bekos Way","description_EN":"Sykia-Tragonoros via the hardest way","ascent_time":420,"descent_time":340,"marker":"Yellow_dots","level":9,"ascent":1971,"descent":209,"maxelev":2492,"minelev":720,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.21406 38.62003,22.25296 38.64658)","views":69,"millestones":"0,22.2188901,38.6409215#1,22.2157732,38.6372113#2,22.2213092,38.6313291#3,22.2251417,38.6256250#4,22.2309976,38.6220865#5,22.2353367,38.6234727#6,22.2405681,38.6310070#7,22.2453868,38.6377501#8.8,22.2523047,38.6471565","x":22.225624,"y":38.6247997,"coor":[[22.2188901,38.6409215],[22.2190208,38.6408514],[22.2190619,38.6406673],[22.2190313,38.6404686],[22.2188176,38.6404158],[22.2187646,38.6402347],[22.2185498,38.6401504],[22.2185139,38.6397443],[22.2182788,38.6394975],[22.2181111,38.6388461],[22.2175143,38.638819],[22.217551,38.6387295],[22.2174841,38.6386473],[22.2171382,38.6386961],[22.2169507,38.6388465],[22.2164053,38.6390634],[22.2159441,38.6391285],[22.2156643,38.6392954],[22.2152848,38.6393076],[22.2149486,38.6394287],[22.214768,38.6392998],[22.2146536,38.63928],[22.2145867,38.6391979],[22.2150312,38.6388803],[22.2150336,38.6387812],[22.214955,38.6387079],[22.214726,38.6386774],[22.2147764,38.6384979],[22.2145483,38.6384314],[22.214585,38.6383418],[22.2143019,38.6381753],[22.2142715,38.6380126],[22.21448,38.6378852],[22.2145012,38.6379576],[22.2146045,38.6379591],[22.2151616,38.6377334],[22.2152449,38.6376175],[22.2152711,38.6375864],[22.2157271,38.6372689],[22.2158813,38.637073],[22.2159673,38.6368491],[22.215765,38.6366658],[22.2157786,38.6361163],[22.2160646,38.6361657],[22.2161461,38.6361219],[22.2162258,38.6356906],[22.2163305,38.6356381],[22.2163717,38.6348999],[22.2162608,38.6341323],[22.2165161,38.634028],[22.2168806,38.6336912],[22.2172155,38.6335791],[22.2173864,38.6336358],[22.2175309,38.6333677],[22.2176374,38.6332431],[22.2177995,38.6331915],[22.2179311,38.6329773],[22.2181023,38.6330249],[22.2180692,38.6329704],[22.2182781,38.6328835],[22.2183148,38.6327939],[22.2185931,38.63269],[22.2186995,38.6325655],[22.2192217,38.6323572],[22.2195053,38.6320371],[22.2197807,38.6320503],[22.2198478,38.6321234],[22.2203823,38.6318792],[22.2205324,38.6318455],[22.2206689,38.6319016],[22.2207423,38.6317225],[22.221188,38.6313508],[22.2215687,38.6312845],[22.2215895,38.631375],[22.221669,38.6314122],[22.2216433,38.63152],[22.2217701,38.6315039],[22.2221429,38.6312933],[22.2224318,38.6312256],[22.2225033,38.6311185],[22.2225952,38.6311199],[22.2230396,38.6308023],[22.2233753,38.6306992],[22.2234619,38.6304483],[22.2237898,38.6301919],[22.2237801,38.6301197],[22.2241238,38.6296924],[22.2246026,38.6293753],[22.2252418,38.6290786],[22.2253043,38.6288723],[22.225195,38.6286453],[22.2249477,38.6284253],[22.225029,38.6283905],[22.2249195,38.6281726],[22.2250125,38.628129],[22.2250867,38.6279138],[22.2249281,38.6278213],[22.224865,38.6275861],[22.2245625,38.6272751],[22.2245765,38.6271762],[22.2247174,38.6270522],[22.2243195,38.6268839],[22.2242418,38.6267746],[22.224335,38.626722],[22.2245561,38.6266487],[22.2246317,38.6263796],[22.2247134,38.6263267],[22.2247691,38.6259311],[22.2248861,38.6258428],[22.2249709,38.6256638],[22.2250714,38.6257825],[22.2251876,38.6257302],[22.2251333,38.6256032],[22.2252658,38.6253529],[22.2252256,38.625118],[22.225624,38.6247997],[22.2258989,38.6248309],[22.2260851,38.6247346],[22.2260687,38.6249326],[22.2259172,38.6250204],[22.2259963,38.6250757],[22.2261131,38.6249963],[22.2263622,38.6251443],[22.2263145,38.6252156],[22.2264644,38.6251909],[22.226505,38.6254078],[22.2270067,38.6255595],[22.2272617,38.6254643],[22.227322,38.6253481],[22.2272574,38.6251759],[22.2274194,38.6251243],[22.227608,38.6249289],[22.228214,38.6245776],[22.2287811,38.624406],[22.2292413,38.6243769],[22.2294396,38.6242538],[22.2296882,38.6244197],[22.22986,38.6244403],[22.2300115,38.6243525],[22.2301228,38.6240298],[22.2302765,38.6238519],[22.2302809,38.6236718],[22.2306075,38.6234695],[22.2305786,38.6232438],[22.2304355,38.6229893],[22.2306082,38.6229739],[22.2306005,38.6228206],[22.2307058,38.6227411],[22.2306405,38.6225959],[22.2306884,38.6225155],[22.2305643,38.6224235],[22.2305899,38.6223158],[22.230994,38.6222318],[22.2310006,38.6219616],[22.2312378,38.6216588],[22.2313409,38.6216694],[22.23151,38.6217981],[22.2317874,38.6217302],[22.2321305,38.6217894],[22.2323462,38.6218918],[22.2325763,38.6218773],[22.2328197,38.6217908],[22.2327106,38.6215549],[22.2328055,38.6214302],[22.2327631,38.6212854],[22.2332006,38.6212469],[22.2333302,38.6211137],[22.2335951,38.6210817],[22.2337696,38.6209942],[22.2337488,38.6209038],[22.2338535,38.6208513],[22.233929,38.6205821],[22.2339979,38.6205831],[22.2339326,38.620438],[22.2340845,38.6203321],[22.2341141,38.6200623],[22.2340708,38.6199535],[22.2338654,38.6198963],[22.2338557,38.6198241],[22.2339578,38.6197445],[22.2342978,38.6199299],[22.2345754,38.6203215],[22.2343753,38.6219225],[22.2343804,38.6221838],[22.2345306,38.6226186],[22.2352716,38.6233146],[22.2354019,38.623623],[22.2354182,38.6238936],[22.2355715,38.6242022],[22.2365678,38.6252625],[22.2367981,38.6257075],[22.2368878,38.6262676],[22.2370203,38.6264858],[22.2378568,38.6270391],[22.2384844,38.6276793],[22.2391761,38.6285187],[22.2394117,38.6296847],[22.2394197,38.6302976],[22.2395293,38.6305155],[22.2411308,38.6312604],[22.241467,38.6316079],[22.2428548,38.632638],[22.2441537,38.633081],[22.2443922,38.6331927],[22.2446956,38.6334676],[22.2447218,38.6338104],[22.2445429,38.634078],[22.2440765,38.6343594],[22.2440286,38.6344398],[22.2441338,38.6348378],[22.2439943,38.6349934],[22.2440476,38.6361026],[22.244477,38.6368659],[22.2468909,38.6391729],[22.2475951,38.6399764],[22.2480435,38.6408211],[22.2482542,38.6412208],[22.2486309,38.6417941],[22.2496404,38.6428004],[22.2496714,38.6429451],[22.2498561,38.6433804],[22.2497013,38.6436033],[22.2496837,38.6438554],[22.2503787,38.6445686],[22.2508222,38.6454673],[22.2507003,38.6455646],[22.2508554,38.6458012],[22.2517024,38.6464086],[22.2519795,38.6468272],[22.2523047,38.6471565]]},{"id":17877,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u0396\u03ad\u03c1\u03b2\u03b1","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1 \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1\u03bd \u03b4\u03cd\u03c3\u03ba\u03bf\u03bb\u03bf \u03b4\u03c1\u03cc\u03bc\u03bf","path":"STEREA\/Sterea_Giona_monopati_Zerva","activity_type":33,"assistance":1,"difficulty":5,"scenic_value":5,"length":10278,"name_EN":"Giona: Zervas Way","description_EN":"Sykia-Pyramida via the hard way","ascent_time":495,"descent_time":395,"marker":"Yellow_dots","level":9,"ascent":1974,"descent":211,"maxelev":2492,"minelev":717,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.21406 38.61343,22.25312 38.64658)","views":58,"millestones":"0,22.2188901,38.6409215#1,22.2157732,38.6372113#2,22.2174331,38.6297860#3,22.2169042,38.6229349#4,22.2200537,38.6173762#5,22.2262255,38.6143992#6,22.2334265,38.6190250#7,22.2374849,38.6267928#8,22.2444493,38.6332444#9,22.2481002,38.6409140#10.3,22.2523047,38.6471565","x":22.2194902,"y":38.6182502,"coor":[[22.2188901,38.6409215],[22.2190208,38.6408514],[22.2190619,38.6406673],[22.2190313,38.6404686],[22.2188176,38.6404158],[22.2187646,38.6402347],[22.2185498,38.6401504],[22.2185139,38.6397443],[22.2182788,38.6394975],[22.2181111,38.6388461],[22.2175143,38.638819],[22.217551,38.6387295],[22.2174841,38.6386473],[22.2171382,38.6386961],[22.2169507,38.6388465],[22.2164053,38.6390634],[22.2159441,38.6391285],[22.2156643,38.6392954],[22.2152848,38.6393076],[22.2149486,38.6394287],[22.214768,38.6392998],[22.2146536,38.63928],[22.2145867,38.6391979],[22.2150312,38.6388803],[22.2150336,38.6387812],[22.214955,38.6387079],[22.214726,38.6386774],[22.2147764,38.6384979],[22.2145483,38.6384314],[22.214585,38.6383418],[22.2143019,38.6381753],[22.2142715,38.6380126],[22.21448,38.6378852],[22.2145012,38.6379576],[22.2146045,38.6379591],[22.2151616,38.6377334],[22.2152449,38.6376175],[22.2152711,38.6375864],[22.2157271,38.6372689],[22.2158813,38.637073],[22.2159673,38.6368491],[22.215765,38.6366658],[22.2157786,38.6361163],[22.2160646,38.6361657],[22.2161461,38.6361219],[22.2162258,38.6356906],[22.2163305,38.6356381],[22.2163717,38.6348999],[22.2162608,38.6341323],[22.2162357,38.6337534],[22.2163144,38.6333581],[22.2165274,38.6331091],[22.2166434,38.6330658],[22.2167291,38.6328508],[22.2173852,38.6318696],[22.2180627,38.6314204],[22.2182681,38.631009],[22.2181918,38.6308457],[22.2182302,38.6306841],[22.2184981,38.630535],[22.2182932,38.6304597],[22.2182378,38.6303778],[22.2181225,38.6303941],[22.2178041,38.6302631],[22.2175893,38.6301246],[22.2173929,38.6297071],[22.2171539,38.6296134],[22.2170758,38.6295221],[22.216745,38.6294269],[22.2165759,38.6292982],[22.2167198,38.629012],[22.2163036,38.6286543],[22.2166402,38.6285152],[22.2166239,38.6282447],[22.2167061,38.6281738],[22.2166995,38.6279755],[22.2165162,38.6279547],[22.2162327,38.6278062],[22.2162473,38.6276802],[22.2161126,38.627552],[22.216129,38.627354],[22.2159719,38.6272075],[22.2159331,38.6269185],[22.2160533,38.6267041],[22.2159611,38.6262521],[22.2159925,38.6259102],[22.2158689,38.6258002],[22.2158405,38.6255565],[22.2157042,38.6254913],[22.215867,38.6254127],[22.2158805,38.6253318],[22.2157496,38.6250505],[22.2155695,38.6249036],[22.215578,38.6245613],[22.2157657,38.6244019],[22.2156031,38.624012],[22.2157334,38.6238518],[22.215703,38.6236891],[22.2158416,38.6236552],[22.2158914,38.6235028],[22.2161131,38.623362],[22.2161509,38.6232274],[22.2162776,38.6232113],[22.216292,38.6230944],[22.216686,38.6229562],[22.2168326,38.6230666],[22.2169168,38.6229147],[22.2170091,38.622898],[22.2170881,38.6229533],[22.2174246,38.6228143],[22.2180994,38.6220046],[22.2185039,38.6219026],[22.2185402,38.6218311],[22.2187482,38.6217802],[22.2187378,38.6217349],[22.2190379,38.6216764],[22.2190278,38.6216222],[22.2192601,38.6215176],[22.219507,38.6212871],[22.2197995,38.6211564],[22.2199135,38.6211041],[22.2200814,38.6208183],[22.2209046,38.6205064],[22.2209687,38.620237],[22.2201421,38.6197559],[22.2201567,38.61963],[22.219943,38.6194465],[22.219938,38.6191851],[22.2197007,38.6190283],[22.2198451,38.6187602],[22.2198253,38.6186337],[22.2199794,38.6184378],[22.2197617,38.6184165],[22.2196964,38.6182713],[22.2194902,38.6182502],[22.2196534,38.6181535],[22.2196914,38.6180099],[22.2198517,38.6180304],[22.2199921,38.6179244],[22.2198564,38.6178412],[22.219975,38.6176898],[22.2197208,38.6177491],[22.2196652,38.6176761],[22.2199331,38.617527],[22.2201464,38.6172599],[22.2201288,38.6170434],[22.22021,38.6170086],[22.2203805,38.6170833],[22.2204397,38.6170121],[22.2215278,38.6166682],[22.2216621,38.6163458],[22.2217782,38.6162935],[22.2217685,38.6162213],[22.2218608,38.6162047],[22.2218622,38.6161506],[22.2219662,38.6161252],[22.2219591,38.6159449],[22.222145,38.6158576],[22.2221373,38.6157043],[22.2224023,38.6156723],[22.222393,38.615582],[22.2226161,38.6153872],[22.2225838,38.6152966],[22.2227446,38.615299],[22.2227698,38.6152093],[22.2231778,38.6149632],[22.2232145,38.6148736],[22.2233295,38.6148664],[22.2234355,38.6147598],[22.2235856,38.6147261],[22.223659,38.614547],[22.2240016,38.6146243],[22.2240387,38.6145167],[22.2239721,38.6144256],[22.2241717,38.6142484],[22.2243303,38.6138723],[22.2245979,38.6137322],[22.2247511,38.6135723],[22.2247295,38.6135179],[22.225192,38.6133898],[22.2255917,38.6130174],[22.2258783,38.6130398],[22.2258385,38.6132554],[22.2259882,38.6132397],[22.2260655,38.613367],[22.2260129,38.6136365],[22.2261998,38.6139728],[22.2262133,38.6143604],[22.2264258,38.6150575],[22.2266265,38.6153038],[22.2267859,38.6153603],[22.226909,38.6154884],[22.2269249,38.6157769],[22.2269167,38.6158759],[22.2270145,38.6160171],[22.2273675,38.6161396],[22.2275918,38.6163592],[22.2280033,38.6164376],[22.2281495,38.6165659],[22.2288951,38.6166043],[22.2291684,38.6166985],[22.2299615,38.6166745],[22.2307745,38.6167769],[22.2312121,38.6167294],[22.2315671,38.6167708],[22.2318859,38.6168838],[22.232736,38.6168786],[22.2329943,38.6171168],[22.2330252,38.6172614],[22.2332253,38.6175348],[22.2331294,38.6176955],[22.2332425,38.6177693],[22.2335851,38.6183152],[22.2335957,38.61891],[22.2332804,38.6191215],[22.2334729,38.6192326],[22.2338003,38.6194222],[22.2339578,38.6197445],[22.2342978,38.6199299],[22.2345754,38.6203215],[22.2343753,38.6219225],[22.2343804,38.6221838],[22.2345306,38.6226186],[22.2352716,38.6233146],[22.2354019,38.623623],[22.2354182,38.6238936],[22.2355715,38.6242022],[22.2365678,38.6252625],[22.2367981,38.6257075],[22.2368878,38.6262676],[22.2370203,38.6264858],[22.2378568,38.6270391],[22.2384844,38.6276793],[22.2391761,38.6285187],[22.2394117,38.6296847],[22.2394197,38.6302976],[22.2395293,38.6305155],[22.2411308,38.6312604],[22.241467,38.6316079],[22.2428548,38.632638],[22.2441537,38.633081],[22.2443922,38.6331927],[22.2446956,38.6334676],[22.2447218,38.6338104],[22.2445429,38.634078],[22.2440765,38.6343594],[22.2440286,38.6344398],[22.2441338,38.6348378],[22.2439943,38.6349934],[22.2440476,38.6361026],[22.244477,38.6368659],[22.2468909,38.6391729],[22.2475818,38.6399627],[22.2475951,38.6399764],[22.2482542,38.6412208],[22.2486309,38.6417941],[22.2496404,38.6428004],[22.2496714,38.6429451],[22.2498561,38.6433804],[22.2497013,38.6436033],[22.2496837,38.6438554],[22.2503787,38.6445686],[22.2508222,38.6454673],[22.2507003,38.6455646],[22.2508554,38.6458012],[22.2517024,38.6464086],[22.2519795,38.6468272],[22.2523047,38.6471565]]},{"id":17879,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03a0\u03cd\u03c1\u03b3\u03bf","description_GR":"","path":"STEREA\/Sterea_Giona_Pyrgos_ascent","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":3,"length":8876,"name_EN":"Giona: Ascent to Pyrgos peak","description_EN":"","ascent_time":410,"descent_time":315,"marker":"No_marks","level":9,"ascent":1248,"descent":30,"maxelev":2055,"minelev":825,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.23886 38.66993,22.25878 38.70921)","views":13,"millestones":"0,22.2574299,38.7094892#1,22.2571036,38.7022929#2,22.2539942,38.6961120#3,22.2495045,38.6882226#4,22.2476060,38.6826819#5,22.2469055,38.6808700#6,22.2450812,38.6800991#7,22.2464340,38.6742368#8,22.2440245,38.6713540#8.9,22.2397676,38.6723026","x":22.246457,"y":38.6810716,"coor":[[22.2574299,38.7094892],[22.2577429,38.7092415],[22.2577813,38.7090799],[22.2572475,38.7081528],[22.2573318,38.7075233],[22.2571223,38.7071508],[22.2570378,38.7068431],[22.2571103,38.7067001],[22.2574821,38.7065434],[22.2576921,38.7063573],[22.2578004,38.7061607],[22.257926,38.7052525],[22.2577146,38.7049565],[22.2575633,38.7045577],[22.2575924,38.7040716],[22.2573423,38.7030046],[22.2574399,38.7027717],[22.2573836,38.7027258],[22.257325,38.70277],[22.2571867,38.7032545],[22.2570943,38.7032712],[22.2570213,38.7029637],[22.2571366,38.7024789],[22.2570462,38.7019369],[22.2567883,38.7011941],[22.2564854,38.7008832],[22.2567426,38.7007069],[22.2567568,38.7005989],[22.2564173,38.6999],[22.2557964,38.6994222],[22.2557604,38.6994848],[22.2560293,38.6997771],[22.2561938,38.700104],[22.256178,38.7002839],[22.2561083,38.7003099],[22.2559914,38.7000649],[22.2558167,38.6999181],[22.2554066,38.6994344],[22.2551006,38.6992496],[22.2548875,38.6990302],[22.2540348,38.6972558],[22.2539893,38.6961423],[22.2541507,38.6951806],[22.2538838,38.6948071],[22.2536383,38.6940285],[22.2531466,38.6935481],[22.2528772,38.6930891],[22.2525394,38.6927957],[22.2521715,38.6923216],[22.2512169,38.6913882],[22.2507425,38.6910387],[22.2506516,38.6907175],[22.2505387,38.6906752],[22.2499792,38.6900451],[22.2498933,38.6893229],[22.2495059,38.6882358],[22.2494216,38.6874506],[22.2495418,38.6872362],[22.2505472,38.6865484],[22.2506365,38.6863785],[22.2510398,38.6858709],[22.2512236,38.6854051],[22.2511977,38.6841071],[22.2512962,38.6838383],[22.2514325,38.6838043],[22.2515916,38.6837886],[22.2514325,38.6838043],[22.2510099,38.6836898],[22.2507148,38.6835322],[22.2503373,38.6834545],[22.2502091,38.6830561],[22.2500855,38.6829371],[22.2493626,38.6828812],[22.2484133,38.6831554],[22.2482884,38.6830904],[22.2480207,38.682753],[22.247828,38.682642],[22.2471584,38.6827581],[22.2467454,38.6827249],[22.2459613,38.6828213],[22.2458815,38.682793],[22.2460223,38.682678],[22.2466839,38.6824176],[22.2477608,38.6821003],[22.2479243,38.6819947],[22.2480275,38.6820052],[22.2481844,38.6821698],[22.2484381,38.6821375],[22.2488009,38.6818726],[22.2488643,38.6816303],[22.2490537,38.6814078],[22.2490453,38.6812816],[22.2488552,38.6810625],[22.2486373,38.6810412],[22.2478859,38.6812101],[22.247558,38.6814575],[22.2469604,38.6814486],[22.2463934,38.6816023],[22.246412,38.6815034],[22.2472782,38.6808676],[22.2473736,38.6807249],[22.2473908,38.6804909],[22.246887,38.6808798],[22.246457,38.6810716],[22.2464356,38.6810082],[22.2466941,38.6807778],[22.2470397,38.6802783],[22.2469592,38.6802771],[22.2462362,38.6806988],[22.24612,38.6807511],[22.2460749,38.6807144],[22.2466538,38.6800743],[22.2457575,38.6805294],[22.245468,38.6806152],[22.2454008,38.6805421],[22.2465114,38.6797838],[22.2469414,38.679592],[22.2464341,38.6796565],[22.2457941,38.6799713],[22.2458195,38.6798726],[22.246299,38.6795374],[22.2465775,38.6794334],[22.2462902,38.6794291],[22.2454655,38.6797772],[22.2449727,38.6801843],[22.2444826,38.6804833],[22.2448954,38.6800569],[22.2451623,38.6794843],[22.2461557,38.6788143],[22.2461571,38.6787603],[22.2462958,38.6786407],[22.2462317,38.6784415],[22.2464407,38.6783546],[22.2463079,38.6781453],[22.2463794,38.6780383],[22.2461841,38.6780353],[22.2459899,38.6779874],[22.2459571,38.6779148],[22.2458645,38.6779404],[22.2459707,38.6774915],[22.2456093,38.6778014],[22.2455403,38.6773318],[22.2456238,38.6772069],[22.2455354,38.6770614],[22.245864,38.676787],[22.2456358,38.6766124],[22.2455982,38.6762694],[22.2457564,38.6759114],[22.2460852,38.6753035],[22.2462941,38.674748],[22.2463826,38.6746998],[22.2463386,38.674618],[22.2464665,38.6740883],[22.2464453,38.6740159],[22.2462603,38.6740582],[22.2465131,38.6735934],[22.2465431,38.6733911],[22.2466859,38.6732536],[22.2468432,38.6729315],[22.2474326,38.6723276],[22.2483952,38.671504],[22.248194,38.6707396],[22.2480892,38.669855],[22.247969,38.6697901],[22.247463,38.6698005],[22.2474296,38.669755],[22.2466587,38.6701714],[22.2460414,38.6705046],[22.2455774,38.6706779],[22.2452197,38.6707356],[22.2447893,38.6709454],[22.2446744,38.6709436],[22.2445681,38.6710592],[22.2444417,38.6710573],[22.2442049,38.6713421],[22.2441262,38.6712688],[22.2440206,38.6713573],[22.2439183,38.6713107],[22.2439391,38.6714012],[22.2437438,38.6718668],[22.243415,38.6721502],[22.2429965,38.6728107],[22.2428697,38.6728268],[22.2428538,38.6730068],[22.2427031,38.6730586],[22.2426066,38.6732464],[22.24255,38.6732095],[22.2423626,38.6733509],[22.242238,38.6732769],[22.2421509,38.6730774],[22.2418564,38.6733703],[22.2416633,38.6732773],[22.2415976,38.6731411],[22.2413444,38.6731553],[22.2413139,38.6729927],[22.2409626,38.6727892],[22.2407328,38.6727857],[22.2406247,38.6729733],[22.2405567,38.6729362],[22.2404395,38.6730246],[22.240219,38.6726428],[22.2402597,38.6723911],[22.2400641,38.6723972],[22.2399735,38.6723417],[22.2398228,38.6723935],[22.2397676,38.6723026]]},{"id":17880,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u03a3\u03c5\u03ba\u03b9\u03ac-\u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u038a\u03c3\u03c9\u03bc\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u039b\u03b1\u03b6\u03cc\u03c1\u03b5\u03bc\u03b1 \u03c3\u03c4\u03bf \u038a\u03c3\u03c9\u03bc\u03b1 \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c4\u03ac \u03c3\u03c4\u03b7\u03bd \u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1","path":"STEREA\/Sterea_Giona_Sykia_Isoma_Pyramida","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":10889,"name_EN":"Giona: Sykia-Pyramida via the Isoma","description_EN":"Through Lazorema and via Isoma to the summit","ascent_time":320,"descent_time":250,"marker":"Red_dots","level":9,"ascent":1870,"descent":102,"maxelev":2492,"minelev":707,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.21818 38.63998,22.26284 38.66974)","views":36,"millestones":"0,22.2188901,38.6409215#1,22.2283889,38.6400498#2,22.2318679,38.6445240#3,22.2378674,38.6514533#4,22.2417905,38.6591998#5,22.2448315,38.6674356#6,22.2515713,38.6671676#7,22.2576893,38.6611508#8,22.2606335,38.6550006#9,22.2620264,38.6481021#10,22.2539356,38.6449635#10.9,22.2523025,38.6471565","x":22.2532857,"y":38.6667158,"coor":[[22.2188901,38.6409215],[22.2190361,38.641158],[22.2194695,38.6412907],[22.2201603,38.6417833],[22.2202974,38.6418125],[22.2203528,38.6418944],[22.2209852,38.641877],[22.2214382,38.6416766],[22.2218822,38.641377],[22.2223293,38.6414198],[22.2231845,38.6412166],[22.2240311,38.640896],[22.2247238,38.6407624],[22.2254296,38.6410254],[22.2255569,38.6409913],[22.2258197,38.6410493],[22.2258809,38.6408971],[22.2257674,38.6408413],[22.22577,38.6407332],[22.2258412,38.6406442],[22.2259927,38.6405564],[22.2262065,38.6402712],[22.2267289,38.6400539],[22.2272603,38.6399358],[22.2276278,38.6399414],[22.2280598,38.6401281],[22.2288342,38.6399416],[22.2292821,38.6399484],[22.2293037,38.6400028],[22.2294181,38.6400226],[22.2298639,38.6396508],[22.2300339,38.6397435],[22.2301077,38.6395464],[22.2302009,38.6394937],[22.2303308,38.6398201],[22.2304372,38.6396956],[22.2305755,38.6396796],[22.2307318,38.6403308],[22.2307031,38.6405646],[22.2307702,38.6406377],[22.230897,38.6406216],[22.2308798,38.6408556],[22.2311236,38.6407512],[22.2312459,38.6409153],[22.2312751,38.641132],[22.2313555,38.6411332],[22.2317802,38.64068],[22.2317726,38.6414143],[22.2315685,38.6422402],[22.2318364,38.6425597],[22.2319949,38.6431207],[22.2319684,38.6432645],[22.2321738,38.6437902],[22.2318685,38.6445245],[22.231971,38.6450307],[22.232232,38.6456293],[22.2331159,38.6461293],[22.2333613,38.6464304],[22.233467,38.6467023],[22.2336707,38.6468315],[22.2340252,38.6468999],[22.2343093,38.6470304],[22.2350221,38.6474827],[22.2355146,38.6475442],[22.2358442,38.6476933],[22.2360695,38.6483455],[22.2363527,38.648512],[22.2365172,38.6488298],[22.2364534,38.6490902],[22.2364958,38.649235],[22.2369502,38.6499177],[22.2370629,38.650478],[22.2380227,38.6516369],[22.2376454,38.6524963],[22.2376034,38.652802],[22.2377978,38.6533095],[22.2378358,38.6536345],[22.2377245,38.6539572],[22.2382881,38.6544072],[22.2384918,38.655005],[22.2388068,38.6552801],[22.2389617,38.6559943],[22.2395067,38.6562638],[22.2398014,38.656899],[22.2400285,38.6573485],[22.2405521,38.6575546],[22.2413306,38.6587017],[22.2424945,38.6599807],[22.2433609,38.6607416],[22.2443947,38.6621718],[22.2448778,38.6630982],[22.2450246,38.6636771],[22.2449919,38.6640731],[22.244643,38.6651852],[22.2448188,38.6673955],[22.244936,38.6677757],[22.2452452,38.668294],[22.245807,38.6697622],[22.246043,38.669982],[22.2466591,38.6701714],[22.2474303,38.669755],[22.2474637,38.6698005],[22.2479697,38.6697901],[22.2480899,38.669855],[22.2487344,38.6695402],[22.2488554,38.6692897],[22.2490666,38.6691127],[22.249204,38.6686642],[22.2490051,38.6683368],[22.2489971,38.6681925],[22.2491782,38.6678348],[22.2515272,38.6671851],[22.2521887,38.6669247],[22.2532857,38.6667158],[22.2536824,38.6664694],[22.2539086,38.6661484],[22.2539839,38.6658882],[22.2538978,38.6651751],[22.2540435,38.6648529],[22.2542547,38.6646758],[22.2548094,38.6645489],[22.2555669,38.6641187],[22.2555914,38.6631098],[22.2554495,38.6628013],[22.2555406,38.6623612],[22.2558308,38.6617708],[22.2560317,38.6615395],[22.2562067,38.661434],[22.2576137,38.6611711],[22.2582905,38.6609874],[22.2588863,38.6610188],[22.2591371,38.6611037],[22.2592537,38.6610333],[22.2591449,38.6607794],[22.2587294,38.6603767],[22.2586653,38.6601775],[22.2584841,38.6600667],[22.2584527,38.6597464],[22.2583349,38.6589156],[22.2579458,38.658288],[22.2578708,38.6580617],[22.2579131,38.6577379],[22.2580944,38.6573711],[22.2582825,38.6572388],[22.2582167,38.6571117],[22.2582449,38.6568958],[22.2583372,38.6568792],[22.2583252,38.6564284],[22.2584342,38.6561958],[22.2583882,38.6561545],[22.258644,38.6560322],[22.2590032,38.6556726],[22.2594655,38.6555623],[22.2600746,38.6555624],[22.2603286,38.6555121],[22.2604925,38.6553884],[22.2605224,38.6551005],[22.2607104,38.6549321],[22.2619577,38.6546307],[22.2620847,38.6543668],[22.262476,38.653868],[22.2623334,38.653109],[22.2624515,38.6528314],[22.2625401,38.6524903],[22.2624264,38.6519209],[22.261946,38.6513551],[22.2619609,38.6512111],[22.2617477,38.6510007],[22.2616407,38.6506747],[22.261349,38.650382],[22.261375,38.6502563],[22.2609656,38.650124],[22.2609554,38.6500698],[22.2610963,38.6499458],[22.2609037,38.6498348],[22.260817,38.6496172],[22.2609115,38.6495105],[22.2610607,38.6490441],[22.2613977,38.648887],[22.2619269,38.6488588],[22.2620934,38.648627],[22.2620115,38.6482113],[22.2620684,38.6477615],[22.2622608,38.647404],[22.2622669,38.6471518],[22.2621423,38.6467084],[22.2619587,38.6466966],[22.260768,38.6469943],[22.2595583,38.6471295],[22.2593385,38.6471893],[22.2592789,38.6472785],[22.2592117,38.6472054],[22.2590266,38.6472568],[22.2589369,38.6471653],[22.2587196,38.647126],[22.2587098,38.6470538],[22.2578545,38.6467888],[22.2571474,38.6460934],[22.2567294,38.6457988],[22.2559664,38.6455171],[22.255252,38.645128],[22.2546831,38.6448942],[22.2545785,38.6449467],[22.2544755,38.6449272],[22.2544736,38.6450082],[22.2542571,38.6449329],[22.2536351,38.6449957],[22.2535984,38.6450853],[22.2532989,38.6451169],[22.253297,38.6451979],[22.2530514,38.6453745],[22.2528676,38.6453717],[22.2528986,38.6455164],[22.2527943,38.6455509],[22.2523587,38.6455083],[22.252334,38.64558],[22.2521487,38.6456403],[22.2516583,38.6454888],[22.2513703,38.6455206],[22.2511322,38.6453909],[22.2508201,38.6454673],[22.2506981,38.6455646],[22.2508532,38.6458012],[22.2517002,38.6464086],[22.2519773,38.6468272],[22.2523025,38.6471565]]},{"id":17881,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u0392\u03af\u03bd\u03b9\u03b1\u03bd\u03b7-\u039a\u03b1\u03c1\u03bf\u03cd\u03c4\u03b5\u03c2","description_GR":"\u0388\u03bd\u03b1\u03c2 \u03ad\u03be\u03c5\u03c0\u03bd\u03bf\u03c2 \u03b4\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u039d\u03cc\u03c4\u03b9\u03b1\u03c2 \u0393\u03ba\u03b9\u03ce\u03bd\u03b1\u03c2 \u03bc\u03ad\u03c3\u03c9 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u03a3\u03b9\u03b3\u03b4\u03af\u03c4\u03c3\u03b1\u03c2","path":"STEREA\/Sterea_Giona_Karoutes_moniSigditsas","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":27063,"name_EN":"Giona: Viniani-Karoutes","description_EN":"An interesting crossing of southern Giona","ascent_time":710,"descent_time":665,"marker":"No_marks","level":9,"ascent":1596,"descent":1091,"maxelev":1769,"minelev":505,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.263 38.52507,22.35735 38.59579)","views":30,"millestones":"0,22.3557189,38.5967433#1,22.3491462,38.5963670#2,22.3435599,38.5949399#3,22.3389600,38.5915620#4,22.3393356,38.5869718#5,22.3425018,38.5789286#6,22.3498067,38.5727779#7,22.3424725,38.5745965#8,22.3357984,38.5811201#9,22.3287529,38.5874868#10,22.3202527,38.5919275#11,22.3141985,38.5912133#12,22.3048036,38.5941754#13,22.2950360,38.5904331#14,22.2862186,38.5874853#15,22.2825105,38.5804512#16,22.2788813,38.5749502#17,22.2726439,38.5704604#18,22.2700812,38.5623700#19,22.2718591,38.5581262#20,22.2654977,38.5513208#21,22.2694213,38.5465752#22,22.2782437,38.5410971#23,22.2889672,38.5388991#24,22.2896877,38.5324901#25,22.2816907,38.5265784#26,22.2730417,38.5245981#27.1,22.2658185,38.5258035","x":22.2948432,"y":38.5903618,"coor":[[22.3557189,38.5967433],[22.3550725,38.5959818],[22.3544949,38.5951267],[22.3542309,38.5946183],[22.3541654,38.5943786],[22.3539805,38.5944301],[22.3536076,38.5946681],[22.3530855,38.5954087],[22.352828,38.5956214],[22.3525738,38.5956899],[22.3522412,38.5956762],[22.3521858,38.5955853],[22.3522498,38.5952978],[22.3517198,38.5948759],[22.3513775,38.5947809],[22.3512496,38.5948512],[22.3511885,38.5950125],[22.3514722,38.5951607],[22.3514689,38.5953048],[22.3506485,38.5955276],[22.3500965,38.5955648],[22.3495689,38.596044],[22.3493128,38.5961936],[22.3487249,38.596798],[22.3483569,38.5968199],[22.3478084,38.596704],[22.3475042,38.596952],[22.3470321,38.5970084],[22.3468501,38.5969338],[22.3464931,38.5964782],[22.3462103,38.596294],[22.345898,38.595893],[22.3456132,38.5952943],[22.3453304,38.5951101],[22.345068,38.5950343],[22.3448485,38.5950942],[22.3447496,38.5953992],[22.3446315,38.5955417],[22.3437757,38.595809],[22.3435979,38.5960497],[22.34332,38.5961539],[22.3430005,38.5965639],[22.3427927,38.596615],[22.3427824,38.5965608],[22.3429469,38.596401],[22.3430699,38.5960423],[22.343603,38.5953289],[22.3435455,38.5948325],[22.343364,38.5947398],[22.3427798,38.5946775],[22.3421059,38.5945238],[22.341184,38.5941683],[22.3407618,38.593964],[22.3405129,38.5933027],[22.3403572,38.5930842],[22.3403281,38.5928495],[22.3401029,38.5926571],[22.3400735,38.5924404],[22.3398633,38.592095],[22.3398013,38.5917968],[22.3398263,38.591707],[22.3406386,38.5908354],[22.3409204,38.5900645],[22.3407589,38.5900982],[22.3405551,38.5904738],[22.3399815,38.5909523],[22.3394591,38.5911972],[22.3388286,38.5916568],[22.3387604,38.5921244],[22.3384933,38.5927514],[22.3384121,38.5927863],[22.3383109,38.5926947],[22.3383275,38.5919741],[22.3381973,38.5916478],[22.3386131,38.591041],[22.3390836,38.5905521],[22.3390688,38.5902004],[22.33892,38.5901803],[22.3387871,38.5904668],[22.3386247,38.5905365],[22.3377382,38.5893976],[22.3375448,38.5892596],[22.3380218,38.5884915],[22.3388539,38.5877554],[22.3392324,38.5872741],[22.3393208,38.5870817],[22.3394871,38.5858405],[22.3399722,38.5852166],[22.3402131,38.5847244],[22.3407875,38.5842099],[22.3409417,38.5839958],[22.3408905,38.5837248],[22.3405328,38.5833052],[22.3404149,38.5829431],[22.3414674,38.5821019],[22.3416938,38.5817447],[22.3419025,38.5811529],[22.3423511,38.5806186],[22.342334,38.5798614],[22.3425047,38.5789267],[22.3424131,38.5784208],[22.3425544,38.5773595],[22.3429794,38.57696],[22.3438871,38.5764231],[22.3461041,38.5753551],[22.3479821,38.5745526],[22.3485424,38.574146],[22.3491646,38.5735421],[22.3494023,38.573185],[22.3498015,38.5727941],[22.3498511,38.5726326],[22.3496858,38.5723329],[22.349606,38.5713045],[22.3495182,38.5711321],[22.3493708,38.5710489],[22.3486919,38.5712195],[22.3477131,38.5718545],[22.347302,38.5722632],[22.3469108,38.5728074],[22.3466427,38.5729838],[22.3460075,38.5731551],[22.3454501,38.5734355],[22.3449541,38.5735367],[22.3445074,38.5734943],[22.3442992,38.5735634],[22.3441094,38.5738311],[22.343981,38.574424],[22.3437699,38.5746193],[22.3435966,38.5746709],[22.3428635,38.5747101],[22.3426234,38.5746706],[22.3423169,38.5745221],[22.3421205,38.5745734],[22.3415393,38.5748895],[22.3412585,38.5751199],[22.340528,38.5759385],[22.3401715,38.5764651],[22.3398806,38.5769791],[22.3393188,38.5774488],[22.3391133,38.5778964],[22.3389483,38.5780833],[22.3386577,38.5782414],[22.3383166,38.578597],[22.3382198,38.5788119],[22.3380082,38.5790251],[22.3380037,38.5792233],[22.3377913,38.5794726],[22.3370051,38.5797137],[22.3371003,38.5800665],[22.3370289,38.5801736],[22.3368207,38.5802428],[22.336769,38.5804943],[22.3366647,38.5805379],[22.3365687,38.5807168],[22.3364521,38.5807962],[22.335894,38.581009],[22.3353396,38.58165],[22.335229,38.5819638],[22.3344896,38.5827102],[22.3342067,38.5830306],[22.3339287,38.5831843],[22.3335995,38.583522],[22.3333683,38.5835908],[22.3332018,38.5838408],[22.3331133,38.5841909],[22.3331657,38.584408],[22.3331177,38.5844974],[22.3330234,38.5846042],[22.332827,38.5846554],[22.3325858,38.5851566],[22.3321869,38.5855294],[22.3316735,38.5858825],[22.3311669,38.5859474],[22.3309697,38.5860347],[22.330073,38.5865806],[22.3300499,38.586792],[22.3291722,38.5870138],[22.3289393,38.5871546],[22.3288748,38.5872123],[22.3288574,38.5873607],[22.3286683,38.5875923],[22.3286531,38.5877543],[22.328348,38.5880383],[22.3280617,38.5885028],[22.3277733,38.5885617],[22.3273275,38.5889699],[22.3268048,38.5892327],[22.3266092,38.5892479],[22.3265727,38.5893375],[22.3264926,38.5893274],[22.3264446,38.5894168],[22.3261186,38.5896104],[22.3257835,38.5897047],[22.3254422,38.5900603],[22.3254138,38.5902942],[22.3252986,38.5903105],[22.3252162,38.5903995],[22.3249282,38.5904404],[22.3249814,38.5906214],[22.3247133,38.5907978],[22.3243706,38.5907208],[22.3240553,38.5908559],[22.3239342,38.5911245],[22.3236886,38.5913192],[22.3234586,38.591334],[22.323083,38.5911934],[22.3227345,38.5913686],[22.3223235,38.5914664],[22.321714,38.5915117],[22.3206033,38.5918742],[22.319036,38.5921221],[22.3186063,38.5923322],[22.3186127,38.5925485],[22.3183399,38.5929231],[22.3182224,38.5932368],[22.3177437,38.5930857],[22.3174223,38.5930811],[22.3173322,38.5930077],[22.3172686,38.5927815],[22.3171202,38.5927433],[22.3158186,38.5929228],[22.3151881,38.5928777],[22.3151677,38.5927693],[22.3154808,38.5926386],[22.3157277,38.5923899],[22.3161167,38.5924495],[22.3162782,38.5924158],[22.3166172,38.5921594],[22.3165423,38.591924],[22.3162381,38.5916763],[22.3157126,38.5915606],[22.3149545,38.5915768],[22.3144933,38.5916602],[22.314181,38.5912683],[22.3142799,38.5909633],[22.3142355,38.5908996],[22.3137638,38.5911856],[22.3132552,38.5914712],[22.3127978,38.5918791],[22.3118555,38.5924062],[22.3102185,38.5931755],[22.3090038,38.5935635],[22.3088145,38.593804],[22.3086734,38.5939462],[22.3079524,38.5938456],[22.3073876,38.5939366],[22.3068091,38.5941264],[22.306608,38.5943758],[22.3064807,38.5944191],[22.3055323,38.5942251],[22.3049007,38.594225],[22.3044582,38.5940023],[22.3038186,38.5938579],[22.3034279,38.5938702],[22.3028783,38.5938082],[22.3023834,38.5938551],[22.301906,38.5936499],[22.3012985,38.593605],[22.3008169,38.5930934],[22.3000857,38.5929386],[22.2987696,38.5922707],[22.298031,38.5920482],[22.2972179,38.5918111],[22.2968204,38.5911385],[22.2961331,38.5910744],[22.2959394,38.5910085],[22.2949688,38.5903906],[22.2948432,38.5903618],[22.2947499,38.5904235],[22.294959,38.590805],[22.29482,38.590857],[22.2946119,38.590827],[22.2942956,38.5906061],[22.2941964,38.5904335],[22.2939005,38.590321],[22.2933144,38.5898619],[22.2930976,38.5898047],[22.2914304,38.5899065],[22.2909922,38.5895036],[22.28945,38.5891747],[22.2886286,38.5889554],[22.2883561,38.5888253],[22.2880579,38.5888119],[22.2877281,38.5886809],[22.2875386,38.5884439],[22.2874804,38.5879925],[22.2873104,38.5878999],[22.2862843,38.5875965],[22.286218,38.5874874],[22.2863061,38.5871643],[22.2862521,38.5870193],[22.2859941,38.5867632],[22.2856846,38.586592],[22.285612,38.5862665],[22.2861178,38.5852737],[22.2861699,38.584878],[22.2860724,38.5846333],[22.2853963,38.5836141],[22.2853336,38.5834916],[22.28534,38.5832213],[22.2855218,38.5828185],[22.2854326,38.5827091],[22.285056,38.5826134],[22.2849899,38.5822565],[22.284619,38.5814401],[22.284507,38.5813213],[22.2845126,38.5811457],[22.2843651,38.5810714],[22.2838126,38.5811354],[22.2835499,38.5810775],[22.2826511,38.5807399],[22.2825246,38.5805083],[22.2824307,38.5801104],[22.2824867,38.5796877],[22.2828859,38.5793151],[22.2829828,38.5791003],[22.2829191,38.5788831],[22.2826629,38.5785549],[22.2823446,38.5784241],[22.2820181,38.578158],[22.2810231,38.5779992],[22.2804414,38.5781303],[22.2810866,38.5776847],[22.281252,38.5774889],[22.2816475,38.5763052],[22.2816182,38.5760886],[22.2814981,38.5759381],[22.2804293,38.5755079],[22.2797957,38.5751201],[22.2795543,38.5751346],[22.2794095,38.5749072],[22.279296,38.5748515],[22.2790106,38.5749193],[22.2788028,38.5749704],[22.278425,38.5749288],[22.2780279,38.5747337],[22.2778733,38.5744791],[22.2774808,38.5745724],[22.2772895,38.5745156],[22.2771778,38.5743878],[22.2767296,38.5744082],[22.2765048,38.5742066],[22.2761476,38.5742645],[22.2759205,38.574162],[22.2758564,38.5739628],[22.2759224,38.5736033],[22.2761981,38.5731118],[22.276123,38.5728944],[22.2759504,38.5727162],[22.275681,38.5724599],[22.2751488,38.5721547],[22.2750218,38.5721888],[22.274838,38.5726727],[22.274722,38.5727251],[22.2746196,38.5726875],[22.2744093,38.57236],[22.2741242,38.5722837],[22.274091,38.5717516],[22.2737406,38.5710436],[22.2736387,38.570988],[22.2733507,38.5710288],[22.2732024,38.5709906],[22.2727636,38.5706237],[22.2724968,38.5702593],[22.2721578,38.570038],[22.2715507,38.5695064],[22.2710753,38.569229],[22.2705672,38.5685322],[22.2702959,38.5678794],[22.2701755,38.5671567],[22.2698562,38.5665933],[22.2701177,38.5662187],[22.2696115,38.5653101],[22.2698295,38.5643582],[22.2697555,38.563911],[22.2697217,38.5634059],[22.2699172,38.5627645],[22.2702827,38.5618778],[22.2705379,38.5608093],[22.2705223,38.5605027],[22.270267,38.5596609],[22.2702943,38.5594811],[22.2703865,38.5594644],[22.2707235,38.5597667],[22.2715541,38.5600674],[22.2724899,38.5602884],[22.2734004,38.5606082],[22.2737913,38.560578],[22.2730516,38.5598372],[22.271993,38.5589925],[22.2718553,38.5580353],[22.2705626,38.5573854],[22.2702312,38.5573265],[22.2698456,38.556654],[22.2688437,38.5558462],[22.268433,38.5552634],[22.2682755,38.5551349],[22.2678313,38.5549932],[22.2677465,38.5547036],[22.2673854,38.5544459],[22.2673187,38.5538772],[22.2669449,38.5536734],[22.2668497,38.552861],[22.2665437,38.5522257],[22.2662179,38.5519325],[22.2659746,38.5515505],[22.2655325,38.5513277],[22.265224,38.551269],[22.264831,38.5513894],[22.2642107,38.5518938],[22.2640616,38.5518916],[22.2643507,38.5513192],[22.2643112,38.5511429],[22.2646461,38.5510577],[22.2654118,38.5507086],[22.2658328,38.5503814],[22.2658035,38.5502278],[22.2660184,38.5498796],[22.2659925,38.549762],[22.2661787,38.5497423],[22.266356,38.5495286],[22.2666339,38.5494246],[22.2668144,38.5490759],[22.2671189,38.548819],[22.2671918,38.5486489],[22.2671416,38.5483508],[22.2676764,38.5480614],[22.2679365,38.5477408],[22.2680362,38.5472602],[22.2679611,38.5471059],[22.2680323,38.5470078],[22.2680684,38.5468777],[22.269187,38.5466419],[22.2701345,38.5463676],[22.2706002,38.5460861],[22.2708675,38.5459459],[22.2713252,38.5455201],[22.2719975,38.5447551],[22.27274,38.5444146],[22.2730787,38.5441673],[22.2737495,38.5439429],[22.2741908,38.5437241],[22.2750377,38.5428535],[22.2764325,38.5420991],[22.277035,38.5418557],[22.2772694,38.5416023],[22.2779789,38.5411982],[22.2785,38.5409987],[22.2788391,38.5407333],[22.2793251,38.5405602],[22.2795812,38.5404018],[22.2803217,38.5401423],[22.2809542,38.5400795],[22.2815885,38.5399447],[22.2823761,38.5396318],[22.2827436,38.5396192],[22.2829368,38.5396941],[22.2833718,38.5397366],[22.283947,38.5396729],[22.2845048,38.5393747],[22.2849315,38.5392818],[22.2855984,38.5392195],[22.2864465,38.539259],[22.2875527,38.5390589],[22.2879065,38.5391361],[22.2883432,38.5391065],[22.2896845,38.5386665],[22.2905243,38.5380841],[22.2913476,38.5377176],[22.2914901,38.5375124],[22.2918159,38.5373189],[22.292039,38.5371059],[22.2923393,38.5370202],[22.2924773,38.5368105],[22.2925724,38.5368209],[22.2924773,38.5368105],[22.292809,38.5363647],[22.2928447,38.5358246],[22.2925071,38.5355493],[22.2923308,38.5352404],[22.2920469,38.5351191],[22.2919144,38.5349009],[22.2916888,38.5347354],[22.291025,38.5336985],[22.2901214,38.5330995],[22.2898233,38.5326086],[22.2889913,38.5318936],[22.288828,38.5315217],[22.2879381,38.5308329],[22.2870565,38.5297927],[22.2867409,38.5295538],[22.2865812,38.5295154],[22.2861629,38.529257],[22.2859506,38.5290196],[22.2856991,38.5289799],[22.2849583,38.5282932],[22.2844377,38.5279972],[22.2842424,38.5275257],[22.2840182,38.5273062],[22.2826681,38.5266736],[22.2816897,38.5265737],[22.2815033,38.5262105],[22.2807038,38.525586],[22.2799068,38.5248534],[22.2795772,38.5246773],[22.2791296,38.5246888],[22.2779858,38.5250324],[22.2775107,38.5252327],[22.2773153,38.5252478],[22.2766524,38.525148],[22.2760715,38.5249772],[22.2754112,38.5252468],[22.2751844,38.5251354],[22.275013,38.5246282],[22.2743757,38.523934],[22.2741477,38.5238765],[22.2738708,38.5239445],[22.2734035,38.5242981],[22.2731787,38.5245831],[22.2730407,38.5245991],[22.2729405,38.5244715],[22.2732849,38.523981],[22.2731834,38.5239074],[22.2727436,38.5240721],[22.2725171,38.5240552],[22.2720619,38.5239043],[22.2716947,38.5239079],[22.2701708,38.524318],[22.2697766,38.5244924],[22.2685631,38.5253485],[22.2683336,38.5253541],[22.2676313,38.5252671],[22.2673204,38.5253166],[22.2665113,38.5255254],[22.2658185,38.5258035]]},{"id":17882,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u03a3\u03ba\u03b1\u03bb\u03bf\u03cd\u03bb\u03b1-\u039a\u03b1\u03c1\u03bf\u03cd\u03c4\u03b5\u03c2","description_GR":"\u039f \u03c0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03bc\u03bf\u03c5\u03bb\u03b1\u03c1\u03cc\u03b4\u03c1\u03bf\u03bc\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03a3\u03ba\u03b1\u03bb\u03bf\u03cd\u03bb\u03b1 \u03c3\u03c4\u03b9\u03c2 \u039a\u03b1\u03c1\u03bf\u03cd\u03c4\u03b5\u03c2","path":"STEREA\/Sterea_Giona_Skaloula_Karoutes","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":5458,"name_EN":"Giona: Skaloula-Karoutes","description_EN":"The old mule track from Skaloula to Karoutes","ascent_time":110,"descent_time":95,"marker":"No_marks","level":9,"ascent":356,"descent":25,"maxelev":1021,"minelev":684,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.22551 38.50154,22.26645 38.5252)","views":23,"millestones":"0,22.2269928,38.5032484#1,22.2311367,38.5047638#2,22.2390992,38.5098470#3,22.2464637,38.5156534#4,22.2550820,38.5198109#5.5,22.2658182,38.5258035","x":22.2471103,"y":38.5162479,"coor":[[22.2269928,38.5032484],[22.226915,38.503103],[22.2269602,38.5030271],[22.2269298,38.5023959],[22.2266203,38.5020262],[22.2264907,38.5016999],[22.2260975,38.5013695],[22.2261164,38.5010634],[22.2263739,38.5009412],[22.2268967,38.5011293],[22.2276259,38.5017892],[22.2278309,38.5018463],[22.2284696,38.501901],[22.2289449,38.5016469],[22.2292883,38.5016701],[22.2295467,38.5018903],[22.2300206,38.503141],[22.2306571,38.5033759],[22.230904,38.5035959],[22.2312095,38.5051684],[22.2315733,38.5057687],[22.2325543,38.5064503],[22.2330591,38.5064399],[22.2332756,38.5064972],[22.2336425,38.5069713],[22.2342159,38.5074396],[22.2345497,38.5078591],[22.2349435,38.5081714],[22.2352045,38.5082835],[22.2354003,38.5082504],[22.2354545,38.5083774],[22.2357506,38.5084629],[22.2358965,38.5085913],[22.2363877,38.5086708],[22.2367493,38.5088925],[22.2370491,38.5088249],[22.237379,38.5094066],[22.2376268,38.5095905],[22.2386718,38.5095342],[22.2389216,38.5096371],[22.2389408,38.5097905],[22.2390312,38.509846],[22.2393637,38.509851],[22.2399453,38.5099859],[22.2406131,38.5098788],[22.2407612,38.509917],[22.2416639,38.5105253],[22.2422831,38.5114718],[22.2426549,38.5117477],[22.2430214,38.5122398],[22.2437504,38.5129175],[22.2441345,38.5131576],[22.2444192,38.513243],[22.2447232,38.5134728],[22.2449325,38.5138274],[22.2451136,38.5139292],[22.2457606,38.5146778],[22.2461148,38.5152058],[22.2462061,38.5152251],[22.2462894,38.5151002],[22.2464919,38.5157341],[22.2468439,38.5158835],[22.2469198,38.5160649],[22.2471103,38.5162479],[22.2473387,38.5162874],[22.2477112,38.5165363],[22.2480653,38.5165956],[22.2480411,38.5166493],[22.2481659,38.5167053],[22.2480345,38.5169196],[22.2483439,38.5169332],[22.2483821,38.5172492],[22.2488326,38.5175893],[22.2490327,38.5178536],[22.249509,38.518077],[22.2497868,38.5179731],[22.2501294,38.5180322],[22.2512316,38.5184632],[22.2515193,38.5184225],[22.2521235,38.5185757],[22.2525367,38.5185638],[22.2526496,38.5186376],[22.2532893,38.5187462],[22.2534751,38.5190689],[22.2538525,38.5192187],[22.2541542,38.5195476],[22.2545445,38.5195354],[22.2547353,38.5197095],[22.2550219,38.5197137],[22.2553312,38.520205],[22.2554997,38.5203516],[22.2559196,38.5205381],[22.2562288,38.5205607],[22.2571264,38.5204389],[22.2575683,38.5206618],[22.2575196,38.5207782],[22.2573688,38.5208481],[22.2575021,38.5210303],[22.2575819,38.5210495],[22.2578489,38.5209183],[22.2582141,38.5209958],[22.2583372,38.5211238],[22.2582171,38.5213473],[22.2584977,38.5216038],[22.2587408,38.5219858],[22.2591237,38.5222799],[22.2592663,38.5225524],[22.2596632,38.5227385],[22.2596474,38.5229185],[22.2602023,38.5232151],[22.260965,38.5234607],[22.2613148,38.5237002],[22.261588,38.5237853],[22.2624106,38.5244013],[22.2625263,38.5248355],[22.2627474,38.5251812],[22.262772,38.5253979],[22.2634122,38.5255335],[22.2636188,38.5255276],[22.2642406,38.5254287],[22.2649823,38.5251153],[22.265476,38.5250955],[22.265748,38.5250365],[22.265886,38.5251286],[22.2657521,38.5254511],[22.2658182,38.5258035]]},{"id":17997,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \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_Giona_Mushrooms_Vryzes_loop","activity_type":97,"assistance":2,"difficulty":1,"scenic_value":4,"length":4057,"name_EN":" Giona: A small mushroom paradise","description_EN":"","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":9,"ascent":126,"descent":126,"maxelev":1296,"minelev":1196,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.29914 38.69665,22.31428 38.70679)","views":7,"millestones":"0,22.3047543,38.7068690#1,22.2994297,38.7000796#2,22.3079390,38.6974475#3,22.3141014,38.7031260#4.1,22.3047543,38.7068690","x":22.3047741,"y":38.6980116,"coor":[[22.3047543,38.706869],[22.3044743,38.7067523],[22.3036327,38.7064923],[22.30338,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.3021789,38.6993256],[22.3024224,38.699239],[22.3024633,38.6989693],[22.3030308,38.6987973],[22.303342,38.6987657],[22.3037839,38.6985559],[22.303816,38.6985338],[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.3115465,38.6995063],[22.3118506,38.7002676],[22.3116876,38.7008419],[22.3120661,38.70137],[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.3117124,38.7060956],[22.3099879,38.7065663],[22.3087059,38.7068001],[22.3077849,38.7068408],[22.3068541,38.7068093],[22.3053265,38.7068052],[22.3047543,38.706869]]},{"id":18490,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u0397 \u03c7\u03bb\u03c9\u03c1\u03af\u03b4\u03b1 \u03c4\u03b7\u03c2 \u03a1\u03b5\u03ba\u03ac\u03c2","description_GR":"","path":"NATURE\/Nature_Giona_Flora_Reka_1","activity_type":96,"assistance":1,"difficulty":2,"scenic_value":4,"length":3207,"name_EN":"Giona: Flora of Reka gorge","description_EN":"","ascent_time":0,"descent_time":0,"marker":"Yellow_square","level":13,"ascent":39,"descent":390,"maxelev":1814,"minelev":1443,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.25879 38.62186,22.27099 38.63958)","views":11,"millestones":"0,22.2653674,38.6383580#1,22.2618620,38.6333863#2,22.2598136,38.6263616#3.2,22.2709865,38.6218611","x":22.2604277,"y":38.6323059,"coor":[[22.2653674,38.638358],[22.2650035,38.638677],[22.2646904,38.6387986],[22.2647342,38.6388893],[22.2644748,38.6391648],[22.2642357,38.6395487],[22.2639815,38.639608],[22.263788,38.6395331],[22.2635678,38.6396109],[22.2634636,38.6396454],[22.2634075,38.6395905],[22.2634782,38.6390419],[22.2636108,38.6387825],[22.2633415,38.6379495],[22.2632115,38.6376232],[22.2627745,38.6371662],[22.2625919,38.6361632],[22.2621636,38.6353459],[22.2621049,38.6349215],[22.2619422,38.6345226],[22.2620145,38.6339109],[22.262086,38.6338039],[22.2616833,38.6335321],[22.2617575,38.633416],[22.2619426,38.6333647],[22.2621404,38.6331108],[22.2618763,38.6331069],[22.2616369,38.6330313],[22.2612221,38.6330792],[22.2611227,38.6329155],[22.2609884,38.6328729],[22.2608792,38.632637],[22.2604277,38.6323059],[22.2602966,38.6320246],[22.259911,38.6318207],[22.259647,38.6318077],[22.2596724,38.631709],[22.2594651,38.6312553],[22.2597592,38.6309714],[22.2598452,38.6307384],[22.2597993,38.6304989],[22.2601205,38.6295665],[22.2601455,38.6290082],[22.2599471,38.6286629],[22.2592552,38.6278236],[22.2590919,38.6274517],[22.259085,38.6272623],[22.2592315,38.6269041],[22.2601953,38.6259993],[22.2606711,38.6253215],[22.2609771,38.6250197],[22.2615376,38.6246406],[22.2619549,38.6244846],[22.262414,38.6245004],[22.263099,38.6246728],[22.263432,38.6246777],[22.2641186,38.6243095],[22.2650455,38.6239808],[22.2664037,38.6233882],[22.2670337,38.622983],[22.267589,38.62282],[22.2683687,38.6223991],[22.2696357,38.6222556],[22.2709865,38.6218611]]},{"id":18491,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u0397 \u03c7\u03bb\u03c9\u03c1\u03af\u03b4\u03b1 \u03c4\u03b7\u03c2 \u0392\u03b1\u03b8\u03b5\u03b9\u03ac\u03c2 \u039b\u03ac\u03ba\u03ba\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03c2 \u03a0\u03c5\u03c1\u03b1\u03bc\u03af\u03b4\u03b1\u03c2","description_GR":"","path":"NATURE\/Nature_Giona_Flora_Pyramida","activity_type":96,"assistance":1,"difficulty":2,"scenic_value":4,"length":5039,"name_EN":"Giona: Flora of Vathia Laka and Pyramida peak","description_EN":"","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":13,"ascent":943,"descent":1,"maxelev":2486,"minelev":1533,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.25022 38.64513,22.27052 38.66527)","views":10,"millestones":"0,22.2700349,38.6651491#1,22.2653190,38.6621511#2,22.2588013,38.6566465#3,22.2609734,38.6501467#4,22.2569620,38.6459606#5,22.2523036,38.6471565","x":22.2590079,"y":38.6556682,"coor":[[22.2700349,38.6651491],[22.2699437,38.6653099],[22.269679,38.6655043],[22.2690645,38.6655492],[22.2690088,38.6654763],[22.2691553,38.6651181],[22.2689019,38.6651413],[22.2688687,38.6650868],[22.2689858,38.6649984],[22.2688696,38.6650508],[22.2688143,38.6649598],[22.2686743,38.6650479],[22.2686905,38.6648499],[22.2684237,38.664954],[22.2684514,38.6647562],[22.2686034,38.6646503],[22.2685813,38.664614],[22.2683856,38.6646291],[22.2685796,38.6642084],[22.2679752,38.6644878],[22.267768,38.6645028],[22.2677125,38.6644209],[22.267818,38.6643323],[22.2675776,38.6642927],[22.2675909,38.6642208],[22.2674645,38.664219],[22.2675126,38.6641296],[22.2673995,38.6640558],[22.267654,38.6639875],[22.2678074,38.6638186],[22.2675423,38.6638507],[22.2676134,38.6637616],[22.2673722,38.663758],[22.2674318,38.6636688],[22.2672824,38.6636666],[22.2672386,38.6635758],[22.2671003,38.6635918],[22.2670561,38.6635191],[22.266654,38.6635131],[22.2664995,38.6632495],[22.2666488,38.6632517],[22.266548,38.6631421],[22.2657079,38.6627151],[22.2654824,38.6625316],[22.2651471,38.6621391],[22.2653192,38.6621507],[22.2651623,38.6619862],[22.2647316,38.6617365],[22.2645484,38.6617067],[22.2643284,38.6617756],[22.264145,38.6617548],[22.2635945,38.661233],[22.2630916,38.6611174],[22.2627767,38.6608334],[22.262424,38.660684],[22.261883,38.6602434],[22.2617428,38.6598629],[22.2613464,38.6596227],[22.2612214,38.6593731],[22.2609151,38.6586882],[22.2608284,38.6584706],[22.2608441,38.6578221],[22.2607704,38.6576317],[22.2607301,38.6573969],[22.2601817,38.6569832],[22.2600072,38.6570707],[22.2598509,38.6573567],[22.2596931,38.6572282],[22.2595279,38.657406],[22.2593316,38.6572048],[22.2588101,38.6566744],[22.2586925,38.6563123],[22.2586066,38.6562569],[22.258645,38.6560322],[22.2590079,38.6556682],[22.259468,38.6555624],[22.2600771,38.6555624],[22.2603311,38.6555121],[22.260495,38.6553884],[22.2605249,38.6551005],[22.2607129,38.6549321],[22.2619598,38.6546308],[22.2620868,38.6543668],[22.2624781,38.653868],[22.2623356,38.653109],[22.2624457,38.6528313],[22.2625426,38.6524903],[22.2624289,38.6519209],[22.2619485,38.6513551],[22.2619635,38.6512112],[22.2617502,38.6510008],[22.2616432,38.6506748],[22.2613515,38.6503821],[22.2613775,38.6502563],[22.2609677,38.6501421],[22.2609579,38.6500699],[22.2610988,38.6499458],[22.2609062,38.6498348],[22.2608195,38.6496173],[22.260914,38.6495105],[22.2610632,38.6490442],[22.2614002,38.648887],[22.2619294,38.6488588],[22.2620959,38.648627],[22.262014,38.6482113],[22.2620709,38.6477616],[22.2622634,38.647404],[22.2622694,38.6471518],[22.262131,38.6466992],[22.2619609,38.6466967],[22.2607702,38.6469943],[22.2595604,38.6471295],[22.2593407,38.6471893],[22.259281,38.6472786],[22.2592139,38.6472055],[22.2590288,38.6472568],[22.2589391,38.6471653],[22.2587217,38.6471261],[22.258712,38.6470538],[22.2578566,38.6467888],[22.2571496,38.6460934],[22.2567316,38.6457988],[22.2559686,38.6455171],[22.2552541,38.645128],[22.2546853,38.6448943],[22.2545806,38.6449468],[22.2544777,38.6449272],[22.2544757,38.6450083],[22.2542592,38.644933],[22.2536372,38.6449958],[22.2536006,38.6450853],[22.2533011,38.6451169],[22.2532991,38.645198],[22.2530535,38.6453745],[22.2528698,38.6453718],[22.2529007,38.6455164],[22.2527965,38.6455509],[22.2523609,38.6455083],[22.2523362,38.6455801],[22.2521509,38.6456404],[22.2516605,38.6454889],[22.2513724,38.6455206],[22.2511343,38.6453909],[22.2508741,38.6454591],[22.2506992,38.6455646],[22.2508543,38.6458012],[22.2517013,38.6464086],[22.2519784,38.6468272],[22.2523036,38.6471565]]},{"id":18492,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u0392\u03c1\u03b1\u03c7\u03cc\u03b2\u03b9\u03b1 \u03c7\u03bb\u03c9\u03c1\u03af\u03b4\u03b1 \u03c4\u03b7\u03c2 \u0393\u03ba\u03b9\u03ce\u03bd\u03b1\u03c2","description_GR":"","path":"NATURE\/Nature_Giona_Flora_Chaliki","activity_type":96,"assistance":1,"difficulty":2,"scenic_value":4,"length":2448,"name_EN":"Giona: Rock flora of Mt Giona","description_EN":"","ascent_time":0,"descent_time":0,"marker":"No_marks","level":13,"ascent":345,"descent":59,"maxelev":1843,"minelev":1533,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.25281 38.65432,22.27029 38.66531)","views":11,"millestones":"0,22.2700349,38.6651491#1,22.2653190,38.6621511#2,22.2583829,38.6592701#2.4,22.2530781,38.6540614","x":22.2647316,"y":38.6617365,"coor":[[22.2700349,38.6651491],[22.2699437,38.6653099],[22.269679,38.6655043],[22.2690645,38.6655492],[22.2690088,38.6654763],[22.2691553,38.6651181],[22.2689019,38.6651413],[22.2688687,38.6650868],[22.2689858,38.6649984],[22.2688696,38.6650508],[22.2688143,38.6649598],[22.2686743,38.6650479],[22.2686905,38.6648499],[22.2684237,38.664954],[22.2684514,38.6647562],[22.2686034,38.6646503],[22.2685813,38.664614],[22.2683856,38.6646291],[22.2685796,38.6642084],[22.2679752,38.6644878],[22.267768,38.6645028],[22.2677125,38.6644209],[22.267818,38.6643323],[22.2675776,38.6642927],[22.2675909,38.6642208],[22.2674645,38.664219],[22.2675126,38.6641296],[22.2673995,38.6640558],[22.267654,38.6639875],[22.2678074,38.6638186],[22.2675423,38.6638507],[22.2676134,38.6637616],[22.2673722,38.663758],[22.2674318,38.6636688],[22.2672824,38.6636666],[22.2672386,38.6635758],[22.2671003,38.6635918],[22.2670561,38.6635191],[22.266654,38.6635131],[22.2664995,38.6632495],[22.2666488,38.6632517],[22.266548,38.6631421],[22.2657079,38.6627151],[22.2654824,38.6625316],[22.2651471,38.6621391],[22.2653192,38.6621507],[22.2651623,38.6619862],[22.2647316,38.6617365],[22.2645484,38.6617067],[22.2643284,38.6617756],[22.264145,38.6617548],[22.2635945,38.661233],[22.2630916,38.6611174],[22.2627767,38.6608334],[22.262424,38.660684],[22.261883,38.6602434],[22.2617428,38.6598629],[22.2613464,38.6596227],[22.261129,38.6593897],[22.2608445,38.659408],[22.2608348,38.6598674],[22.260716,38.6600278],[22.2603315,38.6602474],[22.2598687,38.6603757],[22.2593178,38.660818],[22.2592551,38.6610333],[22.2591463,38.6607794],[22.2587309,38.6603768],[22.2586667,38.6601776],[22.2584855,38.6600667],[22.2584573,38.6597509],[22.2583353,38.6589156],[22.2579458,38.658288],[22.2578588,38.6585571],[22.2573355,38.6588106],[22.2565432,38.6590646],[22.2564742,38.659023],[22.2564441,38.6588424],[22.2561476,38.6587478],[22.2558365,38.6587792],[22.2557366,38.6586336],[22.2559112,38.6585866],[22.2551593,38.6583772],[22.2544473,38.65788],[22.2542042,38.6574798],[22.2535356,38.6570914],[22.2533907,38.656909],[22.2532837,38.656583],[22.2535844,38.6560288],[22.2535097,38.6557934],[22.2536205,38.6554887],[22.253364,38.6542234],[22.2531835,38.6540855],[22.2530781,38.6540614]]},{"id":19320,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-\u0392\u03c1\u03af\u03b6\u03b5\u03c2","description_GR":"\u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-\u039a\u03b5\u03c6\u03b1\u03bb\u03cc\u03b2\u03c1\u03c5\u03c3\u03bf-\u0392\u03c1\u03af\u03b6\u03b5\u03c2","path":"STEREA\/Sterea_Giona_Kaloskopi_Vrizes","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":5572,"name_EN":"Giona: Kaloskopi-Vrizes","description_EN":"Kaloskopi-Kefalovryso-Vrizes","ascent_time":105,"descent_time":100,"marker":"Red_dots","level":9,"ascent":310,"descent":156,"maxelev":1296,"minelev":1039,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.29914 38.68888,22.32315 38.70679)","views":5,"millestones":"0,22.3228774,38.6888788#1,22.3206454,38.6962818#2,22.3160971,38.7012033#3,22.3116628,38.6997846#4,22.3043156,38.6981791#5,22.3005410,38.7038859#5.6,22.3047551,38.7068690","x":22.3101058,"y":38.6991611,"coor":[[22.3228774,38.6888788],[22.3227356,38.6891336],[22.3227431,38.6893049],[22.3226253,38.6894293],[22.322583,38.6897621],[22.322313,38.6900016],[22.3221701,38.6907024],[22.322258,38.6913254],[22.3222093,38.6914418],[22.3225395,38.6915772],[22.3226295,38.6916641],[22.3226394,38.6917769],[22.3224543,38.6918283],[22.3224519,38.6919274],[22.3225729,38.6921634],[22.3225789,38.6923978],[22.3227843,38.6929594],[22.3230087,38.6931969],[22.3230513,38.6933417],[22.3230343,38.6935757],[22.322859,38.6936994],[22.3229335,38.6939527],[22.3227523,38.6943286],[22.3229073,38.6945831],[22.322855,38.6948527],[22.3226186,38.6951287],[22.3218775,38.6953523],[22.3215251,38.6956716],[22.3212367,38.6957126],[22.3211871,38.695865],[22.320916,38.6961495],[22.3202064,38.6964997],[22.320082,38.6969034],[22.319628,38.6971402],[22.3192884,38.6974057],[22.3191058,38.6978356],[22.318731,38.6981275],[22.3186983,38.6985416],[22.3188649,38.6987963],[22.3188846,38.6988416],[22.3184909,38.6989621],[22.3195227,38.6988913],[22.319804,38.699017],[22.3192928,38.6992439],[22.3191596,38.6995304],[22.3187448,38.7000561],[22.3179173,38.7005307],[22.3173991,38.7005593],[22.3161137,38.7009463],[22.315788,38.7011038],[22.3157286,38.7011841],[22.3157738,38.7012208],[22.3165337,38.7011776],[22.3173135,38.70127],[22.3161332,38.7015864],[22.3155052,38.7018837],[22.314262,38.7034066],[22.3141113,38.7034585],[22.3141288,38.7032065],[22.3140316,38.7029348],[22.3131397,38.7017415],[22.3127659,38.7015018],[22.3120661,38.70137],[22.3116876,38.7008419],[22.3118506,38.7002676],[22.3115465,38.6995063],[22.3113189,38.6994039],[22.3108704,38.6994064],[22.3101058,38.6991611],[22.3100364,38.6991781],[22.3100572,38.6992685],[22.3097678,38.6993544],[22.3091909,38.6994362],[22.3090314,38.6993708],[22.3088871,38.6991525],[22.3084337,38.6988756],[22.3083723,38.6985503],[22.308205,38.6983316],[22.3082959,38.6978914],[22.3081292,38.6976457],[22.3081543,38.6975559],[22.3071651,38.6970821],[22.3070687,38.6967833],[22.3068788,38.6965463],[22.3063079,38.697349],[22.305915,38.6974334],[22.3056979,38.6973762],[22.3055131,38.6974096],[22.3049684,38.6975909],[22.304734,38.6977767],[22.3047745,38.6980116],[22.3043573,38.6981497],[22.3037843,38.6985559],[22.3033424,38.6987658],[22.3030311,38.6987973],[22.3024636,38.6989693],[22.3024228,38.699239],[22.3021792,38.6993256],[22.3016628,38.6997686],[22.3015904,38.6999117],[22.3013693,38.7000257],[22.3008952,38.7001359],[22.3004929,38.7001301],[22.3000761,38.7002502],[22.2996904,38.7000283],[22.2995759,38.7000086],[22.2994364,38.7000697],[22.2993057,38.700248],[22.299281,38.7008063],[22.2994738,38.7009172],[22.2995739,38.7010628],[22.2994772,38.7012597],[22.2995888,38.7014055],[22.2997495,38.7019034],[22.2998899,38.7027705],[22.3000334,38.7030249],[22.2999865,38.7030603],[22.3000185,38.7031689],[22.3001541,38.7032699],[22.3001626,38.7033962],[22.3002852,38.7035602],[22.3005134,38.7036356],[22.3005517,38.7039606],[22.3007158,38.7043144],[22.3012072,38.7046864],[22.3013259,38.7047738],[22.3013459,38.7049002],[22.3015631,38.7049574],[22.301641,38.7050667],[22.3020955,38.7052986],[22.3022011,38.7056966],[22.3024682,38.7060699],[22.303381,38.7064796],[22.3036337,38.7064923],[22.304475,38.7067523],[22.3047551,38.706869]]},{"id":19321,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-\u039a\u03bf\u03c4\u03c1\u03ce\u03bd\u03b9 (\u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae)","description_GR":"\u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-\u039c\u03ad\u03b3\u03b1 \u03a1\u03ad\u03bc\u03b1-\u039a\u03bf\u03c4\u03c1\u03ce\u03bd\u03b9","path":"STEREA\/Sterea_Giona_Kaloskopi_Kotroni","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":3,"length":6011,"name_EN":"Giona: Kaloskopi-Kotroni loop trail","description_EN":"Kaloskopi-Mega Rema-Kotroni","ascent_time":105,"descent_time":105,"marker":"Yellow_dots","level":9,"ascent":282,"descent":282,"maxelev":1061,"minelev":893,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.32066 38.67735,22.33327 38.68959)","views":2,"millestones":"0,22.3228774,38.6888788#1,22.3222419,38.6834675#2,22.3255477,38.6819808#3,22.3330845,38.6786495#4,22.3245552,38.6787785#5,22.3225073,38.6821923#6,22.3228774,38.6888788","x":22.3331915,"y":38.6788259,"coor":[[22.3228774,38.6888788],[22.323296,38.6886775],[22.3234195,38.6888055],[22.3233436,38.6889485],[22.3231563,38.68909],[22.3231262,38.689396],[22.3232294,38.6893614],[22.3233487,38.6893766],[22.3234325,38.6895265],[22.3234302,38.6896256],[22.3237651,38.6895583],[22.3239286,38.6894525],[22.3243011,38.6886694],[22.3244322,38.6884731],[22.3243415,38.6879221],[22.3241726,38.687771],[22.3240706,38.6877065],[22.3235714,38.6873749],[22.3233057,38.6872765],[22.3232967,38.6871682],[22.3235423,38.6869915],[22.3236027,38.6868662],[22.3233792,38.6865927],[22.3235238,38.6863064],[22.3231545,38.685382],[22.3228409,38.6851793],[22.3228172,38.6847194],[22.3225972,38.6842927],[22.3224284,38.6841371],[22.3224113,38.6838845],[22.3222122,38.6835483],[22.3224206,38.6829926],[22.3222328,38.6826655],[22.3229391,38.6814682],[22.3229767,38.6813335],[22.3228973,38.6812243],[22.3233219,38.6813205],[22.3234905,38.6814851],[22.3233135,38.6816808],[22.3229268,38.6824862],[22.322966,38.6827751],[22.3228571,38.6830079],[22.3228487,38.6833682],[22.3229275,38.6834414],[22.3232882,38.6834421],[22.3239635,38.6835689],[22.3242303,38.6834646],[22.3247241,38.6834897],[22.3251178,38.6833692],[22.3256477,38.6833227],[22.3261337,38.6831404],[22.3262052,38.6830333],[22.3260527,38.6826707],[22.3256634,38.6821064],[22.3255627,38.6819879],[22.3252899,38.6818578],[22.3254328,38.6816436],[22.3254748,38.6813198],[22.3257898,38.6811261],[22.3262981,38.6810162],[22.3267526,38.6807524],[22.3269837,38.6807016],[22.3269415,38.6805388],[22.3269917,38.6803593],[22.3270655,38.6802612],[22.3272612,38.680246],[22.3274017,38.6801399],[22.3275329,38.6799345],[22.3277393,38.6799555],[22.3277755,38.6798839],[22.3282034,38.6797729],[22.3284372,38.679605],[22.3286785,38.6796085],[22.328786,38.6794388],[22.3289345,38.679477],[22.3293142,38.6794644],[22.3295942,38.6792882],[22.330123,38.6797823],[22.3306524,38.6797538],[22.331083,38.6800213],[22.3312899,38.6800242],[22.3317556,38.6797696],[22.3319959,38.6793225],[22.3322772,38.6790922],[22.3331915,38.6788259],[22.3332356,38.6787049],[22.3327657,38.678536],[22.3320254,38.6787327],[22.331739,38.6786925],[22.3313081,38.6784341],[22.331006,38.6780783],[22.3305752,38.6778199],[22.3303211,38.6778703],[22.3297965,38.6781872],[22.3293717,38.6781631],[22.3289741,38.6779592],[22.3284151,38.6772844],[22.3282065,38.6773535],[22.3279884,38.6773414],[22.3276052,38.6780027],[22.3273826,38.6781797],[22.327023,38.6783188],[22.3269292,38.6788941],[22.3267743,38.6791262],[22.3266467,38.6791784],[22.3257622,38.6791478],[22.3253243,38.6791956],[22.3250955,38.6791472],[22.3244731,38.6787238],[22.324244,38.6781979],[22.3240965,38.6781147],[22.3238887,38.6786433],[22.3235636,38.6787829],[22.3232295,38.6788141],[22.3227953,38.6786997],[22.322275,38.6788274],[22.3218992,38.6786779],[22.3217836,38.6787033],[22.3217696,38.6788112],[22.3219591,38.6790662],[22.3219311,38.6792821],[22.3215507,38.6795244],[22.3208808,38.6799518],[22.320891,38.680006],[22.3211426,38.6800637],[22.3212324,38.6801551],[22.321178,38.6805148],[22.3214526,38.6805728],[22.3215539,38.6806643],[22.3214945,38.6812402],[22.3216556,38.6812335],[22.3218562,38.6810111],[22.3222988,38.6807651],[22.3224473,38.6808033],[22.3226819,38.681095],[22.3228973,38.6812243],[22.3229767,38.6813335],[22.3229391,38.6814682],[22.3222328,38.6826655],[22.3224206,38.6829926],[22.3222122,38.6835483],[22.3224113,38.6838845],[22.3224284,38.6841371],[22.3225972,38.6842927],[22.3228172,38.6847194],[22.3228409,38.6851793],[22.3231545,38.685382],[22.3235238,38.6863064],[22.3233792,38.6865927],[22.3236027,38.6868662],[22.3235423,38.6869915],[22.3232967,38.6871682],[22.3233057,38.6872765],[22.3232844,38.6874519],[22.3231997,38.6875408],[22.323308,38.6876234],[22.3235007,38.6877433],[22.3236934,38.6879984],[22.3240651,38.6883281],[22.3239851,38.6884621],[22.3238693,38.6884965],[22.3238794,38.6885597],[22.3235088,38.6886716],[22.3234957,38.6887435],[22.3234363,38.6889183],[22.3233436,38.6889485],[22.3234195,38.6888055],[22.323296,38.6886775],[22.3228774,38.6888788]]},{"id":19322,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0393\u03ba\u03b9\u03ce\u03bd\u03b1\u03c2 \u03b1\u03c0\u03cc \u03a6\u03c4\u03b5\u03c1\u03cc\u03bb\u03b1\u03ba\u03ba\u03b1","description_GR":"\u039c\u03bd\u03ae\u03bc\u03b1\u03c4\u03b1-\u03a6\u03c4\u03b5\u03c1\u03cc\u03bb\u03b1\u03ba\u03ba\u03b1-\u039a\u03b1\u03ba\u03b9\u03ac \u03a3\u03ba\u03ac\u03bb\u03b1-\u0394\u03bf\u03ba\u03af\u03bc\u03b9-\u039a\u03b1\u03c1\u03b2\u03bf\u03cd\u03bd\u03b7","path":"STEREA\/Sterea_Giona_Mnimata_Karvouni","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11454,"name_EN":"Giona: Kaloskopi-Giona refuge via Fterolaka","description_EN":"Mnimata-Fterolaka-Kakia Skala-Dokimi-Karvouni","ascent_time":290,"descent_time":260,"marker":"Red_dots","level":9,"ascent":1072,"descent":382,"maxelev":2015,"minelev":1056,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.2602 38.63401,22.32416 38.69461)","views":15,"millestones":"0,22.3228774,38.6888788#1,22.3191779,38.6945283#2,22.3190232,38.6892744#3,22.3121723,38.6827112#4,22.3051131,38.6784290#5,22.3015284,38.6704526#6,22.2934537,38.6657028#7,22.2868515,38.6590494#8,22.2797124,38.6547125#9,22.2749378,38.6476726#10,22.2699879,38.6399634#11,22.2621476,38.6352490#11.5,22.2621372,38.6331108","x":22.2963183,"y":38.6674903,"coor":[[22.3228774,38.6888788],[22.3227356,38.6891336],[22.3227431,38.6893049],[22.3226253,38.6894293],[22.322583,38.6897621],[22.322313,38.6900016],[22.3221701,38.6907024],[22.322258,38.6913254],[22.3217155,38.6911689],[22.3215846,38.6910679],[22.3215692,38.6910316],[22.3212743,38.6909688],[22.3208729,38.690927],[22.3205821,38.691067],[22.3204975,38.691246],[22.3206387,38.6915995],[22.3206217,38.6918335],[22.3204909,38.6920209],[22.3202236,38.6921432],[22.3201757,38.6922236],[22.3203167,38.6925861],[22.3205998,38.6927704],[22.3207991,38.6930976],[22.3210799,38.693381],[22.3210659,38.6934889],[22.3207914,38.6939175],[22.3204988,38.6941386],[22.320019,38.6940055],[22.3195576,38.694071],[22.3192839,38.6944635],[22.3188523,38.6947276],[22.3184923,38.6953713],[22.3182143,38.6954574],[22.3178975,38.6953762],[22.3181916,38.6953399],[22.3184014,38.6952168],[22.3186897,38.6946893],[22.3191,38.6943527],[22.3193158,38.6939774],[22.3196788,38.6936943],[22.3197292,38.6935058],[22.319519,38.6927728],[22.3191962,38.6923177],[22.3191007,38.6919739],[22.3187844,38.691735],[22.3183514,38.6915666],[22.3182846,38.6914755],[22.3185569,38.6906505],[22.3182822,38.6901058],[22.3182521,38.6899162],[22.3185926,38.6896147],[22.3190114,38.6894045],[22.3190275,38.6892065],[22.3182489,38.6885825],[22.317953,38.6884521],[22.3170042,38.6877266],[22.3167941,38.6873721],[22.3168404,38.6868682],[22.3165283,38.6864492],[22.3158315,38.686259],[22.3151533,38.6857626],[22.3149854,38.6855709],[22.3149249,38.6852096],[22.3146464,38.6848272],[22.313887,38.6843657],[22.3131357,38.6840485],[22.3130803,38.6839575],[22.3131326,38.683688],[22.3130215,38.6835242],[22.3124571,38.6830835],[22.312089,38.6826006],[22.3118962,38.6824897],[22.3115864,38.6824672],[22.3108311,38.6825013],[22.3101116,38.6827883],[22.3092816,38.6828844],[22.3086736,38.6828306],[22.3083999,38.6827365],[22.3082995,38.6826089],[22.3082584,38.6824011],[22.3083162,38.6814107],[22.3084189,38.6809526],[22.307627,38.6804095],[22.3072971,38.679774],[22.3070128,38.6796437],[22.3070936,38.6791403],[22.3069115,38.6790656],[22.3063611,38.6790035],[22.3055163,38.678757],[22.3045987,38.6780003],[22.3046481,38.6778568],[22.3045987,38.6765405],[22.3045142,38.6762239],[22.304009,38.6752254],[22.3040017,38.6750451],[22.3034382,38.6745683],[22.3031833,38.6741681],[22.3030363,38.6735803],[22.3025102,38.6729779],[22.3025945,38.672817],[22.3025771,38.6720958],[22.3027341,38.6717737],[22.3026332,38.6716641],[22.3025383,38.6713023],[22.3018012,38.6708771],[22.3016549,38.6707488],[22.3016131,38.670568],[22.3013793,38.6702492],[22.3008342,38.669971],[22.3005103,38.6695698],[22.299735,38.6693062],[22.2995554,38.6691234],[22.2989773,38.6687816],[22.298496,38.6687205],[22.2981794,38.6684996],[22.2975806,38.668545],[22.2971691,38.6684489],[22.2970121,38.6682844],[22.2969147,38.6680307],[22.29678,38.6678935],[22.2964166,38.667708],[22.2963183,38.6674903],[22.2959898,38.6672873],[22.2957383,38.6672296],[22.2955126,38.6670551],[22.2954382,38.6663151],[22.2952591,38.6661143],[22.2949872,38.6659481],[22.2947916,38.6659543],[22.2945176,38.6658782],[22.2940408,38.6661145],[22.2938216,38.6661474],[22.2936735,38.6660911],[22.2933978,38.6656005],[22.2934062,38.6652492],[22.2931679,38.6651196],[22.2929382,38.6646296],[22.2927369,38.6643924],[22.2919566,38.6638584],[22.2913735,38.6632461],[22.2899175,38.6626121],[22.2895559,38.6623545],[22.2890197,38.6621845],[22.2885807,38.6617996],[22.2879999,38.6615748],[22.2880387,38.6613952],[22.2878047,38.6610854],[22.2876435,38.6606144],[22.2869944,38.6598841],[22.2868871,38.6590805],[22.2866956,38.6589155],[22.2865463,38.6584312],[22.2862849,38.6583103],[22.2861308,38.6582044],[22.2857015,38.6579999],[22.2855228,38.657781],[22.2852835,38.6576964],[22.2849958,38.6577147],[22.2849243,38.6578218],[22.2849807,38.6583452],[22.2848464,38.6584379],[22.2847032,38.6583727],[22.2844339,38.6580984],[22.2840145,38.657858],[22.2839481,38.6577489],[22.2830689,38.6576008],[22.2826813,38.657469],[22.2821736,38.657074],[22.2813866,38.6568282],[22.2801304,38.6560168],[22.2800105,38.6557447],[22.2797837,38.6556152],[22.2796842,38.6554515],[22.2796554,38.6552168],[22.2798545,38.6550575],[22.2797361,38.6547224],[22.2793265,38.6545542],[22.2791487,38.6542992],[22.2790088,38.6539007],[22.2785328,38.6536234],[22.2783581,38.6532423],[22.2782428,38.6532587],[22.2780704,38.6532606],[22.277721,38.6529761],[22.2777253,38.652796],[22.2773578,38.6518264],[22.2771978,38.651788],[22.277109,38.6516605],[22.2767648,38.6516375],[22.2763798,38.6513975],[22.2760959,38.6513483],[22.2761007,38.6511501],[22.2758383,38.6509795],[22.2757529,38.6507079],[22.2753148,38.650287],[22.2751945,38.6500329],[22.2753133,38.6498724],[22.2753585,38.6494226],[22.2746786,38.6485475],[22.2750283,38.6473812],[22.2745909,38.6469332],[22.2743026,38.6464964],[22.2743505,38.6459385],[22.273795,38.6446687],[22.2732235,38.6440656],[22.2729578,38.6436472],[22.2725525,38.6432988],[22.2724578,38.6429369],[22.2720577,38.6423723],[22.2710188,38.6416181],[22.2707236,38.6414695],[22.2706699,38.640838],[22.2702144,38.6401915],[22.2699114,38.6398896],[22.269278,38.6394748],[22.2684834,38.6390755],[22.268203,38.638792],[22.2678903,38.6388955],[22.2675227,38.6388901],[22.2673184,38.638788],[22.2668473,38.63879],[22.2664334,38.6383243],[22.266067,38.6382738],[22.2658356,38.6383425],[22.2655662,38.638361],[22.2653607,38.6383534],[22.2649344,38.6384012],[22.2638811,38.6382504],[22.2637697,38.6381046],[22.2633383,38.6379495],[22.2632083,38.6376232],[22.2627713,38.6371661],[22.2625887,38.6361632],[22.2621604,38.6353458],[22.2621017,38.6349215],[22.261939,38.6345226],[22.2620112,38.6339109],[22.2620827,38.6338038],[22.2616758,38.6335274],[22.2617543,38.633416],[22.2619393,38.6333647],[22.2621372,38.6331108]]},{"id":19323,"author":"AnaDigit","name_GR":"\u0393\u03ba\u03b9\u03ce\u03bd\u03b1: \u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae-\u039a\u03b5\u03c6\u03b1\u03bb\u03cc\u03b2\u03c1\u03c5\u03c3\u03bf","description_GR":"\u039a\u03b1\u03bb\u03bf\u03c3\u03ba\u03bf\u03c0\u03ae, \u039a\u03c1\u03b5\u03b2\u03b2\u03b1\u03c4\u03ac, \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae-\u039a\u03b5\u03c6\u03b1\u03bb\u03cc\u03b2\u03c1\u03c5\u03c3\u03bf","path":"STEREA\/Sterea_Giona_Kaloskopi_Kefalovryso","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":3,"length":4714,"name_EN":"Giona: Kaloskopi-Kefalovryso","description_EN":"Kaloskopi-Krevata-Agia Paraskevi-Kefalovryso","ascent_time":85,"descent_time":85,"marker":"Green_dots","level":9,"ascent":167,"descent":167,"maxelev":1090,"minelev":969,"link_logo":"giona_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.giona","pdf_link":"","bbox":"LINESTRING(22.31846 38.68877,22.32956 38.70022)","views":2,"millestones":"0,22.3228792,38.6888788#1,22.3262246,38.6952464#2,22.3282602,38.6987967#3,22.3217721,38.6985052#4,22.3228186,38.6944369#4.7,22.3228781,38.6888788","x":22.3283891,"y":38.6992392,"coor":[[22.3228792,38.6888788],[22.3232956,38.6886775],[22.3234191,38.6888055],[22.3233432,38.6889485],[22.323156,38.68909],[22.3231258,38.689396],[22.3232301,38.6893614],[22.3233483,38.6893766],[22.3234254,38.6895219],[22.3234344,38.6896302],[22.3236818,38.6904042],[22.3235601,38.6906908],[22.3235041,38.6911225],[22.3239423,38.6918496],[22.3240426,38.6919412],[22.3243153,38.6920803],[22.3248559,38.69207],[22.3250568,38.6921314],[22.3253659,38.6921899],[22.3256477,38.6924282],[22.3259128,38.6928015],[22.3262799,38.6933294],[22.3264948,38.6935758],[22.3268586,38.6937522],[22.3269255,38.6938432],[22.3267771,38.6942917],[22.3265516,38.6945948],[22.3263526,38.6947451],[22.3263535,38.6948127],[22.3264592,38.6949674],[22.3264418,38.6952195],[22.3262345,38.6952345],[22.3260806,38.6954216],[22.3258507,38.6954183],[22.3258031,38.6954897],[22.3259726,38.6956183],[22.3262467,38.6956943],[22.3264009,38.6959848],[22.3266751,38.6960608],[22.3269434,38.6963891],[22.3273249,38.6963044],[22.3278273,38.6964558],[22.3281828,38.6964969],[22.3283514,38.6966615],[22.3282519,38.6969845],[22.3282964,38.6970482],[22.3291445,38.6971685],[22.3292145,38.6971244],[22.3293555,38.6974869],[22.3293271,38.6977207],[22.3293472,38.6978472],[22.3293271,38.6977207],[22.3288802,38.697408],[22.327932,38.6971421],[22.3277655,38.6968874],[22.3275015,38.6968656],[22.3273393,38.6969174],[22.3273786,38.6972063],[22.3278816,38.6978262],[22.3279213,38.6980971],[22.3281892,38.6984434],[22.328261,38.6988138],[22.3283743,38.6988876],[22.3287639,38.6989472],[22.328808,38.6990289],[22.3286088,38.6991883],[22.3283891,38.6992392],[22.3277956,38.6990505],[22.3280081,38.6993058],[22.3281017,38.6997307],[22.3277424,38.6998517],[22.3275407,38.7001191],[22.3272623,38.7002233],[22.3271789,38.7003482],[22.3271244,38.7002213],[22.3272916,38.6999534],[22.3273111,38.6996112],[22.3272225,38.6994658],[22.3269499,38.6993177],[22.3267427,38.6988372],[22.325901,38.6989333],[22.3249541,38.6986133],[22.3246301,38.6986988],[22.3240243,38.6985459],[22.3237212,38.6987218],[22.3235713,38.6987377],[22.3225086,38.6984521],[22.3221753,38.6984473],[22.3220552,38.6985132],[22.3212889,38.6984887],[22.3203883,38.6986469],[22.3195203,38.6988868],[22.3184927,38.6989621],[22.3188864,38.6988416],[22.3188643,38.6988053],[22.3187005,38.6985416],[22.3187332,38.6981276],[22.319108,38.6978356],[22.3192905,38.6974057],[22.3196302,38.6971402],[22.3200842,38.6969035],[22.3202086,38.6964998],[22.3209182,38.6961495],[22.3211893,38.6958651],[22.3212388,38.6957126],[22.3215273,38.6956717],[22.3218797,38.6953523],[22.3226208,38.6951287],[22.3228572,38.6948527],[22.3229095,38.6945832],[22.3227544,38.6943286],[22.3229357,38.6939528],[22.3228611,38.6936994],[22.3230365,38.6935758],[22.3230534,38.6933417],[22.3230108,38.6931969],[22.3227864,38.6929594],[22.3225811,38.6923978],[22.3225751,38.6921634],[22.3224541,38.6919274],[22.3224564,38.6918283],[22.3226416,38.6917769],[22.3226441,38.6916688],[22.3225402,38.6915772],[22.32221,38.6914418],[22.3222587,38.6913254],[22.3221712,38.6907024],[22.3223141,38.6900016],[22.3225841,38.6897622],[22.3226263,38.6894294],[22.3227442,38.6893049],[22.3227367,38.6891336],[22.3228781,38.6888788]]}],{"extent":[22.1758,38.50154,22.38806,38.70965],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=en&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":false},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":false},"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":false},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":false},"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":false},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":false},"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":false},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":false},"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":false},"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":false},"ISLANDS\/Islands_Kefalonia_Foukalida":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Damoulianata_AgThekli":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Vilatoria_Petani":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"Car_touring\/CAR_Kefalonia_Gerogombos":{"url":null,"color":"#f029e0","width":6,"exclude":false,"useStyle":false},"Geology\/GEO_Kefalonia_4_karst_formations":{"url":null,"color":"#fff741","width":6,"exclude":false,"useStyle":false},"Islands\/Islands_Kefalonia_Ainos":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"Islands\/Islands_Kefalonia_Anavasi_AgDinati":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"Islands\/Islands_Kefalonia_Fiskardo_Battery":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"Islands\/Islands_Kefalonia_Gyro_apo_Zoodocho_Pigi":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"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":false},"SUV_4x4\/SUV_Kefalonia_Livadi-AgEleni_beach":{"url":null,"color":"#f72fff","width":6,"exclude":false,"useStyle":false},"GEOLOGY\/GEO_Kefalonia_Mntzavinata_formations":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Antisamos_Fanentes":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":false},"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":false},"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":false},"MTB_ROADBIKE\/MTB_Kalymnos_Vathys_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Palionisos":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Eborios":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_1":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":false},"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":false},"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":false},"ISLANDS\/Islands_Kalymnos_Trail_5":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":false},"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":false},"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":false},"Thessalia\/Thessaly_Olymbos_E4_Kokkinoplos_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_E4_Litochoro_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_O2_Karya_Skolio":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_O2_Krania_Rapsani":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_O2_Rapsani_Tembi":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_Dion_Petrostrouga":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":false},"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":false},"Thessalia\/Thessaly_Olymbos_Vrondou_Barbalas":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Giona_Ascent_Pyramida":{"url":null,"color":"#0f4a96","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Giona_Sykia_Pyramida":{"url":null,"color":"#960f65","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Giona_Viniani_Reka_Giona_ref":{"url":null,"color":"#f7f70d","width":6,"exclude":false,"useStyle":false},"STEREA\/Sterea_E4_Kaloskopi_51":{"url":null,"color":"#0f962a","width":6,"exclude":false,"useStyle":false},"STEREA\/Sterea_E4_Stromi_Kaloskopi":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false}}}); 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_giona = new getPoiCollection("giona",[{"name":"OETA
Agia Triada","owner":"AnaDigit","x":22.329268,"y":38.71148,"photo":"K3II32831","type":9,"zoom_level":15,"id":4082,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"OETA
WWII War memorial","owner":"AnaDigit","x":22.329673,"y":38.708817,"photo":"K3II32872","type":9,"zoom_level":15,"id":4083,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"OETA
Dhimakis limekiln","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":"OETA
Pavliani Trails signposting","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":"OETA
Signposting on Mt. Oeta","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":"OETA
Signposting on Mt. Oeta","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":"OETA
Signposting on Mt. Oeta","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":"OETA
Signposting on Mt. Oeta","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":"OETA
Signposting on Mt. Oeta","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":"OETA
Signposting on Mt. Oeta","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":"OETA
Signposting in Vrizes","owner":"AnaDigit","x":22.301222,"y":38.700142,"photo":"K1TA73301","type":450,"zoom_level":17,"id":4456,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":549},{"name":"OETA
Signposting in Vrizes","owner":"AnaDigit","x":22.30474,"y":38.697743,"photo":"K1TA73391","type":450,"zoom_level":17,"id":4457,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":526},{"name":"OETA
Signposting in Vrizes","owner":"AnaDigit","x":22.311428,"y":38.699258,"photo":"K1TA73691","type":450,"zoom_level":17,"id":4458,"hlink_GR":"","hlink_EN":"","description":"","height":521,"width":800},{"name":"OETA
Signposting in Vrizes","owner":"AnaDigit","x":22.308113,"y":38.711673,"photo":"K1TA74561","type":450,"zoom_level":16,"id":4459,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":534},{"name":"OETA
Signposting in Vrizes","owner":"AnaDigit","x":22.307962,"y":38.712003,"photo":"K1TA74571","type":450,"zoom_level":17,"id":4460,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":800},{"name":"OETA
Signposting in Vrizes","owner":"AnaDigit","x":22.309085,"y":38.715922,"photo":"K1TA74701","type":450,"zoom_level":17,"id":4461,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":800},{"name":"GIONA
The gate to Reka gorge","owner":"AnaDigit","x":22.35063,"y":38.601195,"photo":"giona_11","type":450,"zoom_level":16,"id":4477,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":800},{"name":"GIONA
Waymarking in Viniani","owner":"AnaDigit","x":22.353933,"y":38.59855,"photo":"giona_21","type":450,"zoom_level":17,"id":4478,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":534},{"name":"GIONA
Waymarking in Viniani","owner":"AnaDigit","x":22.355603,"y":38.597052,"photo":"giona_31","type":450,"zoom_level":16,"id":4479,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":800},{"name":"GIONA
On the trail","owner":"AnaDigit","x":22.326072,"y":38.589495,"photo":"giona_41","type":9,"zoom_level":17,"id":4480,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":800},{"name":"GIONA
On the trail","owner":"AnaDigit","x":22.338873,"y":38.577992,"photo":"giona_51","type":0,"zoom_level":16,"id":4481,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":643},{"name":"GIONA
Shepherds facility in Romeiko","owner":"AnaDigit","x":22.271032,"y":38.589453,"photo":"K3II29821","type":0,"zoom_level":15,"id":4482,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":597}],{});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="
E4 Kaloskopi-51 Pass
E4 Stromi-Kaloskopi
Kaloskopi-Giona refuge via Kritharolaka
Sykia-Pyramida
The Reka gorge
E4 Athanasios Diakos-Stromi
Ascent to Pyramida
Giona mountain refuge-Pyramida
Karagianis Way
Bekos Way
Zervas Way
Ascent to Pyrgos peak
Sykia-Pyramida via the Isoma
Viniani-Karoutes
Skaloula-Karoutes
A small mushroom paradise
Flora of Reka gorge
Flora of Vathia Laka and Pyramida peak
Rock flora of Mt Giona
Kaloskopi-Vrizes
Kaloskopi-Kotroni loop trail
Kaloskopi-Giona refuge via Fterolaka
Kaloskopi-Kefalovryso
";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["giona"],pc:["giona"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo_en/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_giona.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); }