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_ziria = new getAdventureCollection("ziria",[{"id":17796,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u03a7\u03b1\u03c1\u03ac\u03b4\u03c1\u03b1 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03af\u03c4\u03c3\u03b1\u03c2","description_GR":"\u0397 \u03c9\u03c1\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03c7\u03b1\u03c1\u03ac\u03b4\u03c1\u03b1 \u03c4\u03b7\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Ziria_Flabouritsa","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":9431,"name_EN":"Ziria Mt.: The Flabouritsa ravine","description_EN":"A trail across an unpoiled mountain landscape","ascent_time":185,"descent_time":175,"marker":"Red_dots","level":10,"ascent":505,"descent":257,"maxelev":1433,"minelev":1130,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.42821 37.91772,22.46485 37.9818)","views":75,"millestones":"0,22.4635191,37.9817804#1,22.4557550,37.9775189#2,22.4581422,37.9740744#3,22.4522311,37.9679887#4,22.4485841,37.9598897#5,22.4440322,37.9520696#6,22.4407311,37.9443146#7,22.4379386,37.9361118#8,22.4335625,37.9282140#9,22.4300558,37.9202604#9.4,22.4301542,37.9172637","x":22.4448893,"y":37.9544722,"coor":[[22.4635191,37.9817804],[22.4633939,37.9817787],[22.4628995,37.9820066],[22.4622778,37.9821156],[22.4621729,37.9822314],[22.4620017,37.9822472],[22.4614651,37.9817715],[22.4606789,37.9812566],[22.4602925,37.9808955],[22.4601825,37.9806102],[22.4600869,37.9802845],[22.4598156,37.9799656],[22.4595855,37.9797598],[22.4591688,37.979538],[22.4584105,37.9793208],[22.4580197,37.9789552],[22.45771,37.9786222],[22.4576132,37.9783506],[22.4574345,37.978186],[22.4572918,37.9779318],[22.4573908,37.9775546],[22.4573358,37.9774637],[22.4570751,37.9774062],[22.4566409,37.9774817],[22.455958,37.9774727],[22.4556948,37.9775323],[22.4554342,37.9774748],[22.4552397,37.9775173],[22.4548918,37.9774497],[22.4547323,37.9773349],[22.4539721,37.9772078],[22.4532938,37.9769826],[22.4530695,37.9768174],[22.4530925,37.9765879],[22.4528425,37.9765666],[22.453009,37.9764471],[22.453026,37.976177],[22.4533646,37.9757759],[22.4535158,37.9756247],[22.4539187,37.9754137],[22.4539676,37.9752521],[22.4542894,37.9751121],[22.4545117,37.9748267],[22.4545262,37.9746737],[22.454658,37.9745312],[22.4549045,37.9736332],[22.4551242,37.9734739],[22.455408,37.9735137],[22.4571282,37.9740049],[22.458797,37.9741124],[22.4588554,37.974041],[22.4588361,37.9739957],[22.4581154,37.9732248],[22.4577971,37.9732026],[22.4571316,37.9729054],[22.4565437,37.9721678],[22.4560471,37.971963],[22.4558164,37.9715634],[22.4551293,37.9712119],[22.4546467,37.9708811],[22.4527992,37.9694059],[22.4526885,37.9692603],[22.4527412,37.9689185],[22.4526918,37.9685574],[22.4523356,37.9681742],[22.4519957,37.9675569],[22.4519541,37.9673671],[22.4520812,37.9667379],[22.4517209,37.965904],[22.451329,37.9655925],[22.4512946,37.9650603],[22.4511171,37.9648417],[22.4509202,37.9644606],[22.4508908,37.9642349],[22.4501973,37.9631082],[22.4498652,37.9615808],[22.4493707,37.9611102],[22.4489506,37.96101],[22.4488049,37.9609],[22.4486974,37.9606011],[22.4487156,37.9602769],[22.4483294,37.9591543],[22.4478963,37.9581528],[22.4473603,37.9576591],[22.4473903,37.957317],[22.4468202,37.9562821],[22.4466372,37.955784],[22.44638,37.9555643],[22.4457582,37.9553669],[22.44549,37.955129],[22.4452249,37.954747],[22.4448893,37.9544722],[22.4449873,37.95414],[22.4447452,37.9537493],[22.4446661,37.9531805],[22.4443741,37.9524557],[22.4438849,37.9519085],[22.4438194,37.9513534],[22.4436606,37.9510088],[22.4440645,37.9502031],[22.4440319,37.9495898],[22.4435613,37.9492411],[22.4434853,37.9490689],[22.4432164,37.9488671],[22.4431068,37.9486673],[22.4422636,37.9481785],[22.4418836,37.9478491],[22.441488,37.9477177],[22.4412197,37.9474888],[22.4412031,37.9466595],[22.4411157,37.9464871],[22.4412199,37.9453259],[22.4411242,37.9450092],[22.4408906,37.9447538],[22.4406866,37.9441743],[22.4402759,37.9436822],[22.4401933,37.9432846],[22.4403109,37.9431059],[22.4403745,37.9422506],[22.4398747,37.9416672],[22.4398008,37.9413958],[22.4395164,37.9408513],[22.4394996,37.9401346],[22.4396004,37.9397755],[22.4395143,37.93954],[22.4397549,37.9394621],[22.4396704,37.9391546],[22.4394907,37.939044],[22.4391278,37.9384444],[22.4386941,37.93797],[22.4384342,37.9373448],[22.4382769,37.9367118],[22.4380256,37.9362218],[22.4376597,37.9357664],[22.4370322,37.9353074],[22.436789,37.9349707],[22.4365925,37.9340399],[22.4365945,37.9334091],[22.4364789,37.9329569],[22.436401,37.9328748],[22.435982,37.9327791],[22.4354918,37.9322859],[22.4352049,37.9318675],[22.4351077,37.9316229],[22.435135,37.931407],[22.4349075,37.9303315],[22.4347885,37.9300416],[22.4343628,37.9291887],[22.4335201,37.9281501],[22.4332604,37.9275249],[22.4332001,37.9271455],[22.4331338,37.9270545],[22.4329643,37.9269982],[22.4327322,37.9266797],[22.4322916,37.9265296],[22.4320452,37.9263461],[22.4318545,37.9256857],[22.4315245,37.9251496],[22.4315015,37.9246265],[22.4313037,37.9242995],[22.4311603,37.9235496],[22.4312731,37.9232807],[22.4311263,37.9226929],[22.4310262,37.9225835],[22.4307438,37.9224896],[22.4306483,37.9221639],[22.4303227,37.9219613],[22.4301563,37.9217608],[22.4300761,37.921255],[22.4301379,37.9210215],[22.4301076,37.9208409],[22.4299748,37.9206679],[22.4300719,37.9203808],[22.4300427,37.9201461],[22.4301389,37.919904],[22.429601,37.9189866],[22.429661,37.9183025],[22.4295638,37.9180579],[22.4297647,37.9177091],[22.4299354,37.9177024],[22.4300863,37.9175602],[22.4301542,37.9172637]]},{"id":17797,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0391\u03c0\u03cc \u03c4\u03bf \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0391 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 2375 \u03c4\u03b7\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Ziria_RefugeA_summit","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":5,"length":5691,"name_EN":"Ziria Mt.: From Refuge A to the summit","description_EN":"Ascent to the 2375 point","ascent_time":230,"descent_time":175,"marker":"Red_dots","level":10,"ascent":865,"descent":36,"maxelev":2360,"minelev":1499,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.39553 37.93184,22.42996 37.95416)","views":40,"millestones":"0,22.4295519,37.9511728#1,22.4255704,37.9499802#2,22.4190983,37.9428603#3,22.4156114,37.9349575#4,22.4082785,37.9328855#5,22.4014867,37.9372529#5.7,22.3958571,37.9391196","x":22.4148128,"y":37.9337124,"coor":[[22.4295519,37.9511728],[22.428877,37.9518667],[22.4286656,37.9521703],[22.4283478,37.9537341],[22.4283376,37.9542116],[22.4284223,37.9545102],[22.4283965,37.9546045],[22.4281766,37.9542906],[22.4280493,37.9538563],[22.4280017,37.9528824],[22.4276568,37.9525128],[22.4273336,37.9522381],[22.426832,37.9517447],[22.4264073,37.9513786],[22.4264096,37.9512705],[22.4260318,37.9508418],[22.4259358,37.9505432],[22.4258497,37.9503077],[22.4252723,37.9496331],[22.4245327,37.9485597],[22.4238722,37.9480462],[22.4227225,37.9469448],[22.4225568,37.9467083],[22.421812,37.9461486],[22.4210838,37.9456612],[22.4200168,37.9449484],[22.4198187,37.944734],[22.4196233,37.9442942],[22.4192544,37.9437846],[22.4192818,37.9435687],[22.419142,37.9431883],[22.4190838,37.9427189],[22.4186191,37.9416672],[22.4185314,37.9409811],[22.4185962,37.9406125],[22.4184427,37.9403401],[22.4184865,37.9398901],[22.418428,37.9397],[22.4181407,37.9392996],[22.4181481,37.9389573],[22.4179836,37.9386667],[22.4178835,37.9385572],[22.4176655,37.9386444],[22.4175984,37.9385894],[22.4175912,37.938391],[22.4173805,37.9381359],[22.4173718,37.9380096],[22.4172253,37.9379445],[22.4171515,37.9376732],[22.4166442,37.9374501],[22.4164456,37.937159],[22.4164032,37.9370142],[22.4164561,37.9366725],[22.4162997,37.9365352],[22.4162585,37.9363364],[22.4160242,37.9361169],[22.4158054,37.9351767],[22.4154056,37.9347207],[22.4152533,37.9343942],[22.4148629,37.9340285],[22.4148128,37.9337124],[22.4148626,37.9335148],[22.4146667,37.9330976],[22.4150285,37.9321472],[22.4148935,37.9320733],[22.414864,37.9318566],[22.4145459,37.9318343],[22.41431,37.9316959],[22.4139716,37.9316553],[22.413738,37.9316206],[22.4126258,37.9320202],[22.4121162,37.9319052],[22.4116911,37.9320977],[22.4113813,37.9321656],[22.4111218,37.9323288],[22.4107914,37.9323514],[22.4103556,37.9325077],[22.4096265,37.9325519],[22.4088483,37.9327577],[22.4084608,37.9327885],[22.4083109,37.9328766],[22.4074983,37.9330999],[22.4067683,37.9331802],[22.4064967,37.9331134],[22.4059954,37.9331427],[22.4055656,37.9332855],[22.405346,37.9334448],[22.404868,37.9336636],[22.4047361,37.9338105],[22.4045269,37.934015],[22.4045551,37.9342857],[22.4048402,37.9347852],[22.4052109,37.9350066],[22.4053695,37.9353016],[22.4050491,37.9353874],[22.4051589,37.9355691],[22.4052092,37.9358762],[22.4039638,37.9361116],[22.403801,37.9362717],[22.4033413,37.9364817],[22.4032241,37.9366423],[22.4028012,37.9367267],[22.4025806,37.936931],[22.4023637,37.9369641],[22.4020987,37.9371137],[22.4012181,37.937318],[22.4009177,37.9375302],[22.4007537,37.9377443],[22.4003424,37.9378198],[22.3998104,37.9380694],[22.399554,37.9381335],[22.3994948,37.9382409],[22.3988903,37.9383047],[22.3980542,37.9385547],[22.3976102,37.9385667],[22.3966775,37.9390677],[22.3964159,37.9390641],[22.3960264,37.939185],[22.3959938,37.9391124],[22.3958571,37.9391196]]},{"id":17798,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u039c\u03b9\u03ba\u03c1\u03ae \u0396\u03ae\u03c1\u03b5\u03b9\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u039a\u03b5\u03c6\u03b1\u03bb\u03ac\u03c1\u03b9 \u03c3\u03c4\u03b7 \u039c\u03b9\u03ba\u03c1\u03ae \u0396\u03ae\u03c1\u03b5\u03b9\u03b1","path":"PELOPONNESE\/Pelop_Ziria_Kefalari_MikriZiria","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":7812,"name_EN":"Ziria Mt.: Ascent to Mikri Ziria","description_EN":"From Kefalari to Mikri Ziria","ascent_time":275,"descent_time":210,"marker":"Red_dots","level":10,"ascent":1321,"descent":30,"maxelev":2100,"minelev":800,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.4694 37.92289,22.51814 37.93659)","views":52,"millestones":"0,22.5123373,37.9228150#1,22.5176648,37.9291709#2,22.5097061,37.9331116#3,22.5010596,37.9351483#4,22.4934191,37.9334247#5,22.4844980,37.9297452#6,22.4799144,37.9261053#7,22.4719650,37.9236215#7.8,22.4695824,37.9277235","x":22.4917784,"y":37.9332102,"coor":[[22.5123373,37.922815],[22.5126803,37.923297],[22.5127066,37.9236848],[22.5128064,37.9238123],[22.5130386,37.9238648],[22.5135024,37.9239427],[22.5138386,37.9241272],[22.5143654,37.9245214],[22.514462,37.924811],[22.5148344,37.9249599],[22.5152997,37.9250198],[22.5158855,37.9253066],[22.5161237,37.9253457],[22.5166725,37.9257762],[22.5168353,37.9260621],[22.5171583,37.9264086],[22.5170422,37.9265243],[22.5170964,37.9266602],[22.5169456,37.9268025],[22.5169082,37.9269642],[22.5170878,37.9270837],[22.5172094,37.9272654],[22.5175948,37.9273334],[22.5176818,37.9275327],[22.5178617,37.9276432],[22.5178429,37.9280124],[22.5180297,37.9283392],[22.5178405,37.9286973],[22.5177768,37.929039],[22.5176486,37.9291906],[22.5174196,37.9292598],[22.5170016,37.9296781],[22.5169828,37.9300474],[22.5168996,37.9302265],[22.5166831,37.9302418],[22.5165325,37.9303751],[22.5160657,37.9303873],[22.5156006,37.9303183],[22.5155291,37.9304796],[22.5151264,37.9306999],[22.5146623,37.9308112],[22.5140911,37.9307499],[22.5139353,37.9305767],[22.5136381,37.930645],[22.5135097,37.9308056],[22.5137521,37.9311962],[22.5137815,37.9314309],[22.513244,37.9315683],[22.5130167,37.9315564],[22.5123417,37.9317371],[22.5119972,37.931895],[22.5112317,37.9320475],[22.5107819,37.9323483],[22.5107423,37.9326181],[22.5103824,37.9329741],[22.5101531,37.9330613],[22.509697,37.9331096],[22.5094992,37.9333234],[22.5091646,37.9335534],[22.5090396,37.9335428],[22.5088081,37.9337382],[22.5082579,37.9339385],[22.5076867,37.9340484],[22.5072033,37.9343216],[22.5067793,37.9344695],[22.506176,37.9344798],[22.5055666,37.9353553],[22.5053123,37.9355503],[22.5040634,37.9359761],[22.5038666,37.9360366],[22.503725,37.9360574],[22.5033721,37.9358907],[22.503284,37.935867],[22.5021025,37.9357709],[22.5016535,37.936031],[22.5014525,37.936069],[22.5012485,37.9360303],[22.5009142,37.9356836],[22.5009343,37.9352513],[22.5010974,37.9351182],[22.5007971,37.9350558],[22.5006707,37.9351173],[22.500332,37.9355455],[22.4998818,37.9358642],[22.4997335,37.9358804],[22.4996275,37.9360593],[22.4996576,37.9362579],[22.4994175,37.9363134],[22.4988891,37.9366086],[22.4988043,37.9368599],[22.4982561,37.936961],[22.4980311,37.936832],[22.49799,37.9366151],[22.4978884,37.9365778],[22.4978454,37.9364511],[22.4974258,37.9363826],[22.4974746,37.936221],[22.4970874,37.9356754],[22.4967153,37.9355084],[22.4961948,37.9353666],[22.4960214,37.9349408],[22.4956414,37.9346025],[22.4956321,37.9345032],[22.4953616,37.9343736],[22.4949422,37.9342961],[22.4947184,37.934113],[22.4944241,37.9340371],[22.4942909,37.9338732],[22.4937859,37.9335243],[22.4924958,37.9331833],[22.4921761,37.9332333],[22.4917784,37.9332102],[22.4915993,37.9330637],[22.4914279,37.9330975],[22.4911116,37.9329853],[22.4906997,37.9330972],[22.4905948,37.933222],[22.4903438,37.9332549],[22.4897357,37.9329406],[22.489436,37.9325763],[22.4891292,37.9325543],[22.4887041,37.9321974],[22.4884315,37.9321759],[22.4880811,37.9320632],[22.4877167,37.9320766],[22.4875097,37.9321821],[22.4870784,37.9321315],[22.4867511,37.9320011],[22.4863809,37.931744],[22.4859527,37.9315402],[22.4850628,37.9305464],[22.4848656,37.9301744],[22.484585,37.9299905],[22.4845995,37.9298375],[22.4843984,37.9296547],[22.484412,37.9295467],[22.4842526,37.9295537],[22.4835963,37.9288242],[22.4834814,37.9288768],[22.48349,37.9290121],[22.4833313,37.928983],[22.4831919,37.9291254],[22.4830341,37.9290513],[22.482633,37.9291903],[22.4818804,37.9292707],[22.4815545,37.929627],[22.4813259,37.9296781],[22.481179,37.9296312],[22.4810915,37.9297337],[22.480571,37.9293169],[22.4806105,37.9290561],[22.4803867,37.9288729],[22.4800822,37.9287428],[22.4802072,37.9286994],[22.4805551,37.9283794],[22.4805702,37.9281994],[22.4807934,37.9278598],[22.4807148,37.9278047],[22.4807391,37.9277329],[22.4808323,37.927626],[22.4809695,37.9275917],[22.4809378,37.9274741],[22.4810256,37.9270787],[22.4805256,37.9264955],[22.4805403,37.9263335],[22.4807615,37.926093],[22.4800891,37.9261474],[22.4798513,37.9260903],[22.4795994,37.9261681],[22.4794031,37.9263098],[22.4792233,37.9261993],[22.4787081,37.9263549],[22.4784506,37.9261037],[22.4784315,37.9259232],[22.4782956,37.9258944],[22.4783562,37.925715],[22.4782322,37.9256593],[22.4783951,37.9254811],[22.4781504,37.9254194],[22.4777517,37.9254413],[22.4766268,37.9253726],[22.4759868,37.9255086],[22.4757957,37.9253979],[22.4750142,37.9252256],[22.4747301,37.9252129],[22.4747684,37.9251818],[22.4743619,37.9250324],[22.4743858,37.9249786],[22.4740151,37.9247485],[22.4740285,37.9246495],[22.4739177,37.9245039],[22.4738495,37.924503],[22.4737751,37.9242497],[22.4735702,37.9242561],[22.4736421,37.9240768],[22.4738704,37.9240437],[22.4737805,37.9239884],[22.4738271,37.923935],[22.4733762,37.9237309],[22.4732621,37.9237474],[22.4732746,37.9236935],[22.4731517,37.9235837],[22.4729448,37.9236892],[22.4723074,37.923699],[22.4718885,37.9236034],[22.4717369,37.9237817],[22.4713724,37.923804],[22.4712765,37.9245868],[22.4708797,37.9250683],[22.4707945,37.9253375],[22.470619,37.9254659],[22.4704583,37.9255359],[22.4699325,37.9257589],[22.4700436,37.9258865],[22.4700391,37.9261028],[22.4701055,37.9261938],[22.4700773,37.9263511],[22.4702845,37.9267864],[22.4703641,37.9273372],[22.4700691,37.9272973],[22.4698409,37.9273304],[22.4696908,37.9274366],[22.4695824,37.9277235]]},{"id":17799,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1-\u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03af\u03c4\u03c3\u03b1","description_GR":"\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u039c\u03ac\u03bd\u03bd\u03b1","path":"PELOPONNESE\/Pelop_Ziria_AgTriada_Flabouritsa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":8812,"name_EN":"Ziria Mt.: Agia Triada- Flabouritsa ravine","description_EN":"The old way from Manna to Flambouritsa","ascent_time":210,"descent_time":205,"marker":"Red_triangle","level":10,"ascent":531,"descent":213,"maxelev":1394,"minelev":1062,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.42865 37.91793,22.48137 37.96128)","views":36,"millestones":"0,22.4804595,37.9619440#1,22.4732070,37.9614261#2,22.4641802,37.9599662#3,22.4562292,37.9566888#4,22.4471792,37.9542321#5,22.4412564,37.9475186#6,22.4395986,37.9391080#7,22.4351072,37.9312510#8,22.4312492,37.9231694#8.8,22.4301577,37.9172637","x":22.4455089,"y":37.9529033,"coor":[[22.4804595,37.961944],[22.4800075,37.9619562],[22.479315,37.9618661],[22.4785859,37.9618927],[22.4780904,37.961634],[22.477716,37.9615751],[22.477213,37.9616767],[22.4769287,37.961664],[22.4766073,37.961795],[22.4764389,37.9617838],[22.4762387,37.9615559],[22.4759281,37.9606147],[22.476023,37.9598769],[22.4759225,37.9597855],[22.4745982,37.9605253],[22.4741327,37.9604652],[22.473694,37.9602162],[22.4735005,37.9602137],[22.4730138,37.9611807],[22.4730567,37.9613074],[22.4733591,37.9615456],[22.4732662,37.9616346],[22.4730747,37.961587],[22.4727238,37.9614923],[22.4724841,37.9615253],[22.4723619,37.9613795],[22.4723319,37.9611808],[22.4720856,37.9609794],[22.4712861,37.9605634],[22.4709122,37.9604775],[22.4705932,37.9604913],[22.4702362,37.960694],[22.4694543,37.9605216],[22.468926,37.960749],[22.4684591,37.960761],[22.467955,37.9609166],[22.4678082,37.9608606],[22.4676022,37.960912],[22.4673754,37.960873],[22.466701,37.9610084],[22.4664851,37.9609876],[22.4661473,37.960812],[22.4656126,37.960796],[22.4655416,37.9603805],[22.4652005,37.9598173],[22.4644828,37.959844],[22.464264,37.9599673],[22.4641616,37.9599659],[22.4641179,37.9598752],[22.4637288,37.9599783],[22.463643,37.9597249],[22.4633112,37.9592609],[22.4631221,37.9585014],[22.4628873,37.9583001],[22.4627108,37.9580274],[22.4620346,37.9582529],[22.4616578,37.958311],[22.4608631,37.9582105],[22.4607396,37.9581278],[22.4605002,37.957602],[22.4597358,37.9571414],[22.4596853,37.9568343],[22.4595176,37.9566879],[22.4589134,37.956734],[22.4580556,37.9563894],[22.4573391,37.9563619],[22.4570951,37.956174],[22.4565897,37.9563927],[22.4561843,37.9567298],[22.4547172,37.9566745],[22.4546159,37.9566191],[22.4539416,37.955664],[22.4532262,37.9555825],[22.452938,37.9557589],[22.4524692,37.9558609],[22.4521984,37.9557492],[22.4514682,37.955289],[22.4507202,37.9551349],[22.4503364,37.9544449],[22.4499271,37.9538808],[22.4497667,37.9539328],[22.4495857,37.9538763],[22.4492427,37.9539529],[22.4482543,37.9544085],[22.4479023,37.9543678],[22.4474953,37.9542362],[22.4467785,37.9542268],[22.4464534,37.9539882],[22.4457436,37.9531046],[22.4455089,37.9529033],[22.4451823,37.9527367],[22.4449392,37.952391],[22.4443218,37.9519864],[22.443823,37.9513534],[22.4436638,37.9510088],[22.4440677,37.9502031],[22.4440351,37.9495898],[22.4435645,37.9492412],[22.4434885,37.9490689],[22.4432196,37.9488671],[22.44311,37.9486674],[22.4422668,37.9481786],[22.4418868,37.9478491],[22.4414912,37.9477177],[22.4412229,37.9474888],[22.4412063,37.9466595],[22.4411189,37.9464871],[22.4412231,37.9453259],[22.4411274,37.9450092],[22.4408938,37.9447538],[22.4406898,37.9441743],[22.4402791,37.9436822],[22.4401965,37.9432846],[22.4403141,37.9431059],[22.4403777,37.9422506],[22.4398779,37.9416672],[22.439804,37.9413959],[22.4395196,37.9408514],[22.4395032,37.9401347],[22.4396039,37.9397755],[22.4395179,37.9395401],[22.4397585,37.9394622],[22.4396739,37.9391546],[22.4394942,37.9390441],[22.4391314,37.9384445],[22.4386976,37.9379701],[22.4384378,37.9373448],[22.4382805,37.9367119],[22.4380291,37.9362219],[22.4376633,37.9357664],[22.4370358,37.9353075],[22.4367926,37.9349708],[22.4365961,37.9340399],[22.4365981,37.9334091],[22.4364825,37.932957],[22.4364046,37.9328748],[22.4359856,37.9327791],[22.4354954,37.932286],[22.4352084,37.9318676],[22.4351112,37.931623],[22.4351386,37.931407],[22.434911,37.9303316],[22.434792,37.9300416],[22.4343664,37.9291888],[22.4335237,37.9281502],[22.4332639,37.9275249],[22.4332037,37.9271456],[22.4331374,37.9270546],[22.4329679,37.9269983],[22.4327357,37.9266797],[22.4322952,37.9265297],[22.4320488,37.9263461],[22.431858,37.9256857],[22.4315281,37.9251496],[22.4315051,37.9246266],[22.4313072,37.9242995],[22.4311639,37.9235496],[22.4312766,37.9232807],[22.4311298,37.922693],[22.4310298,37.9225835],[22.4307473,37.9224896],[22.4306519,37.9221639],[22.4303263,37.9219613],[22.4301599,37.9217608],[22.4300796,37.9212551],[22.4301415,37.9210216],[22.4301112,37.9208409],[22.4299783,37.9206679],[22.4300754,37.9203808],[22.4300463,37.9201461],[22.4301425,37.9199041],[22.4296045,37.9189867],[22.4296646,37.9183026],[22.4295674,37.9180579],[22.4297682,37.9177091],[22.429939,37.9177024],[22.4300899,37.9175602],[22.4301577,37.9172637]]},{"id":17800,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u03a4\u03c1\u03af\u03ba\u03b1\u03bb\u03b1-\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0391","description_GR":"","path":"PELOPONNESE\/Pelop_Ziria_Trikala_RefugeA","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":7844,"name_EN":"Ziria Mt.: Trikala to Refuge A","description_EN":"","ascent_time":150,"descent_time":140,"marker":"Red_dots","level":10,"ascent":650,"descent":255,"maxelev":1534,"minelev":1130,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.42738 37.94804,22.46422 37.98179)","views":37,"millestones":"0,22.4635191,37.9817804#1,22.4557550,37.9775189#2,22.4581422,37.9740744#3,22.4522311,37.9679887#4,22.4485841,37.9598897#5,22.4440322,37.9520696#6,22.4354512,37.9481885#7,22.4280471,37.9517159#7.8,22.4295476,37.9511727","x":22.4501973,"y":37.9631082,"coor":[[22.4635191,37.9817804],[22.4633939,37.9817787],[22.4628995,37.9820066],[22.4622778,37.9821156],[22.4621729,37.9822314],[22.4620017,37.9822472],[22.4614651,37.9817715],[22.4606789,37.9812566],[22.4602925,37.9808955],[22.4601825,37.9806102],[22.4600869,37.9802845],[22.4598156,37.9799656],[22.4595855,37.9797598],[22.4591688,37.979538],[22.4584105,37.9793208],[22.4580197,37.9789552],[22.45771,37.9786222],[22.4576132,37.9783506],[22.4574345,37.978186],[22.4572918,37.9779318],[22.4573908,37.9775546],[22.4573358,37.9774637],[22.4570751,37.9774062],[22.4566409,37.9774817],[22.455958,37.9774727],[22.4556948,37.9775323],[22.4554342,37.9774748],[22.4552397,37.9775173],[22.4548918,37.9774497],[22.4547323,37.9773349],[22.4539721,37.9772078],[22.4532938,37.9769826],[22.4530695,37.9768174],[22.4530925,37.9765879],[22.4528425,37.9765666],[22.453009,37.9764471],[22.453026,37.976177],[22.4533646,37.9757759],[22.4535158,37.9756247],[22.4539187,37.9754137],[22.4539676,37.9752521],[22.4542894,37.9751121],[22.4545117,37.9748267],[22.4545262,37.9746737],[22.454658,37.9745312],[22.4549045,37.9736332],[22.4551242,37.9734739],[22.455408,37.9735137],[22.4571282,37.9740049],[22.458797,37.9741124],[22.4588554,37.974041],[22.4588361,37.9739957],[22.4581154,37.9732248],[22.4577971,37.9732026],[22.4571316,37.9729054],[22.4565437,37.9721678],[22.4560471,37.971963],[22.4558164,37.9715634],[22.4551293,37.9712119],[22.4546467,37.9708811],[22.4527992,37.9694059],[22.4526885,37.9692603],[22.4527412,37.9689185],[22.4526918,37.9685574],[22.4523356,37.9681742],[22.4519957,37.9675569],[22.4519541,37.9673671],[22.4520812,37.9667379],[22.4517209,37.965904],[22.451329,37.9655925],[22.4512946,37.9650603],[22.4511171,37.9648417],[22.4509202,37.9644606],[22.4508908,37.9642349],[22.4501973,37.9631082],[22.4498652,37.9615808],[22.4493707,37.9611102],[22.4489506,37.96101],[22.4488049,37.9609],[22.4486974,37.9606011],[22.4487156,37.9602769],[22.4483294,37.9591543],[22.4478963,37.9581528],[22.4473603,37.9576591],[22.4473903,37.957317],[22.4468202,37.9562821],[22.4466372,37.955784],[22.44638,37.9555643],[22.4457582,37.9553669],[22.44549,37.955129],[22.4452249,37.954747],[22.4448893,37.9544722],[22.4449873,37.95414],[22.4447452,37.9537493],[22.4446661,37.9531805],[22.4443741,37.9524557],[22.4438849,37.9519085],[22.4438194,37.9513534],[22.4436606,37.9510088],[22.4436678,37.9506664],[22.4435686,37.9505119],[22.4426791,37.9500586],[22.4422024,37.9499982],[22.4415178,37.9495385],[22.4408503,37.9493494],[22.4405435,37.9493273],[22.4395819,37.9495939],[22.4393509,37.9497531],[22.4384316,37.9496328],[22.438058,37.9495377],[22.4377327,37.9493171],[22.4373143,37.9491853],[22.4370415,37.9491727],[22.4367709,37.9490519],[22.4363005,37.9486942],[22.435849,37.948517],[22.4355593,37.9482247],[22.4351638,37.9480933],[22.4346749,37.9480688],[22.4342128,37.9478554],[22.4336879,37.9479205],[22.4333068,37.947645],[22.4332147,37.9476979],[22.4331013,37.9476783],[22.4323841,37.9476192],[22.4320855,37.9476964],[22.4319421,37.9476989],[22.431371,37.9477995],[22.4310072,37.9483173],[22.4307299,37.9485119],[22.4305239,37.9485632],[22.4302744,37.9485238],[22.4296726,37.9485609],[22.4289174,37.9487491],[22.4289185,37.9499342],[22.4286603,37.9500839],[22.4284048,37.9503238],[22.42819,37.9507896],[22.4280316,37.9518148],[22.4279975,37.9528823],[22.428045,37.9538563],[22.4281723,37.9542905],[22.4283922,37.9546044],[22.428418,37.9545101],[22.4283333,37.9542116],[22.4283435,37.9537341],[22.4286614,37.9521702],[22.4288727,37.9518666],[22.4295476,37.9511727]]},{"id":17846,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u03a4\u03c1\u03af\u03ba\u03b1\u03bb\u03b1-\u039b\u03af\u03bc\u03bd\u03b7 \u0394\u03b1\u03c3\u03af\u03bf\u03c5","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03b9\u03ba\u03b9\u03bb\u03af\u03b1 \u03c4\u03bf\u03c0\u03af\u03c9\u03bd","path":"PELOPONNESE\/Pelop_Ziria_Trikala_Dasios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6144,"name_EN":"Ziria Mt.: From Trikala to Dasios lake","description_EN":"A trail across a variety of landscapes","ascent_time":155,"descent_time":135,"marker":"Red_dots","level":10,"ascent":503,"descent":21,"maxelev":1500,"minelev":999,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.41932 37.98114,22.47081 37.99787)","views":62,"millestones":"0,22.4704813,37.9971827#1,22.4632821,37.9951136#2,22.4559898,37.9917550#3,22.4469805,37.9881866#4,22.4370089,37.9855644#5,22.4290373,37.9837091#6.1,22.4203221,37.9804691","x":22.4508843,"y":37.9894416,"coor":[[22.4704813,37.9971827],[22.4700727,37.997272],[22.4700421,37.9976501],[22.4698308,37.9979537],[22.4693681,37.9976458],[22.4694086,37.9978356],[22.4690122,37.998281],[22.4688622,37.9982025],[22.4685139,37.9985224],[22.4683442,37.9984661],[22.4681886,37.9982838],[22.4681394,37.9980804],[22.4680238,37.9979392],[22.4676536,37.997673],[22.4673131,37.9976145],[22.4667486,37.9968321],[22.4667313,37.9965706],[22.4662684,37.9963753],[22.4659855,37.9957407],[22.4657832,37.9956119],[22.4654538,37.9955716],[22.4650768,37.9957334],[22.4647484,37.9957606],[22.4646112,37.9956687],[22.4643903,37.9953414],[22.4639948,37.995192],[22.4634502,37.9950948],[22.4625713,37.9951915],[22.4622077,37.9951507],[22.4621701,37.9947717],[22.461816,37.9942804],[22.4615087,37.9938438],[22.4612566,37.9936467],[22.4610099,37.9934633],[22.4607044,37.9933691],[22.4592597,37.9926338],[22.4584282,37.9926409],[22.4582473,37.9926475],[22.4575532,37.9926204],[22.4571291,37.99275],[22.4566286,37.9927254],[22.4565064,37.9925796],[22.456498,37.9924353],[22.456867,37.9916741],[22.4567894,37.9912991],[22.4566997,37.9912349],[22.4561419,37.9917683],[22.4559939,37.9917663],[22.45594,37.9916214],[22.456017,37.9912079],[22.4557506,37.9908799],[22.4553696,37.9905866],[22.4548611,37.9903996],[22.4540399,37.9904609],[22.4538143,37.9903588],[22.4535363,37.9900398],[22.4531756,37.9898638],[22.4529025,37.9898557],[22.4527074,37.9899252],[22.4521162,37.9898814],[22.451807,37.9899674],[22.4508843,37.9894416],[22.450464,37.989391],[22.4502728,37.9892803],[22.4501585,37.9892969],[22.4499496,37.9894834],[22.4495186,37.9894056],[22.4491368,37.9891482],[22.4486041,37.989033],[22.4481098,37.9887111],[22.4475554,37.9885416],[22.4469485,37.988164],[22.4458042,37.9878876],[22.4452867,37.9875923],[22.4448776,37.9875509],[22.4445319,37.9872039],[22.443833,37.9868702],[22.4427349,37.9865673],[22.4425398,37.9865737],[22.4416499,37.986652],[22.4413484,37.9863236],[22.4410329,37.9861662],[22.4408377,37.9861411],[22.4408532,37.9858304],[22.4406138,37.9858452],[22.4396633,37.9855623],[22.4393434,37.9856121],[22.4385951,37.985458],[22.4380719,37.985433],[22.4379102,37.985539],[22.4369305,37.985562],[22.4367928,37.9856143],[22.4365356,37.9859263],[22.4365333,37.9860344],[22.4365773,37.9861071],[22.4369408,37.9861479],[22.4371851,37.9863404],[22.4372527,37.9865441],[22.436889,37.9865122],[22.4366858,37.9864284],[22.4364676,37.9865156],[22.436397,37.9866228],[22.4359415,37.9866258],[22.4344837,37.9861017],[22.4328023,37.9859261],[22.4315274,37.9853684],[22.4295838,37.9841889],[22.4275729,37.9824272],[22.4273725,37.9823795],[22.4270198,37.9820368],[22.426735,37.9821592],[22.426337,37.9821358],[22.4255801,37.9818553],[22.425115,37.981777],[22.4246022,37.9817972],[22.4235619,37.9819905],[22.4227974,37.9820704],[22.4215802,37.982018],[22.4210479,37.9818847],[22.4205552,37.9818646],[22.4196674,37.9818481],[22.41987,37.9816931],[22.4203221,37.9804691]]},{"id":17847,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u03a4\u03c1\u03af\u03ba\u03b1\u03bb\u03b1-\u039b\u03af\u03bc\u03bd\u03b7 \u0394\u03b1\u03c3\u03af\u03bf\u03c5-\u039a\u03bb\u03b5\u03c6\u03c4\u03ac\u03ba\u03b9","description_GR":"\u0388\u03bd\u03b1 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c2 \u03bc\u03b5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03b9\u03ba\u03b9\u03bb\u03af\u03b1 \u03c4\u03bf\u03c0\u03af\u03c9\u03bd","path":"PELOPONNESE\/Pelop_Ziria_Dasios_Kleftaki","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":4,"length":14245,"name_EN":"Ziria Mt.: Trikala-Dasios lake-Kleftaki","description_EN":"A loop trail across a variety of landscapes","ascent_time":335,"descent_time":335,"marker":"Red_dots","level":10,"ascent":700,"descent":700,"maxelev":1638,"minelev":999,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.41967 37.98238,22.47079 38.0022)","views":40,"millestones":"0,22.4704737,37.9971195#1,22.4633619,37.9951047#2,22.4560596,37.9917672#3,22.4470441,37.9882259#4,22.4370894,37.9855621#5,22.4289927,37.9839475#6,22.4208604,37.9828083#7,22.4287707,37.9870233#8,22.4366863,37.9906168#9,22.4452374,37.9941334#10,22.4503306,38.0004447#11,22.4558920,37.9976174#12,22.4614192,37.9966049#13,22.4676227,38.0016370#14.2,22.4704727,37.9971195","x":22.4333865,"y":37.9895748,"coor":[[22.4704737,37.9971195],[22.4704817,37.9971827],[22.470073,37.997272],[22.4700424,37.9976501],[22.4698311,37.9979537],[22.4693684,37.9976458],[22.469409,37.9978356],[22.4690125,37.998281],[22.4688625,37.9982025],[22.4685142,37.9985224],[22.4683446,37.9984661],[22.4681889,37.9982838],[22.4681398,37.9980804],[22.4680242,37.9979392],[22.4676539,37.997673],[22.4673135,37.9976145],[22.466749,37.9968321],[22.4667316,37.9965706],[22.4662688,37.9963753],[22.4659859,37.9957407],[22.4657836,37.9956119],[22.4654542,37.9955716],[22.4650771,37.9957334],[22.4647488,37.9957606],[22.4646116,37.9956687],[22.4643906,37.9953414],[22.4639952,37.9951921],[22.4634506,37.9950948],[22.4625717,37.9951915],[22.4622081,37.9951507],[22.4621705,37.9947717],[22.4618163,37.9942804],[22.4615091,37.9938438],[22.461257,37.9936467],[22.4610103,37.9934633],[22.4607047,37.9933691],[22.45926,37.9926338],[22.4584286,37.9926409],[22.4582473,37.9926475],[22.4575532,37.9926204],[22.4571291,37.99275],[22.4566286,37.9927254],[22.4565064,37.9925796],[22.456498,37.9924353],[22.456867,37.9916741],[22.4567894,37.9912991],[22.4566997,37.9912349],[22.4561419,37.9917683],[22.4559939,37.9917663],[22.45594,37.9916214],[22.456017,37.9912079],[22.4557506,37.9908799],[22.4553696,37.9905866],[22.4548611,37.9903996],[22.4540399,37.9904609],[22.4538143,37.9903588],[22.4535363,37.9900398],[22.4531756,37.9898638],[22.4529025,37.9898557],[22.4527074,37.9899252],[22.4521162,37.9898814],[22.451807,37.9899674],[22.4508843,37.9894416],[22.450464,37.989391],[22.4502728,37.9892803],[22.4501585,37.9892969],[22.4499496,37.9894834],[22.4495186,37.9894056],[22.4491368,37.9891482],[22.4486041,37.989033],[22.4481098,37.9887111],[22.4475554,37.9885416],[22.4469485,37.988164],[22.4458042,37.9878876],[22.4452867,37.9875923],[22.4448776,37.9875509],[22.4445319,37.9872039],[22.443833,37.9868702],[22.4427349,37.9865673],[22.4425401,37.9865737],[22.4416503,37.986652],[22.4413487,37.9863236],[22.4410332,37.9861662],[22.4408381,37.9861411],[22.4408535,37.9858304],[22.4406141,37.9858452],[22.4396636,37.9855623],[22.4393437,37.9856121],[22.4385955,37.985458],[22.4380723,37.985433],[22.4379106,37.985539],[22.4369309,37.985562],[22.4367931,37.9856143],[22.436536,37.9859263],[22.4365337,37.9860344],[22.4365777,37.9861071],[22.4369412,37.9861479],[22.4371855,37.9863404],[22.4372527,37.9865441],[22.436889,37.9865122],[22.4366858,37.9864284],[22.4364676,37.9865156],[22.436397,37.9866228],[22.4359415,37.9866258],[22.4344837,37.9861017],[22.4328023,37.9859261],[22.4315274,37.9853684],[22.4295841,37.9841889],[22.4292538,37.9841935],[22.4279254,37.9829501],[22.4269725,37.9822525],[22.4267354,37.9821592],[22.4263374,37.9821358],[22.4255805,37.9818554],[22.4251153,37.981777],[22.4246025,37.9817972],[22.4235623,37.9819905],[22.4227977,37.9820704],[22.4215805,37.982018],[22.4210482,37.9818847],[22.4205555,37.9818646],[22.4201411,37.9820753],[22.4200969,37.9823766],[22.4207623,37.9826739],[22.4210058,37.9830016],[22.4211738,37.9831301],[22.4216554,37.9833077],[22.4219942,37.9834385],[22.422643,37.9834472],[22.4235384,37.9836394],[22.4242551,37.983667],[22.4246964,37.9837991],[22.4249246,37.9837751],[22.426345,37.984443],[22.426568,37.9846623],[22.4266312,37.9849065],[22.4264137,37.9849576],[22.4263757,37.9851374],[22.4264645,37.9852467],[22.4265449,37.9852117],[22.426516,37.9854997],[22.4266503,37.9856097],[22.4268905,37.9860905],[22.4270605,37.9861288],[22.427059,37.9862009],[22.4273127,37.9860511],[22.4274037,37.9860523],[22.427999,37.9864388],[22.4281534,37.9866752],[22.4283681,37.9867501],[22.4283812,37.9866692],[22.4284935,37.9867428],[22.4288391,37.9870899],[22.4290261,37.9873988],[22.42958,37.9875864],[22.4298558,37.9880047],[22.4301802,37.9882793],[22.4304731,37.9884274],[22.4309265,37.9885236],[22.4310467,37.9887595],[22.4318618,37.9889867],[22.4322423,37.9892982],[22.4325352,37.9894463],[22.4329663,37.9895241],[22.4332248,37.9896808],[22.4333865,37.9895748],[22.4337956,37.9896163],[22.4340767,37.9897822],[22.4342873,37.9900554],[22.4344223,37.9901293],[22.4349669,37.9902267],[22.435149,37.9902291],[22.4352306,37.9901401],[22.4351263,37.9896881],[22.4352189,37.9896172],[22.4354933,37.9895668],[22.4356815,37.9898216],[22.4359782,37.9897895],[22.436155,37.9900442],[22.4362066,37.9902972],[22.4363401,37.9904432],[22.4364428,37.9904356],[22.4365752,37.9906356],[22.4368837,37.9905856],[22.4374381,37.9907552],[22.4376615,37.9909564],[22.4376145,37.9910279],[22.4377579,37.9912461],[22.4382227,37.9913424],[22.4384971,37.991292],[22.4388591,37.9914049],[22.4390879,37.9913539],[22.439382,37.9914479],[22.4397109,37.9920471],[22.4404699,37.9922374],[22.4407099,37.9921955],[22.4411243,37.9919847],[22.4413858,37.9920062],[22.4417007,37.9921906],[22.44182,37.9924716],[22.442217,37.9925489],[22.4422606,37.9926396],[22.4425342,37.9926252],[22.4430382,37.9924877],[22.4432771,37.9924999],[22.4435138,37.9926111],[22.4435328,37.9927916],[22.4437943,37.9928131],[22.444327,37.993469],[22.4444029,37.9936503],[22.4445039,37.9937237],[22.4445894,37.9939862],[22.4449761,37.9940093],[22.4456865,37.9943432],[22.4459994,37.9946267],[22.4460544,37.9947175],[22.4459906,37.9950411],[22.4460582,37.995078],[22.4462187,37.9955668],[22.446487,37.9958047],[22.4468046,37.9962865],[22.4469241,37.9965585],[22.4468862,37.9967382],[22.4470723,37.9970921],[22.4473195,37.9972486],[22.4475239,37.9972783],[22.4480429,37.9975105],[22.448291,37.9977931],[22.4487663,37.9974975],[22.4493766,37.9976182],[22.4496113,37.9978286],[22.4496624,37.9981086],[22.4495174,37.999044],[22.4496153,37.9992615],[22.449984,37.9995998],[22.4500607,37.999745],[22.4501112,38.0000521],[22.4500596,38.0003398],[22.4500801,38.0004482],[22.450181,38.0005217],[22.4504573,38.0003811],[22.4514198,37.9995647],[22.4514571,37.999412],[22.4513197,37.9989055],[22.4513482,37.9986355],[22.4520336,37.9974549],[22.4521159,37.9973298],[22.4522537,37.9972776],[22.4525455,37.9974797],[22.4528442,37.9978982],[22.4530074,37.9988015],[22.4531629,37.9989928],[22.4532997,37.9989856],[22.4537985,37.9985506],[22.4540934,37.9986085],[22.454486,37.9988931],[22.4546329,37.9989491],[22.4547819,37.998906],[22.4549245,37.9986195],[22.4550165,37.9980349],[22.4552476,37.9978757],[22.4556019,37.9978173],[22.4559138,37.9976051],[22.4564686,37.9968283],[22.4572514,37.9957301],[22.4573034,37.9954244],[22.4571187,37.9949984],[22.4571219,37.9948452],[22.4572936,37.9942617],[22.4571759,37.9938997],[22.4572573,37.9938196],[22.4573939,37.9938214],[22.4579279,37.9944232],[22.4583431,37.9947171],[22.4587508,37.9953713],[22.4588305,37.995913],[22.4590309,37.9961319],[22.4593482,37.9962082],[22.4602381,37.9961297],[22.461661,37.9967071],[22.4625249,37.9973312],[22.4628768,37.9979306],[22.4633842,37.9981716],[22.4639195,37.9987193],[22.4642128,37.9988493],[22.4645544,37.9988537],[22.4648747,37.9987858],[22.4651578,37.9988616],[22.4652558,37.9990792],[22.4650327,37.9994007],[22.4650303,37.9995178],[22.4652421,37.9997369],[22.4658164,38.0000508],[22.4659413,38.0000705],[22.4661514,37.9999245],[22.4663003,37.9998859],[22.4669832,37.9999038],[22.4668942,37.9999747],[22.4663906,38.0000943],[22.4662956,38.0002824],[22.4663717,38.0004546],[22.4674587,38.0013069],[22.4676254,38.0015073],[22.4676216,38.0016875],[22.4674919,38.0019021],[22.4669716,38.0022738],[22.4670258,38.0028333],[22.46777,38.0026447],[22.4683468,38.0022917],[22.4692622,38.0020874],[22.4695502,38.0019289],[22.4696335,38.0017588],[22.4695801,38.0015868],[22.4691428,38.0012567],[22.4690513,38.0011248],[22.4691997,38.000559],[22.4693837,38.0004713],[22.4698517,38.0004233],[22.4703047,37.9999966],[22.4702273,37.9998875],[22.4701255,37.9998501],[22.4698211,37.9999272],[22.4697033,37.9995652],[22.4697569,37.9991784],[22.4696293,37.9987442],[22.4698167,37.9984943],[22.46983,37.9979537],[22.4700413,37.9976501],[22.470072,37.997272],[22.4704803,37.9971826],[22.4704727,37.9971195]]},{"id":17848,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0399\u03c3\u03ce\u03bc\u03b1\u03c4\u03b1-\u03a0\u03b7\u03b3\u03ad\u03c2 \u03a3\u03cd\u03b8\u03b1","description_GR":"\u039c\u03b9\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7 \u039c\u03b9\u03ba\u03c1\u03ae \u0396\u03ae\u03c1\u03b5\u03b9\u03b1","path":"PELOPONNESE\/Pelop_Ziria_Isomata_SythasSprings","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":5,"length":9373,"name_EN":"Ziria Mt.: Isomata-Sythas Springs","description_EN":"Crossing Mikri Ziria","ascent_time":245,"descent_time":235,"marker":"Red_dots","level":10,"ascent":848,"descent":606,"maxelev":1954,"minelev":1112,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.42873 37.91811,22.49519 37.95737)","views":38,"millestones":"0,22.4943668,37.9582251#1,22.4867231,37.9530747#2,22.4780010,37.9477926#3,22.4693674,37.9424318#4,22.4605187,37.9376707#5,22.4562649,37.9305348#6,22.4488794,37.9254246#7,22.4398003,37.9244416#8,22.4340839,37.9177576#9.4,22.4311628,37.9235496","x":22.4576305,"y":37.932033,"coor":[[22.4943668,37.9582251],[22.4942736,37.9572145],[22.494035,37.9566347],[22.4938796,37.9564434],[22.4934505,37.9562757],[22.4920301,37.9561584],[22.4916906,37.9560639],[22.4914774,37.955917],[22.4908166,37.9559446],[22.4905795,37.9558514],[22.4903213,37.9556769],[22.4900921,37.9551963],[22.4895724,37.9550094],[22.4893698,37.9543399],[22.4891909,37.9541844],[22.4886481,37.9540152],[22.4870842,37.9531299],[22.4862559,37.9530021],[22.4852859,37.952575],[22.4846583,37.9520983],[22.4836308,37.9516976],[22.4831082,37.9511501],[22.4828619,37.9510027],[22.4829211,37.9508953],[22.482617,37.9507382],[22.4824185,37.9504292],[22.482006,37.9500093],[22.4818359,37.9499801],[22.4815343,37.9497059],[22.481009,37.9495143],[22.4801653,37.9490348],[22.4797363,37.948867],[22.4793446,37.9485465],[22.4787022,37.9482408],[22.4784684,37.9479855],[22.4780612,37.9478631],[22.4779391,37.9477173],[22.4779253,37.9475549],[22.4774758,37.9472787],[22.4769106,37.9470911],[22.4764658,37.9467114],[22.4760181,37.9463451],[22.4757517,37.9460172],[22.475201,37.9456856],[22.4751019,37.9455221],[22.4740932,37.94477],[22.4737773,37.9446398],[22.4736213,37.9444755],[22.4732726,37.9442818],[22.4731062,37.9440723],[22.4723672,37.9434859],[22.472208,37.9434839],[22.4720164,37.9433913],[22.471823,37.9433888],[22.4717106,37.9433242],[22.4715623,37.9433403],[22.4705906,37.9430032],[22.4702551,37.9427195],[22.4694294,37.9424745],[22.4690255,37.9421988],[22.4680655,37.9418439],[22.4677181,37.941587],[22.4673348,37.9414108],[22.4668468,37.9413504],[22.4665219,37.9411028],[22.4659141,37.9407794],[22.4651025,37.9404084],[22.4650113,37.9404162],[22.4640544,37.939917],[22.4630916,37.9397062],[22.4627453,37.9393953],[22.4621935,37.9391177],[22.4620796,37.9391207],[22.4620481,37.9389941],[22.4617581,37.938711],[22.461509,37.9386536],[22.4614223,37.9384452],[22.4611435,37.9381712],[22.4611917,37.9380457],[22.4610893,37.9380443],[22.4610919,37.9379182],[22.4609802,37.9378176],[22.4607398,37.9378865],[22.4604722,37.9376217],[22.4601313,37.9375992],[22.4598611,37.9374605],[22.4596749,37.9371156],[22.4596794,37.9368994],[22.4593325,37.9360747],[22.4591637,37.9359824],[22.4587146,37.9351474],[22.458613,37.93511],[22.4583778,37.9343859],[22.4581886,37.9341852],[22.4580972,37.934202],[22.4579305,37.9340106],[22.4580836,37.9337602],[22.4578023,37.9336124],[22.4578172,37.9334413],[22.4577512,37.9333323],[22.4576047,37.9332673],[22.4576761,37.933115],[22.4575411,37.9330412],[22.4575997,37.9329608],[22.4574988,37.9328874],[22.4575578,37.9327891],[22.4575024,37.9327162],[22.457572,37.9326541],[22.4574834,37.9325357],[22.4575312,37.9324282],[22.4574652,37.9323192],[22.4575577,37.9322483],[22.4574921,37.9321213],[22.4576305,37.932033],[22.4576329,37.9319159],[22.457714,37.9318448],[22.4576497,37.9316547],[22.457481,37.9315624],[22.4570794,37.9311786],[22.4569254,37.9309243],[22.4562736,37.9305372],[22.4560021,37.9304615],[22.4555445,37.9305817],[22.4554084,37.9303366],[22.4551832,37.9302255],[22.4546796,37.9298223],[22.454527,37.9295049],[22.4544261,37.9294315],[22.4542324,37.9290054],[22.4542008,37.9283381],[22.4540891,37.9281879],[22.4538673,37.9278155],[22.4536314,37.9276682],[22.4531112,37.9275171],[22.4530668,37.9274625],[22.4531476,37.9274095],[22.453104,37.9273188],[22.4523972,37.9268409],[22.4518406,37.9267975],[22.4515585,37.9266856],[22.4512296,37.9266362],[22.4507856,37.9266484],[22.4507654,37.926531],[22.4503578,37.9264355],[22.4503868,37.9261385],[22.4502977,37.9260472],[22.4501388,37.9260271],[22.4499479,37.9259074],[22.4496294,37.9259032],[22.4495297,37.9257757],[22.4493367,37.9257552],[22.4491117,37.925635],[22.4488994,37.925452],[22.4483572,37.9247239],[22.4479284,37.924556],[22.4474158,37.9240445],[22.4466625,37.92362],[22.4461643,37.9235053],[22.4457893,37.9234823],[22.4452074,37.9235648],[22.4439911,37.9235127],[22.4433525,37.9235853],[22.4427635,37.9234604],[22.4420303,37.923703],[22.4418947,37.9236561],[22.4416555,37.923671],[22.4410493,37.9238252],[22.4410358,37.9239241],[22.4413509,37.9240905],[22.4413019,37.9242521],[22.4411283,37.924394],[22.4406699,37.9245501],[22.4394216,37.9243984],[22.4392061,37.9242514],[22.4389309,37.9238151],[22.4389326,37.9231933],[22.4388781,37.9230844],[22.4383257,37.9228428],[22.4381703,37.9226605],[22.4374562,37.9225338],[22.4373675,37.9224245],[22.436916,37.9222563],[22.4370059,37.9217708],[22.4368221,37.9213178],[22.4364942,37.9212233],[22.436285,37.9208961],[22.4361565,37.9205159],[22.4356404,37.9201756],[22.4353633,37.9198294],[22.435233,37.9195393],[22.4348397,37.9193088],[22.4348678,37.9190568],[22.434734,37.9189289],[22.4347734,37.918677],[22.434554,37.9182956],[22.4342849,37.9181118],[22.4342225,37.9178316],[22.4334948,37.9174479],[22.4331426,37.9174252],[22.4329591,37.9174948],[22.432291,37.9173507],[22.431866,37.9175434],[22.4311474,37.9176329],[22.430865,37.917539],[22.4303877,37.9175146],[22.4301563,37.9172637],[22.4300888,37.9175602],[22.4299379,37.9177024],[22.4297671,37.9177091],[22.4295663,37.9180579],[22.4296635,37.9183025],[22.4296035,37.9189867],[22.4301414,37.9199041],[22.4300452,37.9201461],[22.4300744,37.9203808],[22.4299773,37.9206679],[22.4301101,37.9208409],[22.4301404,37.9210216],[22.4300785,37.9212551],[22.4301588,37.9217608],[22.4303252,37.9219613],[22.4306508,37.9221639],[22.4307463,37.9224896],[22.4310287,37.9225835],[22.4311288,37.922693],[22.4312756,37.9232807],[22.4311628,37.9235496]]},{"id":17849,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u039a\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u039a\u03b1\u03c1\u03c5\u03ac","description_GR":"\u03a0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bd \u03ac\u03bd\u03c9 \u03c1\u03bf\u03c5 \u03c4\u03bf\u03c5 \u038c\u03bb\u03b2\u03b9\u03bf\u03c5","path":"PELOPONNESE\/Pelop_Ziria_Karya_loop","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":4,"length":6041,"name_EN":"Ziria Mt.: A loop trail in Karya","description_EN":"Crossing the upper part of Olvios river","ascent_time":140,"descent_time":140,"marker":"Red_dots","level":10,"ascent":249,"descent":249,"maxelev":1250,"minelev":1031,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.40467 38.00607,22.41407 38.01836)","views":19,"millestones":"0,22.4138613,38.0157678#1,22.4126008,38.0139878#2,22.4067118,38.0177501#3,22.4073694,38.0104723#4,22.4071229,38.0091379#5,22.4126193,38.0140006#6,22.4138613,38.0157678","x":22.4073932,"y":38.0099938,"coor":[[22.4138613,38.0157678],[22.4128751,38.0160203],[22.4123369,38.01668],[22.4121913,38.0170925],[22.412488,38.0181239],[22.4124578,38.018466],[22.4118353,38.0173896],[22.4113113,38.0168599],[22.4110695,38.0164511],[22.4110084,38.0161168],[22.4112135,38.0155878],[22.4122441,38.0148087],[22.412634,38.0146878],[22.412983,38.0143501],[22.412873,38.0141683],[22.412581,38.0139752],[22.4123887,38.013932],[22.4121026,38.0139912],[22.411734,38.0142972],[22.4113109,38.0143725],[22.4111227,38.0146494],[22.4106655,38.0148189],[22.41015,38.0149066],[22.4099988,38.0150487],[22.4100258,38.0153825],[22.4098817,38.015723],[22.4093858,38.0160047],[22.4090707,38.0160906],[22.409134,38.0163257],[22.4094466,38.0166184],[22.4095365,38.0166736],[22.4097419,38.0166584],[22.4098986,38.0167867],[22.4097212,38.0170907],[22.4096684,38.0174234],[22.4097211,38.0176224],[22.4093425,38.0177434],[22.4092118,38.017994],[22.40905,38.0181],[22.408369,38.0179691],[22.4078875,38.0181293],[22.4073744,38.0181494],[22.4072393,38.0180755],[22.407122,38.0177044],[22.4070105,38.0175947],[22.4067368,38.017609],[22.4067109,38.0177529],[22.4065348,38.0179938],[22.4061794,38.0175744],[22.4062296,38.0173588],[22.406487,38.0170469],[22.4064838,38.0166684],[22.4065946,38.0162823],[22.406701,38.0161035],[22.4068746,38.0159797],[22.4069644,38.0155123],[22.4066518,38.014697],[22.4061993,38.014024],[22.4063135,38.0134848],[22.4066751,38.0130932],[22.4064339,38.0126573],[22.4064983,38.0124284],[22.4069055,38.0120374],[22.4073071,38.0118987],[22.4079314,38.0114745],[22.4076734,38.0112908],[22.4074633,38.0109996],[22.4073304,38.0102633],[22.4073932,38.0099938],[22.407048,38.0096286],[22.4071593,38.0092246],[22.406944,38.0086449],[22.4065311,38.0082518],[22.4062142,38.0081574],[22.4059338,38.0079553],[22.4058176,38.0075392],[22.4055278,38.0072469],[22.4050877,38.006529],[22.4049413,38.0059457],[22.4050877,38.006529],[22.4055278,38.0072469],[22.4058176,38.0075392],[22.4059338,38.0079553],[22.4062142,38.0081574],[22.4065311,38.0082518],[22.406944,38.0086449],[22.4071593,38.0092246],[22.407048,38.0096286],[22.4073932,38.0099938],[22.4073304,38.0102633],[22.4077351,38.0105121],[22.4080755,38.0105708],[22.4082503,38.0109156],[22.4083516,38.010971],[22.4086147,38.0109205],[22.4087089,38.0107776],[22.4088106,38.010815],[22.4090168,38.0107638],[22.4094587,38.0108689],[22.4096268,38.0109973],[22.4098762,38.0110548],[22.4103126,38.011349],[22.4105926,38.0113889],[22.4106244,38.0114975],[22.4108072,38.0114729],[22.4111341,38.0116305],[22.4113393,38.0116243],[22.4114045,38.0117693],[22.4115736,38.0118527],[22.4117072,38.0122736],[22.4115969,38.0126326],[22.4117749,38.0128333],[22.4117223,38.013157],[22.4118767,38.0133934],[22.4118382,38.0135911],[22.4117932,38.0136671],[22.4123427,38.0135394],[22.4125361,38.013551],[22.4121026,38.0139912],[22.4123887,38.013932],[22.412581,38.0139752],[22.412873,38.0141683],[22.412983,38.0143501],[22.412634,38.0146878],[22.4122441,38.0148087],[22.4112135,38.0155878],[22.4110084,38.0161168],[22.4110695,38.0164511],[22.4113113,38.0168599],[22.4118353,38.0173896],[22.4124578,38.018466],[22.412488,38.0181239],[22.4121913,38.0170925],[22.4123369,38.01668],[22.4128751,38.0160203],[22.4138613,38.0157678]]},{"id":17850,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03af\u03c4\u03c3\u03b1-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae 2375","description_GR":"","path":"PELOPONNESE\/Pelop_Ziria_Flabouritsa_summit","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":6661,"name_EN":"Ziria Mt.: Flabouritsa ravine-peak 2375","description_EN":"a","ascent_time":180,"descent_time":140,"marker":"Red_triangle","level":10,"ascent":1002,"descent":32,"maxelev":2361,"minelev":1369,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.39429 37.91697,22.43016 37.9391)","views":32,"millestones":"0,22.4301574,37.9172637#1,22.4270115,37.9228064#2,22.4215876,37.9292835#3,22.4129331,37.9277402#4,22.4044981,37.9285216#5,22.4000414,37.9297221#6,22.3944267,37.9350268#6.7,22.3958560,37.9391196","x":22.4083029,"y":37.9282353,"coor":[[22.4301574,37.9172637],[22.4297713,37.9172315],[22.4292425,37.9169541],[22.4288086,37.9170294],[22.4285413,37.9172962],[22.4284624,37.9183811],[22.4284448,37.9186197],[22.4285446,37.9192789],[22.4284918,37.9196207],[22.4291479,37.9203324],[22.4291556,37.9205037],[22.4290679,37.9205657],[22.4290324,37.9213808],[22.4290531,37.9214802],[22.4292873,37.9216996],[22.4292758,37.9222402],[22.4290267,37.9221828],[22.4285812,37.922267],[22.4283833,37.9224806],[22.4281142,37.9222968],[22.4280779,37.9223954],[22.4278615,37.9224105],[22.4277427,37.9226433],[22.4275731,37.9225959],[22.4274574,37.9226845],[22.4266563,37.9229081],[22.426403,37.9230489],[22.4262847,37.9232636],[22.4263236,37.9235706],[22.4262602,37.9238761],[22.4260759,37.9239818],[22.4259921,37.924179],[22.4256679,37.924445],[22.4255599,37.9247049],[22.4256008,37.9249217],[22.4255301,37.925038],[22.4253462,37.9251256],[22.4252943,37.9254223],[22.4247064,37.9257839],[22.4246131,37.9258908],[22.4241209,37.9260284],[22.4239571,37.9262425],[22.4236931,37.9263472],[22.423447,37.9266863],[22.4231258,37.9268082],[22.4228135,37.9270473],[22.4227655,37.9271638],[22.4226271,37.9272521],[22.4225421,37.9275033],[22.4225708,37.927756],[22.4223719,37.9280147],[22.4218045,37.9284757],[22.4218173,37.9287237],[22.4217998,37.9288452],[22.4220117,37.9290463],[22.4220641,37.9292543],[22.4220906,37.9293943],[22.4217583,37.9293583],[22.4208292,37.9289583],[22.4194515,37.9290029],[22.4193731,37.9289478],[22.4193097,37.9287216],[22.4191292,37.9286471],[22.4184315,37.9289847],[22.4178874,37.9292522],[22.4168548,37.9296529],[22.4155664,37.9297798],[22.4150977,37.9298816],[22.4148483,37.9298422],[22.4146235,37.929713],[22.4142019,37.9297433],[22.4139578,37.9294517],[22.4135705,37.9294735],[22.413503,37.9294365],[22.4135252,37.9289322],[22.4133712,37.9286867],[22.4133217,37.9283436],[22.4128152,37.9275617],[22.4126006,37.9274868],[22.4121605,37.9276836],[22.41174,37.9276599],[22.4116471,37.9277488],[22.4115219,37.9277471],[22.4107865,37.9275569],[22.4100676,37.9276553],[22.409533,37.9276481],[22.4092731,37.9275635],[22.4089774,37.9275595],[22.4086128,37.9281133],[22.4083029,37.9282353],[22.407584,37.9283337],[22.4069934,37.9288124],[22.4068932,37.9287119],[22.406801,37.9287647],[22.4067252,37.9291151],[22.4064676,37.9294541],[22.4065566,37.9295454],[22.406339,37.9296146],[22.4062064,37.9294325],[22.4061818,37.9289906],[22.4060496,37.9287906],[22.4059484,37.9287351],[22.4056636,37.9287493],[22.4053023,37.9286182],[22.4050369,37.9285966],[22.4045501,37.9284818],[22.4044113,37.9285881],[22.4038273,37.9287604],[22.4036618,37.9290466],[22.4038283,37.9292381],[22.4036428,37.9293978],[22.4036288,37.9300465],[22.4034311,37.9302421],[22.4034324,37.9307107],[22.4032587,37.9308525],[22.4031908,37.9308336],[22.4031528,37.9310133],[22.402919,37.9307758],[22.4027368,37.9307824],[22.4026087,37.930704],[22.4025624,37.9307394],[22.4023736,37.9306738],[22.4022968,37.9303934],[22.4020407,37.9301376],[22.4014731,37.9300758],[22.4012268,37.9298922],[22.4008144,37.9298055],[22.4007717,37.9296787],[22.4008614,37.9292113],[22.4009555,37.9291225],[22.400958,37.9290053],[22.4007928,37.9287508],[22.401208,37.9284951],[22.4010163,37.9284158],[22.4009029,37.9284459],[22.4006958,37.9285016],[22.4004849,37.9287871],[22.4004932,37.9289269],[22.4005434,37.929234],[22.4002752,37.9295368],[22.3997657,37.9299444],[22.3994391,37.9300031],[22.3994266,37.930057],[22.3990398,37.9300517],[22.398747,37.9299125],[22.3983827,37.9297589],[22.3981438,37.9297556],[22.3980681,37.9296419],[22.3976134,37.9299827],[22.3973265,37.9301951],[22.397208,37.9304098],[22.3973294,37.9307494],[22.3975505,37.9311444],[22.3974965,37.9313374],[22.3970563,37.9317009],[22.396869,37.9319417],[22.3967207,37.9319577],[22.3965001,37.932162],[22.3962591,37.9322578],[22.3961298,37.9324453],[22.3957354,37.9327914],[22.3957331,37.9328995],[22.3953492,37.9332187],[22.3945702,37.9332036],[22.394725,37.9336698],[22.3948214,37.9338469],[22.3947953,37.9339997],[22.3944341,37.934914],[22.3943413,37.936562],[22.3944916,37.9375013],[22.3947996,37.937893],[22.3948445,37.9380153],[22.3951233,37.9382805],[22.395288,37.9385531],[22.3953453,37.9385358],[22.3955877,37.9388996],[22.3959278,37.9389583],[22.395856,37.9391196]]},{"id":17855,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0391\u03c0\u03cc \u03c4\u03bf \u03a3\u03c4\u03b5\u03bd\u03cc \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 2375 \u03c4\u03b7\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Ziria_Steno_summit","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":12017,"name_EN":"Zireia Mt.: From Steno to the summit","description_EN":"Ascent to the 2375 point","ascent_time":530,"descent_time":410,"marker":"Red_dots","level":10,"ascent":1543,"descent":34,"maxelev":2368,"minelev":848,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34838 37.92532,22.39768 37.96612)","views":15,"millestones":"0,22.3485483,37.9584581#1,22.3566480,37.9638719#2,22.3601778,37.9613037#3,22.3621252,37.9566507#4,22.3650208,37.9531281#5,22.3655097,37.9460312#6,22.3607775,37.9380586#7,22.3605244,37.9294420#8,22.3711635,37.9268516#9,22.3813917,37.9255082#10,22.3916573,37.9282255#11,22.3954433,37.9331368#12,22.3957882,37.9390826","x":22.3606482,"y":37.9363497,"coor":[[22.3485483,37.9584581],[22.3489139,37.9584452],[22.34955,37.9590129],[22.3498483,37.9594136],[22.3502495,37.9597978],[22.3516513,37.9606735],[22.3520318,37.9609673],[22.3530646,37.9614504],[22.353207,37.9615875],[22.3538242,37.9619837],[22.3543654,37.9622166],[22.3559667,37.9623831],[22.3561699,37.9624581],[22.3566726,37.963907],[22.3566723,37.9644297],[22.3568463,37.9653063],[22.3578498,37.9662486],[22.3579522,37.96625],[22.358012,37.9661562],[22.3575551,37.9652036],[22.3575948,37.9649518],[22.3579349,37.9645059],[22.3584208,37.9641522],[22.358995,37.9639259],[22.3597012,37.9639087],[22.3598172,37.9638112],[22.3598766,37.9626765],[22.3600683,37.9622466],[22.3603859,37.9617824],[22.3600721,37.9610481],[22.3600832,37.9605526],[22.3601692,37.9602654],[22.3605342,37.9597208],[22.3606241,37.9592624],[22.3609777,37.9587176],[22.361032,37.9583218],[22.3609324,37.9581943],[22.3605727,37.957991],[22.3601373,37.9581201],[22.359991,37.958046],[22.3600982,37.9578312],[22.3607811,37.957318],[22.3607941,37.9572461],[22.3607149,37.957227],[22.3599235,37.9574953],[22.3595832,37.9574455],[22.3595177,37.9573184],[22.36001,37.9566764],[22.3608321,37.9565617],[22.3616569,37.9563209],[22.3618049,37.9563229],[22.3619731,37.9564334],[22.3621717,37.9567155],[22.3623544,37.9572047],[22.3624564,37.9572242],[22.3625886,37.9563969],[22.3625546,37.9558737],[22.362281,37.9553833],[22.362296,37.9552213],[22.3623882,37.9551685],[22.3625585,37.9551889],[22.3630861,37.9555207],[22.363408,37.9558856],[22.3635032,37.9562114],[22.3635829,37.9562125],[22.3636675,37.9559884],[22.3634943,37.954562],[22.3637598,37.9538808],[22.363865,37.9537561],[22.3639784,37.9537757],[22.3640251,37.954236],[22.3641373,37.9543096],[22.3644467,37.9537011],[22.3647838,37.9533814],[22.3648813,37.9530944],[22.3650398,37.9531326],[22.365113,37.953422],[22.3652272,37.9534056],[22.365212,37.9530629],[22.3653541,37.9528125],[22.3654727,37.952679],[22.36594,37.9526495],[22.3663981,37.9525206],[22.3664001,37.9524305],[22.3661043,37.9524264],[22.3662366,37.9523111],[22.366348,37.9503661],[22.3665043,37.9499897],[22.3665608,37.9494949],[22.3667859,37.9485788],[22.3666176,37.9474409],[22.3665642,37.947287],[22.365941,37.9466475],[22.3654338,37.9459104],[22.3650752,37.9451484],[22.3646644,37.9446831],[22.3643127,37.9443448],[22.3638519,37.944086],[22.3629753,37.9430735],[22.3627147,37.9425111],[22.362116,37.9417999],[22.3617083,37.9411994],[22.3613187,37.9402928],[22.3611767,37.9396735],[22.3611466,37.9390152],[22.3607702,37.9380276],[22.3605927,37.9367995],[22.3606482,37.9363497],[22.360854,37.9357938],[22.361109,37.9353602],[22.3611854,37.9349918],[22.3616963,37.9340166],[22.3618384,37.9333337],[22.3608825,37.9318514],[22.3606866,37.9314521],[22.3605242,37.9305667],[22.360521,37.9293635],[22.360717,37.9292491],[22.3614482,37.9291151],[22.3620101,37.9289157],[22.3630236,37.9288757],[22.3635037,37.9287742],[22.3640888,37.9285571],[22.364683,37.9284392],[22.3662,37.928271],[22.3666474,37.928106],[22.3676997,37.9278502],[22.3681148,37.9276036],[22.3692111,37.9274206],[22.369963,37.9273769],[22.3708142,37.9269561],[22.3711464,37.9268526],[22.3714198,37.9268383],[22.3716546,37.9269452],[22.371916,37.9269578],[22.3725435,37.9268764],[22.373282,37.9269227],[22.3736033,37.9268009],[22.3739256,37.9268234],[22.3742693,37.9267966],[22.3752334,37.9264134],[22.3753956,37.9262805],[22.3755149,37.9260298],[22.3757915,37.9258714],[22.3780194,37.9259652],[22.3785073,37.9255033],[22.3790608,37.9251685],[22.379666,37.9250687],[22.3799496,37.9251852],[22.3805407,37.9252114],[22.3807985,37.9253862],[22.3813093,37.9254382],[22.3815774,37.9256672],[22.3822299,37.9260006],[22.3827735,37.9261163],[22.3829906,37.9260742],[22.383633,37.9263534],[22.3844593,37.926545],[22.3851098,37.9269775],[22.3855718,37.9271821],[22.3863307,37.9273367],[22.3868545,37.9273168],[22.3871443,37.9275912],[22.3873694,37.9277024],[22.3880868,37.9276762],[22.3887182,37.9279372],[22.3891371,37.928033],[22.3894007,37.9279465],[22.3897631,37.9280236],[22.3900033,37.9279638],[22.3904771,37.9281505],[22.3908662,37.9280477],[22.3914504,37.9281593],[22.3920266,37.9283474],[22.3923578,37.9286493],[22.3930216,37.9289918],[22.3932028,37.9290304],[22.3935797,37.9294861],[22.393888,37.9294678],[22.3943236,37.9298432],[22.3946405,37.9299197],[22.395121,37.9298],[22.3961308,37.929931],[22.3965183,37.9299002],[22.3971128,37.9300615],[22.3972853,37.9301089],[22.3972063,37.9304098],[22.397328,37.9307494],[22.3975498,37.9311444],[22.3974958,37.9313374],[22.3970555,37.9317009],[22.3968683,37.9319417],[22.39672,37.9319577],[22.3964994,37.932162],[22.3962584,37.9322578],[22.3961291,37.9324453],[22.3957347,37.9327914],[22.3957324,37.9328995],[22.3953485,37.9332187],[22.3945691,37.9332036],[22.3947243,37.9336698],[22.3948204,37.9338469],[22.3947943,37.9339997],[22.394433,37.934914],[22.3943403,37.936562],[22.3944905,37.9375013],[22.3947988,37.937893],[22.3948442,37.9380153],[22.3951229,37.9382804],[22.3952877,37.9385531],[22.3953449,37.9385358],[22.3955874,37.9388996],[22.3959275,37.9389583],[22.3958557,37.9391196],[22.3957882,37.9390826]]},{"id":17856,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u039a\u03c5\u03bb\u03bb\u03ae\u03bd\u03b7-\u039c\u03b9\u03ba\u03c1\u03ae \u0396\u03ae\u03c1\u03b5\u03b9\u03b1","description_GR":"\u03a0\u03b5\u03c1\u03af\u03c0\u03bb\u03bf\u03ba\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03b5 \u03b5\u03c1\u03b7\u03bc\u03b9\u03ba\u03ac \u03c4\u03bf\u03c0\u03af\u03b1","path":"PELOPONNESE\/Pelop_Ziria_Killini_MikriZiria","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":8517,"name_EN":"Ziria Mt.: Killini-Mikri Ziria","description_EN":"A difficult trail across an isolated area","ascent_time":310,"descent_time":240,"marker":"No_marks","level":10,"ascent":1186,"descent":66,"maxelev":2107,"minelev":982,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.45185 37.89568,22.47207 37.92922)","views":30,"millestones":"0,22.4720212,37.8979429#1,22.4673602,37.8975714#2,22.4671242,37.9049221#3,22.4620800,37.9079964#4,22.4611827,37.9154045#5,22.4616511,37.9193848#6,22.4528048,37.9221318#7,22.4562356,37.9287929#8,22.4661471,37.9289407#8.5,22.4695799,37.9277235","x":22.4625804,"y":37.9161372,"coor":[[22.4720212,37.8979429],[22.4714614,37.8980618],[22.4712911,37.8980506],[22.4706577,37.8973304],[22.4700927,37.8972599],[22.4698816,37.8972932],[22.4698258,37.8973105],[22.4695096,37.8973019],[22.4691273,37.8974186],[22.4687918,37.8971439],[22.4683217,37.896178],[22.4679625,37.895948],[22.4667868,37.8956082],[22.4663313,37.8956383],[22.4656424,37.8959538],[22.4657205,37.8960269],[22.466483,37.8960008],[22.466978,37.8962596],[22.4671312,37.89655],[22.4673615,37.8975083],[22.4673457,37.8982741],[22.4667497,37.8990414],[22.4663711,37.8997484],[22.466311,37.9004506],[22.4662022,37.9007646],[22.4662892,37.900955],[22.4668163,37.9013133],[22.4668996,37.9016839],[22.4671756,37.9020841],[22.4676277,37.9022251],[22.4678159,37.9024709],[22.4678234,37.9026603],[22.4677197,37.902722],[22.4669853,37.9026584],[22.4671626,37.902886],[22.4670183,37.9032626],[22.4674289,37.9037546],[22.4674798,37.9040437],[22.4672676,37.9044014],[22.467179,37.9048328],[22.4670142,37.9051011],[22.4665857,37.905474],[22.4664447,37.9056884],[22.4663431,37.9062008],[22.4656753,37.9065886],[22.4655435,37.9069114],[22.4655737,37.907101],[22.4652549,37.9071149],[22.4651276,37.9072214],[22.464964,37.9079763],[22.4647532,37.9082709],[22.4648379,37.9096689],[22.4647888,37.9098395],[22.4646205,37.9099995],[22.4643213,37.9093467],[22.4639405,37.9090624],[22.4636316,37.9085987],[22.463207,37.9082327],[22.4627305,37.9080552],[22.462152,37.9079756],[22.4618741,37.9080576],[22.4618598,37.9082016],[22.4620937,37.908439],[22.4620797,37.9085649],[22.461988,37.9085998],[22.4619595,37.9086535],[22.4627322,37.9091187],[22.4629927,37.9097169],[22.4630188,37.9101048],[22.4632057,37.9104136],[22.4632023,37.9105758],[22.4630849,37.9107545],[22.4631733,37.9114226],[22.4630907,37.9115657],[22.4631204,37.9117824],[22.4630284,37.9118262],[22.4627827,37.911778],[22.4625107,37.9117834],[22.46235,37.911903],[22.462229,37.9122529],[22.4619978,37.9124301],[22.4618641,37.9128429],[22.4618238,37.9131398],[22.462039,37.9137284],[22.4616258,37.9139032],[22.4615997,37.9140651],[22.4614716,37.9142076],[22.4611497,37.9149154],[22.4612106,37.9158174],[22.4614412,37.9159421],[22.4621698,37.9159156],[22.4630511,37.9156567],[22.4630265,37.9157465],[22.4625804,37.9161372],[22.4618106,37.9170464],[22.4615257,37.9176195],[22.4614878,37.9177992],[22.4616741,37.9186848],[22.4617289,37.9187847],[22.4618195,37.9188039],[22.4623767,37.9182704],[22.4629215,37.9183316],[22.4630902,37.918424],[22.4625076,37.9185425],[22.4623389,37.9186169],[22.4618272,37.919151],[22.4618231,37.9193492],[22.4619948,37.9196218],[22.4616781,37.9193833],[22.4614275,37.9193981],[22.461106,37.9195381],[22.4609015,37.9195264],[22.4605323,37.9197739],[22.4599522,37.920316],[22.4597581,37.9203496],[22.4593474,37.9208308],[22.459173,37.9210088],[22.4584644,37.9211617],[22.458234,37.9213029],[22.4575008,37.9215456],[22.4566948,37.921463],[22.456156,37.9211134],[22.4554171,37.9210857],[22.4548295,37.9208978],[22.4543848,37.920946],[22.4542453,37.9210884],[22.4542979,37.9211386],[22.4542001,37.9214618],[22.4543061,37.9218327],[22.4540503,37.921978],[22.4532084,37.9222012],[22.4529301,37.92213],[22.4527558,37.9221322],[22.4527077,37.9222578],[22.4527846,37.9223849],[22.45263,37.9227073],[22.4524791,37.9228495],[22.4525225,37.9229493],[22.4522511,37.9234143],[22.4522936,37.9235591],[22.4522333,37.9237205],[22.4520953,37.9237908],[22.4519539,37.9240232],[22.451985,37.9241678],[22.4521198,37.9242507],[22.4521172,37.9243769],[22.4519775,37.9245282],[22.452503,37.9249677],[22.45299,37.925614],[22.4531711,37.9256614],[22.4536079,37.9259916],[22.4538463,37.9260128],[22.4539214,37.92623],[22.4538893,37.9266802],[22.4539511,37.9269875],[22.4538919,37.9270948],[22.4539572,37.9272399],[22.4538461,37.927653],[22.4538655,37.9278154],[22.4540877,37.9281879],[22.4547285,37.92839],[22.4560423,37.9286777],[22.4566266,37.9290278],[22.4573159,37.9292531],[22.4575893,37.9292387],[22.4578077,37.9291334],[22.4582812,37.9287971],[22.4585841,37.9284586],[22.4587805,37.928317],[22.459055,37.9282485],[22.4599513,37.9283684],[22.460743,37.9285951],[22.4612153,37.9288626],[22.4615215,37.9289117],[22.4625526,37.9286232],[22.4630305,37.9286205],[22.4633577,37.9287509],[22.4641313,37.9293017],[22.4645514,37.9293433],[22.4650195,37.9292683],[22.4653809,37.9293991],[22.4655064,37.9293828],[22.4661758,37.9289229],[22.4672422,37.9279815],[22.4686013,37.9277288],[22.4695799,37.9277235]]},{"id":17858,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u03a4\u03c1\u03af\u03ba\u03b1\u03bb\u03b1 \u03c3\u03c4\u03bf \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0391 \u03b1\u03c0\u03cc \u03c4\u03bf \u0393\u03c5\u03bc\u03bd\u03cc","description_GR":"\u0395\u03cd\u03ba\u03bf\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03b5\u03be\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03ae \u03b8\u03ad\u03b1","path":"PELOPONNESE\/Pelop_Ziria_Gymno_RefugeA","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":7728,"name_EN":"Ziria Mt.: Trikala to Refuge A via Gymno ridge","description_EN":"An easy trail with unobstructed view","ascent_time":210,"descent_time":185,"marker":"Red_dots","level":10,"ascent":609,"descent":218,"maxelev":1613,"minelev":1130,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.42738 37.94812,22.46422 37.98179)","views":12,"millestones":"0,22.4635191,37.9817804#1,22.4557550,37.9775189#2,22.4581422,37.9740744#3,22.4502571,37.9704712#4,22.4443830,37.9632506#5,22.4391152,37.9561014#6,22.4333556,37.9491775#7,22.4280152,37.9526345#7.7,22.4295487,37.9511727","x":22.4449335,"y":37.9644176,"coor":[[22.4635191,37.9817804],[22.4633939,37.9817787],[22.4628995,37.9820066],[22.4622778,37.9821156],[22.4621729,37.9822314],[22.4620017,37.9822472],[22.4614651,37.9817715],[22.4606789,37.9812566],[22.4602925,37.9808955],[22.4601825,37.9806102],[22.4600869,37.9802845],[22.4598156,37.9799656],[22.4595855,37.9797598],[22.4591688,37.979538],[22.4584105,37.9793208],[22.4580197,37.9789552],[22.45771,37.9786222],[22.4576132,37.9783506],[22.4574345,37.978186],[22.4572918,37.9779318],[22.4573908,37.9775546],[22.4573358,37.9774637],[22.4570751,37.9774062],[22.4566409,37.9774817],[22.455958,37.9774727],[22.4556948,37.9775323],[22.4554342,37.9774748],[22.4552397,37.9775173],[22.4548918,37.9774497],[22.4547323,37.9773349],[22.4539721,37.9772078],[22.4532938,37.9769826],[22.4530695,37.9768174],[22.4530925,37.9765879],[22.4528425,37.9765666],[22.453009,37.9764471],[22.453026,37.976177],[22.4533646,37.9757759],[22.4535158,37.9756247],[22.4539187,37.9754137],[22.4539676,37.9752521],[22.4542894,37.9751121],[22.4545117,37.9748267],[22.4545262,37.9746737],[22.454658,37.9745312],[22.4549045,37.9736332],[22.4551242,37.9734739],[22.455408,37.9735137],[22.4571282,37.9740049],[22.458797,37.9741124],[22.4588554,37.974041],[22.4588361,37.9739957],[22.4565151,37.9733795],[22.4561722,37.9734471],[22.4558442,37.9733437],[22.4552311,37.9732635],[22.4547676,37.9731042],[22.4544478,37.9731541],[22.4541073,37.9731046],[22.4538835,37.9729214],[22.453664,37.9730717],[22.4531651,37.972975],[22.4529849,37.9728825],[22.4527303,37.9725367],[22.4519048,37.9722735],[22.4513019,37.9717068],[22.4512119,37.9713857],[22.4507574,37.9708029],[22.4498256,37.9701778],[22.4495823,37.9698412],[22.448871,37.9695615],[22.4481782,37.9689395],[22.447415,37.967884],[22.4470874,37.9677625],[22.4470791,37.9676182],[22.4462172,37.9669219],[22.4457313,37.9662126],[22.4457461,37.9660505],[22.4454334,37.9655417],[22.4454835,37.9653261],[22.4449335,37.9644176],[22.4447507,37.9639105],[22.4447378,37.9637617],[22.4445588,37.9636151],[22.4445749,37.96339],[22.4445089,37.963281],[22.4442711,37.9632238],[22.4439566,37.9630213],[22.4433797,37.9628515],[22.4432232,37.9627142],[22.4432156,37.9625339],[22.442842,37.9624388],[22.442916,37.9621695],[22.4424147,37.9616491],[22.4420639,37.9610136],[22.4417639,37.9606672],[22.441584,37.960025],[22.4416317,37.9596516],[22.4413689,37.9591615],[22.4411804,37.9583839],[22.4410257,37.9581656],[22.4408911,37.9575329],[22.4407792,37.9574413],[22.4404944,37.9569149],[22.4402919,37.956804],[22.4401289,37.9566081],[22.4397822,37.9563151],[22.4394325,37.9561663],[22.4391143,37.956144],[22.4391227,37.9557476],[22.4389259,37.9553665],[22.4388851,37.9551407],[22.4386868,37.9548316],[22.4384171,37.9546658],[22.4383459,37.9542683],[22.4378828,37.9541],[22.4375851,37.9541861],[22.4374603,37.9541665],[22.4371789,37.9534778],[22.4372203,37.9531359],[22.4364463,37.9526029],[22.436306,37.9522406],[22.4358257,37.9518106],[22.4354615,37.951274],[22.434957,37.9509159],[22.4345068,37.9506756],[22.4342918,37.9506186],[22.4341383,37.9503462],[22.4338688,37.9501714],[22.433669,37.9499344],[22.4334522,37.9494269],[22.4332903,37.9490101],[22.433383,37.9489303],[22.4332754,37.9486405],[22.432918,37.9483203],[22.4322528,37.948023],[22.4320866,37.9476964],[22.4319432,37.947699],[22.431372,37.9477995],[22.4310082,37.9483173],[22.4307309,37.9485119],[22.430525,37.9485632],[22.4302755,37.9485239],[22.429674,37.9485609],[22.4289188,37.9487491],[22.4289196,37.9499342],[22.4286614,37.9500839],[22.4284059,37.9503238],[22.4281911,37.9507896],[22.4280327,37.9518149],[22.4279985,37.9528823],[22.4280461,37.9538563],[22.4281734,37.9542906],[22.4283933,37.9546044],[22.4284191,37.9545101],[22.4283344,37.9542116],[22.4283446,37.9537341],[22.4286624,37.9521702],[22.4288738,37.9518667],[22.4295487,37.9511727]]},{"id":17859,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u039b\u03af\u03bc\u03bd\u03b7 \u0394\u03ac\u03c3\u03b9\u03bf\u03c5-\u03a7\u03b9\u03bf\u03bd\u03bf\u03b4\u03c1\u03bf\u03bc\u03b9\u03ba\u03cc","description_GR":"\u039c\u03b9\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b9\u03bc\u03b7 \u03c3\u03c5\u03bd\u03b4\u03b5\u03c4\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae","path":"PELOPONNESE\/Pelop_Ziria_Dasios_SkiCenter","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":5882,"name_EN":"Ziria Mt.: Dasios lake to Ski Center","description_EN":"A useful connection trail","ascent_time":115,"descent_time":110,"marker":"No_marks","level":10,"ascent":92,"descent":80,"maxelev":1540,"minelev":1490,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.41905 37.94598,22.4312 37.98235)","views":42,"millestones":"0,22.4276018,37.9824592#1,22.4196399,37.9797521#2,22.4234302,37.9740090#3,22.4248936,37.9667022#4,22.4262079,37.9591084#5,22.4259502,37.9505831#5.9,22.4309415,37.9466717","x":22.4238485,"y":37.9665117,"coor":[[22.4276018,37.9824592],[22.4273931,37.9823663],[22.4270121,37.9820277],[22.4267361,37.9821592],[22.4263381,37.9821359],[22.4255812,37.9818554],[22.425116,37.981777],[22.4246033,37.9817972],[22.423563,37.9819905],[22.4227984,37.9820704],[22.4215812,37.982018],[22.421049,37.9818847],[22.4205562,37.9818646],[22.4196685,37.9818482],[22.4198711,37.9816932],[22.4203232,37.9804691],[22.4191202,37.9792273],[22.4197431,37.9794294],[22.4207552,37.9794881],[22.4215292,37.9794489],[22.4217408,37.9791859],[22.4218267,37.9788987],[22.4215722,37.9780211],[22.4215838,37.9774805],[22.4214652,37.9766408],[22.421529,37.9763172],[22.4213463,37.9758101],[22.4214621,37.9757215],[22.4216076,37.975737],[22.4217333,37.9756666],[22.4218116,37.975199],[22.4221573,37.9750054],[22.4227652,37.9747972],[22.4233964,37.9740307],[22.4235324,37.9739424],[22.4236406,37.97261],[22.4236329,37.9721683],[22.4236207,37.9719924],[22.4230935,37.9706246],[22.4229423,37.970244],[22.4230245,37.970128],[22.4231454,37.9692644],[22.4230937,37.9684887],[22.4231307,37.9678223],[22.4230368,37.9674245],[22.4230633,37.9669157],[22.4231262,37.9665876],[22.4233571,37.9666042],[22.4238485,37.9665117],[22.4249372,37.9667065],[22.4247738,37.9663618],[22.4247667,37.9661635],[22.4245132,37.9657726],[22.4244939,37.9656101],[22.4247035,37.9648559],[22.4246206,37.9644763],[22.4246358,37.9643954],[22.4247236,37.9639189],[22.4241663,37.96283],[22.4242643,37.9625068],[22.4247609,37.962171],[22.4261058,37.9618241],[22.4263998,37.9615982],[22.426612,37.9612586],[22.4262879,37.9604431],[22.4260922,37.960062],[22.4260301,37.9597728],[22.4262655,37.9588747],[22.4264604,37.9577914],[22.4268245,37.9567328],[22.4270057,37.9557079],[22.4268575,37.9546515],[22.4272979,37.9532154],[22.4273336,37.9522381],[22.426832,37.9517447],[22.4264073,37.9513786],[22.4264096,37.9512705],[22.4260318,37.9508418],[22.4259358,37.9505432],[22.4263712,37.9504048],[22.4267395,37.9502114],[22.4270189,37.9499178],[22.4283587,37.9489984],[22.428663,37.948606],[22.4288392,37.9485452],[22.4288097,37.9483286],[22.4289514,37.9481547],[22.4297483,37.9476066],[22.429954,37.9470326],[22.430102,37.9459621],[22.4305552,37.9460583],[22.4311373,37.9459759],[22.4311917,37.9462966],[22.4309949,37.946303],[22.4311484,37.9465754],[22.4309415,37.9466717]]},{"id":17860,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0391- \u03a0\u03bf\u03c5\u03bb\u03b9\u03bf\u03cd \u038c\u03c7\u03c4\u03bf\u03c2-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae 2376","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03b7\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Ziria_RefugeA_summit2","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":6844,"name_EN":"Ziria Mt.: Refuge A-Pouliou Ochtos-Peak 2376","description_EN":"Ascent to the main summit of Megali Ziria","ascent_time":225,"descent_time":185,"marker":"Red_dots","level":10,"ascent":921,"descent":74,"maxelev":2360,"minelev":1497,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.39557 37.92949,22.4317 37.95244)","views":30,"millestones":"0,22.4280017,37.9528824#1,22.4311603,37.9455521#2,22.4297140,37.9379770#3,22.4259450,37.9345500#4,22.4196095,37.9296651#5,22.4098446,37.9325361#6,22.4029245,37.9367013#6.8,22.3958560,37.9391196","x":22.4240803,"y":37.9307457,"coor":[[22.4280017,37.9528824],[22.4280359,37.9518149],[22.4281943,37.9507896],[22.4284091,37.9503239],[22.4286646,37.950084],[22.428903,37.949943],[22.428974,37.9498177],[22.4289217,37.9487491],[22.4296768,37.9485609],[22.4302787,37.9485239],[22.4302553,37.9480189],[22.4304914,37.9470848],[22.4306965,37.9465378],[22.4308251,37.9463773],[22.4309949,37.946303],[22.431192,37.9462966],[22.4313402,37.9463346],[22.431192,37.9462966],[22.4311373,37.9459759],[22.4312503,37.945698],[22.4310854,37.9454255],[22.4311021,37.9451734],[22.4309952,37.9448475],[22.4308732,37.9447017],[22.430811,37.9444125],[22.430445,37.943966],[22.4298057,37.9435249],[22.4295403,37.9431609],[22.4292825,37.9429772],[22.4293523,37.942906],[22.429214,37.9424536],[22.4294247,37.942177],[22.4294027,37.9421406],[22.4293329,37.9422118],[22.4292533,37.9422107],[22.4294229,37.9417264],[22.4297499,37.9413342],[22.4298931,37.9410207],[22.4301471,37.9408528],[22.4302066,37.9407275],[22.4302072,37.9404346],[22.4304079,37.9400948],[22.4303799,37.939806],[22.4305011,37.9394562],[22.4305645,37.9394165],[22.430395,37.9388284],[22.4302293,37.9385919],[22.4301035,37.9380855],[22.4300484,37.9380037],[22.4298218,37.9379556],[22.4295704,37.9380063],[22.4291794,37.9381994],[22.4289523,37.9381783],[22.4288017,37.9383025],[22.428515,37.9384068],[22.4284304,37.93864],[22.4282214,37.9388354],[22.4279376,37.9393363],[22.4277398,37.939541],[22.4278544,37.9387494],[22.4276699,37.9383324],[22.4276773,37.9374493],[22.4275466,37.9371772],[22.427446,37.936554],[22.4272748,37.9360471],[22.4272803,37.9352541],[22.4270161,37.934836],[22.4268364,37.9347254],[22.4261408,37.935329],[22.4259603,37.9347227],[22.4259244,37.9342716],[22.4257952,37.9339275],[22.4253514,37.9333988],[22.4246197,37.9330285],[22.4245772,37.9328838],[22.424808,37.9316702],[22.4247266,37.9312185],[22.4244854,37.9309585],[22.4240803,37.9307457],[22.4239837,37.9304741],[22.423782,37.9303272],[22.4235402,37.9299274],[22.4234159,37.9298897],[22.4231275,37.9295434],[22.4227434,37.9294121],[22.4220917,37.9293943],[22.4217593,37.9293583],[22.4206861,37.9296323],[22.4206051,37.9296943],[22.420672,37.9297583],[22.4205806,37.9297751],[22.419833,37.9296208],[22.4193988,37.9297051],[22.4189949,37.9299701],[22.4183847,37.930836],[22.4179195,37.9307757],[22.4176841,37.9306103],[22.4171485,37.9306482],[22.4168389,37.9307612],[22.4162511,37.9311138],[22.4159081,37.9311902],[22.4153298,37.9316241],[22.4152039,37.9316584],[22.4146364,37.9315967],[22.4139705,37.9316553],[22.413737,37.9316206],[22.4126247,37.9320202],[22.4121152,37.9319051],[22.41169,37.9320977],[22.4113803,37.9321656],[22.4111208,37.9323288],[22.4107903,37.9323514],[22.4103546,37.9325077],[22.4096254,37.9325519],[22.4088472,37.9327577],[22.4084597,37.9327885],[22.4083099,37.9328766],[22.4074972,37.9330999],[22.4067672,37.9331802],[22.4064956,37.9331134],[22.4059943,37.9331427],[22.4055645,37.9332855],[22.4053449,37.9334448],[22.4048669,37.9336636],[22.404735,37.9338105],[22.4045258,37.9340149],[22.4045541,37.9342857],[22.4048391,37.9347852],[22.4052098,37.9350065],[22.4053684,37.9353016],[22.405048,37.9353874],[22.4051578,37.9355691],[22.4052081,37.9358762],[22.4039627,37.9361116],[22.4038,37.9362716],[22.4033403,37.9364817],[22.403223,37.9366423],[22.4028001,37.9367267],[22.4025795,37.936931],[22.4023626,37.9369641],[22.4020976,37.9371137],[22.401217,37.937318],[22.4009166,37.9375302],[22.4007526,37.9377443],[22.4003414,37.9378198],[22.3998089,37.9380694],[22.3995529,37.9381335],[22.3994937,37.9382409],[22.3988892,37.9383047],[22.3980531,37.9385547],[22.3976091,37.9385667],[22.3966765,37.9390677],[22.3964148,37.9390641],[22.3960253,37.9391849],[22.3959928,37.9391124],[22.395856,37.9391196]]},{"id":17861,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0391\u03c0\u03cc \u03c4\u03b7 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 2375 \u03c4\u03b7\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Ziria_Goura_summit","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":8202,"name_EN":"Zireia Mt.: From Goura to the summit","description_EN":"Ascent to the 2375 point","ascent_time":295,"descent_time":225,"marker":"Red_dots","level":12,"ascent":1531,"descent":139,"maxelev":2361,"minelev":929,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34042 37.9253,22.39768 37.93835)","views":30,"millestones":"0,22.3405448,37.9326252#1,22.3457214,37.9311721#2,22.3514265,37.9292932#3,22.3605474,37.9281265#4,22.3711435,37.9267544#5,22.3813575,37.9254984#6,22.3916443,37.9281512#7,22.3961093,37.9324621#8.2,22.3958546,37.9391195","x":22.3757697,"y":37.9258576,"coor":[[22.3405448,37.9326252],[22.3423964,37.9328721],[22.3426394,37.9332],[22.3430043,37.9334169],[22.3444246,37.933509],[22.3451345,37.9337037],[22.3452288,37.9335608],[22.3451405,37.9329288],[22.3451587,37.9321179],[22.3453176,37.9321382],[22.345888,37.9330835],[22.3460722,37.9331491],[22.3459845,37.93249],[22.3462056,37.9317632],[22.3456189,37.931034],[22.345549,37.9306004],[22.3452857,37.9301641],[22.3455594,37.9296272],[22.3458029,37.9293783],[22.3459505,37.9288847],[22.3462108,37.9284378],[22.3465232,37.9282079],[22.3468183,37.9281264],[22.3471793,37.9283117],[22.3474748,37.9283249],[22.347695,37.9281477],[22.3482791,37.9279757],[22.3487886,37.9275773],[22.3490502,37.927581],[22.3493954,37.9274056],[22.3496145,37.9277872],[22.3496328,37.9279857],[22.3498119,37.9281144],[22.3496782,37.9285],[22.3497948,37.9288801],[22.3500085,37.9289913],[22.3505321,37.9289806],[22.3508921,37.9291659],[22.3512223,37.9291525],[22.3518049,37.9295572],[22.3529217,37.9299874],[22.3533858,37.9306067],[22.3540793,37.9311391],[22.3544797,37.9310456],[22.3546954,37.9310666],[22.3553479,37.9308865],[22.3557291,37.9306305],[22.3558481,37.9303978],[22.3564711,37.93001],[22.3570913,37.9297483],[22.3580163,37.9290853],[22.3581458,37.9288888],[22.3582625,37.9288724],[22.3605202,37.9281379],[22.3633519,37.9269607],[22.3653593,37.9267363],[22.3658957,37.9265635],[22.3668821,37.9267214],[22.367452,37.9266752],[22.3679169,37.9267447],[22.3683527,37.9265886],[22.3687629,37.9265582],[22.3695447,37.9261905],[22.3714191,37.9268383],[22.3716531,37.9269452],[22.3719145,37.9269578],[22.3725421,37.9268764],[22.3732806,37.9269227],[22.3736019,37.9268009],[22.3739357,37.9268326],[22.3742476,37.9267828],[22.3752117,37.9263996],[22.3754932,37.926016],[22.3757697,37.9258576],[22.3779976,37.9259514],[22.3787284,37.9253126],[22.3790391,37.9251547],[22.3796442,37.9250548],[22.3799595,37.9252034],[22.3805392,37.9252294],[22.380797,37.9254042],[22.3813079,37.9254562],[22.3815759,37.9256852],[22.3822285,37.9260186],[22.3827721,37.9261343],[22.3829891,37.9260922],[22.3836315,37.9263714],[22.3844579,37.926563],[22.3851083,37.9269955],[22.3855703,37.9272001],[22.3863292,37.9273547],[22.3868418,37.9273257],[22.3873682,37.9277114],[22.3880855,37.9276852],[22.389136,37.928033],[22.3893996,37.9279465],[22.389762,37.9280235],[22.3900022,37.9279637],[22.390476,37.9281505],[22.3908651,37.9280476],[22.3914497,37.9281593],[22.3918105,37.9281462],[22.3919027,37.9280934],[22.3922074,37.9282057],[22.3924822,37.9281283],[22.3926285,37.9282024],[22.3930485,37.9282442],[22.3942548,37.9287563],[22.394226,37.9290353],[22.3938104,37.929309],[22.3938877,37.9294678],[22.3943232,37.9298432],[22.3946402,37.9299197],[22.3951206,37.9298],[22.3961304,37.929931],[22.3965179,37.9299002],[22.3971117,37.930066],[22.397285,37.9301089],[22.3971793,37.9303103],[22.3972266,37.9304371],[22.3975491,37.9311444],[22.3974951,37.9313374],[22.3970559,37.9317009],[22.3968686,37.9319417],[22.3967193,37.9319577],[22.3964987,37.932162],[22.3962576,37.9322578],[22.3961284,37.9324453],[22.395734,37.9327914],[22.3957317,37.9328995],[22.3953492,37.9332187],[22.3945702,37.9332036],[22.394725,37.9336698],[22.39482,37.9338469],[22.3947939,37.9339997],[22.3944327,37.934914],[22.394341,37.936562],[22.3944912,37.9375013],[22.3947981,37.937893],[22.3948442,37.9380153],[22.3951218,37.9382804],[22.3952866,37.938553],[22.3953439,37.9385358],[22.3955863,37.9388996],[22.3959275,37.9389583],[22.3958546,37.9391195]]},{"id":17862,"author":"AnaDigit","name_GR":"\u03a3\u03c4\u03c5\u03bc\u03c6\u03b1\u03bb\u03af\u03b1: \u039c\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c2 \u03a3\u03c4\u03c5\u03bc\u03c6\u03b1\u03bb\u03af\u03b1\u03c2","description_GR":"\u03a0\u03b5\u03c1\u03b9\u03b2\u03b1\u03bb\u03bb\u03bf\u03bd\u03c4\u03b9\u03ba\u03ae \u03ba\u03b1\u03b9 \u03b1\u03c1\u03c7\u03b1\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ae \u03c0\u03b5\u03b6\u03bf\u03c0\u03bf\u03c1\u03af\u03b1","path":"PELOPONNESE\/Pelop_Korinthia_Stymfalia_loop","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":5,"length":8986,"name_EN":"Stymfalia: Greater loop of Stymphalia Lake","description_EN":"A long hike across natural and cultural POIs","ascent_time":165,"descent_time":170,"marker":"No_marks","level":13,"ascent":144,"descent":144,"maxelev":677,"minelev":601,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.44472 37.84134,22.48406 37.86934)","views":88,"millestones":"0,22.4838516,37.8514597#1,22.4728370,37.8530088#2,22.4639866,37.8484879#3,22.4547507,37.8440444#4,22.4475090,37.8427029#5,22.4489246,37.8485989#6,22.4494796,37.8534669#7,22.4574588,37.8587213#8,22.4603737,37.8646410#9.0,22.4640065,37.8695920","x":22.4502693,"y":37.8445854,"coor":[[22.4838516,37.8514597],[22.4829726,37.8515925],[22.4822793,37.851525],[22.4820919,37.8515879],[22.4814215,37.8515793],[22.4806982,37.8519305],[22.4803938,37.8519626],[22.479824,37.8520363],[22.4789942,37.8520436],[22.4766903,37.8524284],[22.4758729,37.8523818],[22.4752439,37.8525719],[22.4743885,37.8527141],[22.4737589,37.8529312],[22.4727569,37.8530173],[22.4720706,37.8532247],[22.4717178,37.8532472],[22.4714598,37.8530816],[22.4707463,37.8524054],[22.4700515,37.8519278],[22.4689037,37.8513721],[22.4681552,37.8507405],[22.4676782,37.8501756],[22.4673654,37.8499101],[22.4671511,37.8498353],[22.466492,37.8498267],[22.4657106,37.8496903],[22.4644941,37.8491608],[22.4641713,37.8488321],[22.4639307,37.8483784],[22.4635757,37.8479592],[22.4623606,37.8467672],[22.4619149,37.8466622],[22.4607897,37.8466656],[22.4602236,37.846559],[22.4589945,37.8460923],[22.4572361,37.8448526],[22.4565466,37.8446724],[22.4562208,37.8444879],[22.455769,37.8443558],[22.4550996,37.8443019],[22.4544978,37.8438524],[22.4539902,37.8436655],[22.4533158,37.8436814],[22.4522039,37.8435947],[22.4512796,37.8433347],[22.4508956,37.8432215],[22.4496482,37.843088],[22.4491186,37.8428737],[22.4484123,37.8424138],[22.4481026,37.8420042],[22.4478015,37.8408669],[22.4477035,37.8417488],[22.4474963,37.8418722],[22.4474354,37.8420697],[22.4474805,37.8426291],[22.447664,37.8430911],[22.4483226,37.8436585],[22.4491431,37.8440929],[22.4502693,37.8445854],[22.450667,37.8445906],[22.4510063,37.8446672],[22.4479029,37.8474652],[22.4492161,37.8483229],[22.4461453,37.8512339],[22.44515,37.852086],[22.4450826,37.8522158],[22.4451349,37.8529735],[22.4461718,37.8529489],[22.4480441,37.8530997],[22.4491643,37.8533398],[22.4498067,37.8536006],[22.4501533,37.8538755],[22.4509962,37.854878],[22.4519747,37.856459],[22.4525986,37.857062],[22.4536127,37.8574899],[22.4540359,37.8575833],[22.4547072,37.8575561],[22.4550682,37.857687],[22.4553526,37.8576727],[22.4557006,37.8578845],[22.4560869,37.8578896],[22.4564127,37.8580741],[22.4565834,37.8580673],[22.4566894,37.8582107],[22.456705,37.8585533],[22.4568509,37.8586454],[22.4574744,37.8587256],[22.4577164,37.8585666],[22.4579094,37.8585781],[22.4587756,37.8590131],[22.4588427,37.859068],[22.4587929,37.8592746],[22.458916,37.8593664],[22.4592335,37.8594066],[22.4592998,37.8594976],[22.4596485,37.8596734],[22.4603737,37.859782],[22.4614766,37.8603191],[22.46184,37.8603329],[22.4620904,37.8604916],[22.462222,37.8607186],[22.4618684,37.8613268],[22.4610896,37.8621548],[22.4605262,37.8635534],[22.4604629,37.8644087],[22.4600661,37.8654489],[22.4597758,37.866833],[22.4601156,37.8674413],[22.4601314,37.8677749],[22.4599484,37.8678266],[22.4593612,37.8677378],[22.4589981,37.867706],[22.45888,37.8677496],[22.4606341,37.868133],[22.4628674,37.8689823],[22.4640065,37.869592]]},{"id":17863,"author":"AnaDigit","name_GR":"\u039a\u03bf\u03c1\u03b9\u03bd\u03b8\u03af\u03b1: \u03a8\u03ac\u03c1\u03b9 3, \u03a3\u03c4\u03b1\u03c5\u03c1\u03b1\u03b5\u03c4\u03cc\u03c2","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03a3\u03c4\u03b1\u03c5\u03c1\u03b1\u03b5\u03c4\u03bf\u03cd","path":"PELOPONNESE\/Pelop_Psari_Stavraetos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11549,"name_EN":"Korinthia: Psari 3, Stavraetos ","description_EN":"Stavraetos ridge crossing","ascent_time":270,"descent_time":265,"marker":"Psari_Path3_long","level":11,"ascent":554,"descent":561,"maxelev":1105,"minelev":581,"link_logo":"Pelop_Region_Fee_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.topoguide.greece","pdf_link":"http:\/\/www.psarikorinthias.gr\/myimages\/Psari_Path3_Stavraetos.pdf","bbox":"LINESTRING(22.48606 37.84524,22.52994 37.86877)","views":243,"millestones":"0,22.5281043,37.8656749#1,22.5212717,37.8682836#2,22.5152166,37.8645875#3,22.5051485,37.8626344#4,22.4950608,37.8601834#5,22.4901390,37.8544857#6,22.4876501,37.8497386#7,22.4972914,37.8459492#8,22.5068856,37.8475399#9,22.5162435,37.8501671#10,22.5249250,37.8554204#11,22.5277210,37.8633873#11.5,22.5281054,37.8656749","x":22.4908297,"y":37.8561726,"coor":[[22.5281043,37.8656749],[22.5280984,37.8658618],[22.5279549,37.8662205],[22.527916,37.866567],[22.5278464,37.8666382],[22.5275397,37.8666254],[22.527128,37.8667464],[22.5264427,37.8673191],[22.5256183,37.8676152],[22.5249362,37.8681835],[22.523998,37.8686449],[22.5236741,37.8687647],[22.5218572,37.8692286],[22.5226544,37.8685897],[22.5225274,37.868507],[22.5219729,37.8687704],[22.5215298,37.8687558],[22.5214802,37.8683947],[22.5210191,37.8681456],[22.5207216,37.8676732],[22.5204719,37.867652],[22.5202386,37.8673787],[22.5200632,37.8664843],[22.519751,37.866183],[22.5193084,37.8661414],[22.5189247,37.8660014],[22.5186436,37.8664124],[22.5180701,37.8660988],[22.5177687,37.8652568],[22.5176565,37.8651833],[22.5174487,37.8653429],[22.5172652,37.8648539],[22.5166401,37.8642783],[22.5163275,37.8645627],[22.516131,37.8652903],[22.515859,37.8652508],[22.5157011,37.8651857],[22.515658,37.865068],[22.5153777,37.8648752],[22.5152123,37.8646208],[22.5152532,37.8642788],[22.5151053,37.864286],[22.5149067,37.8639861],[22.5144736,37.8640437],[22.5141225,37.8639762],[22.5134484,37.8641479],[22.5125137,37.8642713],[22.5111402,37.8641728],[22.5108806,37.8640794],[22.5106071,37.864112],[22.508769,37.8633767],[22.5083889,37.8630565],[22.507911,37.8630775],[22.507187,37.8629061],[22.5068462,37.8628927],[22.5066055,37.8629888],[22.5060949,37.8629463],[22.5051691,37.8626281],[22.5049404,37.8626973],[22.5046474,37.8625674],[22.5044431,37.8625558],[22.5041303,37.8622815],[22.5035327,37.8620396],[22.5033956,37.8620739],[22.5029196,37.8620047],[22.5024063,37.8620883],[22.5012788,37.8616324],[22.4999539,37.8608224],[22.4997258,37.8608556],[22.4988992,37.8607008],[22.4984822,37.8605243],[22.4978344,37.860516],[22.497264,37.8606169],[22.4969696,37.8605591],[22.4964346,37.8605973],[22.4961992,37.8604321],[22.4959587,37.8605191],[22.4958115,37.8604902],[22.4957004,37.8603626],[22.4950648,37.8603184],[22.4950329,37.8602099],[22.4953227,37.8599342],[22.4953272,37.8597089],[22.4950336,37.8596151],[22.4949814,37.8593891],[22.4947709,37.859116],[22.4946115,37.859132],[22.4945229,37.8590137],[22.4942623,37.8589743],[22.4941663,37.8586667],[22.4938264,37.8586083],[22.494165,37.858171],[22.4941335,37.8580444],[22.4938866,37.8578881],[22.4935911,37.8578843],[22.4935383,37.8576853],[22.4933145,37.8575112],[22.4929289,37.8574703],[22.4926488,37.8572684],[22.492342,37.8572645],[22.4920033,37.857152],[22.4919375,37.857034],[22.4919958,37.8569626],[22.4917821,37.8568517],[22.4916047,37.8566332],[22.491436,37.8565409],[22.4910953,37.8565275],[22.4910977,37.8564104],[22.4908297,37.8561726],[22.4906056,37.8564153],[22.4902393,37.8559871],[22.4901055,37.8547417],[22.4901464,37.8544087],[22.4899635,37.8544605],[22.489789,37.8546565],[22.4896838,37.8553581],[22.4895569,37.8554466],[22.4895174,37.8551577],[22.4890495,37.8541333],[22.4891469,37.8538191],[22.4887612,37.8537781],[22.4884572,37.853639],[22.4880457,37.8537509],[22.487523,37.8537442],[22.4868926,37.8534477],[22.4866836,37.8531025],[22.4864012,37.8519093],[22.4867012,37.8516878],[22.4868195,37.8513401],[22.4870378,37.8512258],[22.4873116,37.8506165],[22.4873656,37.8502026],[22.4877772,37.8495229],[22.48808,37.8491663],[22.488562,37.8489382],[22.4894969,37.8486415],[22.4901917,37.8480106],[22.4910229,37.8476562],[22.4911777,37.8475906],[22.4913805,37.8476743],[22.4918119,37.8476979],[22.4920264,37.847597],[22.4921446,37.8473732],[22.4927767,37.8470298],[22.4941605,37.8466059],[22.4951584,37.8466096],[22.4955796,37.846579],[22.4970803,37.8459943],[22.4974341,37.8459177],[22.4980092,37.8455826],[22.4986389,37.8453563],[22.4994034,37.8452038],[22.5004207,37.8448653],[22.5010097,37.8455217],[22.502903,37.8468796],[22.503358,37.8473],[22.5036402,37.8473937],[22.504856,37.8474091],[22.5059413,37.8476933],[22.5066725,37.8475043],[22.5073409,37.8476119],[22.507434,37.8475049],[22.5077309,37.8474366],[22.5088,37.847396],[22.5092978,37.8475105],[22.5101381,37.8475482],[22.511677,37.8478831],[22.5126652,37.8479136],[22.5132079,37.8480556],[22.5135114,37.8482217],[22.5143257,37.8484212],[22.5152236,37.8484235],[22.5159199,37.8488379],[22.5162617,37.8493649],[22.5160378,37.8497586],[22.5160694,37.8498852],[22.5162886,37.8502349],[22.516362,37.8505422],[22.5173761,37.8509313],[22.5181843,37.8514371],[22.5186589,37.8515783],[22.520202,37.8527242],[22.5209065,37.8533054],[22.5216303,37.8534857],[22.5224306,37.8538202],[22.5227724,37.8537794],[22.5231573,37.8538564],[22.5235962,37.8540782],[22.5238978,37.8543433],[22.5253007,37.8558119],[22.5259554,37.8566131],[22.5262928,37.8574375],[22.5263628,37.8581323],[22.5266239,37.8587214],[22.5266163,37.8590998],[22.5270501,37.8601507],[22.5271315,37.8606293],[22.5272111,37.860752],[22.5273247,37.8610418],[22.5272612,37.8613745],[22.5276389,37.8618208],[22.5279212,37.8619145],[22.5284588,37.8623177],[22.5283519,37.8625507],[22.5277617,37.8630751],[22.5276937,37.863633],[22.5286066,37.8640319],[22.5293439,37.8641132],[22.5292731,37.8644052],[22.5294331,37.8649322],[22.5295432,37.8651138],[22.5295061,37.8652666],[22.5293015,37.865264],[22.529044,37.8652968],[22.5285268,37.8655788],[22.5281054,37.8656749]]},{"id":18495,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u03a0\u03b5\u03c4\u03b1\u03bb\u03bf\u03cd\u03b4\u03b5\u03c2 \u03c3\u03c4\u03bf \u039f\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","description_GR":"","path":"NATURE\/Nature_Ziria_Butterflies_Oropedio_loop","activity_type":95,"assistance":2,"difficulty":1,"scenic_value":3,"length":2077,"name_EN":"Ziria: Zria Plateau butterflies","description_EN":"","ascent_time":0,"descent_time":0,"marker":"No_marks","level":9,"ascent":66,"descent":66,"maxelev":1553,"minelev":1497,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.42144 37.94511,22.42891 37.9506)","views":18,"millestones":"0,22.4254945,37.9506544#1,22.4237479,37.9456349#2.1,22.4254956,37.9506544","x":22.4250048,"y":37.9464032,"coor":[[22.4254945,37.9506544],[22.425935,37.9505431],[22.425849,37.9503077],[22.4252716,37.9496331],[22.424532,37.9485597],[22.4238715,37.9480462],[22.4227218,37.9469448],[22.4225561,37.9467083],[22.4218113,37.9461486],[22.4215541,37.9454061],[22.4215572,37.9452575],[22.4217282,37.9452958],[22.4220726,37.9451562],[22.4225163,37.9451622],[22.4226216,37.9450284],[22.4233696,37.9457053],[22.423736,37.9456021],[22.4239296,37.9461274],[22.4240756,37.9462195],[22.4245773,37.9461721],[22.4250048,37.9464032],[22.4252426,37.9464604],[22.425554,37.9462663],[22.4257366,37.9462417],[22.4259019,37.9464963],[22.4259783,37.9471822],[22.4261216,37.9474004],[22.4264041,37.9474943],[22.4267734,37.9472559],[22.4273413,37.9473086],[22.4278625,37.9477842],[22.4286139,37.9484701],[22.42884,37.9485452],[22.4286633,37.948606],[22.4283591,37.9489984],[22.4270193,37.9499178],[22.4267399,37.9502115],[22.4263715,37.9504048],[22.4259361,37.9505432],[22.4254956,37.9506544]]},{"id":18496,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: Garmin CCR Scale Race","description_GR":"\u039c\u03b9\u03ba\u03c1\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5 \u03b1\u03b3\u03ce\u03bd\u03b1 \u03bf\u03c1\u03b5\u03b9\u03bd\u03bf\u03cd \u03b4\u03c1\u03cc\u03bc\u03bf\u03c5 Garmin","path":"MOUNTAIN_RUNNING\/MountRun_Ziria_Garmin_CCR_7km","activity_type":36,"assistance":2,"difficulty":2,"scenic_value":5,"length":7244,"name_EN":"Mt. Ziria: Garmin CCR Scale Race","description_EN":"Short mountain running loop","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":12,"ascent":535,"descent":535,"maxelev":1359,"minelev":953,"link_logo":"Garmin_ZiriaCCR_logo","link_ref":"http:\/\/www.zccr.gr\/oi-diadromes\/scale\/perigrafi-toy-agona-scale","pdf_link":"","bbox":"LINESTRING(22.34034 37.92757,22.36197 37.94155)","views":6,"millestones":"0,22.3405448,37.9326252#1,22.3458695,37.9313529#2,22.3509453,37.9291547#3,22.3595013,37.9293814#4,22.3606480,37.9371565#5,22.3554607,37.9403504#6,22.3472979,37.9365040#7.2,22.3405448,37.9326252","x":22.3616963,"y":37.9340166,"coor":[[22.3405448,37.9326252],[22.3423963,37.9328631],[22.3425196,37.9329459],[22.342639,37.9332],[22.3430043,37.9334169],[22.3444246,37.933509],[22.3451345,37.9337037],[22.345215,37.9336688],[22.3452288,37.9335608],[22.3451405,37.9329288],[22.3451953,37.932515],[22.34511,37.9322614],[22.3451585,37.9321269],[22.3453174,37.9321472],[22.3454031,37.9323827],[22.3458878,37.9330925],[22.3459772,37.9331658],[22.3460722,37.9331491],[22.3459845,37.93249],[22.3462056,37.9317632],[22.3456189,37.931034],[22.345549,37.9306004],[22.3452857,37.9301641],[22.34536,37.9298948],[22.3455594,37.9296272],[22.3458029,37.9293783],[22.3459505,37.9288847],[22.3462108,37.9284378],[22.3465232,37.9282079],[22.346819,37.9281264],[22.3471802,37.9283027],[22.3474757,37.9283159],[22.3476959,37.9281387],[22.34828,37.9279667],[22.3487895,37.9275683],[22.3490511,37.927572],[22.3493963,37.9273966],[22.3496154,37.9277782],[22.3496337,37.9279767],[22.3498128,37.9281054],[22.3496791,37.928491],[22.3497957,37.9288711],[22.3500094,37.9289823],[22.350533,37.9289716],[22.350893,37.9291569],[22.3512232,37.9291435],[22.3518058,37.9295482],[22.3529226,37.9299784],[22.3533867,37.9305977],[22.3537105,37.9308726],[22.3539025,37.9309384],[22.35408,37.9311391],[22.3544804,37.9310456],[22.3546961,37.9310666],[22.3553486,37.9308865],[22.3557298,37.9306305],[22.3558488,37.9303978],[22.3564718,37.93001],[22.3568384,37.929898],[22.357092,37.9297483],[22.358017,37.9290853],[22.3581465,37.9288888],[22.3582628,37.9288724],[22.3586489,37.9291933],[22.3589101,37.9292149],[22.3592482,37.9293638],[22.3597594,37.929398],[22.360521,37.9293635],[22.3605242,37.9305667],[22.3606866,37.9314521],[22.3608825,37.9318514],[22.3618384,37.9333337],[22.3616963,37.9340166],[22.3611854,37.9349918],[22.361109,37.9353602],[22.360854,37.9357938],[22.3606482,37.9363497],[22.3605927,37.9367995],[22.3607702,37.9380276],[22.3611466,37.9390152],[22.3611767,37.9396735],[22.3609109,37.939859],[22.3603734,37.9399777],[22.36017,37.9404254],[22.3596157,37.9413009],[22.3591726,37.9417814],[22.3590353,37.9418155],[22.3588198,37.9417855],[22.3581502,37.9415283],[22.3575001,37.9415913],[22.3573327,37.9414448],[22.3571165,37.9414418],[22.3565027,37.9409015],[22.355536,37.9403653],[22.3551395,37.9402876],[22.3541704,37.9398595],[22.3535576,37.9392742],[22.3534642,37.939381],[22.3532253,37.9393777],[22.3529373,37.9395359],[22.3527091,37.9395597],[22.352608,37.9395042],[22.3524048,37.9394924],[22.3519262,37.9395217],[22.3511392,37.9390961],[22.3509622,37.9388683],[22.3503961,37.9387432],[22.3499349,37.9385025],[22.3497579,37.9382747],[22.3497294,37.9380219],[22.3492045,37.937582],[22.3483252,37.9372092],[22.3481383,37.9369182],[22.3481419,37.936756],[22.3482368,37.9365861],[22.3482043,37.9365135],[22.3477462,37.9366423],[22.3474176,37.9365836],[22.3472382,37.9364639],[22.347253,37.9363109],[22.3476117,37.9360456],[22.347701,37.9356143],[22.3475871,37.935108],[22.3471385,37.9343087],[22.3471977,37.9336967],[22.3469184,37.9334674],[22.3460722,37.9331491],[22.3459772,37.9331658],[22.3458878,37.9330925],[22.3454031,37.9323827],[22.3453174,37.9321472],[22.3451585,37.9321269],[22.34511,37.9322614],[22.3451953,37.932515],[22.3451405,37.9329288],[22.3452288,37.9335608],[22.345215,37.9336688],[22.3451345,37.9337037],[22.3444246,37.933509],[22.3430043,37.9334169],[22.342639,37.9332],[22.3425196,37.9329459],[22.3423963,37.9328631],[22.3405448,37.9326252]]},{"id":18497,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: Garmin CCR Skyrace","description_GR":"\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5 \u03b1\u03b3\u03ce\u03bd\u03b1 \u03bf\u03c1\u03b5\u03b9\u03bd\u03bf\u03cd \u03b4\u03c1\u03cc\u03bc\u03bf\u03c5 Garmin","path":"MOUNTAIN_RUNNING\/MountRun_Ziria_Garmin_CCR_full","activity_type":36,"assistance":2,"difficulty":3,"scenic_value":5,"length":32375,"name_EN":"Mt. Ziria: Garmin CCR Skyrace","description_EN":"Full mountain running loop","ascent_time":0,"descent_time":0,"marker":"Red_dots","level":12,"ascent":2890,"descent":2890,"maxelev":2361,"minelev":953,"link_logo":"Garmin_ZiriaCCR_logo","link_ref":"http:\/\/www.zccr.gr\/oi-diadromes\/scale\/perigrafi-toy-agona-scale","pdf_link":"","bbox":"LINESTRING(22.34016 37.92239,22.44465 37.94959)","views":3,"millestones":"0,22.3405448,37.9326252#1,22.3458670,37.9313498#2,22.3509499,37.9291545#3,22.3595059,37.9293817#4,22.3702514,37.9272342#5,22.3801221,37.9251924#6,22.3897246,37.9280152#7,22.3991389,37.9300531#8,22.4054243,37.9323350#9,22.4067959,37.9302008#10,22.4118154,37.9297662#11,22.4171802,37.9295271#12,22.4242324,37.9259980#13,22.4311179,37.9234836#14,22.4351226,37.9315284#15,22.4397140,37.9393032#16,22.4414237,37.9476591#17,22.4391627,37.9497292#18,22.4311091,37.9454708#19,22.4300873,37.9380630#20,22.4235106,37.9417329#21,22.4184482,37.9397662#22,22.4149642,37.9323284#23,22.4051086,37.9335527#24,22.3990845,37.9382864#25,22.3947621,37.9337383#26,22.3932240,37.9290524#27,22.3835652,37.9263236#28,22.3742196,37.9268008#29,22.3635848,37.9287432#30,22.3539170,37.9309546#31,22.3463310,37.9283497#32,22.3443885,37.9335065#32.4,22.3405448,37.9326252","x":22.443671,"y":37.9506665,"coor":[[22.3405448,37.9326252],[22.3423963,37.9328631],[22.3425196,37.9329459],[22.342639,37.9332],[22.3430043,37.9334169],[22.3444246,37.933509],[22.3451345,37.9337037],[22.345215,37.9336688],[22.3452288,37.9335608],[22.3451405,37.9329288],[22.3451953,37.932515],[22.34511,37.9322614],[22.3451585,37.9321269],[22.3453174,37.9321472],[22.3454031,37.9323827],[22.3458878,37.9330925],[22.3459772,37.9331658],[22.3460722,37.9331491],[22.3459845,37.93249],[22.3462056,37.9317632],[22.3456189,37.931034],[22.345549,37.9306004],[22.3452857,37.9301641],[22.34536,37.9298948],[22.3455594,37.9296272],[22.3458029,37.9293783],[22.3459505,37.9288847],[22.3462108,37.9284378],[22.3465232,37.9282079],[22.346819,37.9281264],[22.3471802,37.9283027],[22.3474757,37.9283159],[22.3476959,37.9281387],[22.34828,37.9279667],[22.3487895,37.9275683],[22.3490511,37.927572],[22.3493963,37.9273966],[22.3496154,37.9277782],[22.3496337,37.9279767],[22.3498128,37.9281054],[22.3496791,37.928491],[22.3497957,37.9288711],[22.3500094,37.9289823],[22.350533,37.9289716],[22.350893,37.9291569],[22.3512232,37.9291435],[22.3518058,37.9295482],[22.3529226,37.9299784],[22.3533867,37.9305977],[22.3537105,37.9308726],[22.3539025,37.9309384],[22.35408,37.9311391],[22.3544804,37.9310456],[22.3546961,37.9310666],[22.3553486,37.9308865],[22.3557298,37.9306305],[22.3558488,37.9303978],[22.3564718,37.93001],[22.3568384,37.929898],[22.357092,37.9297483],[22.358017,37.9290853],[22.3581465,37.9288888],[22.3582628,37.9288724],[22.3586489,37.9291933],[22.3589101,37.9292149],[22.3592482,37.9293638],[22.3597594,37.929398],[22.360521,37.9293635],[22.360717,37.9292491],[22.3614482,37.9291151],[22.3620101,37.9289157],[22.3630236,37.9288757],[22.3635037,37.9287742],[22.3640888,37.9285571],[22.364683,37.9284392],[22.3662,37.928271],[22.3666474,37.928106],[22.3676997,37.9278502],[22.3681148,37.9276036],[22.3692111,37.9274206],[22.369963,37.9273769],[22.3708142,37.9269561],[22.3711464,37.9268526],[22.3714198,37.9268383],[22.3716546,37.9269452],[22.371916,37.9269578],[22.3725435,37.9268764],[22.373282,37.9269227],[22.3736033,37.9268009],[22.3739256,37.9268234],[22.3742693,37.9267966],[22.3752334,37.9264134],[22.3753956,37.9262805],[22.3755149,37.9260298],[22.3757915,37.9258714],[22.3780194,37.9259652],[22.3785073,37.9255033],[22.3790608,37.9251685],[22.379666,37.9250687],[22.3799496,37.9251852],[22.3805407,37.9252114],[22.3807985,37.9253862],[22.3813093,37.9254382],[22.3815774,37.9256672],[22.3822299,37.9260006],[22.3827735,37.9261163],[22.3829906,37.9260742],[22.383633,37.9263534],[22.3844593,37.926545],[22.3851098,37.9269775],[22.3855718,37.9271821],[22.3863307,37.9273367],[22.3868545,37.9273168],[22.3871443,37.9275912],[22.3873694,37.9277024],[22.3880868,37.9276762],[22.3887182,37.9279372],[22.3891371,37.928033],[22.3894007,37.9279465],[22.3897631,37.9280236],[22.3900033,37.9279638],[22.3904771,37.9281505],[22.3908662,37.9280477],[22.3914504,37.9281593],[22.3920266,37.9283474],[22.3923578,37.9286493],[22.3930216,37.9289918],[22.3932028,37.9290304],[22.3935797,37.9294861],[22.393888,37.9294678],[22.3943236,37.9298432],[22.3946405,37.9299197],[22.395121,37.9298],[22.3961308,37.929931],[22.3965183,37.9299002],[22.3971128,37.9300615],[22.3972853,37.9301089],[22.3976655,37.9297626],[22.3980663,37.9296419],[22.3981424,37.9297556],[22.3983813,37.9297589],[22.398746,37.9299125],[22.3990388,37.9300517],[22.3994255,37.930057],[22.399438,37.930003],[22.3997647,37.9299444],[22.4005419,37.9297657],[22.4008141,37.9298055],[22.4012268,37.9298922],[22.4014731,37.9300758],[22.4020407,37.9301376],[22.4022968,37.9303934],[22.402374,37.9306738],[22.4028094,37.9310582],[22.4030977,37.9314046],[22.4035563,37.9317713],[22.4044244,37.9321436],[22.4049853,37.9325116],[22.4052949,37.9329304],[22.4053446,37.9334448],[22.4055642,37.9332855],[22.4058055,37.9328968],[22.4058148,37.9324643],[22.4053741,37.9320122],[22.4055642,37.9332855],[22.4058055,37.9328968],[22.4058148,37.9324643],[22.4047238,37.93135],[22.4045039,37.9309956],[22.4046965,37.9305116],[22.4051976,37.9299596],[22.4055968,37.9293882],[22.4055795,37.9291357],[22.4050425,37.9287138],[22.4050365,37.9285966],[22.4053023,37.9286182],[22.4056636,37.9287493],[22.4059484,37.9287351],[22.4060496,37.9287906],[22.4061818,37.9289906],[22.4062064,37.9294325],[22.406339,37.9296146],[22.4064006,37.9299534],[22.4067137,37.9302099],[22.4071243,37.9301614],[22.4073501,37.9302456],[22.4075505,37.9304466],[22.4076972,37.9305026],[22.4085048,37.9305136],[22.409538,37.9306177],[22.4105457,37.9308476],[22.4111109,37.9310174],[22.411434,37.9313372],[22.4115458,37.9313297],[22.4115513,37.9312577],[22.4113429,37.9308809],[22.4110522,37.9306426],[22.4104127,37.9302194],[22.410027,37.9301692],[22.4100061,37.9300788],[22.4105746,37.9300324],[22.4111914,37.9299866],[22.4116217,37.9300825],[22.4121122,37.9300261],[22.4122818,37.9300734],[22.4124262,37.9302376],[22.4125078,37.9302297],[22.4123557,37.9298807],[22.4117214,37.9297459],[22.4114743,37.9295984],[22.4115331,37.9295091],[22.4119092,37.9294781],[22.4121614,37.9293914],[22.4125662,37.9285587],[22.4125575,37.9284324],[22.4123811,37.9281687],[22.4119102,37.9278469],[22.4119233,37.927766],[22.4121605,37.9276836],[22.4126006,37.9274868],[22.4128152,37.9275617],[22.4133217,37.9283436],[22.4133712,37.9286867],[22.4133956,37.9287276],[22.4135252,37.9289322],[22.413503,37.9294365],[22.4135705,37.9294735],[22.4139578,37.9294517],[22.4142019,37.9297433],[22.4146235,37.929713],[22.4148483,37.9298422],[22.4150977,37.9298816],[22.4155664,37.9297798],[22.4168548,37.9296529],[22.4178874,37.9292522],[22.4191292,37.9286471],[22.4193097,37.9287216],[22.4193731,37.9289478],[22.4194515,37.9290029],[22.4208292,37.9289583],[22.4217586,37.9293583],[22.4220641,37.9292543],[22.4220117,37.9290463],[22.4217998,37.9288452],[22.4218173,37.9287237],[22.4218045,37.9284757],[22.4223719,37.9280147],[22.4225708,37.927756],[22.4225421,37.9275033],[22.4226271,37.9272521],[22.4227655,37.9271638],[22.4228135,37.9270473],[22.4231258,37.9268082],[22.423447,37.9266863],[22.4236931,37.9263472],[22.4239571,37.9262425],[22.4241209,37.9260284],[22.4246131,37.9258908],[22.4247064,37.9257839],[22.4252943,37.9254223],[22.4253462,37.9251256],[22.4255301,37.925038],[22.4256008,37.9249217],[22.4255599,37.9247049],[22.4256679,37.924445],[22.4259921,37.924179],[22.4260759,37.9239818],[22.4262602,37.9238761],[22.4263236,37.9235706],[22.4262847,37.9232636],[22.426403,37.9230489],[22.4266563,37.9229081],[22.4274574,37.9226845],[22.4275731,37.9225959],[22.4277427,37.9226433],[22.4278615,37.9224105],[22.4280779,37.9223954],[22.4281142,37.9222968],[22.4283833,37.9224806],[22.4285812,37.922267],[22.4290267,37.9221828],[22.4292758,37.9222402],[22.4294768,37.9223014],[22.4302292,37.9227621],[22.4304669,37.9228193],[22.4307656,37.9232199],[22.4309802,37.9232948],[22.4311639,37.9235496],[22.4313072,37.9242995],[22.4315051,37.9246266],[22.4315281,37.9251496],[22.431858,37.9256857],[22.4320488,37.9263461],[22.4322952,37.9265297],[22.4327357,37.9266797],[22.4329679,37.9269983],[22.4331374,37.9270546],[22.4332037,37.9271456],[22.4332639,37.9275249],[22.4335237,37.9281502],[22.4343664,37.9291888],[22.434792,37.9300416],[22.434911,37.9303316],[22.4351386,37.931407],[22.4351112,37.931623],[22.4352084,37.9318676],[22.4354954,37.932286],[22.4359856,37.9327791],[22.4364046,37.9328748],[22.4364825,37.932957],[22.4365981,37.9334091],[22.4365961,37.9340399],[22.4367926,37.9349708],[22.4370358,37.9353075],[22.4376633,37.9357664],[22.4380291,37.9362219],[22.4382805,37.9367119],[22.4384378,37.9373448],[22.4386976,37.9379701],[22.4391314,37.9384445],[22.4394942,37.9390441],[22.4396739,37.9391546],[22.4397585,37.9394622],[22.4395179,37.9395401],[22.4396039,37.9397755],[22.4395028,37.9401347],[22.4395196,37.9408514],[22.439804,37.9413959],[22.4398779,37.9416672],[22.4403777,37.9422506],[22.4403141,37.9431059],[22.4401965,37.9432846],[22.4402791,37.9436822],[22.4406898,37.9441743],[22.4408938,37.9447538],[22.4411274,37.9450092],[22.4412231,37.9453259],[22.4411189,37.9464871],[22.4412063,37.9466595],[22.4412229,37.9474888],[22.4414912,37.9477177],[22.4418868,37.9478491],[22.4422668,37.9481786],[22.44311,37.9486674],[22.4432196,37.9488671],[22.4434885,37.9490689],[22.4435645,37.9492412],[22.4440351,37.9495898],[22.4440677,37.9502031],[22.4436638,37.9510088],[22.443671,37.9506665],[22.4435718,37.950512],[22.4426823,37.9500586],[22.4422056,37.9499982],[22.441521,37.9495385],[22.4408535,37.9493495],[22.4405467,37.9493274],[22.4395851,37.949594],[22.4393541,37.9497531],[22.4384348,37.9496328],[22.4380612,37.9495377],[22.4377359,37.9493171],[22.4373175,37.9491854],[22.4370447,37.9491727],[22.4367741,37.949052],[22.4363037,37.9486943],[22.4358522,37.948517],[22.4355625,37.9482248],[22.435167,37.9480934],[22.4346781,37.9480688],[22.434216,37.9478554],[22.4336911,37.9479205],[22.43331,37.9476451],[22.4332179,37.9476979],[22.4331045,37.9476784],[22.432388,37.9476193],[22.4318277,37.9469449],[22.4317848,37.9468182],[22.4313399,37.9463346],[22.4311917,37.9462966],[22.4311366,37.9459759],[22.4312492,37.945698],[22.4310843,37.9454255],[22.4311011,37.9451734],[22.4309942,37.9448475],[22.4308721,37.9447017],[22.43081,37.9444125],[22.4304439,37.943966],[22.4298046,37.9435249],[22.4295393,37.9431608],[22.4292814,37.9429772],[22.4293512,37.942906],[22.4292129,37.9424535],[22.4294237,37.942177],[22.4294017,37.9421406],[22.4293319,37.9422118],[22.4292522,37.9422107],[22.4294219,37.9417263],[22.4297488,37.9413342],[22.4298921,37.9410207],[22.430146,37.9408528],[22.4302056,37.9407274],[22.4302065,37.9404346],[22.4304071,37.9400948],[22.4303791,37.939806],[22.4305004,37.9394562],[22.4305635,37.9394165],[22.4303939,37.9388284],[22.4302282,37.9385919],[22.4301025,37.9380855],[22.4300473,37.9380037],[22.4298207,37.9379556],[22.4295693,37.9380063],[22.4291783,37.9381994],[22.4289512,37.9381783],[22.4288006,37.9383025],[22.4285139,37.9384068],[22.4284293,37.93864],[22.4282203,37.9388354],[22.4279365,37.9393363],[22.4277387,37.939541],[22.4273114,37.9396344],[22.4263509,37.9397026],[22.4261485,37.9401235],[22.4261601,37.9406464],[22.4262889,37.9410086],[22.4266123,37.9413193],[22.4259464,37.9412293],[22.4254206,37.9409203],[22.4252947,37.9409547],[22.4250793,37.9409158],[22.4247893,37.9406415],[22.4246532,37.9406217],[22.423857,37.9411337],[22.4237467,37.9415017],[22.4232701,37.941973],[22.422961,37.942059],[22.422597,37.9420541],[22.4222605,37.942356],[22.4216957,37.9426909],[22.4212405,37.9426938],[22.4211296,37.9428049],[22.4207661,37.9431245],[22.4202713,37.943564],[22.4196237,37.9442943],[22.4192548,37.9437846],[22.4192822,37.9435687],[22.4191424,37.9431883],[22.4190841,37.9427189],[22.4186198,37.9416673],[22.4185321,37.9409812],[22.4185969,37.9406125],[22.4184434,37.9403401],[22.4184872,37.9398901],[22.4184291,37.9397001],[22.4181418,37.9392997],[22.4181491,37.9389573],[22.4179847,37.9386667],[22.4178846,37.9385572],[22.4176665,37.9386444],[22.4175994,37.9385894],[22.4175923,37.9383911],[22.4173816,37.9381359],[22.4173729,37.9380096],[22.4172264,37.9379445],[22.4171525,37.9376732],[22.4166453,37.9374501],[22.4164467,37.937159],[22.4164043,37.9370142],[22.4164571,37.9366725],[22.4163008,37.9365352],[22.4162595,37.9363364],[22.4160253,37.9361169],[22.4158065,37.9351767],[22.4154067,37.9347207],[22.4152544,37.9343943],[22.414864,37.9340285],[22.4148139,37.9337124],[22.4148636,37.9335148],[22.4146678,37.9330976],[22.4150295,37.9321472],[22.4148946,37.9320733],[22.4148651,37.9318566],[22.414547,37.9318343],[22.414311,37.9316959],[22.4139705,37.9316553],[22.413737,37.9316206],[22.4126247,37.9320202],[22.4121152,37.9319051],[22.41169,37.9320977],[22.4113799,37.9321656],[22.41112,37.9323288],[22.4107896,37.9323514],[22.4103538,37.9325077],[22.4096247,37.9325519],[22.4088465,37.9327577],[22.408459,37.9327885],[22.4083092,37.9328766],[22.4074965,37.9330999],[22.4067665,37.9331801],[22.4064949,37.9331134],[22.4059936,37.9331426],[22.4055642,37.9332855],[22.4053446,37.9334448],[22.4048666,37.9336636],[22.404735,37.9338105],[22.4045258,37.9340149],[22.4045541,37.9342857],[22.4048391,37.9347852],[22.4052098,37.9350065],[22.4053681,37.9353016],[22.4050476,37.9353874],[22.4051575,37.9355691],[22.4052078,37.9358762],[22.4039624,37.9361116],[22.4037996,37.9362716],[22.4033399,37.9364817],[22.4032226,37.9366423],[22.4027998,37.9367267],[22.4025792,37.936931],[22.4023623,37.9369641],[22.4020973,37.9371137],[22.4012167,37.937318],[22.4009162,37.9375302],[22.4007523,37.9377443],[22.400341,37.9378198],[22.3998086,37.9380694],[22.3995526,37.9381335],[22.3994934,37.9382409],[22.3988889,37.9383047],[22.3980528,37.9385547],[22.3976087,37.9385667],[22.3966761,37.9390677],[22.3964145,37.9390641],[22.396025,37.9391849],[22.3959924,37.9391124],[22.3958557,37.9391196],[22.3959275,37.9389583],[22.3955874,37.9388996],[22.3953449,37.9385358],[22.3952877,37.9385531],[22.3951229,37.9382804],[22.3948442,37.9380153],[22.3947988,37.937893],[22.3944905,37.9375013],[22.3943403,37.936562],[22.394433,37.934914],[22.3947943,37.9339997],[22.3948204,37.9338469],[22.3947243,37.9336698],[22.3945691,37.9332036],[22.3953485,37.9332187],[22.3957324,37.9328995],[22.3957347,37.9327914],[22.3961291,37.9324453],[22.3962584,37.9322578],[22.3964994,37.932162],[22.39672,37.9319577],[22.3968683,37.9319417],[22.3970555,37.9317009],[22.3974958,37.9313374],[22.3975498,37.9311444],[22.397328,37.9307494],[22.3972063,37.9304098],[22.3972853,37.9301089],[22.3971128,37.9300615],[22.3965183,37.9299002],[22.3961308,37.929931],[22.395121,37.9298],[22.3946405,37.9299197],[22.3943236,37.9298432],[22.393888,37.9294678],[22.3935797,37.9294861],[22.3932028,37.9290304],[22.3930216,37.9289918],[22.3923578,37.9286493],[22.3920266,37.9283474],[22.3914504,37.9281593],[22.3908662,37.9280477],[22.3904771,37.9281505],[22.3900033,37.9279638],[22.3897631,37.9280236],[22.3894007,37.9279465],[22.3891371,37.928033],[22.3887182,37.9279372],[22.3880868,37.9276762],[22.3873694,37.9277024],[22.3871443,37.9275912],[22.3868545,37.9273168],[22.3863307,37.9273367],[22.3855718,37.9271821],[22.3851098,37.9269775],[22.3844593,37.926545],[22.383633,37.9263534],[22.3829906,37.9260742],[22.3827735,37.9261163],[22.3822299,37.9260006],[22.3815774,37.9256672],[22.3813093,37.9254382],[22.3807985,37.9253862],[22.3805407,37.9252114],[22.3799496,37.9251852],[22.379666,37.9250687],[22.3790608,37.9251685],[22.3785073,37.9255033],[22.3780194,37.9259652],[22.3757915,37.9258714],[22.3755149,37.9260298],[22.3753956,37.9262805],[22.3752334,37.9264134],[22.3742693,37.9267966],[22.3739256,37.9268234],[22.3736033,37.9268009],[22.373282,37.9269227],[22.3725435,37.9268764],[22.371916,37.9269578],[22.3716546,37.9269452],[22.3714198,37.9268383],[22.3711464,37.9268526],[22.3708142,37.9269561],[22.369963,37.9273769],[22.3692111,37.9274206],[22.3681148,37.9276036],[22.3676997,37.9278502],[22.3666474,37.928106],[22.3662,37.928271],[22.364683,37.9284392],[22.3640888,37.9285571],[22.3635037,37.9287742],[22.3630236,37.9288757],[22.3620101,37.9289157],[22.3614482,37.9291151],[22.360717,37.9292491],[22.360521,37.9293635],[22.3597594,37.929398],[22.3592482,37.9293638],[22.3589101,37.9292149],[22.3586489,37.9291933],[22.3582628,37.9288724],[22.3581465,37.9288888],[22.358017,37.9290853],[22.357092,37.9297483],[22.3568384,37.929898],[22.3564718,37.93001],[22.3558488,37.9303978],[22.3557298,37.9306305],[22.3553486,37.9308865],[22.3546961,37.9310666],[22.3544804,37.9310456],[22.35408,37.9311391],[22.3539025,37.9309384],[22.3537105,37.9308726],[22.3533867,37.9305977],[22.3529226,37.9299784],[22.3518058,37.9295482],[22.3512232,37.9291435],[22.350893,37.9291569],[22.350533,37.9289716],[22.3500094,37.9289823],[22.3497957,37.9288711],[22.3496791,37.928491],[22.3498128,37.9281054],[22.3496337,37.9279767],[22.3496154,37.9277782],[22.3493963,37.9273966],[22.3490511,37.927572],[22.3487895,37.9275683],[22.34828,37.9279667],[22.3476959,37.9281387],[22.3474757,37.9283159],[22.3471802,37.9283027],[22.346819,37.9281264],[22.3465232,37.9282079],[22.3462108,37.9284378],[22.3459505,37.9288847],[22.3458029,37.9293783],[22.3455594,37.9296272],[22.34536,37.9298948],[22.3452857,37.9301641],[22.345549,37.9306004],[22.3456189,37.931034],[22.3462056,37.9317632],[22.3459845,37.93249],[22.3460722,37.9331491],[22.3459772,37.9331658],[22.3458878,37.9330925],[22.3454031,37.9323827],[22.3453174,37.9321472],[22.3451585,37.9321269],[22.34511,37.9322614],[22.3451953,37.932515],[22.3451405,37.9329288],[22.3452288,37.9335608],[22.345215,37.9336688],[22.3451345,37.9337037],[22.3444246,37.933509],[22.3430043,37.9334169],[22.342639,37.9332],[22.3425196,37.9329459],[22.3423963,37.9328631],[22.3405448,37.9326252]]},{"id":18594,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0397 \u03c7\u03bb\u03c9\u03c1\u03af\u03b4\u03b1 \u03c4\u03b7\u03c2 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae\u03c2 \u03c4\u03b7\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","description_GR":"","path":"NATURE\/Nature_Ziria_Flora_summit_loop","activity_type":96,"assistance":2,"difficulty":2,"scenic_value":5,"length":5900,"name_EN":"Ziria: Flora of Ziria summit area","description_EN":"","ascent_time":0,"descent_time":0,"marker":"No_marks","level":9,"ascent":512,"descent":512,"maxelev":2361,"minelev":1847,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.39477 37.92758,22.41269 37.93917)","views":17,"millestones":"0,22.4121605,37.9276836#1,22.4037214,37.9289399#2,22.3974901,37.9310395#3,22.3948964,37.9380666#4,22.4040298,37.9360989#5,22.4111828,37.9322888#5.9,22.4121583,37.9276836","x":22.3953394,"y":37.9375489,"coor":[[22.4121605,37.9276836],[22.41174,37.9276599],[22.4116471,37.9277488],[22.4115219,37.9277471],[22.4107865,37.9275569],[22.4100676,37.9276553],[22.409533,37.9276481],[22.4092731,37.9275635],[22.4089774,37.9275595],[22.4086128,37.9281133],[22.4083029,37.9282353],[22.407584,37.9283337],[22.4069934,37.9288124],[22.4068932,37.9287119],[22.406801,37.9287647],[22.4067252,37.9291151],[22.4064676,37.9294541],[22.4065566,37.9295454],[22.406339,37.9296146],[22.4062064,37.9294325],[22.4061818,37.9289906],[22.4060496,37.9287906],[22.4059484,37.9287351],[22.4056636,37.9287493],[22.4053023,37.9286182],[22.4050365,37.9285966],[22.4045497,37.9284818],[22.4044109,37.9285881],[22.4038269,37.9287604],[22.4036614,37.9290466],[22.403828,37.9292381],[22.4036425,37.9293978],[22.4036284,37.9300465],[22.4034308,37.930242],[22.403432,37.9307107],[22.4032583,37.9308525],[22.4031904,37.9308336],[22.4031524,37.9310133],[22.4029186,37.9307758],[22.4027364,37.9307824],[22.4026083,37.930704],[22.4025621,37.9307394],[22.4023736,37.9306738],[22.4022965,37.9303934],[22.4020403,37.9301376],[22.4014728,37.9300758],[22.4012264,37.9298922],[22.4008144,37.9298055],[22.4005422,37.9297657],[22.3997647,37.9299444],[22.3994377,37.930003],[22.3994251,37.9300569],[22.3990384,37.9300517],[22.3987456,37.9299125],[22.3983816,37.9297589],[22.3981428,37.9297556],[22.3980667,37.9296419],[22.3976658,37.9297626],[22.397285,37.9301089],[22.3972059,37.9304097],[22.3973269,37.9307493],[22.3975484,37.9311444],[22.3976243,37.9313167],[22.3974827,37.931549],[22.3975149,37.9316396],[22.3980812,37.9317555],[22.3982485,37.9319109],[22.3981776,37.9320361],[22.3976421,37.9322632],[22.397547,37.9324511],[22.3976007,37.9327628],[22.3977674,37.9329453],[22.397486,37.933329],[22.3965918,37.9335376],[22.3964495,37.9341124],[22.3958728,37.9349968],[22.3957214,37.9356796],[22.3955986,37.9359798],[22.395457,37.9363249],[22.3953931,37.9366484],[22.3954084,37.9375138],[22.3953394,37.9375489],[22.394931,37.9374893],[22.3947971,37.937893],[22.3948421,37.9380153],[22.3951208,37.9382804],[22.3952855,37.938553],[22.3953428,37.9385358],[22.3955852,37.9388996],[22.3959253,37.9389583],[22.3958536,37.9391195],[22.3959903,37.9391124],[22.3960228,37.9391849],[22.3964123,37.9390641],[22.396674,37.9390676],[22.3976066,37.9385666],[22.3980506,37.9385547],[22.3988868,37.9383047],[22.3994912,37.9382408],[22.3995505,37.9381335],[22.3998068,37.9380694],[22.4003392,37.9378198],[22.4007505,37.9377443],[22.4009145,37.9375302],[22.4012149,37.937318],[22.4020955,37.9371137],[22.4023605,37.9369641],[22.4025774,37.936931],[22.402798,37.9367267],[22.4032209,37.9366423],[22.4033381,37.9364817],[22.4037978,37.9362716],[22.4039606,37.9361116],[22.405206,37.9358762],[22.4051557,37.9355691],[22.4050459,37.9353873],[22.4053663,37.9353016],[22.4052077,37.9350065],[22.404837,37.9347852],[22.4045519,37.9342857],[22.4045237,37.9340149],[22.4047329,37.9338105],[22.4048644,37.9336636],[22.4053424,37.9334447],[22.4055621,37.9332855],[22.4059918,37.9331426],[22.4064931,37.9331134],[22.4067648,37.9331801],[22.4074947,37.9330999],[22.4083074,37.9328766],[22.4084572,37.9327885],[22.4088447,37.9327577],[22.4096229,37.9325519],[22.4103521,37.9325077],[22.4107878,37.9323513],[22.4111183,37.9323288],[22.4113778,37.9321656],[22.4112463,37.9319295],[22.4112172,37.9316948],[22.4116079,37.9315198],[22.4116439,37.9314302],[22.4115437,37.9313297],[22.4115488,37.9312576],[22.4116892,37.9310793],[22.4116927,37.9309171],[22.4118986,37.9308658],[22.4120798,37.9309043],[22.4121539,37.930635],[22.4126241,37.9304611],[22.412505,37.9302297],[22.4123532,37.9298806],[22.4117189,37.9297459],[22.4114718,37.9295984],[22.4115306,37.929509],[22.4119067,37.9294781],[22.4121589,37.9293914],[22.4125637,37.9285587],[22.412555,37.9284324],[22.4123786,37.9281687],[22.4119077,37.9278469],[22.4119208,37.927766],[22.4121583,37.9276836]]},{"id":18595,"author":"","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0397 \u03c7\u03bb\u03c9\u03c1\u03af\u03b4\u03b1 \u03c4\u03bf\u03c5 \u0393\u03c5\u03bc\u03bd\u03bf\u03cd \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","description_GR":" \u03b1\u03c0\u03cc ","path":"NATURE\/Nature_Ziria_Flora_Gymno_loop","activity_type":96,"assistance":2,"difficulty":2,"scenic_value":4,"length":3993,"name_EN":"Ziria: Flora of Gymno ridge","description_EN":" by ","ascent_time":0,"descent_time":0,"marker":"Red_cycle","level":9,"ascent":134,"descent":134,"maxelev":1613,"minelev":1474,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.43688 37.95963,22.45156 37.97152)","views":8,"millestones":"0,22.4383869,37.9654484#1,22.4417571,37.9606585#2,22.4472821,37.9678335#3,22.4472455,37.9697062#4.0,22.4383869,37.9654484","x":22.4454359,"y":37.9655418,"coor":[[22.4383869,37.9654484],[22.4380205,37.9650109],[22.4374592,37.9641023],[22.4370605,37.9630426],[22.4371846,37.9625576],[22.4376892,37.9618433],[22.4379563,37.9615945],[22.4385944,37.9610262],[22.4392744,37.9606297],[22.4394996,37.9602091],[22.439803,37.9598526],[22.4405848,37.9594845],[22.4409831,37.9594898],[22.4413148,37.9596834],[22.4415865,37.960025],[22.4417664,37.9606672],[22.4420664,37.9610137],[22.4424172,37.9616492],[22.4429185,37.9621695],[22.4428445,37.9624389],[22.4432181,37.9625339],[22.4432257,37.9627143],[22.4433822,37.9628515],[22.4439591,37.9630214],[22.4442736,37.9632238],[22.4445114,37.963281],[22.4445774,37.96339],[22.4445613,37.9636151],[22.4447403,37.9637617],[22.4447532,37.9639106],[22.444936,37.9644177],[22.445486,37.9653261],[22.4454359,37.9655418],[22.4457482,37.9660506],[22.4457334,37.9662126],[22.4462193,37.966922],[22.4470812,37.9676183],[22.4470895,37.9677626],[22.4474171,37.967884],[22.4481804,37.9689395],[22.4488731,37.9695615],[22.4495844,37.9698412],[22.4498278,37.9701779],[22.4507595,37.970803],[22.451214,37.9713857],[22.4513041,37.9717068],[22.4504103,37.9711679],[22.4496172,37.9709862],[22.4489636,37.9706712],[22.4483583,37.9702216],[22.4475328,37.9699584],[22.4471974,37.9696655],[22.4466644,37.9690277],[22.4462047,37.9686971],[22.4452214,37.9683597],[22.4448884,37.9686122],[22.443019,37.9673302],[22.4416023,37.9670321],[22.4410385,37.9667813],[22.440635,37.9664786],[22.4402356,37.9659866],[22.4400229,37.9658216],[22.4397069,37.9656912],[22.4388439,37.9655896],[22.4383869,37.9654484]]},{"id":18596,"author":"","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0397 \u03c7\u03bb\u03c9\u03c1\u03af\u03b4\u03b1 \u03c4\u03b7\u03c2 \u039c\u03b9\u03ba\u03c1\u03ae\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","description_GR":" \u03b1\u03c0\u03cc ","path":"NATURE\/Nature_Ziria_Flora_Mikri_Ziria","activity_type":96,"assistance":1,"difficulty":2,"scenic_value":5,"length":2620,"name_EN":"Ziria: Flora of Mikri Ziria summit","description_EN":" by ","ascent_time":0,"descent_time":0,"marker":"No_marks","level":9,"ascent":350,"descent":40,"maxelev":2107,"minelev":1792,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.45185 37.92134,22.46971 37.92922)","views":10,"millestones":"0,22.4542990,37.9211386#1,22.4539913,37.9280269#2,22.4639502,37.9291719#2.6,22.4695810,37.9277235","x":22.4539582,"y":37.9272399,"coor":[[22.454299,37.9211386],[22.4542012,37.9214618],[22.4543072,37.9218327],[22.4540514,37.921978],[22.4532094,37.9222013],[22.4529311,37.92213],[22.4527569,37.9221322],[22.4527087,37.9222578],[22.4527857,37.9223849],[22.452631,37.9227074],[22.4524802,37.9228496],[22.4525236,37.9229493],[22.4522522,37.9234143],[22.4522946,37.9235591],[22.4522344,37.9237205],[22.4520964,37.9237908],[22.451955,37.9240232],[22.4519861,37.9241678],[22.4521209,37.9242507],[22.4521182,37.9243769],[22.4519785,37.9245282],[22.452504,37.9249677],[22.4529911,37.925614],[22.4531721,37.9256614],[22.4536089,37.9259916],[22.4538474,37.9260128],[22.4539225,37.9262301],[22.4538903,37.9266802],[22.4539521,37.9269875],[22.453893,37.9270948],[22.4539582,37.9272399],[22.4538472,37.927653],[22.4538665,37.9278155],[22.4540888,37.9281879],[22.4547295,37.9283901],[22.4560433,37.9286777],[22.4566277,37.9290278],[22.457317,37.9292531],[22.4575904,37.9292387],[22.4578087,37.9291334],[22.4582823,37.9287972],[22.4585851,37.9284587],[22.4587815,37.928317],[22.459056,37.9282485],[22.4599524,37.9283684],[22.4607441,37.9285951],[22.4612164,37.9288626],[22.4615225,37.9289117],[22.4625536,37.9286232],[22.4630315,37.9286205],[22.4633588,37.9287509],[22.4641324,37.9293017],[22.4645525,37.9293433],[22.4650206,37.9292683],[22.4653819,37.9293992],[22.4655074,37.9293828],[22.4661769,37.9289229],[22.4672432,37.9279815],[22.4686024,37.9277288],[22.469581,37.9277235]]},{"id":19136,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u039a\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1","description_GR":"\u03a0\u03b1\u03bb\u03b9\u03ac \u03ba\u03c4\u03b7\u03bd\u03bf\u03c4\u03c1\u03bf\u03c6\u03b9\u03ba\u03ac \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7 \u03a3\u03ba\u03b1\u03c6\u03b9\u03b4\u03b9\u03ac\u03c2","path":"PELOPONNESE\/Pelop_Ziria_Goura_loop","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":4,"length":7338,"name_EN":"Zireia Mt.: Loop trail near Goura","description_EN":"Old shepherds paths to Skafidia plateau","ascent_time":135,"descent_time":135,"marker":"Red_dots","level":12,"ascent":436,"descent":436,"maxelev":1359,"minelev":953,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34034 37.92757,22.36197 37.94155)","views":6,"millestones":"0,22.3405448,37.9326252#1,22.3473296,37.9346488#2,22.3536925,37.9394016#3,22.3610147,37.9386735#4,22.3605243,37.9300849#5,22.3532866,37.9304657#6,22.3457799,37.9294016#7.3,22.3405448,37.9326252","x":22.3611854,"y":37.9349918,"coor":[[22.3405448,37.9326252],[22.3423963,37.9328631],[22.3425196,37.9329459],[22.342639,37.9332],[22.3430043,37.9334169],[22.3444246,37.933509],[22.3451345,37.9337037],[22.345215,37.9336688],[22.3452288,37.9335608],[22.3451405,37.9329288],[22.3451953,37.932515],[22.34511,37.9322614],[22.3451585,37.9321269],[22.3453174,37.9321472],[22.3454031,37.9323827],[22.3458878,37.9330925],[22.3459772,37.9331658],[22.3460722,37.9331491],[22.3469184,37.9334674],[22.3471977,37.9336967],[22.3471385,37.9343087],[22.3475871,37.935108],[22.347701,37.9356143],[22.3476117,37.9360456],[22.347253,37.9363109],[22.3472382,37.9364639],[22.3474176,37.9365836],[22.3477462,37.9366423],[22.3482043,37.9365135],[22.3482368,37.9365861],[22.3481419,37.936756],[22.3481383,37.9369182],[22.3483252,37.9372092],[22.3492045,37.937582],[22.3497294,37.9380219],[22.3497579,37.9382747],[22.3499349,37.9385025],[22.3503961,37.9387432],[22.3509622,37.9388683],[22.3511392,37.9390961],[22.3519262,37.9395217],[22.3524048,37.9394924],[22.352608,37.9395042],[22.3527091,37.9395597],[22.3529373,37.9395359],[22.3532253,37.9393777],[22.3534642,37.939381],[22.3535576,37.9392742],[22.3541704,37.9398595],[22.3551395,37.9402876],[22.355536,37.9403653],[22.3565027,37.9409015],[22.3571165,37.9414418],[22.3573327,37.9414448],[22.3575001,37.9415913],[22.3581502,37.9415283],[22.3588198,37.9417855],[22.3590353,37.9418155],[22.3591726,37.9417814],[22.3596157,37.9413009],[22.36017,37.9404254],[22.3603734,37.9399777],[22.3609109,37.939859],[22.3611767,37.9396735],[22.3611466,37.9390152],[22.3607702,37.9380276],[22.3605927,37.9367995],[22.3606482,37.9363497],[22.360854,37.9357938],[22.361109,37.9353602],[22.3611854,37.9349918],[22.3616963,37.9340166],[22.3618384,37.9333337],[22.3608825,37.9318514],[22.3606866,37.9314521],[22.3605242,37.9305667],[22.360521,37.9293635],[22.3605205,37.9281379],[22.3582628,37.9288724],[22.3581465,37.9288888],[22.358017,37.9290853],[22.357092,37.9297483],[22.3568384,37.929898],[22.3564718,37.93001],[22.3558488,37.9303978],[22.3557298,37.9306305],[22.3553486,37.9308865],[22.3546961,37.9310666],[22.3544804,37.9310456],[22.35408,37.9311391],[22.3539025,37.9309384],[22.3537105,37.9308726],[22.3533867,37.9305977],[22.3529226,37.9299784],[22.3518058,37.9295482],[22.3512232,37.9291435],[22.350893,37.9291569],[22.350533,37.9289716],[22.3500094,37.9289823],[22.3497957,37.9288711],[22.3496791,37.928491],[22.3498128,37.9281054],[22.3496337,37.9279767],[22.3496154,37.9277782],[22.3493963,37.9273966],[22.3490511,37.927572],[22.3487895,37.9275683],[22.34828,37.9279667],[22.3476959,37.9281387],[22.3474757,37.9283159],[22.3471802,37.9283027],[22.346819,37.9281264],[22.3465232,37.9282079],[22.3462108,37.9284378],[22.3459505,37.9288847],[22.3458029,37.9293783],[22.3455594,37.9296272],[22.34536,37.9298948],[22.3452857,37.9301641],[22.345549,37.9306004],[22.3456189,37.931034],[22.3462056,37.9317632],[22.3459845,37.93249],[22.3460722,37.9331491],[22.3459772,37.9331658],[22.3458878,37.9330925],[22.3454031,37.9323827],[22.3453174,37.9321472],[22.3451585,37.9321269],[22.34511,37.9322614],[22.3451953,37.932515],[22.3451405,37.9329288],[22.3452288,37.9335608],[22.345215,37.9336688],[22.3451345,37.9337037],[22.3444246,37.933509],[22.3430043,37.9334169],[22.342639,37.9332],[22.3425196,37.9329459],[22.3423963,37.9328631],[22.3405448,37.9326252]]},{"id":19298,"author":"AnaDigit","name_GR":"\u0396\u03ae\u03c1\u03b5\u03b9\u03b1: \u0393\u03ba\u03bf\u03cd\u03c1\u03b1-\u03a6\u03b1\u03c1\u03bc\u03b1\u03ba\u03af\u03bb\u03b1-\u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03bf 2375 \u03c4\u03b7\u03c2 \u0396\u03ae\u03c1\u03b5\u03b9\u03b1\u03c2","path":"PELOPONNESE\/Pelop_Ziria_Goura_Farmakila_summit","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":8037,"name_EN":"Zireia Mt.: From Goura to the summit of Mt Ziria","description_EN":"Ascent to the 2375 point","ascent_time":295,"descent_time":215,"marker":"Red_dots","level":10,"ascent":1422,"descent":30,"maxelev":2368,"minelev":953,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.34042 37.92532,22.39768 37.93835)","views":16,"millestones":"0,22.3405448,37.9326252#1,22.3457683,37.9312294#2,22.3513593,37.9292372#3,22.3604396,37.9281761#4,22.3710151,37.9267332#5,22.3812586,37.9254309#6,22.3914976,37.9281744#7,22.3955629,37.9330386#8,22.3957882,37.9390826","x":22.373282,"y":37.9269227,"coor":[[22.3405448,37.9326252],[22.3423963,37.9328631],[22.3425196,37.9329459],[22.342639,37.9332],[22.3430043,37.9334169],[22.3444246,37.933509],[22.3451345,37.9337037],[22.345215,37.9336688],[22.3452288,37.9335608],[22.3451405,37.9329288],[22.3451953,37.932515],[22.34511,37.9322614],[22.3451585,37.9321269],[22.3453174,37.9321472],[22.3454031,37.9323827],[22.3458878,37.9330925],[22.3459772,37.9331658],[22.3460722,37.9331491],[22.3459845,37.93249],[22.3462056,37.9317632],[22.3456189,37.931034],[22.345549,37.9306004],[22.3452857,37.9301641],[22.34536,37.9298948],[22.3455594,37.9296272],[22.3458029,37.9293783],[22.3459505,37.9288847],[22.3462108,37.9284378],[22.3465232,37.9282079],[22.346819,37.9281264],[22.3471802,37.9283027],[22.3474757,37.9283159],[22.3476959,37.9281387],[22.34828,37.9279667],[22.3487895,37.9275683],[22.3490511,37.927572],[22.3493963,37.9273966],[22.3496154,37.9277782],[22.3496337,37.9279767],[22.3498128,37.9281054],[22.3496791,37.928491],[22.3497957,37.9288711],[22.3500094,37.9289823],[22.350533,37.9289716],[22.350893,37.9291569],[22.3512232,37.9291435],[22.3518058,37.9295482],[22.3529226,37.9299784],[22.3533867,37.9305977],[22.3537105,37.9308726],[22.3539025,37.9309384],[22.35408,37.9311391],[22.3544804,37.9310456],[22.3546961,37.9310666],[22.3553486,37.9308865],[22.3557298,37.9306305],[22.3558488,37.9303978],[22.3564718,37.93001],[22.3568384,37.929898],[22.357092,37.9297483],[22.358017,37.9290853],[22.3581465,37.9288888],[22.3582628,37.9288724],[22.3605205,37.9281379],[22.3633526,37.9269607],[22.36536,37.9267363],[22.3658964,37.9265635],[22.3668828,37.9267214],[22.3674527,37.9266752],[22.3679176,37.9267447],[22.3683534,37.9265886],[22.3687637,37.9265582],[22.3695454,37.9261905],[22.3704268,37.9264641],[22.3710913,37.9267707],[22.3714198,37.9268383],[22.3716546,37.9269452],[22.371916,37.9269578],[22.3725435,37.9268764],[22.373282,37.9269227],[22.3736033,37.9268009],[22.3739256,37.9268234],[22.3742693,37.9267966],[22.3752334,37.9264134],[22.3753956,37.9262805],[22.3755149,37.9260298],[22.3757915,37.9258714],[22.3780194,37.9259652],[22.3785073,37.9255033],[22.3790608,37.9251685],[22.379666,37.9250687],[22.3799496,37.9251852],[22.3805407,37.9252114],[22.3807985,37.9253862],[22.3813093,37.9254382],[22.3815774,37.9256672],[22.3822299,37.9260006],[22.3827735,37.9261163],[22.3829906,37.9260742],[22.383633,37.9263534],[22.3844593,37.926545],[22.3851098,37.9269775],[22.3855718,37.9271821],[22.3863307,37.9273367],[22.3868545,37.9273168],[22.3871443,37.9275912],[22.3873694,37.9277024],[22.3880868,37.9276762],[22.3887182,37.9279372],[22.3891371,37.928033],[22.3894007,37.9279465],[22.3897631,37.9280236],[22.3900033,37.9279638],[22.3904771,37.9281505],[22.3908662,37.9280477],[22.3914504,37.9281593],[22.3920266,37.9283474],[22.3923578,37.9286493],[22.3930216,37.9289918],[22.3932028,37.9290304],[22.3935797,37.9294861],[22.393888,37.9294678],[22.3943236,37.9298432],[22.3946405,37.9299197],[22.395121,37.9298],[22.3961308,37.929931],[22.3965183,37.9299002],[22.3971128,37.9300615],[22.3972853,37.9301089],[22.3972063,37.9304098],[22.397328,37.9307494],[22.3975498,37.9311444],[22.3974958,37.9313374],[22.3970555,37.9317009],[22.3968683,37.9319417],[22.39672,37.9319577],[22.3964994,37.932162],[22.3962584,37.9322578],[22.3961291,37.9324453],[22.3957347,37.9327914],[22.3957324,37.9328995],[22.3953485,37.9332187],[22.3945691,37.9332036],[22.3947243,37.9336698],[22.3948204,37.9338469],[22.3947943,37.9339997],[22.394433,37.934914],[22.3943403,37.936562],[22.3944905,37.9375013],[22.3947988,37.937893],[22.3948442,37.9380153],[22.3951229,37.9382804],[22.3952877,37.9385531],[22.3953449,37.9385358],[22.3955874,37.9388996],[22.3959275,37.9389583],[22.3958557,37.9391196],[22.3957882,37.9390826]]}],{"extent":[22.34016,37.84134,22.52994,38.01836],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=en&ul=1&a=","style":{"default":{"color":"#3a2fff","width":5,"action":{"type":"redirect"},"sort":{"type":"byname"}},"PELOPONNESE\/Pelop_Abeliona_Trail_1":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_2":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1c":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1a":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1b":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"Car_touring\/CAR_Rodos_Attavyros_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Attavyros_summit":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_36km_Lindos_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Kattavia_Skiadeni_loop":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"Car_touring\/CAR_Rodos_Lindos_Sport":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"MACEDONIA\/Makedonia_Falakro_refuge_Chionotripa":{"url":null,"color":"#bb0707","width":6,"exclude":false,"useStyle":false},"MACEDONIA\/Makedonia_Falakro_refuge_ProfitisIlias":{"url":null,"color":"#b11f0b","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":"Menalon_Trail_Lousios.php","color":"#ffee2f","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#248036","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#108b1a","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#fbfb00","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#e70404","width":6,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_1":{"url":null,"color":"#ec0a0a","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_9":{"url":null,"color":"#f60606","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_10":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_11":{"url":null,"color":"#2fb4ff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_12":{"url":null,"color":"#069f24","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_13":{"url":null,"color":"#f60404","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Merovigli_Skaros":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Oia_Amoudi":{"url":null,"color":"#2fffff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_2":{"url":null,"color":"#06b12f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_3":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_4":{"url":null,"color":"#f4ff00","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_5":{"url":null,"color":"#04b427","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_6":{"url":null,"color":"#ff2fd5","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_7":{"url":null,"color":"#2abc0e","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_8":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Koukouli_Dilofo":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Vikos_Elafotopos":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_AnoPedina_Monodendri":{"url":null,"color":"#0dcb15","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_AKlidonia_Papigo":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_AstrakaRef_Gamila":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Astraka_Drakolimni":{"url":null,"color":"#2facff","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Konitsa_Astraka":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Konitsa_Stomio_Ast":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_O31_Astraka_Vrisoc":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_O31_Papigo_Astraka":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Voidomatis_bridges":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Stouros":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Vradeto_Beloi":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Kapesovo_Kipi":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_KKlidonia_AKlidonia":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Monodentri_Vitsa":{"url":null,"color":"#2fffee","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Elafotopos_AnoPedina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Skala_Vradetou":{"url":null,"color":"#e91c13","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Vradeto_Astraka":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Vitsa_Koukouli":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Tsepelovo_Astraka":{"url":null,"color":"#fbf100","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Papigo_Vikos":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Papigo_Loop":{"url":null,"color":"#f50000","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Monodendri_Vikos":{"url":null,"color":"#2f37ff","width":6,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Pelop_Lagadia_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Arvitsa":{"url":null,"color":"#0bbd13","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_2":{"url":null,"color":"#ffee2f","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_1":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_3":{"url":null,"color":"#2fff8b","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Keresova":{"url":null,"color":"#f40404","width":6,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittia_Odos":{"url":null,"color":"#34bb0a","width":3,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Papagou_Trail_2":{"url":null,"color":"#0a820a","width":6,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Trail10":{"url":null,"color":"#2f40ff","width":4,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Katechaki_GlykaNera":{"url":null,"color":"#ffd82f","width":3,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Ilioupoli_Sfittos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Kareas_Michailidis":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Katechaki_Summit":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Taxiarches_sum_road":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Anthousa_tower":{"url":null,"color":"#2f3dff","width":6,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Liondari_cave":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Megalos_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Quarries":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Korakovouni_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Papagou_Asteriou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop3":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_OmvriosZefs":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kalopoula":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_roman_quarry":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_PrfIlias_Terpsithea":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop4":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_PrfIlias":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_Mnimeio_Michailidi":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Gyros_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Mikros_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Hard_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Anthousa_training":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Oreinos_Agonas_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Trail10_short_version":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_1":{"url":null,"color":"#1d7a10","width":5,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_2":{"url":null,"color":"#2f50ff","width":5,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_3":{"url":null,"color":"#eb0707","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_4":{"url":null,"color":"#f72fff","width":5,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_5":{"url":null,"color":"#13930e","width":5,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_6":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_6a":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_6b":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_7":{"url":null,"color":"#ffff2f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_8":{"url":null,"color":"#e110d0","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_9":{"url":null,"color":"#51be14","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Chora_loop1":{"url":null,"color":"#2fcdff","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Chora_loop2":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Dryopis_Zogaki":{"url":null,"color":"#11a2b6","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala":{"url":null,"color":"#ffad00","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala2":{"url":null,"color":"#22d112","width":5,"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_ziria = new getPoiCollection("ziria",[{"name":"0","owner":"AnaDigit","x":22.396372,"y":37.940682,"photo":"ZIRIA_22_395719_37.939167","type":0,"zoom_level":12,"id":77,"hlink_GR":"","hlink_EN":"","description":"","height":313,"width":800},{"name":"","owner":"","x":22.397095680237,"y":37.968487976284,"photo":"ZIRIA_Tulipa_orphanidea","type":1,"zoom_level":13,"id":127,"hlink_GR":"","hlink_EN":"","description":"","height":768,"width":512},{"name":"","owner":"A. Bonetti","x":22.402374267579,"y":37.977317670087,"photo":"Mt Ziria Plateau","type":0,"zoom_level":12,"id":226,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"","owner":"AnaDigit","x":22.357871055604,"y":37.901198603798,"photo":"Mt Ziria-summits-01","type":0,"zoom_level":13,"id":227,"hlink_GR":"","hlink_EN":"","description":"","height":336,"width":512},{"name":"","owner":"A. Bonetti","x":22.430870056153,"y":37.940571040879,"photo":"Rhynolophus_ferrumequinum","type":7,"zoom_level":14,"id":258,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":370},{"name":"","owner":"AnaDigit","x":22.464708805089,"y":37.849077299422,"photo":"Stymfalia_Lake","type":0,"zoom_level":12,"id":525,"hlink_GR":"","hlink_EN":"","description":"","height":269,"width":512},{"name":"","owner":"AnaDigit","x":22.462119,"y":37.860477,"photo":"Stymfalia_Arx_Stymfalos","type":10,"zoom_level":14,"id":526,"hlink_GR":"","hlink_EN":"","description":"","height":289,"width":512},{"name":"","owner":"AnaDigit","x":22.45888,"y":37.86775,"photo":"Stymfalia_Moni_Zaraka","type":10,"zoom_level":13,"id":527,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":343},{"name":"","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":22.3414829,"y":37.983511,"photo":"Korinthia_Panagia_Vrachon","type":9,"zoom_level":14,"id":716,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":464},{"name":"","owner":"AnaDigit","x":22.463947057718,"y":37.869372957068,"photo":"Pigi_Stymfalias","type":71,"zoom_level":14,"id":779,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"","owner":"topoguide","x":22.493558645249,"y":37.858569349148,"photo":"Korinthia_Stymfalia_apo_Stavraeto","type":0,"zoom_level":13,"id":1672,"hlink_GR":"","hlink_EN":"","description":"Walking down from the summit to the Siouri pass, one enjoy the view of Steemfalia lake, surrounded by high mountains.","height":445,"width":800},{"name":"","owner":"topoguide","x":22.494814,"y":37.889193,"photo":"Korinthia_Kaliani","type":0,"zoom_level":13,"id":1673,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":465},{"name":"","owner":"topoguide","x":22.520080327988,"y":37.866294238406,"photo":"Korinthia_Psari4","type":0,"zoom_level":14,"id":1679,"hlink_GR":"","hlink_EN":"","description":"Psari is a small village in mid-way between the Steemfalia lake and the Nemea plain.","height":400,"width":985},{"name":"","owner":"topoguide","x":22.524715185165,"y":37.86574369744,"photo":"Korinthia_Psari_AgNikolaos","type":9,"zoom_level":14,"id":1680,"hlink_GR":"","hlink_EN":"","description":"A church dedicated to Nikolaos from Psari, a local saint died on 1554. ","height":465,"width":700},{"name":"","owner":"topoguide","x":22.503000020982,"y":37.861889795504,"photo":"Korinthia_Psari_Stavraetos21","type":0,"zoom_level":14,"id":1682,"hlink_GR":"","hlink_EN":"","description":"The short distance and the mild slopes make the Stavraetos trail suitable for families.","height":600,"width":533},{"name":"","owner":"topoguide","x":22.527875,"y":37.865799,"photo":"Korinthia_Psari_kentriki_vrisi","type":9,"zoom_level":15,"id":1684,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"","owner":"topoguide","x":22.516958236694,"y":37.846319674383,"photo":"Korinthia_Psari_AgTheodori","type":9,"zoom_level":14,"id":1685,"hlink_GR":"","hlink_EN":"","description":"An old rural chapel, on a prominent ridge, dominating the lowlands and the pass to Argolida. The place could be used as a medieval monastery, itself replacing an older settlement.","height":450,"width":700},{"name":"","owner":"topoguide","x":22.492228269578,"y":37.846700919012,"photo":"Korinthia_Psari_Adrianeio_ydragogeio","type":10,"zoom_level":13,"id":1686,"hlink_GR":"","hlink_EN":"","description":"The waters of Stymfalia lake are driven through a tunnel southern of the Siouri pass, where the long aquaduc to Korinthia stats.","height":600,"width":399},{"name":"","owner":"topoguide","x":22.503482818603,"y":37.847268546251,"photo":"Korinthia_Psari_Ydragogeio","type":9,"zoom_level":14,"id":1687,"hlink_GR":"","hlink_EN":"","description":"Remnants of the old aquaduc, leading the waters of Stymfalia Lake to Korinthos. Some 200m east, one can find the remains of the roman aqueduc, built by Handrian to serve the same scope.","height":700,"width":593},{"name":"","owner":"topoguide","x":22.52810549736,"y":37.865675938266,"photo":"Korinthia_Psari_pinakida_EEPP","type":9,"zoom_level":14,"id":1689,"hlink_GR":"","hlink_EN":"","description":"Four hiking and one mountain-bike route have been way-marked and signposted aroun Psari.","height":458,"width":700},{"name":"","owner":"topoguide","x":22.508493185044,"y":37.863651604252,"photo":"Korinthia_Psari_Stavraetos1","type":0,"zoom_level":14,"id":1690,"hlink_GR":"","hlink_EN":"","description":"All along the Stavraetos crest line, the hickers enjoy a gorgeous view to Ziria mountain and the Steemfalia bassin.","height":597,"width":800}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="
Garmin CCR Scale Race
Garmin CCR Skyrace
Zria Plateau butterflies
Flora of Gymno ridge
Flora of Mikri Ziria summit
Flora of Ziria summit area
Greater loop of Stymphalia Lake
Psari 3, Stavraetos
Agia Triada- Flabouritsa ravine
Trikala-Dasios lake-Kleftaki
Dasios lake to Ski Center
The Flabouritsa ravine
Flabouritsa ravine-peak 2375
From Goura to the summit of Mt Ziria
Loop trail near Goura
From Goura to the summit
Trikala to Refuge A via Gymno ridge
Isomata-Sythas Springs
A loop trail in Karya
Ascent to Mikri Ziria
Killini-Mikri Ziria
From Refuge A to the summit
Refuge A-Pouliou Ochtos-Peak 2376
From Steno to the summit
From Trikala to Dasios lake
Trikala to Refuge A
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["ziria"],pc:["ziria"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo_en/{z}/{x}/{-y}.png',showLogo: 0,showZoomTool: 0}; var overrideAfterLoad = function(map){ adventureCollection_ziria.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); }