console.log('no normal webpage');/** * Created by sofos on 15/09/16. */ function GetXmlHttpObject() { if (window.XMLHttpRequest) { return new XMLHttpRequest();// code for IE7+, Firefox, Chrome, Opera, Safari } if (window.ActiveXObject) { return new ActiveXObject("Microsoft.XMLHTTP");// code for IE6, IE5 } return null; } var browser = (function(){ var self = {}; self.ie = (navigator.appName == 'Microsoft Internet Explorer') ; self.chrome = /chrome/i.test( navigator.userAgent ); self.ff = /Firefox/i.test(navigator.userAgent); self.getSize = function(){ } self.size = function(){ return [(self.ie)?document.body.clientWidth:window.innerWidth,(self.ie)?document.body.clientHeight:window.innerHeight]; } self.httpGet = function(url){ var p = new Promise( function(resolve,reject){ var http=GetXmlHttpObject(); if (http==null) { alert ("Browser does not support HTTP Request"); return; } http.onreadystatechange=function () { if (this.readyState==4) { var data = this.responseText; resolve(data); } }; http.open("GET",url,true); http.send(null); } ); return p; } return self; })(); if(typeof $ === "undefined" && !(typeof jQuery === "undefined")){ $=jQuery; console.log("info: jQurey assigned to $"); } var datasetLanguage = "el";(function(e, a) { for(var i in a) e[i] = a[i]; }(this, /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // identity function for calling harmony imports with the correct context /******/ __webpack_require__.i = function(value) { return value; }; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 4); /******/ }) /************************************************************************/ /******/ ([ /* 0 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var loader_1 = __webpack_require__(5); exports.gsMapInitStartFunctionList = []; exports.gsMapInitEndFunctionList = []; exports.gsMapClickNotFoundFunctionList = []; exports.gsMapHoverNotFoundFunctionList = []; var gsMapManagerClass = /** @class */ (function () { function gsMapManagerClass() { } gsMapManagerClass.prototype.create = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; gsMapManagerClass.prototype.create_dummy_function = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; return gsMapManagerClass; }()); exports.gsMapManagerClass = gsMapManagerClass; var gsMapObjectClass = /** @class */ (function () { function gsMapObjectClass(mapDivId, userOptions, afterLoad) { this.mapDivId = mapDivId; this.userOptions = userOptions; this.afterLoad = afterLoad; this.dom = null; this.activeBaseLayer = null; this.map = null; this.state = { zoom: 0 }; this.hllayer = null; this.hlsource = null; this.onZoomLeveChangedCustomFunctions = []; this.gsLayers = {}; this.tooltip = {}; this.mapCustomEventsHandler = new loader_1.MapCustomEvents(); this.registerMapHoverNotFoundFunction = function (fn) { exports.gsMapHoverNotFoundFunctionList.push(fn); }; this.flytoextentR = function (params, self) { if (!self) { self = this; } ; var extent = [ Math.min(params.extent[0], params.extent[2]), Math.min(params.extent[1], params.extent[3]), Math.max(params.extent[0], params.extent[2]), Math.max(params.extent[1], params.extent[3]) ]; var ms = params.ms || 1000; var scalefactor = params.scalefactor || 1.0; var resolve = params.resolve || function () { }; extent = self.scaleExtent(extent, scalefactor); var view = self.map.getView(); var start = +new Date(); console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // duration: ms, // source: /** @type {ol.Coordinate} */ (view.getCenter()), // start: start // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: 1.0 * view.getResolution(), // start: start // }); // self.map.beforeRender(pan, zoom); // console.log("dm-001: disabled animate"); // console.log(extent); // console.log(self.map.getView()); try { self.map.getView().fit(extent, { duration: 1000 }); //, self.map.getSize()); } catch (err) { console.log(err); } setTimeout(function () { resolve(self); }, ms); return self; }; this.flytoR = function (params, self) { var z = params.z || self.state.zoom; var x = params.x; var y = params.y; var ms = params.ms || 1000; var resolve = params.resolve || function () { }; console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // source: self.map.getView().getCenter(), // duration: ms // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: self.map.getView().getResolution() // }); // self.map.beforeRender(pan, zoom); // self.map.setView(new ol.View({ // center: self.ll2xy([x, y]), // zoom: z // }));//.setCenter(ll2xy([x,y])); self.map.getView().animate({ zoom: z, center: self.ll2xy([x, y]) }); self.state.zoom = z; setTimeout(function () { resolve(self); }, ms); return self; }; this.highlightPointR = function (params, self) { self.hlsource.clear(); var x = params.x; var y = params.y; var ms = params.ms || 1000; // var color = params.c || 1000; var resolve = params.resolve || function () { }; var f = self.feature_from_coor(x, y); var s = self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18, ''); f.setStyle(s); self.hlsource.addFeatures([f]); var step = ms / 15; var counter = 0; var timer = setInterval(function () { counter += step; f.setStyle(self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18 - (counter / ms) * 18 + 6, '')); if (counter > ms) { clearInterval(timer); resolve(self); } }, step); return self; }; var self = this; window.addEventListener('load', function () { self.init(); if (self.afterLoad != undefined) self.afterLoad(self); }, false); } gsMapObjectClass.prototype.init = function () { var self = this; for (var i in exports.gsMapInitStartFunctionList) exports.gsMapInitStartFunctionList[i](self); this.dom = document.getElementById(this.mapDivId); console.log(self.userOptions); this.mapCustomEventsHandler.registerMapCustomEvents(self, self.userOptions.events); var mapOpacity = self.userOptions.opacity || 1.0; if (self.userOptions.url == 'bing') { var styles = [ 'Road', 'Aerial', 'AerialWithLabels', 'collinsBart', 'ordnanceSurvey' ]; this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.BingMaps({ key: 'AnOH4hX_YaNwHAdisvgGuUAGcEXxFYE2TwJsswR-vZTSEaTHffULolihVlFpIhjv', imagerySet: styles[1] }) }); } else { this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.XYZ({ url: (self.userOptions.url || 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15') // 'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png') , crossOrigin: null }) }); } this.state.zoom = (self.userOptions.zoom || 4); var myControls = ol.control.defaults({ attribution: false, zoom: (self.userOptions.showZoomTool == 1) }); //if(self.userOptions.showZoomTool == 1) myControls.extend([new ol.control.ZoomSlider()]); this.map = new ol.Map({ controls: myControls, layers: [ this.activeBaseLayer ], target: this.mapDivId, view: new ol.View({ center: self.ll2xy([(self.userOptions.lng || 15), (self.userOptions.lat || 44)]), zoom: this.state.zoom }) }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': self.state.zoom = this.getZoom(); break; case 'center': break; } }); this.hlsource = new ol.source.Vector({ wrapX: false, noWrap: true }); this.hllayer = new ol.layer.Vector({ source: this.hlsource, visible: true }); this.map.addLayer(this.hllayer); this.map.on('pointermove', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').hover) feature.get('msp').hover(self, feature, layer, evt.pixel); } }); if (!found) { for (var i in exports.gsMapHoverNotFoundFunctionList) exports.gsMapHoverNotFoundFunctionList[i](self); } }); this.map.on('click', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').click.length > 0) { feature.get('msp').click.forEach(function (f) { f(self, feature, layer, evt.pixel); }); } /* else { if (feature.get('msp').click.length!=0) feature.get('msp').click(self, feature, layer, evt.pixel); }*/ } }); if (!found) { for (var i in exports.gsMapClickNotFoundFunctionList) exports.gsMapClickNotFoundFunctionList[i](self); } }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': for (var i in self.onZoomLeveChangedCustomFunctions) self.onZoomLeveChangedCustomFunctions[i](self, self.state.zoom); break; } }); for (var i in exports.gsMapInitEndFunctionList) exports.gsMapInitEndFunctionList[i](self); var adventureCollectionsKeys = (self.userOptions.ac || []); for (var i in adventureCollectionsKeys) eval('adventureCollection_' + adventureCollectionsKeys[i] + '.registerMap(this);'); var poiCollectionsKeys = (self.userOptions.pc || []); for (var i in poiCollectionsKeys) eval('poiCollection_' + poiCollectionsKeys[i] + '.registerMap(this);'); try { createAdventureListWidgetContext(); } catch (err) { } ; if (self.userOptions.showLogo == 1) { var d = document.createElement('div'); d.style.position = 'absolute'; d.style.top = '10px'; d.style.right = '10px'; d.innerHTML = ''; this.dom.appendChild(d); } }; gsMapObjectClass.prototype.registerOnZoomChangedFunction = function (fn) { this.onZoomLeveChangedCustomFunctions.push(fn); }; gsMapObjectClass.prototype.waitR = function (params, self) { var ms = params.ms; var resolve = params.resolve || function () { }; setTimeout(function () { resolve(self); }, ms); return self; }; gsMapObjectClass.prototype.executeSeq = function (fc) { this.executeSeqItem(fc, 0, this); }; gsMapObjectClass.prototype.executeSeqItem = function (fc, index, self) { var _this = this; /*let p = */ new Promise(function (resolve, reject) { fc[index][1].resolve = resolve; fc[index][0](fc[index][1], _this); }).then(function (self) { if (index < (fc.length - 1)) { self.executeSeqItem(fc, index + 1, self); } }); }; gsMapObjectClass.prototype.getZoom = function () { return this.map.getView().getZoom(); }; gsMapObjectClass.prototype.scaleExtent = function (extent, scaleFactor) { var m = [(extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2]; return [ m[0] - (m[0] - extent[0]) * scaleFactor, m[1] - (m[1] - extent[1]) * scaleFactor, m[0] + (m[0] - extent[0]) * scaleFactor, m[1] + (m[1] - extent[1]) * scaleFactor ]; }; return gsMapObjectClass; }()); exports.gsMapObjectClass = gsMapObjectClass; /* new ol.layer.Tile({ source: new ol.source.XYZ({ url: 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15', crossOrigin: 'null', projection: projection, tileGrid: new ol.tilegrid.TileGrid({ origin: ol.extent.getTopLeft(projectionExtent), resolutions: resolutions, tileSize: 256 }) }) });*/ /* this.activeBaseLayer =new ol.layer.Tile({ source: new ol.source.XYZ({ // /url: 'http://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/${z}/${y}/${x}' // url: 'https://a.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' // url:'http://server.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}' url:'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' //url:'http://a.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png' //["https://a.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://b.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://c.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png"] , crossOrigin: null }) })*/ /***/ }), /* 1 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isTouchDevice() { return 'ontouchstart' in document.documentElement; } function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { var self = map; map.gsLayers = {}; map.gsLayers.item = []; map.gsLayers.addGeoJsonPromise = function (name, url, style, params) { return Promise.resolve().then((function () { return this.addGeoJson(name, url, style, params); }).bind(this, true)); }; map.gsLayers.removeLayer = function (name) { var layer = self.gsLayers.get(name); if (layer) { layer.remove(); } }; map.gsLayers.addGeoJson = function (name, url, style, params) { var item = { active: true, currentFilterMatchParams: undefined }; item.name = name; item.visible = function (value) { if (value) { item.show(); } else { item.hide(); } }; item.remove = function () { var index = map.gsLayers.item.findIndex(function (i) { return i.name === item.name; }); if (index !== -1) { map.map.removeLayer(item.layer); map.gsLayers.item.splice(index, 1); item = undefined; return true; } return false; }; item.hide = function () { if (item.active) { map.map.removeLayer(item.layer); } item.active = false; }; item.show = function () { if (!item.active) { map.map.addLayer(item.layer); } item.active = true; }; item.getExtent = function () { return item.source.getExtent(); }; if (Object.keys(style).length > 0) { item.styleParams = style.styleParams || {}; } else { item.styleParams = {}; style = undefined; } item.source = new ol.source.Vector({ url: url, format: new ol.format.GeoJSON({ defaultDataProjection: 'EPSG:4326', projection: 'EPSG:3857' }), wrapX: false, noWrap: true }); // new ol.source.Vector({wrapX: false, noWrap: true}); item.layer = new ol.layer.Vector({ source: item.source, visible: true, style: style }); if (params) { if (params.minlevel) { map.registerOnZoomChangedFunction(function (a) { if (params.minlevel > map.state.zoom) { item.hide(); } else { item.show(); } }); } var clickFunctionList = []; if (params.events) { if (params.events.click) { var eventParams = this.eventParams; clickFunctionList.push(function (s, f, l) { var eventParams = f.get('msp').eventParams; for (var i in eventParams.click) { var clickEvent = eventParams.click[i]; if (clickEvent.type === 'modalImage') { var div = document.getElementById('myModal'); if (!div) { console.error('div with id myModal does not exist'); } var width = ''; if (clickEvent.style) { if (clickEvent.style.width) { width = 'width:' + clickEvent.style.width + 'px'; } } div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } if (clickEvent.type === 'function') { clickEvent.function(map, f); } if (clickEvent.type === 'hide') { item.hide(); } } }); } } var hoverFunction = function (s, l, f, p) { }; if (params.tooltip) { if (!isTouchDevice()) { hoverFunction = function (s, f, l, p) { s.tooltip.setContent(this.tooltip_prefix + f.get(this.tooltip_key) + this.tooltip_sufix, this.tooltipParams); s.tooltip.setPosition(p); }; } else { clickFunctionList.push(function (s, f, l, p) { var self = f.get('msp'); s.tooltip.setContent(self.tooltip_prefix + f.get(self.tooltip_key) + self.tooltip_sufix, self.tooltipParams); s.tooltip.setPosition(p); }); } } if (params.tooltip || params.events) { item.source.on('addfeature', function (e) { e.feature.set('msp', { tooltipParams: params.tooltip, eventParams: params.events, tooltip_key: ((params.tooltip) ? params.tooltip.key : undefined), tooltip_prefix: ((params.tooltip) ? params.tooltip.prefix || '' : ''), tooltip_sufix: ((params.tooltip) ? params.tooltip.sufix || '' : ''), click: clickFunctionList, hover: hoverFunction }); }); } if (params.zIndex) { item.layer.setZIndex(params.zIndex); } } map.map.addLayer(item.layer); // console.log(map); map.gsLayers.item.push(item); return item; }; map.gsLayers.filter = function (layerName, match) { var found = false; for (var i in map.gsLayers.item) { if (map.gsLayers.item[i].name == layerName) { var item = map.gsLayers.item[i]; if (!(item.currentFilterMatchParams === match)) { found = true; item.currentFilterMatchParams = match; if (item.styleParams.type == 'icon') { item.layer.setStyle(map.pointStyleIconFiltered(item.styleParams, match)); } if (item.styleParams.type == 'polygon') { item.layer.setStyle(map.polygonStyleFiltered(item.styleParams, match)); } if (item.styleParams.type == 'linestring') { item.layer.setStyle(map.linestringStyleFiltered(item.styleParams, match)); } } } } if (found) { console.log('style is function type. should be applied on features to avoid restyling on each render.'); } }; map.gsLayers.get = function (layerName) { return map.gsLayers.item.filter(function (e) { return e.name === layerName; })[0]; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 2 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { map.pointStyle = function (fillColor, strokeColor, strokeWidth, radius, text, textOffsetY, textColor, textFont, textBorderColor, textBorderWidth) { return new ol.style.Style({ image: new ol.style.Circle({ radius: radius, fill: new ol.style.Fill({ color: fillColor }), stroke: new ol.style.Stroke({ color: strokeColor, width: strokeWidth }) }), text: new ol.style.Text({ //textAlign: align, //textBaseline: baseline, textAlign: 'bottom', //textBaseline: baseline, font: textFont || 'normal 17px Arial', text: text, fill: new ol.style.Fill({ color: textColor }), stroke: new ol.style.Stroke({ color: textBorderColor || 'white', width: textBorderWidth || 1.5 }), offsetX: 10, offsetY: textOffsetY, rotation: 0 }) }); }; map.gsStyle = function (params) { var st = {}; var type = params.type; var dynamic = (params.dynamic) ? true : false; if (dynamic) { if (type == 'icon') { st = map.pointStyleIconDynamic(params); } if (type == 'point') { st = map.pointStylePointDynamic(params); } } else { if (type == 'icon') { st = map.pointStyleIcon(params); } if (type == 'point') { st = map.pointStylePoint(params); } if (type == 'polygon') { st = map.polygonStyle(params); } if (type == 'linestring') { st = map.linestringStyle(params); } if (type == 'multilinestring') { st = map.multilinestringStyle(params); } } st.styleParams = params; return st; }; map.pointStyleIcon = function (params) { //console.log(params); var iconUrl = params.iconUrl; var scale = params.scale || 0.25; var st = new ol.style.Style({ image: new ol.style.Icon({ //anchor: [0.5, 0.5], // size: [52, 52], //offset: [52, 0], //opacity: 1, scale: scale, src: iconUrl }) }); //st.styleParams = params; return st; }; /****************************** */ map.pointStylePoint = function (params) { if (params.text && typeof params.text === 'object' && params.text.key) { var key_1 = params.text.key; var textFont_1 = 'normal 13px Arial'; if (params.text.size) { textFont_1 = "normal " + params.text.size + "px Arial"; } var textColor_1 = params.text.color || params.color || 'black'; var textBorderColor_1 = params.text.border.color; var textBorderWidth_1 = params.text.border.width; return function (feature) { var text = feature.getProperties()[key_1]; return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, text || '', 0, textColor_1, textFont_1, textBorderColor_1, textBorderWidth_1); }; } else { return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, params.text || '', 0, params.color || 'black', 'normal 13px Arial'); } }; map.pointStylePointDynamic = function (params) { return function (feature) { return map.pointStylePointDynamicObject(params, feature); }; }; map.pointStylePointDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStylePoint(dynamic_params); } return map.pointStylePoint(params); }; map.polygonStyle = function (params) { var fill = params.fill || 'white'; var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }), fill: new ol.style.Fill({ color: fill }) }); return st; }; map.linestringStyle = function (params) { var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }) }); return st; }; map.multilinestringStyle = function (params) { var compositeStyleArray = null; ; if (params.compositeStyleArray) { if (typeof params.compositeStyleArray === 'function') { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } else { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } } else { } var color; if (params.color instanceof String) { color = params.color || 'black'; } else { color = params.color || 'black'; } var width; if (params.width instanceof Number) { width = params.width || 1; } else { width = params.width || 1; } var paramIndex = params.paramIndex; return function (feature) { var myStyles = null; feature.getGeometry().getLineStrings().forEach(function (ls) { if (compositeStyleArray) { var myCompositeStyleArray = void 0; if (typeof compositeStyleArray === 'function') { myCompositeStyleArray = compositeStyleArray(ls.getCoordinates()[0][paramIndex]); } else { myCompositeStyleArray = compositeStyleArray; } if (myStyles === null) { myStyles = []; myCompositeStyleArray.forEach(function (s) { myStyles.push([]); }); } ; myCompositeStyleArray.forEach(function (s, i) { if (!myStyles[i]) { myStyles[i] = []; } ; myStyles[i].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: s.color, width: s.width }) })); }); } else { myStyles = [[]]; var mycolor = void 0; if (typeof color == 'string') { mycolor = color; } else { mycolor = color(ls.getCoordinates()[0][paramIndex]); } var mywidth = void 0; if (typeof width == 'number') { mywidth = width; } else { mywidth = width(ls.getCoordinates()[0][paramIndex]); } myStyles[0].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: mycolor, width: mywidth }) })); } }); var outStyles = []; myStyles.forEach(function (s) { outStyles.push.apply(outStyles, s); }); feature.setStyle(outStyles); }; }; map.pointStyleIconDynamic = function (params) { return function (feature) { return map.pointStyleIconDynamicObject(params, feature); }; }; map.pointStyleIconDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStyleIcon(dynamic_params); } return map.pointStyleIcon(params); }; map.pointStyleIconFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (match[i].constructor === Array) { if (match[i].indexOf(p[i]) === -1) show = false; } else { if (p[i] != match[i]) { show = false; } } } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; } st = map.pointStyleIcon(params); st.styleParams = params; return st; }; }; map.polygonStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; /* var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; }*/ st = map.polygonStyle(params); st.styleParams = params; return st; }; }; map.linestringStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; st = map.linestringStyle(params); st.styleParams = params; return st; }; }; map.feature_from_coor = function (x, y, msp) { msp = msp || null; return new ol.Feature({ geometry: new ol.geom.Point(ol.proj.transform([x, y], 'EPSG:4326', 'EPSG:3857')) //,color:value.c , msp: msp }); }; map.ll2xy = function (data) { if (data.length == 2) { return ol.proj.transform(data, 'EPSG:4326', 'EPSG:3857'); } else if (data.length == 4) { var p1 = ol.proj.transform([data[0], data[1]], 'EPSG:4326', 'EPSG:3857'); var p2 = ol.proj.transform([data[2], data[3]], 'EPSG:4326', 'EPSG:3857'); return [p1[0], p1[1], p2[0], p2[1]]; } else { alert('unhandled'); } }; map.llArray2xy = function (data) { var out = []; for (var i in data) { out.push(this.ll2xy(data[i])); } return out; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 3 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); var self = map; map.tooltip = {}; map.tooltip.dom = map.dom.appendChild(document.createElement('div')); map.tooltip.dom.style['position'] = 'absolute'; map.tooltip.dom.style['padding'] = '2px'; map.tooltip.dom.style['padding-left'] = '5px'; map.tooltip.dom.style['padding-right'] = '5px'; map.tooltip.dom.style['background-color'] = 'rgba(0,0,0,0.7)'; map.tooltip.dom.style['border-radius'] = '3px'; map.tooltip.dom.style['overflow'] = 'hidden'; map.tooltip.dom.style['color'] = 'rgba(255,255,255,1)'; map.tooltip.hide = function () { map.tooltip.dom.hidden = true; }; map.tooltip.setPosition = function (pos) { map.tooltip.dom.hidden = false; map.tooltip.dom.style.left = pos[0] + 20 + 'px'; map.tooltip.dom.style.top = pos[1] - 10 + 'px'; }; map.tooltip.setContent = function (content, params) { if (params.background) self.tooltip.dom.style['background-color'] = params.background; if (params.color) self.tooltip.dom.style['color'] = params.color; self.tooltip.dom.innerHTML = content; }; map.registerMapHoverNotFoundFunction(map.tooltip.hide); //map.tooltip.dom.innerHTML = '
'; }); } exports.load = load; /***/ }), /* 4 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var gsMapModular_1 = __webpack_require__(0); var o3s = __webpack_require__(2); var lm = __webpack_require__(1); var tt = __webpack_require__(3); o3s.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); lm.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); tt.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); exports.gsMapManager = new gsMapModular_1.gsMapManagerClass(); /***/ }), /* 5 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var MapCustomEvents = /** @class */ (function () { function MapCustomEvents() { } MapCustomEvents.prototype.registerMapCustomEvents = function (map, params) { if (params) { if (params.zoom) { params.zoom.forEach(function (e) { if (e.type === 'function') { map.registerOnZoomChangedFunction(e.function); } }); } } }; return MapCustomEvents; }()); exports.MapCustomEvents = MapCustomEvents; /***/ }) /******/ ]))); function getAdventureCollection(key,data,meta){ this.key = key; this.data = data; this.meta = meta; this.gsMap = null; this.pointFeatures = [] ; this.lineFeatures = [] ; var self = this; this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.createPointFeatures(); this.createLineFeatures(); } this.createPointFeatures = function(){ this.pointFeatures=[]; for(var i in this.data){ var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(this.data[i])); var s = this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(s); this.pointFeatures.push(f); } this.source.addFeatures(this.pointFeatures); } this.createLineFeatures = function(){ this.lineFeatures=[]; var mycolor = 'rgba(0,97,47,1)'; var mywidth = 1; if(this.meta['style']) if(this.meta['style']['default']) mycolor = this.meta['style']['default']['color']; if(this.meta['style']) if(this.meta['style']['default']) mywidth = this.meta['style']['default']['width']; for(var i in this.data){ var ccolor = mycolor, cwidth=mywidth; if(this.meta['style']) if(this.meta['style'][this.data[i].path]) if(this.meta['style'][this.data[i].path]['useStyle']) { ccolor = this.meta['style'][this.data[i].path]['color']; cwidth = this.meta['style'][this.data[i].path]['width']; } var f = new ol.Feature({ 'geometry': new ol.geom.LineString(this.gsMap.llArray2xy(this.data[i].coor)) }); f.setStyle( new ol.style.Style({ stroke: new ol.style.Stroke({color: (ccolor ), width: cwidth}) }) ); this.lineFeatures.push(f); } this.source.addFeatures(this.lineFeatures); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ var myurl = this.meta.advPath + item.path; if(this.meta['style']) if(this.meta['style'][item.path]) if(this.meta['style'][item.path]['url']) myurl = this.meta['style'][item.path]['url']; var actiontype = "openulr"; if(this.meta['style']) if(this.meta['style']['default']) if(this.meta['style']['default']['action']) if(this.meta['style']['default']['action']['type']) actiontype = this.meta['style']['default']['action']['type']; return { path:item.path, click:[function(s,f,l){ var self = f.get('msp'); browser.httpGet('https://anadigit.fr/gsMap/modules/adventure/getView.php?i=' + self.path + '&l=' + datasetLanguage + '&u=' +encodeURIComponent(myurl)).then(function(data){ var html = data.split("",""); var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { eval(js); $('#myModal').modal('show'); }, 200); }); }]}; } this.adventureIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.4 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } } var adventureCollection_O33 = new getAdventureCollection("O33",[{"id":18511,"author":"AnaDigit","name_GR":"\u03a0\u03ac\u03c1\u03bd\u03c9\u03bd: O33 \u0386\u03b3\u03b9\u03bf\u03c2 \u03a0\u03ad\u03c4\u03c1\u03bf\u03c2-\u039c. \u039c\u03b1\u03bb\u03b5\u03b2\u03ae\u03c2-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03a0\u03ac\u03c1\u03bd\u03c9\u03bd\u03b1","description_GR":"\u0386\u03bc\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03bf\u03bc\u03b1\u03bb\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c1\u03b1\u03b9\u03cc \u03b4\u03ac\u03c3\u03bf\u03c2","path":"PELOPONNESE\/Pelop_O33_01_AgPetros_Malevi_Parnon_refuge","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":19966,"name_EN":"Parnon: O33 Agios Petros-Malevi mon.-Parnon refuge","description_EN":"A direct trail on easy forested slopes","ascent_time":485,"descent_time":460,"marker":"O33","level":10,"ascent":1130,"descent":637,"maxelev":1680,"minelev":834,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.54636 37.25859,22.61034 37.33366)","views":48,"millestones":"0,22.5464784,37.3276856#1,22.5523829,37.3235095#2,22.5589546,37.3206265#3,22.5607859,37.3244039#4,22.5553043,37.3320244#5,22.5640278,37.3325612#6,22.5735983,37.3284949#7,22.5814586,37.3284765#8,22.5862878,37.3220839#9,22.5922954,37.3154108#10,22.5930399,37.3079764#11,22.5966443,37.3006748#12,22.6038242,37.2953332#13,22.6064918,37.2872244#14,22.6064858,37.2787306#15,22.6092622,37.2710892#16,22.6075136,37.2636359#17,22.6092769,37.2602995#18,22.5996770,37.2591800#19,22.5923189,37.2592258#20.0,22.5851123,37.2608952","x":22.6039351,"y":37.295227,"coor":[[22.5464784,37.3276856],[22.5467742,37.327563],[22.5469136,37.3273575],[22.5472706,37.3268796],[22.54779,37.3265751],[22.5486545,37.3262251],[22.5491016,37.3258611],[22.5495537,37.3258306],[22.5496696,37.3257283],[22.5498924,37.3249988],[22.5502184,37.32448],[22.5502673,37.3242823],[22.5501692,37.3241008],[22.5497253,37.3237078],[22.5498248,37.3232314],[22.5496753,37.3227879],[22.549756,37.3226987],[22.5499933,37.3226836],[22.5502283,37.3227857],[22.5504429,37.322964],[22.5508671,37.3232036],[22.5521243,37.3235615],[22.5527247,37.3234426],[22.5532799,37.3239181],[22.5541946,37.3244791],[22.5547614,37.3249367],[22.5552777,37.3250872],[22.5557075,37.3250384],[22.5563024,37.324622],[22.5569755,37.3242426],[22.5574122,37.3238334],[22.5580069,37.323426],[22.5590614,37.3219877],[22.5594235,37.3213432],[22.559347,37.3212161],[22.5589557,37.321022],[22.5589569,37.3203641],[22.5592513,37.3203136],[22.5597876,37.3205995],[22.5605984,37.3208573],[22.5607904,37.3208506],[22.5611316,37.3207105],[22.5613725,37.3205062],[22.5613454,37.3201543],[22.5614168,37.3199569],[22.5615553,37.3197964],[22.5618285,37.3196735],[22.5620661,37.3196403],[22.5622121,37.3196781],[22.5626914,37.3199904],[22.5624564,37.3204833],[22.5622686,37.3214544],[22.5619,37.3218465],[22.5617009,37.3222227],[22.5615359,37.3231851],[22.5609094,37.3240787],[22.5605304,37.3250678],[22.5602052,37.3255506],[22.5578574,37.3273336],[22.5557427,37.3304985],[22.5552465,37.3316551],[22.5553472,37.3322873],[22.5555951,37.3329032],[22.5559034,37.3333035],[22.5561512,37.3333336],[22.5565455,37.333077],[22.557024,37.3328485],[22.5581352,37.3325827],[22.559117,37.3325946],[22.5594304,37.3327336],[22.5598728,37.3332077],[22.5605312,37.3336033],[22.5616665,37.3338514],[22.5621181,37.3338479],[22.5632808,37.3332491],[22.5636394,37.3327938],[22.5639138,37.3326079],[22.5645395,37.3323541],[22.565367,37.3321658],[22.5661197,37.3317604],[22.5666201,37.3315591],[22.5675734,37.3312913],[22.5695943,37.3312616],[22.5702416,37.3310531],[22.572545,37.3292243],[22.5733439,37.3287562],[22.5737814,37.3283018],[22.5741014,37.328033],[22.5744297,37.3279829],[22.575421,37.328085],[22.5764286,37.3285207],[22.5771203,37.3283488],[22.5781012,37.3284056],[22.5784193,37.3282923],[22.5797665,37.3274792],[22.5799821,37.3274187],[22.5801156,37.3275195],[22.5801218,37.32779],[22.5798465,37.3286249],[22.5798778,37.3287605],[22.5800118,37.3288342],[22.5805208,37.3287772],[22.5810369,37.3289456],[22.5812892,37.3289193],[22.5811221,37.3288002],[22.5811472,37.3286653],[22.5814218,37.3284703],[22.5823107,37.3286161],[22.5819,37.3282507],[22.5820206,37.3278375],[22.5826429,37.3277548],[22.582992,37.3277951],[22.5835404,37.3274411],[22.5840184,37.3272305],[22.5841825,37.326908],[22.5842954,37.3263055],[22.5844101,37.3262077],[22.5845987,37.3257773],[22.5846272,37.3254622],[22.5851401,37.3245941],[22.5859256,37.3236301],[22.5860617,37.3235956],[22.5860319,37.323379],[22.5862657,37.3223452],[22.5863518,37.3213638],[22.5865553,37.3207443],[22.5870891,37.3199576],[22.5875373,37.3195303],[22.5876846,37.319496],[22.5877843,37.3195963],[22.5882385,37.3194485],[22.5883532,37.3193507],[22.5887839,37.3192477],[22.5893632,37.3184434],[22.5897155,37.3177086],[22.5900951,37.3173255],[22.5905176,37.3164563],[22.5906323,37.3163585],[22.5907633,37.3159905],[22.5909131,37.3158211],[22.5910965,37.31567],[22.592377,37.3153878],[22.592346,37.3152342],[22.5922124,37.3151335],[22.5919767,37.3150676],[22.5914808,37.3150347],[22.5911118,37.31485],[22.590791,37.3145037],[22.5906609,37.3142227],[22.5903106,37.3130378],[22.5904407,37.3115071],[22.5906729,37.3105545],[22.5913028,37.3094534],[22.5924856,37.3083498],[22.5928746,37.308066],[22.5934559,37.3077485],[22.5949397,37.3074506],[22.594976,37.3073159],[22.594506,37.3064991],[22.5944873,37.3056877],[22.5947362,37.3050417],[22.5953824,37.3042742],[22.5953443,37.3038952],[22.5957147,37.3033949],[22.5959845,37.3028978],[22.5961183,37.3023767],[22.5960372,37.3012761],[22.5961079,37.3011147],[22.5962818,37.300977],[22.5965786,37.3006786],[22.5968158,37.3006634],[22.597134,37.300541],[22.5973978,37.3003098],[22.5983825,37.2989244],[22.5986662,37.2988376],[22.5992871,37.2988179],[22.5998418,37.2987163],[22.600806,37.2990432],[22.601578,37.2976778],[22.6016867,37.2972375],[22.6027083,37.296898],[22.6030962,37.2960553],[22.6039351,37.295227],[22.6042103,37.2946286],[22.6044408,37.294361],[22.604411,37.2941443],[22.6045619,37.2939117],[22.6052336,37.2935861],[22.6055779,37.2932657],[22.6062995,37.2920665],[22.60623,37.2915519],[22.6059612,37.2908367],[22.6059795,37.2904583],[22.6057194,37.2898784],[22.6057218,37.2897523],[22.6058248,37.2896724],[22.6058418,37.2896072],[22.6058616,37.2891478],[22.6060056,37.2886808],[22.60633,37.2882159],[22.6063159,37.2877561],[22.6064001,37.2874168],[22.6065186,37.2871636],[22.6062619,37.2864035],[22.6061592,37.2846356],[22.6060132,37.283985],[22.6059448,37.2828034],[22.605777,37.2821165],[22.6054249,37.2816346],[22.6053609,37.2814356],[22.6052555,37.2810377],[22.6052056,37.2800727],[22.605474,37.2795892],[22.6059105,37.2791617],[22.6065738,37.2786647],[22.6069717,37.2784982],[22.6070757,37.2783642],[22.607339,37.277288],[22.6075002,37.2771096],[22.6077857,37.2763108],[22.6077997,37.2761577],[22.607611,37.2759933],[22.6075054,37.2756044],[22.6075324,37.2753614],[22.607751,37.2751296],[22.607684,37.2750928],[22.6077421,37.2750033],[22.607944,37.2750598],[22.6083327,37.2747759],[22.6085092,37.2743814],[22.608877,37.2740072],[22.6089594,37.2738189],[22.6089277,37.2737013],[22.6092806,37.2735252],[22.6094315,37.2732927],[22.609626,37.2731417],[22.6097245,37.2720793],[22.6094224,37.2713367],[22.6092881,37.271281],[22.6092585,37.2710463],[22.6093715,37.2704257],[22.6095482,37.2700132],[22.6094839,37.2698322],[22.6091622,37.26954],[22.6091314,37.2693774],[22.6092108,37.2693513],[22.6090232,37.2691237],[22.6089607,37.2688436],[22.6090453,37.2685381],[22.6091823,37.2684496],[22.6094151,37.2680558],[22.6094071,37.2678754],[22.6089685,37.2676945],[22.6091223,37.2672997],[22.6090633,37.2668303],[22.6087993,37.2664667],[22.6087027,37.2662042],[22.6088015,37.2657366],[22.6081729,37.265576],[22.6073114,37.2652054],[22.6070793,37.2649503],[22.6071585,37.2643203],[22.6075412,37.2637479],[22.6074676,37.2634586],[22.6068956,37.2632897],[22.6063272,37.2629224],[22.6059232,37.2628185],[22.6055206,37.2626335],[22.6049123,37.2625993],[22.6047782,37.2625346],[22.604713,37.2623987],[22.6049543,37.2621582],[22.6054983,37.2620114],[22.6061242,37.2617033],[22.6069057,37.2615142],[22.6072506,37.2611577],[22.6078435,37.2608041],[22.6091997,37.2606398],[22.609649,37.2607352],[22.6098939,37.2609093],[22.6099957,37.2608925],[22.610259,37.2606793],[22.6103071,37.2605176],[22.6098427,37.2606293],[22.6094647,37.2603365],[22.6088691,37.2602213],[22.6086863,37.2603544],[22.6085516,37.2603167],[22.6083253,37.2603591],[22.6081914,37.2602855],[22.6080108,37.2602923],[22.6075973,37.2600892],[22.6074174,37.26006],[22.6063391,37.2604439],[22.6059,37.2604027],[22.6057641,37.2604372],[22.6057943,37.2606358],[22.60521,37.2605208],[22.6047363,37.2605242],[22.604411,37.2604302],[22.6042665,37.2603204],[22.6042139,37.2601124],[22.6035635,37.2599155],[22.6031296,37.2595949],[22.6028821,37.2595649],[22.6028163,37.259465],[22.6025809,37.2593901],[22.6022982,37.2594319],[22.6012826,37.2588611],[22.6010107,37.2589299],[22.6005176,37.2587619],[22.6003586,37.2588231],[22.6003343,37.2589219],[22.5998907,37.259124],[22.5995054,37.2592276],[22.5992143,37.259116],[22.5991487,37.2590071],[22.5988035,37.2587686],[22.5990305,37.2586902],[22.5990101,37.2585728],[22.5986741,37.2584516],[22.5980059,37.258606],[22.5978487,37.2585681],[22.5975758,37.258691],[22.5973696,37.2588688],[22.5971096,37.2589018],[22.5968128,37.2590966],[22.5966154,37.259101],[22.5961764,37.2590597],[22.5959824,37.2591836],[22.5959119,37.259336],[22.5956268,37.2595039],[22.5953718,37.2598794],[22.5950531,37.2600379],[22.5948833,37.2600719],[22.5947827,37.2600257],[22.5947004,37.2602049],[22.5944154,37.2603728],[22.594242,37.2599922],[22.5940739,37.2599361],[22.5936194,37.26012],[22.5934847,37.2600914],[22.5932223,37.2602505],[22.593042,37.2602483],[22.5924266,37.2599098],[22.5928267,37.2593197],[22.5926828,37.2591737],[22.5921967,37.2592401],[22.5917644,37.2594422],[22.5910631,37.2595601],[22.5907895,37.2597191],[22.5905312,37.2596619],[22.5898406,37.2598069],[22.5895212,37.259891],[22.5889011,37.2598295],[22.5886411,37.2599188],[22.5882571,37.2599503],[22.5873089,37.2596438],[22.587024,37.2599716],[22.5868828,37.2608893],[22.5867215,37.2610766],[22.586361,37.2610543],[22.5857117,37.2608032],[22.5851123,37.2608952]]},{"id":18512,"author":"AnaDigit","name_GR":"\u03a0\u03ac\u03c1\u03bd\u03c9\u03bd: O33 \u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03a0\u03ac\u03c1\u03bd\u03c9\u03bd\u03b1-\u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03ac\u03ba\u03b9","description_GR":"","path":"PELOPONNESE\/Pelop_O33_02_Parnon_refuge_Platanaki","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2386,"name_EN":"Parnon: O33 Parnon refuge-Platanaki","description_EN":"","ascent_time":505,"descent_time":515,"marker":"O33","level":10,"ascent":647,"descent":1024,"maxelev":1546,"minelev":1035,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.58475 37.15262,22.68002 37.26105)","views":26,"millestones":"0,22.5847522,37.2608526#1,22.5907644,37.2568085#2,22.5928057,37.2506735#3,22.5976748,37.2441066#4,22.6029685,37.2410597#5,22.6071248,37.2348641#6,22.6115729,37.2273101#7,22.6151715,37.2206640#8,22.6214551,37.2174076#9,22.6210596,37.2096210#10,22.6224723,37.2022896#11,22.6250697,37.1973369#12,22.6253608,37.1895554#13,22.6284162,37.1839222#14,22.6376866,37.1860306#15,22.6442295,37.1805907#16,22.6452936,37.1746143#17,22.6523328,37.1718120#18,22.6539565,37.1665007#19,22.6611834,37.1631915#20,22.6670787,37.1601102#2.4,22.6800178,37.1526180","x":22.6253461,"y":37.2006892,"coor":[[22.5847522,37.2608526],[22.5851112,37.2608952],[22.5857106,37.2608032],[22.58636,37.2610543],[22.5867204,37.2610766],[22.5868818,37.2608893],[22.587023,37.2599716],[22.5873075,37.2596438],[22.5882557,37.2599502],[22.5886397,37.2599188],[22.5888996,37.2598295],[22.5889696,37.2597041],[22.5888842,37.2594507],[22.5889197,37.259361],[22.5891004,37.2593452],[22.5893285,37.259393],[22.5895609,37.2594408],[22.5898207,37.2594168],[22.5900715,37.2592756],[22.5901919,37.2589954],[22.5904466,37.2586379],[22.5911417,37.2582496],[22.5912461,37.2580976],[22.5912158,37.257908],[22.5907458,37.2571092],[22.5906835,37.25682],[22.5923229,37.2565872],[22.5925865,37.256356],[22.5928681,37.2557644],[22.5928417,37.2553675],[22.5924849,37.2545431],[22.5922081,37.2542694],[22.5916936,37.2540469],[22.5912495,37.2536721],[22.591264,37.253501],[22.5914906,37.2534406],[22.5921817,37.2533249],[22.5925222,37.2532028],[22.5928723,37.2531709],[22.5931006,37.2530204],[22.5931083,37.2526059],[22.59278,37.2520702],[22.5929775,37.2511532],[22.592803,37.2508356],[22.5927943,37.2507003],[22.5930065,37.2501981],[22.5933395,37.2498776],[22.5933721,37.2493372],[22.5936702,37.2490703],[22.5938796,37.2487213],[22.5939074,37.2484422],[22.5937206,37.2481786],[22.5937115,37.2480613],[22.5940839,37.2476849],[22.5940938,37.2476828],[22.5941322,37.2476224],[22.594167,37.247571],[22.5949009,37.2462998],[22.5951507,37.2462037],[22.5958499,37.2461939],[22.5960323,37.2460879],[22.5962775,37.2456312],[22.5964689,37.2450386],[22.5966644,37.2448336],[22.5969152,37.2446833],[22.5971644,37.2446232],[22.5974339,37.2446804],[22.5977355,37.2448282],[22.5978267,37.2447752],[22.5978972,37.2446228],[22.5978445,37.2444239],[22.5974416,37.243653],[22.597468,37.243446],[22.5977654,37.2432152],[22.5980257,37.2431642],[22.5985518,37.2433687],[22.5988105,37.2433988],[22.5993551,37.243216],[22.5999701,37.2428808],[22.6002638,37.2428482],[22.6008476,37.2429813],[22.6012808,37.2433289],[22.6016082,37.2433057],[22.6021903,37.2435289],[22.6024612,37.2435141],[22.6028467,37.2433924],[22.6033866,37.2434619],[22.6034566,37.2433365],[22.6033137,37.2431366],[22.6030462,37.2429712],[22.602587,37.2428035],[22.6022983,37.2425658],[22.6022454,37.2423759],[22.6023502,37.2421968],[22.6027167,37.2418857],[22.6028873,37.2411937],[22.6031549,37.2407462],[22.6033632,37.2405706],[22.6052904,37.2395117],[22.6064649,37.2393994],[22.6071045,37.2395601],[22.6075862,37.2391151],[22.607512,37.2388619],[22.6072565,37.2386516],[22.6071362,37.2384519],[22.6071478,37.2378211],[22.6074084,37.2371391],[22.6070316,37.2361703],[22.6068758,37.2354474],[22.6073822,37.2342726],[22.6075998,37.2340859],[22.6083161,37.2337518],[22.608663,37.2332781],[22.6086905,37.2330081],[22.6085284,37.2326276],[22.6085157,37.2320957],[22.6086128,37.2317183],[22.6089262,37.2312262],[22.6090575,37.2311354],[22.60931,37.230273],[22.6092088,37.2296499],[22.6098254,37.2292155],[22.6103143,37.2289869],[22.6107757,37.2284155],[22.6112326,37.2280873],[22.6113668,37.2275301],[22.6116657,37.2272091],[22.6119227,37.2267164],[22.6121819,37.2264107],[22.612434,37.2261884],[22.6130929,37.2259076],[22.6139638,37.2251247],[22.6142538,37.2246774],[22.6142597,37.224353],[22.6140976,37.2239725],[22.6139839,37.2234124],[22.6141965,37.2228831],[22.6150301,37.2222889],[22.615633,37.2219895],[22.6156585,37.2218276],[22.6153853,37.2213557],[22.6144815,37.2208584],[22.614528,37.2207192],[22.6151601,37.2206726],[22.6155029,37.2204152],[22.6159198,37.22042],[22.6161351,37.2203595],[22.616375,37.220182],[22.6166886,37.2196719],[22.6168825,37.219548],[22.6175456,37.2196459],[22.6180242,37.219363],[22.6184434,37.2192417],[22.6194353,37.2192353],[22.6196143,37.2193095],[22.6199004,37.2196914],[22.620145,37.2198745],[22.6204361,37.219977],[22.6206622,37.2199436],[22.6207384,37.2198408],[22.6208079,37.2197335],[22.6207637,37.219066],[22.6210074,37.2186812],[22.6208662,37.2183912],[22.6208909,37.2182743],[22.6211526,37.2181331],[22.6218436,37.2179429],[22.6220712,37.2178193],[22.6221296,37.2177118],[22.6220304,37.2175845],[22.621648,37.217544],[22.621469,37.2174698],[22.6214067,37.2171807],[22.6212628,37.2170348],[22.6208459,37.2170299],[22.6206339,37.2169103],[22.6205497,37.2165848],[22.6207065,37.2160188],[22.6205132,37.2154938],[22.6204994,37.2150159],[22.620324,37.2147435],[22.6205811,37.2142417],[22.6204425,37.2138074],[22.6204825,37.2134654],[22.6202737,37.2131745],[22.6202873,37.2130485],[22.6207904,37.2126488],[22.6214704,37.2124404],[22.6215287,37.2123329],[22.6215026,37.211909],[22.6210502,37.2101371],[22.6210643,37.2093621],[22.6209757,37.2092799],[22.619868,37.2088434],[22.6193597,37.2076748],[22.6194526,37.2075226],[22.6196915,37.2073992],[22.620047,37.2070608],[22.6203706,37.2066139],[22.6209059,37.2063047],[22.6224647,37.2042408],[22.6225174,37.2038177],[22.6222771,37.2034003],[22.622173,37.2029304],[22.6221579,37.2025179],[22.6222503,37.2023928],[22.6225003,37.2022785],[22.6230318,37.2021765],[22.6243975,37.2020482],[22.6249301,37.2018831],[22.6252671,37.2019411],[22.6256846,37.2019099],[22.6259576,37.2017689],[22.6259262,37.2016333],[22.6255184,37.2011328],[22.6253461,37.2006892],[22.6254382,37.2005821],[22.6258119,37.2004782],[22.6259739,37.2002458],[22.6264376,37.200152],[22.626474,37.2000082],[22.6258738,37.1995506],[22.6252676,37.1994264],[22.6250556,37.1993158],[22.6245333,37.1989131],[22.6243934,37.1985509],[22.6245131,37.1981648],[22.6248801,37.1978085],[22.6252109,37.1969651],[22.6253485,37.1968315],[22.6256437,37.1967087],[22.6258397,37.1964586],[22.6259384,37.195991],[22.6262755,37.1954181],[22.62634,37.1949682],[22.6265042,37.1946095],[22.6264493,37.1939059],[22.6268524,37.1934238],[22.6269592,37.1931276],[22.6270179,37.1923712],[22.6268905,37.1916328],[22.6264138,37.1912037],[22.6257559,37.1908265],[22.6249706,37.1900242],[22.6250205,37.1897544],[22.6257721,37.1893125],[22.625888,37.1891335],[22.6258116,37.1889974],[22.6250003,37.1883841],[22.6250166,37.1881049],[22.6253116,37.1873692],[22.62528,37.1866298],[22.625162,37.1863039],[22.6246009,37.1855583],[22.6245366,37.1853773],[22.6247431,37.1851724],[22.6256043,37.1848939],[22.625896,37.1849604],[22.626318,37.1852988],[22.6265315,37.1853283],[22.6267481,37.1851866],[22.626996,37.1845586],[22.6271212,37.1844879],[22.6277079,37.1844406],[22.6278114,37.1843832],[22.6279906,37.1843222],[22.6282898,37.1839741],[22.6285508,37.183869],[22.6293473,37.1853023],[22.6295799,37.1855214],[22.6299271,37.1856335],[22.630659,37.185651],[22.631922,37.1855845],[22.6323062,37.1855168],[22.6325189,37.1855914],[22.6329401,37.1859748],[22.6343007,37.1861167],[22.6354079,37.1865621],[22.6359471,37.1866494],[22.636435,37.1864567],[22.6368624,37.1864977],[22.6371457,37.1864018],[22.6376592,37.1860382],[22.6379762,37.1859517],[22.6381333,37.1859895],[22.6384674,37.1862007],[22.6386932,37.1861762],[22.6397435,37.1854041],[22.6405292,37.1849355],[22.6407699,37.1847039],[22.6413368,37.1845031],[22.642226,37.1832874],[22.6427174,37.1828965],[22.6429558,37.182791],[22.6433053,37.182777],[22.6438089,37.182963],[22.6440893,37.1823984],[22.6443439,37.1813918],[22.6441193,37.1807223],[22.6446144,37.180124],[22.6454456,37.1796288],[22.6458034,37.1791461],[22.6460521,37.178464],[22.6467721,37.1778863],[22.648078,37.1772973],[22.6484257,37.1769858],[22.6480804,37.1767656],[22.6476656,37.1766527],[22.6468773,37.1766437],[22.6467435,37.17657],[22.6468614,37.1762739],[22.6468411,37.1761475],[22.6465912,37.1756309],[22.6459339,37.1752268],[22.6453135,37.1746428],[22.6452257,37.1745156],[22.6452355,37.1739659],[22.644713,37.1729505],[22.6448944,37.1728804],[22.6452769,37.1729118],[22.6456607,37.1728621],[22.6462727,37.1726528],[22.6467006,37.1726577],[22.6474977,37.172802],[22.6477214,37.1728947],[22.6480323,37.1731416],[22.648571,37.1732559],[22.6491923,37.1731548],[22.6499564,37.1732537],[22.6501488,37.1732018],[22.6502286,37.1731486],[22.6502314,37.1729954],[22.6501321,37.1728771],[22.6501565,37.1727692],[22.6504067,37.1726369],[22.650513,37.1723587],[22.6510706,37.1720405],[22.6516102,37.1721008],[22.6521655,37.1719088],[22.6523132,37.1718384],[22.6525324,37.1715434],[22.6530012,37.1711521],[22.6530563,37.1705849],[22.6532103,37.170154],[22.6531921,37.1699105],[22.6529077,37.1694385],[22.653033,37.1693588],[22.6536422,37.1693027],[22.6541875,37.1690385],[22.655473,37.1689539],[22.6557363,37.1687135],[22.6557852,37.1684978],[22.6551965,37.1680314],[22.6546946,37.1677553],[22.6538215,37.1674479],[22.6531793,37.1668277],[22.6530699,37.1666462],[22.6531841,37.1665574],[22.6534767,37.1665697],[22.6541768,37.1664695],[22.6548218,37.1662965],[22.6554197,37.1662402],[22.6563127,37.1654211],[22.6565991,37.164514],[22.6567125,37.1644702],[22.6571148,37.1646461],[22.6574401,37.1647218],[22.6582641,37.165254],[22.6586009,37.1653119],[22.6589284,37.1652615],[22.6590564,37.1650286],[22.65976,37.1647301],[22.6604437,37.1642781],[22.6612879,37.1643057],[22.6614133,37.164217],[22.6617037,37.1637155],[22.6616834,37.1635891],[22.6611059,37.1631319],[22.6608761,37.1627507],[22.6608246,37.1624797],[22.660681,37.1623159],[22.6603793,37.1621863],[22.6603805,37.1621142],[22.6608309,37.1621193],[22.6612559,37.1622863],[22.6616342,37.162552],[22.6619142,37.1626363],[22.6623196,37.1626408],[22.6631673,37.1624701],[22.6632813,37.1623903],[22.6634128,37.1619591],[22.6635154,37.1618882],[22.6644715,37.161953],[22.6649934,37.1617336],[22.665319,37.1617913],[22.6665488,37.161661],[22.6671708,37.1608748],[22.6671736,37.1607126],[22.6667448,37.1601219],[22.6668138,37.1600415],[22.6669376,37.1600429],[22.6677642,37.1604308],[22.6683981,37.1602486],[22.6684705,37.15997],[22.6685619,37.1598989],[22.6688538,37.1599473],[22.6690796,37.1599138],[22.6695,37.1597022],[22.669883,37.1590575],[22.6699365,37.1585714],[22.6702906,37.1582869],[22.6704655,37.1579464],[22.6710787,37.1576558],[22.6714207,37.1574163],[22.6729795,37.1571453],[22.6753617,37.1561534],[22.6762299,37.156091],[22.6764134,37.1559038],[22.6764197,37.1555433],[22.6765343,37.1554274],[22.6774181,37.1551128],[22.6776483,37.1548269],[22.6778251,37.1543782],[22.6784745,37.1539438],[22.6787619,37.1536045],[22.6791244,37.1534824],[22.6792389,37.1533755],[22.6793576,37.1530253],[22.6797688,37.1526873],[22.6800178,37.152618]]},{"id":18520,"author":"AnaDigit","name_GR":"\u03a0\u03ac\u03c1\u03bd\u03c9\u03bd: O33 \u03a0\u03bb\u03b1\u03c4\u03b1\u03bd\u03ac\u03ba\u03b9-\u039a\u03bf\u03c3\u03bc\u03ac\u03c2","description_GR":"","path":"PELOPONNESE\/Pelop_O33_03_Platanaki_Kosmas","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":15042,"name_EN":"Parnon: O33 Platanaki-Kosmas","description_EN":"","ascent_time":285,"descent_time":275,"marker":"O33","level":10,"ascent":588,"descent":485,"maxelev":1158,"minelev":940,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.68002 37.09158,22.73994 37.15262)","views":17,"millestones":"0,22.6800202,37.1526180#1,22.6861767,37.1476336#2,22.6891409,37.1403958#3,22.6969601,37.1409899#4,22.7043629,37.1372693#5,22.7022802,37.1300172#6,22.7091799,37.1302356#7,22.7154210,37.1371828#8,22.7209623,37.1310053#9,22.7242137,37.1228671#10,22.7241035,37.1171903#11,22.7245311,37.1123038#12,22.7284947,37.1055811#13,22.7259498,37.1001096#14,22.7304052,37.0929464#15,22.7399377,37.0918200","x":22.7183144,"y":37.1364715,"coor":[[22.6800202,37.152618],[22.680415,37.1525774],[22.6806421,37.1524717],[22.6809089,37.152024],[22.6813084,37.151713],[22.6815969,37.1513106],[22.6822646,37.1511197],[22.6830612,37.1506328],[22.6832231,37.1503913],[22.6836123,37.150026],[22.6838156,37.1496002],[22.683827,37.1493299],[22.6834209,37.1487215],[22.6834696,37.1485147],[22.6837082,37.1483912],[22.684001,37.1483854],[22.6847021,37.1482129],[22.6851749,37.1481618],[22.68532,37.1482355],[22.6855627,37.1485267],[22.6857082,37.1485733],[22.6861962,37.1483534],[22.6864017,37.1481934],[22.6864156,37.1480404],[22.6861746,37.1476501],[22.6862782,37.1468671],[22.6861791,37.1467398],[22.6858215,37.1465826],[22.6857017,37.1463469],[22.6857664,37.1458609],[22.6861673,37.1454688],[22.6865689,37.1446507],[22.6868087,37.1444551],[22.6872587,37.1444781],[22.6878051,37.1441326],[22.6878296,37.1440157],[22.6876877,37.1437618],[22.6879645,37.1433773],[22.6879262,37.1429893],[22.6880909,37.1425765],[22.6877418,37.1419326],[22.6878185,37.1414017],[22.6881998,37.140838],[22.6887764,37.1407002],[22.6891763,37.1403621],[22.6894802,37.1403655],[22.6896763,37.1413952],[22.6899187,37.1417043],[22.6909266,37.1420219],[22.6919085,37.1425375],[22.6925376,37.1426166],[22.6927256,37.1428169],[22.6930406,37.1428294],[22.6940339,37.1426872],[22.6942376,37.1426263],[22.6945564,37.1424225],[22.6949858,37.1423281],[22.695195,37.1419518],[22.6954232,37.1417741],[22.695615,37.1417491],[22.6957942,37.1418052],[22.6961489,37.1421336],[22.6962836,37.1421531],[22.6963971,37.1421003],[22.6966153,37.1418503],[22.6970032,37.1408991],[22.6969553,37.1404118],[22.6972114,37.1399189],[22.6978239,37.1396552],[22.6980572,37.1391801],[22.6982736,37.1390382],[22.6987911,37.139062],[22.6993815,37.138771],[22.6999817,37.1385703],[22.7005314,37.1386845],[22.7006672,37.1386409],[22.7008863,37.1383368],[22.7010439,37.1376806],[22.7009722,37.1372651],[22.7010638,37.137176],[22.7015572,37.1372896],[22.7021473,37.1376746],[22.7029333,37.1378004],[22.7033726,37.1377872],[22.7037681,37.1377014],[22.7044294,37.1372128],[22.7046485,37.1369088],[22.7047088,37.1366751],[22.704679,37.1364404],[22.7044087,37.1357885],[22.7043505,37.13458],[22.7041454,37.134064],[22.7037842,37.1334562],[22.7032207,37.1328371],[22.7031156,37.1323943],[22.7031644,37.1321785],[22.7033956,37.1318205],[22.7042081,37.1310452],[22.704292,37.1307486],[22.7042271,37.1305947],[22.7040824,37.130494],[22.7025349,37.1301435],[22.7019991,37.1298763],[22.7019669,37.1297858],[22.7020358,37.1297054],[22.7024086,37.1296284],[22.7029251,37.1293749],[22.7031801,37.128945],[22.7030606,37.1286913],[22.7027157,37.1284532],[22.7022796,37.1282862],[22.7023952,37.1281072],[22.7026991,37.1281105],[22.7043696,37.1285074],[22.705058,37.1284067],[22.7060466,37.1285257],[22.7075331,37.1291548],[22.7084147,37.1296061],[22.7095472,37.1305378],[22.7101737,37.1307677],[22.7108736,37.1313161],[22.7109617,37.1314343],[22.7109895,37.1317861],[22.7111105,37.1319497],[22.7115993,37.1323335],[22.7120042,37.133023],[22.7120032,37.1335367],[22.7120799,37.1336638],[22.7125508,37.133777],[22.7127506,37.1339415],[22.7130317,37.1346295],[22.7133196,37.1349121],[22.7134497,37.1352109],[22.7140001,37.135947],[22.7146024,37.136278],[22.7150305,37.1369317],[22.7158102,37.1374268],[22.7161573,37.1375388],[22.7164399,37.1374697],[22.7168412,37.1370414],[22.717063,37.1365751],[22.7172113,37.1364595],[22.7176062,37.1364097],[22.718044,37.1364866],[22.7183144,37.1364715],[22.7185523,37.1363839],[22.7188383,37.1361166],[22.7190838,37.1355784],[22.7197179,37.1346929],[22.7205298,37.1326106],[22.7207276,37.1315581],[22.7212319,37.1303557],[22.721227,37.1299771],[22.7217277,37.128324],[22.7216032,37.1276917],[22.7214571,37.1272823],[22.7214861,37.126895],[22.7217306,37.1264109],[22.7222585,37.1258127],[22.7223988,37.1248317],[22.7226058,37.1245725],[22.7236182,37.1239435],[22.7240531,37.1235155],[22.7241579,37.1233093],[22.724271,37.1223326],[22.7248686,37.1215999],[22.7257861,37.1212582],[22.7259687,37.121107],[22.7261317,37.1207842],[22.726811,37.119755],[22.7276747,37.1192595],[22.727735,37.1190167],[22.7276914,37.1189352],[22.7273451,37.1187782],[22.7271467,37.1185237],[22.7265004,37.1181382],[22.7262952,37.1176222],[22.7258715,37.1173833],[22.725719,37.1170752],[22.7254724,37.1170185],[22.7244559,37.1172239],[22.7238604,37.1171634],[22.7236427,37.1173954],[22.722917,37.117712],[22.7226229,37.117799],[22.7222252,37.117815],[22.7221479,37.117724],[22.7221658,37.1173276],[22.7223622,37.1163563],[22.7222346,37.1159132],[22.72182,37.1151336],[22.7217481,37.1147272],[22.7222974,37.1141833],[22.7224706,37.1139238],[22.7224966,37.1137167],[22.7223612,37.1130663],[22.722402,37.1126521],[22.7225949,37.1125551],[22.7230105,37.1126046],[22.7234608,37.1124089],[22.7236737,37.1124653],[22.7249495,37.1122266],[22.7251809,37.1118505],[22.7250194,37.1114161],[22.7251576,37.1112283],[22.7256563,37.1110174],[22.7259872,37.1107505],[22.7269596,37.1104815],[22.727354,37.1104497],[22.7276836,37.110255],[22.7277773,37.1100396],[22.7277932,37.1097604],[22.7275706,37.1096138],[22.7274834,37.1094416],[22.7271732,37.1091498],[22.7270545,37.1088421],[22.7273391,37.1086468],[22.7274575,37.1082966],[22.727696,37.108173],[22.7278355,37.107904],[22.7282116,37.1076196],[22.728355,37.1069114],[22.7285056,37.1059846],[22.7284842,37.1052452],[22.7284099,37.104974],[22.7282776,37.1048104],[22.7279419,37.1047617],[22.7278813,37.1043464],[22.7277938,37.1041922],[22.7274154,37.1039448],[22.727213,37.1039336],[22.7271971,37.1035369],[22.7268711,37.1035153],[22.7266703,37.103414],[22.7269326,37.1025335],[22.7267452,37.1022971],[22.7262064,37.1022192],[22.7260207,37.1018837],[22.7261838,37.101552],[22.7262172,37.1011129],[22.726239,37.1004822],[22.7264009,37.1002226],[22.7264668,37.1001061],[22.7264362,37.0999165],[22.7263696,37.0998617],[22.7262088,37.099869],[22.726091,37.1003071],[22.7257925,37.1006644],[22.7256304,37.1007258],[22.7259507,37.1002876],[22.7259511,37.0998662],[22.7257129,37.099431],[22.7253562,37.0992288],[22.7253471,37.0991026],[22.7265064,37.0984119],[22.726659,37.098035],[22.7266438,37.0976022],[22.7271777,37.0973015],[22.7275562,37.0968729],[22.7281144,37.0964642],[22.7300174,37.0945715],[22.7302131,37.0943032],[22.7302745,37.0939974],[22.7303188,37.0933669],[22.73024,37.0931587],[22.7303437,37.0929458],[22.7307937,37.0929506],[22.7314899,37.0923631],[22.7319982,37.0922424],[22.7325657,37.091951],[22.7335694,37.0918085],[22.7337043,37.0918189],[22.73377,37.0919278],[22.7340059,37.0918875],[22.73445,37.0919103],[22.7349248,37.0917711],[22.7353963,37.0918393],[22.73568,37.0916305],[22.7360074,37.0915618],[22.7361078,37.0917454],[22.7364239,37.0916767],[22.7369066,37.0917449],[22.7374049,37.0915519],[22.7387318,37.0916021],[22.7390289,37.091941],[22.7393862,37.0921071],[22.7396186,37.092069],[22.7399377,37.09182]]},{"id":18529,"author":"AnaDigit","name_GR":"O33: O33 \u039a\u03bf\u03c3\u03bc\u03ac\u03c2-\u039a\u03bf\u03c5\u03bd\u03bf\u03c5\u03c0\u03b9\u03ac","description_GR":"","path":"PELOPONNESE\/Pelop_O33_04_Kosmas_Kounoupia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":13125,"name_EN":"O33: O33 Kosmas-Kounoupia","description_EN":"","ascent_time":290,"descent_time":305,"marker":"O33","level":10,"ascent":374,"descent":700,"maxelev":1183,"minelev":640,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.73639 37.05647,22.81547 37.09179)","views":4,"millestones":"0,22.7399366,37.0918222#1,22.7370463,37.0846842#2,22.7425958,37.0804190#3,22.7485020,37.0804478#4,22.7576565,37.0770613#5,22.7653456,37.0721999#6,22.7692507,37.0684168#7,22.7777696,37.0676174#8,22.7836223,37.0649057#9,22.7882816,37.0612374#10,22.7952774,37.0648482#11,22.8021314,37.0661860#12,22.8091628,37.0624949#13.1,22.8154689,37.0566675","x":22.772285,"y":37.0672116,"coor":[[22.7399366,37.0918222],[22.7397935,37.0916314],[22.7398479,37.0914675],[22.739092,37.0915947],[22.7389138,37.0914846],[22.7386756,37.0914731],[22.7383764,37.0912558],[22.7382894,37.0910746],[22.7382417,37.0905603],[22.7377573,37.0899152],[22.7374585,37.0896146],[22.7373467,37.0888923],[22.7375691,37.0883719],[22.7376291,37.0874711],[22.7374551,37.0871087],[22.7371954,37.0868243],[22.7364762,37.0864336],[22.7364789,37.0862713],[22.7366515,37.0860388],[22.7366717,37.0854982],[22.7369181,37.0848879],[22.7374727,37.0840105],[22.7376377,37.0835616],[22.7376075,37.0833449],[22.7375087,37.0831996],[22.7369623,37.0829054],[22.7369642,37.0827882],[22.7371338,37.082736],[22.7376376,37.083014],[22.7380061,37.0831148],[22.738097,37.0830617],[22.7379778,37.08279],[22.7381243,37.0827735],[22.7383131,37.0829198],[22.7384147,37.0829028],[22.7384276,37.0828038],[22.7382732,37.0826129],[22.7382861,37.0825139],[22.7386853,37.0821846],[22.7391487,37.0813783],[22.7398109,37.0807904],[22.7406277,37.0803845],[22.7413397,37.0801847],[22.7418912,37.0801726],[22.7423936,37.0804032],[22.7425956,37.0804324],[22.7425971,37.0803423],[22.7423759,37.0801146],[22.7422575,37.0797889],[22.7420565,37.0796966],[22.742137,37.0795893],[22.7424061,37.0796462],[22.7426142,37.0799909],[22.743119,37.0800774],[22.7433614,37.0803864],[22.7448112,37.0804739],[22.7443256,37.0801803],[22.7439451,37.0800591],[22.7441742,37.0798092],[22.7444907,37.0797224],[22.7448728,37.0797444],[22.7447596,37.0795089],[22.7448848,37.0794201],[22.7457459,37.0797357],[22.7462824,37.0798179],[22.7466195,37.0798395],[22.7473512,37.0804963],[22.7477085,37.0806623],[22.7482273,37.0805866],[22.7490439,37.0801806],[22.7492633,37.0798404],[22.7494113,37.0797338],[22.7502783,37.0796889],[22.7506811,37.0798193],[22.7508802,37.0800287],[22.7509589,37.0800295],[22.7513215,37.0798711],[22.7526647,37.0795968],[22.7533796,37.0792258],[22.7538931,37.0787805],[22.7542308,37.078766],[22.7542575,37.0785139],[22.7543832,37.078389],[22.7545299,37.0783635],[22.7547538,37.078429],[22.7548138,37.0782042],[22.7553604,37.0777954],[22.7563231,37.0773998],[22.7570006,37.0772447],[22.7574733,37.0772316],[22.7584328,37.0763403],[22.7592925,37.0753578],[22.759845,37.0751315],[22.7604509,37.0752279],[22.7610718,37.0750902],[22.76178,37.0751246],[22.7618717,37.0750174],[22.761909,37.0748015],[22.7625673,37.0744388],[22.7629692,37.0739382],[22.7634186,37.0732759],[22.7634842,37.0726997],[22.7635763,37.0725745],[22.7639775,37.072804],[22.7643152,37.0727895],[22.764691,37.072505],[22.7653359,37.0722773],[22.7654006,37.0717552],[22.7658972,37.0716522],[22.7661929,37.071457],[22.7664832,37.0715862],[22.7665824,37.0717134],[22.7665027,37.0717757],[22.7662786,37.0717193],[22.7660389,37.0719331],[22.7660566,37.0722307],[22.7662988,37.0725578],[22.7666019,37.072597],[22.7669406,37.0725194],[22.7673205,37.0726765],[22.7677241,37.0727619],[22.7678479,37.0727541],[22.7681205,37.0725947],[22.7683484,37.0724168],[22.7689132,37.0715754],[22.7688503,37.0712863],[22.7685408,37.0709496],[22.7685681,37.0699584],[22.7687686,37.0693836],[22.7690819,37.0687919],[22.7691099,37.0684497],[22.7693696,37.0683893],[22.7694617,37.068255],[22.7695594,37.0681298],[22.7700576,37.0679277],[22.771352,37.0671749],[22.7714312,37.0671487],[22.7714636,37.0672302],[22.771258,37.0674264],[22.7712555,37.0675796],[22.7717091,37.0673499],[22.772285,37.0672116],[22.7740235,37.0661209],[22.7743801,37.0663319],[22.7745678,37.0665502],[22.7752603,37.0668548],[22.7767348,37.0667889],[22.7768552,37.0669975],[22.7774008,37.0673456],[22.777611,37.0675641],[22.7778907,37.0676571],[22.7781901,37.0679216],[22.7783696,37.0679505],[22.7786143,37.0674212],[22.7791252,37.067129],[22.7794116,37.0668075],[22.779603,37.0667914],[22.7801697,37.0665268],[22.7805053,37.0666384],[22.7808281,37.0668491],[22.7809294,37.0668501],[22.7809872,37.0667516],[22.7808672,37.066516],[22.7809736,37.0661926],[22.7812627,37.0664029],[22.7814885,37.0663511],[22.7820713,37.0664833],[22.782679,37.0664625],[22.7835546,37.0658675],[22.7837856,37.0654913],[22.7839793,37.0653311],[22.7839577,37.0652768],[22.7834023,37.0655415],[22.7830308,37.0655647],[22.7829299,37.0655456],[22.7829417,37.0655097],[22.7832481,37.0653416],[22.783603,37.0649486],[22.7836846,37.0647692],[22.7840259,37.0645293],[22.7843364,37.0640998],[22.783489,37.0643435],[22.7832721,37.0645396],[22.783194,37.0645028],[22.7832173,37.0644489],[22.7843704,37.0633791],[22.7846356,37.0629762],[22.78526,37.062613],[22.786095,37.0617382],[22.7868036,37.0617365],[22.7875137,37.0623476],[22.7876048,37.0622765],[22.7876316,37.0620063],[22.7879987,37.0622625],[22.7882818,37.0620085],[22.7884108,37.0616763],[22.7882507,37.0611338],[22.7880174,37.0609512],[22.7878418,37.060679],[22.7881545,37.0608174],[22.788379,37.0608467],[22.7885033,37.0608119],[22.7886861,37.0606335],[22.7890981,37.0608901],[22.7893634,37.0611812],[22.789557,37.0617421],[22.7903167,37.0620653],[22.7912029,37.0622095],[22.7914625,37.062726],[22.7919012,37.0628566],[22.7923456,37.0632037],[22.7925553,37.0634582],[22.793517,37.0638105],[22.7939184,37.0640309],[22.7940285,37.0641853],[22.7940999,37.0646457],[22.7943554,37.0648466],[22.7943107,37.0648281],[22.7946245,37.0649034],[22.7950313,37.0647813],[22.7959384,37.0650339],[22.7962196,37.0650368],[22.7965923,37.0649414],[22.7967067,37.0648164],[22.7967701,37.0643663],[22.7970885,37.0641442],[22.7972615,37.0638756],[22.7972892,37.0635423],[22.797358,37.0634619],[22.7974929,37.0634633],[22.7976811,37.0636545],[22.7978265,37.06371],[22.7983685,37.0635713],[22.7984464,37.0636262],[22.798519,37.0640145],[22.7987083,37.0641336],[22.7991854,37.063841],[22.7996032,37.063737],[22.7996923,37.063792],[22.7996536,37.0641071],[22.7999253,37.0647048],[22.79995,37.0652819],[22.8005028,37.0658914],[22.8008255,37.066111],[22.8013179,37.0662692],[22.8021742,37.0661787],[22.802841,37.0659781],[22.8032075,37.0655582],[22.8034885,37.06557],[22.8038615,37.0654566],[22.8040403,37.0655305],[22.8043327,37.0655335],[22.8046781,37.0657443],[22.805528,37.0660593],[22.8060704,37.0666146],[22.8062934,37.066743],[22.8064643,37.0666005],[22.8067949,37.0656033],[22.8070359,37.0652993],[22.8071429,37.0649308],[22.8075798,37.0643223],[22.8078827,37.0636583],[22.8088761,37.0627038],[22.8097522,37.0620636],[22.8098102,37.061947],[22.8096534,37.0611883],[22.8110976,37.0601752],[22.8114941,37.0592688],[22.8117233,37.0588609],[22.8120534,37.0586119],[22.8127423,37.0577084],[22.8127459,37.0574741],[22.8126163,37.0571302],[22.8129346,37.0569171],[22.813232,37.0567939],[22.8136253,37.0568158],[22.8140119,37.0565493],[22.8144632,37.0564546],[22.8149013,37.0564861],[22.8152097,37.0569038],[22.8153108,37.0569138],[22.8154689,37.0566675]]},{"id":18569,"author":"AnaDigit","name_GR":"O33: O33 \u039d\u03b5\u03ac\u03c0\u03bf\u03bb\u03b7-\u0392\u03b5\u03bb\u03b1\u03bd\u03af\u03b4\u03b9\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_O33_13_Neapoli_Velanidia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":13136,"name_EN":"O33: O33 Neapoli-Velanidia","description_EN":"","ascent_time":300,"descent_time":295,"marker":"O33","level":10,"ascent":658,"descent":489,"maxelev":535,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.05873 36.47776,23.14488 36.50991)","views":9,"millestones":"0,23.0587282,36.5099078#1,23.0664721,36.5042075#2,23.0740994,36.5009652#3,23.0811103,36.4978038#4,23.0874786,36.4976614#5,23.0950592,36.4946525#6,23.0987592,36.4877818#7,23.1084279,36.4885491#8,23.1163644,36.4857089#9,23.1212761,36.4863189#10,23.1259045,36.4840656#11,23.1350755,36.4828816#12,23.1382251,36.4834457#13.1,23.1437280,36.4777544","x":23.0959969,"y":36.4918261,"coor":[[23.0587282,36.5099078],[23.0592982,36.5094886],[23.0594368,36.5094018],[23.0600863,36.5089652],[23.0601706,36.5089163],[23.0604275,36.5087425],[23.0610313,36.5083033],[23.0621195,36.5074239],[23.0627215,36.5069554],[23.0630257,36.5067346],[23.0635537,36.506385],[23.0639188,36.5061174],[23.0644518,36.5056122],[23.0649197,36.5050592],[23.06555,36.5043588],[23.0660252,36.5038396],[23.0665459,36.5042697],[23.0666241,36.5042703],[23.0667159,36.5040636],[23.0669877,36.5037503],[23.0670158,36.5032637],[23.0671402,36.5031384],[23.0672068,36.503166],[23.0671696,36.5034722],[23.0673312,36.5039693],[23.0674648,36.5039974],[23.0676777,36.5039359],[23.0678738,36.5034146],[23.0680207,36.5032715],[23.0688143,36.5032056],[23.0695727,36.5032836],[23.0716136,36.5027587],[23.0721425,36.5022129],[23.072648,36.5019644],[23.0730993,36.5015712],[23.0734813,36.5013759],[23.0742804,36.5008412],[23.074426,36.5008063],[23.074804,36.5009444],[23.0749158,36.5009273],[23.0749627,36.5007473],[23.0747748,36.500498],[23.074765,36.5003807],[23.0750983,36.5005185],[23.075422,36.50053],[23.0762649,36.5000678],[23.0768683,36.4996488],[23.0771626,36.4993175],[23.0777909,36.4990609],[23.0780173,36.4986187],[23.0781521,36.4985566],[23.0783452,36.4982787],[23.0788976,36.4978322],[23.0793168,36.4974974],[23.0794063,36.4973042],[23.0794604,36.4974489],[23.0797391,36.4974871],[23.0798703,36.4977225],[23.0798594,36.497488],[23.0799914,36.4976603],[23.0802808,36.4977347],[23.0806742,36.4975123],[23.0807204,36.4974992],[23.0808204,36.4979011],[23.0809747,36.4978888],[23.0810754,36.4978715],[23.0811908,36.4976493],[23.0813853,36.4977229],[23.0815428,36.4977106],[23.0816591,36.4977047],[23.0819619,36.4974997],[23.0821285,36.4975731],[23.0822463,36.4976191],[23.0822783,36.4974751],[23.0824145,36.4975573],[23.0824131,36.4976745],[23.0825595,36.4975674],[23.0827884,36.497479],[23.0830311,36.4977243],[23.0833552,36.4974045],[23.0838689,36.4973093],[23.0845004,36.4977288],[23.0847572,36.4977308],[23.0848813,36.4976236],[23.0852469,36.497392],[23.0852683,36.4974643],[23.0850643,36.4977241],[23.085153,36.4977789],[23.0854113,36.4976547],[23.0855957,36.4974623],[23.0863114,36.4973596],[23.0865023,36.4972709],[23.0869082,36.4969314],[23.0868837,36.4965526],[23.0869289,36.4965079],[23.0870288,36.4965627],[23.0871303,36.4968294],[23.087329,36.4970203],[23.087382,36.4972641],[23.0872543,36.4976778],[23.0871186,36.49783],[23.0871623,36.4979115],[23.0874665,36.4976794],[23.087671,36.4973745],[23.0877424,36.4969964],[23.0876338,36.4967432],[23.0876806,36.4965542],[23.087918,36.4963036],[23.0882431,36.4961979],[23.0884998,36.4962089],[23.0888923,36.4962682],[23.0895866,36.4960932],[23.0898321,36.4961019],[23.0901555,36.4961404],[23.0903463,36.4960517],[23.0909573,36.4957476],[23.0912143,36.4957315],[23.0915481,36.4958332],[23.0921026,36.496153],[23.0926701,36.4963195],[23.0928486,36.4963322],[23.0932867,36.4959862],[23.093414,36.4955995],[23.094106,36.4956228],[23.0946172,36.495825],[23.095126,36.495279],[23.095151,36.4950538],[23.0950447,36.4945932],[23.0950583,36.494377],[23.0953782,36.4937574],[23.0951263,36.4933318],[23.0949443,36.4926633],[23.0950136,36.4924655],[23.0951982,36.4923429],[23.095737,36.4920946],[23.0959848,36.4919072],[23.0959969,36.4918261],[23.0957313,36.4916258],[23.0956449,36.4913727],[23.0958092,36.4906888],[23.0962251,36.4904396],[23.0963768,36.4903573],[23.0963174,36.4897078],[23.0963915,36.4890954],[23.0973093,36.4879304],[23.0977572,36.4878166],[23.09941,36.487766],[23.0996243,36.4875783],[23.0999219,36.4869495],[23.1005743,36.4865217],[23.1011784,36.486418],[23.1019524,36.486674],[23.1027419,36.4869414],[23.1029969,36.4870966],[23.1035546,36.4871368],[23.1042558,36.4873224],[23.105632,36.4880359],[23.1060972,36.4883549],[23.1066769,36.4884313],[23.1067372,36.4884318],[23.1073948,36.4885269],[23.1085668,36.4885446],[23.1087587,36.4883658],[23.1092855,36.4872068],[23.1103584,36.4871066],[23.1107406,36.4868751],[23.1110542,36.4867873],[23.1113217,36.4868253],[23.1120831,36.4876063],[23.1124385,36.4877712],[23.1140592,36.4876029],[23.115003,36.487069],[23.1153051,36.4870172],[23.1156845,36.487029],[23.1160498,36.4868086],[23.1164007,36.4863875],[23.1163349,36.4852962],[23.1165183,36.4848829],[23.1166995,36.4846498],[23.1169357,36.4844983],[23.1171143,36.4844997],[23.117588,36.4850531],[23.1177104,36.48509],[23.1178787,36.4850192],[23.1182126,36.4847061],[23.1184258,36.4844282],[23.1184869,36.4839599],[23.1186929,36.4835107],[23.1189394,36.4834314],[23.1191229,36.4835837],[23.1193073,36.4840629],[23.1197202,36.4849674],[23.1196277,36.4852552],[23.1193333,36.4856226],[23.1193089,36.4858028],[23.1194526,36.48593],[23.1199417,36.4861139],[23.1201519,36.4862868],[23.1204438,36.4866315],[23.1207372,36.4866629],[23.1209703,36.48657],[23.1217366,36.4859356],[23.1220611,36.4858659],[23.1226081,36.4858699],[23.1229891,36.4857375],[23.123102,36.4856301],[23.1232298,36.4851893],[23.1234303,36.4852268],[23.1236044,36.4856248],[23.1238004,36.4857885],[23.1246697,36.4859211],[23.1253041,36.485964],[23.1256059,36.4859302],[23.1256962,36.4858497],[23.1255633,36.4857496],[23.1247385,36.4856354],[23.1245941,36.4855712],[23.1246176,36.4854632],[23.124977,36.4852765],[23.1250341,36.4851597],[23.124935,36.4850328],[23.1245462,36.4848677],[23.1244362,36.4847226],[23.1243544,36.4840549],[23.1245702,36.483723],[23.124716,36.4836609],[23.1248834,36.4836712],[23.1258172,36.4840206],[23.1265054,36.4843682],[23.1267171,36.4844058],[23.127324,36.4840406],[23.1276231,36.4832585],[23.1278262,36.4830617],[23.1281175,36.4829647],[23.1286633,36.4830768],[23.1294449,36.4830645],[23.130597,36.4828565],[23.1317811,36.482793],[23.1321934,36.4828591],[23.1328042,36.483143],[23.1332615,36.4831824],[23.1351886,36.4825473],[23.1352206,36.4826828],[23.1343929,36.4838307],[23.1343734,36.4839838],[23.134553,36.4841158],[23.1354831,36.483798],[23.1362258,36.4832715],[23.1368563,36.4831657],[23.1369938,36.4828444],[23.1375323,36.4826026],[23.1385615,36.4824117],[23.1400086,36.4817731],[23.1399733,36.4819351],[23.1387579,36.4828188],[23.1381749,36.483049],[23.1381828,36.4833375],[23.1382589,36.4835274],[23.1383478,36.4835641],[23.1384704,36.4831976],[23.1395781,36.4829712],[23.1404432,36.4824726],[23.140635,36.4822937],[23.1410226,36.4815663],[23.142075,36.4812854],[23.1435344,36.4805386],[23.1443857,36.4802743],[23.144577,36.4801404],[23.1448602,36.4797638],[23.1447966,36.4793284],[23.1443002,36.478793],[23.1438855,36.4779246],[23.143728,36.4777544]]},{"id":18570,"author":"AnaDigit","name_GR":"\u0392\u03ac\u03c4\u03b9\u03ba\u03b1: O33\/\u039410 \u0392\u03b5\u03bb\u03b1\u03bd\u03af\u03b4\u03b9\u03b1-\u03a6\u03ac\u03c1\u03bf\u03c2 \u039c\u03b1\u03bb\u03ad\u03b1","description_GR":"\u0392\u03b5\u03bb\u03b1\u03bd\u03af\u03b4\u03b9\u03b1-\u039c\u03b1\u03bb\u03ad\u03b1\u03c2 (O33-\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039410)","path":"PELOPONNESE\/Pelop_O33_14_Velanidia_Maleas","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":3976,"name_EN":"Vatika: O33\/D10 Velanidia-Maleas lighthouse","description_EN":"Velanidia-Maleas (O33, Trail D10)","ascent_time":195,"descent_time":200,"marker":"O33","level":10,"ascent":257,"descent":398,"maxelev":262,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.14354 36.45039,23.20155 36.47776)","views":17,"millestones":"0,23.1437259,36.4777566#1,23.1487818,36.4730464#2,23.1561990,36.4758569#3,23.1593345,36.4711346#4,23.1629459,36.4642312#5,23.1703604,36.4655195#6,23.1798469,36.4648163#7,23.1896488,36.4610698#4.0,23.2015468,36.4503892","x":23.162493,"y":36.4664206,"coor":[[23.1437259,36.4777566],[23.1435382,36.477566],[23.1437104,36.4771345],[23.143766,36.4771529],[23.1438728,36.4775864],[23.1440281,36.4776777],[23.1441623,36.4776606],[23.144137,36.4775184],[23.1442236,36.477474],[23.144269,36.4774112],[23.1445263,36.477359],[23.1446529,36.4771953],[23.1449485,36.4770239],[23.1449472,36.4769202],[23.1448248,36.4768923],[23.1447427,36.4769639],[23.1447798,36.4766306],[23.144726,36.4764499],[23.1446804,36.4765397],[23.1446043,36.4762236],[23.1455703,36.4759939],[23.145938,36.475956],[23.146265,36.4756608],[23.1466017,36.475492],[23.1467154,36.4753035],[23.1470637,36.4750986],[23.1471884,36.4749192],[23.1476722,36.4745711],[23.1479455,36.4740772],[23.1485316,36.4735585],[23.1485104,36.4734592],[23.1483334,36.4733137],[23.1483019,36.4731332],[23.1486498,36.4729554],[23.1488603,36.4731011],[23.1492833,36.4732123],[23.1497908,36.4737568],[23.1499214,36.4740643],[23.1498734,36.4743704],[23.1500883,36.4751292],[23.150665,36.4754759],[23.1508305,36.4756483],[23.150835,36.4762614],[23.1510246,36.4762808],[23.1516402,36.4761229],[23.1518947,36.476332],[23.1521581,36.476424],[23.1526039,36.4764903],[23.1533468,36.4769463],[23.1539445,36.4770002],[23.1541429,36.4770376],[23.1549285,36.4766465],[23.155524,36.4760941],[23.155906,36.4758714],[23.1564452,36.4758459],[23.1567253,36.4757487],[23.1569262,36.4757502],[23.1572711,36.4758518],[23.1575575,36.4762054],[23.157713,36.4762786],[23.1580586,36.4763171],[23.1585616,36.4762575],[23.1584936,36.4763472],[23.1581358,36.4765069],[23.158627,36.4764022],[23.1589087,36.4761608],[23.1589324,36.4760348],[23.1587409,36.475159],[23.1586736,36.474994],[23.1581641,36.4746298],[23.1583045,36.4740358],[23.1582307,36.4736296],[23.1582559,36.4734607],[23.1580285,36.4728101],[23.1582768,36.4725594],[23.1585382,36.4720294],[23.1585753,36.4718944],[23.1586335,36.4716694],[23.1591637,36.4711503],[23.1598051,36.4710917],[23.1598949,36.4710473],[23.1598959,36.4709481],[23.159614,36.4707027],[23.1594209,36.4699802],[23.1591883,36.4698073],[23.1591449,36.4696988],[23.1592248,36.4695281],[23.1595722,36.4694043],[23.159899,36.4691091],[23.1599689,36.4688391],[23.1599043,36.4684285],[23.1602421,36.4681514],[23.1603223,36.4679649],[23.1603241,36.4677937],[23.1609056,36.4676896],[23.1611419,36.4675109],[23.1619046,36.4671647],[23.162493,36.4664206],[23.1625429,36.4662294],[23.1627609,36.465672],[23.1629306,36.4653667],[23.1629559,36.4650874],[23.1629816,36.4648712],[23.1629101,36.4647738],[23.1629444,36.4646929],[23.1630731,36.4645699],[23.16292,36.4642713],[23.1630108,36.4641277],[23.1629912,36.4638751],[23.1631045,36.4637227],[23.1632163,36.4637054],[23.1634495,36.4638152],[23.1640298,36.4638193],[23.1647259,36.4634275],[23.1652085,36.4632754],[23.1653984,36.4632587],[23.1656045,36.4632962],[23.1657252,36.4634863],[23.166035,36.4637409],[23.165999,36.4639751],[23.1661868,36.4641567],[23.1664281,36.464555],[23.1668284,36.464693],[23.1671419,36.4645961],[23.1671855,36.4646955],[23.1672827,36.4652258],[23.1674254,36.4652201],[23.1681366,36.4655135],[23.1682579,36.4656496],[23.1685356,36.4657777],[23.1687183,36.4653913],[23.1687318,36.4651751],[23.1688992,36.4651763],[23.16901,36.4652491],[23.1692607,36.464994],[23.1695069,36.4649326],[23.1698499,36.4652144],[23.1704165,36.4655519],[23.1706503,36.4656076],[23.1709943,36.4657993],[23.1711955,36.4657647],[23.1716874,36.4659889],[23.1722862,36.4663537],[23.1729756,36.4665929],[23.1732407,36.4668561],[23.1735518,36.4669845],[23.1739872,36.4669785],[23.1751908,36.4671491],[23.1765339,36.4667978],[23.1768571,36.4668361],[23.1770473,36.4667923],[23.177339,36.4666501],[23.1775316,36.4663809],[23.178227,36.4660612],[23.1784424,36.4657381],[23.1787241,36.4654877],[23.1807908,36.4642398],[23.1811833,36.4640622],[23.1812406,36.4639183],[23.181498,36.463857],[23.1823851,36.4633402],[23.1827093,36.4632883],[23.1832476,36.4630396],[23.1840529,36.4628738],[23.1842781,36.462686],[23.1847037,36.4625447],[23.1857376,36.4618666],[23.1862971,36.4617172],[23.1870791,36.4616504],[23.1874715,36.4614728],[23.1881528,36.4614233],[23.1888014,36.4613015],[23.1892721,36.4611154],[23.1898531,36.4610472],[23.1910281,36.4607487],[23.1919108,36.4606465],[23.1926956,36.4603002],[23.1932467,36.4598893],[23.1939759,36.4595246],[23.1951897,36.4587034],[23.1956538,36.4580665],[23.1959959,36.4573566],[23.1960076,36.4562298],[23.1961572,36.4557891],[23.1964382,36.4555926],[23.1968789,36.4550637],[23.1980786,36.4545129],[23.1983401,36.4540458],[23.1987195,36.4540484],[23.198843,36.4539771],[23.1989718,36.453383],[23.1991311,36.4530865],[23.1999315,36.4522986],[23.2005216,36.4513379],[23.2015468,36.4503892]]},{"id":18722,"author":"AnaDigit","name_GR":"O33: O33 \u039a\u03bf\u03c5\u03bd\u03bf\u03c5\u03c0\u03b9\u03ac-\u039a\u03c1\u03b5\u03bc\u03b1\u03c3\u03c4\u03ae","description_GR":"","path":"PELOPONNESE\/Pelop_O33_05_Kounoupia_Kremasti","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":14266,"name_EN":"O33: O33 Kounoupia-Kremasti","description_EN":"","ascent_time":330,"descent_time":325,"marker":"O33","level":10,"ascent":407,"descent":415,"maxelev":853,"minelev":494,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.81544 36.97641,22.87588 37.05812)","views":4,"millestones":"0,22.8154668,37.0566675#1,22.8228532,37.0571156#2,22.8283258,37.0512384#3,22.8276205,37.0454769#4,22.8255966,37.0385800#5,22.8276582,37.0363303#6,22.8276051,37.0288007#7,22.8329638,37.0235855#8,22.8422645,37.0194385#9,22.8497466,37.0137267#10,22.8552290,37.0061963#11,22.8576327,36.9985646#12,22.8650782,36.9920783#13,22.8694570,36.9845935#14.3,22.8758833,36.9764144","x":22.8308956,"y":37.0229737,"coor":[[22.8154668,37.0566675],[22.8158993,37.0563383],[22.8159937,37.0560508],[22.8162557,37.0558371],[22.8164355,37.0558479],[22.8167591,37.0560134],[22.8173548,37.0560373],[22.817813,37.0562222],[22.8182625,37.0562447],[22.8187424,37.0564838],[22.8191181,37.0569202],[22.8190602,37.0570278],[22.8187429,37.0571779],[22.8185715,37.0573564],[22.8183607,37.0578952],[22.8183688,37.0580936],[22.8184804,37.0581488],[22.8190109,37.0580278],[22.8198762,37.0580725],[22.8213766,37.057781],[22.8223377,37.057448],[22.8227689,37.0571999],[22.8232602,37.0567],[22.8240643,37.0563384],[22.8250118,37.0561585],[22.825889,37.0561582],[22.8268716,37.0558885],[22.8270775,37.0556651],[22.8274645,37.0546324],[22.8280332,37.0542234],[22.8280102,37.0535201],[22.828519,37.0526147],[22.8284664,37.0523798],[22.8278604,37.0515626],[22.8278629,37.0514004],[22.8282387,37.0512351],[22.829003,37.0512607],[22.8294876,37.0511933],[22.829998,37.0509099],[22.8302899,37.0506424],[22.8303733,37.0503367],[22.8302864,37.0501376],[22.8301416,37.050046],[22.8296233,37.050113],[22.8294899,37.0500125],[22.8297386,37.0491947],[22.8296231,37.0486618],[22.8298982,37.0475919],[22.8298227,37.0473838],[22.8293455,37.0469645],[22.8294049,37.0467577],[22.8297261,37.0463463],[22.8297071,37.0461207],[22.8294784,37.0460013],[22.8281131,37.0455732],[22.8272386,37.0454023],[22.8268115,37.045389],[22.8261119,37.0455444],[22.8256965,37.0455042],[22.8254072,37.045303],[22.8252132,37.0447603],[22.8249614,37.0443161],[22.8248334,37.043134],[22.8246268,37.0426813],[22.8245345,37.0421035],[22.8246273,37.0419151],[22.8248784,37.0416743],[22.8249602,37.0414768],[22.8248428,37.0403399],[22.8248911,37.040124],[22.825588,37.0394098],[22.8255417,37.0387604],[22.8256482,37.0384189],[22.8257974,37.0382221],[22.8261953,37.0379375],[22.8262879,37.0377672],[22.8262314,37.0370546],[22.8264078,37.0365515],[22.826073,37.0356558],[22.8262403,37.0350175],[22.8263856,37.035073],[22.8263333,37.0355503],[22.8264307,37.0357946],[22.8267076,37.0360677],[22.827064,37.0362876],[22.8271739,37.0364509],[22.8272469,37.0368212],[22.8270397,37.0371347],[22.8270136,37.0373688],[22.8272211,37.0377674],[22.8274097,37.0379315],[22.8274824,37.0378939],[22.8275179,37.0377771],[22.8272106,37.0372873],[22.8272805,37.0371258],[22.8276235,37.0367596],[22.8276776,37.0361652],[22.8275902,37.0360021],[22.8271002,37.0356908],[22.8270024,37.0354735],[22.8275389,37.034947],[22.8275374,37.0347509],[22.8270623,37.0342054],[22.8268222,37.0337343],[22.8260919,37.0329699],[22.8261978,37.0326645],[22.8268144,37.0320486],[22.8274539,37.0311265],[22.8277773,37.0308435],[22.8278826,37.0305742],[22.8277189,37.0302571],[22.8282709,37.0296135],[22.8274211,37.0285776],[22.8279714,37.0274472],[22.8290037,37.0264794],[22.8296714,37.025828],[22.8301791,37.0249767],[22.8302379,37.0240759],[22.8308956,37.0229737],[22.8312581,37.022788],[22.8316743,37.022774],[22.8318401,37.0229559],[22.8318998,37.0234613],[22.8320214,37.0235977],[22.832272,37.0236565],[22.8330715,37.0235742],[22.833976,37.0232316],[22.8349408,37.0233673],[22.8357202,37.0231225],[22.8364792,37.0227424],[22.8369119,37.0226092],[22.8371998,37.0225962],[22.8374146,37.0225172],[22.8379252,37.0222067],[22.8387032,37.0220521],[22.8391303,37.021761],[22.8394032,37.0215564],[22.8397256,37.0210548],[22.8403829,37.0207006],[22.8406828,37.0201988],[22.8415568,37.0196485],[22.8424376,37.0193867],[22.8426083,37.0192441],[22.8429656,37.0186617],[22.8431138,37.0185279],[22.8442681,37.0180164],[22.8447275,37.01812],[22.8450774,37.0180242],[22.8451844,37.0176377],[22.8455409,37.0171093],[22.8461199,37.0167274],[22.8463794,37.0166668],[22.846749,37.0167515],[22.8468457,37.0167705],[22.8469589,37.0167175],[22.8483149,37.0155048],[22.8485979,37.0153723],[22.8487578,37.0152026],[22.8491754,37.0143413],[22.850215,37.0132337],[22.8517435,37.011004],[22.8522766,37.0106847],[22.8526799,37.0100216],[22.853716,37.0091392],[22.8540605,37.0086558],[22.8544362,37.0083349],[22.854634,37.0078861],[22.8549757,37.0075829],[22.855046,37.0073943],[22.8548632,37.0068427],[22.8550046,37.0064768],[22.8552451,37.0061816],[22.8554197,37.0057777],[22.8561956,37.005001],[22.8561974,37.0048838],[22.8557289,37.0046449],[22.8553188,37.0042624],[22.8552695,37.0038022],[22.8550192,37.003259],[22.8550193,37.0026415],[22.8550367,37.002227],[22.855577,37.001421],[22.8556247,37.0012412],[22.8555192,37.0007804],[22.8556817,37.0004395],[22.855808,37.0002604],[22.8568778,36.9993603],[22.8569959,36.9989829],[22.8583013,36.9981121],[22.8586205,36.9978087],[22.8591159,36.9969932],[22.8598455,36.9962971],[22.8602421,36.9960756],[22.8608974,36.9950903],[22.861113,36.9949482],[22.8616665,36.9947552],[22.8626759,36.9941339],[22.8634302,36.9932848],[22.864472,36.9927539],[22.8648595,36.9923137],[22.8656359,36.9914918],[22.8659771,36.9912157],[22.8664633,36.991013],[22.86759,36.9908074],[22.8676927,36.9907002],[22.8683242,36.9897958],[22.8685217,36.989356],[22.8686129,36.9885096],[22.8685369,36.9883286],[22.8685221,36.9879566],[22.8689567,36.9866808],[22.8690337,36.9860325],[22.869405,36.9852428],[22.8695023,36.9839818],[22.8698837,36.9832643],[22.8701292,36.9826177],[22.8703801,36.9823677],[22.8707595,36.9817854],[22.8709408,36.9816789],[22.8713803,36.981593],[22.8714605,36.9814856],[22.8709132,36.981264],[22.8708369,36.9811101],[22.870933,36.9806873],[22.8715549,36.9796566],[22.8718168,36.9794248],[22.8722018,36.9792211],[22.8725223,36.9788185],[22.8728323,36.9781567],[22.873113,36.9781684],[22.8737164,36.9778406],[22.8745912,36.9771818],[22.8748667,36.9767878],[22.8749911,36.9767304],[22.8754862,36.976681],[22.8758833,36.9764144]]},{"id":18723,"author":"AnaDigit","name_GR":"O33: O33 \u039a\u03c1\u03b5\u03bc\u03b1\u03c3\u03c4\u03ae-\u039b\u03b1\u03bc\u03c0\u03cc\u03ba\u03b1\u03bc\u03c0\u03bf\u03c2","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a7\u03b9\u03bf\u03bd\u03bf\u03b2\u03bf\u03c5\u03bd\u03af\u03bf\u03c5 (\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03a71)","path":"PELOPONNESE\/Pelop_O33_06_Kremasti_Labokambos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":17604,"name_EN":"O33: O33 Kremasti-Labokambos","description_EN":"Crossing of Mt Chionovouni (Trail X1)","ascent_time":415,"descent_time":425,"marker":"O33","level":10,"ascent":592,"descent":859,"maxelev":1082,"minelev":537,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.87584 36.89735,22.97336 36.9792)","views":6,"millestones":"0,22.8758843,36.9764166#1,22.8845357,36.9723832#2,22.8942206,36.9748626#3,22.9003568,36.9760330#4,22.9048777,36.9773670#5,22.9118868,36.9754145#6,22.9174518,36.9710126#7,22.9247071,36.9664881#8,22.9351131,36.9652588#9,22.9416530,36.9588562#10,22.9485043,36.9524894#11,22.9562312,36.9465339#12,22.9582302,36.9389953#13,22.9614532,36.9307505#14,22.9683745,36.9239481#15,22.9686709,36.9163755#16,22.9721387,36.9084332#17.6,22.9700361,36.8973249","x":22.9406352,"y":36.9599756,"coor":[[22.8758843,36.9764166],[22.8761042,36.9762903],[22.8766848,36.9760817],[22.8774232,36.9755298],[22.87785,36.9749119],[22.8784475,36.9740071],[22.8792365,36.9730681],[22.8797027,36.9726849],[22.8801663,36.9724819],[22.8805043,36.972413],[22.8817487,36.9723504],[22.8820623,36.9724164],[22.8828416,36.9721353],[22.8833035,36.9720495],[22.8837392,36.9722159],[22.8865716,36.9728194],[22.887009,36.9728685],[22.8874373,36.9727734],[22.8883549,36.9722502],[22.8888496,36.9722188],[22.8891511,36.9723478],[22.8896286,36.9727308],[22.8902678,36.9735841],[22.8909836,36.9738071],[22.8922385,36.9740352],[22.8928492,36.9745366],[22.8937677,36.9747255],[22.8946,36.9749721],[22.8957112,36.9750456],[22.8959591,36.9749938],[22.8966396,36.9745494],[22.8975548,36.9741883],[22.8982859,36.974132],[22.8985996,36.974189],[22.8986763,36.9743249],[22.8986067,36.9744775],[22.8977658,36.9751368],[22.8975323,36.9757475],[22.897593,36.9762168],[22.8977683,36.9765249],[22.8982248,36.9768086],[22.8986279,36.9769025],[22.8991797,36.9768175],[22.8996989,36.976651],[22.9002688,36.9760794],[22.9004726,36.9759731],[22.9019385,36.9755991],[22.9024131,36.9754052],[22.9033357,36.9753145],[22.9047912,36.9748773],[22.9062595,36.9743319],[22.9066651,36.9742546],[22.9066636,36.9743627],[22.9062333,36.9745931],[22.9051271,36.9757457],[22.9048577,36.9772936],[22.9049111,36.9774924],[22.9068149,36.979493],[22.907164,36.9786489],[22.90722,36.9778743],[22.9075972,36.977427],[22.9077786,36.9770636],[22.9083008,36.9766899],[22.9092625,36.9762119],[22.9095334,36.9761243],[22.9101297,36.9760667],[22.9106153,36.9758908],[22.9110236,36.9756242],[22.9113502,36.9755641],[22.9115992,36.9754402],[22.9120491,36.9753992],[22.9128399,36.975091],[22.9134591,36.9750065],[22.9136078,36.9748186],[22.9140248,36.9747232],[22.9141018,36.9745459],[22.9138346,36.9743722],[22.9136781,36.9743167],[22.9132172,36.9743395],[22.9130986,36.9739869],[22.9127667,36.9736233],[22.913018,36.9733371],[22.9132148,36.9729243],[22.9133377,36.9728736],[22.9138543,36.9728873],[22.9141169,36.9725923],[22.9151539,36.9723493],[22.9157661,36.9719583],[22.9160017,36.9719785],[22.9165377,36.9722087],[22.9165183,36.9719922],[22.9172691,36.971332],[22.9176836,36.9706237],[22.9179894,36.9704462],[22.9182517,36.9701692],[22.9187046,36.9699209],[22.9187855,36.9697594],[22.9192042,36.9695469],[22.9193446,36.9691515],[22.9195272,36.9689459],[22.9197172,36.968542],[22.9201915,36.968366],[22.9203311,36.9680248],[22.9204907,36.967864],[22.9205154,36.9677019],[22.9206963,36.9676224],[22.9210835,36.9672474],[22.9218982,36.9668311],[22.9219993,36.966832],[22.9220093,36.9669223],[22.9222691,36.9668165],[22.9221764,36.9670229],[22.9225395,36.9667648],[22.9227538,36.9667037],[22.9228774,36.9666958],[22.9226837,36.9668923],[22.9230227,36.9667512],[22.9241924,36.9666536],[22.9245653,36.9664947],[22.92488,36.9664796],[22.925883,36.9662543],[22.9262746,36.966366],[22.9266861,36.9666582],[22.9268994,36.9666691],[22.9269654,36.9667689],[22.9272362,36.9666812],[22.9278307,36.9667496],[22.9285621,36.9666571],[22.9288118,36.966479],[22.9292183,36.9663295],[22.9306305,36.9665585],[22.9313409,36.9663666],[22.93205,36.9662648],[22.9323893,36.9660966],[22.9328405,36.9659655],[22.9332335,36.965978],[22.9336621,36.9658557],[22.9346116,36.9654315],[22.9349834,36.9653537],[22.9353692,36.965071],[22.9360434,36.9646579],[22.9365293,36.9644459],[22.9369969,36.9639453],[22.9376989,36.963546],[22.9380563,36.9628821],[22.9382849,36.9625957],[22.93831,36.9624066],[22.9387174,36.962194],[22.9388334,36.9619246],[22.9393885,36.961587],[22.939473,36.9611641],[22.939782,36.9607522],[22.940245,36.9605761],[22.9403366,36.9604507],[22.9406059,36.9604711],[22.9408668,36.9602841],[22.9409125,36.9602305],[22.9406352,36.9599756],[22.9408173,36.959806],[22.9411451,36.9596556],[22.9413991,36.9591621],[22.9415806,36.9590285],[22.9418362,36.9584179],[22.9420883,36.9580596],[22.9420915,36.9578252],[22.9424698,36.9572697],[22.9425699,36.9573427],[22.9431731,36.9567712],[22.9436585,36.9565952],[22.9440441,36.9563282],[22.9443487,36.9562318],[22.9446473,36.9557567],[22.9448512,36.9556323],[22.9449144,36.9551191],[22.9451199,36.9548775],[22.9451585,36.9545263],[22.9456344,36.9542241],[22.9464714,36.9537988],[22.9466081,36.9536558],[22.9468559,36.9536039],[22.947027,36.9534162],[22.9474238,36.9531493],[22.9482153,36.9527596],[22.9487047,36.9522953],[22.9491793,36.9520831],[22.9493848,36.9518416],[22.9496792,36.9516639],[22.9497413,36.9512318],[22.9502085,36.9507401],[22.9508069,36.950511],[22.9516622,36.9503834],[22.9522052,36.9500997],[22.952606,36.9495354],[22.9527992,36.9493748],[22.9534884,36.9490744],[22.9538968,36.9487715],[22.9539783,36.9485649],[22.9543873,36.948217],[22.9547882,36.9476436],[22.9557165,36.9470298],[22.9561701,36.9467093],[22.9563218,36.946287],[22.9564246,36.9461617],[22.956373,36.9459809],[22.9564328,36.9458215],[22.9572301,36.9449992],[22.9576426,36.9443989],[22.9579606,36.9441402],[22.9584442,36.9432611],[22.9590838,36.9424735],[22.9595731,36.942],[22.9596424,36.9418564],[22.9595675,36.9415853],[22.9596096,36.940966],[22.9591505,36.9408718],[22.9589975,36.940564],[22.9587738,36.9404989],[22.9584733,36.940298],[22.9582297,36.9400435],[22.9581465,36.939556],[22.9582322,36.9390339],[22.9582152,36.9386371],[22.9587669,36.9368752],[22.9587845,36.9364066],[22.9589507,36.9357501],[22.9591452,36.9354814],[22.9594581,36.934763],[22.9599158,36.934136],[22.9600905,36.9336778],[22.9602495,36.933544],[22.9601526,36.9332367],[22.9606171,36.9329342],[22.960608,36.9319516],[22.960745,36.9317816],[22.960937,36.9317021],[22.9609741,36.93145],[22.9612691,36.9312273],[22.961419,36.9309311],[22.9615157,36.9304272],[22.9617691,36.9299607],[22.9620534,36.9296927],[22.9621011,36.9294858],[22.9622713,36.9293521],[22.9624917,36.9288312],[22.9631501,36.9283051],[22.9638901,36.9275544],[22.9646383,36.9270201],[22.9654456,36.9262699],[22.9667912,36.9247312],[22.9682044,36.9240043],[22.9689713,36.9237496],[22.9692561,36.9234456],[22.9696463,36.922818],[22.969732,36.9222869],[22.96959,36.9219972],[22.9694322,36.9220409],[22.9693552,36.9219231],[22.9692932,36.9215259],[22.9693472,36.9208503],[22.9695209,36.9204552],[22.9700106,36.9199366],[22.970207,36.9195237],[22.9702324,36.9193076],[22.9699174,36.9185206],[22.9698131,36.9179248],[22.9697043,36.9176714],[22.9694617,36.9173448],[22.9692935,36.9173343],[22.9690955,36.9170261],[22.9689485,36.917106],[22.9688511,36.9168347],[22.9687178,36.9167344],[22.9686885,36.9164096],[22.968437,36.9159117],[22.9692251,36.914909],[22.9692265,36.9148008],[22.9702161,36.9138359],[22.97047,36.9133242],[22.9708447,36.913003],[22.9708952,36.9125888],[22.9711277,36.9119959],[22.9712362,36.9114379],[22.9710295,36.9109494],[22.9716087,36.9105262],[22.9717479,36.9101939],[22.9716273,36.9099765],[22.9717093,36.9097248],[22.9721442,36.9090976],[22.9721317,36.9083583],[22.9726908,36.9077592],[22.9732269,36.907045],[22.9732185,36.9068376],[22.9730068,36.9067186],[22.9725122,36.9067684],[22.972277,36.9067303],[22.9714857,36.9063088],[22.9707795,36.9054013],[22.9701471,36.9048549],[22.9700924,36.9047463],[22.9701751,36.9044405],[22.9699678,36.903997],[22.9700406,36.903592],[22.9696482,36.9027233],[22.9693533,36.9026125],[22.9694139,36.9022796],[22.9693438,36.901648],[22.9692118,36.9011105],[22.9692058,36.9007228],[22.9690574,36.9000725],[22.9690785,36.8994169],[22.9693508,36.8992029],[22.9695119,36.8989069],[22.9695586,36.8979337],[22.9695998,36.8977178],[22.9700361,36.8973249]]},{"id":18724,"author":"AnaDigit","name_GR":"O33: O33 \u039b\u03b1\u03bc\u03c0\u03cc\u03ba\u03b1\u03bc\u03c0\u03bf\u03c2-\u03a1\u03b5\u03b9\u03c7\u03ad\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_O33_07_Labokambos_Richia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9596,"name_EN":"O33: O33 Labokambos-Richea","description_EN":"","ascent_time":220,"descent_time":215,"marker":"O33","level":10,"ascent":199,"descent":256,"maxelev":624,"minelev":441,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.96889 36.84485,23.00464 36.89732)","views":4,"millestones":"0,22.9700336,36.8973294#1,22.9712815,36.8893428#2,22.9774345,36.8831095#3,22.9742621,36.8755651#4,22.9743017,36.8722194#5,22.9708857,36.8656969#6,22.9741918,36.8589087#7,22.9820076,36.8545600#8,22.9885023,36.8492997#9.6,23.0046335,36.8451413","x":22.9715071,"y":36.8665498,"coor":[[22.9700336,36.8973294],[22.9700297,36.8972009],[22.9697675,36.8966668],[22.9693668,36.89642],[22.9692724,36.8961915],[22.9689185,36.8955394],[22.9696629,36.8944281],[22.9702859,36.8929056],[22.9701665,36.8926071],[22.9698242,36.8921895],[22.9696766,36.8914761],[22.969805,36.8911077],[22.9705657,36.8904562],[22.9708528,36.8899719],[22.9712051,36.8896415],[22.9713474,36.8890748],[22.9714727,36.8889317],[22.9726682,36.8884913],[22.9729405,36.8882683],[22.9730115,36.8879895],[22.9728178,36.8873748],[22.9729675,36.8870877],[22.9738247,36.8867616],[22.9745503,36.886209],[22.9754207,36.8857387],[22.9761978,36.8855291],[22.9767554,36.884948],[22.9772306,36.8846546],[22.9775715,36.884333],[22.9776894,36.8839103],[22.9775836,36.8834317],[22.9773654,36.8829611],[22.9770895,36.8826162],[22.9760309,36.8815569],[22.9757672,36.88114],[22.9754437,36.8801546],[22.975373,36.8795681],[22.9754624,36.8787576],[22.9752473,36.8780617],[22.9744192,36.8770539],[22.9733708,36.8762426],[22.9733627,36.8760082],[22.9737368,36.875723],[22.974154,36.8755733],[22.9748953,36.8755166],[22.9753691,36.8753224],[22.975541,36.8750535],[22.97554,36.8742872],[22.9756987,36.8741624],[22.9758887,36.8742181],[22.9761531,36.87459],[22.9765982,36.8748642],[22.9774923,36.8751243],[22.9778098,36.8750595],[22.9779076,36.8748823],[22.9779236,36.8745218],[22.9779264,36.8738075],[22.9778076,36.8734639],[22.9776517,36.8733725],[22.9765889,36.873147],[22.9757851,36.8729958],[22.9748728,36.8724201],[22.973678,36.8719951],[22.9726899,36.8712113],[22.9718084,36.8708522],[22.971133,36.86935],[22.9710704,36.8689979],[22.9711127,36.8683492],[22.9715071,36.8665498],[22.9714195,36.8663868],[22.9712407,36.8663311],[22.9706861,36.8666959],[22.9705181,36.8666764],[22.9704532,36.8664956],[22.9708144,36.8660751],[22.9708986,36.8656521],[22.9710676,36.8655995],[22.9714374,36.8656297],[22.9715517,36.8654685],[22.9713549,36.8650882],[22.9706669,36.8645233],[22.9706361,36.8643067],[22.9709859,36.8641565],[22.9720285,36.8642106],[22.9723435,36.8641502],[22.9727142,36.86327],[22.9728824,36.8627014],[22.9731293,36.8617007],[22.9732683,36.8611881],[22.9733095,36.8606205],[22.9739005,36.8592104],[22.9740943,36.8589777],[22.9748532,36.8584344],[22.9753495,36.8582313],[22.9763611,36.8580778],[22.9768825,36.8576766],[22.9770853,36.8576063],[22.9779833,36.8575599],[22.9802082,36.8572725],[22.9806818,36.8570873],[22.9814624,36.8565892],[22.9819532,36.8561359],[22.9825942,36.8551679],[22.9825415,36.854915],[22.9817855,36.8544038],[22.981304,36.8537371],[22.9813067,36.8535298],[22.9815723,36.8529552],[22.9821135,36.8523243],[22.9836515,36.8513819],[22.9871293,36.8496268],[22.9878376,36.8493466],[22.9876257,36.8492547],[22.9878398,36.8491754],[22.9884663,36.8492979],[22.9889708,36.8493202],[22.9911295,36.8489239],[22.9927983,36.848253],[22.993521,36.8480473],[22.9941384,36.8478429],[22.9950214,36.8472194],[22.9962567,36.8465943],[22.9965133,36.8465131],[22.9969518,36.8464267],[22.9972462,36.8462128],[22.9984924,36.8456126],[22.999786,36.8453238],[23.0000682,36.8452608],[23.0016876,36.8449319],[23.0027343,36.844837],[23.0029458,36.8449649],[23.0031322,36.8448561],[23.003637,36.8448513],[23.0041876,36.8450993],[23.0045679,36.8451746],[23.0046335,36.8451413]]},{"id":19399,"author":"AnaDigit","name_GR":"O33: O33 \u039c\u03bf\u03bd\u03b5\u03bc\u03b2\u03b1\u03c3\u03b9\u03ac-\u039b\u03b9\u03c1\u03ac","description_GR":"","path":"PELOPONNESE\/Pelop_O33_10_Monemvasia_Lira","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":14157,"name_EN":"O33: O33 Monemvasia-Lira","description_EN":"","ascent_time":335,"descent_time":310,"marker":"O33","level":10,"ascent":1031,"descent":627,"maxelev":410,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.96597 36.64334,23.03902 36.68612)","views":3,"millestones":"0,23.0384798,36.6866180#1,23.0285331,36.6839325#2,23.0200134,36.6804795#3,23.0232121,36.6742850#4,23.0252288,36.6679061#5,23.0251216,36.6596911#6,23.0208926,36.6520580#7,23.0112490,36.6525250#8,23.0016530,36.6552022#9,22.9958378,36.6537176#10,22.9937449,36.6508548#11,22.9908187,36.6526196#12,22.9814063,36.6512342#13,22.9723258,36.6483984#14.2,22.9665390,36.6433250","x":23.01379,"y":36.6516831,"coor":[[23.0384798,36.686618],[23.0383466,36.6866147],[23.0377491,36.6866752],[23.0375572,36.6867187],[23.0368401,36.6864222],[23.0360342,36.6863368],[23.0357108,36.6863274],[23.0355723,36.6863218],[23.0351471,36.6863183],[23.0349488,36.6863145],[23.0345932,36.6863048],[23.0342665,36.6862819],[23.0339475,36.6862816],[23.0337706,36.6862959],[23.0330198,36.6863687],[23.0324352,36.6863008],[23.0319709,36.6861168],[23.0313677,36.6860217],[23.0311134,36.6857673],[23.0304299,36.6853808],[23.0302192,36.6852281],[23.0292233,36.6846543],[23.0291209,36.6844507],[23.0284236,36.683832],[23.0279231,36.6835755],[23.0274871,36.6835359],[23.026673,36.6833039],[23.026226,36.6832552],[23.0257321,36.6833683],[23.0254859,36.6833663],[23.0251479,36.6835438],[23.0250449,36.6837233],[23.024366,36.6838574],[23.0242321,36.6838293],[23.0242196,36.6837368],[23.0238948,36.6837521],[23.0234607,36.6835683],[23.0226943,36.6831023],[23.0221044,36.682845],[23.0217575,36.6828422],[23.0215792,36.6827776],[23.021291,36.6825589],[23.0208155,36.6821043],[23.020475,36.6815966],[23.0202934,36.68091],[23.0200522,36.6805114],[23.0197089,36.6802292],[23.0195526,36.6802008],[23.0193117,36.6797752],[23.0186682,36.6793372],[23.0185002,36.6793448],[23.0185148,36.679266],[23.0197187,36.6787621],[23.0199318,36.6787278],[23.0201359,36.6785222],[23.0204716,36.6785249],[23.0206324,36.6782017],[23.0210142,36.6780967],[23.021238,36.6775509],[23.0217737,36.6776635],[23.0221569,36.6774503],[23.0223611,36.6763522],[23.022765,36.6753819],[23.0229068,36.6747881],[23.0230887,36.6745643],[23.0233191,36.6740433],[23.0233107,36.6738269],[23.0237845,36.6735243],[23.0238878,36.6733178],[23.0240911,36.6731752],[23.0243073,36.6728885],[23.0243996,36.672673],[23.0236834,36.6717837],[23.0239861,36.6717411],[23.0238872,36.671596],[23.0239226,36.6714521],[23.023847,36.6712351],[23.0239173,36.6709833],[23.0237721,36.6709641],[23.0235582,36.6710615],[23.0236503,36.6708639],[23.0232915,36.6709151],[23.0233268,36.6707801],[23.0231921,36.6708151],[23.0234123,36.6702129],[23.0232671,36.6701937],[23.0233134,36.6700679],[23.0231578,36.6699855],[23.0230885,36.6698271],[23.0232818,36.6693893],[23.0237877,36.6692041],[23.0239256,36.6689168],[23.0247705,36.6682206],[23.0261035,36.667303],[23.0261948,36.6671595],[23.0262108,36.666781],[23.0263256,36.6665476],[23.0265603,36.6662114],[23.0263648,36.6657411],[23.0265265,36.6655058],[23.0268394,36.6652109],[23.0262147,36.664248],[23.0252103,36.6613821],[23.0249858,36.6569992],[23.0248893,36.6566649],[23.0243318,36.6556327],[23.0241524,36.6547703],[23.0241069,36.654637],[23.0234002,36.6534593],[23.0230557,36.6531094],[23.0224025,36.6525632],[23.022012,36.6524789],[23.0215561,36.6522588],[23.0205084,36.6519437],[23.0194029,36.6508979],[23.0192414,36.6505653],[23.0189958,36.6505272],[23.0184359,36.6505677],[23.0174196,36.6504241],[23.0171174,36.6504396],[23.016455,36.6506234],[23.016015,36.6509083],[23.0153528,36.6510831],[23.014913,36.6513499],[23.01379,36.6516831],[23.0130246,36.6520464],[23.0122173,36.652193],[23.0115323,36.6523856],[23.0112284,36.6525363],[23.0107199,36.6529287],[23.0096972,36.6541642],[23.0093801,36.6544591],[23.0090086,36.6546363],[23.0084938,36.65465],[23.0074589,36.6542177],[23.0070006,36.6541869],[23.0064172,36.6543082],[23.0049674,36.6548189],[23.0022096,36.6552466],[23.0017957,36.6552431],[23.0011604,36.6550575],[22.9998952,36.655128],[22.9996134,36.6552879],[22.9994165,36.6558091],[22.9989984,36.6561301],[22.9988487,36.6564534],[22.9987243,36.6565605],[22.998557,36.656523],[22.9984805,36.6563782],[22.9985132,36.6555852],[22.9983371,36.6553583],[22.9980931,36.655194],[22.9977581,36.6551461],[22.9967848,36.6551379],[22.9966272,36.6552087],[22.9962873,36.6555394],[22.996085,36.6556098],[22.9956606,36.6555521],[22.9955503,36.655434],[22.9958242,36.6550126],[22.9955562,36.6541179],[22.9956032,36.6539381],[22.996113,36.6534556],[22.9971797,36.6531581],[22.9973269,36.6530241],[22.9972709,36.6527847],[22.9967729,36.6523659],[22.9965748,36.6521118],[22.9963612,36.6513257],[22.9962756,36.6511087],[22.9959883,36.6508358],[22.9949185,36.6505113],[22.9943407,36.6502089],[22.9940389,36.6501883],[22.9934782,36.6502918],[22.9931475,36.6499104],[22.9927262,36.6496183],[22.9925594,36.6496169],[22.9930096,36.6501886],[22.9931021,36.6508204],[22.9936278,36.6508249],[22.9939512,36.6509088],[22.9943725,36.6512008],[22.9946574,36.6516629],[22.9949096,36.6518972],[22.9948748,36.651987],[22.9942976,36.6516396],[22.9938413,36.6514555],[22.9930697,36.6514309],[22.9929791,36.6515113],[22.9934792,36.6515809],[22.993868,36.6517915],[22.9939667,36.6519456],[22.9938854,36.6521792],[22.993615,36.6523212],[22.9924136,36.6526536],[22.9913035,36.6528425],[22.9910541,36.6530928],[22.9908893,36.6537224],[22.9907426,36.6538203],[22.9906438,36.6536753],[22.9908508,36.652388],[22.9906434,36.6519896],[22.9904994,36.6518802],[22.9900754,36.6517954],[22.9887205,36.6518831],[22.986684,36.6527672],[22.9862803,36.6528359],[22.9855205,36.6527664],[22.98522,36.6526466],[22.9849904,36.652239],[22.9848351,36.6521385],[22.9839403,36.6521219],[22.9836952,36.6520386],[22.9832294,36.6517282],[22.9821788,36.6516561],[22.9816662,36.6514985],[22.9812687,36.6510984],[22.9810979,36.650475],[22.9809887,36.6502757],[22.9808004,36.6501299],[22.9804321,36.6500636],[22.9795567,36.6502725],[22.9787505,36.6503287],[22.9785175,36.6501824],[22.9783559,36.6497123],[22.9782019,36.6495127],[22.9779568,36.6494384],[22.9775542,36.649426],[22.9763061,36.6494017],[22.9748048,36.6495691],[22.974269,36.6494744],[22.9738241,36.6492812],[22.9728327,36.6488017],[22.9724228,36.6485006],[22.9720794,36.6481416],[22.9706847,36.6461824],[22.9705443,36.6458026],[22.9703891,36.6448547],[22.9701928,36.6444744],[22.969578,36.6444421],[22.9692101,36.6443488],[22.9689326,36.6441841],[22.9683482,36.643548],[22.9678004,36.6435252],[22.9673745,36.6427463],[22.9672289,36.6427631],[22.9668459,36.6429581],[22.966539,36.643325]]},{"id":19422,"author":"AnaDigit","name_GR":"O33: O33 \u039b\u03b9\u03bc\u03ac\u03bd\u03b9 \u0393\u03ad\u03c1\u03b1\u03ba\u03b1-\u039c\u03bf\u03bd\u03b5\u03bc\u03b2\u03b1\u03c3\u03b9\u03ac","description_GR":"","path":"PELOPONNESE\/Pelop_O33_09_Limani_Geraka_Monemvasia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":18591,"name_EN":"O33: O33 Limani Geraka-Monemvasia","description_EN":"","ascent_time":445,"descent_time":445,"marker":"O33","level":10,"ascent":276,"descent":276,"maxelev":127,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.02164 36.68701,23.08876 36.78956)","views":2,"millestones":"0,23.0822286,36.7883827#1,23.0725027,36.7886874#2,23.0782150,36.7825645#3,23.0836763,36.7749334#4,23.0877158,36.7678793#5,23.0809455,36.7627729#6,23.0776590,36.7598151#7,23.0755045,36.7517625#8,23.0709082,36.7438147#9,23.0620218,36.7444109#10,23.0512592,36.7454568#11,23.0452830,36.7393550#12,23.0371171,36.7342050#13,23.0276431,36.7307348#14,23.0242460,36.7223765#15,23.0231285,36.7136686#16,23.0273289,36.7058588#17,23.0312477,36.6977034#18,23.0338745,36.6896834#18.6,23.0384760,36.6866157","x":23.0657306,"y":36.7427901,"coor":[[23.0822286,36.7883827],[23.0819455,36.7886239],[23.0812586,36.788898],[23.0808879,36.7889673],[23.0804626,36.7889189],[23.0799227,36.789077],[23.0790945,36.7899179],[23.0789706,36.7899711],[23.0782864,36.7900108],[23.0771554,36.78993],[23.0759169,36.7894696],[23.075583,36.7892777],[23.0752972,36.7888068],[23.0749518,36.7886418],[23.0745598,36.7886207],[23.0740643,36.7888152],[23.073683,36.7888302],[23.0715154,36.7885677],[23.0724386,36.7877591],[23.0735303,36.7864515],[23.0739612,36.7860312],[23.0767589,36.7845025],[23.0770994,36.7841445],[23.0773938,36.7835992],[23.0793511,36.7811174],[23.079763,36.7806991],[23.0800134,36.7803766],[23.0802202,36.7799545],[23.0803251,36.7796127],[23.0804258,36.7786941],[23.0809755,36.7776977],[23.081225,36.7774562],[23.0820828,36.77694],[23.0824562,36.7766364],[23.0832642,36.775597],[23.0836868,36.7749242],[23.0840387,36.7745392],[23.0845702,36.7741377],[23.0855167,36.7736942],[23.0857436,36.7734616],[23.0858157,36.7730475],[23.0852717,36.7717723],[23.0852184,36.7715375],[23.0852656,36.7713396],[23.0853911,36.7711512],[23.0859124,36.7706594],[23.0860614,36.7703721],[23.086066,36.7699845],[23.0859173,36.7692983],[23.0859763,36.7690463],[23.0861911,36.7688857],[23.0870441,36.7687661],[23.0873783,36.7686312],[23.0875604,36.7683982],[23.0877936,36.7676247],[23.0878081,36.7673454],[23.0877213,36.7671104],[23.0868268,36.7660037],[23.0862712,36.7656209],[23.0856623,36.7650032],[23.084641,36.7642021],[23.0844324,36.7638399],[23.084207,36.7630088],[23.0839096,36.7625829],[23.0837542,36.7624645],[23.0832959,36.7623708],[23.082791,36.76243],[23.0825771,36.7625185],[23.0822036,36.7628402],[23.0817991,36.7629362],[23.0812175,36.7628506],[23.0803913,36.7626098],[23.0799991,36.7626158],[23.079795,36.7628216],[23.0798656,36.7634711],[23.0797958,36.7636869],[23.0794796,36.7639008],[23.0789854,36.7639962],[23.0779768,36.7640244],[23.0774957,36.7639666],[23.0763739,36.7631466],[23.0760215,36.7628441],[23.0759443,36.7627354],[23.076002,36.7626006],[23.0767714,36.7619666],[23.0773288,36.7612678],[23.0776735,36.7605493],[23.0777675,36.7601804],[23.077606,36.7596383],[23.0766666,36.7585583],[23.076239,36.7577797],[23.0760773,36.7572556],[23.0762015,36.756238],[23.0771398,36.7539218],[23.0771785,36.7534984],[23.0769927,36.7531093],[23.0764401,36.7524831],[23.0755735,36.7518904],[23.0751076,36.7510394],[23.0744697,36.7500519],[23.0732236,36.7484106],[23.0729823,36.747985],[23.0727443,36.747289],[23.0727133,36.746135],[23.0724071,36.7455196],[23.0722801,36.7449056],[23.0721145,36.744706],[23.0705933,36.7435944],[23.0693918,36.7429179],[23.0689787,36.7428065],[23.0676917,36.7427153],[23.0665445,36.7421745],[23.0661987,36.7420636],[23.0658961,36.7420792],[23.0657378,36.7421952],[23.0656683,36.7423839],[23.0657306,36.7427901],[23.0656824,36.7430691],[23.0652507,36.7435706],[23.0647871,36.7439275],[23.0644279,36.7439968],[23.0636441,36.7439726],[23.0628579,36.7441467],[23.060609,36.7448591],[23.0598881,36.745187],[23.0578859,36.7458743],[23.056026,36.7459136],[23.0550529,36.7457977],[23.0535411,36.7457677],[23.0515053,36.7455351],[23.0509697,36.7453686],[23.0492777,36.7445077],[23.0488313,36.744378],[23.0480034,36.7442992],[23.0475124,36.7441511],[23.0463245,36.7432942],[23.0452079,36.7421043],[23.0451994,36.7418879],[23.0455068,36.7414847],[23.0456678,36.7411435],[23.0457299,36.7406572],[23.0456685,36.740188],[23.0448175,36.7383602],[23.0440555,36.7374887],[23.0436704,36.7369267],[23.0419427,36.7353624],[23.0415541,36.7350888],[23.0411639,36.7349414],[23.0398351,36.7346242],[23.0389543,36.7343016],[23.038597,36.7342221],[23.0372984,36.7341755],[23.0367036,36.7342699],[23.0356923,36.7345411],[23.0345499,36.7345409],[23.0331217,36.7341146],[23.0307591,36.733185],[23.0294686,36.7324984],[23.0285368,36.7317876],[23.0279734,36.73117],[23.0264424,36.7291383],[23.0260536,36.7288038],[23.0262592,36.728481],[23.0261954,36.7282123],[23.0255059,36.7260612],[23.0245979,36.7239174],[23.0238562,36.720585],[23.0235935,36.7201141],[23.0231834,36.7197772],[23.0230719,36.7191362],[23.0228371,36.7182238],[23.0225557,36.7173404],[23.0225836,36.7163828],[23.0228768,36.7153395],[23.0231209,36.7142688],[23.0231549,36.7124662],[23.0235033,36.7114775],[23.0241534,36.7105363],[23.0244983,36.709827],[23.0248387,36.7085767],[23.0249871,36.7083526],[23.0256887,36.7077634],[23.0267676,36.7074387],[23.0269953,36.707134],[23.0269939,36.7069132],[23.0270339,36.7066566],[23.0273587,36.7057578],[23.0277822,36.7050221],[23.0282908,36.7043907],[23.0285403,36.7039443],[23.0287787,36.7036758],[23.0290434,36.7033016],[23.0290893,36.7032118],[23.0293323,36.7028329],[23.0299787,36.7018151],[23.0302505,36.7015649],[23.030894,36.700245],[23.0308644,36.7001185],[23.0310209,36.6994122],[23.0314047,36.6989916],[23.0312317,36.6985034],[23.0311911,36.6981696],[23.0312921,36.6972599],[23.0309813,36.6961576],[23.030745,36.69447],[23.0310513,36.6923631],[23.0312007,36.6920578],[23.0316554,36.6915026],[23.0317983,36.6913415],[23.0320732,36.6910125],[23.0322367,36.690838],[23.0323783,36.6907017],[23.0324328,36.6906458],[23.0327237,36.6903777],[23.0329285,36.6901969],[23.0331358,36.6900137],[23.0334526,36.6897459],[23.0341815,36.6896346],[23.0347691,36.6892765],[23.0351082,36.6890089],[23.0353801,36.6887496],[23.0354842,36.68848],[23.0356043,36.6883593],[23.03568,36.6883171],[23.036437,36.688001],[23.0365841,36.6877926],[23.036721,36.6875007],[23.0369615,36.6870609],[23.0372531,36.6868492],[23.0375524,36.6867164],[23.0377453,36.6866729],[23.0383427,36.6866146],[23.038476,36.6866157]]},{"id":20048,"author":"AnaDigit","name_GR":"O33: O33 \u039b\u03b9\u03c1\u03ac-\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03c0\u03cc\u03c3\u03c4\u03bf\u03bb\u03bf\u03b9","description_GR":"","path":"PELOPONNESE\/Pelop_O33_11_Lira_AgApostoloi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":15580,"name_EN":"O33: O33 Lira-Agii Apostoli","description_EN":"","ascent_time":400,"descent_time":405,"marker":"O33","level":10,"ascent":329,"descent":699,"maxelev":619,"minelev":34,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.96443 36.5526,23.02673 36.64331)","views":1,"millestones":"0,22.9665390,36.6433250#1,22.9690146,36.6390719#2,22.9647367,36.6316894#3,22.9710441,36.6255578#4,22.9778709,36.6193383#5,22.9813535,36.6160408#6,22.9807591,36.6096530#7,22.9741775,36.6029828#8,22.9750825,36.5963534#9,22.9723153,36.5948698#10,22.9730906,36.5888211#11,22.9711031,36.5827630#12,22.9786593,36.5769302#13,22.9870734,36.5716278#14,22.9934438,36.5658487#15,23.0039677,36.5628953#16,23.0149482,36.5577689#15.6,23.0267277,36.5525994","x":22.9739135,"y":36.6019601,"coor":[[22.966539,36.643325],[22.9662986,36.6431584],[22.9665372,36.6429599],[22.9672888,36.6423084],[22.9675901,36.6423651],[22.9679545,36.6427198],[22.9687921,36.6428172],[22.9691469,36.6430546],[22.9696736,36.6429871],[22.9703595,36.6427226],[22.9704174,36.6425698],[22.9703645,36.642344],[22.9696465,36.6416617],[22.9694684,36.6415971],[22.9688868,36.641592],[22.968628,36.6415177],[22.9683863,36.641191],[22.9683302,36.6403612],[22.9684124,36.6400735],[22.9687269,36.6397427],[22.9689887,36.6394024],[22.9690164,36.638997],[22.9689438,36.6384938],[22.9691583,36.637504],[22.9690513,36.6371425],[22.96871,36.6367339],[22.9686342,36.636544],[22.9686549,36.635832],[22.9685701,36.6354797],[22.9682608,36.6351885],[22.9671163,36.6346197],[22.9666074,36.6342006],[22.9664982,36.6340014],[22.966191,36.6327187],[22.9659587,36.6325273],[22.965289,36.6324224],[22.9650112,36.6322847],[22.9645926,36.6313864],[22.9646287,36.6311974],[22.9648443,36.6309649],[22.9659801,36.630506],[22.9666469,36.6299889],[22.9673121,36.6295891],[22.9674269,36.6293647],[22.967412,36.6288057],[22.9674927,36.6286261],[22.9676734,36.6284924],[22.9684939,36.628193],[22.9687318,36.6279607],[22.9688028,36.6276729],[22.9686785,36.6269236],[22.9688519,36.6265014],[22.9692123,36.6263152],[22.9700304,36.6261871],[22.9703564,36.6260637],[22.9713843,36.6252973],[22.9718271,36.6247963],[22.9722396,36.6240517],[22.9725166,36.623405],[22.9725883,36.6230631],[22.9726759,36.6226762],[22.9732028,36.6217342],[22.9743941,36.6204464],[22.9747577,36.6201971],[22.977354,36.6192098],[22.9776666,36.6192485],[22.9783225,36.6195426],[22.9794322,36.6202012],[22.9803173,36.6209209],[22.9807739,36.621069],[22.9810941,36.6211169],[22.9814074,36.6211015],[22.981902,36.6209074],[22.9821067,36.6206477],[22.9821431,36.6204317],[22.9820015,36.620142],[22.9815065,36.6195158],[22.981492,36.6189207],[22.9813434,36.6183155],[22.9815769,36.6175693],[22.981604,36.6172089],[22.9815247,36.616433],[22.9812207,36.6157453],[22.9813736,36.6151696],[22.9812354,36.6146276],[22.9812293,36.6142399],[22.9813092,36.6140333],[22.9815298,36.6138458],[22.9820203,36.6139582],[22.9827097,36.6140925],[22.9828781,36.6140399],[22.9833047,36.6137325],[22.9834034,36.6131069],[22.9834937,36.612533],[22.9831162,36.6123314],[22.982877,36.6118155],[22.9828193,36.6109339],[22.9808563,36.6097092],[22.9759555,36.6069177],[22.9750907,36.6056031],[22.9740504,36.6032617],[22.9741769,36.6029923],[22.9741912,36.6027581],[22.9737828,36.6023579],[22.9737857,36.6021416],[22.9739135,36.6019601],[22.9736126,36.6010471],[22.9737289,36.6007055],[22.973991,36.6003292],[22.9750849,36.5996174],[22.9753243,36.5992679],[22.9755165,36.5991073],[22.9762336,36.5989873],[22.9767845,36.5987576],[22.9769015,36.598362],[22.9771849,36.5980669],[22.9764393,36.5978081],[22.9759748,36.5974255],[22.975382,36.5966001],[22.975006,36.5962904],[22.9745508,36.5960521],[22.9742858,36.5957974],[22.9742213,36.5956075],[22.9743056,36.5951485],[22.974275,36.5949229],[22.9735165,36.5939518],[22.9736001,36.5935468],[22.973588,36.5927715],[22.9734871,36.5927977],[22.9725607,36.5943762],[22.9725799,36.5946108],[22.9728208,36.5949915],[22.9727818,36.5954058],[22.9729227,36.5957406],[22.9730987,36.5959584],[22.9730643,36.5960212],[22.972909,36.5959297],[22.9726788,36.5955852],[22.9725183,36.5950429],[22.9713574,36.5940684],[22.9711527,36.5934897],[22.9709436,36.5932355],[22.9706995,36.5930981],[22.9706677,36.5929717],[22.9711826,36.5920746],[22.9715218,36.5917891],[22.9716464,36.5908256],[22.971829,36.5905387],[22.9716767,36.5902219],[22.9713245,36.5898042],[22.9708047,36.589385],[22.9707183,36.5891589],[22.9708429,36.5890338],[22.9716529,36.5886441],[22.9722789,36.5886495],[22.9729119,36.5889615],[22.9730574,36.5889447],[22.9731036,36.5888369],[22.9726857,36.5883195],[22.9722185,36.5881442],[22.9714705,36.5880746],[22.9706628,36.588284],[22.9701387,36.5881894],[22.9702217,36.5880684],[22.9702354,36.5878792],[22.9698955,36.5865421],[22.969594,36.5856741],[22.9697103,36.5853325],[22.9701414,36.5848585],[22.9702337,36.5846429],[22.9702159,36.5843002],[22.9700026,36.5835231],[22.9701203,36.5830824],[22.9704142,36.5828326],[22.9706838,36.5827357],[22.9718563,36.582818],[22.9723582,36.5827412],[22.9728866,36.5825113],[22.9732716,36.582136],[22.9752538,36.5790521],[22.9758555,36.5783451],[22.9763299,36.5779705],[22.9768594,36.5776506],[22.9792412,36.5767154],[22.9801089,36.576182],[22.9808211,36.5755661],[22.9840276,36.5723234],[22.9845952,36.572184],[22.9858921,36.5721499],[22.9863853,36.5720369],[22.9870836,36.5716282],[22.9884375,36.5706481],[22.988608,36.5704242],[22.988667,36.5701903],[22.9882655,36.5692674],[22.9882627,36.5686273],[22.9887803,36.5674959],[22.9891431,36.5671023],[22.989639,36.566782],[22.9904695,36.5665096],[22.9979792,36.564788],[23.0002474,36.5639417],[23.0024464,36.5634282],[23.0030744,36.5632622],[23.0037145,36.5630151],[23.0074474,36.5612253],[23.0087417,36.5605915],[23.0257629,36.5529116],[23.0266292,36.5526257],[23.0267277,36.5525994]]},{"id":20049,"author":"AnaDigit","name_GR":"O33: O33 \u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03c0\u03cc\u03c3\u03c4\u03bf\u03bb\u03bf\u03b9-\u039d\u03b5\u03ac\u03c0\u03bf\u03bb\u03b7","description_GR":"","path":"PELOPONNESE\/Pelop_O33_12_AgApostoloi_Neapoli","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6254,"name_EN":"O33: O33 Agii Apostoloi-Neapoli","description_EN":"","ascent_time":145,"descent_time":145,"marker":"O33","level":10,"ascent":10,"descent":44,"maxelev":34,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.02601 36.50991,23.05873 36.5526)","views":0,"millestones":"0,23.0267273,36.5526017#1,23.0307594,36.5468011#2,23.0326013,36.5402772#3,23.0407271,36.5341762#4,23.0460925,36.5269315#5,23.0522324,36.5195793#6,23.0566751,36.5114697#6.3,23.0587303,36.5099078","x":23.0404346,"y":36.5344332,"coor":[[23.0267273,36.5526017],[23.0265347,36.5522057],[23.026315,36.5517081],[23.0262932,36.5516629],[23.0260331,36.5511041],[23.0267743,36.5508036],[23.0275717,36.5504766],[23.027742,36.5503676],[23.0279417,36.5504819],[23.028356,36.5504131],[23.0287716,36.5504886],[23.0292638,36.5503552],[23.0295297,36.5502582],[23.0293538,36.5500314],[23.0293797,36.5497431],[23.0299679,36.549171],[23.0305519,36.548761],[23.0303016,36.5482271],[23.0307068,36.547987],[23.0312055,36.5474141],[23.0302502,36.5460812],[23.0304317,36.5458573],[23.0304333,36.5457311],[23.0284596,36.5436417],[23.0302278,36.5425022],[23.0302399,36.5424302],[23.029998,36.5421217],[23.0299882,36.5420134],[23.0302811,36.5418175],[23.0308186,36.5417137],[23.0315508,36.5412329],[23.032647,36.5402231],[23.0328632,36.5399093],[23.0330885,36.5397579],[23.0336495,36.5393951],[23.0338117,36.5393761],[23.036238,36.5374959],[23.0376454,36.5366058],[23.0387186,36.5357265],[23.0392854,36.5352263],[23.0400972,36.5346198],[23.0404346,36.5344332],[23.0409201,36.5340134],[23.0424947,36.5331516],[23.0431966,36.532391],[23.0442313,36.5318224],[23.0447282,36.5313846],[23.0448117,36.5309526],[23.0449972,36.5306791],[23.0451808,36.5302839],[23.0453244,36.5295098],[23.045224,36.5285895],[23.0454111,36.5279059],[23.0457989,36.5272509],[23.0467839,36.526177],[23.0470685,36.5259111],[23.0477419,36.5249316],[23.0478997,36.5249892],[23.0486658,36.5239947],[23.0490315,36.5235198],[23.0501395,36.5222148],[23.0506992,36.5216581],[23.0507332,36.5216178],[23.0516865,36.5205796],[23.0520821,36.5199067],[23.0521335,36.5198169],[23.0526009,36.5186622],[23.0529134,36.5178534],[23.053425,36.5164782],[23.0539157,36.5152471],[23.0541707,36.5144828],[23.054227,36.5143571],[23.0544174,36.5139439],[23.0547807,36.5132797],[23.0548489,36.5131811],[23.0550757,36.5128989],[23.0555343,36.5123842],[23.0559022,36.5120626],[23.0562731,36.511777],[23.0575771,36.5107844],[23.0584136,36.5101487],[23.0587303,36.5099078]]},{"id":20053,"author":"AnaDigit","name_GR":"O33: O33 \u03a1\u03b5\u03b9\u03c7\u03ad\u03b1-\u039b\u03b9\u03bc\u03ac\u03bd\u03b9 \u0393\u03ad\u03c1\u03b1\u03ba\u03b1","description_GR":"","path":"PELOPONNESE\/Pelop_O33_08_Richia_Limani_Geraka","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11221,"name_EN":"O33: O33 Richea-Limani Geraka","description_EN":"","ascent_time":250,"descent_time":265,"marker":"O33","level":10,"ascent":23,"descent":487,"maxelev":481,"minelev":13,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.00464 36.78857,23.07151 36.84514)","views":0,"millestones":"0,23.0046357,36.8451391#1,23.0085264,36.8376549#2,23.0157151,36.8335390#3,23.0255029,36.8321252#4,23.0231146,36.8247306#5,23.0278366,36.8173082#6,23.0347096,36.8137449#7,23.0417628,36.8094437#8,23.0485184,36.8046984#9,23.0577816,36.8037287#10,23.0627219,36.7962114#11.2,23.0715137,36.7885677","x":23.0306757,"y":36.8151542,"coor":[[23.0046357,36.8451391],[23.0047621,36.8450636],[23.0050881,36.8448454],[23.0051582,36.8446297],[23.0049043,36.8437982],[23.00494,36.8436453],[23.0053484,36.8432881],[23.0054076,36.8431286],[23.0063622,36.8423253],[23.0065189,36.8414793],[23.006328,36.8406304],[23.006346,36.8401077],[23.0067359,36.8394439],[23.00683,36.8391021],[23.0071172,36.8388476],[23.0073157,36.8381597],[23.0074112,36.8379532],[23.007941,36.8377413],[23.0085703,36.8376473],[23.0087642,36.8373966],[23.009253,36.8364496],[23.0095377,36.8361095],[23.0102925,36.8354149],[23.0108943,36.8351855],[23.0119266,36.83514],[23.014229,36.8348707],[23.014456,36.8346562],[23.0145044,36.8343862],[23.0144155,36.8343224],[23.0138206,36.8343625],[23.0137322,36.8342626],[23.0137672,36.8341547],[23.0145127,36.8337372],[23.0152664,36.8335542],[23.016579,36.833511],[23.0173362,36.8339319],[23.0183187,36.8342645],[23.0200801,36.8342069],[23.0207062,36.8343563],[23.0216927,36.8343825],[23.0232477,36.8338003],[23.0236783,36.8334433],[23.0238747,36.8329942],[23.0240906,36.8327706],[23.0244857,36.8325665],[23.0251264,36.8324456],[23.0254661,36.8321869],[23.0256494,36.8318819],[23.0256755,36.8315937],[23.0253042,36.8308064],[23.0249261,36.8305599],[23.0239754,36.8303628],[23.0236872,36.830099],[23.0236829,36.8295582],[23.0235091,36.829115],[23.0240125,36.8283259],[23.0243418,36.8271207],[23.0243475,36.82667],[23.0241856,36.8261729],[23.0238997,36.8257289],[23.0234226,36.8253283],[23.0229426,36.8251621],[23.0228541,36.8250712],[23.0233444,36.8244262],[23.0234104,36.8236425],[23.0239967,36.8225025],[23.0240179,36.8217185],[23.0245321,36.8209565],[23.0247166,36.819678],[23.0249875,36.818923],[23.0253538,36.8184122],[23.0262923,36.8177889],[23.0266641,36.8176477],[23.0275859,36.8174569],[23.0289189,36.8166565],[23.0290545,36.8164954],[23.0292536,36.8158209],[23.0295284,36.8153634],[23.0298893,36.8151951],[23.0306757,36.8151542],[23.032707,36.8149904],[23.0327086,36.8148643],[23.0322169,36.8147341],[23.0317497,36.8144418],[23.0316507,36.8142968],[23.0317756,36.8141716],[23.0322324,36.8144006],[23.0327027,36.8144405],[23.0345836,36.8137527],[23.0348641,36.8137369],[23.0355572,36.8138958],[23.0360168,36.8138995],[23.03748,36.8134426],[23.0379088,36.8132208],[23.0388514,36.8131563],[23.0391206,36.8131427],[23.0399624,36.8130683],[23.0404234,36.8129549],[23.0407048,36.8127814],[23.0408447,36.8123498],[23.0410957,36.8120003],[23.040903,36.8112776],[23.0415605,36.8106879],[23.0419547,36.8105469],[23.0420794,36.8104307],[23.0418912,36.8095097],[23.0412897,36.8091984],[23.0412348,36.8091078],[23.0414615,36.8089113],[23.0421378,36.8086103],[23.0430262,36.8083921],[23.0436962,36.8086048],[23.0443562,36.8087183],[23.0444022,36.8086195],[23.0441272,36.8082026],[23.0441074,36.8079861],[23.044721,36.807324],[23.0453072,36.8068058],[23.046709,36.8058616],[23.048,36.8048082],[23.0484497,36.8047036],[23.0498971,36.804598],[23.0503705,36.8043855],[23.0512885,36.8042824],[23.052564,36.8044818],[23.0529211,36.8046109],[23.0537668,36.8051224],[23.0547621,36.8053106],[23.0561216,36.8057226],[23.0564013,36.8056504],[23.056741,36.8053737],[23.0572181,36.8048636],[23.0574313,36.8044957],[23.0577266,36.8041826],[23.0577903,36.8036512],[23.0577605,36.8033355],[23.0574857,36.8028916],[23.057378,36.8025302],[23.0574057,36.8020977],[23.0581353,36.8011029],[23.058927,36.8005322],[23.0593204,36.8001545],[23.0600896,36.7990428],[23.0614189,36.7975749],[23.0625188,36.796538],[23.0631476,36.7955333],[23.0645397,36.7944265],[23.0655299,36.7931813],[23.0661026,36.792086],[23.0664086,36.791809],[23.0671739,36.7915445],[23.0675935,36.7911422],[23.0682347,36.7909489],[23.0693295,36.7903174],[23.0696138,36.7899771],[23.0699132,36.7893124],[23.0710734,36.7888347],[23.0715137,36.7885677]]}],{"extent":[22.54636,36.45039,23.20155,37.33366],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"openurl"},"sort":{"type":"byname"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":true},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Volima_AgAndreas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Vassilikos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Prodromos_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Klima_Schinari":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kiliomeno_Yperaghathos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Argasi_Skopiotisa":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Agalas_Kiliomenos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Skopelos_monasteries_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Klima":{"url":null,"color":"#1ab933","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Skopelos_Loutraki_Faros_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Taxiarches":{"url":null,"color":"#2f7aff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Foukalida":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Damoulianata_AgThekli":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Vilatoria_Petani":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Kefalonia_Gerogombos":{"url":null,"color":"#f029e0","width":6,"exclude":false,"useStyle":true},"Geology\/GEO_Kefalonia_4_karst_formations":{"url":null,"color":"#fff741","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Ainos":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Anavasi_AgDinati":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Fiskardo_Battery":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Gyro_apo_Zoodocho_Pigi":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Sami_Poros":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4x4\/SUV_Kefalonia_Ainos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"SUV_4x4\/SUV_Kefalonia_Livadi-AgEleni_beach":{"url":null,"color":"#f72fff","width":6,"exclude":false,"useStyle":true},"GEOLOGY\/GEO_Kefalonia_Mntzavinata_formations":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Antisamos_Fanentes":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Proni_acropolis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_traverse":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Assos_castle":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_AgDinati_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Atros_ascent":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_ridge":{"url":null,"color":"#e99429","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Koutavos_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Sami_Fanentes":{"url":null,"color":"#3ee373","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Kalymnos_Vathys_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Palionisos":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Eborios":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_1":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_12":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_8a":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_10":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_9":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_5":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_16":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_14":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_4":{"url":"http:\/\/www.alternetgreece.com\/en\/activities\/hiking","color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_17":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_6":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_3":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Kokkinoplos_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Litochoro_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Karya_Skolio":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Krania_Rapsani":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Rapsani_Tembi":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Dion_Petrostrouga":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Gortsia_Apostolidis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_Litochoro_Livadaki_Mouses":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Vrondou_Barbalas":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Ascent_Pyramida":{"url":null,"color":"#0f4a96","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Sykia_Pyramida":{"url":null,"color":"#960f65","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Viniani_Reka_Giona_ref":{"url":null,"color":"#f7f70d","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Kaloskopi_51":{"url":null,"color":"#0f962a","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Stromi_Kaloskopi":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Vardousia_Koprisies":{"url":null,"color":"#178e12","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Diakos_Stromi":{"url":null,"color":"#502fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Southern_Ridge":{"url":null,"color":"#eff900","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos":{"url":null,"color":"#ff2fe6","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina":{"url":null,"color":"#c52fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Oxia_AthDiakos":{"url":null,"color":"#40ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argirochori_Abelaki":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argyrochori_Trapeza":{"url":null,"color":"#2f72ff","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Gersali":{"url":null,"color":"#59ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Trapeza":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Oiti_Ypati_Kapnochori":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"STEREA\/Sterea_Oeta_Ypati_Kastania":{"url":null,"color":"#127a2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Pyrgos":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Greveno":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra_Pyrgos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Neochori_Pyrgos":{"url":null,"color":"#2fe6ff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra-Pyrgos":{"url":null,"color":"#69ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Eleftherochori_Gioza":{"url":null,"color":"#13a713","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Tithronio_Gioza":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Elati_Vytina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Nymfasia_Magouliana":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_O31_2_Petroto_Kalanistra":{"url":null,"color":"#a32710","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_O31_4_Michas_AnoVlasia":{"url":null,"color":"#a32710","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_O31_6_Platanitsa_Lambeia":{"url":null,"color":"#a32710","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_O31_8_Koumani_Lolas":{"url":null,"color":"#a32710","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_O33_01_AgPetros_Malevi_Parnon_refuge":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false}}}); function getPoiCollection(key,data,meta){ this.key = key; this.data = data; this.item = []; //this.meta = meta; this.gsMap = null; this.features = [] ; //this.lineFeatures = [] ; var self = this; //console.log(data); this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.features=[]; for(var i in this.data){ //console.log(this.data[i]); var newItem = this.getItem(this.data[i]); newItem.style = this.getIconStyle(newItem); var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem)); //var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(newItem.style); f.show = function () { var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } newItem.feature = f; this.item.push(newItem); this.features.push(f); } this.source.addFeatures(this.features); this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();}); this.refresh(); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ return { width:item.width, height:item.height, photoPath:item.photoPath, name:item.name, description:item.description, parent:this, click:[function(s,f,l){ var div = document.getElementById("myModal"); var self = f.get('msp'); //#34b0ff div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); }]}; } this.poiIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.5 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } this.getIconStyle = function(myItem) { var icon_size = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) var icon_size_set = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) * icon_size / 100; var is = (icon_size > 0) ? icon_size : 9; var icon_index = myItem.icon_index; if (wpt_icon.anch_fraction_x[icon_index] >= 0) { var anch_x = wpt_icon.anch_fraction_x[icon_index]; var anch_y = wpt_icon.anch_fraction_y[icon_index]; } else { var anch_x = 0.5; var anch_y = 0.5; } if (wpt_icon.scale[icon_index] >= 0) { var scale = wpt_icon.scale[icon_index]; } else { if (icon_size_set > 0) { var scale = icon_size_set; } else { var scale = 0.3; } } scale = 0.2; var MarkerIcon = wpt_icon.url_s[icon_index]; var iconStyle = new ol.style.Style({ image: new ol.style.Icon(({ anchor: [anch_x, anch_y], anchorXUnits: 'fraction', anchorYUnits: 'fraction', //anchorYUnits: 'pixels', opacity: 0.95, src: MarkerIcon, scale: scale })) }); return iconStyle; } this.getItem = function (dat){ var type = dat.type * 1;//[3]*1; var icon = map_point_collection.get(type); var icon_index = icon.iconindex; var img_path = icon.path; return { image: dat.photo, name: dat.name, description: dat.description, link_en: dat.hlink_EN, type: dat.type * 1, dbid: dat.id, hlink: dat.hlink_GR, zoom_level: dat.zoom_level, width: dat.width * 1, height: dat.height * 1, owner: dat.owner, icon_index: icon_index, photoPath: img_path + dat.photo + '.jpg', thumb_path: img_path + 'thumbs/' + dat.photo + '.jpg', //tmpim:add_image(pop_info_tmp, fp.attributes.thumb_path,-230,3,-1,-1,null), path: (dat.type * 1 == 1) ? img_path + dat.photo + '.jpg' : "" } } this.pop_info_adjust_size = function(type, dl) { if (dl < 0) dl = 0; var new_size = 9 + (1.5 * dl); return new_size * 0.2; } this.refresh = function () { try { this.source.clear(); } catch (err) { } var zoom = this.gsMap.getZoom(); for (var i = 0; i < this.item.length; i++) { if (zoom >= this.item[i].zoom_level) this.source.addFeatures([this.item[i].feature]); } } this.getImagetItem = function(path,width,height){ /* PARADOXES - OLES OI EIKONES PIANOYN TO MEGISTO PLATOS - AN TO YPSOS EINEI MEGALYTERO TOY DIAUESIMOY H EIKONA KOVETAI KATV */ var minAvailableWidth =568; //APO BOOTSTRAP, http://www.topoguide.gr/css/bootstrap.css, 5489, var maxAvailableHeight = browser.size()[1]-250; var style = "",divStyle = ""; if(height>maxAvailableHeight){ var ratio = width/height; var renderWidth = maxAvailableHeight*ratio; var renderHeight = maxAvailableHeight; if(minAvailableWidth/ratio>maxAvailableHeight) divStyle += "height:" + renderHeight + "px;"; divStyle += "width:100%;"; style += "width:100%;"; } else{ if(width'; } } var img_path = 'https://anadigit.fr/TopoMedia/map_points/img'; var map_point_collection = { 0 :{iconindex:14,path:img_path + "/Landscape/"}, 1 :{iconindex:17,path:img_path + "/Flora/"}, 2 :{iconindex:18,path:img_path + "/Animals/"}, 3 :{iconindex:19,path:img_path + "/Books/"}, 4 :{iconindex:20,path:img_path + "/Maps/"}, 5 :{iconindex:21,path:img_path + "/Apps/"}, 6 :{iconindex:22,path:img_path + "/Mushrooms/"}, 7 :{iconindex:23,path:img_path + "/Animals/"}, 8 :{iconindex:24,path:img_path + "/Animals/"}, 9 :{iconindex:25,path:img_path + "/Architecture/"}, 10:{iconindex:26,path:img_path + "/Monuments/"}, 447:{iconindex:38,path:img_path + "/Refuges/"}, 450:{iconindex:41,path:img_path + "/Signposts/"}, 71:{iconindex:36,path:img_path + "/Geology/"}, 72:{iconindex:34,path:img_path + "/Geology/"}, 73:{iconindex:35,path:img_path + "/Geology/"}, 204:{iconindex:27,path:img_path + "/logos/"}, 206:{iconindex:28,path:img_path + "/logos/"}, 200:{iconindex:29,path:img_path + "/logos/"}, 201:{iconindex:30,path:img_path + "/logos/"}, 205:{iconindex:31,path:img_path + "/logos/"}, 202:{iconindex:32,path:img_path + "/logos/"}, 203:{iconindex:33,path:img_path + "/logos/"}, 301:{iconindex:42,path:img_path + "/Beach/"}, 1001:{iconindex:42,path:img_path + "/Water/"}, default: {iconindex:28,path:""} } map_point_collection.get = function(key){ return this[key] || this.default; } function wpt_icon_class(){ this.count=0; this.url = new Array(); this.url_s = new Array(); this.cx = new Array(); this.cy = new Array(); this.scx = new Array(); this.scy = new Array(); this.ix = new Array(); this.iy = new Array(); this.anch_fraction_x = new Array(); this.anch_fraction_y = new Array(); this.scale = new Array(); this.inwptwindow = new Array(); this.add = function(url,url_s,cx,cy,ix,iy,scx,scy,anch_fraction_x, anch_fraction_y,scale,inwptwindow){ this.count+=1; this.url[this.count]="https://anadigit.fr/TopoMedia/" + url; this.url_s[this.count]="https://anadigit.fr/TopoMedia/" + url_s; this.cx[this.count]=cx; this.cy[this.count]=cy; this.scx[this.count]=scx; //kentro simeiou gia xarti this.scy[this.count]=scy; this.ix[this.count]=ix; //offset sto icon list this.iy[this.count]=iy; this.anch_fraction_x[this.count]=anch_fraction_x; //offset sto icon list this.anch_fraction_y[this.count]=anch_fraction_y; this.scale[this.count]=scale; this.inwptwindow[this.count]=inwptwindow; } } var wpt_icon = new wpt_icon_class(); wpt_icon.add("Icons/WPT/pin_blue.png","Icons/WPT/pin_blue_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_green.png","Icons/WPT/pin_green_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_red.png","Icons/WPT/pin_red_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/star_blue.png","Icons/WPT/star_blue_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_green.png","Icons/WPT/star_green_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_red.png","Icons/WPT/star_red_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/lmk_red.png","Icons/WPT/lmk_red_s.png",32,32,-3,0,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/house_blue.png","Icons/WPT/house_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true);; wpt_icon.add("Icons/WPT/house_red.png","Icons/WPT/house_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/monastery_red.png","Icons/WPT/monastery_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/church_red.png","Icons/WPT/church_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_blue.png","Icons/WPT/anchor_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_red.png","Icons/WPT/anchor_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); //photo_points wpt_icon.add("Icons/WPT/landscape.png","Icons/WPT/landscape.png",28,28,5,8,16,16); wpt_icon.add("img/NAV_START.png","img/NAV_START.png",32*1.5,42,-5,-48,11,11,0.5,1.0,0.6,true); wpt_icon.add("img/NAV_END.png","img/NAV_END.png",32*1.5,162,-5,-28,11,11,0.5,1.0,0.6,true); wpt_icon.add("Icons/WPT/flora.png","Icons/WPT/flora.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/bird.png","Icons/WPT/bird.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/book.png","Icons/WPT/book.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/map.png","Icons/WPT/map.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/iphone.png","Icons/WPT/iphone.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mushroom.png","Icons/WPT/mushroom.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mammal.png","Icons/WPT/mammal.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/turtle.png","Icons/WPT/turtle.png",30,30,5,8,16,16); wpt_icon.add("Icons/WPT/architecture.png","Icons/WPT/architecture.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/monument.png","Icons/WPT/monument.png",28,28,5,8,16,16); // pop_info wpt_icon.add("pop_info/Icons/pop_info_1.png","pop_info/Icons/pop_info_1.png",32,32,5,8,32,32,0.5,1); // iconindex= 27 wpt_icon.add("pop_info/Icons/pop_info_2.png","pop_info/Icons/pop_info_2.png",32,32,5,8,32,32,0.5,1); // iconindex= 28 wpt_icon.add("pop_info/Icons/pop_info_3.png","pop_info/Icons/pop_info_3.png",32,32,5,8,32,32); // iconindex= 29 wpt_icon.add("pop_info/Icons/pop_info_4.png","pop_info/Icons/pop_info_4.png",32,32,5,8,32,32,0.5,1); // iconindex= 30 wpt_icon.add("pop_info/Icons/pop_info_5.png","pop_info/Icons/pop_info_5.png",32,32,5,8,32,32); // iconindex= 31 wpt_icon.add("pop_info/Icons/pop_info_6.png","pop_info/Icons/pop_info_6.png",32,32,5,8,32,32); // iconindex= 32 wpt_icon.add("pop_info/Icons/pop_info_7.png","pop_info/Icons/pop_info_7.png",32,32,5,8,32,32); // iconindex= 33 wpt_icon.add("pop_info/Icons/pop_info_101.png","pop_info/Icons/pop_info_101.png",32,32,5,8,32,32,0.5,0.5); // iconindex= 34 wpt_icon.add("pop_info/Icons/pop_info_102.png","pop_info/Icons/pop_info_102.png",32,32,5,8,32,32); // iconindex= 35 wpt_icon.add("pop_info/Icons/pop_info_103.png","pop_info/Icons/pop_info_103.png",32,32,5,8,32,32); // iconindex= 36 wpt_icon.add("Icons/WPT/POI_446_icon.png","Icons/WPT/POI_446_icon.png",32,32,5,8,32,32); // iconindex= 37 wpt_icon.add("Icons/WPT/POI_447_icon.png","Icons/WPT/POI_447_icon.png",32,32,5,8,32,32); // iconindex= 38 wpt_icon.add("Icons/WPT/POI_448_icon.png","Icons/WPT/POI_448_icon.png",32,32,5,8,32,32); // iconindex= 39 wpt_icon.add("Icons/WPT/POI_449_icon.png","Icons/WPT/POI_449_icon.png",32,32,5,8,32,32); // iconindex= 40 wpt_icon.add("Icons/WPT/POI_450_icon.png","Icons/WPT/POI_450_icon.png",32,32,5,8,32,32); // iconindex= 41 wpt_icon.add("Icons/WPT/Fountain_blue.png","Icons/WPT/Fountain_blue.png",32,32,5,8,32,32); // iconindex= 42 console.log('poi signature up to date');var poiCollection_O33 = new getPoiCollection("O33",[{"name":"\u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1 \u03a0\u03b5\u03bb\u03b5\u03c4\u03ce\u03bd","owner":"\u03a1\u03b5\u03b3\u03b3\u03af\u03bd\u03b1 \u039a\u03bf\u03cd\u03c4\u03c3\u03b7","x":22.900835,"y":37.054284,"photo":"peleta_sinkhole","type":73,"zoom_level":13,"id":37,"hlink_GR":"http:\/\/www.speleo.gr\/gr\/documents\/2010peleta.pdf","hlink_EN":"http:\/\/www.speleo.gr\/gr\/documents\/2010peleta.pdf","description":"\u0397 \u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1 \u03c4\u03c9\u03bd \u03a0\u03b5\u03bb\u03b5\u03c4\u03ce\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5 \u03b2\u03ac\u03b8\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b5\u03bb\u03bf\u03c0\u03cc\u03bd\u03bd\u03b7\u03c3\u03bf, 2\u03b7 \u03c3\u03c4\u03b7 \u03c7\u03b5\u03c1\u03c3\u03b1\u03af\u03b1 \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 \u03ba\u03b1\u03b9 4\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b7 \u03c4\u03b7\u03bd \u03c7\u03ce\u03c1\u03b1 \u03bc\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03b4\u03cd\u03bf \u03b2\u03ac\u03c1\u03b1\u03b8\u03c1\u03b1 \u03c4\u03b7\u03c2 \u039a\u03c1\u03ae\u03c4\u03b7\u03c2. \u0397 \u03ba\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1 \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u039d\u0391 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u03a0\u03b5\u03bb\u03b5\u03c4\u03ac, \u03c3\u03c4\u03bf \u03c7\u03b1\u03bc\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \"\u039a\u03ac\u03c4\u03c9 \u039a\u03ac\u03bc\u03c0\u03bf\u03c5\". \u0388\u03c7\u03b5\u03b9 \u03b5\u03be\u03b5\u03c1\u03b5\u03c5\u03bd\u03b7\u03b8\u03b5\u03af \u03c3\u03b5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03b2\u03b1\u03b8\u03bc\u03cc \u03b1\u03c0\u03cc \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03a3\u03a0\u0395\u039b\u0395\u039f.","height":0,"width":0},{"name":"\u03a0\u0391\u03a1\u039d\u03a9\u039d\u0391\u03a3
\u039a\u03bf\u03c1\u03c5\u03c6\u03ae \u03a4\u03bf\u03cd\u03c1\u03bb\u03b1","owner":"A. Bonetti","x":22.606396,"y":37.287403,"photo":"Mt Parnonas - Tourla 05","type":0,"zoom_level":12,"id":222,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03a4\u03bf\u03cd\u03c1\u03bb\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03a0\u03c1\u03c6. \u0397\u03bb\u03af\u03b1","height":345,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u03a9\u039d\u0391\u03a3
\u039f\u03c1\u03b5\u03b9\u03b2\u03b1\u03c3\u03af\u03b1","owner":"A. Bonetti","x":22.612818,"y":37.278059,"photo":"Mt Parnonas - Tourla 01","type":0,"zoom_level":14,"id":223,"hlink_GR":"","hlink_EN":"","description":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae","height":345,"width":512},{"name":"\u039a\u03a5\u039d\u039f\u03a5\u03a1\u0399\u0391
\u039a\u03ac\u03c3\u03c4\u03c1\u03bf","owner":"AnaDigit","x":22.765427351,"y":37.314508539293,"photo":"Kynouria_Kastro_390600_4130000","type":10,"zoom_level":14,"id":422,"hlink_GR":"","hlink_EN":"","description":"","height":206,"width":512},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u039a\u03b1\u03c3\u03c4\u03b1\u03bd\u03b9\u03ad\u03c2 \u03c3\u03c4\u03bf\u03bd \u03a0\u03ac\u03c1\u03bd\u03c9\u03bd\u03b1","owner":"AnaDigit","x":22.548908710479,"y":37.322089601259,"photo":"Kynouria_Voreios_Parnon_Kastanies","type":1,"zoom_level":14,"id":497,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":385},{"name":"\u039c\u039f\u039d\u0395\u039c\u0392\u0391\u03a3\u0399\u0391
\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u03a3\u03bf\u03c6\u03af\u03b1\u03c2","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":23.0544553,"y":36.6893304,"photo":"Monemvasia_AgSofia","type":10,"zoom_level":14,"id":720,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":461},{"name":"\u0392\u0391\u03a4\u0399\u039a\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03bc\u03bf\u03bd\u03bf\u03c0\u03b1\u03c4\u03b9\u03ce\u03bd","owner":"AnaDigit","x":22.883205,"y":36.657461,"photo":"DSC068731","type":450,"zoom_level":16,"id":3684,"hlink_GR":"","hlink_EN":"","description":"","height":1007,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1","owner":"AnaDigit","x":22.950602,"y":36.499095,"photo":"DSC069591","type":9,"zoom_level":15,"id":3685,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03c0\u03c5\u03c1\u03af\u03b4\u03c9\u03bd","owner":"AnaDigit","x":22.980564534387,"y":36.511532847307,"photo":"Elafonisos_AgSpyridon1","type":9,"zoom_level":14,"id":3686,"hlink_GR":"","hlink_EN":"","description":"","height":802,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2 (\u0391\u03b3\u03b9\u03b1\u03bd\u03bd\u03ac\u03ba\u03b7\u03c2)","owner":"AnaDigit","x":22.981595772484,"y":36.506693055557,"photo":"Elafonisos_Agiannakis1","type":9,"zoom_level":16,"id":3687,"hlink_GR":"","hlink_EN":"","description":"","height":676,"width":1000},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03bd\u03c4\u03ce\u03bd\u03b9\u03bf\u03c2","owner":"AnaDigit","x":22.949295445767,"y":36.492864807033,"photo":"Elafonisos_Ag_Antonios1","type":9,"zoom_level":15,"id":3688,"hlink_GR":"","hlink_EN":"","description":"","height":816,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0391\u03b3\u03af\u03b1 \u0395\u03b9\u03c1\u03ae\u03bd\u03b7","owner":"AnaDigit","x":22.947226,"y":36.490663,"photo":"Elafonisos_Ag_Irini1","type":9,"zoom_level":16,"id":3689,"hlink_GR":"","hlink_EN":"","description":"","height":1200,"width":900},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03b1\u03c4\u03c9\u03bd\u03b7\u03c3\u03b9\u03ce\u03c4\u03b9\u03c3\u03b1","owner":"AnaDigit","x":22.941654261243,"y":36.486604035191,"photo":"DSC069721","type":9,"zoom_level":14,"id":3690,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u03a0\u03b1\u03c4\u03b1\u03c0\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.933715,"y":36.486291,"photo":"Elafonisos_Ag_Patapios_11","type":0,"zoom_level":15,"id":3691,"hlink_GR":"","hlink_EN":"","description":"","height":687,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u03a0\u03b1\u03c4\u03b1\u03c0\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.932665,"y":36.484965,"photo":"Elafonisos_Ag_Patapios_21","type":0,"zoom_level":16,"id":3692,"hlink_GR":"","hlink_EN":"","description":"","height":852,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u03a0\u03b1\u03c4\u03b1\u03c0\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.928476,"y":36.481615,"photo":"Elafonisos_Ag_Patapios_31","type":0,"zoom_level":15,"id":3693,"hlink_GR":"","hlink_EN":"","description":"","height":920,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u03a0\u03b1\u03c4\u03b1\u03c0\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.927221,"y":36.47982,"photo":"Elafonisos_Ag_Patapios_41","type":0,"zoom_level":15,"id":3694,"hlink_GR":"","hlink_EN":"","description":"","height":945,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u03a0\u03b1\u03c4\u03b1\u03c0\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.927443,"y":36.47697,"photo":"Elafonisos_Ag_Patapios_61","type":0,"zoom_level":16,"id":3695,"hlink_GR":"","hlink_EN":"","description":"","height":828,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u03a0\u03b1\u03c4\u03b1\u03c0\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.927743,"y":36.473636,"photo":"Elafonisos_Ag_Patapios_71","type":0,"zoom_level":17,"id":3696,"hlink_GR":"","hlink_EN":"","description":"","height":660,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u03a0\u03b1\u03c4\u03b1\u03c0\u03af\u03bf\u03c5","owner":"AnaDigit","x":22.927698,"y":36.473188,"photo":"Elafonisos_Ag_Patapios_81","type":0,"zoom_level":17,"id":3697,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0391\u03bd\u03ac\u03b2\u03bb\u03c5\u03c3\u03b7 (\u03b2\u03bb\u03c5\u03c7\u03ac\u03b4\u03b1) \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u03a0\u03b1\u03c4\u03ac\u03c0\u03b9\u03bf","owner":"AnaDigit","x":22.927265,"y":36.472136,"photo":"Elafonisos_Ag_Patapios_91","type":1001,"zoom_level":16,"id":3698,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0397 \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u03a0\u03b1\u03c4\u03ac\u03c0\u03b9\u03bf","owner":"AnaDigit","x":22.926303,"y":36.471266,"photo":"Elafonisos_Ag_Patapios_101","type":301,"zoom_level":14,"id":3699,"hlink_GR":"","hlink_EN":"","description":"","height":625,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a6\u03c5\u03c3\u03b9\u03ba\u03ae \u03b1\u03bb\u03c5\u03ba\u03ae \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u03a0\u03b1\u03c4\u03ac\u03c0\u03b9\u03bf","owner":"AnaDigit","x":22.927361,"y":36.477985,"photo":"Elafonisos_Ag_Patapios_5g2","type":0,"zoom_level":16,"id":3700,"hlink_GR":"","hlink_EN":"","description":"","height":727,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03bc\u03bf\u03bd\u03bf\u03c0\u03b1\u03c4\u03b9\u03bf\u03cd \u03c0\u03c1\u03bf\u03c2 \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1","owner":"AnaDigit","x":22.973068,"y":36.476645,"photo":"DSC068981","type":450,"zoom_level":16,"id":3701,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c5\u03bd\u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u039a\u03b1\u03bb\u03c5\u03b2\u03ac\u03ba\u03b9\u03b1","owner":"AnaDigit","x":22.978538,"y":36.491161,"photo":"DSC069521","type":9,"zoom_level":15,"id":3702,"hlink_GR":"","hlink_EN":"","description":"","height":757,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0391\u03bb\u03ce\u03bd\u03b9 \u03c3\u03c4\u03b1 \u039a\u03cc\u03ba\u03ba\u03b9\u03bd\u03b1","owner":"AnaDigit","x":22.935758,"y":36.47219,"photo":"Elafonisos_aloni_11","type":9,"zoom_level":15,"id":3703,"hlink_GR":"","hlink_EN":"","description":"","height":1044,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0396\u03c9\u03ae\u03bb\u03b1\u03c4\u03bf \u03bc\u03b1\u03b3\u03b3\u03ac\u03bd\u03b9 \u03c3\u03c4\u03bf \u039a\u03ac\u03c4\u03c9 \u039d\u03b7\u03c3\u03af","owner":"AnaDigit","x":22.945176,"y":36.48966,"photo":"Elafonisos_water_11","type":1001,"zoom_level":16,"id":3704,"hlink_GR":"","hlink_EN":"","description":"","height":1050,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf \u039a\u03b1\u03c0\u03ac\u03c1\u03b9","owner":"AnaDigit","x":22.957951394179,"y":36.504363015787,"photo":"Elafonisos_water_21","type":1001,"zoom_level":16,"id":3705,"hlink_GR":"","hlink_EN":"","description":"","height":1049,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u039a\u03b1\u03bb\u03cd\u03b2\u03b9 \u03c3\u03c4\u03b1 \u039a\u03cc\u03ba\u03ba\u03b9\u03bd\u03b1","owner":"AnaDigit","x":22.940308,"y":36.471195,"photo":"Elafonisos_Kokkina_11","type":9,"zoom_level":16,"id":3706,"hlink_GR":"","hlink_EN":"","description":"","height":960,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u039a\u03b1\u03bb\u03cd\u03b2\u03b9 \u03c3\u03c4\u03b1 \u039a\u03cc\u03ba\u03ba\u03b9\u03bd\u03b1","owner":"AnaDigit","x":22.94185,"y":36.47094,"photo":"Elafonisos_Kokkina_21","type":9,"zoom_level":16,"id":3707,"hlink_GR":"","hlink_EN":"","description":"","height":614,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
Camping Simos","owner":"AnaDigit","x":22.974651,"y":36.47604,"photo":"Elafonisos_camping_11","type":9,"zoom_level":15,"id":3708,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039b\u03b5\u03c5\u03ba\u03ae","owner":"AnaDigit","x":22.981595,"y":36.47747,"photo":"Elafonisos_Lefki_pano1","type":301,"zoom_level":15,"id":3709,"hlink_GR":"","hlink_EN":"","description":"","height":566,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u039f\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u039a\u03ac\u03c4\u03c9 \u039d\u03b7\u03c3\u03af","owner":"AnaDigit","x":22.943860796339,"y":36.488286547924,"photo":"Elafonisos_kato_nisi_pano1","type":9,"zoom_level":14,"id":3710,"hlink_GR":"","hlink_EN":"","description":"","height":358,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a4\u03bf \u03c8\u03b1\u03c1\u03ac\u03b4\u03b9\u03ba\u03bf \u03bb\u03b9\u03bc\u03ac\u03bd\u03b9","owner":"AnaDigit","x":22.981435,"y":36.510366,"photo":"Elafonisos_limani_pano1","type":9,"zoom_level":15,"id":3711,"hlink_GR":"","hlink_EN":"","description":"","height":631,"width":2000},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c4\u03bf \u03c8\u03b1\u03c1\u03ac\u03b4\u03b9\u03ba\u03bf \u03bb\u03b9\u03bc\u03ac\u03bd\u03b9","owner":"AnaDigit","x":22.981186,"y":36.510033,"photo":"Elafonisos_limani_11","type":9,"zoom_level":17,"id":3712,"hlink_GR":"","hlink_EN":"","description":"","height":1405,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03cc \u03b1\u03c1\u03c7\u03bf\u03bd\u03c4\u03cc\u03c3\u03c0\u03b9\u03c4\u03bf \u03c3\u03c4\u03bf \u039a\u03ac\u03c4\u03c9 \u039d\u03b7\u03c3\u03af","owner":"AnaDigit","x":22.949946,"y":36.48714,"photo":"Elafonisos_spitia_11","type":9,"zoom_level":15,"id":3713,"hlink_GR":"","hlink_EN":"","description":"","height":1050,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03cc \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03cc \u03c3\u03c0\u03af\u03c4\u03b9 \u03c3\u03c4\u03bf \u039a\u03ac\u03c4\u03c9 \u039d\u03b7\u03c3\u03af","owner":"AnaDigit","x":22.949243,"y":36.48213,"photo":"Elafonisos_spitia_21","type":9,"zoom_level":15,"id":3714,"hlink_GR":"","hlink_EN":"","description":"","height":1050,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ac\u03c2","owner":"AnaDigit","x":22.944352149963,"y":36.491657738943,"photo":"Elafonisos_panagia_pano1","type":301,"zoom_level":15,"id":3715,"hlink_GR":"","hlink_EN":"","description":"","height":646,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a4\u03bf \u03ba\u03b1\u03c1\u03bd\u03ac\u03b3\u03b9\u03bf","owner":"AnaDigit","x":22.982301924616,"y":36.5048442469,"photo":"Elafonisos_Karnagio1","type":9,"zoom_level":15,"id":3716,"hlink_GR":"","hlink_EN":"","description":"","height":803,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0397 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u0392\u03ac\u03c1\u03b4\u03b9\u03b1 (276 \u03bc.)","owner":"AnaDigit","x":22.963783,"y":36.487186,"photo":"Elafonisos_Vardia1","type":0,"zoom_level":14,"id":3717,"hlink_GR":"","hlink_EN":"","description":"","height":795,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a4\u03bf \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1","owner":"AnaDigit","x":22.950746536256,"y":36.49897171375,"photo":"DSC068881","type":1001,"zoom_level":17,"id":3718,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u039f\u03b9 \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b5\u03c2 \u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u03ba\u03b1\u03b9 \u03a3\u03af\u03bc\u03bf\u03c2","owner":"AnaDigit","x":22.978206,"y":36.466806,"photo":"sarakiniko_11","type":301,"zoom_level":13,"id":3719,"hlink_GR":"","hlink_EN":"","description":"","height":591,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a4\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a6\u03b9\u03b4\u03cc\u03c3\u03c0\u03b7\u03bb\u03bf","owner":"AnaDigit","x":22.927379,"y":36.479555,"photo":"Elafonisos_Fidospilo1","type":73,"zoom_level":15,"id":3720,"hlink_GR":"","hlink_EN":"","description":"","height":720,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0391\u03c0\u03bf\u03bb\u03b9\u03b8\u03ce\u03bc\u03b1\u03c4\u03b1 \u03c3\u03c4\u03bf \u03a6\u03b9\u03b4\u03cc\u03c3\u03c0\u03b7\u03bb\u03bf","owner":"AnaDigit","x":22.927385,"y":36.480206,"photo":"Elafonisos_apolithoma_11","type":73,"zoom_level":16,"id":3721,"hlink_GR":"","hlink_EN":"","description":"","height":924,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a4\u03bf \u03bd\u03b1\u03c5\u03ac\u03b3\u03b9\u03bf","owner":"AnaDigit","x":22.931551,"y":36.462431,"photo":"Elafonisos_navagio_11","type":9,"zoom_level":15,"id":3722,"hlink_GR":"","hlink_EN":"","description":"","height":928,"width":2000},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0391\u03c3\u03b2\u03b5\u03c3\u03c4\u03bf\u03ba\u03ac\u03bc\u03b9\u03bd\u03bf \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u03a0\u03b1\u03c4\u03ac\u03c0\u03b9\u03bf","owner":"AnaDigit","x":22.928075,"y":36.472411,"photo":"Elafonisos_asvestokamino_11","type":9,"zoom_level":16,"id":3723,"hlink_GR":"","hlink_EN":"","description":"","height":951,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0395\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03ac\u03c3\u03b9 \u0391\u03b3\u03af\u03bf\u03c5 \u03a7\u03b1\u03c1\u03b1\u03bb\u03ac\u03bc\u03c0\u03bf\u03c5\u03c2","owner":"AnaDigit","x":22.946873,"y":36.497596,"photo":"DSC069611","type":9,"zoom_level":16,"id":3724,"hlink_GR":"","hlink_EN":"","description":"","height":1522,"width":1200},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0395\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03ac\u03c3\u03b9 \u03c3\u03c4\u03bf\u03c5 \u039c\u03b1\u03c5\u03c1\u03bf\u03c5\u03b4\u03ae","owner":"AnaDigit","x":22.954873,"y":36.501828,"photo":"DSC068841","type":9,"zoom_level":17,"id":3725,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a4\u03c1\u03c9\u03b3\u03bb\u03bf\u03b4\u03c5\u03c4\u03b9\u03ba\u03ae \u03ba\u03b1\u03c4\u03bf\u03b9\u03ba\u03af\u03b1 \u03c3\u03c4\u03b1 \u039a\u03bf\u03c5\u03c1\u03bd\u03cc\u03c3\u03c0\u03b7\u03bb\u03b1","owner":"AnaDigit","x":22.96801996231,"y":36.478218234976,"photo":"DSC068921","type":9,"zoom_level":16,"id":3726,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u03a3\u03c0\u03b7\u03bb\u03b9\u03ac \u03c3\u03c4\u03b1 \u039a\u03bf\u03c5\u03c1\u03bd\u03cc\u03c3\u03c0\u03b7\u03bb\u03b1","owner":"AnaDigit","x":22.968067,"y":36.480068,"photo":"DSC068932","type":73,"zoom_level":15,"id":3727,"hlink_GR":"","hlink_EN":"","description":"","height":1050,"width":1400},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u0398\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u03a3\u03af\u03bc\u03bf \u03ba\u03b1\u03b9 \u03c4\u03bf \u03a3\u03b1\u03c1\u03b1\u03ba\u03af\u03bd\u03b9\u03ba\u03bf","owner":"AnaDigit","x":22.985112,"y":36.461791,"photo":"Elafonisos_simos1","type":301,"zoom_level":13,"id":3728,"hlink_GR":"","hlink_EN":"","description":"","height":541,"width":1600},{"name":"\u0395\u039b\u0391\u03a6\u039f\u039d\u0397\u03a3\u039f\u03a3
\u039f \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u0395\u03bb\u03b1\u03c6\u03bf\u03bd\u03ae\u03c3\u03bf\u03c5","owner":"AnaDigit","x":22.979694817454,"y":36.509992549302,"photo":"Elafonisos_11","type":9,"zoom_level":13,"id":3729,"hlink_GR":"","hlink_EN":"","description":"","height":1064,"width":1600}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathListDivId'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathListDivId').innerHTML="
O33 Άγιος Πέτρος-Μ. Μαλεβής-καταφύγιο Πάρνωνα
O33 Καταφύγιο Πάρνωνα-Πλατανάκι
O33 Πλατανάκι-Κοσμάς
O33 Κοσμάς-Κουνουπιά
O33 Κουνουπιά-Κρεμαστή
O33 Κρεμαστή-Λαμπόκαμπος
O33 Λαμπόκαμπος-Ρειχέα
O33 Ρειχέα-Λιμάνι Γέρακα
O33 Λιμάνι Γέρακα-Μονεμβασιά
O33 Μονεμβασιά-Λιρά
O33 Λιρά-Άγιοι Απόστολοι
O33 Άγιοι Απόστολοι-Νεάπολη
O33 Νεάπολη-Βελανίδια
O33/Δ10 Βελανίδια-Φάρος Μαλέα
";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["O33"],pc:["O33"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_O33.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); }