console.log('no normal webpage');/** * Created by sofos on 15/09/16. */ function GetXmlHttpObject() { if (window.XMLHttpRequest) { return new XMLHttpRequest();// code for IE7+, Firefox, Chrome, Opera, Safari } if (window.ActiveXObject) { return new ActiveXObject("Microsoft.XMLHTTP");// code for IE6, IE5 } return null; } var browser = (function(){ var self = {}; self.ie = (navigator.appName == 'Microsoft Internet Explorer') ; self.chrome = /chrome/i.test( navigator.userAgent ); self.ff = /Firefox/i.test(navigator.userAgent); self.getSize = function(){ } self.size = function(){ return [(self.ie)?document.body.clientWidth:window.innerWidth,(self.ie)?document.body.clientHeight:window.innerHeight]; } self.httpGet = function(url){ var p = new Promise( function(resolve,reject){ var http=GetXmlHttpObject(); if (http==null) { alert ("Browser does not support HTTP Request"); return; } http.onreadystatechange=function () { if (this.readyState==4) { var data = this.responseText; resolve(data); } }; http.open("GET",url,true); http.send(null); } ); return p; } return self; })(); if(typeof $ === "undefined" && !(typeof jQuery === "undefined")){ $=jQuery; console.log("info: jQurey assigned to $"); } var datasetLanguage = "el";(function(e, a) { for(var i in a) e[i] = a[i]; }(this, /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // identity function for calling harmony imports with the correct context /******/ __webpack_require__.i = function(value) { return value; }; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 4); /******/ }) /************************************************************************/ /******/ ([ /* 0 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var loader_1 = __webpack_require__(5); exports.gsMapInitStartFunctionList = []; exports.gsMapInitEndFunctionList = []; exports.gsMapClickNotFoundFunctionList = []; exports.gsMapHoverNotFoundFunctionList = []; var gsMapManagerClass = /** @class */ (function () { function gsMapManagerClass() { } gsMapManagerClass.prototype.create = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; gsMapManagerClass.prototype.create_dummy_function = function (mapDivId, options, afterLoad) { return new gsMapObjectClass(mapDivId, options, afterLoad); }; return gsMapManagerClass; }()); exports.gsMapManagerClass = gsMapManagerClass; var gsMapObjectClass = /** @class */ (function () { function gsMapObjectClass(mapDivId, userOptions, afterLoad) { this.mapDivId = mapDivId; this.userOptions = userOptions; this.afterLoad = afterLoad; this.dom = null; this.activeBaseLayer = null; this.map = null; this.state = { zoom: 0 }; this.hllayer = null; this.hlsource = null; this.onZoomLeveChangedCustomFunctions = []; this.gsLayers = {}; this.tooltip = {}; this.mapCustomEventsHandler = new loader_1.MapCustomEvents(); this.registerMapHoverNotFoundFunction = function (fn) { exports.gsMapHoverNotFoundFunctionList.push(fn); }; this.flytoextentR = function (params, self) { if (!self) { self = this; } ; var extent = [ Math.min(params.extent[0], params.extent[2]), Math.min(params.extent[1], params.extent[3]), Math.max(params.extent[0], params.extent[2]), Math.max(params.extent[1], params.extent[3]) ]; var ms = params.ms || 1000; var scalefactor = params.scalefactor || 1.0; var resolve = params.resolve || function () { }; extent = self.scaleExtent(extent, scalefactor); var view = self.map.getView(); var start = +new Date(); console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // duration: ms, // source: /** @type {ol.Coordinate} */ (view.getCenter()), // start: start // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: 1.0 * view.getResolution(), // start: start // }); // self.map.beforeRender(pan, zoom); // console.log("dm-001: disabled animate"); // console.log(extent); // console.log(self.map.getView()); try { self.map.getView().fit(extent, { duration: 1000 }); //, self.map.getSize()); } catch (err) { console.log(err); } setTimeout(function () { resolve(self); }, ms); return self; }; this.flytoR = function (params, self) { var z = params.z || self.state.zoom; var x = params.x; var y = params.y; var ms = params.ms || 1000; var resolve = params.resolve || function () { }; console.log("dm-001: disabled animate"); // var pan = ol.animation.pan({ // source: self.map.getView().getCenter(), // duration: ms // }); // var zoom = ol.animation.zoom({ // duration: ms, // resolution: self.map.getView().getResolution() // }); // self.map.beforeRender(pan, zoom); // self.map.setView(new ol.View({ // center: self.ll2xy([x, y]), // zoom: z // }));//.setCenter(ll2xy([x,y])); self.map.getView().animate({ zoom: z, center: self.ll2xy([x, y]) }); self.state.zoom = z; setTimeout(function () { resolve(self); }, ms); return self; }; this.highlightPointR = function (params, self) { self.hlsource.clear(); var x = params.x; var y = params.y; var ms = params.ms || 1000; // var color = params.c || 1000; var resolve = params.resolve || function () { }; var f = self.feature_from_coor(x, y); var s = self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18, ''); f.setStyle(s); self.hlsource.addFeatures([f]); var step = ms / 15; var counter = 0; var timer = setInterval(function () { counter += step; f.setStyle(self.pointStyle('#ff0000', [0, 0, 0, 0.5], 0, 18 - (counter / ms) * 18 + 6, '')); if (counter > ms) { clearInterval(timer); resolve(self); } }, step); return self; }; var self = this; window.addEventListener('load', function () { self.init(); if (self.afterLoad != undefined) self.afterLoad(self); }, false); } gsMapObjectClass.prototype.init = function () { var self = this; for (var i in exports.gsMapInitStartFunctionList) exports.gsMapInitStartFunctionList[i](self); this.dom = document.getElementById(this.mapDivId); console.log(self.userOptions); this.mapCustomEventsHandler.registerMapCustomEvents(self, self.userOptions.events); var mapOpacity = self.userOptions.opacity || 1.0; if (self.userOptions.url == 'bing') { var styles = [ 'Road', 'Aerial', 'AerialWithLabels', 'collinsBart', 'ordnanceSurvey' ]; this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.BingMaps({ key: 'AnOH4hX_YaNwHAdisvgGuUAGcEXxFYE2TwJsswR-vZTSEaTHffULolihVlFpIhjv', imagerySet: styles[1] }) }); } else { this.activeBaseLayer = new ol.layer.Tile({ opacity: mapOpacity, source: new ol.source.XYZ({ url: (self.userOptions.url || 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15') // 'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png') , crossOrigin: null }) }); } this.state.zoom = (self.userOptions.zoom || 4); var myControls = ol.control.defaults({ attribution: false, zoom: (self.userOptions.showZoomTool == 1) }); //if(self.userOptions.showZoomTool == 1) myControls.extend([new ol.control.ZoomSlider()]); this.map = new ol.Map({ controls: myControls, layers: [ this.activeBaseLayer ], target: this.mapDivId, view: new ol.View({ center: self.ll2xy([(self.userOptions.lng || 15), (self.userOptions.lat || 44)]), zoom: this.state.zoom }) }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': self.state.zoom = this.getZoom(); break; case 'center': break; } }); this.hlsource = new ol.source.Vector({ wrapX: false, noWrap: true }); this.hllayer = new ol.layer.Vector({ source: this.hlsource, visible: true }); this.map.addLayer(this.hllayer); this.map.on('pointermove', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').hover) feature.get('msp').hover(self, feature, layer, evt.pixel); } }); if (!found) { for (var i in exports.gsMapHoverNotFoundFunctionList) exports.gsMapHoverNotFoundFunctionList[i](self); } }); this.map.on('click', function (evt) { var found = false; self.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) { if (!layer) { return; } if (feature.get('msp')) { found = true; if (feature.get('msp').click.length > 0) { feature.get('msp').click.forEach(function (f) { f(self, feature, layer, evt.pixel); }); } /* else { if (feature.get('msp').click.length!=0) feature.get('msp').click(self, feature, layer, evt.pixel); }*/ } }); if (!found) { for (var i in exports.gsMapClickNotFoundFunctionList) exports.gsMapClickNotFoundFunctionList[i](self); } }); this.map.getView().on('propertychange', function (e) { switch (e.key) { case 'resolution': for (var i in self.onZoomLeveChangedCustomFunctions) self.onZoomLeveChangedCustomFunctions[i](self, self.state.zoom); break; } }); for (var i in exports.gsMapInitEndFunctionList) exports.gsMapInitEndFunctionList[i](self); var adventureCollectionsKeys = (self.userOptions.ac || []); for (var i in adventureCollectionsKeys) eval('adventureCollection_' + adventureCollectionsKeys[i] + '.registerMap(this);'); var poiCollectionsKeys = (self.userOptions.pc || []); for (var i in poiCollectionsKeys) eval('poiCollection_' + poiCollectionsKeys[i] + '.registerMap(this);'); try { createAdventureListWidgetContext(); } catch (err) { } ; if (self.userOptions.showLogo == 1) { var d = document.createElement('div'); d.style.position = 'absolute'; d.style.top = '10px'; d.style.right = '10px'; d.innerHTML = ''; this.dom.appendChild(d); } }; gsMapObjectClass.prototype.registerOnZoomChangedFunction = function (fn) { this.onZoomLeveChangedCustomFunctions.push(fn); }; gsMapObjectClass.prototype.waitR = function (params, self) { var ms = params.ms; var resolve = params.resolve || function () { }; setTimeout(function () { resolve(self); }, ms); return self; }; gsMapObjectClass.prototype.executeSeq = function (fc) { this.executeSeqItem(fc, 0, this); }; gsMapObjectClass.prototype.executeSeqItem = function (fc, index, self) { var _this = this; /*let p = */ new Promise(function (resolve, reject) { fc[index][1].resolve = resolve; fc[index][0](fc[index][1], _this); }).then(function (self) { if (index < (fc.length - 1)) { self.executeSeqItem(fc, index + 1, self); } }); }; gsMapObjectClass.prototype.getZoom = function () { return this.map.getView().getZoom(); }; gsMapObjectClass.prototype.scaleExtent = function (extent, scaleFactor) { var m = [(extent[0] + extent[2]) / 2, (extent[1] + extent[3]) / 2]; return [ m[0] - (m[0] - extent[0]) * scaleFactor, m[1] - (m[1] - extent[1]) * scaleFactor, m[0] + (m[0] - extent[0]) * scaleFactor, m[1] + (m[1] - extent[1]) * scaleFactor ]; }; return gsMapObjectClass; }()); exports.gsMapObjectClass = gsMapObjectClass; /* new ol.layer.Tile({ source: new ol.source.XYZ({ url: 'https://anadigit.fr/wms/wmsolv3xyz2.php?z={z}&x={x}&y={y}&t=15', crossOrigin: 'null', projection: projection, tileGrid: new ol.tilegrid.TileGrid({ origin: ol.extent.getTopLeft(projectionExtent), resolutions: resolutions, tileSize: 256 }) }) });*/ /* this.activeBaseLayer =new ol.layer.Tile({ source: new ol.source.XYZ({ // /url: 'http://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/${z}/${y}/${x}' // url: 'https://a.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/dark_nolabels/{z}/{x}/{y}.png' // url:'http://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' // url:'http://server.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}' url:'http://a.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png' //url:'http://a.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png' //["https://a.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://b.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png", //"https://c.tile.thunderforest.com/outdoors/${z}/${x}/${y}.png"] , crossOrigin: null }) })*/ /***/ }), /* 1 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isTouchDevice() { return 'ontouchstart' in document.documentElement; } function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { var self = map; map.gsLayers = {}; map.gsLayers.item = []; map.gsLayers.addGeoJsonPromise = function (name, url, style, params) { return Promise.resolve().then((function () { return this.addGeoJson(name, url, style, params); }).bind(this, true)); }; map.gsLayers.removeLayer = function (name) { var layer = self.gsLayers.get(name); if (layer) { layer.remove(); } }; map.gsLayers.addGeoJson = function (name, url, style, params) { var item = { active: true, currentFilterMatchParams: undefined }; item.name = name; item.visible = function (value) { if (value) { item.show(); } else { item.hide(); } }; item.remove = function () { var index = map.gsLayers.item.findIndex(function (i) { return i.name === item.name; }); if (index !== -1) { map.map.removeLayer(item.layer); map.gsLayers.item.splice(index, 1); item = undefined; return true; } return false; }; item.hide = function () { if (item.active) { map.map.removeLayer(item.layer); } item.active = false; }; item.show = function () { if (!item.active) { map.map.addLayer(item.layer); } item.active = true; }; item.getExtent = function () { return item.source.getExtent(); }; if (Object.keys(style).length > 0) { item.styleParams = style.styleParams || {}; } else { item.styleParams = {}; style = undefined; } item.source = new ol.source.Vector({ url: url, format: new ol.format.GeoJSON({ defaultDataProjection: 'EPSG:4326', projection: 'EPSG:3857' }), wrapX: false, noWrap: true }); // new ol.source.Vector({wrapX: false, noWrap: true}); item.layer = new ol.layer.Vector({ source: item.source, visible: true, style: style }); if (params) { if (params.minlevel) { map.registerOnZoomChangedFunction(function (a) { if (params.minlevel > map.state.zoom) { item.hide(); } else { item.show(); } }); } var clickFunctionList = []; if (params.events) { if (params.events.click) { var eventParams = this.eventParams; clickFunctionList.push(function (s, f, l) { var eventParams = f.get('msp').eventParams; for (var i in eventParams.click) { var clickEvent = eventParams.click[i]; if (clickEvent.type === 'modalImage') { var div = document.getElementById('myModal'); if (!div) { console.error('div with id myModal does not exist'); } var width = ''; if (clickEvent.style) { if (clickEvent.style.width) { width = 'width:' + clickEvent.style.width + 'px'; } } div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } if (clickEvent.type === 'function') { clickEvent.function(map, f); } if (clickEvent.type === 'hide') { item.hide(); } } }); } } var hoverFunction = function (s, l, f, p) { }; if (params.tooltip) { if (!isTouchDevice()) { hoverFunction = function (s, f, l, p) { s.tooltip.setContent(this.tooltip_prefix + f.get(this.tooltip_key) + this.tooltip_sufix, this.tooltipParams); s.tooltip.setPosition(p); }; } else { clickFunctionList.push(function (s, f, l, p) { var self = f.get('msp'); s.tooltip.setContent(self.tooltip_prefix + f.get(self.tooltip_key) + self.tooltip_sufix, self.tooltipParams); s.tooltip.setPosition(p); }); } } if (params.tooltip || params.events) { item.source.on('addfeature', function (e) { e.feature.set('msp', { tooltipParams: params.tooltip, eventParams: params.events, tooltip_key: ((params.tooltip) ? params.tooltip.key : undefined), tooltip_prefix: ((params.tooltip) ? params.tooltip.prefix || '' : ''), tooltip_sufix: ((params.tooltip) ? params.tooltip.sufix || '' : ''), click: clickFunctionList, hover: hoverFunction }); }); } if (params.zIndex) { item.layer.setZIndex(params.zIndex); } } map.map.addLayer(item.layer); // console.log(map); map.gsLayers.item.push(item); return item; }; map.gsLayers.filter = function (layerName, match) { var found = false; for (var i in map.gsLayers.item) { if (map.gsLayers.item[i].name == layerName) { var item = map.gsLayers.item[i]; if (!(item.currentFilterMatchParams === match)) { found = true; item.currentFilterMatchParams = match; if (item.styleParams.type == 'icon') { item.layer.setStyle(map.pointStyleIconFiltered(item.styleParams, match)); } if (item.styleParams.type == 'polygon') { item.layer.setStyle(map.polygonStyleFiltered(item.styleParams, match)); } if (item.styleParams.type == 'linestring') { item.layer.setStyle(map.linestringStyleFiltered(item.styleParams, match)); } } } } if (found) { console.log('style is function type. should be applied on features to avoid restyling on each render.'); } }; map.gsLayers.get = function (layerName) { return map.gsLayers.item.filter(function (e) { return e.name === layerName; })[0]; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 2 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { map.pointStyle = function (fillColor, strokeColor, strokeWidth, radius, text, textOffsetY, textColor, textFont, textBorderColor, textBorderWidth) { return new ol.style.Style({ image: new ol.style.Circle({ radius: radius, fill: new ol.style.Fill({ color: fillColor }), stroke: new ol.style.Stroke({ color: strokeColor, width: strokeWidth }) }), text: new ol.style.Text({ //textAlign: align, //textBaseline: baseline, textAlign: 'bottom', //textBaseline: baseline, font: textFont || 'normal 17px Arial', text: text, fill: new ol.style.Fill({ color: textColor }), stroke: new ol.style.Stroke({ color: textBorderColor || 'white', width: textBorderWidth || 1.5 }), offsetX: 10, offsetY: textOffsetY, rotation: 0 }) }); }; map.gsStyle = function (params) { var st = {}; var type = params.type; var dynamic = (params.dynamic) ? true : false; if (dynamic) { if (type == 'icon') { st = map.pointStyleIconDynamic(params); } if (type == 'point') { st = map.pointStylePointDynamic(params); } } else { if (type == 'icon') { st = map.pointStyleIcon(params); } if (type == 'point') { st = map.pointStylePoint(params); } if (type == 'polygon') { st = map.polygonStyle(params); } if (type == 'linestring') { st = map.linestringStyle(params); } if (type == 'multilinestring') { st = map.multilinestringStyle(params); } } st.styleParams = params; return st; }; map.pointStyleIcon = function (params) { //console.log(params); var iconUrl = params.iconUrl; var scale = params.scale || 0.25; var st = new ol.style.Style({ image: new ol.style.Icon({ //anchor: [0.5, 0.5], // size: [52, 52], //offset: [52, 0], //opacity: 1, scale: scale, src: iconUrl }) }); //st.styleParams = params; return st; }; /****************************** */ map.pointStylePoint = function (params) { if (params.text && typeof params.text === 'object' && params.text.key) { var key_1 = params.text.key; var textFont_1 = 'normal 13px Arial'; if (params.text.size) { textFont_1 = "normal " + params.text.size + "px Arial"; } var textColor_1 = params.text.color || params.color || 'black'; var textBorderColor_1 = params.text.border.color; var textBorderWidth_1 = params.text.border.width; return function (feature) { var text = feature.getProperties()[key_1]; return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, text || '', 0, textColor_1, textFont_1, textBorderColor_1, textBorderWidth_1); }; } else { return map.pointStyle(params.fill || 'white', params.color || 'black', params.width || 1, params.radius || 1, params.text || '', 0, params.color || 'black', 'normal 13px Arial'); } }; map.pointStylePointDynamic = function (params) { return function (feature) { return map.pointStylePointDynamicObject(params, feature); }; }; map.pointStylePointDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStylePoint(dynamic_params); } return map.pointStylePoint(params); }; map.polygonStyle = function (params) { var fill = params.fill || 'white'; var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }), fill: new ol.style.Fill({ color: fill }) }); return st; }; map.linestringStyle = function (params) { var color = params.color || 'black'; var width = params.width || 1; var st = new ol.style.Style({ stroke: new ol.style.Stroke({ color: color, width: width }) }); return st; }; map.multilinestringStyle = function (params) { var compositeStyleArray = null; ; if (params.compositeStyleArray) { if (typeof params.compositeStyleArray === 'function') { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } else { compositeStyleArray = params.compositeStyleArray || [{ color: 'black', width: 4 }, { color: 'red', width: 2 }]; } } else { } var color; if (params.color instanceof String) { color = params.color || 'black'; } else { color = params.color || 'black'; } var width; if (params.width instanceof Number) { width = params.width || 1; } else { width = params.width || 1; } var paramIndex = params.paramIndex; return function (feature) { var myStyles = null; feature.getGeometry().getLineStrings().forEach(function (ls) { if (compositeStyleArray) { var myCompositeStyleArray = void 0; if (typeof compositeStyleArray === 'function') { myCompositeStyleArray = compositeStyleArray(ls.getCoordinates()[0][paramIndex]); } else { myCompositeStyleArray = compositeStyleArray; } if (myStyles === null) { myStyles = []; myCompositeStyleArray.forEach(function (s) { myStyles.push([]); }); } ; myCompositeStyleArray.forEach(function (s, i) { if (!myStyles[i]) { myStyles[i] = []; } ; myStyles[i].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: s.color, width: s.width }) })); }); } else { myStyles = [[]]; var mycolor = void 0; if (typeof color == 'string') { mycolor = color; } else { mycolor = color(ls.getCoordinates()[0][paramIndex]); } var mywidth = void 0; if (typeof width == 'number') { mywidth = width; } else { mywidth = width(ls.getCoordinates()[0][paramIndex]); } myStyles[0].push(new ol.style.Style({ geometry: ls, stroke: new ol.style.Stroke({ color: mycolor, width: mywidth }) })); } }); var outStyles = []; myStyles.forEach(function (s) { outStyles.push.apply(outStyles, s); }); feature.setStyle(outStyles); }; }; map.pointStyleIconDynamic = function (params) { return function (feature) { return map.pointStyleIconDynamicObject(params, feature); }; }; map.pointStyleIconDynamicObject = function (params, feature) { var key = params.dynamic.key; var p = feature.getProperties(); var dynamic_params = params.dynamic[p[key]]; if (dynamic_params) { return map.pointStyleIcon(dynamic_params); } return map.pointStyleIcon(params); }; map.pointStyleIconFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (match[i].constructor === Array) { if (match[i].indexOf(p[i]) === -1) show = false; } else { if (p[i] != match[i]) { show = false; } } } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; } st = map.pointStyleIcon(params); st.styleParams = params; return st; }; }; map.polygonStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; /* var dynamic = (params.dynamic) ? true : false; if (dynamic) { st = map.pointStyleIconDynamicObject(params, feature); st.styleParams = params; return st; }*/ st = map.polygonStyle(params); st.styleParams = params; return st; }; }; map.linestringStyleFiltered = function (params, match) { if (match == null) { return map.gsStyle(params); } ; return function (feature) { // console.log('pointStyleIconFiltered'); var st = {}; var p = feature.getProperties(); var show = true; for (var i in match) { if (p[i] != match[i]) { show = false; } ; } if (show != true) { st = new ol.style.Style(null); st.styleParams = params; return st; } ; st = map.linestringStyle(params); st.styleParams = params; return st; }; }; map.feature_from_coor = function (x, y, msp) { msp = msp || null; return new ol.Feature({ geometry: new ol.geom.Point(ol.proj.transform([x, y], 'EPSG:4326', 'EPSG:3857')) //,color:value.c , msp: msp }); }; map.ll2xy = function (data) { if (data.length == 2) { return ol.proj.transform(data, 'EPSG:4326', 'EPSG:3857'); } else if (data.length == 4) { var p1 = ol.proj.transform([data[0], data[1]], 'EPSG:4326', 'EPSG:3857'); var p2 = ol.proj.transform([data[2], data[3]], 'EPSG:4326', 'EPSG:3857'); return [p1[0], p1[1], p2[0], p2[1]]; } else { alert('unhandled'); } }; map.llArray2xy = function (data) { var out = []; for (var i in data) { out.push(this.ll2xy(data[i])); } return out; }; }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); }); } exports.load = load; /***/ }), /* 3 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function load(gsMapClickNotFoundFunctionList, gsMapHoverNotFoundFunctionList, gsMapInitEndFunctionList, gsMapInitStartFunctionList) { gsMapInitStartFunctionList.push(function (map) { }); gsMapInitEndFunctionList.push(function (map) { //console.log(map); var self = map; map.tooltip = {}; map.tooltip.dom = map.dom.appendChild(document.createElement('div')); map.tooltip.dom.style['position'] = 'absolute'; map.tooltip.dom.style['padding'] = '2px'; map.tooltip.dom.style['padding-left'] = '5px'; map.tooltip.dom.style['padding-right'] = '5px'; map.tooltip.dom.style['background-color'] = 'rgba(0,0,0,0.7)'; map.tooltip.dom.style['border-radius'] = '3px'; map.tooltip.dom.style['overflow'] = 'hidden'; map.tooltip.dom.style['color'] = 'rgba(255,255,255,1)'; map.tooltip.hide = function () { map.tooltip.dom.hidden = true; }; map.tooltip.setPosition = function (pos) { map.tooltip.dom.hidden = false; map.tooltip.dom.style.left = pos[0] + 20 + 'px'; map.tooltip.dom.style.top = pos[1] - 10 + 'px'; }; map.tooltip.setContent = function (content, params) { if (params.background) self.tooltip.dom.style['background-color'] = params.background; if (params.color) self.tooltip.dom.style['color'] = params.color; self.tooltip.dom.innerHTML = content; }; map.registerMapHoverNotFoundFunction(map.tooltip.hide); //map.tooltip.dom.innerHTML = '
'; }); } exports.load = load; /***/ }), /* 4 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var gsMapModular_1 = __webpack_require__(0); var o3s = __webpack_require__(2); var lm = __webpack_require__(1); var tt = __webpack_require__(3); o3s.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); lm.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); tt.load(gsMapModular_1.gsMapClickNotFoundFunctionList, gsMapModular_1.gsMapHoverNotFoundFunctionList, gsMapModular_1.gsMapInitEndFunctionList, gsMapModular_1.gsMapInitStartFunctionList); exports.gsMapManager = new gsMapModular_1.gsMapManagerClass(); /***/ }), /* 5 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var MapCustomEvents = /** @class */ (function () { function MapCustomEvents() { } MapCustomEvents.prototype.registerMapCustomEvents = function (map, params) { if (params) { if (params.zoom) { params.zoom.forEach(function (e) { if (e.type === 'function') { map.registerOnZoomChangedFunction(e.function); } }); } } }; return MapCustomEvents; }()); exports.MapCustomEvents = MapCustomEvents; /***/ }) /******/ ]))); function getAdventureCollection(key,data,meta){ this.key = key; this.data = data; this.meta = meta; this.gsMap = null; this.pointFeatures = [] ; this.lineFeatures = [] ; var self = this; this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.createPointFeatures(); this.createLineFeatures(); } this.createPointFeatures = function(){ this.pointFeatures=[]; for(var i in this.data){ var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(this.data[i])); var s = this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(s); this.pointFeatures.push(f); } this.source.addFeatures(this.pointFeatures); } this.createLineFeatures = function(){ this.lineFeatures=[]; var mycolor = 'rgba(0,97,47,1)'; var mywidth = 1; if(this.meta['style']) if(this.meta['style']['default']) mycolor = this.meta['style']['default']['color']; if(this.meta['style']) if(this.meta['style']['default']) mywidth = this.meta['style']['default']['width']; for(var i in this.data){ var ccolor = mycolor, cwidth=mywidth; if(this.meta['style']) if(this.meta['style'][this.data[i].path]) if(this.meta['style'][this.data[i].path]['useStyle']) { ccolor = this.meta['style'][this.data[i].path]['color']; cwidth = this.meta['style'][this.data[i].path]['width']; } var f = new ol.Feature({ 'geometry': new ol.geom.LineString(this.gsMap.llArray2xy(this.data[i].coor)) }); f.setStyle( new ol.style.Style({ stroke: new ol.style.Stroke({color: (ccolor ), width: cwidth}) }) ); this.lineFeatures.push(f); } this.source.addFeatures(this.lineFeatures); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ var myurl = this.meta.advPath + item.path; if(this.meta['style']) if(this.meta['style'][item.path]) if(this.meta['style'][item.path]['url']) myurl = this.meta['style'][item.path]['url']; var actiontype = "openulr"; if(this.meta['style']) if(this.meta['style']['default']) if(this.meta['style']['default']['action']) if(this.meta['style']['default']['action']['type']) actiontype = this.meta['style']['default']['action']['type']; return { path:item.path, click:[function(s,f,l){ var self = f.get('msp'); browser.httpGet('https://anadigit.fr/gsMap/modules/adventure/getView.php?i=' + self.path + '&l=' + datasetLanguage + '&u=' +encodeURIComponent(myurl)).then(function(data){ var html = data.split("",""); var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { eval(js); $('#myModal').modal('show'); }, 200); }); }]}; } this.adventureIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.4 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } } var adventureCollection_E4_Crete = new getAdventureCollection("E4_Crete",[{"id":15978,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u039a\u03ac\u03c4\u03c9 \u0396\u03ac\u03ba\u03c1\u03bf\u03c2-\u0396\u03ac\u03ba\u03c1\u03bf\u03c2","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03c3\u03c4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c4\u03c9\u03bd \u039d\u03b5\u03ba\u03c1\u03ce\u03bd","path":"Crete\/Crete_E4_KZakros_Zakros","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":6067,"name_EN":"Crete: E4 Kato Zakros-Zakros","description_EN":"E4 section via the Deads gorge","ascent_time":110,"descent_time":115,"marker":"E4","level":11,"ascent":117,"descent":332,"maxelev":222,"minelev":4,"link_logo":"","link_ref":"http:\/\/www.anavasi.gr\/product.php?lang=gr$id=78","pdf_link":"","bbox":"LINESTRING(26.2192 35.09652,26.26296 35.11273)","views":32,"millestones":"0,26.2192017,35.1127334#1,26.2270859,35.1081895#2,26.2346121,35.1048091#3,26.2383422,35.1021824#4,26.2471662,35.1005455#5,26.2554656,35.1001425#6.1,26.2630037,35.0980044","x":26.2396355,"y":35.1029797,"coor":[[26.2192017,35.1127334],[26.2193638,35.1125389],[26.2197161,35.1117752],[26.2200098,35.1116842],[26.2201839,35.1116314],[26.2206247,35.1117045],[26.2209401,35.1120052],[26.2215183,35.1122921],[26.2219676,35.1118691],[26.2228493,35.1114608],[26.2238757,35.1107028],[26.2249034,35.1101701],[26.2252683,35.1097194],[26.2268336,35.108584],[26.2271284,35.1081279],[26.2273325,35.1073894],[26.2276611,35.1069687],[26.228293,35.1064071],[26.2285764,35.105985],[26.2291158,35.1058286],[26.2294694,35.1059212],[26.2296996,35.105917],[26.2298297,35.1058605],[26.230171,35.1055027],[26.2310664,35.1053509],[26.2316431,35.1051781],[26.2326062,35.1046915],[26.2327299,35.1044008],[26.2326836,35.104289],[26.2329293,35.1044467],[26.2333703,35.1045287],[26.2333947,35.1046184],[26.2332785,35.1047828],[26.2334613,35.1050499],[26.2336173,35.1051372],[26.233848,35.105151],[26.234175,35.1050728],[26.234639,35.1047938],[26.2350671,35.1048039],[26.2352141,35.1049635],[26.2354431,35.1057165],[26.2359041,35.1057261],[26.236304,35.105908],[26.2366494,35.1057033],[26.2366853,35.1058108],[26.2372227,35.1062066],[26.2376844,35.1062431],[26.2378346,35.1057175],[26.2381537,35.105351],[26.2382308,35.1049619],[26.238347,35.1047975],[26.2384449,35.1047686],[26.2386228,35.1048555],[26.2386657,35.1048187],[26.2387323,35.1044478],[26.239018,35.1040639],[26.239437,35.1037406],[26.2395831,35.1034675],[26.2396355,35.1029797],[26.2393864,35.1026958],[26.2390692,35.1027288],[26.2386711,35.1026099],[26.2384822,35.1025232],[26.2384018,35.1023895],[26.2382071,35.1016899],[26.2383127,35.1011381],[26.238553,35.1007009],[26.2387774,35.1004804],[26.2397654,35.1001106],[26.2406953,35.0999424],[26.2411413,35.0998079],[26.2415923,35.0998537],[26.2423104,35.1000387],[26.2432762,35.1000569],[26.2442392,35.099976],[26.2448748,35.1001017],[26.2457298,35.1004825],[26.2469946,35.1006033],[26.2474402,35.1004508],[26.2485192,35.0997997],[26.2491716,35.0995893],[26.2498521,35.0996037],[26.2500736,35.0996807],[26.2508245,35.1002618],[26.2511535,35.101058],[26.2521616,35.1018145],[26.252855,35.1019008],[26.2533367,35.1018648],[26.2537167,35.1017225],[26.25393,35.1015022],[26.254234,35.1013884],[26.2548839,35.1006911],[26.2551007,35.100597],[26.2554229,35.1003476],[26.2555393,35.0997955],[26.2558152,35.0990601],[26.2565581,35.0981538],[26.2569137,35.0979219],[26.2571045,35.0976839],[26.2573861,35.0975525],[26.2575137,35.0974058],[26.2577315,35.096951],[26.2577771,35.0966166],[26.2578153,35.0967083],[26.2580487,35.0968212],[26.2585405,35.0968526],[26.2596218,35.0966882],[26.2597439,35.09674],[26.2599975,35.097186],[26.2601181,35.0971838],[26.260452,35.0969612],[26.260595,35.0969765],[26.261118,35.0972462],[26.2619597,35.0979337],[26.2627688,35.0979637],[26.2630037,35.0980044]]},{"id":15980,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u039b\u03b1\u03c3\u03af\u03b8\u03b9-\u039a\u03b1\u03c3\u03c4\u03b1\u03bc\u03bf\u03bd\u03af\u03c4\u03c3\u03b1","description_GR":"\u039a\u03b1\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u039b\u03b1\u03c3\u03b9\u03b8\u03af\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u039a\u03b1\u03c3\u03c4\u03b1\u03bc\u03bf\u03bd\u03af\u03c4\u03c3\u03b1","path":"Crete\/Crete_E4_Lasithi_Kastamon","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":2173,"name_EN":"Crete: E4 Lasithi-Kastamonitsa","description_EN":"Walking down from Lasithi to Kastamonitsa","ascent_time":180,"descent_time":185,"marker":"E4","level":11,"ascent":255,"descent":531,"maxelev":958,"minelev":486,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.3805 35.1932,25.43274 35.20698)","views":35,"millestones":"0,25.4327417,35.1934949#1,25.4230367,35.1971856#2,25.4159594,35.2001699#3,25.4138498,35.2034900#4,25.4112883,35.2048931#5,25.4092029,35.2062574#6,25.3999890,35.2031861#7,25.3910621,35.1997002#8,25.3822737,35.1953767#2.2,25.3802789,35.1938067","x":25.4119942,"y":35.2055679,"coor":[[25.4327417,35.1934949],[25.4326231,35.1936225],[25.4291569,35.194511],[25.4283488,35.1954041],[25.4281208,35.1955601],[25.4275862,35.1957647],[25.4270489,35.1958162],[25.4247799,35.1967084],[25.4246039,35.1966925],[25.4236322,35.1970285],[25.4215874,35.1975574],[25.41937,35.1976375],[25.4191956,35.1977117],[25.4179402,35.1987903],[25.4175429,35.1986868],[25.4170622,35.1982055],[25.416719,35.1980473],[25.4159164,35.1980025],[25.4157981,35.1981482],[25.4158782,35.1989677],[25.4157781,35.1995279],[25.4160018,35.1997597],[25.4161064,35.2000921],[25.4158996,35.2002027],[25.4159809,35.2004542],[25.4159065,35.2005993],[25.4159635,35.2007159],[25.41688,35.2009937],[25.4171368,35.2012341],[25.4174754,35.2017531],[25.4174217,35.2018258],[25.4166341,35.2013842],[25.416526,35.2014847],[25.4165846,35.2016914],[25.417171,35.201937],[25.4169851,35.2019842],[25.4164015,35.2019009],[25.4155891,35.2019284],[25.4151201,35.2021232],[25.4150137,35.2023228],[25.4144473,35.2025999],[25.4142863,35.2028182],[25.4143424,35.2028807],[25.4148926,35.2029374],[25.4148938,35.2030095],[25.4143699,35.2032049],[25.4135033,35.2032691],[25.4134821,35.2033145],[25.4138809,35.2035082],[25.4138599,35.2035625],[25.4132687,35.2036776],[25.4138423,35.2038152],[25.4141809,35.203703],[25.414741,35.2036965],[25.4155797,35.2039211],[25.4156138,35.2039838],[25.4149104,35.203965],[25.413903,35.2041481],[25.4133783,35.2042985],[25.4127912,35.2046479],[25.4125495,35.2046507],[25.4119534,35.2044774],[25.4114981,35.2041942],[25.4114215,35.2042131],[25.4124491,35.2051929],[25.4123618,35.20523],[25.4111453,35.2047573],[25.4119942,35.2055679],[25.4122383,35.2057093],[25.4118078,35.2055881],[25.4110643,35.2051549],[25.4106443,35.2050066],[25.4105455,35.2050077],[25.4105579,35.2050887],[25.4109701,35.2054265],[25.4110624,35.2056779],[25.4105195,35.2054137],[25.4101006,35.2053285],[25.4108033,35.2059424],[25.4100851,35.2056983],[25.4099316,35.2057181],[25.4103564,35.2061459],[25.410102,35.2060407],[25.4106379,35.2065394],[25.4106065,35.2066299],[25.4101189,35.2063831],[25.4091693,35.2061057],[25.4092049,35.2062585],[25.4089164,35.2060906],[25.4075053,35.2058004],[25.4069549,35.2057347],[25.4063843,35.2057684],[25.4057446,35.2056225],[25.4038127,35.2044278],[25.4029422,35.2042756],[25.4022047,35.2035448],[25.4021454,35.203293],[25.4021633,35.2030584],[25.4020625,35.2029424],[25.4014501,35.2031027],[25.400526,35.2030232],[25.4000674,35.2031818],[25.3988491,35.203241],[25.3984251,35.2034983],[25.3978994,35.2035946],[25.3973027,35.2033851],[25.3965,35.2027001],[25.395526,35.2022695],[25.3949785,35.2017258],[25.3944032,35.201489],[25.3940106,35.2016558],[25.3933667,35.2012575],[25.3927257,35.2010305],[25.3919404,35.2000658],[25.3915961,35.1998443],[25.3889363,35.1991085],[25.3882142,35.1986299],[25.3874739,35.1983769],[25.3873091,35.1983698],[25.3867746,35.1985923],[25.3861906,35.1984818],[25.3859238,35.1982955],[25.385475,35.1977416],[25.3851285,35.1973849],[25.3838542,35.1967323],[25.3836024,35.1961311],[25.3833586,35.1960076],[25.38326,35.1960178],[25.3831035,35.1958573],[25.3819608,35.1951851],[25.3814586,35.194722],[25.3809812,35.1944209],[25.3804811,35.1940749],[25.3802789,35.1938067]]},{"id":15985,"author":"AnaDigit","name_GR":"\u0394\u03af\u03ba\u03c4\u03b7: E4 \u03a3\u03b5\u03bb\u03ac\u03ba\u03b1\u03bd\u03bf-\u039b\u03b1\u03c3\u03af\u03b8\u03b9","description_GR":"\u03954 \u03b4\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03a3\u03b5\u03bb\u03ac\u03ba\u03b1\u03bd\u03bf-\u0391\u03b2\u03c1\u03b1\u03ba\u03cc\u03bd\u03c4\u03b5\u03c2","path":"Crete\/Crete_E4_Selakano_Lasithi","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":16381,"name_EN":"Dikti: E4 Selakano-Lasithi","description_EN":"E4 Selakano-Lasithi plateau traverse","ascent_time":615,"descent_time":580,"marker":"E4","level":11,"ascent":1079,"descent":1099,"maxelev":1838,"minelev":860,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.47782 35.09234,25.54544 35.16133)","views":67,"millestones":"0,25.5454447,35.0923368#1,25.5390701,35.0958424#2,25.5298538,35.0935028#3,25.5221126,35.0966135#4,25.5154731,35.1011847#5,25.5062132,35.1032355#6,25.4967205,35.1056569#7,25.4867302,35.1056402#8,25.4781757,35.1079394#9,25.4780480,35.1160604#10,25.4848017,35.1216347#11,25.4844964,35.1293849#12,25.4823789,35.1378227#13,25.4815063,35.1460867#14,25.4860268,35.1532910#15,25.4854039,35.1576585#16.4,25.4794233,35.1605904","x":25.4782082,"y":35.1072429,"coor":[[25.5454447,35.0923368],[25.5452132,35.0924615],[25.5446234,35.0925953],[25.5440187,35.0925218],[25.5437959,35.0929214],[25.5426432,35.093459],[25.5424963,35.0938125],[25.5425923,35.094253],[25.542912,35.0949162],[25.5428931,35.0950787],[25.5426007,35.0952808],[25.5417925,35.0954714],[25.541439,35.0953406],[25.5401719,35.0956272],[25.5400683,35.0959531],[25.5402408,35.0963747],[25.5401114,35.0964935],[25.5396055,35.0964278],[25.5394612,35.0963395],[25.5393448,35.0959803],[25.5392334,35.0958916],[25.5388583,35.0957791],[25.5386678,35.0955652],[25.5382802,35.0953717],[25.5378594,35.0950863],[25.5377745,35.0946546],[25.537627,35.094395],[25.537218,35.0941906],[25.5364172,35.0941917],[25.5354487,35.0940597],[25.5350277,35.0938396],[25.533869,35.0940617],[25.5332972,35.0939878],[25.5327502,35.0940668],[25.5324237,35.0942062],[25.5321821,35.0941912],[25.5315617,35.0938655],[25.5313697,35.0935703],[25.5312261,35.0935181],[25.5309563,35.0937559],[25.5305588,35.0936166],[25.5290843,35.0933738],[25.5286053,35.0933888],[25.5280187,35.0932565],[25.5263383,35.0937375],[25.5253849,35.0943806],[25.5245595,35.0948238],[25.5239946,35.0957145],[25.5240059,35.0963184],[25.52353,35.096685],[25.5235209,35.0967843],[25.523414,35.0971553],[25.523295,35.097247],[25.5231303,35.09724],[25.5224952,35.0971173],[25.5224043,35.0969471],[25.5224441,35.0967302],[25.5222766,35.09657],[25.5218181,35.096693],[25.5203313,35.0975592],[25.5195973,35.0976135],[25.5193764,35.0975351],[25.5190602,35.0976382],[25.5189159,35.0975499],[25.518708,35.0975795],[25.5183211,35.0974221],[25.5180526,35.097732],[25.5175265,35.0977566],[25.5169303,35.0981428],[25.5165963,35.0984715],[25.5164813,35.0987795],[25.5162636,35.0988724],[25.5162985,35.0989802],[25.5161456,35.0990181],[25.5161724,35.0992793],[25.5160087,35.0993264],[25.5160119,35.0994977],[25.5159252,35.0995528],[25.5160049,35.0997141],[25.5159069,35.0997514],[25.5158655,35.0998872],[25.5159949,35.1009495],[25.5158631,35.1009421],[25.5158668,35.1011404],[25.5154925,35.101073],[25.5154728,35.1011904],[25.5153192,35.1011924],[25.5153787,35.1014441],[25.5151068,35.1015737],[25.5148537,35.1015318],[25.5147642,35.1014337],[25.5146558,35.1015072],[25.5144117,35.101357],[25.5127049,35.1016127],[25.5122486,35.1018528],[25.5122087,35.1020697],[25.5117761,35.1024087],[25.5110386,35.1022736],[25.5106008,35.1023332],[25.5105114,35.1022441],[25.5098605,35.1026399],[25.5095397,35.1024997],[25.5092665,35.1025572],[25.5088773,35.1028686],[25.5085692,35.1028183],[25.5084246,35.1027119],[25.5082271,35.1027144],[25.5069727,35.1031087],[25.5066212,35.103086],[25.5062837,35.1032254],[25.5058788,35.1032845],[25.5053141,35.1035981],[25.5037964,35.1039956],[25.5036782,35.1041323],[25.5032607,35.1041014],[25.5031969,35.1042104],[25.5033089,35.1043353],[25.5030018,35.1043391],[25.5029267,35.1044302],[25.5024072,35.1042202],[25.5019568,35.1041897],[25.5018019,35.1041195],[25.5016841,35.1042743],[25.5012152,35.1044333],[25.5009672,35.1046708],[25.500337,35.1050032],[25.4998429,35.1049823],[25.4995259,35.1050493],[25.4991836,35.1049273],[25.4989426,35.1049483],[25.498037,35.105221],[25.4976146,35.1055238],[25.4971783,35.1056644],[25.49641,35.1056468],[25.4959187,35.1057791],[25.4951076,35.1058252],[25.4941951,35.1057192],[25.4934113,35.1054584],[25.4924454,35.1054342],[25.4916394,35.1057597],[25.4912231,35.1057919],[25.4909197,35.106003],[25.4907223,35.1060054],[25.4906442,35.1059343],[25.4903268,35.1059742],[25.4902922,35.1058845],[25.4899428,35.105979],[25.4894916,35.1059034],[25.4891909,35.1062587],[25.4887657,35.1064082],[25.4878246,35.1059419],[25.4873517,35.1058755],[25.4869409,35.1056101],[25.4863608,35.1056893],[25.4862831,35.1056362],[25.4855586,35.105618],[25.4848564,35.1062217],[25.4845797,35.1066939],[25.4846357,35.1067564],[25.484367,35.1069512],[25.484091,35.1068554],[25.4840119,35.1067302],[25.4837464,35.1066072],[25.4833952,35.1066025],[25.4827187,35.1068091],[25.4812537,35.1064934],[25.4809145,35.1065427],[25.4799132,35.1069877],[25.4795513,35.1070011],[25.4785718,35.1073286],[25.4782082,35.1072429],[25.4779592,35.1074263],[25.4781844,35.1077481],[25.478152,35.1083796],[25.4782444,35.10864],[25.4781927,35.1088119],[25.4782924,35.1088648],[25.4786451,35.1101678],[25.4782694,35.1106322],[25.4779868,35.11078],[25.4778375,35.1110162],[25.4776852,35.1110902],[25.4775599,35.1120474],[25.4774619,35.1120937],[25.4774775,35.112346],[25.4774223,35.1123286],[25.4772241,35.112899],[25.4771695,35.1142409],[25.4771518,35.1144755],[25.4769995,35.1145495],[25.4769805,35.114712],[25.4775623,35.1153361],[25.4780698,35.1160963],[25.4790252,35.1167428],[25.4793436,35.117361],[25.4796558,35.1176367],[25.4798046,35.1179775],[25.4806043,35.1185087],[25.4815856,35.1187672],[25.4819521,35.1190062],[25.4826324,35.1190069],[25.4830359,35.1188667],[25.4832046,35.11909],[25.4833814,35.11916],[25.483394,35.11925],[25.4831279,35.1197041],[25.4831549,35.1199832],[25.4835874,35.1202304],[25.4838778,35.1205154],[25.4845097,35.1208683],[25.4847807,35.1212887],[25.4848112,35.1217572],[25.4846731,35.1220113],[25.4846138,35.1223727],[25.4852453,35.1233027],[25.4850601,35.1233771],[25.4851162,35.1234485],[25.4850086,35.123567],[25.4850648,35.1236385],[25.4848259,35.1237766],[25.4848211,35.1241193],[25.4848444,35.1241912],[25.4851293,35.1241696],[25.4851418,35.1242506],[25.4854491,35.1242559],[25.4855616,35.1244078],[25.4855993,35.1246688],[25.4852361,35.1252142],[25.4852513,35.1254484],[25.48506,35.1257934],[25.4850523,35.1259738],[25.4848368,35.1261928],[25.4843097,35.1273804],[25.4842574,35.1287335],[25.4844583,35.1289204],[25.484516,35.129677],[25.4845756,35.1299378],[25.4846987,35.1300715],[25.4847601,35.1304314],[25.4845531,35.1311192],[25.4845944,35.1315785],[25.4842878,35.1328265],[25.4843238,35.1329973],[25.4840789,35.1334151],[25.4838382,35.1334541],[25.4836515,35.133826],[25.4837091,35.1345827],[25.4834702,35.1353249],[25.4834472,35.1358752],[25.4827308,35.1375249],[25.4822876,35.1379],[25.4817652,35.1387539],[25.4814385,35.1394973],[25.4814666,35.1398395],[25.4812862,35.1404864],[25.4814631,35.1411604],[25.4812116,35.1424258],[25.4812424,35.1429123],[25.4813896,35.143767],[25.4816215,35.1444494],[25.4810522,35.1445307],[25.4809462,35.1447394],[25.4817268,35.1466233],[25.4816958,35.1467318],[25.4820204,35.1470795],[25.4819449,35.1471526],[25.4819613,35.1474499],[25.4820915,35.1476692],[25.4822979,35.1481535],[25.4821788,35.1482452],[25.4822276,35.148515],[25.4820617,35.1487515],[25.4821944,35.148804],[25.4821544,35.1490208],[25.4823081,35.149019],[25.4823218,35.1491721],[25.4825422,35.1492145],[25.4824786,35.1493415],[25.4830886,35.1496856],[25.4829585,35.1497774],[25.4835178,35.1503476],[25.4837433,35.1506784],[25.4838144,35.1509661],[25.4842302,35.1514929],[25.4857931,35.1529254],[25.485986,35.1532746],[25.486163,35.1533446],[25.4861094,35.1534174],[25.4863745,35.1535043],[25.4860049,35.1537072],[25.486666,35.1538433],[25.4861744,35.1539756],[25.4861315,35.1540302],[25.4864295,35.1541167],[25.4859928,35.1542483],[25.4865339,35.154422],[25.4865129,35.1544763],[25.4860532,35.1545541],[25.4861977,35.1546515],[25.4858378,35.1547821],[25.4860482,35.1548787],[25.4857097,35.1549821],[25.4855486,35.1551035],[25.4859652,35.155184],[25.4859352,35.1553467],[25.4857603,35.1553849],[25.4858271,35.1554382],[25.4857291,35.1554845],[25.4858864,35.1556809],[25.4858328,35.1557537],[25.4858894,35.1558432],[25.4857042,35.1559266],[25.485805,35.1560335],[25.4856549,35.1562337],[25.4858971,35.1562668],[25.4864773,35.1561786],[25.4864724,35.1563229],[25.4865457,35.1566195],[25.4862346,35.15702],[25.4858806,35.1575473],[25.4856559,35.1576808],[25.4853149,35.1576489],[25.4850119,35.1578871],[25.484832,35.1582589],[25.4845931,35.1584061],[25.4846798,35.1584546],[25.484889,35.1590922],[25.4850455,35.1592436],[25.4857245,35.1591541],[25.4862638,35.1592286],[25.4862732,35.1597424],[25.4859905,35.1601584],[25.4849462,35.1606941],[25.4845609,35.1607845],[25.4831511,35.1612165],[25.4826252,35.1612771],[25.4812965,35.1612663],[25.4806121,35.1610583],[25.48042,35.1609885],[25.4794233,35.1605904]]},{"id":15992,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u0396\u03ac\u03ba\u03c1\u03bf\u03c2-\u0396\u03af\u03c1\u03bf\u03c2","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03954 \u03b1\u03c0\u03cc \u03c4\u03bf \u0396\u03ac\u03ba\u03c1\u03bf \u03c3\u03c4\u03bf\u03bd \u0396\u03af\u03c1\u03bf","path":"Crete\/Crete_E4_Zakros_Ziros","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":11028,"name_EN":"Crete: E4 Zakros-Ziros","description_EN":"E4 section from Zakros to Ziros","ascent_time":270,"descent_time":255,"marker":"E4","level":11,"ascent":583,"descent":236,"maxelev":762,"minelev":218,"link_logo":"","link_ref":"http:\/\/www.anavasi.gr\/product.php?lang=gr$id=78","pdf_link":"","bbox":"LINESTRING(26.14102 35.07281,26.21812 35.11503)","views":37,"millestones":"0,26.2192017,35.1127334#1,26.2139825,35.1136733#2,26.2085014,35.1136746#3,26.2006445,35.1112612#4,26.1904041,35.1106781#5,26.1850980,35.1044341#6,26.1773821,35.0995317#7,26.1702503,35.0938150#8,26.1621638,35.0886200#9,26.1544637,35.0830422#11,26.1399493,35.0742129","x":26.1857528,"y":35.1045788,"coor":[[26.2192017,35.1127334],[26.2187634,35.1127505],[26.2183886,35.1126852],[26.2181298,35.1124466],[26.2183098,35.1118032],[26.2178611,35.1098191],[26.2173358,35.1106761],[26.2172318,35.111291],[26.2167515,35.1117866],[26.2165537,35.1121779],[26.2162284,35.1123191],[26.2156523,35.1129246],[26.2151258,35.1133309],[26.2143065,35.1134631],[26.2141001,35.1135389],[26.2139405,35.1137222],[26.2138635,35.1137145],[26.2137246,35.1134466],[26.2135859,35.1131877],[26.2135806,35.1129895],[26.2134239,35.1132808],[26.2131325,35.1134575],[26.2132065,35.1129513],[26.2129697,35.1131179],[26.2125557,35.1136303],[26.2126931,35.1130328],[26.2126073,35.1122951],[26.2124358,35.1124425],[26.2118882,35.1120738],[26.2117664,35.1124367],[26.2115973,35.1122685],[26.2115325,35.1123057],[26.2115651,35.1127018],[26.2111223,35.1129623],[26.2107807,35.1133111],[26.2103104,35.1133647],[26.2100065,35.1134875],[26.2100153,35.1134062],[26.2097543,35.1134921],[26.2091407,35.1135213],[26.2080397,35.1137848],[26.2077083,35.1137006],[26.2075617,35.1135501],[26.2077127,35.1134572],[26.2073497,35.1134187],[26.2069668,35.1134617],[26.2062378,35.1132767],[26.2063352,35.1132298],[26.2060245,35.1131003],[26.2061552,35.1130618],[26.2057448,35.112898],[26.2059503,35.1127861],[26.2056627,35.1127012],[26.2056939,35.1126375],[26.2055409,35.1126583],[26.205701,35.1124931],[26.2059532,35.1124885],[26.2059832,35.1123798],[26.2057349,35.1121229],[26.2051194,35.11208],[26.2050073,35.1119919],[26.2043262,35.1119592],[26.2039994,35.1120463],[26.2026393,35.1116473],[26.2014731,35.1115243],[26.2009852,35.1113348],[26.1993851,35.1109852],[26.1989626,35.1107765],[26.1984802,35.1103796],[26.1981054,35.1103143],[26.1979375,35.1101911],[26.1977765,35.1103203],[26.1967591,35.1104289],[26.1956798,35.1106828],[26.1946805,35.1106468],[26.1939802,35.1107136],[26.1936103,35.1108285],[26.1932589,35.1108168],[26.1917281,35.1110068],[26.1915107,35.1110828],[26.1911881,35.1109174],[26.1908813,35.1109319],[26.1905714,35.1108294],[26.1902678,35.1105554],[26.1895858,35.1096662],[26.1894175,35.109525],[26.1889099,35.109417],[26.1886534,35.1092594],[26.1885443,35.1088737],[26.1882332,35.108726],[26.1882644,35.1086624],[26.1880028,35.1083155],[26.1873334,35.1078949],[26.186946,35.1077666],[26.1870747,35.1076561],[26.1870291,35.1075939],[26.1867173,35.1074192],[26.1864863,35.1073963],[26.1864218,35.1070369],[26.186099,35.1068624],[26.1861968,35.1068246],[26.186223,35.106166],[26.1860935,35.1058348],[26.1863728,35.1056134],[26.1864836,35.1052418],[26.1863922,35.1051082],[26.1861381,35.1050406],[26.1857528,35.1045788],[26.1853235,35.1045235],[26.1850241,35.1044026],[26.1849435,35.1042599],[26.1842245,35.1040384],[26.1841086,35.1038061],[26.1833098,35.1034689],[26.1825491,35.1029147],[26.18188,35.1029177],[26.1815592,35.1028153],[26.1807049,35.1028668],[26.1802036,35.1025783],[26.1794449,35.1025108],[26.1793019,35.1024953],[26.179078,35.1023281],[26.1784692,35.101708],[26.1785149,35.1013646],[26.1786316,35.1012182],[26.1775996,35.0999476],[26.1770224,35.0988672],[26.1768555,35.0983653],[26.1763568,35.0977613],[26.1753918,35.0961198],[26.1749899,35.0958566],[26.1747845,35.0959684],[26.1743507,35.0957418],[26.1739136,35.0958038],[26.1736929,35.0957536],[26.1734488,35.0956498],[26.1732867,35.0953282],[26.1731298,35.0952048],[26.17281,35.0951384],[26.1723648,35.094894],[26.1720127,35.0948552],[26.1705157,35.094242],[26.1703198,35.0938849],[26.1699367,35.0935041],[26.1698752,35.0932528],[26.1693616,35.0929104],[26.1691685,35.0922467],[26.1687512,35.0918124],[26.1683272,35.0915405],[26.1678544,35.0914949],[26.1675222,35.0913746],[26.1673396,35.0911075],[26.167026,35.0908606],[26.1668734,35.0908994],[26.166586,35.0908144],[26.1664361,35.0905376],[26.1657283,35.0899012],[26.1654637,35.0898518],[26.1647519,35.0894769],[26.1636368,35.0891993],[26.1632907,35.0889711],[26.1620076,35.0885613],[26.1617939,35.0883577],[26.1614929,35.0877591],[26.1610397,35.0872082],[26.1606062,35.0869906],[26.1604573,35.0867498],[26.1596539,35.0862322],[26.1596332,35.085863],[26.1594016,35.0853983],[26.1584899,35.0849278],[26.158264,35.0846794],[26.1579347,35.0846672],[26.1571919,35.0843649],[26.1562535,35.0841292],[26.1554016,35.0834321],[26.1551302,35.0831214],[26.1547216,35.0830115],[26.1541639,35.0830755],[26.1522342,35.082677],[26.1511136,35.0821831],[26.1498783,35.0815018],[26.149062,35.0813179],[26.1489535,35.0813649],[26.1486962,35.0811712],[26.1479006,35.0809419],[26.1467592,35.0804933],[26.146569,35.0799287],[26.1459605,35.0793084],[26.1459332,35.0791016],[26.1458135,35.0791397],[26.145852,35.0789317],[26.1456363,35.0790707],[26.1455891,35.0789454],[26.1454945,35.0791003],[26.1453961,35.0791111],[26.1449929,35.0787936],[26.1441075,35.0784848],[26.1442717,35.0784728],[26.1441042,35.0783586],[26.1442903,35.0783463],[26.1434419,35.0777753],[26.1433953,35.077668],[26.1437572,35.0776706],[26.1420652,35.0758704],[26.1419423,35.0757824],[26.1414081,35.0754854],[26.1412266,35.0752542],[26.1408021,35.0749552],[26.1407988,35.074829],[26.1406428,35.0747326],[26.1405487,35.0744908],[26.1406084,35.0742554],[26.1399493,35.0742129]]},{"id":16015,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u0386\u03b3\u03b9\u03bf\u03c2 \u03a5\u03ac\u03ba\u03b9\u03bd\u03b8\u03bf\u03c2-\u039d\u03af\u03b4\u03b1","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bf\u03c1\u03bf\u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c4\u03b7\u03c2 \u039d\u03af\u03b4\u03b1\u03c2","path":"Crete\/Crete_Psiloritiis_E4_AgYakinthos_Nida","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":13462,"name_EN":"Psiloritiis: E4 Aghios Yakinthos-Nida","description_EN":"Crossing the Nida plateau","ascent_time":250,"descent_time":245,"marker":"E4","level":12,"ascent":441,"descent":275,"maxelev":1501,"minelev":1175,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.8349 35.20362,24.89055 35.25123)","views":29,"millestones":"0,24.8619164,35.2493431#1,24.8714761,35.2500665#2,24.8820097,35.2498709#3,24.8893715,35.2459333#4,24.8863478,35.2391169#5,24.8869465,35.2355611#6,24.8795825,35.2325433#7,24.8797931,35.2265314#8,24.8750270,35.2212601#9,24.8655674,35.2178809#10,24.8583682,35.2142617#11,24.8559459,35.2099845#12,24.8457396,35.2080956#13.5,24.8346477,35.2067227","x":24.8787633,"y":35.2273091,"coor":[[24.8619164,35.2493431],[24.8621692,35.2491429],[24.8625411,35.2489689],[24.8628002,35.2485343],[24.8629658,35.2484677],[24.8631198,35.2484756],[24.8633274,35.2485598],[24.8640802,35.2490594],[24.8641793,35.2490767],[24.8645298,35.248966],[24.8648381,35.2490179],[24.8652579,35.2492133],[24.8657644,35.2492998],[24.8660639,35.2495501],[24.8663481,35.2494038],[24.8668521,35.249256],[24.8669955,35.2493],[24.8671191,35.2495516],[24.867296,35.2496495],[24.8685894,35.2497597],[24.8704682,35.2496831],[24.871152,35.2499036],[24.8719291,35.250297],[24.8730445,35.2506564],[24.8735767,35.2508306],[24.8740926,35.2509509],[24.8747188,35.2509193],[24.8756286,35.2507549],[24.8775878,35.2502358],[24.878961,35.2501627],[24.8805453,35.2502955],[24.8808852,35.2502209],[24.8815637,35.2499454],[24.8822714,35.2498276],[24.8823697,35.2497637],[24.8829414,35.2497776],[24.883668,35.2498805],[24.8842857,35.2500834],[24.8845276,35.2500906],[24.8855259,35.2501013],[24.8869053,35.2495863],[24.887235,35.2495839],[24.8882314,35.2492339],[24.8884061,35.2491245],[24.8885577,35.248916],[24.8894419,35.2473496],[24.889688,35.2467346],[24.8896077,35.2464287],[24.8893731,35.2460787],[24.8893701,35.2458083],[24.8907729,35.2444274],[24.8909891,35.2441012],[24.8908975,35.2437592],[24.8900514,35.2427736],[24.8897944,35.2423878],[24.8897398,35.2414144],[24.8893643,35.2408063],[24.8890248,35.2405428],[24.8880982,35.240234],[24.8875215,35.2397513],[24.8865612,35.2393707],[24.8863613,35.2391828],[24.8863126,35.2389397],[24.8864209,35.2387856],[24.8870315,35.2383483],[24.8876605,35.2375683],[24.8884467,35.2371027],[24.8885648,35.2368493],[24.888563,35.236687],[24.8885236,35.2360336],[24.8884081,35.235897],[24.887967,35.2353795],[24.8875286,35.234481],[24.8872786,35.2337255],[24.8870571,35.2335648],[24.8869471,35.2335566],[24.8865649,35.2337758],[24.8866103,35.2339783],[24.8870911,35.2347322],[24.8871383,35.2350294],[24.8867968,35.2359696],[24.8865028,35.2362152],[24.8862285,35.2362533],[24.8859092,35.2362016],[24.8848718,35.2358034],[24.8839268,35.2358103],[24.8816693,35.235394],[24.8812712,35.2351624],[24.8811469,35.2348477],[24.88183,35.2339952],[24.8817624,35.2338424],[24.8801269,35.2329977],[24.8795169,35.2324882],[24.8787117,35.2322055],[24.8785889,35.2320351],[24.8785046,35.2313504],[24.8783809,35.2312792],[24.878183,35.2312716],[24.8777562,35.231437],[24.877525,35.2313936],[24.8768934,35.2309113],[24.8764367,35.2303375],[24.8762235,35.2299333],[24.8761986,35.2296585],[24.8762805,35.2294189],[24.8764974,35.2291469],[24.8779808,35.2281172],[24.8787633,35.2273091],[24.8795582,35.2266361],[24.8798206,35.2265169],[24.8805994,35.226385],[24.8808181,35.2262843],[24.8809142,35.2260311],[24.8808532,35.2254725],[24.8804071,35.2245403],[24.8803937,35.224324],[24.8805649,35.2238899],[24.880463,35.2236111],[24.8803613,35.2234789],[24.879971,35.2229497],[24.8796275,35.2226907],[24.8793633,35.2226386],[24.8786498,35.2227068],[24.8781073,35.2223321],[24.8773584,35.2221752],[24.8766304,35.22191],[24.8758782,35.2214466],[24.875292,35.2212772],[24.8738955,35.2211791],[24.873631,35.2211089],[24.8733878,35.2209754],[24.8731102,35.2206979],[24.8729073,35.2202215],[24.8726578,35.2199482],[24.8713856,35.2191369],[24.8696965,35.218457],[24.8679242,35.2178205],[24.8674626,35.2178058],[24.8663876,35.2179758],[24.8656725,35.2178907],[24.8649363,35.2178216],[24.8642004,35.2178449],[24.8631669,35.2177801],[24.8627046,35.2177023],[24.8625933,35.2175678],[24.8625918,35.2174236],[24.8627658,35.21726],[24.8631918,35.2170225],[24.8633212,35.2167872],[24.8633079,35.2165709],[24.8632297,35.2164452],[24.8630312,35.2163835],[24.8623476,35.2165439],[24.8619077,35.2166395],[24.8610801,35.2162937],[24.8604415,35.216172],[24.8602195,35.2159572],[24.8599951,35.215517],[24.8592672,35.2152516],[24.8590436,35.2148925],[24.8583781,35.2142931],[24.8582695,35.2139558],[24.8584716,35.2133232],[24.8583826,35.2132246],[24.8576886,35.2130492],[24.8572049,35.2130166],[24.8564658,35.2127333],[24.8557646,35.2129185],[24.8555226,35.2128932],[24.8550568,35.2124817],[24.8549887,35.2122748],[24.854794,35.2115188],[24.8548119,35.2111219],[24.855624,35.2110441],[24.855719,35.2106737],[24.8558168,35.2105648],[24.856275,35.210255],[24.8570183,35.2098981],[24.8570939,35.2097803],[24.8570166,35.2097358],[24.8567212,35.2098551],[24.8559206,35.209987],[24.8549468,35.2103726],[24.8541784,35.2104321],[24.8536986,35.2103791],[24.8529711,35.2101498],[24.8518272,35.2100316],[24.8509042,35.2100111],[24.8504406,35.209807],[24.8500298,35.2093951],[24.8477333,35.2086943],[24.8465858,35.2082245],[24.8456725,35.2080866],[24.8453508,35.2077823],[24.8424276,35.2066305],[24.8414258,35.20643],[24.8395295,35.205776],[24.8389654,35.2054102],[24.8383077,35.2052817],[24.8373263,35.2049279],[24.836743,35.2048237],[24.8363911,35.2048532],[24.8360537,35.2047608],[24.8354532,35.2040526],[24.8353278,35.2040129],[24.8352003,35.2044286],[24.8346974,35.2046665],[24.8344689,35.2048845],[24.8344275,35.2051372],[24.834574,35.2054969],[24.834583,35.2057673],[24.8346407,35.2060374],[24.8345683,35.2064798],[24.8346477,35.2067227]]},{"id":16016,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u0391\u03bd\u03ce\u03b3\u03b5\u03b9\u03b1-\u0386\u03b3\u03b9\u03bf\u03c2 \u03a5\u03ac\u03ba\u03b9\u03bd\u03b8\u03bf\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b1 \u0391\u03bd\u03ce\u03b3\u03b5\u03b9\u03b1 \u03c3\u03c4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf","path":"Crete\/Crete_Psiloritiis_E4_Anogia_AgYakinthos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":9098,"name_EN":"Psiloritiis: E4 Anogia-Aghios Yakinthos","description_EN":"Ascent from Anogia to Aghios Yakinthos","ascent_time":220,"descent_time":200,"marker":"E4","level":12,"ascent":564,"descent":93,"maxelev":1209,"minelev":728,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.85743 35.24912,24.89276 35.29222)","views":34,"millestones":"0,24.8825738,35.2915206#1,24.8888282,35.2872834#2,24.8878588,35.2827991#3,24.8915220,35.2787660#4,24.8827464,35.2753971#5,24.8744146,35.2736402#6,24.8704359,35.2667468#7,24.8635894,35.2616032#8,24.8582698,35.2568087#9.1,24.8619171,35.2493431","x":24.8742545,"y":35.2733268,"coor":[[24.8825738,35.2915206],[24.8828996,35.2914596],[24.8831752,35.2915207],[24.8833444,35.2919162],[24.8835546,35.2920319],[24.8837956,35.29194],[24.8838708,35.2917771],[24.8844239,35.2915725],[24.885028,35.2914959],[24.885424,35.291511],[24.8863111,35.2911709],[24.8864395,35.2908454],[24.8864898,35.2904122],[24.8864776,35.2903041],[24.8863134,35.2901791],[24.886079,35.2898652],[24.8858017,35.2896509],[24.8857558,35.2894709],[24.8859522,35.2893342],[24.8869606,35.2890202],[24.8881125,35.2877585],[24.8883741,35.2875492],[24.889281,35.2870195],[24.8895203,35.2867743],[24.8900077,35.2861531],[24.8906757,35.2859047],[24.8910796,35.2856313],[24.8917419,35.2846638],[24.8918055,35.284447],[24.8917139,35.2841231],[24.8914044,35.2839721],[24.8912067,35.2839915],[24.8901229,35.2844413],[24.8899143,35.2844699],[24.8897486,35.284399],[24.8894366,35.2840226],[24.8887988,35.2840183],[24.8883536,35.2835346],[24.88756,35.2833601],[24.8874269,35.2832529],[24.8874145,35.2831268],[24.8876322,35.2829268],[24.8879601,35.2827441],[24.8883657,35.2826239],[24.8891111,35.2825395],[24.8905627,35.2825469],[24.8913745,35.2823786],[24.892715,35.2818435],[24.8930315,35.2816247],[24.8931179,35.2814798],[24.8931142,35.2811463],[24.8928206,35.2804451],[24.8930388,35.2792894],[24.8929217,35.278632],[24.8925231,35.2783825],[24.8921376,35.2783222],[24.8918854,35.2783872],[24.8916577,35.2786774],[24.8914612,35.2788051],[24.8905817,35.2788206],[24.8902193,35.2788684],[24.8900226,35.278978],[24.8892338,35.2786727],[24.8887225,35.2781716],[24.8881147,35.2778965],[24.887417,35.2774328],[24.8872161,35.2771637],[24.8867407,35.2769238],[24.8845962,35.2768854],[24.8845693,35.2766894],[24.8843788,35.2763572],[24.884376,35.2761048],[24.8844734,35.2759598],[24.8835507,35.2755383],[24.8831096,35.2754152],[24.8820645,35.2753688],[24.88145,35.2754814],[24.8807468,35.2755226],[24.8803425,35.2756946],[24.8801028,35.2758947],[24.8795999,35.2761689],[24.8796319,35.2760785],[24.8789865,35.2763807],[24.8778879,35.2764699],[24.8777779,35.2764617],[24.8777106,35.2763449],[24.8771249,35.2760697],[24.8765066,35.2758307],[24.8761875,35.2758059],[24.8758804,35.2758803],[24.8757686,35.2757098],[24.8750029,35.2750571],[24.8751753,35.2747223],[24.8750316,35.2746512],[24.874537,35.2740281],[24.8743323,35.2733984],[24.8742545,35.2733268],[24.8740453,35.2732923],[24.8736992,35.2728079],[24.8734336,35.2726475],[24.872934,35.2721912],[24.8726576,35.272049],[24.8725459,35.2718875],[24.8724878,35.2715994],[24.8723544,35.2714561],[24.8721814,35.2715407],[24.8717965,35.2715345],[24.8715373,35.2709412],[24.8715214,35.2704815],[24.8713482,35.2697073],[24.8714971,35.2692374],[24.8715789,35.2686687],[24.8715145,35.2677856],[24.8714221,35.2673715],[24.8715506,35.267055],[24.8714286,35.2669476],[24.8708627,35.2668548],[24.8707016,35.2668176],[24.8706458,35.2667459],[24.8705586,35.2668187],[24.8704038,35.2667296],[24.8696504,35.266185],[24.8693079,35.2660342],[24.8691967,35.2659087],[24.8687563,35.2658488],[24.8685453,35.2656519],[24.8681035,35.2654658],[24.8680712,35.2655291],[24.8680797,35.2652946],[24.8678572,35.2650437],[24.8677023,35.2649547],[24.8672178,35.264886],[24.8671626,35.2648594],[24.867161,35.2647061],[24.8665942,35.2645231],[24.8663968,35.2645064],[24.8660092,35.2642387],[24.8658121,35.2643123],[24.8656353,35.2642234],[24.8654046,35.264243],[24.8654036,35.2641529],[24.8652933,35.2641176],[24.8653582,35.264018],[24.8652116,35.2636674],[24.865253,35.2634236],[24.8651508,35.2631178],[24.8652028,35.2628379],[24.8650346,35.2625325],[24.8649971,35.262109],[24.8649189,35.2619923],[24.8647734,35.261937],[24.8640147,35.2619244],[24.8636832,35.2617645],[24.8635376,35.2615131],[24.8637621,35.2609164],[24.8631218,35.2606594],[24.862877,35.2603817],[24.8627857,35.2600667],[24.8621079,35.2597673],[24.8618757,35.2596427],[24.8619098,35.2597506],[24.8617773,35.2596975],[24.8616647,35.2594458],[24.8614418,35.2591589],[24.8610661,35.2589722],[24.8608421,35.258577],[24.860765,35.2585686],[24.8605949,35.2580739],[24.8603523,35.2580035],[24.8600864,35.257807],[24.85986,35.2571864],[24.8594157,35.2567568],[24.8591426,35.2558751],[24.8589112,35.2559534],[24.8587364,35.2560538],[24.8584003,35.256498],[24.8583599,35.2568319],[24.8582941,35.2568504],[24.8581485,35.256599],[24.8577932,35.2562589],[24.8576791,35.2558629],[24.8575243,35.2557739],[24.8572975,35.2552503],[24.8573241,35.2546459],[24.8570321,35.2540529],[24.8576415,35.2534715],[24.8577252,35.2530652],[24.8579863,35.2528109],[24.8587031,35.2517283],[24.8596572,35.2504772],[24.8608926,35.2498373],[24.861396,35.2496353],[24.8619171,35.2493431]]},{"id":16017,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u039a\u03b1\u03bc\u03ac\u03c1\u03b5\u03c2-\u039d\u03af\u03b4\u03b1","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u039d\u03af\u03b4\u03b1 (\u03ba\u03bf\u03bd\u03c4\u03ac \u03b1\u03c0\u03cc \u03c4\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u039a\u03b1\u03bc\u03b1\u03c1\u03ce\u03bd)","path":"Crete\/Crete_Psiloritiis_E4_Kamares_Nida","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":3,"length":10131,"name_EN":"Psiloritiis: E4 Kamares-Nida","description_EN":"Ascent to Nida (by the Kamares cave)","ascent_time":295,"descent_time":260,"marker":"E4","level":11,"ascent":1150,"descent":356,"maxelev":1645,"minelev":580,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.81837 35.15269,24.84085 35.20683)","views":28,"millestones":"0,24.8182397,35.1528418#1,24.8228873,35.1572128#2,24.8249873,35.1619503#3,24.8213960,35.1683414#4,24.8249509,35.1739027#5,24.8313107,35.1726480#6,24.8343494,35.1758718#7,24.8383141,35.1830648#8,24.8409710,35.1912442#10.1,24.8346449,35.2067227","x":24.8246128,"y":35.1720812,"coor":[[24.8182397,35.1528418],[24.8183738,35.1530844],[24.8182859,35.153076],[24.8181784,35.1533021],[24.8182677,35.1534458],[24.8182372,35.1536984],[24.8179789,35.1542142],[24.817848,35.1542962],[24.8180909,35.1544298],[24.8179726,35.1546831],[24.8180516,35.1548899],[24.8179821,35.1549467],[24.8179631,35.1552354],[24.8181727,35.1553422],[24.8181846,35.1554323],[24.8187999,35.1554822],[24.8190535,35.1555887],[24.819152,35.155552],[24.8194488,35.1555861],[24.8194612,35.1557302],[24.8195709,35.1557205],[24.8195936,35.1557925],[24.8198021,35.1557911],[24.8210049,35.156387],[24.8212027,35.1564127],[24.8213663,35.1563034],[24.8219038,35.1562547],[24.8218728,35.1564443],[24.8223113,35.1563782],[24.8223339,35.1564411],[24.8222471,35.1565499],[24.8224559,35.1565666],[24.823168,35.1564084],[24.8229401,35.1566715],[24.822887,35.1568522],[24.8229536,35.1569238],[24.8228687,35.157213],[24.8229675,35.1572123],[24.8229148,35.1574381],[24.8230371,35.1575815],[24.822994,35.157663],[24.8237186,35.157658],[24.8238395,35.1576752],[24.8239287,35.1578099],[24.8235913,35.1581007],[24.823516,35.1582545],[24.8232316,35.1583647],[24.823276,35.1584094],[24.8232218,35.1584819],[24.8233759,35.158517],[24.8233984,35.1585709],[24.8232899,35.1587069],[24.8235093,35.1586874],[24.8235099,35.1587415],[24.8236199,35.1587588],[24.8240815,35.1588097],[24.8243356,35.1589613],[24.8231123,35.1596008],[24.8234978,35.1597244],[24.8232248,35.1598705],[24.8237081,35.1598853],[24.8239511,35.1600279],[24.8240841,35.1601532],[24.823996,35.1601268],[24.8240403,35.1601625],[24.8239422,35.1602353],[24.8244163,35.1604305],[24.8244168,35.1604846],[24.8245268,35.1605019],[24.8244727,35.1605834],[24.8247379,35.1607529],[24.8247507,35.1609331],[24.824644,35.1612404],[24.8246104,35.1611685],[24.8246138,35.1615112],[24.8250356,35.1619591],[24.8247936,35.1619157],[24.8248394,35.1621047],[24.8245326,35.1621609],[24.8245563,35.1623411],[24.8243592,35.1623965],[24.8243708,35.1624506],[24.8246016,35.162476],[24.8250325,35.1627436],[24.8249448,35.1627532],[24.8249797,35.1629514],[24.8246508,35.1629987],[24.824575,35.1630984],[24.8241654,35.1638586],[24.824007,35.1644818],[24.823758,35.1648352],[24.8237262,35.1649526],[24.8238935,35.165204],[24.8239884,35.1659066],[24.8237854,35.166467],[24.8234717,35.1669381],[24.8232303,35.1669577],[24.823176,35.1670122],[24.8231094,35.1669405],[24.8230219,35.1669772],[24.822817,35.1673483],[24.8226309,35.1674036],[24.8223011,35.1673608],[24.8221149,35.1674161],[24.8219087,35.167652],[24.8217011,35.1677616],[24.8215835,35.168078],[24.8214421,35.1682052],[24.8213887,35.1683588],[24.8211922,35.1684774],[24.8208017,35.1689489],[24.8203322,35.1692226],[24.8200516,35.1697114],[24.8202021,35.1696585],[24.820445,35.1697921],[24.8206035,35.1699872],[24.8213498,35.1700836],[24.8220951,35.1699433],[24.8234515,35.1705111],[24.8237168,35.1706897],[24.823939,35.1709406],[24.8244667,35.1717485],[24.8246128,35.1720812],[24.8245813,35.1722257],[24.8246617,35.1725768],[24.8248502,35.1727558],[24.8247734,35.1727654],[24.8247852,35.1728464],[24.8250406,35.1731242],[24.8249996,35.173413],[24.8248149,35.1736127],[24.824741,35.1739017],[24.8249496,35.1739003],[24.8250504,35.1740889],[24.8252938,35.1742676],[24.8254808,35.1743024],[24.82557,35.1744371],[24.825669,35.1744544],[24.825773,35.1749587],[24.8260286,35.1752635],[24.8263139,35.1752435],[24.8266013,35.1754219],[24.8266393,35.1759266],[24.8268941,35.1761412],[24.8269173,35.1762673],[24.8270608,35.1763385],[24.8270384,35.176298],[24.8271908,35.1761617],[24.8275843,35.1759787],[24.8277799,35.175779],[24.8276691,35.1756806],[24.8279202,35.1755346],[24.8284559,35.1752965],[24.82896,35.1751939],[24.8297574,35.1747646],[24.8300537,35.1747536],[24.8304254,35.1745797],[24.8307722,35.1741355],[24.8308147,35.1739909],[24.8307474,35.1738471],[24.8309393,35.1732868],[24.8313386,35.1725988],[24.8313645,35.1719043],[24.8312851,35.1716523],[24.8313718,35.1715436],[24.8316996,35.171379],[24.8317865,35.1712882],[24.8316106,35.1712714],[24.8318182,35.1711708],[24.8325537,35.1711387],[24.8327568,35.1710742],[24.83302,35.1711017],[24.8330633,35.1710383],[24.8331952,35.1710554],[24.8336359,35.1711966],[24.834133,35.1714817],[24.8343218,35.1716878],[24.8347842,35.1718109],[24.8349172,35.1719272],[24.8348185,35.1719369],[24.8347758,35.1720634],[24.8350538,35.1724041],[24.8349677,35.172567],[24.8348883,35.1733971],[24.8345331,35.1741029],[24.8345362,35.1744094],[24.8344169,35.1745545],[24.8343325,35.1748887],[24.8343849,35.1757179],[24.8343309,35.1758085],[24.8343991,35.1760334],[24.8342698,35.1762778],[24.8343812,35.1764303],[24.83434,35.1767011],[24.8344055,35.1766645],[24.8344293,35.1768357],[24.8343542,35.1770166],[24.8341033,35.1771806],[24.8340392,35.1773523],[24.8341613,35.1774777],[24.8343598,35.1775575],[24.8352698,35.178489],[24.8360077,35.1786913],[24.8361957,35.1788162],[24.8362744,35.178996],[24.8363476,35.1797079],[24.8364698,35.1798513],[24.8365157,35.1800403],[24.8365706,35.1800399],[24.8365964,35.1804094],[24.8368179,35.1805973],[24.8369642,35.1809389],[24.8374402,35.1813053],[24.837652,35.1816104],[24.8382495,35.1820391],[24.8382466,35.1828236],[24.8383253,35.1830034],[24.8382111,35.1836534],[24.838416,35.1843462],[24.8405211,35.186135],[24.8408334,35.1865927],[24.8409245,35.1869076],[24.8411949,35.188637],[24.841231,35.1900073],[24.8411081,35.1908648],[24.8404605,35.1927132],[24.8399679,35.1940759],[24.8396681,35.1946302],[24.8393215,35.1949775],[24.8382023,35.1962927],[24.8377812,35.197008],[24.8362073,35.1988493],[24.8359816,35.1993377],[24.8356183,35.2013961],[24.8353244,35.2040107],[24.8351968,35.2044264],[24.8346939,35.2046643],[24.8344654,35.2048822],[24.8344241,35.205135],[24.8345706,35.2054947],[24.8345802,35.2057673],[24.8346379,35.2060374],[24.8345656,35.2064798],[24.8346449,35.2067227]]},{"id":16018,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u03a1\u03bf\u03cd\u03b2\u03b1\u03c2-\u039d\u03af\u03b4\u03b1","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf \u03b4\u03ac\u03c3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a1\u03bf\u03cd\u03b2\u03b1 \u03c3\u03c4\u03b7 \u039d\u03af\u03b4\u03b1 \u03bc\u03ad\u03c3\u03c9 \u03c4\u03bf\u03c5 \u03954","path":"Crete\/Crete_Psiloritiis_E4_Rouvas_Nida","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":11469,"name_EN":"Psiloritiis: E4 Rouvas-Nida","description_EN":"Crossing the E4 from Rouvas Forest to Nida","ascent_time":275,"descent_time":265,"marker":"E4","level":12,"ascent":635,"descent":212,"maxelev":1482,"minelev":914,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.83444 35.16582,24.91485 35.20673)","views":29,"millestones":"0,24.9148500,35.1658203#1,24.9099343,35.1722188#2,24.9021909,35.1767444#3,24.8987725,35.1839029#4,24.8934876,35.1888552#5,24.8835465,35.1911561#6,24.8749888,35.1950159#7,24.8670941,35.1926027#8,24.8570589,35.1931886#9,24.8473958,35.1923936#10,24.8388740,35.1955148#11.5,24.8346456,35.2067249","x":24.8892044,"y":35.1896916,"coor":[[24.91485,35.1658203],[24.914387,35.1662093],[24.9138303,35.166502],[24.9134134,35.1665322],[24.9129604,35.166468],[24.9122312,35.1666832],[24.9121575,35.1668438],[24.9124112,35.166941],[24.9125098,35.1669223],[24.912479,35.1671209],[24.9126008,35.1672101],[24.9122982,35.1676452],[24.912209,35.1685025],[24.9118171,35.168812],[24.9118752,35.1690911],[24.9116897,35.1692007],[24.9116469,35.1693002],[24.9115773,35.1699499],[24.9112939,35.1701414],[24.9105573,35.1710486],[24.9103065,35.1712038],[24.9101232,35.1715117],[24.9099332,35.1721984],[24.9099477,35.1725139],[24.9100478,35.1726304],[24.9098742,35.172812],[24.9093608,35.1730593],[24.9091215,35.1732685],[24.9087013,35.173993],[24.9083961,35.1741936],[24.9080387,35.1746472],[24.9078742,35.1746664],[24.9078863,35.1747655],[24.9074591,35.1748589],[24.9069027,35.1751967],[24.9064552,35.1753759],[24.9059656,35.1757943],[24.9057709,35.1760572],[24.9054648,35.1761858],[24.9048705,35.176073],[24.904539,35.1758861],[24.9042968,35.1758338],[24.9039792,35.1759083],[24.9038155,35.1759997],[24.9034081,35.1760884],[24.9030449,35.176019],[24.9029486,35.1761189],[24.9029171,35.1762544],[24.9026232,35.176491],[24.9017504,35.1770115],[24.8999192,35.177512],[24.8994507,35.1778491],[24.8992778,35.1781028],[24.8991997,35.1783672],[24.8989166,35.1785857],[24.8988208,35.1788659],[24.8985493,35.1791384],[24.8983995,35.1795002],[24.8984042,35.179933],[24.8986385,35.1802648],[24.8988044,35.1803718],[24.8989056,35.1805784],[24.8989539,35.1809838],[24.8988004,35.1820039],[24.8988799,35.1832386],[24.898815,35.1833292],[24.8987669,35.1839427],[24.898434,35.1846305],[24.8975294,35.1852684],[24.8973672,35.185504],[24.8974229,35.1855667],[24.8974666,35.1855483],[24.8975083,35.1853497],[24.8971605,35.1856768],[24.8970728,35.1856955],[24.8971001,35.1861822],[24.8969701,35.1863455],[24.8967084,35.1865187],[24.8967097,35.186636],[24.896644,35.1866545],[24.8969441,35.1869769],[24.8964306,35.1872241],[24.8963023,35.1875406],[24.8960841,35.1876775],[24.8962163,35.1877126],[24.8959661,35.1879309],[24.8956425,35.1886591],[24.8952805,35.1886978],[24.8948048,35.1883858],[24.894859,35.1883223],[24.8947813,35.1882507],[24.8943851,35.1881725],[24.8940158,35.1885539],[24.8938073,35.1885735],[24.8935779,35.1886834],[24.8934802,35.1887923],[24.8934923,35.1888914],[24.8933274,35.1888746],[24.893164,35.189002],[24.8930096,35.18894],[24.8926505,35.1892492],[24.8924532,35.1892868],[24.8919949,35.1895606],[24.8916991,35.189635],[24.8913729,35.1899349],[24.8906055,35.1900668],[24.8896593,35.1899205],[24.8893805,35.1897264],[24.8892044,35.1896916],[24.888326,35.1897161],[24.887252,35.1899404],[24.8862334,35.1902003],[24.8844948,35.1909253],[24.8831035,35.1912601],[24.8828739,35.191361],[24.882711,35.1915335],[24.882475,35.1920582],[24.8821932,35.1924028],[24.8820222,35.1928459],[24.8816928,35.1928573],[24.8809111,35.1926827],[24.8804286,35.1927583],[24.8795691,35.193522],[24.8791194,35.1935793],[24.878682,35.1937629],[24.8784237,35.1942607],[24.87789,35.1946793],[24.8770128,35.1948299],[24.8767044,35.194751],[24.8764198,35.1948432],[24.8760577,35.1948729],[24.875598,35.1950295],[24.875257,35.1949869],[24.8747524,35.1950446],[24.8739751,35.1952847],[24.8734456,35.1950811],[24.8733142,35.1951181],[24.8732723,35.1953078],[24.8734726,35.1955498],[24.8732876,35.1957134],[24.8730142,35.1958236],[24.8724211,35.1958279],[24.8718556,35.195336],[24.87107,35.1948007],[24.870441,35.1945257],[24.8699129,35.1944483],[24.86968,35.1942426],[24.8696457,35.1941166],[24.8697215,35.1940079],[24.8693027,35.1938756],[24.8689256,35.1935357],[24.8686187,35.193601],[24.8684119,35.1937738],[24.8682574,35.1937118],[24.8677989,35.1929397],[24.8672901,35.1926097],[24.8668396,35.1925949],[24.8664648,35.1924713],[24.8659223,35.1920694],[24.8656356,35.1919633],[24.8648483,35.1922935],[24.8646178,35.1923132],[24.8642983,35.1922253],[24.8635838,35.1917773],[24.8631219,35.1917265],[24.8624115,35.1920652],[24.8614591,35.1923695],[24.8603387,35.1923685],[24.8588275,35.192803],[24.8580695,35.1927903],[24.8575325,35.1929113],[24.8568665,35.1932948],[24.8564638,35.1936493],[24.856146,35.1937146],[24.8554201,35.1936296],[24.854735,35.1932377],[24.8541642,35.1932688],[24.8540099,35.1932248],[24.8533698,35.1929317],[24.8528379,35.1924846],[24.8520537,35.1920754],[24.8509283,35.1915874],[24.8505325,35.1915541],[24.8502899,35.1914656],[24.8499173,35.1915404],[24.8495985,35.1915156],[24.8488775,35.1918993],[24.8483076,35.1920205],[24.8469513,35.192571],[24.8464339,35.1924574],[24.8459185,35.1925422],[24.8452572,35.1923214],[24.8442014,35.1921935],[24.8432792,35.192236],[24.8423049,35.1925584],[24.8416683,35.1925988],[24.8410983,35.19272],[24.8404612,35.1927154],[24.8399686,35.1940781],[24.8396695,35.1946325],[24.8393222,35.1949798],[24.8382037,35.196295],[24.8377826,35.1970102],[24.8362087,35.1988515],[24.835983,35.19934],[24.8356196,35.2013983],[24.8353251,35.2040129],[24.8351975,35.2044286],[24.8346946,35.2046665],[24.8344662,35.2048845],[24.8344248,35.2051372],[24.8345713,35.2054969],[24.8345809,35.2057696],[24.8346386,35.2060397],[24.8345663,35.206482],[24.8346456,35.2067249]]},{"id":16020,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u03a6\u03bf\u03c5\u03c1\u03c6\u03bf\u03c5\u03c1\u03ac\u03c2-\u03a4\u03af\u03bc\u03b9\u03bf\u03c2 \u03a3\u03c4\u03b1\u03c5\u03c1\u03cc\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03bc\u03ad\u03c3\u03c9 \u03c4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf\u03c5 \u03a4\u03bf\u03c5\u03bc\u03c0\u03c9\u03c4\u03cc\u03c2 \u03a0\u03c1\u03af\u03bd\u03bf\u03c2","path":"Crete\/Crete_Psiloritis_E4_Fourfouras_TimiosStavros","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":10732,"name_EN":"Psiloritis: E4 Fourfouras-Timios Stavross","description_EN":"Ascent to the summit via Toubotos Prinos refuge","ascent_time":375,"descent_time":275,"marker":"E4","level":12,"ascent":1966,"descent":11,"maxelev":2448,"minelev":475,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.7144 35.20166,24.77908 35.22661)","views":124,"millestones":"0,24.7142666,35.2114871#1,24.7210559,35.2068605#2,24.7277704,35.2045474#3,24.7356633,35.2023065#4,24.7405713,35.2070778#5,24.7473643,35.2076395#6,24.7577275,35.2075931#7,24.7663108,35.2085036#8,24.7755814,35.2112694#9,24.7786193,35.2182959#10.7,24.7709151,35.2262631","x":24.7485052,"y":35.2075067,"coor":[[24.7142666,35.2114871],[24.714749,35.2111258],[24.7153103,35.2112397],[24.7168693,35.2111133],[24.7170767,35.2109678],[24.7172922,35.2104796],[24.7172416,35.2097225],[24.7173169,35.2095417],[24.7174806,35.2094145],[24.7182921,35.2092474],[24.7183376,35.2095041],[24.7187993,35.2095284],[24.7190072,35.209437],[24.7193419,35.2087678],[24.720009,35.2084212],[24.7204113,35.2079499],[24.7204198,35.2076703],[24.7208358,35.2074965],[24.7210646,35.2072878],[24.7210181,35.2069995],[24.7211459,35.2065389],[24.7213296,35.2061951],[24.7215264,35.2060858],[24.7216993,35.2057601],[24.722009,35.2060017],[24.7221083,35.2060462],[24.7221738,35.2059917],[24.7220953,35.2058209],[24.7221267,35.2056404],[24.7218374,35.2052273],[24.7218918,35.2051639],[24.7222322,35.2051438],[24.7226566,35.2046904],[24.7231375,35.2044171],[24.7234881,35.2043068],[24.7242893,35.2042208],[24.724629,35.2041286],[24.7255707,35.2037803],[24.7259522,35.2034354],[24.7260619,35.2034257],[24.726337,35.2038659],[24.7264472,35.2039013],[24.7272023,35.2037999],[24.7278861,35.2041023],[24.7278767,35.2042827],[24.7277687,35.2044908],[24.7277795,35.2047792],[24.7278571,35.2048599],[24.7278371,35.2050764],[24.7278927,35.2051482],[24.7282558,35.2050649],[24.7285179,35.204883],[24.7289326,35.2047362],[24.7290237,35.2047041],[24.729233,35.204766],[24.7293316,35.2047383],[24.7297623,35.204605],[24.7306732,35.2045093],[24.7307717,35.2044636],[24.7307683,35.204085],[24.7319654,35.2040417],[24.7322717,35.2039046],[24.7329522,35.2038373],[24.7336614,35.2035219],[24.7336211,35.203698],[24.7339175,35.2036782],[24.7342437,35.2037574],[24.7343961,35.2036032],[24.73435,35.20336],[24.734577,35.2029528],[24.7349148,35.2026442],[24.7350325,35.2023009],[24.7352081,35.2022818],[24.735517,35.2024242],[24.7361168,35.2019336],[24.736475,35.2026686],[24.7365554,35.2030648],[24.7367231,35.2033884],[24.7370196,35.2033686],[24.7371858,35.2035298],[24.7372426,35.2037369],[24.7372973,35.2037095],[24.7374737,35.2037806],[24.7375626,35.2038882],[24.73775,35.2039682],[24.7378946,35.2041567],[24.7383386,35.2034507],[24.7384156,35.2034683],[24.7384715,35.2035671],[24.7386368,35.2036292],[24.738693,35.2037731],[24.7388245,35.2037363],[24.7390464,35.2039693],[24.7393215,35.2040218],[24.7395225,35.2043812],[24.7396433,35.2043805],[24.7400086,35.2046848],[24.740361,35.2047819],[24.7404276,35.2048536],[24.7407074,35.2054199],[24.7407325,35.2057624],[24.7404644,35.2064854],[24.7405913,35.2071519],[24.7411484,35.2080141],[24.7412142,35.2079956],[24.7414127,35.2080846],[24.7415802,35.2083811],[24.7420776,35.2087117],[24.7427496,35.208906],[24.7428243,35.2086711],[24.743055,35.2086696],[24.743196,35.2084704],[24.7433059,35.2084697],[24.743349,35.2083793],[24.7434156,35.208451],[24.7440384,35.2080775],[24.7441691,35.2079505],[24.7440234,35.2077913],[24.7441671,35.2076597],[24.7444088,35.2076582],[24.7445171,35.2074862],[24.7447253,35.2074308],[24.7446354,35.207215],[24.7447666,35.207142],[24.7447441,35.2070791],[24.7449301,35.2069968],[24.7449073,35.2069067],[24.7449738,35.2069695],[24.7451715,35.2069682],[24.7455647,35.2067133],[24.7458103,35.2071446],[24.7463308,35.2076013],[24.7463988,35.2078263],[24.7464203,35.2077721],[24.7467618,35.2078782],[24.7472649,35.2076316],[24.7477487,35.2076737],[24.7481644,35.2074728],[24.7485052,35.2075067],[24.7492733,35.2074028],[24.7499653,35.2073895],[24.7503175,35.2074594],[24.7507236,35.2074118],[24.7511872,35.2076524],[24.7514068,35.207642],[24.7517046,35.2077664],[24.751913,35.2077291],[24.7524418,35.2078881],[24.7533766,35.2079905],[24.7537276,35.2079342],[24.7538806,35.2078431],[24.7540465,35.2079683],[24.7543297,35.207696],[24.7550976,35.207574],[24.7553743,35.2076534],[24.7556708,35.2075636],[24.7559567,35.2075889],[24.7566809,35.2074942],[24.7569008,35.2075109],[24.7571876,35.2076353],[24.7585379,35.2075367],[24.758978,35.2075971],[24.7593528,35.207739],[24.7594404,35.2077024],[24.7602764,35.2078234],[24.7604625,35.2077501],[24.7605958,35.2079115],[24.7606838,35.20792],[24.7608694,35.2077926],[24.7612813,35.2083716],[24.7613623,35.2082967],[24.7615427,35.2076103],[24.7617803,35.207176],[24.761836,35.2071869],[24.7623519,35.2071386],[24.7625625,35.2073356],[24.7628706,35.2073878],[24.7633243,35.2077366],[24.763491,35.2079429],[24.763933,35.2082106],[24.7641309,35.2082274],[24.7644177,35.2083518],[24.7652198,35.2083648],[24.7653639,35.2084991],[24.7658264,35.2086134],[24.7662099,35.2085028],[24.7667373,35.2085085],[24.766782,35.2085893],[24.7669907,35.208588],[24.7673992,35.2088018],[24.7676839,35.2087008],[24.767994,35.2089604],[24.7682901,35.2089044],[24.7686666,35.2092266],[24.7696045,35.2096535],[24.7702358,35.2101904],[24.7707322,35.2104037],[24.7721731,35.2105839],[24.7726116,35.2104819],[24.7730261,35.2101636],[24.7732461,35.2101893],[24.7735998,35.2104125],[24.7736891,35.2105652],[24.7739541,35.2107077],[24.7739659,35.2107888],[24.7742084,35.2108684],[24.7744932,35.2107855],[24.7750132,35.2111608],[24.7752336,35.2112316],[24.7759594,35.2113081],[24.7759711,35.2113801],[24.776444,35.2114312],[24.7764994,35.2114849],[24.77684,35.2114827],[24.7771602,35.211652],[24.7774998,35.2115416],[24.7775552,35.2115954],[24.7779363,35.2123864],[24.7780658,35.2132963],[24.7784214,35.2137178],[24.7785337,35.2139695],[24.7785684,35.2141496],[24.7784712,35.2143216],[24.7786481,35.2144467],[24.7787182,35.214879],[24.7787958,35.2149507],[24.7787866,35.2151401],[24.7786883,35.2151948],[24.7786686,35.2154384],[24.7785923,35.215502],[24.7786069,35.2158806],[24.7784445,35.2161341],[24.7785558,35.2162777],[24.7784916,35.2164584],[24.7785918,35.2166021],[24.778486,35.2170265],[24.7787112,35.2176022],[24.7786029,35.2177652],[24.7786193,35.2183331],[24.7784809,35.2187939],[24.7784304,35.2192631],[24.7785442,35.2196681],[24.7787876,35.2198469],[24.7786571,35.2199829],[24.7789016,35.2202789],[24.7790587,35.2206206],[24.7792571,35.2206824],[24.7791041,35.2207735],[24.7789851,35.2209637],[24.7791413,35.2212151],[24.779143,35.2213955],[24.7790998,35.2214679],[24.7786177,35.2216152],[24.7780561,35.2214836],[24.7778804,35.2215028],[24.7774573,35.2220645],[24.7770189,35.2221846],[24.7770525,35.2222565],[24.776954,35.2222932],[24.7768894,35.2224379],[24.7762755,35.2225861],[24.77608,35.2228218],[24.7759703,35.2228405],[24.7758957,35.2230844],[24.7755915,35.2234561],[24.7751215,35.2237115],[24.7748276,35.224002],[24.7741067,35.2244664],[24.7739983,35.2246204],[24.7738711,35.2251081],[24.772843,35.2256196],[24.7721525,35.2258044],[24.7721092,35.2258768],[24.7718895,35.2258782],[24.7717366,35.2259874],[24.7709151,35.2262631]]},{"id":16022,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u039a\u03b1\u03bc\u03ac\u03c1\u03b5\u03c2-\u03a4\u03af\u03bc\u03b9\u03bf\u03c2 \u03a3\u03c4\u03b1\u03c5\u03c1\u03cc\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b9\u03c2 \u039a\u03b1\u03bc\u03ac\u03c1\u03b5\u03c2 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7","path":"Crete\/Crete_Psiloritis_E4_Kamares_TimiosStavros","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":4,"length":15339,"name_EN":"Psiloritis: Kamares-Timios Stavros","description_EN":"Ascent from Kamares to the summit of Psiloritis","ascent_time":580,"descent_time":470,"marker":"E4","level":11,"ascent":2066,"descent":214,"maxelev":2448,"minelev":580,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.77091 35.1528,24.82494 35.22626)","views":79,"millestones":"0,24.8182397,35.1528418#1,24.8228873,35.1572128#2,24.8249873,35.1619503#3,24.8213960,35.1683414#4,24.8138847,35.1712860#5,24.8120852,35.1770586#6,24.8149748,35.1838378#7,24.8138608,35.1896298#8,24.8144230,35.1968407#9,24.8172769,35.2008933#10,24.8129383,35.2085243#11,24.8083754,35.2154381#12,24.7997844,35.2186157#13,24.7904656,35.2227618#14,24.7810994,35.2236034#15.3,24.7709151,35.2262631","x":24.8144408,"y":35.1807678,"coor":[[24.8182397,35.1528418],[24.8183738,35.1530844],[24.8182859,35.153076],[24.8181784,35.1533021],[24.8182677,35.1534458],[24.8182372,35.1536984],[24.8179789,35.1542142],[24.817848,35.1542962],[24.8180909,35.1544298],[24.8179726,35.1546831],[24.8180516,35.1548899],[24.8179821,35.1549467],[24.8179631,35.1552354],[24.8181727,35.1553422],[24.8181846,35.1554323],[24.8187999,35.1554822],[24.8190535,35.1555887],[24.819152,35.155552],[24.8194488,35.1555861],[24.8194612,35.1557302],[24.8195709,35.1557205],[24.8195936,35.1557925],[24.8198021,35.1557911],[24.8210049,35.156387],[24.8212027,35.1564127],[24.8213663,35.1563034],[24.8219038,35.1562547],[24.8218728,35.1564443],[24.8223113,35.1563782],[24.8223339,35.1564411],[24.8222471,35.1565499],[24.8224559,35.1565666],[24.823168,35.1564084],[24.8229401,35.1566715],[24.822887,35.1568522],[24.8229536,35.1569238],[24.8228687,35.157213],[24.8229675,35.1572123],[24.8229148,35.1574381],[24.8230371,35.1575815],[24.822994,35.157663],[24.8237186,35.157658],[24.8238395,35.1576752],[24.8239287,35.1578099],[24.8235913,35.1581007],[24.823516,35.1582545],[24.8232316,35.1583647],[24.823276,35.1584094],[24.8232218,35.1584819],[24.8233759,35.158517],[24.8233984,35.1585709],[24.8232899,35.1587069],[24.8235093,35.1586874],[24.8235099,35.1587415],[24.8236199,35.1587588],[24.8240815,35.1588097],[24.8243356,35.1589613],[24.8231123,35.1596008],[24.8234978,35.1597244],[24.8232248,35.1598705],[24.8237081,35.1598853],[24.8239511,35.1600279],[24.8240841,35.1601532],[24.823996,35.1601268],[24.8240403,35.1601625],[24.8239422,35.1602353],[24.8244163,35.1604305],[24.8244168,35.1604846],[24.8245268,35.1605019],[24.8244727,35.1605834],[24.8247379,35.1607529],[24.8247507,35.1609331],[24.824644,35.1612404],[24.8246104,35.1611685],[24.8246138,35.1615112],[24.8250356,35.1619591],[24.8247936,35.1619157],[24.8248394,35.1621047],[24.8245326,35.1621609],[24.8245563,35.1623411],[24.8243592,35.1623965],[24.8243708,35.1624506],[24.8246016,35.162476],[24.8250325,35.1627436],[24.8249448,35.1627532],[24.8249797,35.1629514],[24.8246508,35.1629987],[24.824575,35.1630984],[24.8241654,35.1638586],[24.824007,35.1644818],[24.823758,35.1648352],[24.8237262,35.1649526],[24.8238935,35.165204],[24.8239884,35.1659066],[24.8237854,35.166467],[24.8234717,35.1669381],[24.8232303,35.1669577],[24.823176,35.1670122],[24.8231094,35.1669405],[24.8230219,35.1669772],[24.822817,35.1673483],[24.8226309,35.1674036],[24.8223011,35.1673608],[24.8221149,35.1674161],[24.8219087,35.167652],[24.8217011,35.1677616],[24.8215835,35.168078],[24.8214421,35.1682052],[24.8213887,35.1683588],[24.8211922,35.1684774],[24.8208017,35.1689489],[24.8203322,35.1692226],[24.8200516,35.1697114],[24.8200302,35.1697656],[24.8198104,35.1697401],[24.8196583,35.1699124],[24.8188278,35.1703148],[24.818242,35.169931],[24.8178683,35.1698975],[24.817628,35.1700253],[24.8173753,35.170009],[24.8169673,35.1698404],[24.8167267,35.1699412],[24.8168063,35.1702112],[24.8167409,35.1702658],[24.8151958,35.1705827],[24.8141184,35.1704637],[24.8136883,35.1702773],[24.8137993,35.1703938],[24.8139248,35.1708708],[24.8138754,35.1714212],[24.8132674,35.1721195],[24.8130096,35.1726984],[24.8121034,35.1732274],[24.8118103,35.173572],[24.8115052,35.1738085],[24.8113974,35.1740076],[24.8111353,35.1741626],[24.8110075,35.1745602],[24.8111868,35.1749197],[24.8110681,35.1751369],[24.8110496,35.1754797],[24.8109185,35.1755527],[24.8104909,35.1756187],[24.8104041,35.1757274],[24.810373,35.175908],[24.8105595,35.1758887],[24.8105163,35.1759701],[24.8106148,35.1759334],[24.8106484,35.1759963],[24.8108131,35.1759952],[24.8108032,35.1761035],[24.8110774,35.1760656],[24.8110022,35.1762374],[24.8113316,35.1762352],[24.8112348,35.1764342],[24.8113776,35.1764423],[24.8113571,35.1765867],[24.8115766,35.1765762],[24.8115561,35.1767206],[24.8117867,35.1767191],[24.8117009,35.176927],[24.8120629,35.1768885],[24.8120318,35.1770691],[24.8121304,35.1770504],[24.8121418,35.1770864],[24.8128108,35.1770007],[24.8124444,35.1776975],[24.812435,35.1778599],[24.8125227,35.1778412],[24.8124815,35.178121],[24.8125809,35.1781745],[24.8127281,35.1786153],[24.8133234,35.1788457],[24.8138772,35.1793199],[24.8138355,35.1795366],[24.8138904,35.1795362],[24.8139136,35.1796623],[24.8138603,35.179825],[24.8139706,35.1798693],[24.8140379,35.1800131],[24.8141477,35.1800124],[24.8143139,35.1801555],[24.8142851,35.1805705],[24.8144408,35.1807678],[24.8142919,35.1812557],[24.8143693,35.1813093],[24.8143378,35.1814538],[24.8145049,35.1816871],[24.8146368,35.1816953],[24.8148279,35.1821448],[24.8148631,35.18237],[24.8146914,35.1827679],[24.81478,35.1828417],[24.8151342,35.1831188],[24.815293,35.1836227],[24.8149439,35.1838595],[24.8146403,35.1842492],[24.814689,35.1847268],[24.8146191,35.1854306],[24.8149304,35.1858072],[24.8151652,35.1862204],[24.8152915,35.1867696],[24.8157672,35.187118],[24.8167056,35.1875986],[24.8171071,35.1882091],[24.8169133,35.1885981],[24.8162459,35.1888551],[24.8158544,35.1892454],[24.8144451,35.1889032],[24.8138982,35.1891323],[24.8138306,35.1900615],[24.8131818,35.1910938],[24.8127118,35.1913224],[24.8119342,35.191553],[24.8117435,35.1922576],[24.8118677,35.1925994],[24.8123212,35.192912],[24.8123441,35.193002],[24.8121728,35.193454],[24.8122342,35.1941028],[24.8121616,35.1945361],[24.8124488,35.1946964],[24.8127176,35.1952176],[24.8129396,35.1954506],[24.8130533,35.1958285],[24.8136414,35.1964287],[24.813896,35.1966253],[24.8144034,35.1968383],[24.8151953,35.1969322],[24.8159854,35.1968547],[24.8162804,35.1966995],[24.8167596,35.1962815],[24.8172564,35.1954395],[24.8173339,35.1954931],[24.8173963,35.1962411],[24.8175759,35.1966276],[24.8179092,35.1970041],[24.8180561,35.1974088],[24.8180353,35.1975262],[24.8177571,35.1978572],[24.817726,35.1980377],[24.8178962,35.1985866],[24.8179677,35.1991361],[24.8181139,35.1994778],[24.8180937,35.1996583],[24.8178878,35.1999392],[24.8177926,35.2003005],[24.816902,35.2013164],[24.8164445,35.2017072],[24.8162248,35.2017087],[24.8159407,35.2018549],[24.8155937,35.202317],[24.8150173,35.202898],[24.8149122,35.2033676],[24.8146757,35.2038922],[24.8145112,35.2046101],[24.8144644,35.2052867],[24.8142721,35.205829],[24.8134637,35.2062852],[24.8132893,35.2064217],[24.8130078,35.2068383],[24.8129363,35.2073798],[24.812992,35.2074606],[24.8130198,35.2080375],[24.8129802,35.2084796],[24.8122627,35.2092418],[24.8121556,35.209513],[24.8121932,35.2099816],[24.8122161,35.2100717],[24.8123264,35.210116],[24.8123856,35.2105484],[24.8120801,35.2107578],[24.8116971,35.2109137],[24.8112624,35.2113945],[24.8105614,35.2116066],[24.8101682,35.2118437],[24.8100217,35.212584],[24.8100364,35.2129536],[24.8098962,35.213216],[24.8096896,35.2134338],[24.8094705,35.2134984],[24.8090858,35.2134829],[24.809083,35.2143125],[24.8089969,35.2144934],[24.8089803,35.2150345],[24.8084768,35.2152272],[24.8081001,35.2160142],[24.8074027,35.2165959],[24.806977,35.2168873],[24.8067799,35.2169518],[24.806551,35.2171336],[24.8064076,35.2170805],[24.8057408,35.2174275],[24.8054663,35.2174474],[24.8050183,35.2177029],[24.8048445,35.2179024],[24.8044501,35.2180222],[24.8042625,35.2179333],[24.8041088,35.2179524],[24.8039673,35.2180795],[24.8036051,35.218118],[24.8035168,35.2180825],[24.803265,35.2181744],[24.8030669,35.2181396],[24.8030237,35.218221],[24.8028364,35.2181682],[24.8028494,35.2183665],[24.8027508,35.2184032],[24.8025958,35.218278],[24.8021023,35.2183714],[24.8019368,35.2183094],[24.8016957,35.2183741],[24.8014202,35.2182858],[24.8012893,35.2183858],[24.8011346,35.2182967],[24.8009718,35.2184961],[24.8008948,35.2184876],[24.8007834,35.2183351],[24.8004977,35.218337],[24.7990748,35.2188964],[24.7984552,35.2195767],[24.7975389,35.220259],[24.7963418,35.220321],[24.7952925,35.2208869],[24.7941312,35.2212372],[24.7925336,35.2219239],[24.7920835,35.2219629],[24.7916464,35.2219974],[24.7912411,35.2221263],[24.7907293,35.2226075],[24.7905106,35.2227171],[24.789825,35.2234069],[24.7897483,35.2234254],[24.7892807,35.2232233],[24.7883103,35.222869],[24.7879033,35.2228265],[24.7878135,35.2226287],[24.7875381,35.2225584],[24.7875045,35.2224865],[24.7873072,35.2225419],[24.7872382,35.2222177],[24.7870717,35.2220475],[24.7865807,35.2224113],[24.7863838,35.2224938],[24.7858682,35.2225873],[24.7853409,35.2225997],[24.7845731,35.22274],[24.7840253,35.2229148],[24.7830815,35.2230291],[24.7824025,35.223268],[24.7818649,35.2233526],[24.7812625,35.2235639],[24.7802875,35.2238001],[24.7784149,35.2244704],[24.7782062,35.2244717],[24.7773617,35.2246485],[24.7770542,35.2246594],[24.7768112,35.2245348],[24.7762306,35.2247188],[24.7751972,35.2246713],[24.7748683,35.2247456],[24.7738711,35.2251081],[24.772843,35.2256196],[24.7721525,35.2258044],[24.7721092,35.2258768],[24.7718895,35.2258782],[24.7717366,35.2259874],[24.7709151,35.2262631]]},{"id":16024,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u039d\u03af\u03b4\u03b1-\u03a4\u03af\u03bc\u03b9\u03bf\u03c2 \u03a3\u03c4\u03b1\u03c5\u03c1\u03cc\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u039d\u03af\u03b4\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7","path":"Crete\/Crete_Psiloritis_E4_Nida_TimiosStavros","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":8629,"name_EN":"Psiloritis: E4 Nida-Timios Stavros","description_EN":"Ascent from Nida plateau to the summit of Psiloritis","ascent_time":250,"descent_time":200,"marker":"E4","level":11,"ascent":1178,"descent":128,"maxelev":2441,"minelev":1372,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.77091 35.19868,24.83456 35.22626)","views":83,"millestones":"0,24.8346456,35.2067249#1,24.8307830,35.2003598#2,24.8230946,35.2019842#3,24.8144768,35.2050587#4,24.8100765,35.2122877#5,24.8037449,35.2181056#6,24.7947187,35.2210645#7,24.7857624,35.2225895#8.6,24.7709137,35.2262631","x":24.8122147,"y":35.2100739,"coor":[[24.8346456,35.2067249],[24.8343068,35.2068941],[24.8341968,35.2068768],[24.8340523,35.2067155],[24.8340541,35.2064923],[24.8338115,35.2062686],[24.8335811,35.2062972],[24.8333607,35.2062266],[24.8331374,35.2058765],[24.8328952,35.205824],[24.8324199,35.2055388],[24.8320152,35.2055122],[24.8319257,35.2054249],[24.8319636,35.2048296],[24.8323295,35.2040877],[24.8322096,35.2036422],[24.8321644,35.2035162],[24.8322521,35.2034976],[24.8317182,35.2028521],[24.8316501,35.2026361],[24.8315387,35.2024836],[24.8313849,35.2024847],[24.8314933,35.2023397],[24.8310636,35.2022164],[24.8311924,35.2019179],[24.831,35.2013602],[24.8310206,35.2012338],[24.8311946,35.2010613],[24.8311046,35.2008455],[24.8308715,35.2006127],[24.8308589,35.2004505],[24.8306364,35.2001815],[24.8305907,35.2000105],[24.8305463,35.1999657],[24.8304809,35.2000113],[24.8304139,35.1999035],[24.8300272,35.1996898],[24.8299891,35.1991761],[24.8293917,35.1987654],[24.8291386,35.198722],[24.8285353,35.1988073],[24.8284277,35.1990245],[24.8282521,35.1990437],[24.8280784,35.1992432],[24.8279024,35.1992264],[24.8274112,35.1995273],[24.827064,35.1999535],[24.8263536,35.200319],[24.8259267,35.2004662],[24.8257304,35.2006118],[24.8256663,35.2007836],[24.8253171,35.2010204],[24.8251227,35.2013463],[24.8246231,35.2019087],[24.8244701,35.2019909],[24.8242597,35.2018211],[24.8241057,35.2018041],[24.8239743,35.20185],[24.8239533,35.2019404],[24.8236793,35.2020053],[24.822954,35.2019832],[24.8228012,35.2020744],[24.8221186,35.2019258],[24.8217707,35.2022888],[24.8215723,35.202227],[24.8210571,35.2023387],[24.8206285,35.2023146],[24.8203121,35.2025331],[24.8195857,35.2024028],[24.8193887,35.2024673],[24.8190615,35.2027039],[24.8188861,35.2027412],[24.8182263,35.2026735],[24.8176245,35.202912],[24.8176251,35.2029751],[24.817537,35.2029577],[24.8174948,35.2031293],[24.8173641,35.2032383],[24.8170016,35.2032408],[24.8160331,35.204167],[24.8158352,35.2041503],[24.8155397,35.2042605],[24.8151542,35.2041549],[24.8150666,35.2041916],[24.8150029,35.2044084],[24.8148062,35.2045179],[24.8147196,35.2046448],[24.8145106,35.2046101],[24.8144631,35.2052889],[24.8142708,35.2058312],[24.8134624,35.2062875],[24.8132879,35.2064239],[24.8130065,35.2068406],[24.8129349,35.2073821],[24.8129907,35.2074629],[24.8130184,35.2080397],[24.8129789,35.2084818],[24.8122614,35.2092441],[24.8121542,35.2095153],[24.8121918,35.2099839],[24.8122147,35.2100739],[24.812325,35.2101183],[24.8123842,35.2105507],[24.8120787,35.2107601],[24.8116957,35.210916],[24.8112611,35.2113968],[24.81056,35.2116088],[24.8101668,35.2118459],[24.8100204,35.2125863],[24.810035,35.2129559],[24.8098948,35.2132183],[24.8096882,35.2134361],[24.8094691,35.2135007],[24.8090844,35.2134852],[24.8090817,35.2143148],[24.8089956,35.2144957],[24.808979,35.2150368],[24.8084755,35.2152295],[24.8080987,35.2160165],[24.8074013,35.2165982],[24.8069757,35.2168896],[24.8067786,35.216954],[24.8065496,35.2171359],[24.8064063,35.2170827],[24.8057395,35.2174298],[24.805465,35.2174497],[24.805017,35.2177051],[24.8048432,35.2179046],[24.8044488,35.2180245],[24.8042611,35.2179356],[24.8041075,35.2179546],[24.8039659,35.2180818],[24.8036037,35.2181203],[24.8035155,35.2180848],[24.8032636,35.2181766],[24.8030655,35.2181419],[24.8030224,35.2182233],[24.8028351,35.2181704],[24.802848,35.2183687],[24.8027495,35.2184054],[24.8025944,35.2182802],[24.8021009,35.2183737],[24.8019355,35.2183117],[24.8016944,35.2183764],[24.8014188,35.218288],[24.801288,35.2183881],[24.8011333,35.2182989],[24.8009704,35.2184984],[24.8008934,35.2184899],[24.800782,35.2183373],[24.8004964,35.2183392],[24.7990735,35.2188986],[24.7984538,35.219579],[24.7975375,35.2202613],[24.7963405,35.2203233],[24.7952912,35.2208892],[24.7941299,35.2212395],[24.7925323,35.2219262],[24.7920822,35.2219652],[24.791645,35.2219996],[24.7912397,35.2221285],[24.7907279,35.2226097],[24.7905092,35.2227194],[24.7898237,35.2234091],[24.7897469,35.2234277],[24.7892793,35.2232233],[24.7883089,35.222869],[24.787902,35.2228265],[24.7878121,35.2226288],[24.7875368,35.2225584],[24.7875031,35.2224865],[24.7873058,35.2225419],[24.7872368,35.2222177],[24.7870703,35.2220475],[24.7865794,35.2224114],[24.7863824,35.2224938],[24.7858668,35.2225873],[24.7853395,35.2225997],[24.7845717,35.22274],[24.784024,35.2229148],[24.7830801,35.2230291],[24.7824011,35.223268],[24.7818635,35.2233526],[24.7812612,35.2235639],[24.7802868,35.2238001],[24.7784142,35.2244704],[24.7782055,35.2244717],[24.777361,35.2246485],[24.7770535,35.2246594],[24.7768105,35.2245348],[24.7762299,35.2247188],[24.7751965,35.2246714],[24.7748676,35.2247456],[24.7738697,35.2251081],[24.7728416,35.2256196],[24.7721511,35.2258044],[24.7721078,35.2258768],[24.7718881,35.2258782],[24.7717353,35.2259874],[24.7709137,35.2262631]]},{"id":16025,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u03a0\u03c1\u03af\u03bd\u03bf\u03c2-\u0394\u03ac\u03c3\u03bf\u03c2 \u03a1\u03bf\u03cd\u03b2\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u0391\u03c3\u03af\u03c4\u03b5\u03c2 \u03c3\u03c4\u03bf \u03ba\u03b1\u03c4. \u03a0\u03c1\u03af\u03bd\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c4\u03ac \u03c3\u03c4\u03bf\u03bd \u0391\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7 \u03a1\u03bf\u03cd\u03b2\u03b1","path":"Crete\/Crete_Psiloritis_E4_Prinos_Rouvas","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":13470,"name_EN":"Psiloritise: E4 Prinos-Rouvas","description_EN":"E4 section from Asites to Rouvas forest via the Prinos ref.","ascent_time":485,"descent_time":410,"marker":"E4","level":11,"ascent":1154,"descent":777,"maxelev":1693,"minelev":587,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.91533 35.16266,24.97925 35.20807)","views":46,"millestones":"0,24.9797833,35.2074724#1,24.9758282,35.2028621#2,24.9760680,35.1988219#3,24.9744011,35.1992218#4,24.9750746,35.1951200#5,24.9722303,35.1874446#6,24.9658256,35.1869418#7,24.9575178,35.1878429#8,24.9507569,35.1838884#9,24.9441946,35.1780114#10,24.9380538,35.1714424#11,24.9340267,35.1644808#12,24.9246322,35.1645398#13.5,24.9148521,35.1658226","x":24.9558396,"y":35.1881426,"coor":[[24.9797833,35.2074724],[24.9796746,35.2075634],[24.9793556,35.2075299],[24.9791348,35.2074416],[24.9785467,35.2069594],[24.9781846,35.2069894],[24.9778969,35.2068204],[24.9772828,35.2069155],[24.9768976,35.2068555],[24.9760201,35.2060511],[24.9753953,35.2061643],[24.9748211,35.2059165],[24.9745542,35.2056481],[24.9745295,35.2054229],[24.9748772,35.2050955],[24.9749722,35.2047792],[24.9750704,35.2047153],[24.9755417,35.2046303],[24.9760768,35.2043645],[24.9764227,35.2038929],[24.9765292,35.2036125],[24.9765048,35.2034053],[24.9760064,35.2030667],[24.9755609,35.2025563],[24.9755916,35.2023757],[24.9758217,35.2023198],[24.9760607,35.2021015],[24.9761442,35.2017311],[24.9760963,35.2013979],[24.9756326,35.2012032],[24.9754764,35.2010061],[24.9754067,35.2006911],[24.9756868,35.200229],[24.9756151,35.2002025],[24.9753326,35.2004663],[24.9752805,35.2007011],[24.9753728,35.2010701],[24.975697,35.2015363],[24.9755227,35.201664],[24.9749087,35.2017591],[24.9752344,35.2014409],[24.9749652,35.2009742],[24.9748598,35.200425],[24.9748913,35.2003075],[24.9751958,35.2000436],[24.9755091,35.1996083],[24.9756688,35.1991832],[24.9760289,35.1989819],[24.9761038,35.198819],[24.9759831,35.198829],[24.975438,35.1991761],[24.9749184,35.1998114],[24.974427,35.2000588],[24.9742034,35.2006557],[24.9737609,35.2013085],[24.9734107,35.2014195],[24.9718492,35.2022075],[24.9718152,35.2021266],[24.9720437,35.2019354],[24.9726984,35.2015695],[24.9729663,35.2010083],[24.9734899,35.2006975],[24.9736489,35.2002093],[24.9736319,35.1997045],[24.9743305,35.1993383],[24.9744382,35.1991571],[24.9744553,35.1987512],[24.9750188,35.1981064],[24.9751536,35.1974381],[24.9750552,35.197475],[24.9745567,35.198038],[24.9747363,35.1974415],[24.9746751,35.196919],[24.9747287,35.1968104],[24.9754915,35.1962993],[24.9766762,35.1961635],[24.9771143,35.1960518],[24.9776145,35.195633],[24.9775029,35.1954806],[24.9773708,35.1954636],[24.9767789,35.1955676],[24.9762184,35.195536],[24.9751481,35.1951389],[24.9745311,35.1949816],[24.9739029,35.1938866],[24.97373,35.1932027],[24.9737618,35.1931033],[24.9741767,35.1928926],[24.9742951,35.1926932],[24.9743559,35.192269],[24.9741175,35.1916127],[24.973947,35.1914788],[24.973768,35.1912075],[24.9736936,35.1904958],[24.9735247,35.1901455],[24.9735395,35.189548],[24.9734083,35.1890802],[24.9731196,35.188821],[24.973063,35.1886772],[24.9730794,35.1882082],[24.9728094,35.1876694],[24.9723672,35.1874295],[24.9723566,35.1874656],[24.9722026,35.1874398],[24.9722258,35.1875478],[24.9716832,35.1871735],[24.970961,35.186476],[24.9706595,35.1860636],[24.9703617,35.1859578],[24.9701828,35.1856887],[24.9689764,35.1849139],[24.9688328,35.1848407],[24.9687318,35.1846612],[24.9688876,35.1842542],[24.9685244,35.1843044],[24.9681749,35.1844695],[24.9680102,35.1844708],[24.967474,35.1846374],[24.9673803,35.185071],[24.9670771,35.185434],[24.9669709,35.1857415],[24.9666449,35.1860416],[24.966745,35.18614],[24.9666253,35.1862401],[24.9666496,35.1864383],[24.9665189,35.1865295],[24.9665863,35.1866552],[24.9658021,35.186923],[24.9658687,35.1869765],[24.9654649,35.1871961],[24.9649053,35.1872457],[24.9647906,35.1873007],[24.9646713,35.1874279],[24.9645615,35.1874288],[24.9645078,35.1875284],[24.9642458,35.1876657],[24.9640153,35.1876766],[24.9639069,35.1878037],[24.9635784,35.1878874],[24.9635463,35.1879598],[24.9634362,35.1879336],[24.9635042,35.1881134],[24.963275,35.1882325],[24.9631999,35.1883864],[24.9627761,35.1887684],[24.962734,35.1889311],[24.9621557,35.1892512],[24.961849,35.1893258],[24.9614681,35.1896174],[24.9610945,35.1896113],[24.9608296,35.1894962],[24.9606209,35.1894979],[24.9604443,35.1894271],[24.960368,35.1894728],[24.9599612,35.18944],[24.9597311,35.1894869],[24.9591333,35.1890859],[24.9588885,35.1889886],[24.9584915,35.1888565],[24.9584023,35.18874],[24.9583772,35.1884787],[24.9576247,35.1879978],[24.957513,35.1878363],[24.9573585,35.1880697],[24.9571839,35.1881613],[24.9565596,35.1883105],[24.9562624,35.1882587],[24.9559887,35.188333],[24.9558396,35.1881426],[24.9559033,35.1879618],[24.9558353,35.187782],[24.955831,35.1874123],[24.9556629,35.1871251],[24.9554302,35.1869466],[24.9553627,35.1868119],[24.9549765,35.1866617],[24.9549203,35.1865539],[24.9549742,35.1864633],[24.9547553,35.1865282],[24.9545025,35.1865121],[24.9541709,35.1863344],[24.9537777,35.1865178],[24.9532176,35.1865222],[24.9529878,35.1865962],[24.9528432,35.186444],[24.9521578,35.1860617],[24.952134,35.1858996],[24.9517241,35.1855962],[24.9517228,35.185488],[24.9515021,35.1853996],[24.9514348,35.1852829],[24.9513024,35.1852299],[24.9513437,35.1850041],[24.9509587,35.1840063],[24.9505606,35.183775],[24.9503017,35.183236],[24.9499597,35.1831034],[24.9498213,35.1825365],[24.9495564,35.1824213],[24.9493344,35.1822157],[24.9491208,35.1817936],[24.9491512,35.1815769],[24.9490722,35.1813882],[24.9489617,35.181335],[24.9487944,35.1811109],[24.9486067,35.1810312],[24.9483519,35.1803096],[24.9481177,35.1799958],[24.9477857,35.179782],[24.9474887,35.1797393],[24.947265,35.1799236],[24.9471437,35.1798186],[24.946903,35.1796063],[24.9464418,35.1796099],[24.9456901,35.179183],[24.9455807,35.1792199],[24.9452506,35.1791684],[24.9449942,35.1788368],[24.9449594,35.1786748],[24.9448159,35.1786128],[24.9446595,35.1783796],[24.9444276,35.1782732],[24.9442714,35.178058],[24.9440944,35.1779512],[24.9438856,35.1779348],[24.9438317,35.1780253],[24.9437547,35.1780169],[24.9436541,35.1778644],[24.9435885,35.177883],[24.9432004,35.1775614],[24.9431439,35.1774266],[24.9429786,35.1773738],[24.9428443,35.1771584],[24.9427785,35.1771679],[24.9426446,35.1769796],[24.9426546,35.1768984],[24.9425776,35.17689],[24.9424646,35.1766113],[24.9422423,35.1763786],[24.9421297,35.1761361],[24.9419637,35.1760291],[24.9419069,35.1758673],[24.9417627,35.1757422],[24.9416418,35.1757341],[24.94114,35.1750708],[24.9410272,35.1748101],[24.9406472,35.174236],[24.9403698,35.1739857],[24.9400783,35.173465],[24.9399011,35.1733401],[24.9395474,35.1733158],[24.9391979,35.1731247],[24.9390884,35.1731526],[24.938921,35.1729195],[24.9387164,35.1723169],[24.9383802,35.1717244],[24.9377701,35.1711881],[24.9375168,35.171127],[24.9377173,35.1707738],[24.9377166,35.1707197],[24.9375293,35.170658],[24.9375063,35.170568],[24.9376143,35.1704139],[24.9376329,35.1701252],[24.9375233,35.1701351],[24.9372906,35.1699565],[24.9372644,35.1695871],[24.9369314,35.1692741],[24.9368397,35.1689411],[24.9365846,35.1687177],[24.9365726,35.1686276],[24.936485,35.1686463],[24.936306,35.1683592],[24.9363197,35.1676377],[24.9362075,35.1674312],[24.9361706,35.1670889],[24.9361153,35.1670532],[24.9360279,35.16709],[24.935881,35.1667304],[24.9356834,35.166732],[24.9357138,35.1665153],[24.9355599,35.1664985],[24.9352823,35.1662301],[24.9348407,35.1660171],[24.9348682,35.165539],[24.9348457,35.1654941],[24.9346816,35.1655495],[24.9345109,35.1650278],[24.9342199,35.1645432],[24.9334926,35.1643143],[24.9332619,35.1643071],[24.933107,35.1642001],[24.933084,35.1641101],[24.9329303,35.1641113],[24.9328838,35.1638862],[24.9324198,35.1636373],[24.9318938,35.1637315],[24.9316647,35.1638595],[24.930746,35.1641732],[24.9303172,35.1641314],[24.9298675,35.1641709],[24.9295478,35.1640561],[24.9293144,35.1638145],[24.9289185,35.1637589],[24.9276514,35.1633719],[24.9262459,35.1633646],[24.9259836,35.1634748],[24.9255372,35.1638028],[24.9251641,35.1638237],[24.9249923,35.1641676],[24.9245473,35.1646309],[24.9242078,35.1647056],[24.9235488,35.1646926],[24.9234394,35.1647295],[24.9231168,35.1653271],[24.9230077,35.165391],[24.9217361,35.1646072],[24.9214143,35.1643031],[24.9209845,35.1641621],[24.9207523,35.1640196],[24.9201389,35.1631767],[24.9196991,35.1631259],[24.9192609,35.1632194],[24.91854,35.1635495],[24.918388,35.1637039],[24.9182705,35.1639934],[24.9177797,35.1642946],[24.9175734,35.1644946],[24.9168589,35.1644278],[24.9165303,35.1645025],[24.9161163,35.1647941],[24.9159759,35.1650026],[24.9156699,35.1651311],[24.9152565,35.1654679],[24.9150722,35.1656857],[24.9150411,35.1658482],[24.9148521,35.1658226]]},{"id":16026,"author":"AnaDigit","name_GR":"\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2: E4 \u0396\u03c1\u03cc\u03c2-\u0394\u03ac\u03c3\u03bf\u03c2 \u03a1\u03bf\u03cd\u03b2\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03bb\u03af\u03bc\u03bd\u03b7 \u0392\u03cc\u03c4\u03bf\u03bc\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u0391\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7 \u03a1\u03bf\u03cd\u03b2\u03b1","path":"Crete\/Crete_Psiloritis_E4_Zaros_Rouvas","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4998,"name_EN":"Psiloritis: E4 Zaros-Rouvas","description_EN":"E4 section from Votomos Lake to Rouvas forest","ascent_time":125,"descent_time":110,"marker":"E4","level":11,"ascent":625,"descent":92,"maxelev":961,"minelev":414,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.90379 35.13953,24.91456 35.16707)","views":27,"millestones":"0,24.9103966,35.1395609#1,24.9071308,35.1451404#2,24.9060027,35.1524581#3,24.9058898,35.1563365#5.0,24.9148521,35.1658226","x":24.9043674,"y":35.152074,"coor":[[24.9103966,35.1395609],[24.9102842,35.1401275],[24.9104863,35.1405318],[24.9110549,35.1403382],[24.9113641,35.1403178],[24.911852,35.1403276],[24.9111522,35.1405674],[24.9107167,35.1408952],[24.9098981,35.1413162],[24.9090705,35.1419085],[24.908734,35.1422536],[24.9080242,35.1425926],[24.9072191,35.1432388],[24.9070248,35.1435378],[24.9069288,35.143791],[24.906921,35.1440706],[24.9070559,35.1443581],[24.9069841,35.1448185],[24.9072429,35.1453846],[24.9072822,35.1459614],[24.9071967,35.1461694],[24.9067936,35.1464429],[24.9067537,35.1468039],[24.906555,35.1467062],[24.9064072,35.1472393],[24.9067762,35.1478407],[24.9066623,35.1484637],[24.9066867,35.1486799],[24.9068989,35.1490119],[24.906757,35.1490851],[24.9067472,35.1491844],[24.9069493,35.1495977],[24.9069116,35.150157],[24.9070027,35.1504448],[24.9068204,35.1508429],[24.9068348,35.1511494],[24.9065621,35.1513047],[24.9060578,35.1513716],[24.9063116,35.1514869],[24.906149,35.1516775],[24.9060745,35.1518855],[24.9061523,35.151975],[24.906032,35.152012],[24.9060555,35.1521561],[24.9058599,35.1523379],[24.9059371,35.1523644],[24.9058609,35.1524281],[24.906026,35.1524629],[24.9059066,35.15259],[24.9061931,35.1526781],[24.9061614,35.1527955],[24.905911,35.1529867],[24.9052111,35.1532264],[24.9043558,35.153323],[24.9042238,35.1532969],[24.9042473,35.1530713],[24.9043929,35.1523985],[24.9043674,35.152074],[24.9042792,35.1520476],[24.9039086,35.1522849],[24.9037903,35.1525112],[24.9038815,35.152817],[24.9036308,35.1529812],[24.9036455,35.1533147],[24.903892,35.1537637],[24.9040465,35.1538347],[24.9040478,35.1539519],[24.9044678,35.1542103],[24.9045589,35.1544981],[24.9047694,35.1546769],[24.9052215,35.1548539],[24.9056312,35.1551664],[24.9055511,35.1558613],[24.9057624,35.1561031],[24.9057864,35.1562923],[24.9066359,35.1566557],[24.9068928,35.1570505],[24.9073344,35.1572726],[24.9073039,35.1574892],[24.9074506,35.1578488],[24.9070276,35.1583208],[24.9066681,35.158576],[24.9064672,35.1592718],[24.9065713,35.1597399],[24.9070688,35.1600517],[24.9073134,35.1603294],[24.9071723,35.1604748],[24.9072438,35.1609792],[24.9070861,35.1616115],[24.9073413,35.1618531],[24.9074239,35.1623664],[24.9077566,35.1626615],[24.9078355,35.1628502],[24.9077187,35.1632028],[24.9078434,35.1635625],[24.9081752,35.1637764],[24.9083288,35.1637662],[24.908836,35.1639518],[24.9090706,35.1643107],[24.9092466,35.1643455],[24.9095785,35.1645684],[24.909835,35.1649181],[24.909936,35.1651157],[24.909874,35.1654678],[24.9102084,35.1659162],[24.9104116,35.1664106],[24.9103269,35.1669432],[24.9106147,35.1670222],[24.9110969,35.1669374],[24.9116105,35.1667171],[24.9122326,35.1666854],[24.9129619,35.1664793],[24.9138207,35.1665044],[24.9143774,35.1662116],[24.9148521,35.1658226]]},{"id":17402,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039a\u03b1\u03bb\u03ad\u03c1\u03b3\u03b7","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf \u03c3\u03c4\u03bf \u03ba\u03b1\u03c4. \u039a\u03b1\u03bb\u03ad\u03c1\u03b3\u03b7","path":"CRETE\/Crete_Crete_Samaria_Xiloskalo_Kalergi","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":2571,"name_EN":"Lefka Ori: E4 Xyloskalo-Kalergi Ref.","description_EN":"From Omalos to Kalergi Ref.","ascent_time":100,"descent_time":80,"marker":"E4","level":11,"ascent":421,"descent":64,"maxelev":1603,"minelev":1241,"link_logo":"","link_ref":"http:\/\/www.anavasi.gr\/product.php?lang=gr$id=84","pdf_link":"","bbox":"LINESTRING(23.91832 35.30801,23.93156 35.3213)","views":50,"millestones":"0,23.9183486,35.3079971#1,23.9207400,35.3153729#2,23.9290011,35.3185905#2.6,23.9315536,35.3213053","x":23.925463,"y":35.3160831,"coor":[[23.9183486,35.3079971],[23.9183372,35.3080715],[23.9184554,35.3080783],[23.9185432,35.3082948],[23.9185209,35.3086194],[23.9185866,35.30889],[23.9184756,35.3099178],[23.9189039,35.3106485],[23.9188486,35.3108558],[23.9189915,35.3109731],[23.9194864,35.3111268],[23.9199701,35.3114517],[23.9200025,35.3120288],[23.920145,35.3125699],[23.9200349,35.31266],[23.9194407,35.312858],[23.9193305,35.3130202],[23.9193409,35.3136063],[23.9197806,35.3139673],[23.9198024,35.3141837],[23.9199561,35.3145084],[23.920374,35.3146169],[23.9206158,35.3148966],[23.9206705,35.3151942],[23.9207334,35.3152145],[23.9207549,35.3156744],[23.9209638,35.3158729],[23.9216569,35.3158283],[23.9226912,35.3155404],[23.9231423,35.3155497],[23.9240881,35.3158929],[23.9248912,35.3158664],[23.925463,35.3160831],[23.926057,35.3161737],[23.926838,35.3166318],[23.927399,35.3167223],[23.9276739,35.3168757],[23.9281139,35.3169481],[23.9283778,35.3170745],[23.9284326,35.3172729],[23.9286855,35.3174714],[23.9285532,35.317796],[23.9286961,35.3179584],[23.928806,35.3179765],[23.9289598,35.318229],[23.9292127,35.3184005],[23.9291246,35.3185537],[23.9287945,35.3186527],[23.9287834,35.3187158],[23.9291463,35.3188874],[23.9290912,35.3189685],[23.9291682,35.3190226],[23.9290141,35.3190947],[23.928981,35.3192389],[23.9292447,35.3195637],[23.9293764,35.3199154],[23.9296842,35.3202583],[23.9297278,35.3206911],[23.9298377,35.3207994],[23.9300467,35.3208356],[23.9302006,35.3210701],[23.9303656,35.3211063],[23.9306517,35.3210613],[23.9309265,35.3212959],[23.9315536,35.3213053]]},{"id":17642,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u0391\u03b3\u03af\u03b1 \u03a1\u03bf\u03c5\u03bc\u03ad\u03bb\u03b7-\u03a3\u03c6\u03b1\u03ba\u03b9\u03ac","description_GR":"\u03a0\u03b1\u03c1\u03ac\u03ba\u03c4\u03b9\u03b1 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03954 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a1\u03bf\u03c5\u03bc\u03ad\u03bb\u03b7 \u03c3\u03c4\u03b1 \u03a3\u03c6\u03b1\u03ba\u03b9\u03ac","path":"CRETE\/Crete_LefkaOri_AgRoumeli_Sfakia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":20993,"name_EN":"Lefka Ori: E4 Agia Roumeli-Sfakia","description_EN":"Coastal trail E4 from Agia Roumeli to Sfakia","ascent_time":505,"descent_time":500,"marker":"E4","level":11,"ascent":1036,"descent":1020,"maxelev":147,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.95985 35.19498,24.13639 35.2314)","views":96,"millestones":"0,23.9598498,35.2298427#1,23.9687765,35.2306202#2,23.9795286,35.2313871#3,23.9901135,35.2293287#4,23.9990237,35.2246540#5,24.0058470,35.2181432#6,24.0118722,35.2110802#7,24.0162665,35.2039132#8,24.0249479,35.1994835#9,24.0348269,35.1967928#10,24.0453183,35.1951008#11,24.0553723,35.1972322#12,24.0625190,35.2003647#13,24.0712292,35.2008714#14,24.0779523,35.1993396#15,24.0866810,35.2033239#16,24.0962501,35.2000706#17,24.1058049,35.2000655#18,24.1146581,35.2016681#19,24.1233364,35.2028967#20,24.1307227,35.2027976#21.0,24.1364020,35.2012335","x":24.0594528,"y":35.1979188,"coor":[[23.9598498,35.2298427],[23.9605607,35.2296874],[23.9608245,35.2297326],[23.9610788,35.2293202],[23.9617798,35.2291558],[23.9619227,35.2291739],[23.9620215,35.2292551],[23.9622411,35.2298052],[23.9627709,35.2299812],[23.9633245,35.2298912],[23.9635401,35.2299634],[23.9639578,35.2298733],[23.9642218,35.2293234],[23.9643977,35.2291611],[23.9645326,35.2292108],[23.9647988,35.2292492],[23.9652164,35.2292312],[23.9655789,35.2294387],[23.9659196,35.2293487],[23.9663481,35.2296824],[23.9669853,35.2299802],[23.9678095,35.2302329],[23.969095,35.2307381],[23.9695786,35.2308465],[23.9702159,35.2309278],[23.9704797,35.2308557],[23.97126,35.2308198],[23.9726776,35.2310185],[23.9737107,35.2307392],[23.9738206,35.2307843],[23.9742052,35.2307574],[23.9747547,35.2308387],[23.9755899,35.2308298],[23.9791284,35.2313985],[23.9798977,35.2313716],[23.9813154,35.2311194],[23.9816341,35.2311465],[23.9824034,35.2309933],[23.9827331,35.2309933],[23.9838651,35.230714],[23.9847223,35.2303985],[23.985096,35.2302002],[23.9861576,35.2299365],[23.9876083,35.2296121],[23.9881797,35.2295761],[23.9886523,35.2294499],[23.9895644,35.2293327],[23.989949,35.2293598],[23.9907952,35.2291976],[23.9915096,35.2291796],[23.9916414,35.2290173],[23.9924217,35.2284853],[23.9928284,35.2283681],[23.9929053,35.2284403],[23.9933119,35.2282059],[23.9941031,35.2280165],[23.9943559,35.2277641],[23.9949494,35.2273944],[23.995356,35.2272141],[23.9962571,35.2265288],[23.9964549,35.2264477],[23.9966747,35.2262222],[23.997422,35.2258796],[23.9991253,35.2245902],[23.999433,35.2242295],[23.9997482,35.2240108],[24.0000009,35.2237043],[24.0001987,35.223587],[24.0004405,35.2232444],[24.0007921,35.223028],[24.000924,35.2228206],[24.0012601,35.2224712],[24.0016338,35.2222367],[24.0017436,35.2220744],[24.0020403,35.2219662],[24.0024798,35.2216416],[24.0025458,35.2216596],[24.0026227,35.2215063],[24.0027875,35.2215514],[24.0034468,35.2210374],[24.0035347,35.2207759],[24.0039852,35.2204423],[24.0043588,35.2199644],[24.0046884,35.21927],[24.0052048,35.2190356],[24.0052377,35.21872],[24.0057432,35.2184404],[24.0059739,35.2178002],[24.0061606,35.2176108],[24.0068858,35.2165107],[24.0072593,35.2162041],[24.0077867,35.2155188],[24.008358,35.2150228],[24.0085911,35.2149236],[24.0090051,35.2146936],[24.0102026,35.2135123],[24.0103893,35.2129171],[24.0103673,35.2124753],[24.0106969,35.2122498],[24.01062,35.2120244],[24.0106639,35.2119162],[24.0109605,35.2117358],[24.0111033,35.2115284],[24.0116197,35.2112669],[24.0122568,35.2107979],[24.0130807,35.2097158],[24.0131905,35.209283],[24.0136189,35.2086427],[24.0136297,35.2079484],[24.01341,35.2076508],[24.0134099,35.2075066],[24.0134869,35.2075787],[24.0133439,35.2070467],[24.0133658,35.2065057],[24.0137283,35.2060548],[24.013893,35.2056219],[24.0143983,35.2050628],[24.0151562,35.2044856],[24.0158923,35.2044675],[24.0170015,35.2028353],[24.0171224,35.2027901],[24.0175399,35.2028622],[24.0179024,35.2026908],[24.0182538,35.2023301],[24.0185834,35.2022038],[24.0185833,35.2019694],[24.01877,35.201807],[24.0194621,35.2014823],[24.0201212,35.2015994],[24.0207034,35.2012206],[24.0213075,35.2009861],[24.021637,35.2007786],[24.0218677,35.2007245],[24.0220984,35.2005621],[24.0225927,35.2004177],[24.0228892,35.2002103],[24.0242732,35.19966],[24.0245369,35.1996419],[24.0247785,35.1995156],[24.0250202,35.1994705],[24.0253167,35.1992901],[24.0257232,35.1992449],[24.0267007,35.1986586],[24.0270193,35.1986405],[24.0273488,35.1987576],[24.0275905,35.1986313],[24.0282056,35.1985049],[24.0294797,35.1979546],[24.0298861,35.1978373],[24.0303584,35.1975666],[24.0307758,35.1975034],[24.0309955,35.1974132],[24.0314019,35.1974401],[24.031369,35.1975844],[24.0318523,35.1973589],[24.0329946,35.197079],[24.0335878,35.1970157],[24.034148,35.1968713],[24.0352794,35.1967447],[24.0358176,35.1965823],[24.0370149,35.1965729],[24.0380694,35.1964734],[24.0390911,35.1965452],[24.0394644,35.1961483],[24.0402552,35.1959136],[24.0408044,35.1958233],[24.041101,35.1958502],[24.0413426,35.1957419],[24.0420675,35.1956154],[24.0433637,35.1954527],[24.0441105,35.195227],[24.0449672,35.1950553],[24.0458241,35.1951632],[24.0471093,35.1951627],[24.0478563,35.1950723],[24.0490646,35.1950447],[24.0497567,35.1952068],[24.0505918,35.1956753],[24.0512733,35.1962521],[24.0517238,35.1964503],[24.0519436,35.1966125],[24.0533501,35.1972431],[24.0540752,35.197342],[24.0543093,35.1973531],[24.0550561,35.1971544],[24.0553088,35.1971723],[24.0553858,35.1972444],[24.0554296,35.1971723],[24.0555615,35.1972444],[24.0556273,35.1971181],[24.0557482,35.1971],[24.055748,35.1969016],[24.0559897,35.1969195],[24.0560006,35.1968384],[24.0561874,35.1968383],[24.0561763,35.196676],[24.0568682,35.1965043],[24.0574535,35.1964342],[24.0575523,35.1963372],[24.0578378,35.1961928],[24.058072,35.1963911],[24.0578809,35.1965309],[24.0580349,35.1967563],[24.058068,35.1969456],[24.0582108,35.1969636],[24.058145,35.1970899],[24.0582658,35.1971259],[24.0594528,35.1979188],[24.0599694,35.1983333],[24.0600585,35.1985587],[24.0601434,35.1987796],[24.0604401,35.1988606],[24.0607259,35.1991219],[24.0610009,35.1996448],[24.0617153,35.2001223],[24.062012,35.2001583],[24.0621439,35.2002754],[24.0624955,35.2003654],[24.062869,35.2003562],[24.0631657,35.2004552],[24.0634512,35.2002747],[24.063693,35.2004009],[24.0645168,35.2002561],[24.065099,35.2002739],[24.0654726,35.200427],[24.0659121,35.2005169],[24.066805,35.2005254],[24.06725,35.2005883],[24.0672612,35.2007776],[24.0675687,35.2007775],[24.0675523,35.2008135],[24.0678329,35.2013454],[24.0680638,35.2015617],[24.0682554,35.2021026],[24.0683498,35.2020575],[24.0683497,35.2019673],[24.0684816,35.2020123],[24.0685255,35.2019221],[24.0691054,35.2016558],[24.0691822,35.2015205],[24.0693579,35.2014933],[24.0694347,35.2013761],[24.0696105,35.201376],[24.0698368,35.2014705],[24.0700016,35.2014524],[24.070353,35.2012899],[24.0704957,35.2011455],[24.0712095,35.2008836],[24.0714545,35.2007302],[24.0717807,35.200748],[24.0720147,35.2006667],[24.0722627,35.2004231],[24.0727898,35.2002244],[24.0739535,35.1993671],[24.0741071,35.1991506],[24.0741288,35.1988169],[24.0742607,35.198916],[24.0742717,35.19888],[24.0743815,35.198916],[24.0743485,35.1987897],[24.0745792,35.1988707],[24.0750294,35.1985639],[24.0759519,35.1982928],[24.0772483,35.1984904],[24.0774021,35.1984542],[24.0774942,35.1982783],[24.0777359,35.1982962],[24.0778129,35.1983863],[24.0780545,35.1982689],[24.0783291,35.1982507],[24.0783512,35.1983409],[24.0782514,35.1984897],[24.0784411,35.1983633],[24.0782514,35.1984897],[24.0779991,35.1988686],[24.0779225,35.1991662],[24.078026,35.1997568],[24.0780076,35.199892],[24.0783046,35.2003066],[24.0783925,35.2003246],[24.0785023,35.2002524],[24.0788101,35.2004325],[24.0788102,35.2005317],[24.0792642,35.2007478],[24.0794071,35.2008018],[24.0794181,35.2008559],[24.0797038,35.2008738],[24.0798797,35.2009819],[24.0801216,35.2011981],[24.0805063,35.2014053],[24.0809677,35.201441],[24.0813194,35.201576],[24.0818905,35.2015035],[24.0820774,35.2015846],[24.0827476,35.2016743],[24.0832531,35.2018723],[24.0841987,35.2026742],[24.0846053,35.2027821],[24.0849352,35.2030163],[24.0851439,35.2029981],[24.0855834,35.203088],[24.0862098,35.203304],[24.0867591,35.2033306],[24.0876928,35.2032217],[24.0881321,35.2031042],[24.0886814,35.2031038],[24.0899336,35.2029135],[24.0912954,35.2024797],[24.0928661,35.202244],[24.0932723,35.2020634],[24.0936018,35.202],[24.0938763,35.2018465],[24.0941726,35.2015577],[24.094282,35.2011789],[24.0946988,35.2006376],[24.0956764,35.2005106],[24.0964996,35.1998877],[24.0967305,35.2000498],[24.0974668,35.2003108],[24.0980379,35.2002021],[24.0985648,35.199832],[24.098817,35.1994891],[24.0990256,35.1994078],[24.0993547,35.1989927],[24.0994645,35.1989385],[24.0996294,35.1990376],[24.0998601,35.1990464],[24.1002777,35.1991723],[24.1010684,35.1989733],[24.1018374,35.1989726],[24.10227,35.1990714],[24.1042924,35.1999354],[24.1050945,35.2000609],[24.1057646,35.1999792],[24.1058086,35.2000513],[24.1056228,35.2007638],[24.1057436,35.2007637],[24.1057988,35.200944],[24.1060516,35.201088],[24.1061836,35.2012322],[24.1075029,35.2019524],[24.1082611,35.2021321],[24.1088544,35.2021766],[24.1094475,35.2021039],[24.1098211,35.2021757],[24.1102825,35.2021392],[24.1105789,35.2019677],[24.1111171,35.201895],[24.1118528,35.2016238],[24.1122812,35.2015964],[24.1125885,35.2013797],[24.1127862,35.2014066],[24.1129838,35.2012801],[24.1132145,35.201298],[24.1136322,35.2014599],[24.1138849,35.2014506],[24.1141926,35.2015585],[24.1145222,35.2015853],[24.1145223,35.2016394],[24.1146322,35.2016483],[24.1150391,35.2019545],[24.1152149,35.2019994],[24.1153467,35.2019903],[24.1154894,35.2018639],[24.1158191,35.2019537],[24.1160826,35.2018813],[24.1161927,35.2020255],[24.1161602,35.2023411],[24.1162701,35.2024042],[24.1163909,35.202359],[24.1165222,35.2020252],[24.1168733,35.2016642],[24.1169831,35.201646],[24.1170271,35.2016911],[24.1168955,35.2018535],[24.1170492,35.2018083],[24.1170164,35.2018985],[24.1174119,35.2019161],[24.1174517,35.2018507],[24.1175835,35.2018416],[24.1193523,35.201912],[24.1202315,35.2021456],[24.1211769,35.2025684],[24.1216605,35.2027122],[24.1219681,35.2027209],[24.1228247,35.2025487],[24.1229896,35.2026027],[24.1235286,35.203062],[24.1241014,35.2040443],[24.1247064,35.2045937],[24.1249703,35.2047377],[24.1252106,35.2047307],[24.1252434,35.2046224],[24.1250885,35.2039193],[24.1251976,35.2033962],[24.1254274,35.2028098],[24.1255371,35.2026925],[24.1256908,35.2026562],[24.1262228,35.202809],[24.1271835,35.2030988],[24.1284025,35.202845],[24.129435,35.2027357],[24.1304129,35.2028068],[24.1319288,35.2027511],[24.1333133,35.2028848],[24.1347191,35.2026578],[24.1350268,35.2027116],[24.1354006,35.2028825],[24.1359277,35.2027647],[24.1352578,35.2022695],[24.1350596,35.2019902],[24.1350298,35.2018166],[24.1354808,35.2015456],[24.135986,35.2014639],[24.136402,35.2012335]]},{"id":17643,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: \u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03a3\u03b1\u03bc\u03b1\u03c1\u03b9\u03ac\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a1\u03bf\u03c5\u03bc\u03ad\u03bb\u03b7","path":"CRETE\/Crete_LefkaOri_Samaria","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":15045,"name_EN":"Lefka Ori: Samaria Gorge","description_EN":"From Xyloskalo to Agia Roumeli","ascent_time":330,"descent_time":345,"marker":"Red_dots","level":11,"ascent":461,"descent":1693,"maxelev":1241,"minelev":7,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.91784 35.22969,23.96824 35.30982)","views":65,"millestones":"0,23.9183486,35.3079971#1,23.9246811,35.3097513#2,23.9265011,35.3072952#3,23.9316527,35.3063102#4,23.9393206,35.3059411#5,23.9459250,35.3015635#6,23.9530073,35.2962264#7,23.9584725,35.2907358#8,23.9617662,35.2828076#9,23.9621587,35.2745007#10,23.9635143,35.2669552#11,23.9667037,35.2584746#12,23.9679196,35.2499157#13,23.9658453,35.2416990#15,23.9598519,35.2298427","x":23.9457465,"y":35.301482,"coor":[[23.9183486,35.3079971],[23.9184236,35.3079431],[23.9183717,35.3079092],[23.9183829,35.3076748],[23.9184709,35.3077019],[23.918515,35.3076388],[23.918581,35.3076569],[23.9186031,35.3075397],[23.91879,35.3076119],[23.9186471,35.3075036],[23.9183832,35.3074674],[23.9184052,35.3074313],[23.9178445,35.3070883],[23.9181744,35.3072148],[23.9187464,35.3072602],[23.9189882,35.3074407],[23.9191971,35.307504],[23.920198,35.3075858],[23.9206711,35.307523],[23.9209683,35.3073609],[23.9216569,35.3076431],[23.9216897,35.3078415],[23.9218655,35.308013],[23.9222833,35.3082116],[23.922382,35.3085543],[23.9225578,35.3087798],[23.9229867,35.3088523],[23.9233055,35.3090869],[23.9240864,35.3091956],[23.9242622,35.3094121],[23.9243063,35.3092589],[23.9247348,35.3098272],[23.9248009,35.3098002],[23.924702,35.3096108],[23.9246916,35.3090337],[23.9249662,35.3094396],[23.9250655,35.309079],[23.9251645,35.3090971],[23.9253513,35.3093857],[23.9254282,35.3094038],[23.9253955,35.3090792],[23.9252528,35.3088266],[23.9258817,35.30896],[23.9259147,35.308924],[23.9256182,35.3084098],[23.9255303,35.3083557],[23.9253102,35.3083736],[23.9246397,35.3079223],[23.9245335,35.3074556],[23.9246435,35.3074963],[23.9247535,35.3074332],[23.9247537,35.3072889],[23.9248638,35.3071808],[23.9249518,35.3072079],[23.9250725,35.3074875],[23.9252045,35.3074335],[23.9252267,35.3072351],[23.9253476,35.3073434],[23.9253149,35.3070368],[23.9254688,35.3071722],[23.9255789,35.307055],[23.9258537,35.3072085],[23.9258758,35.3071363],[23.9257769,35.306992],[23.9260737,35.3072807],[23.9263596,35.3073891],[23.9265025,35.3075244],[23.9265685,35.3074884],[23.9264588,35.3071818],[23.9265139,35.3070556],[23.9265578,35.3071277],[23.9267228,35.3071459],[23.9266455,35.3074344],[23.9267225,35.3074434],[23.9268106,35.3073353],[23.9269535,35.3074255],[23.9268877,35.3072632],[23.9270416,35.3073895],[23.9270088,35.307119],[23.9270748,35.307101],[23.9271737,35.3072724],[23.927163,35.3069478],[23.9273938,35.3071012],[23.927383,35.3068758],[23.9275259,35.3070111],[23.9275041,35.3068578],[23.927636,35.3068669],[23.9275921,35.3067587],[23.9273283,35.3066232],[23.9271964,35.3064609],[23.9271307,35.3061813],[23.9275155,35.3063438],[23.9276145,35.3063349],[23.9276806,35.3062447],[23.9280435,35.3063802],[23.9283185,35.3063443],[23.9286375,35.3063896],[23.9288463,35.3065881],[23.9289783,35.306525],[23.9292533,35.3065162],[23.9293414,35.30639],[23.9295395,35.3063721],[23.9297264,35.3064894],[23.9303092,35.3066701],[23.9303422,35.306607],[23.9300566,35.306183],[23.9302766,35.3062373],[23.9304856,35.3061652],[23.9306726,35.3062014],[23.9310356,35.3061385],[23.9311895,35.3062378],[23.9313875,35.3062469],[23.9314975,35.3063371],[23.9317065,35.3063012],[23.9317943,35.3064726],[23.9320364,35.3063465],[23.9323113,35.3064999],[23.9327183,35.3064821],[23.933015,35.306852],[23.9333228,35.3070956],[23.9334768,35.3071498],[23.9336196,35.3073392],[23.9337847,35.3072672],[23.9338068,35.3071049],[23.9341588,35.307087],[23.9344229,35.3069339],[23.9352478,35.3070966],[23.9358954,35.3070699],[23.9361509,35.3069686],[23.9363598,35.3070499],[23.9365139,35.3070049],[23.936503,35.3068606],[23.9361511,35.3067612],[23.9360742,35.306635],[23.9361182,35.3065448],[23.9362503,35.3065178],[23.9365582,35.3065541],[23.9367233,35.3065091],[23.9367013,35.3064279],[23.9365034,35.3063466],[23.9365255,35.3062655],[23.9373174,35.306338],[23.9377245,35.3062481],[23.9379883,35.3064286],[23.9382854,35.3062484],[23.9387584,35.3062306],[23.9388355,35.3061404],[23.9390335,35.3061766],[23.9391435,35.3061406],[23.9393527,35.3059063],[23.9394846,35.3060326],[23.9394958,35.3058072],[23.9395728,35.305726],[23.9392651,35.3053201],[23.939826,35.3054827],[23.9398481,35.3053475],[23.9399251,35.3052754],[23.9400571,35.3052664],[23.9401893,35.305023],[23.9405634,35.304897],[23.9410037,35.3043922],[23.9412128,35.3042661],[23.9412898,35.3042932],[23.9416529,35.3041401],[23.94173,35.304059],[23.9416862,35.3037163],[23.9422804,35.303392],[23.9429623,35.3034825],[23.9434134,35.3033745],[23.9433035,35.3031941],[23.943359,35.3024818],[23.9437221,35.3022385],[23.9441402,35.3021034],[23.9443824,35.301851],[23.9449103,35.3018152],[23.9457465,35.301482],[23.9459224,35.3015632],[23.9462414,35.3015994],[23.9463404,35.3015634],[23.9464836,35.3012028],[23.9466487,35.3011127],[23.9467916,35.30123],[23.9469566,35.30123],[23.9475727,35.3010229],[23.9476938,35.3008066],[23.9484421,35.3002208],[23.9485523,35.2998872],[23.9483874,35.2997248],[23.9484536,35.2994183],[23.9483987,35.299301],[23.9486078,35.2991298],[23.9487838,35.2990938],[23.9489269,35.2989135],[23.9490258,35.2989496],[23.9495101,35.2984629],[23.9497301,35.2983728],[23.9499392,35.2981655],[23.9503573,35.2980214],[23.9505884,35.2977871],[23.9506545,35.2975076],[23.9509186,35.2973995],[23.9509076,35.2973003],[23.9513476,35.2972283],[23.9516667,35.2970752],[23.9519308,35.2967507],[23.9521399,35.2966606],[23.9523819,35.2964533],[23.95291,35.2962822],[23.953284,35.2960659],[23.9537352,35.2957415],[23.9541094,35.2952547],[23.9543294,35.2951827],[23.9547915,35.2948763],[23.9549346,35.2946058],[23.9551767,35.2943805],[23.9552647,35.2943534],[23.9555836,35.2945339],[23.9555506,35.2944257],[23.9553637,35.2942994],[23.9555507,35.2942994],[23.9554517,35.2942543],[23.9554848,35.2942002],[23.9556057,35.2942273],[23.9556497,35.2941642],[23.9555728,35.294074],[23.9556718,35.2941101],[23.9559357,35.2940651],[23.9561668,35.293921],[23.9564527,35.2940653],[23.9566726,35.2940564],[23.9569806,35.2939483],[23.9574318,35.2935156],[23.9573219,35.2933533],[23.957113,35.293245],[23.9570361,35.2930827],[23.9572562,35.2927582],[23.9575203,35.2925959],[23.9576635,35.2921451],[23.9579826,35.2917485],[23.9581313,35.2913338],[23.9581754,35.2911354],[23.9584725,35.2907568],[23.958462,35.2897199],[23.9585502,35.2893592],[23.9584515,35.2888723],[23.9585728,35.2882141],[23.9586938,35.2880518],[23.9588701,35.2874297],[23.9596843,35.2865553],[23.9600037,35.2857259],[23.9602787,35.2856087],[23.9604657,35.2854194],[23.9605319,35.2850407],[23.9603121,35.284698],[23.9603673,35.2842111],[23.9604994,35.2839406],[23.9607414,35.2837333],[23.9607855,35.283544],[23.9610386,35.2832014],[23.9613246,35.2830212],[23.9616765,35.2829401],[23.9617976,35.2827598],[23.9621716,35.2824714],[23.9622487,35.2822821],[23.9624247,35.2821379],[23.9627108,35.2816961],[23.9625459,35.2815879],[23.9624029,35.2815968],[23.9623701,35.2812542],[23.9625241,35.281119],[23.9626892,35.2807583],[23.9618994,35.2767636],[23.9615699,35.2758257],[23.9627257,35.2732292],[23.9625171,35.2725258],[23.9616927,35.2720206],[23.9613192,35.2711819],[23.9613638,35.2700367],[23.9611553,35.2690267],[23.9621454,35.2677827],[23.9630471,35.2676477],[23.9634541,35.2671068],[23.9641585,35.2653577],[23.9649845,35.2620578],[23.9653588,35.2609127],[23.9658537,35.2604079],[23.9659527,35.2603809],[23.9659967,35.2602005],[23.9661727,35.2600563],[23.9664589,35.2592449],[23.9666348,35.2590105],[23.9668002,35.2577842],[23.9671632,35.2572884],[23.9675705,35.2559089],[23.9681865,35.2549983],[23.9682308,35.2541507],[23.9680661,35.2535465],[23.9682315,35.2524555],[23.9681106,35.252221],[23.968034,35.2515177],[23.9676494,35.2510577],[23.9675726,35.250697],[23.9679467,35.2498495],[23.9678371,35.2488666],[23.9673646,35.2484517],[23.9671231,35.2478024],[23.9665296,35.2475768],[23.9662769,35.2473874],[23.966288,35.2471259],[23.9661122,35.2468012],[23.9661782,35.2467201],[23.9660685,35.2462512],[23.9658708,35.2458003],[23.9659812,35.2446552],[23.9656769,35.2439788],[23.9655672,35.2433746],[23.9656885,35.242527],[23.9658864,35.2423468],[23.9658317,35.2415803],[23.9660738,35.2409311],[23.9658541,35.2407056],[23.9656343,35.2406515],[23.9654146,35.2403358],[23.9650629,35.2402185],[23.9649311,35.2401103],[23.9645357,35.2394248],[23.9643469,35.2392332],[23.9640867,35.2389693],[23.9640978,35.23878],[23.9639954,35.2387011],[23.9640615,35.2383765],[23.963798,35.2378264],[23.9638095,35.236582],[23.963601,35.2360229],[23.9637115,35.2346613],[23.9638765,35.2341835],[23.9636349,35.2338588],[23.963635,35.2337416],[23.963733,35.2334485],[23.9635243,35.2330878],[23.9635683,35.2329435],[23.9639102,35.2326258],[23.9640279,35.2321141],[23.9635774,35.2318705],[23.9621977,35.2307565],[23.9620559,35.230646],[23.9617372,35.2306459],[23.9609054,35.2307403],[23.9607408,35.2302082],[23.9605632,35.2296874],[23.9598519,35.2298427]]},{"id":17644,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039a\u03b1\u03bb\u03ad\u03c1\u03b3\u03b7","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf \u03c3\u03c4\u03bf \u03ba\u03b1\u03c4. \u039a\u03b1\u03bb\u03ad\u03c1\u03b3\u03b7","path":"CRETE\/Crete_LefkaOri_Xiloskalo_Kalergi","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":2570,"name_EN":"Lefka Ori: E4 Xyloskalo-Kalergi Ref.","description_EN":"From Omalos to Kalergi Ref.","ascent_time":100,"descent_time":80,"marker":"E4","level":12,"ascent":421,"descent":64,"maxelev":1603,"minelev":1241,"link_logo":"","link_ref":"http:\/\/www.anavasi.gr\/product.php?lang=gr$id=84","pdf_link":"","bbox":"LINESTRING(23.91832 35.30801,23.93156 35.3213)","views":26,"millestones":"0,23.9183486,35.3079971#1,23.9207406,35.3153726#2,23.9289895,35.3185940#2.6,23.9315539,35.3213053","x":23.9254637,"y":35.3160831,"coor":[[23.9183486,35.3079971],[23.9183375,35.3080715],[23.9184564,35.3080783],[23.9185442,35.3082948],[23.9185219,35.3086194],[23.9185876,35.30889],[23.9184766,35.3099178],[23.9189049,35.3106485],[23.9188497,35.3108558],[23.9189926,35.3109731],[23.9194874,35.3111268],[23.9199711,35.3114517],[23.9200036,35.3120288],[23.920146,35.3125699],[23.9200359,35.31266],[23.9194417,35.312858],[23.9193315,35.3130202],[23.919342,35.3136063],[23.9197816,35.3139673],[23.9198034,35.3141837],[23.9199571,35.3145084],[23.9203751,35.3146169],[23.9206168,35.3148966],[23.9206715,35.3151942],[23.9207341,35.3152145],[23.9207556,35.3156744],[23.9209644,35.3158729],[23.9216576,35.3158283],[23.9226919,35.3155404],[23.923143,35.3155497],[23.9240887,35.3158929],[23.9248918,35.3158664],[23.9254637,35.3160831],[23.9260577,35.3161737],[23.9268384,35.3166318],[23.9273993,35.3167223],[23.9277987,35.3168217],[23.9281142,35.3169481],[23.9283781,35.3170745],[23.928433,35.3172729],[23.9286858,35.3174714],[23.9285535,35.317796],[23.9286964,35.3179584],[23.9288064,35.3179765],[23.9289602,35.318229],[23.9292131,35.3184005],[23.9291249,35.3185537],[23.9287948,35.3186527],[23.9287837,35.3187158],[23.9291466,35.3188874],[23.9290916,35.3189685],[23.9291685,35.3190226],[23.9290144,35.3190947],[23.9289813,35.3192389],[23.9292451,35.3195637],[23.9293768,35.3199154],[23.9296845,35.3202583],[23.9297282,35.3206911],[23.9298381,35.3207994],[23.9300471,35.3208356],[23.9302009,35.3210701],[23.9303659,35.3211063],[23.930652,35.3210613],[23.9309268,35.3212959],[23.9315539,35.3213053]]},{"id":17645,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf-\u039a\u03bf\u03c5\u03c3\u03c4\u03bf\u03b3\u03ad\u03c1\u03b1\u03ba\u03bf","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03954 \u03b1\u03c0\u03cc \u03c4\u03bf \u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf (\u039f\u03bc\u03b1\u03bb\u03cc\u03c2) \u03c3\u03c4\u03bf \u039a\u03bf\u03c5\u03c3\u03c4\u03bf\u03b3\u03ad\u03c1\u03b1\u03ba\u03bf","path":"CRETE\/Crete_LefkaOri_Xiloskalo_Koustogerako","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":14678,"name_EN":"Lefka Ori: E4 Xiloskalo-Koustogerako","description_EN":"E4 from Xyloskalo (Omalos plateau) to Koustogerako","ascent_time":450,"descent_time":470,"marker":"E4","level":11,"ascent":837,"descent":1579,"maxelev":1842,"minelev":496,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.83519 35.27099,23.91846 35.308)","views":38,"millestones":"0,23.9183486,35.3079971#1,23.9139866,35.3066027#2,23.9106516,35.3022319#3,23.9093277,35.2961774#4,23.9072385,35.2942955#5,23.8990642,35.2910903#6,23.8915759,35.2858296#7,23.8826909,35.2833637#8,23.8728154,35.2838175#9,23.8628958,35.2832353#10,23.8538389,35.2847007#11,23.8515614,35.2780603#12,23.8467685,35.2723680#13,23.8420482,35.2752793#14.7,23.8352499,35.2781069","x":23.8894274,"y":35.2837726,"coor":[[23.9183486,35.3079971],[23.9184236,35.3079431],[23.9183717,35.3079092],[23.9182837,35.3078911],[23.9182356,35.3078685],[23.9180828,35.3077602],[23.9177525,35.3080305],[23.9178408,35.307733],[23.9175897,35.3078613],[23.9175537,35.3077712],[23.9172014,35.3080504],[23.9170804,35.3080864],[23.9170364,35.3080593],[23.9170915,35.3080233],[23.9171357,35.3077618],[23.9167176,35.3078878],[23.9160597,35.3078423],[23.9155406,35.307878],[23.9157608,35.3076843],[23.9158269,35.3076212],[23.9153538,35.307675],[23.9155741,35.3074497],[23.915288,35.3075126],[23.915079,35.3074764],[23.9152881,35.3073683],[23.9151232,35.3073141],[23.9148812,35.3072959],[23.9145621,35.3073859],[23.9146614,35.3071515],[23.9142982,35.3072684],[23.9145846,35.306944],[23.9140124,35.307151],[23.9142216,35.3069708],[23.9143428,35.3067545],[23.9141557,35.3068355],[23.9141998,35.3067003],[23.9137376,35.3069164],[23.914046,35.3065289],[23.9137818,35.306709],[23.9138921,35.3064476],[23.913551,35.3066097],[23.9136721,35.3064745],[23.9135511,35.3064925],[23.9136503,35.3062942],[23.9134411,35.3064293],[23.912759,35.306555],[23.9123779,35.3067621],[23.9125432,35.3064647],[23.9129286,35.3061043],[23.9128078,35.3059419],[23.9127641,35.3056443],[23.9126543,35.3054729],[23.9118188,35.3050124],[23.9112583,35.3045882],[23.9109729,35.304029],[23.9107202,35.3038124],[23.9107424,35.303623],[23.9104126,35.3034244],[23.9104348,35.3032982],[23.910633,35.3031],[23.9106221,35.3029827],[23.9103698,35.3023333],[23.910062,35.3021798],[23.910425,35.3021711],[23.9106669,35.3022614],[23.910601,35.3021351],[23.9103592,35.3019997],[23.9106016,35.3016572],[23.9104586,35.301621],[23.9103378,35.3014316],[23.910327,35.3012603],[23.9104263,35.3010439],[23.9102615,35.3007913],[23.9103939,35.3004308],[23.9106252,35.3002055],[23.9108901,35.299322],[23.9108352,35.2992138],[23.910725,35.2993941],[23.9104835,35.2990242],[23.9105056,35.2988619],[23.9107368,35.2986727],[23.910792,35.2985465],[23.9105617,35.2978881],[23.910375,35.2976716],[23.9103531,35.2975363],[23.9102212,35.2975001],[23.9102103,35.2973919],[23.9100782,35.2974639],[23.9100566,35.2971123],[23.9099796,35.2971483],[23.9099358,35.2969859],[23.9098257,35.29704],[23.9098589,35.2968777],[23.9097269,35.2968866],[23.909749,35.2967964],[23.9096831,35.2967784],[23.9097932,35.2966071],[23.9096173,35.296589],[23.9093752,35.296715],[23.9094854,35.2964536],[23.9096395,35.2963455],[23.9092435,35.2964174],[23.9093207,35.2962822],[23.9094967,35.2961921],[23.9090788,35.2961557],[23.9092769,35.2960387],[23.9095079,35.2959938],[23.9090022,35.2958671],[23.9094093,35.2956871],[23.9090354,35.2956147],[23.9092665,35.2955157],[23.9090576,35.2954794],[23.9090906,35.2954254],[23.9094536,35.2953715],[23.9091898,35.2952541],[23.9092449,35.2952001],[23.909201,35.2951099],[23.9094319,35.29511],[23.9092341,35.2950287],[23.9088601,35.2950916],[23.9091132,35.2949204],[23.9088603,35.2948932],[23.9090694,35.294713],[23.9087615,35.2947398],[23.9090696,35.2945327],[23.9092897,35.2944787],[23.9091688,35.2944065],[23.9089268,35.2944153],[23.9092459,35.2942533],[23.908894,35.2942711],[23.9092586,35.2939918],[23.909011,35.2940931],[23.9088746,35.2940546],[23.9086493,35.2939417],[23.9086054,35.2938335],[23.9083195,35.2938243],[23.9082756,35.293716],[23.9082096,35.293743],[23.9082205,35.2938152],[23.9080445,35.2938151],[23.9081654,35.2939143],[23.9081323,35.2939684],[23.9078353,35.2940313],[23.9076924,35.2939951],[23.9075822,35.2941754],[23.9073732,35.2942203],[23.9074831,35.2942835],[23.907373,35.2943646],[23.9072301,35.2942923],[23.9070541,35.2943283],[23.9066802,35.2942919],[23.9064823,35.2942286],[23.9064165,35.2941204],[23.9063175,35.2940933],[23.9061415,35.2941562],[23.9059656,35.294102],[23.9053276,35.2941646],[23.9050968,35.2940472],[23.9048222,35.2937314],[23.9045473,35.2936591],[23.9040524,35.2936587],[23.9037556,35.2935322],[23.9034367,35.2935139],[23.903261,35.2932974],[23.9030411,35.293225],[23.9029531,35.293243],[23.902573,35.2929316],[23.9022716,35.2929449],[23.9022495,35.293026],[23.9019745,35.2930258],[23.9018536,35.2929446],[23.9016996,35.2929625],[23.9014578,35.2928901],[23.9010399,35.2928718],[23.9010618,35.2929169],[23.9009188,35.2929167],[23.9007319,35.2928625],[23.9004348,35.2930246],[23.900171,35.2929071],[23.899973,35.292925],[23.8999621,35.2928438],[23.8997423,35.2927084],[23.8997425,35.2925912],[23.8994241,35.2921401],[23.8995235,35.2917795],[23.8995019,35.2914909],[23.8993043,35.2911661],[23.8986337,35.2909582],[23.8984799,35.2908228],[23.8981499,35.2908405],[23.8969075,35.290578],[23.8965009,35.2903612],[23.8961275,35.2899822],[23.8958306,35.2899278],[23.8956551,35.289531],[23.8952047,35.2891789],[23.8949852,35.2888451],[23.8948532,35.2888089],[23.8943369,35.2884207],[23.8935565,35.2880594],[23.8934579,35.2877707],[23.8934915,35.287356],[23.893283,35.2870222],[23.8928761,35.2870038],[23.8925903,35.2869043],[23.8924365,35.2867509],[23.8925578,35.2864985],[23.8924921,35.2862731],[23.8922614,35.2860925],[23.891558,35.2858214],[23.8913716,35.2854425],[23.890976,35.2852077],[23.8908992,35.2850724],[23.8907123,35.2850091],[23.8903494,35.2850088],[23.8902286,35.2848824],[23.890152,35.2846118],[23.8898664,35.2844132],[23.8894274,35.2837726],[23.8891965,35.2837093],[23.8887023,35.2832038],[23.8880211,35.2828245],[23.8872293,35.2828057],[23.8868007,35.282643],[23.8865367,35.2826789],[23.8861453,35.28271],[23.8857305,35.2827006],[23.8854774,35.2828176],[23.8849495,35.2828622],[23.8848504,35.2829703],[23.8842013,35.2832131],[23.8834203,35.2833206],[23.8829585,35.2832841],[23.8825405,35.2834099],[23.8821776,35.2834096],[23.8816605,35.2835533],[23.8812972,35.2838325],[23.8806482,35.2839852],[23.8805271,35.2840662],[23.8801753,35.2840027],[23.8798891,35.2841828],[23.8787783,35.2842899],[23.8782832,35.2844246],[23.8772483,35.2845588],[23.8770065,35.2844774],[23.8767978,35.2842698],[23.876776,35.2841594],[23.8766003,35.2839969],[23.8763804,35.2839967],[23.875368,35.2844284],[23.8748071,35.2844549],[23.8745983,35.2843825],[23.874104,35.2840394],[23.873862,35.2840752],[23.8736753,35.2839127],[23.8730927,35.2837859],[23.8727957,35.2838216],[23.8725758,35.2837853],[23.8718825,35.2841092],[23.8715746,35.2841089],[23.8706725,35.2843243],[23.8701556,35.2843508],[23.8696606,35.2844765],[23.868902,35.2843314],[23.8682317,35.2840422],[23.8681326,35.2840871],[23.8680118,35.2840329],[23.8677918,35.2840687],[23.86744,35.2839872],[23.8669127,35.2836259],[23.8665061,35.2834902],[23.8662206,35.2832284],[23.8654952,35.2829932],[23.8653083,35.282993],[23.8647799,35.283299],[23.8645931,35.2832176],[23.864428,35.2833166],[23.8642853,35.2831631],[23.8638676,35.2830815],[23.8635814,35.2832435],[23.8632186,35.283189],[23.8627236,35.2832606],[23.8621633,35.2829714],[23.8619324,35.2829351],[23.8617344,35.2829799],[23.8608329,35.2828076],[23.8607891,35.2827354],[23.8609761,35.2827176],[23.8607125,35.2825189],[23.8604596,35.2825005],[23.8601513,35.2827166],[23.8598984,35.2827343],[23.8597115,35.28268],[23.8592941,35.2824],[23.8591401,35.2824449],[23.8590079,35.282589],[23.8587658,35.282697],[23.8582593,35.2830661],[23.8580833,35.2830659],[23.8576761,35.2832728],[23.8574012,35.2832905],[23.8569024,35.2835581],[23.8564928,35.2839206],[23.8557186,35.2844652],[23.8553446,35.2845459],[23.8549708,35.2845004],[23.8546956,35.2846533],[23.8542559,35.2845536],[23.8540316,35.2846615],[23.8537762,35.2847153],[23.853633,35.2848414],[23.8531822,35.2848228],[23.8527978,35.2845609],[23.8522371,35.284452],[23.8520734,35.2843616],[23.8514878,35.2841918],[23.8518731,35.2839398],[23.8519503,35.2837956],[23.8522491,35.2827861],[23.852063,35.282335],[23.8519988,35.2813431],[23.8518236,35.2809281],[23.8520224,35.2804414],[23.8518799,35.2802248],[23.8515944,35.27999],[23.8515397,35.2798096],[23.8515951,35.2796023],[23.8518706,35.279251],[23.8515418,35.2786555],[23.8518281,35.2784665],[23.8517183,35.2783491],[23.8517187,35.2781688],[23.8514661,35.2779971],[23.8514114,35.2778257],[23.8514887,35.2776635],[23.851379,35.2775191],[23.8512581,35.2775009],[23.8510205,35.2775457],[23.8507568,35.2774462],[23.8507683,35.2771757],[23.8504828,35.276977],[23.8500211,35.2768863],[23.85001,35.2769764],[23.8498014,35.2767688],[23.8496474,35.2768317],[23.8494829,35.276588],[23.8494612,35.2764077],[23.8491862,35.2764524],[23.8490875,35.2763441],[23.849,35.2760554],[23.8486818,35.2757304],[23.8484853,35.2749367],[23.848566,35.2746009],[23.8487105,35.2743351],[23.8487327,35.2742269],[23.8488428,35.2741369],[23.8487794,35.2740579],[23.8486915,35.2740127],[23.8487796,35.2739226],[23.8487137,35.2738865],[23.8486592,35.2736339],[23.8484745,35.2735525],[23.8482549,35.2733719],[23.8482661,35.2733088],[23.8481451,35.2733087],[23.8481782,35.2732366],[23.8480245,35.2731462],[23.8479149,35.2729116],[23.847816,35.2729295],[23.8477505,35.2726409],[23.8475965,35.2726768],[23.847509,35.2724422],[23.847267,35.272478],[23.8472229,35.2725411],[23.8471901,35.2724599],[23.8470363,35.2723875],[23.846722,35.2723646],[23.8463485,35.2721838],[23.8462278,35.2720303],[23.8462117,35.2718117],[23.8457941,35.271721],[23.845662,35.2717749],[23.8455302,35.2717206],[23.8448803,35.2718009],[23.8447483,35.2718188],[23.8445616,35.2717284],[23.8441264,35.2716535],[23.8438204,35.2717658],[23.843814,35.2716576],[23.8434957,35.2714047],[23.842954,35.2711537],[23.8429102,35.2710184],[23.8427674,35.2709777],[23.8425146,35.2709142],[23.8423826,35.2709411],[23.8420082,35.2712382],[23.8418978,35.2714635],[23.8419294,35.2721758],[23.8417951,35.273393],[23.8418606,35.2736455],[23.8422113,35.2742591],[23.8422328,35.2744756],[23.8421334,35.274746],[23.8420774,35.2752508],[23.8417138,35.275611],[23.8413726,35.2757909],[23.8416474,35.2758274],[23.8419445,35.2757466],[23.8420103,35.2758278],[23.84159,35.2760324],[23.8411281,35.2760859],[23.841194,35.2761401],[23.8414688,35.2761675],[23.8414597,35.2762374],[23.8400628,35.276488],[23.8394576,35.2767036],[23.8386242,35.2767544],[23.8392395,35.2769986],[23.8404819,35.2770454],[23.8404574,35.2771265],[23.8400174,35.27718],[23.8396828,35.2773148],[23.8391099,35.2773772],[23.8390987,35.2774493],[23.8394725,35.2775219],[23.8394943,35.2776121],[23.8392413,35.2776569],[23.8386169,35.2776425],[23.8381993,35.2775248],[23.8373965,35.2775688],[23.8371054,35.2774557],[23.8369756,35.2773833],[23.8363233,35.2774591],[23.835817,35.2776748],[23.8355416,35.2779269],[23.8352499,35.2781069]]},{"id":17646,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u039a\u03b1\u03c4. \u039a\u03b1\u03bb\u03bb\u03ad\u03c1\u03b3\u03b7-\u039a\u03b1\u03c4\u03c3\u03b9\u03b2\u03ad\u03bb\u03b7","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03c4. \u039a\u03b1\u03bb\u03ad\u03c1\u03b3\u03b7 \u03c3\u03c4\u03bf\u03c5 \u039a\u03b1\u03c4\u03c3\u03b9\u03b2\u03ad\u03bb\u03b7","path":"CRETE\/Crete_LefkaOri_Kalergi_Katsiveli","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":5,"length":13112,"name_EN":"Lefka Ori: E4 -Kalergi Ref.-Katsiveli","description_EN":"From Kalergi Ref. to Katsiveli","ascent_time":480,"descent_time":430,"marker":"E4","level":12,"ascent":1006,"descent":672,"maxelev":2102,"minelev":1424,"link_logo":"","link_ref":"http:\/\/www.anavasi.gr\/product.php?lang=gr$id=84","pdf_link":"","bbox":"LINESTRING(23.92951 35.31356,24.0311 35.33425)","views":96,"millestones":"0,23.9315536,35.3213053#1,23.9344850,35.3243030#2,23.9415070,35.3270289#3,23.9500380,35.3270846#4,23.9552036,35.3302519#5,23.9628605,35.3334999#6,23.9713624,35.3308383#7,23.9813149,35.3287709#8,23.9915158,35.3275154#9,24.0007956,35.3251316#10,24.0087512,35.3194741#11,24.0140037,35.3136440#13.1,24.0311044,35.3172022","x":23.9750389,"y":35.3298296,"coor":[[23.9315536,35.3213053],[23.9309265,35.3212959],[23.9302803,35.3214782],[23.9295188,35.3219195],[23.9296508,35.3219376],[23.9303551,35.3217307],[23.9310702,35.3217401],[23.9311362,35.3217762],[23.931158,35.3219926],[23.9312569,35.3221369],[23.9317847,35.3223987],[23.9318616,35.3225701],[23.9316627,35.3235619],[23.9317854,35.3241345],[23.9318843,35.3242337],[23.9321813,35.3243421],[23.9322252,35.3244143],[23.9323642,35.3243625],[23.9324411,35.3244166],[23.9326833,35.3242905],[23.9327382,35.3243807],[23.9328042,35.3243808],[23.9329253,35.3242817],[23.9329912,35.324462],[23.9330903,35.3243629],[23.9331342,35.3244892],[23.9332223,35.3244171],[23.9333433,35.3244893],[23.9334643,35.3244262],[23.9335193,35.3245254],[23.9336378,35.3245593],[23.9337371,35.3242708],[23.9338912,35.3242168],[23.9345072,35.3243073],[23.9348594,35.3242354],[23.9360916,35.3242992],[23.9366416,35.3244617],[23.9366964,35.3247142],[23.9361019,35.3250926],[23.9359366,35.3254532],[23.9362444,35.3258141],[23.9363212,35.3261117],[23.936563,35.3264364],[23.9365186,35.3268782],[23.9365625,35.3270045],[23.9369256,35.3270317],[23.9375198,35.3269238],[23.9380699,35.3270323],[23.9386862,35.3268433],[23.9393463,35.3269248],[23.9398745,35.3267627],[23.9405235,35.3269794],[23.9411948,35.3268625],[23.9419646,35.3272777],[23.9434499,35.3274768],[23.9439117,35.3278918],[23.9440548,35.3278377],[23.944253,35.3275944],[23.9443082,35.3273419],[23.9446494,35.3271167],[23.9448915,35.3270356],[23.9452876,35.3270538],[23.9455516,35.3271802],[23.9458816,35.3272525],[23.9462336,35.32746],[23.9463656,35.327406],[23.9465418,35.3271716],[23.9466739,35.3271356],[23.9473449,35.3273884],[23.9475653,35.3268114],[23.9480608,35.3262616],[23.9481928,35.3261985],[23.9485669,35.3262888],[23.9496117,35.3269565],[23.9499747,35.3270468],[23.9503487,35.3272724],[23.9504587,35.3272725],[23.9509652,35.3266685],[23.9508113,35.3264701],[23.9503713,35.3262174],[23.9505475,35.32592],[23.9504872,35.3256517],[23.9507017,35.3257216],[23.9511196,35.3260104],[23.9513805,35.3260984],[23.9516705,35.326484],[23.951896,35.3266306],[23.9522039,35.3267705],[23.953139,35.3270053],[23.9547556,35.3284937],[23.9549315,35.3287372],[23.9549864,35.3289536],[23.9548208,35.3299815],[23.9550517,35.33018],[23.9562508,35.3307394],[23.9566907,35.3311724],[23.9570424,35.3318218],[23.9571411,35.332444],[23.9579113,35.3324803],[23.9587257,35.3323093],[23.9588798,35.3321921],[23.9588688,35.33212],[23.9591549,35.332102],[23.9588909,35.3318675],[23.958957,35.3318314],[23.9596942,35.3318497],[23.9601233,35.331931],[23.9603214,35.331868],[23.9604094,35.331886],[23.9604533,35.3320844],[23.9607613,35.332319],[23.9608712,35.3325534],[23.9610472,35.3327338],[23.9612232,35.3327519],[23.9622353,35.3332031],[23.9624114,35.3332122],[23.9629724,35.333573],[23.9637755,35.3338257],[23.9645237,35.3338891],[23.9661631,35.3342682],[23.9667024,35.3341151],[23.9669335,35.3339438],[23.9672416,35.3339259],[23.9676598,35.3336916],[23.9678689,35.3336916],[23.968045,35.3336105],[23.9687823,35.3334755],[23.9689364,35.3332771],[23.9693435,35.3332772],[23.9692337,35.332646],[23.9694539,35.3323125],[23.969432,35.3321411],[23.9698173,35.3316994],[23.9709618,35.3311136],[23.9716332,35.3306449],[23.9720087,35.3305232],[23.972882,35.3306767],[23.9736413,35.3306228],[23.9742575,35.3304426],[23.9746977,35.3302623],[23.9750389,35.3298296],[23.975193,35.329496],[23.9755892,35.3291805],[23.9758753,35.3290633],[23.9767226,35.3290003],[23.9778339,35.3290096],[23.9783841,35.3288113],[23.9799575,35.3288657],[23.9809697,35.3288208],[23.9816409,35.3287217],[23.9823562,35.3284873],[23.9829394,35.3280546],[23.9833576,35.3279284],[23.9841388,35.3278203],[23.9851731,35.3274418],[23.9853051,35.3275319],[23.9854592,35.3274869],[23.9855032,35.327541],[23.9860423,35.3274779],[23.9875937,35.3275953],[23.9880448,35.3275773],[23.9883419,35.3274511],[23.9892111,35.327352],[23.9893871,35.3274242],[23.9903773,35.3275865],[23.9905864,35.3276497],[23.9907624,35.32783],[23.9908614,35.327812],[23.9912466,35.3276137],[23.9922038,35.3272711],[23.992622,35.3269285],[23.9930621,35.3268023],[23.9934142,35.3265588],[23.9936232,35.3265318],[23.9944264,35.3261261],[23.9963959,35.3254859],[23.996627,35.325504],[23.9971551,35.3256663],[23.9974962,35.3259007],[23.9978152,35.3259909],[23.9978372,35.3260811],[23.9981233,35.3259729],[23.9981233,35.326036],[23.9988495,35.3260721],[23.9988274,35.3261532],[23.9990475,35.3260811],[23.9996155,35.3261082],[24.0003857,35.3256393],[24.0005947,35.3252155],[24.0009908,35.3250532],[24.0017059,35.3245662],[24.002179,35.3243228],[24.0030042,35.3240342],[24.0037743,35.3238989],[24.0041924,35.3237547],[24.0051056,35.3229251],[24.0058757,35.3225103],[24.0067489,35.3218971],[24.007552,35.321338],[24.0083771,35.3205985],[24.008707,35.3199312],[24.008685,35.3196517],[24.008784,35.3193812],[24.009136,35.3189303],[24.009147,35.31875],[24.0090514,35.318608],[24.0087158,35.3180715],[24.0090457,35.3173862],[24.0090677,35.3171067],[24.0093097,35.3164755],[24.0093316,35.3158352],[24.0098265,35.3148884],[24.0102995,35.3142302],[24.0105339,35.3140656],[24.010952,35.3141196],[24.0125471,35.313876],[24.0126461,35.3139842],[24.0128441,35.3137498],[24.0132181,35.3136415],[24.0137791,35.3136865],[24.0142191,35.3136053],[24.0149892,35.3136233],[24.0151487,35.3135669],[24.0155403,35.3135646],[24.0157383,35.313772],[24.0162553,35.3137358],[24.0164204,35.313817],[24.0172014,35.3137357],[24.0172674,35.3137537],[24.0172124,35.3138078],[24.0175095,35.3137807],[24.0175535,35.3138529],[24.0176415,35.3137807],[24.0177405,35.3137897],[24.0180596,35.3140602],[24.0183786,35.3140241],[24.0190386,35.3141322],[24.0192807,35.3142584],[24.0193577,35.3142313],[24.0194127,35.3143034],[24.0198638,35.3143755],[24.0203149,35.3146369],[24.0206889,35.3146459],[24.02103,35.3148442],[24.021085,35.314772],[24.021162,35.3148622],[24.021261,35.3148441],[24.0219761,35.3151055],[24.0222842,35.3150153],[24.0226032,35.3151414],[24.0229002,35.3151414],[24.0231203,35.3152676],[24.0240114,35.3154207],[24.0244515,35.3153665],[24.0245284,35.3152944],[24.0245284,35.315123],[24.0245944,35.315114],[24.0247374,35.3152222],[24.0249465,35.3152762],[24.0250786,35.3155287],[24.0254856,35.3156007],[24.0257165,35.3151679],[24.0258926,35.315258],[24.0258926,35.3155375],[24.0260467,35.3155555],[24.0266846,35.3152488],[24.0270036,35.3151586],[24.0275318,35.3155372],[24.0275539,35.3156995],[24.027785,35.316015],[24.027983,35.3161051],[24.0282912,35.3163666],[24.0288855,35.3170337],[24.0291715,35.3170607],[24.0294686,35.3171958],[24.0298976,35.3170695],[24.0301792,35.3171077],[24.0307347,35.3170287],[24.0309548,35.3170918],[24.0311044,35.3172022]]},{"id":17651,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u03a3\u03bf\u03cd\u03b3\u03b9\u03b1-\u0391\u03b3\u03af\u03b1 \u03a1\u03bf\u03c5\u03bc\u03ad\u03bb\u03b7","description_GR":"\u03a0\u03b1\u03c1\u03ac\u03ba\u03c4\u03b9\u03b1 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5 \u03954 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03a3\u03bf\u03cd\u03b3\u03b9\u03b1 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a1\u03bf\u03c5\u03bc\u03ad\u03bb\u03b7","path":"CRETE\/Crete_LefkaOri_Sougia_AgRoumeli","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":5,"length":1666,"name_EN":"Lefka Ori: E4 Soughia-Aghia Roumeli","description_EN":"Coastal trail E4 from Soughia to Agia Roumeli","ascent_time":510,"descent_time":485,"marker":"E4","level":11,"ascent":1686,"descent":1677,"maxelev":534,"minelev":0,"link_logo":"","link_ref":"http:\/\/www.anavasi.gr\/product.php?lang=gr$id=91","pdf_link":"","bbox":"LINESTRING(23.81085 35.22601,23.96056 35.25212)","views":104,"millestones":"0,23.8108614,35.2483962#1,23.8167054,35.2512224#2,23.8238447,35.2508048#3,23.8338306,35.2501308#4,23.8394020,35.2488091#5,23.8480580,35.2461795#6,23.8561972,35.2416584#7,23.8637970,35.2419512#8,23.8710315,35.2397325#9,23.8787426,35.2373817#10,23.8873614,35.2372233#11,23.8969304,35.2341664#12,23.9047352,35.2317037#13,23.9107949,35.2290065#14,23.9190935,35.2263027#15,23.9287374,35.2284882#16,23.9361163,35.2316770#17,23.9437633,35.2297865#18,23.9514763,35.2295207#1.7,23.9605594,35.2296874","x":23.8787467,"y":35.2374194,"coor":[[23.8108614,35.2483962],[23.8113933,35.2484872],[23.8116086,35.2485236],[23.8116854,35.2485959],[23.8116739,35.2488213],[23.8121705,35.2488288],[23.812764,35.2488658],[23.8126686,35.2492895],[23.8121058,35.2502444],[23.8121276,35.2503166],[23.81238,35.2504793],[23.8124961,35.2506733],[23.812577,35.2508763],[23.8130592,35.2510687],[23.813081,35.2511318],[23.8137181,35.2513402],[23.8139164,35.2511602],[23.8140703,35.2511334],[23.8142236,35.2514221],[23.8142014,35.2515123],[23.8143003,35.2515305],[23.8142339,35.2516927],[23.8143879,35.2516568],[23.8144757,35.2517471],[23.8144206,35.2518012],[23.8148489,35.2519822],[23.8148597,35.2520633],[23.814954,35.2521243],[23.814992,35.2518561],[23.8151129,35.2518653],[23.8162281,35.2516619],[23.8164155,35.2514097],[23.8166026,35.2513469],[23.8167018,35.2512208],[23.8168775,35.2513022],[23.8169435,35.2512662],[23.8169107,35.251176],[23.8171196,35.2511763],[23.8174951,35.2512941],[23.8172653,35.2508429],[23.8172663,35.2503921],[23.8179141,35.2507357],[23.8184079,35.2511152],[23.8185943,35.2513318],[23.8186496,35.2511516],[23.8185854,35.250376],[23.8189045,35.2502503],[23.8192017,35.2500343],[23.8194372,35.2499648],[23.81991,35.2498843],[23.8204013,35.249876],[23.8205796,35.2498447],[23.8208255,35.2500119],[23.8210343,35.2500303],[23.821221,35.2501387],[23.8213202,35.2500127],[23.8216059,35.2500672],[23.8219577,35.2500226],[23.8222764,35.2500772],[23.8228472,35.2504387],[23.8236052,35.2506562],[23.8239016,35.250837],[23.8241433,35.2509005],[23.8246159,35.2509192],[23.8251101,35.2511092],[23.8257256,35.2511372],[23.8260442,35.2512278],[23.826473,35.2511743],[23.8266931,35.2510845],[23.8273307,35.2510674],[23.8277596,35.2509778],[23.8282761,35.2510146],[23.8286387,35.2511143],[23.8288809,35.2509072],[23.8296285,35.2508813],[23.8301675,35.2507017],[23.8304642,35.2507382],[23.830882,35.2506846],[23.831179,35.2505859],[23.8312232,35.2504958],[23.8317405,35.2501448],[23.8318728,35.2499466],[23.8320048,35.2499107],[23.8324884,35.2499294],[23.8327525,35.2498126],[23.8329393,35.2498309],[23.8332028,35.2499665],[23.833587,35.2502646],[23.833796,35.2501657],[23.8340493,35.2499136],[23.8343682,35.2498689],[23.8350386,35.2499149],[23.8356427,35.2501502],[23.8358401,35.2503759],[23.8364331,35.2507103],[23.8367083,35.2505123],[23.8370268,35.250639],[23.8373458,35.2505222],[23.8376202,35.2507029],[23.8380786,35.2506359],[23.8384228,35.2506408],[23.8389719,35.2509211],[23.8390599,35.2508851],[23.8389392,35.2507678],[23.839137,35.250768],[23.8392357,35.2508944],[23.8393019,35.2507953],[23.8393456,35.2509036],[23.8395982,35.2510301],[23.8394997,35.2507956],[23.8396206,35.2508318],[23.8396427,35.2507687],[23.8394456,35.2503897],[23.8394801,35.2496143],[23.8395458,35.2497406],[23.8396339,35.2496596],[23.8397566,35.249813],[23.8397485,35.2493464],[23.8394415,35.2489943],[23.8393761,35.2486877],[23.8394094,35.2485344],[23.8397728,35.2481742],[23.8395866,35.2478674],[23.8397958,35.2476783],[23.8404667,35.2474628],[23.8407965,35.2474362],[23.8412035,35.2473195],[23.8418855,35.2470499],[23.8420283,35.2470681],[23.842105,35.2472125],[23.8427317,35.2471051],[23.8430841,35.2467539],[23.8431615,35.2465285],[23.8433047,35.2464025],[23.8440082,35.2463673],[23.8441508,35.2465118],[23.8444474,35.2466294],[23.845241,35.2467296],[23.8454718,35.2467209],[23.8456146,35.2467842],[23.8458348,35.2466041],[23.8467361,35.2465782],[23.847792,35.2462098],[23.8483637,35.2461474],[23.8485397,35.2460665],[23.8491892,35.2455533],[23.8492776,35.2452829],[23.849894,35.2448419],[23.8502247,35.2442922],[23.8503242,35.2439858],[23.8505444,35.2437877],[23.850948,35.2436146],[23.8512436,35.2436691],[23.8514965,35.2436243],[23.8515957,35.2434892],[23.8517496,35.2434352],[23.8519368,35.2432371],[23.85252,35.2428771],[23.8527404,35.2425798],[23.8529283,35.2419849],[23.8530384,35.2419129],[23.8538625,35.2420041],[23.8544563,35.2418696],[23.8554237,35.2417806],[23.8556217,35.2416816],[23.8559074,35.2417],[23.8563362,35.2416374],[23.8565562,35.2415204],[23.8571498,35.241467],[23.8576774,35.2414857],[23.8583475,35.2416848],[23.8584243,35.24173],[23.8585009,35.2419375],[23.8586657,35.2420008],[23.8589295,35.241965],[23.8591826,35.2418211],[23.8597652,35.2417676],[23.8599848,35.2418581],[23.8603799,35.2422102],[23.8605887,35.2422284],[23.8614673,35.2426623],[23.8619287,35.2428071],[23.8622804,35.2427714],[23.8626532,35.2433489],[23.8627302,35.2433039],[23.8628074,35.2431056],[23.8628844,35.2431238],[23.8628951,35.24325],[23.8630273,35.2431059],[23.863159,35.2432323],[23.8631484,35.2429798],[23.8633685,35.2427907],[23.8633471,35.2424841],[23.863611,35.2424122],[23.8637542,35.2422321],[23.8637433,35.2421599],[23.8636225,35.2420876],[23.8636775,35.2420787],[23.8636559,35.2418352],[23.8641608,35.2422505],[23.8643805,35.2423319],[23.8644023,35.2424402],[23.864633,35.2425306],[23.8647426,35.2427111],[23.8649733,35.2427474],[23.8652258,35.2429641],[23.8654676,35.2429283],[23.8656657,35.2428023],[23.8657315,35.2428925],[23.8661271,35.242929],[23.8664614,35.2428843],[23.866769,35.2429387],[23.8667582,35.2428305],[23.8669341,35.2428217],[23.8669343,35.2427225],[23.8673301,35.2426147],[23.8673414,35.2424705],[23.8674403,35.2424435],[23.8675062,35.2424887],[23.8676383,35.2423806],[23.867891,35.242426],[23.8680341,35.2422819],[23.868199,35.242264],[23.8684847,35.2423184],[23.8688036,35.2422286],[23.8690893,35.242274],[23.8690786,35.2421027],[23.8693642,35.2421571],[23.8693895,35.2420444],[23.8693801,35.2419001],[23.8695671,35.2417921],[23.8697764,35.2415218],[23.8699853,35.2414679],[23.8699196,35.2412875],[23.8700519,35.2410713],[23.8700411,35.240927],[23.8703165,35.2405486],[23.870515,35.240116],[23.8705594,35.2398455],[23.8708784,35.2396655],[23.8711311,35.239774],[23.8712851,35.239684],[23.8716031,35.2392875],[23.8718358,35.2389091],[23.8718693,35.2385935],[23.8721115,35.2383233],[23.8729033,35.2380085],[23.8737725,35.2373962],[23.873927,35.2370357],[23.8736857,35.2367199],[23.8739279,35.2364406],[23.8741101,35.2365129],[23.874297,35.2365131],[23.8746593,35.2367299],[23.8753408,35.2367126],[23.8758133,35.2367672],[23.8761211,35.2367134],[23.8763408,35.2367677],[23.8764509,35.2366596],[23.8765828,35.2366417],[23.8766706,35.2366959],[23.8768136,35.236642],[23.8770551,35.2368045],[23.8776705,35.2368322],[23.8781428,35.2370491],[23.8784285,35.2370584],[23.8785162,35.2372388],[23.8787359,35.2373021],[23.8787467,35.2374194],[23.8788356,35.2374781],[23.8790326,35.2380193],[23.8793748,35.2384074],[23.8801215,35.238859],[23.8799895,35.238967],[23.8800113,35.2390753],[23.8801101,35.2391475],[23.8803958,35.2391929],[23.8809784,35.2391033],[23.8813739,35.2392299],[23.8821213,35.2391946],[23.882374,35.239294],[23.8826048,35.2392762],[23.8828685,35.2393305],[23.8830664,35.2392856],[23.8833194,35.2391146],[23.8836746,35.2390946],[23.8841036,35.2388425],[23.8847634,35.2386178],[23.8850496,35.2382844],[23.8856214,35.2380685],[23.8856655,35.2379513],[23.8858635,35.2378253],[23.8867214,35.2373933],[23.887535,35.2371776],[23.8875901,35.2370695],[23.8885246,35.2368269],[23.8887117,35.2366918],[23.8892834,35.236521],[23.8897671,35.2364493],[23.8900307,35.2365127],[23.8907014,35.2363329],[23.8908662,35.2363782],[23.8909103,35.236252],[23.8911193,35.236153],[23.8911854,35.2360448],[23.8914712,35.236009],[23.8916802,35.2358108],[23.8923288,35.2356761],[23.8926039,35.235478],[23.8929115,35.2355234],[23.8931643,35.2354875],[23.8935598,35.2356051],[23.8939119,35.2352988],[23.8943187,35.235227],[23.8944507,35.2350829],[23.8947916,35.2349569],[23.8951542,35.2349753],[23.8959897,35.2347867],[23.8964297,35.2344804],[23.8966936,35.2344266],[23.8968806,35.2342464],[23.8970348,35.2340031],[23.8969699,35.2331554],[23.897058,35.2330202],[23.8973879,35.2328402],[23.8978825,35.2328045],[23.8981572,35.2328679],[23.898366,35.23285],[23.8987619,35.232688],[23.8987511,35.2325347],[23.8990919,35.2324448],[23.8994101,35.2328238],[23.8996408,35.2329052],[23.8997178,35.2328511],[23.8996741,35.2326617],[23.899773,35.2325987],[23.8999708,35.2326079],[23.9005425,35.232446],[23.9010701,35.2324014],[23.9013997,35.2324287],[23.9016853,35.2325642],[23.9028281,35.2326643],[23.9029601,35.2325652],[23.9034768,35.2324123],[23.9041363,35.2323768],[23.9043232,35.2322507],[23.9043781,35.2323139],[23.9044661,35.2322598],[23.904543,35.232323],[23.9046861,35.2320526],[23.9046755,35.2317641],[23.9050496,35.2313856],[23.9053133,35.2313768],[23.9053794,35.2312506],[23.9053246,35.2311785],[23.9055664,35.2311696],[23.9059179,35.2312781],[23.9063685,35.2312875],[23.9075669,35.2307835],[23.9080725,35.2306937],[23.9084901,35.230685],[23.9088857,35.2307935],[23.9094783,35.2315243],[23.9096101,35.2315965],[23.909764,35.2315606],[23.909852,35.2314254],[23.910072,35.2312813],[23.9100722,35.2311009],[23.9102702,35.2309298],[23.9104131,35.2308938],[23.9104789,35.231002],[23.9106437,35.2310923],[23.9109184,35.2310565],[23.9111713,35.2309485],[23.9111824,35.2308312],[23.9109737,35.230768],[23.91082,35.2306146],[23.9109082,35.2303802],[23.9108318,35.2299112],[23.9107879,35.229803],[23.9106122,35.2297217],[23.9105355,35.2295233],[23.9106567,35.2291807],[23.9108363,35.2289532],[23.9108331,35.2287232],[23.9107232,35.2286691],[23.9106575,35.2285247],[23.9107785,35.2283445],[23.9116579,35.2281107],[23.9125045,35.2277326],[23.9131533,35.2273724],[23.9136483,35.2269219],[23.914176,35.2266247],[23.9148027,35.2263907],[23.9152083,35.2263481],[23.9156808,35.2263845],[23.9158849,35.2265515],[23.9160048,35.2265403],[23.9163673,35.2266127],[23.9164883,35.2265046],[23.9167301,35.2264506],[23.9167853,35.2262884],[23.9170051,35.2262344],[23.9170819,35.2263427],[23.9170049,35.2264508],[23.9170818,35.2264779],[23.9172029,35.2262796],[23.9174997,35.2261175],[23.9177083,35.226307],[23.9180051,35.2262531],[23.9183347,35.2262894],[23.9186532,35.2264339],[23.9191259,35.22629],[23.9194555,35.2263353],[23.9196534,35.2262452],[23.9199062,35.2262183],[23.9199942,35.2261372],[23.9202139,35.2262005],[23.9204557,35.2261375],[23.9208843,35.2261739],[23.9211262,35.2260478],[23.9214998,35.225994],[23.9218184,35.2260753],[23.9220272,35.2260664],[23.9224007,35.22622],[23.9225546,35.226193],[23.9227523,35.2263194],[23.9232798,35.2262836],[23.9234335,35.2263739],[23.9237522,35.2264282],[23.92384,35.2265094],[23.9240379,35.2263923],[23.9242467,35.2263564],[23.9258398,35.2267361],[23.9270365,35.2279812],[23.9276846,35.2282881],[23.9289371,35.2285323],[23.9293107,35.2286678],[23.9296951,35.2288845],[23.9298378,35.2290468],[23.9298486,35.2292452],[23.93009,35.2296962],[23.9309248,35.2301656],[23.931375,35.2306528],[23.9316167,35.230698],[23.9319131,35.2310588],[23.9324405,35.2312214],[23.9327372,35.2312216],[23.932902,35.2313389],[23.9335502,35.2314926],[23.9336053,35.2313303],[23.9339129,35.2315108],[23.9342313,35.2319077],[23.934451,35.2320431],[23.9346046,35.2323768],[23.9348572,35.2324942],[23.9349449,35.2327557],[23.9353407,35.2325936],[23.9355166,35.2324494],[23.9357368,35.2320618],[23.9358356,35.2321701],[23.9362978,35.2313588],[23.9365286,35.2313228],[23.9365177,35.2311786],[23.9366386,35.2311426],[23.9365071,35.2307277],[23.9367492,35.2303221],[23.9372441,35.2298174],[23.9376399,35.2295561],[23.9386181,35.2293131],[23.9386182,35.229241],[23.9391238,35.229142],[23.9397501,35.2291965],[23.93986,35.2292957],[23.9402222,35.2299],[23.9403647,35.230405],[23.9406065,35.2302879],[23.9405626,35.2302158],[23.9408705,35.2299725],[23.9412443,35.2298194],[23.9416618,35.2298917],[23.9428158,35.2298111],[23.9433322,35.2298745],[23.9439367,35.2297485],[23.9450687,35.2297039],[23.9456622,35.2295329],[23.945827,35.229551],[23.9461566,35.2297315],[23.9464865,35.2293709],[23.9465853,35.2295513],[23.9467173,35.2293981],[23.9468381,35.2295785],[23.9470138,35.2296507],[23.947014,35.2293982],[23.9473439,35.2290828],[23.9474098,35.2291008],[23.9474317,35.2293173],[23.9476296,35.2290649],[23.9478054,35.2291281],[23.9479374,35.2289838],[23.9480692,35.2291372],[23.948322,35.228957],[23.9484208,35.2291373],[23.9484978,35.2290562],[23.9485417,35.2291374],[23.9486408,35.2288038],[23.9487617,35.2287678],[23.9488825,35.2289482],[23.9491244,35.2286958],[23.949311,35.2290656],[23.9494759,35.2290566],[23.9498713,35.2292732],[23.9500801,35.2293184],[23.9507286,35.2292104],[23.951256,35.2293459],[23.9518162,35.229797],[23.9526182,35.2300498],[23.9529587,35.2303385],[23.9529806,35.2305459],[23.9531893,35.2306992],[23.9533651,35.2307354],[23.9536839,35.2306273],[23.9537058,35.2306814],[23.9542992,35.2308529],[23.9545848,35.2310424],[23.9548376,35.2310155],[23.9562881,35.2313316],[23.9571012,35.231422],[23.9586948,35.2313865],[23.9590025,35.2312965],[23.9591675,35.2311342],[23.9594094,35.2307556],[23.9593027,35.2305188],[23.9600096,35.2303726],[23.9598484,35.2298427],[23.9605594,35.2296874]]},{"id":17653,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u039a\u03bf\u03c5\u03c3\u03c4\u03bf\u03b3\u03ad\u03c1\u03b1\u03ba\u03bf-\u03a3\u03bf\u03cd\u03b3\u03b9\u03b1","description_GR":"\u039a\u03b1\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03954 \u03b1\u03c0\u03cc \u03c4\u03bf \u039a\u03bf\u03c5\u03c3\u03c4\u03bf\u03b3\u03ad\u03c1\u03b1\u03ba\u03bf \u03c3\u03c4\u03b7 \u03a3\u03bf\u03cd\u03b3\u03b9\u03b1","path":"CRETE\/Crete_LefkaOri_Koustogerako_Sougia","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":5898,"name_EN":"Lefka Ori: E4 Koustogerako-Soughia","description_EN":"Walking down E4 from Koustogerako to Soughia","ascent_time":225,"descent_time":235,"marker":"E4","level":11,"ascent":83,"descent":585,"maxelev":507,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.81079 35.24843,23.83531 35.27807)","views":16,"millestones":"0,23.8352530,35.2781046#1,23.8270597,35.2747447#2,23.8192192,35.2711612#3,23.8178673,35.2647086#4,23.8127513,35.2586541#5,23.8147462,35.2522884#5.9,23.8108614,35.2483962","x":23.8159105,"y":35.2633159,"coor":[[23.835253,35.2781046],[23.8352113,35.2780031],[23.8348705,35.2779395],[23.834585,35.2777318],[23.8343104,35.2776232],[23.83408,35.2773704],[23.8338491,35.277334],[23.8333761,35.2774055],[23.8328601,35.2770261],[23.8323656,35.2768631],[23.8323545,35.2769442],[23.8322447,35.2768539],[23.832212,35.2767096],[23.832191,35.2762226],[23.8322904,35.2760424],[23.8322246,35.2759522],[23.8319057,35.2759517],[23.8314104,35.2761765],[23.8313005,35.2761763],[23.8308611,35.2759593],[23.8306528,35.2756705],[23.8300264,35.2755073],[23.8298283,35.2755791],[23.8291689,35.2754159],[23.82852,35.2755051],[23.8281904,35.2753424],[23.8276405,35.2754047],[23.8273989,35.2752601],[23.8273005,35.2749894],[23.8269275,35.2746102],[23.8269169,35.2744028],[23.8267965,35.2741862],[23.8265108,35.2740596],[23.8258622,35.2740045],[23.8257741,35.2740675],[23.8257957,35.2742749],[23.8257187,35.2743019],[23.8257824,35.2743899],[23.8247706,35.2744876],[23.8238792,35.274829],[23.8235934,35.2747925],[23.823231,35.2745755],[23.8225278,35.2743401],[23.8219791,35.2738433],[23.8212433,35.2734635],[23.820706,35.2727774],[23.8200136,35.2721948],[23.8195966,35.2718155],[23.8193997,35.2713734],[23.8189171,35.2708136],[23.8185557,35.2701638],[23.8182733,35.2686215],[23.8184505,35.2680627],[23.8184843,35.267684],[23.8184084,35.267197],[23.8182769,35.2670345],[23.8181558,35.2670794],[23.8181446,35.2671966],[23.8182088,35.2679902],[23.8181756,35.2680803],[23.8179887,35.268071],[23.8179426,35.2674984],[23.8177574,35.2667317],[23.817968,35.2659385],[23.8179046,35.2647932],[23.8177734,35.2644955],[23.8175102,35.2641614],[23.8174115,35.2640891],[23.8172905,35.264107],[23.8172717,35.2641926],[23.8170084,35.2639848],[23.8165251,35.2637677],[23.8159105,35.2633159],[23.8154381,35.2631439],[23.8147567,35.2630617],[23.8146908,35.2629985],[23.8149113,35.2627283],[23.8150116,35.2621694],[23.8150016,35.2617185],[23.8149145,35.2613397],[23.8145206,35.2605275],[23.8141802,35.2603196],[23.8134435,35.2603996],[23.813169,35.2602279],[23.8131143,35.2601286],[23.8131698,35.2599213],[23.8130276,35.2595875],[23.8131712,35.2592721],[23.8131716,35.2591008],[23.8130292,35.2588751],[23.812722,35.2586312],[23.8127888,35.2582706],[23.8127239,35.2578197],[23.812768,35.2577296],[23.8130433,35.2575587],[23.8134721,35.2575323],[23.8136481,35.2574424],[23.8141,35.2569381],[23.8142217,35.2566137],[23.8142118,35.2561177],[23.8141246,35.255784],[23.8141694,35.2554234],[23.8141147,35.2553151],[23.8140048,35.2552969],[23.8137076,35.2554858],[23.8129601,35.2554756],[23.8130595,35.2552594],[23.8133788,35.2550615],[23.8135551,35.2548544],[23.8140409,35.2539354],[23.8140086,35.2536287],[23.8138661,35.2534572],[23.8136795,35.2533667],[23.8138746,35.2530695],[23.814348,35.2527636],[23.8144807,35.2523941],[23.8148438,35.2522504],[23.814954,35.2521243],[23.8148597,35.2520633],[23.8148489,35.2519822],[23.8144206,35.2518012],[23.8144757,35.2517471],[23.8143879,35.2516568],[23.8142339,35.2516927],[23.8143003,35.2515305],[23.8142014,35.2515123],[23.8142236,35.2514221],[23.8140703,35.2511334],[23.8139164,35.2511602],[23.8137181,35.2513402],[23.813081,35.2511318],[23.8130592,35.2510687],[23.812577,35.2508763],[23.8124961,35.2506733],[23.81238,35.2504793],[23.8121276,35.2503166],[23.8121058,35.2502444],[23.8126686,35.2492895],[23.812764,35.2488658],[23.8121705,35.2488288],[23.8116739,35.2488213],[23.8116854,35.2485959],[23.8116086,35.2485236],[23.8114108,35.2484895],[23.8108614,35.2483962]]},{"id":17674,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u03a7\u03c1\u03c5\u03c3\u03bf\u03c3\u03ba\u03b1\u03bb\u03af\u03c4\u03b9\u03c3\u03c3\u03b1-\u0395\u03bb\u03b1\u03c6\u03bf\u03bd\u03ae\u03c3\u03b9","description_GR":"\u03a0\u03b1\u03c1\u03ac\u03ba\u03c4\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03a7\u03c1\u03c5\u03c3\u03bf\u03c3\u03ba\u03b1\u03bb\u03af\u03c4\u03b9\u03c3\u03c3\u03b1 \u03c3\u03c4\u03bf \u0395\u03bb\u03b1\u03c6\u03bf\u03bd\u03ae\u03c3\u03b9","path":"CRETE\/Crete_Elafonisi_Xrisoskalitisa_Elafonisi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6282,"name_EN":"Crete: E4 Chrisoskalitissa-Elafonisi","description_EN":"Coastal trail from Chrisoskalitissa to Elafonisi","ascent_time":150,"descent_time":150,"marker":"Red_dots","level":12,"ascent":93,"descent":85,"maxelev":48,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.52673 35.2728,23.54463 35.30981)","views":24,"millestones":"0,23.5371484,35.3098508#1,23.5314197,35.3039645#2,23.5275620,35.2962213#3,23.5311005,35.2888004#4,23.5367604,35.2820338#5,23.5372274,35.2758654#6.3,23.5446162,35.2757277","x":23.5343943,"y":35.2852377,"coor":[[23.5371484,35.3098508],[23.5370548,35.3088947],[23.537374,35.3080776],[23.536483,35.3080742],[23.536198,35.3079018],[23.5355834,35.307665],[23.5350215,35.3078161],[23.5346152,35.3076973],[23.5344985,35.3077239],[23.5344798,35.3071558],[23.534129,35.306938],[23.5338233,35.3065401],[23.5333619,35.3062701],[23.5322044,35.3051453],[23.5321695,35.3051136],[23.5319387,35.3046754],[23.5314367,35.3039791],[23.5309989,35.3035987],[23.5305852,35.3028577],[23.5301473,35.3025134],[23.5300722,35.3021705],[23.5298118,35.3019756],[23.5294193,35.301379],[23.5294,35.30091],[23.5292916,35.3006323],[23.5291399,35.300235],[23.5292525,35.2997936],[23.5294007,35.2994155],[23.528876,35.2988634],[23.5286129,35.2987181],[23.5287257,35.2982316],[23.5287932,35.2979749],[23.5286518,35.2977038],[23.5285988,35.297361],[23.5281296,35.29671],[23.528098,35.2964754],[23.5279772,35.2964298],[23.5275694,35.2962344],[23.5273952,35.2959271],[23.5273635,35.2957106],[23.5268168,35.2951494],[23.5268958,35.2948071],[23.5268539,35.2944462],[23.5270107,35.294138],[23.5269458,35.2939574],[23.5273002,35.293526],[23.5274546,35.2934455],[23.5274771,35.2933644],[23.5277375,35.2930363],[23.5280137,35.292812],[23.5282471,35.2923981],[23.5283797,35.2922904],[23.5283807,35.2921101],[23.5286913,35.2916514],[23.5287591,35.2913361],[23.52872,35.2909054],[23.5290624,35.2906542],[23.5290971,35.2903658],[23.529197,35.2901949],[23.5297593,35.2899627],[23.5301354,35.2895854],[23.530588,35.2892896],[23.5307763,35.2890559],[23.5310411,35.2889036],[23.5315077,35.2880759],[23.531839,35.2878337],[23.5320609,35.287501],[23.532337,35.2872946],[23.5324923,35.2870698],[23.5328124,35.2868546],[23.5330327,35.2867924],[23.5332961,35.2868836],[23.5334841,35.286704],[23.533881,35.2865251],[23.5341683,35.2862918],[23.534346,35.2859769],[23.5342934,35.2855619],[23.5343943,35.2852377],[23.5345935,35.2850131],[23.5347159,35.284752],[23.5350798,35.2845911],[23.5353897,35.2842407],[23.5356212,35.2841424],[23.5357215,35.2838993],[23.5359531,35.283792],[23.5363753,35.2833878],[23.5367503,35.2831909],[23.5369059,35.282912],[23.5367249,35.2818653],[23.5370008,35.2816951],[23.5373218,35.2813176],[23.5373349,35.2809479],[23.5374567,35.2807996],[23.5375755,35.2808204],[23.5376203,35.2806672],[23.5378076,35.2806139],[23.5378411,35.2805238],[23.5378416,35.2804336],[23.5377394,35.2803949],[23.5377175,35.2803768],[23.5376952,35.280255],[23.537781,35.2802012],[23.5376954,35.2797861],[23.5375645,35.2796053],[23.5378406,35.279399],[23.5378863,35.2791016],[23.53746,35.2786491],[23.5377922,35.2782356],[23.5377945,35.2778389],[23.5376626,35.2778293],[23.5375971,35.2777389],[23.5374093,35.2779005],[23.5372973,35.2782607],[23.5370549,35.278332],[23.5369452,35.2782955],[23.5364532,35.2778067],[23.5366421,35.2774467],[23.5365991,35.2772752],[23.5367095,35.2771945],[23.5368997,35.2766362],[23.536988,35.2765644],[23.5369896,35.2762849],[23.5370055,35.2760325],[23.5372372,35.2758981],[23.53714,35.2755731],[23.537317,35.2753934],[23.5372961,35.275195],[23.5375834,35.2749436],[23.5374745,35.2747719],[23.5375079,35.2746999],[23.5378599,35.2746742],[23.539206,35.2738497],[23.5395693,35.273761],[23.5405732,35.2729961],[23.5407493,35.2729697],[23.5410124,35.2731037],[23.5412772,35.2732986],[23.5417191,35.2733656],[23.5421378,35.2731959],[23.542424,35.2731429],[23.5430263,35.2729671],[23.5433781,35.2729684],[23.5437179,35.2727961],[23.5441345,35.273005],[23.5441669,35.2731134],[23.5434466,35.2741183],[23.5430592,35.2745677],[23.5431356,35.2746762],[23.5435531,35.2747409],[23.5438283,35.2746788],[23.5440477,35.2747698],[23.5443427,35.2750955],[23.5445205,35.2755019],[23.5446162,35.2757277]]},{"id":17675,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u0395\u03bb\u03b1\u03c6\u03bf\u03bd\u03ae\u03c3\u03b9-\u039a\u03bf\u03c5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b1","description_GR":"\u03a0\u03b1\u03c1\u03ac\u03ba\u03c4\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u0395\u03bb\u03b1\u03c6\u03bf\u03bd\u03ae\u03c3\u03b9 \u03c3\u03c4\u03b7\u03bd \u039a\u03bf\u03c5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b1","path":"CRETE\/Crete_Elafonisi_Elafonisi_Koundoura","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":19019,"name_EN":"Crete: E4 Elafonisi-Koundoura","description_EN":"Coastal trail from Elafonisi to Koundoura","ascent_time":470,"descent_time":465,"marker":"E4","level":12,"ascent":394,"descent":411,"maxelev":91,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.54305 35.23056,23.68225 35.27572)","views":50,"millestones":"0,23.5446158,35.2757277#1,23.5461815,35.2690691#2,23.5555739,35.2685653#3,23.5654558,35.2678474#4,23.5730680,35.2658904#5,23.5802019,35.2598895#6,23.5811204,35.2517181#7,23.5775097,35.2458217#8,23.5785929,35.2396316#9,23.5864149,35.2365768#10,23.5963688,35.2369381#11,23.6053826,35.2330748#12,23.6149779,35.2335465#13,23.6247329,35.2345785#14,23.6330018,35.2345616#15,23.6430373,35.2376023#16,23.6539904,35.2378174#17,23.6647261,35.2385634#19,23.6822481,35.2305663","x":23.5751135,"y":35.244915,"coor":[[23.5446158,35.2757277],[23.5445202,35.2755019],[23.5443424,35.2750955],[23.5440473,35.2747698],[23.543828,35.2746788],[23.5435527,35.2747409],[23.5431353,35.2746762],[23.5430589,35.2745677],[23.5434463,35.2741183],[23.5441666,35.2731134],[23.5441342,35.273005],[23.5437176,35.2727961],[23.5436477,35.2725028],[23.5434086,35.272015],[23.5433851,35.2718571],[23.5434862,35.2714607],[23.5439411,35.2711581],[23.5443182,35.2705734],[23.5445253,35.2704705],[23.5448121,35.2699396],[23.5448744,35.2698001],[23.5451969,35.2695105],[23.5455935,35.2693677],[23.5459678,35.2692789],[23.5460675,35.2691441],[23.5465862,35.2688034],[23.5471148,35.268643],[23.5474017,35.2684548],[23.547783,35.268348],[23.5479589,35.2683577],[23.5485093,35.2682245],[23.5487407,35.2681351],[23.5488073,35.2680182],[23.5490386,35.2679469],[23.5493898,35.2680654],[23.5494765,35.2682912],[23.5497283,35.2684815],[23.5500142,35.2684735],[23.5502775,35.2685737],[23.5504647,35.2685293],[23.5506403,35.268584],[23.5509275,35.2683417],[23.55094,35.2680712],[23.5516105,35.2680917],[23.5519849,35.2679849],[23.5521384,35.2680756],[23.5521923,35.2682562],[23.5523781,35.2684552],[23.5526202,35.2684201],[23.5533561,35.268558],[23.5540709,35.2685246],[23.5548071,35.2686175],[23.5558629,35.2685492],[23.5559077,35.2684051],[23.5559957,35.2683874],[23.5568956,35.2687063],[23.5571152,35.2687432],[23.5575992,35.2686999],[23.5577411,35.2688897],[23.5584327,35.2690996],[23.5587844,35.2691099],[23.5590806,35.2692373],[23.5594104,35.2692475],[23.559747,35.2691969],[23.5603177,35.2693883],[23.5607925,35.2690113],[23.5611884,35.2689947],[23.5614298,35.2690858],[23.5624092,35.268936],[23.5633128,35.2685425],[23.5644793,35.2683484],[23.564557,35.2682134],[23.5649212,35.2679442],[23.5653833,35.2678827],[23.5659235,35.2676142],[23.5667052,35.2674096],[23.5674191,35.2675564],[23.5679223,35.267193],[23.568099,35.2670404],[23.5684514,35.2669334],[23.5688046,35.2666732],[23.5690138,35.2666108],[23.5691772,35.2668909],[23.5693968,35.2669458],[23.5695823,35.267217],[23.5695592,35.2674333],[23.5694482,35.2676222],[23.5694695,35.2677666],[23.569315,35.2678652],[23.5692703,35.2680003],[23.5694569,35.2680551],[23.569853,35.2680024],[23.5706054,35.2670944],[23.5709257,35.266825],[23.5713992,35.2666824],[23.5722701,35.2662346],[23.5726665,35.2661188],[23.5732951,35.2657604],[23.5736261,35.2655271],[23.573649,35.2653649],[23.5738263,35.265095],[23.5745755,35.264791],[23.5753603,35.2639732],[23.5758451,35.2637676],[23.575977,35.2637861],[23.5761543,35.2635162],[23.5764405,35.263445],[23.5767822,35.2632659],[23.5768045,35.2632028],[23.5769475,35.2631853],[23.5771903,35.2630058],[23.5773886,35.2629434],[23.5774441,35.2628264],[23.5773131,35.2626546],[23.5774896,35.262538],[23.5775011,35.2624388],[23.5777438,35.2622864],[23.5779968,35.2622512],[23.5780742,35.2621613],[23.5783054,35.262099],[23.5784053,35.26191],[23.5790559,35.2615426],[23.5796082,35.2610395],[23.5797975,35.2605623],[23.5803963,35.2595725],[23.5805288,35.2594558],[23.580618,35.2592036],[23.5809053,35.258916],[23.5808619,35.2588077],[23.5809943,35.258709],[23.5809186,35.2584743],[23.581062,35.2583846],[23.5810198,35.2580418],[23.5810759,35.2578075],[23.5811308,35.2578348],[23.5812303,35.2577269],[23.5811764,35.2575193],[23.5812759,35.2573935],[23.5813114,35.2569067],[23.581433,35.2567718],[23.5810278,35.2564729],[23.5811395,35.2561396],[23.5810761,35.2556345],[23.5811769,35.2552741],[23.581112,35.2550755],[23.5811682,35.2548413],[23.581301,35.2546614],[23.581247,35.2544628],[23.5813823,35.2538051],[23.5815483,35.2535892],[23.5815177,35.2531293],[23.5810918,35.2525868],[23.5811072,35.2517392],[23.5812734,35.2514693],[23.5823965,35.2511125],[23.5824077,35.2510675],[23.5823985,35.2507158],[23.5825312,35.250572],[23.5822799,35.2502645],[23.5816991,35.2499199],[23.5815135,35.2496667],[23.5815144,35.2495044],[23.5814784,35.2494141],[23.5812591,35.2493052],[23.5802048,35.2491302],[23.5800335,35.248246],[23.5797711,35.2479745],[23.5796363,35.2477441],[23.5796284,35.2475277],[23.5797038,35.2474378],[23.5796939,35.2472304],[23.5798065,35.2471045],[23.5797741,35.2469962],[23.5795987,35.2469054],[23.5789726,35.2468221],[23.5784467,35.2464957],[23.5780847,35.2463501],[23.5773408,35.2456713],[23.5771653,35.2455985],[23.576516,35.2457495],[23.5758564,35.2457652],[23.5755946,35.2453856],[23.5751135,35.244915],[23.5751698,35.2446447],[23.5750827,35.2445002],[23.5753043,35.2441583],[23.5752831,35.2440049],[23.5754485,35.2438973],[23.5756906,35.2438441],[23.5758561,35.2437184],[23.5761994,35.2432237],[23.5765524,35.2429905],[23.5770168,35.2424511],[23.5772152,35.2423436],[23.577205,35.2421812],[23.5770523,35.2419553],[23.5771535,35.2415228],[23.5774849,35.2412084],[23.5774964,35.2411092],[23.5777285,35.2408485],[23.5777628,35.2405872],[23.5779175,35.2404434],[23.5781397,35.2399753],[23.5783937,35.2397327],[23.5787133,35.2395715],[23.5788131,35.2394096],[23.578781,35.2392291],[23.5789246,35.2391034],[23.5789143,35.2389591],[23.5790355,35.2388964],[23.5796324,35.238646],[23.5803355,35.2387025],[23.5807424,35.2386498],[23.5809189,35.2385152],[23.5813254,35.2385527],[23.5816554,35.2384907],[23.5818984,35.2382571],[23.5820525,35.2382125],[23.5822495,35.2383755],[23.5824141,35.2384212],[23.5825013,35.2385658],[23.5823897,35.238899],[23.5824223,35.2389712],[23.582817,35.2391529],[23.5830381,35.2389193],[23.5834014,35.2387853],[23.5836003,35.2385876],[23.5840632,35.2383187],[23.584594,35.2376893],[23.5849141,35.2374199],[23.585487,35.2371513],[23.5856961,35.2370979],[23.5858467,35.2371278],[23.58641,35.2365797],[23.5866525,35.2364385],[23.5870893,35.2363025],[23.5871609,35.2362869],[23.5873728,35.2361524],[23.5876919,35.2360633],[23.5881094,35.2360918],[23.5888573,35.2359861],[23.5897708,35.2357187],[23.5901113,35.2357559],[23.5904447,35.2358427],[23.5907519,35.2362157],[23.5909058,35.2362252],[23.5910043,35.2362977],[23.5913014,35.2362176],[23.5914552,35.2362361],[23.5918845,35.2360933],[23.5921043,35.236094],[23.5921488,35.235995],[23.5922475,35.2360404],[23.592479,35.2358879],[23.5930379,35.2362234],[23.5931918,35.2362149],[23.5935208,35.2363513],[23.5947615,35.2365899],[23.5950211,35.2367328],[23.5953173,35.236842],[23.5956436,35.2368521],[23.5964619,35.2369495],[23.5967249,35.2371036],[23.5969005,35.2371403],[23.5975393,35.2368719],[23.5984745,35.2366586],[23.5995102,35.236139],[23.6004228,35.2360429],[23.6016429,35.2360198],[23.6021126,35.2359605],[23.6023565,35.2355465],[23.6029737,35.2351699],[23.604181,35.2341684],[23.6050428,35.2332154],[23.6055163,35.2330186],[23.6058682,35.2329837],[23.6073122,35.2320777],[23.607708,35.2320429],[23.6081787,35.2319294],[23.6088925,35.232049],[23.6104856,35.2321262],[23.6106934,35.2323433],[23.6112536,35.2323992],[23.6114397,35.2325531],[23.6113949,35.2327243],[23.6114603,35.2328417],[23.6117894,35.232969],[23.6119972,35.233168],[23.6131844,35.2331087],[23.6133813,35.2332987],[23.6139872,35.233499],[23.6143604,35.2336084],[23.6146248,35.233465],[23.614909,35.2335019],[23.6153363,35.2337828],[23.6155193,35.2339367],[23.6156946,35.2340455],[23.6157826,35.2340277],[23.6159062,35.233451],[23.6162262,35.2331725],[23.6168249,35.2330256],[23.6175709,35.2332895],[23.6181052,35.2334535],[23.619851,35.2337926],[23.6220253,35.2341781],[23.6250104,35.234627],[23.6254022,35.2347116],[23.6259038,35.2348304],[23.6262225,35.2348314],[23.6264978,35.234715],[23.6270383,35.2342838],[23.6276435,35.2338957],[23.6277113,35.2334721],[23.6278439,35.2333192],[23.6285485,35.2330419],[23.6289116,35.2329618],[23.6294611,35.2329635],[23.6297903,35.2330547],[23.6305571,35.2336003],[23.6306003,35.2337808],[23.6303457,35.2341768],[23.6303995,35.2344294],[23.6306074,35.2346284],[23.6310468,35.2346838],[23.6328155,35.2345991],[23.6337175,35.2344214],[23.6340473,35.2344134],[23.6343435,35.2345225],[23.6361963,35.235538],[23.6370635,35.2357751],[23.6386993,35.2364021],[23.6407255,35.2372715],[23.6423836,35.2376191],[23.6434958,35.2375953],[23.6453316,35.237506],[23.6475486,35.2374201],[23.6515034,35.2378283],[23.65202,35.2378117],[23.6546042,35.2378101],[23.6558015,35.2379668],[23.6569335,35.23797],[23.6581853,35.2382351],[23.659471,35.2382657],[23.6609421,35.2386666],[23.6626775,35.238942],[23.6634358,35.2389441],[23.6639198,35.2388553],[23.6654608,35.2382915],[23.6732725,35.2361848],[23.674582,35.2357735],[23.6760573,35.2351283],[23.6767395,35.2349317],[23.6769812,35.2349504],[23.6779166,35.2346373],[23.67817,35.2344757],[23.6786011,35.2338276],[23.6791997,35.2325307],[23.6793792,35.2321232],[23.6796674,35.2314927],[23.6798664,35.2309432],[23.68101,35.2307659],[23.6815917,35.2306773],[23.6819767,35.2306061],[23.6822481,35.2305663]]},{"id":17676,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u039a\u03bf\u03c5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b1-\u03a0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c7\u03c9\u03c1\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u039a\u03bf\u03c5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b1 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c7\u03c9\u03c1\u03b1","path":"CRETE\/Crete_Paleochora_Koundoura_Paleochora","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":5929,"name_EN":"Crete: E4 Koundoura-Paleochora","description_EN":"From Koundoura to Paleochora","ascent_time":135,"descent_time":135,"marker":"E4","level":11,"ascent":48,"descent":52,"maxelev":19,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.62499 35.23057,23.68224 35.23883)","views":19,"millestones":"0,23.6250063,35.2346292#1,23.6332733,35.2345106#2,23.6433180,35.2375972#3,23.6542712,35.2378204#4,23.6649827,35.2384713#5,23.6753246,35.2354526#5.9,23.6822440,35.2305685","x":23.6453274,"y":35.2375083,"coor":[[23.6250063,35.2346292],[23.6253981,35.2347138],[23.6259,35.2348326],[23.6262187,35.2348336],[23.626494,35.2347172],[23.6270345,35.2342861],[23.6276397,35.233898],[23.6277076,35.2334744],[23.6278401,35.2333215],[23.6285448,35.2330441],[23.6289078,35.2329641],[23.6294573,35.2329658],[23.6297865,35.2330569],[23.6305534,35.2336026],[23.6305965,35.233783],[23.6303419,35.234179],[23.6303957,35.2344316],[23.6306037,35.2346306],[23.631043,35.2346861],[23.6328114,35.2346036],[23.6337134,35.2344259],[23.6340431,35.2344179],[23.6343394,35.234527],[23.6361921,35.2355425],[23.6370593,35.2357796],[23.6386955,35.2364044],[23.6407214,35.2372738],[23.6423794,35.2376213],[23.6434916,35.2375976],[23.6453274,35.2375083],[23.6475448,35.2374223],[23.6514996,35.2378305],[23.6520162,35.237814],[23.6546,35.2378124],[23.6557973,35.2379691],[23.6569293,35.2379723],[23.6581811,35.2382373],[23.6594669,35.238268],[23.660938,35.2386689],[23.6626734,35.2389442],[23.6634317,35.2389463],[23.6639157,35.2388575],[23.6654567,35.2382937],[23.6732684,35.236187],[23.6745779,35.2357758],[23.6760532,35.2351305],[23.6767353,35.234934],[23.676977,35.2349526],[23.6779124,35.2346395],[23.6781658,35.2344779],[23.678597,35.2338298],[23.6791956,35.232533],[23.6793751,35.2321254],[23.6796633,35.231495],[23.6798622,35.2309455],[23.6810058,35.2307681],[23.6815876,35.2306795],[23.6819725,35.2306084],[23.682244,35.2305685]]},{"id":17681,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u03a0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c7\u03c9\u03c1\u03b1-\u03a3\u03bf\u03cd\u03b3\u03b9\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03a0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c7\u03c9\u03c1\u03b1 \u03c3\u03c4\u03b7 \u03a3\u03bf\u03cd\u03b3\u03b9\u03b1, \u03bc\u03ad\u03c3\u03c9 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039b\u03b9\u03c3\u03c3\u03bf\u03cd","path":"CRETE\/Crete_Paleochora_Paleochora_Sougia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":14407,"name_EN":"Crete: E4 Paleochora-Sougia","description_EN":"From Paleochora to Sougia via the ancient city of Lissos","ascent_time":335,"descent_time":335,"marker":"E4","level":11,"ascent":658,"descent":664,"maxelev":263,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.68218 35.2308,23.8109 35.24812)","views":88,"millestones":"0,23.6822440,35.2305685#1,23.6890795,35.2366265#2,23.6984616,35.2391714#3,23.7092092,35.2396883#4,23.7187788,35.2385534#5,23.7274498,35.2394977#6,23.7361089,35.2395486#7,23.7459248,35.2395577#8,23.7552097,35.2415502#9,23.7651865,35.2421338#10,23.7755746,35.2433840#11,23.7845598,35.2418972#12,23.7914570,35.2451307#13,23.7991999,35.2458495#14.4,23.8108618,35.2483940","x":23.7540557,"y":35.2409903,"coor":[[23.682244,35.2305685],[23.682409,35.2305329],[23.6825259,35.2307496],[23.6826251,35.2309347],[23.682811,35.2311696],[23.6830516,35.2314881],[23.683467,35.2320392],[23.6837413,35.2319025],[23.684486,35.2325807],[23.6845612,35.232653],[23.6851559,35.2332339],[23.6856686,35.2342271],[23.6866555,35.2350525],[23.6870384,35.2355043],[23.6875752,35.2359565],[23.6877269,35.236516],[23.688529,35.2365902],[23.6887707,35.2366089],[23.6888445,35.2366158],[23.6901212,35.2366687],[23.6911537,35.2368336],[23.6924198,35.237441],[23.6934645,35.2375541],[23.6953303,35.2382351],[23.6955825,35.23838],[23.6956481,35.2384884],[23.6956577,35.2388671],[23.6957439,35.2393182],[23.6958317,35.2393544],[23.6960616,35.239328],[23.6966651,35.2393069],[23.6969405,35.2391273],[23.6976225,35.2389847],[23.6988744,35.2392674],[23.7004342,35.2394967],[23.7011266,35.2394984],[23.7019726,35.2395906],[23.7024893,35.2395558],[23.7037088,35.2396851],[23.7044331,35.2399844],[23.7050373,35.240067],[23.7064339,35.239836],[23.7073462,35.2398382],[23.7078075,35.2399295],[23.708291,35.2399306],[23.7095232,35.2396],[23.7102929,35.2395117],[23.7121066,35.2394438],[23.7128433,35.2393554],[23.7139532,35.2394031],[23.7144039,35.2393591],[23.7148444,35.2391257],[23.7152294,35.2390274],[23.7157908,35.2387763],[23.7160442,35.2385965],[23.7164414,35.2381466],[23.7169365,35.2380215],[23.7175847,35.2380862],[23.718036,35.2378888],[23.7184554,35.2379529],[23.7185428,35.2381154],[23.7184645,35.2382144],[23.7185738,35.238377],[23.7186761,35.2382916],[23.7188069,35.2386345],[23.7190776,35.2389169],[23.7193098,35.2387935],[23.7194016,35.238681],[23.7196878,35.2385374],[23.7199744,35.2382856],[23.7205605,35.2381427],[23.7207889,35.2379538],[23.7211159,35.2377359],[23.7212913,35.2378626],[23.7214763,35.238395],[23.7216732,35.238666],[23.7219253,35.2388649],[23.7222436,35.2389919],[23.7232873,35.2391205],[23.7239473,35.2389507],[23.7240018,35.2390861],[23.7242548,35.2390325],[23.7248591,35.239097],[23.7250022,35.2390252],[23.7253316,35.2391161],[23.7256504,35.2390988],[23.7256508,35.2389906],[23.7260026,35.2389373],[23.7264087,35.2391006],[23.7264849,35.2393352],[23.7267921,35.2394801],[23.7271,35.2394538],[23.7273525,35.2395265],[23.7274735,35.2394907],[23.727682,35.2395994],[23.7280013,35.2394197],[23.7281222,35.23942],[23.7282099,35.2395104],[23.7281544,35.2396545],[23.7285719,35.2397005],[23.7289003,35.2401071],[23.7291963,35.2403241],[23.7293821,35.2406311],[23.7298315,35.2410108],[23.7299632,35.2410833],[23.730172,35.2410747],[23.7306662,35.2412021],[23.7311393,35.2410498],[23.731249,35.2411132],[23.7320733,35.241124],[23.7324477,35.2409084],[23.7326241,35.2407285],[23.7328661,35.240693],[23.7328883,35.2406209],[23.7330754,35.2405491],[23.7332739,35.2403242],[23.733571,35.2402256],[23.734626,35.240264],[23.7349339,35.2402286],[23.7350546,35.240274],[23.7357254,35.2401672],[23.7357476,35.2401042],[23.7358905,35.2400864],[23.7360229,35.2399244],[23.7360679,35.2396089],[23.7361894,35.2394288],[23.7365751,35.2391051],[23.7367507,35.2391866],[23.7370364,35.2392143],[23.7373772,35.239179],[23.7377064,35.239342],[23.7378493,35.2393513],[23.7380357,35.239487],[23.7382994,35.2395056],[23.7385525,35.2394069],[23.7394322,35.2392736],[23.7397844,35.239103],[23.7400264,35.2390584],[23.7402247,35.2389056],[23.7404998,35.238798],[23.7414117,35.2388901],[23.7421701,35.2388827],[23.7428298,35.2388119],[23.7429616,35.2388393],[23.7437316,35.2386335],[23.7440282,35.2386702],[23.7442254,35.238869],[23.7443904,35.2388333],[23.74461,35.2388878],[23.7457946,35.2396568],[23.7459599,35.2395309],[23.7459593,35.2397203],[23.7460685,35.2399369],[23.7465181,35.2402715],[23.746639,35.2402537],[23.7471113,35.2403809],[23.7476607,35.2404181],[23.7478027,35.2406889],[23.7481439,35.2405273],[23.7487922,35.2406008],[23.7489795,35.2404389],[23.7494304,35.2403677],[23.749672,35.2404223],[23.7501887,35.2403783],[23.7504199,35.2402615],[23.7506616,35.2402981],[23.7508705,35.2402625],[23.7511011,35.2403441],[23.7510786,35.2405064],[23.7515397,35.2406696],[23.752243,35.2406981],[23.7528368,35.2406272],[23.7530013,35.2407357],[23.7531552,35.240727],[23.7535943,35.2408902],[23.7538247,35.241035],[23.7540557,35.2409903],[23.754747,35.2413524],[23.7549997,35.241371],[23.7555589,35.241841],[23.7562067,35.2420497],[23.7562063,35.2421759],[23.7564146,35.2423657],[23.7563704,35.2424378],[23.7570402,35.2426645],[23.7573487,35.2424307],[23.7576347,35.2423321],[23.7579752,35.2424139],[23.7587005,35.2424424],[23.7591846,35.2422901],[23.7605808,35.2421756],[23.7608663,35.2422844],[23.7610642,35.2422577],[23.7615474,35.242403],[23.7620206,35.2421875],[23.7624969,35.2421073],[23.7630575,35.2420723],[23.7639693,35.2422364],[23.7655305,35.2420952],[23.7659698,35.2422042],[23.7676515,35.2421804],[23.7686736,35.2422274],[23.7694244,35.2421184],[23.7698637,35.2422275],[23.7704544,35.2425081],[23.7712015,35.2426177],[23.7715092,35.2426093],[23.7716739,35.2426727],[23.7734219,35.2425317],[23.7736639,35.2424601],[23.774345,35.2425966],[23.7745755,35.2426962],[23.7746083,35.2427864],[23.7748497,35.2429311],[23.7751242,35.2430218],[23.775464,35.2433471],[23.7759033,35.2434922],[23.776332,35.2434839],[23.7764857,35.2435473],[23.7767049,35.2437732],[23.7771117,35.2437288],[23.7774299,35.2439098],[23.7776278,35.2438921],[23.7778365,35.2439556],[23.7784306,35.2437313],[23.7787171,35.2434613],[23.778937,35.2434436],[23.7789701,35.2433896],[23.7791901,35.2433359],[23.7794977,35.2434086],[23.7797617,35.2433009],[23.7800694,35.2433195],[23.7803547,35.2435003],[23.7805307,35.2434646],[23.780476,35.2433563],[23.7808716,35.243384],[23.7806961,35.2432485],[23.7807074,35.2431403],[23.7810262,35.2431138],[23.7810813,35.2430598],[23.7812681,35.2430782],[23.7817963,35.2428447],[23.7821372,35.2428002],[23.7821486,35.2426469],[23.7824015,35.2426203],[23.7824566,35.2425393],[23.7838203,35.2422622],[23.7840735,35.2421184],[23.7841618,35.2419562],[23.7842939,35.2418753],[23.7844709,35.2418531],[23.7845806,35.2419074],[23.7846793,35.2420068],[23.7847446,35.2422593],[23.7848546,35.2422325],[23.7849093,35.2423228],[23.7849069,35.2424445],[23.7853241,35.2426075],[23.7853982,35.242788],[23.7855159,35.2428288],[23.7855948,35.242874],[23.7856491,35.2431086],[23.7857259,35.2431628],[23.785579,35.2433812],[23.7857767,35.2434356],[23.7857764,35.2435619],[23.7859301,35.2436072],[23.786073,35.2436255],[23.7862052,35.2435176],[23.7865789,35.2434912],[23.7866226,35.2435904],[23.786952,35.2437173],[23.7871279,35.2437266],[23.7874251,35.2435468],[23.7875354,35.2433937],[23.7879752,35.2433403],[23.787843,35.2434573],[23.7880848,35.2434668],[23.7879085,35.2436288],[23.7879303,35.2437009],[23.7880732,35.2436922],[23.787831,35.243836],[23.7882927,35.2438098],[23.7884245,35.2438731],[23.7885559,35.2440627],[23.7889507,35.244397],[23.7890601,35.2446136],[23.7900921,35.2450663],[23.7905974,35.2451934],[23.7909164,35.2451038],[23.7913451,35.2450775],[23.7918062,35.2452947],[23.7922346,35.2453856],[23.7926523,35.2453863],[23.792817,35.2454587],[23.7931137,35.2454863],[23.7938171,35.2454875],[23.7944319,35.2457951],[23.7944754,35.2459665],[23.7949471,35.246355],[23.7949577,35.2465264],[23.7948473,35.2466975],[23.7949242,35.2467247],[23.7946932,35.2467784],[23.7944956,35.2466698],[23.7942758,35.2466875],[23.7943965,35.2467598],[23.7946028,35.2469608],[23.7948774,35.2470154],[23.7953065,35.2468718],[23.7954387,35.2467278],[23.7958899,35.2465212],[23.7966257,35.2467749],[23.7969665,35.2467484],[23.7972855,35.2466498],[23.7973627,35.2465597],[23.7975495,35.246569],[23.7976487,35.246461],[23.7977805,35.2464973],[23.7981548,35.2462635],[23.7983967,35.2462278],[23.7986169,35.2460929],[23.7987929,35.2460571],[23.7994862,35.2457066],[23.7996841,35.2456709],[23.7999704,35.245482],[23.800355,35.2455367],[23.8007392,35.2457177],[23.801003,35.2457362],[23.8012339,35.2457095],[23.8014099,35.2456196],[23.8016737,35.2456471],[23.8019266,35.2455934],[23.8027939,35.2460277],[23.8033765,35.2460106],[23.8035191,35.246137],[23.8036182,35.246047],[23.8041353,35.2458495],[23.8043332,35.2458408],[23.8047395,35.2460038],[23.804717,35.2461931],[23.8047938,35.2462834],[23.8051342,35.2464192],[23.8055298,35.2464739],[23.8064587,35.2472847],[23.8067663,35.2473573],[23.8075358,35.2473135],[23.8079421,35.2474854],[23.8083394,35.2478332],[23.8088446,35.2480324],[23.8102069,35.2483231],[23.8108618,35.248394]]},{"id":17695,"author":"AnaDigit","name_GR":"\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7: E4 \u039a\u03b1\u03c4\u03c3\u03b9\u03b2\u03ad\u03bb\u03b7-\u0391\u03c3\u03ba\u03cd\u03c6\u03bf\u03c5","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 E4 \u03b1\u03c0\u03cc \u03c4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u039a\u03b1\u03c4\u03c3\u03b9\u03b2\u03ad\u03bb\u03b7 \u03c3\u03c4\u03bf \u0391\u03bc\u03bc\u03bf\u03c5\u03b4\u03ac\u03c1\u03b9 (\u0391\u03c3\u03cd\u03c6\u03bf\u03c5)","path":"CRETE\/Crete_LefkaOri_Askyfou_Katsiveli","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":19583,"name_EN":"Lefka Ori: E4 Katsiveli-Askyfou","description_EN":"E4 section from Katsiveli to Askifou plateau","ascent_time":640,"descent_time":650,"marker":"E4","level":11,"ascent":776,"descent":1993,"maxelev":2065,"minelev":716,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.03009 35.28878,24.1767 35.33047)","views":55,"millestones":"0,24.0311057,35.3172022#1,24.0321339,35.3249856#2,24.0411566,35.3289005#3,24.0498075,35.3280354#4,24.0582490,35.3248335#5,24.0667852,35.3229402#6,24.0766732,35.3212188#7,24.0867856,35.3195294#8,24.0946099,35.3167642#9,24.1012940,35.3121027#10,24.1105933,35.3091761#11,24.1204064,35.3066033#12,24.1308019,35.3055735#13,24.1374648,35.3010313#14,24.1430905,35.2973043#15,24.1459838,35.2894101#16,24.1554601,35.2916460#17,24.1615904,35.2963987#18,24.1677838,35.2926106#19.6,24.1767038,35.2919581","x":24.1119862,"y":35.3089422,"coor":[[24.0311057,35.3172022],[24.0311718,35.3172382],[24.0311609,35.3175268],[24.0309739,35.317635],[24.0308089,35.3178695],[24.0308603,35.318158],[24.0309484,35.3185187],[24.0306957,35.3192041],[24.0307288,35.3195287],[24.0306848,35.3196008],[24.0305198,35.319664],[24.0304254,35.3200314],[24.0305575,35.320356],[24.0300846,35.3206627],[24.0302937,35.3207889],[24.0304699,35.3213569],[24.030668,35.3215462],[24.0307782,35.3220872],[24.0310205,35.3226011],[24.0310536,35.3230429],[24.0311197,35.323115],[24.0312957,35.323133],[24.0315819,35.3233944],[24.031648,35.3235748],[24.031604,35.3237731],[24.0316701,35.3238453],[24.0316044,35.3245937],[24.0317805,35.3249183],[24.0321106,35.3249723],[24.0325838,35.3252426],[24.03287,35.325486],[24.0330901,35.3255581],[24.0330791,35.3256302],[24.0332552,35.3257113],[24.0337616,35.3264055],[24.0342348,35.3268111],[24.0347411,35.3270454],[24.0355003,35.3271895],[24.0360176,35.3275771],[24.0375033,35.3282709],[24.0379986,35.3286765],[24.0384717,35.3287124],[24.0387028,35.3286763],[24.0387578,35.3286132],[24.0389448,35.3286492],[24.0391208,35.3285409],[24.039528,35.3287842],[24.0401773,35.3288922],[24.0406284,35.3289462],[24.0413106,35.3288918],[24.0416726,35.3288692],[24.0419024,35.328966],[24.0421666,35.3292545],[24.0423427,35.3293716],[24.0424462,35.3293739],[24.0426662,35.3293828],[24.0431505,35.3296171],[24.0435028,35.3299686],[24.0436789,35.3300587],[24.0438516,35.3303472],[24.0442394,35.3302276],[24.0444486,35.3303537],[24.0448777,35.3304618],[24.0453178,35.3303714],[24.0456367,35.3300377],[24.0462967,35.3297309],[24.0466046,35.3293701],[24.0467806,35.3293339],[24.0471544,35.3287026],[24.0474732,35.3283328],[24.0477372,35.3281884],[24.0482542,35.3280349],[24.0483862,35.3279086],[24.0485732,35.3278815],[24.0487493,35.3279716],[24.0496406,35.3279802],[24.0498276,35.3280433],[24.0510379,35.3278895],[24.0512359,35.3279435],[24.051665,35.3278532],[24.0520061,35.3278801],[24.0527101,35.3276724],[24.0530402,35.3276632],[24.0533151,35.3273836],[24.0535129,35.3270589],[24.0536119,35.3270498],[24.0537548,35.3267251],[24.0542277,35.3264905],[24.0544257,35.3264543],[24.0544036,35.326292],[24.0541394,35.3260036],[24.0542054,35.3259855],[24.0547224,35.3259132],[24.0547995,35.3259853],[24.0553057,35.3261474],[24.0559549,35.3261741],[24.0566149,35.3259754],[24.057143,35.325894],[24.05733,35.3258038],[24.0575168,35.325461],[24.0579455,35.325028],[24.0582645,35.3248205],[24.0585507,35.3250548],[24.0586607,35.3250728],[24.0590128,35.3250546],[24.0594418,35.3249461],[24.0594528,35.3250002],[24.0595738,35.324919],[24.0596399,35.3249731],[24.0597608,35.3249189],[24.0598817,35.3247115],[24.0597935,35.3244951],[24.0599475,35.3243688],[24.0600463,35.3241253],[24.0606514,35.3240889],[24.0609376,35.3242331],[24.0610476,35.324233],[24.0613556,35.3241246],[24.0616854,35.3237548],[24.0619934,35.3236825],[24.0622683,35.3235381],[24.0629395,35.3235467],[24.0632034,35.3233843],[24.0633683,35.3231768],[24.0635114,35.323285],[24.0636983,35.3231676],[24.0637755,35.323375],[24.0639515,35.3234019],[24.0642706,35.3234108],[24.0646666,35.3233024],[24.0650077,35.3233112],[24.065514,35.3236446],[24.0656131,35.3236445],[24.065635,35.3235183],[24.0661079,35.3232655],[24.0665038,35.3231481],[24.0671526,35.3226698],[24.0682742,35.322038],[24.0692642,35.321803],[24.0702764,35.3217664],[24.0709486,35.3218652],[24.0726546,35.3226576],[24.0736174,35.3220777],[24.0741344,35.321888],[24.0748494,35.3217524],[24.0750033,35.321626],[24.0763892,35.3213276],[24.0771041,35.3210566],[24.0778631,35.320966],[24.0783688,35.3205869],[24.0790288,35.3204422],[24.0800954,35.3198735],[24.0802494,35.3198644],[24.0803046,35.3200537],[24.0804477,35.3201347],[24.0818337,35.3199354],[24.0819766,35.3197911],[24.0823176,35.3197187],[24.0827686,35.3197003],[24.0828457,35.3197634],[24.0831758,35.3197902],[24.0837368,35.3197357],[24.0839569,35.3197897],[24.084507,35.3198073],[24.084606,35.3197622],[24.0850241,35.3197799],[24.086575,35.3195083],[24.0873232,35.3195799],[24.0877741,35.3194804],[24.0882302,35.3199174],[24.0884283,35.3200074],[24.0888684,35.3200792],[24.0892317,35.3202503],[24.0903422,35.3206282],[24.0907824,35.320691],[24.0911123,35.3205825],[24.0914421,35.3203659],[24.0919591,35.3202573],[24.0924429,35.3200495],[24.0925307,35.3198871],[24.0925305,35.3197068],[24.093003,35.3192015],[24.0929588,35.3190392],[24.0931346,35.3188227],[24.0933105,35.3187143],[24.0935521,35.3183354],[24.0938264,35.3176499],[24.094925,35.3163957],[24.0950457,35.3161432],[24.0954304,35.3158453],[24.0958224,35.3152904],[24.0960987,35.3155111],[24.0963187,35.3154929],[24.0964946,35.3154116],[24.0965383,35.3151772],[24.0966813,35.315132],[24.0967142,35.3150418],[24.0976718,35.3154828],[24.0976496,35.3153386],[24.0977375,35.3152393],[24.0983207,35.315338],[24.0985297,35.3153198],[24.0986946,35.3152205],[24.0988263,35.3149679],[24.0988918,35.3145711],[24.0990347,35.3144628],[24.0989684,35.3142284],[24.0996383,35.3132991],[24.0999126,35.3127218],[24.1001106,35.3126495],[24.1005941,35.3122704],[24.1010451,35.3122069],[24.1013529,35.3120804],[24.1019911,35.31217],[24.1027391,35.3121784],[24.1029372,35.3122504],[24.103212,35.3120879],[24.10352,35.3120155],[24.1039811,35.3112937],[24.1047394,35.3107611],[24.1050137,35.3102108],[24.1052774,35.3099761],[24.1054423,35.3099219],[24.1065315,35.3100111],[24.1068616,35.310101],[24.1073784,35.3099382],[24.1081813,35.3098293],[24.1086981,35.3096395],[24.109259,35.3095668],[24.1096657,35.3093861],[24.1104245,35.309169],[24.1113705,35.3092042],[24.1116236,35.3092761],[24.1117112,35.3089965],[24.1119862,35.3089422],[24.1125686,35.3085178],[24.1133711,35.3081564],[24.1140199,35.3079935],[24.1146464,35.3076412],[24.1152513,35.3076046],[24.1156804,35.3076493],[24.1162302,35.3075405],[24.1167029,35.3073146],[24.1170329,35.3072963],[24.117539,35.307386],[24.117506,35.3073499],[24.1176928,35.3072415],[24.1183528,35.3072139],[24.1186827,35.3071414],[24.1191003,35.3068705],[24.1201341,35.3067432],[24.1204198,35.3065987],[24.1208377,35.3064991],[24.1222455,35.3064165],[24.1225754,35.306326],[24.1227951,35.3061364],[24.1232132,35.3061811],[24.1242579,35.3060087],[24.1252478,35.3059896],[24.1263915,35.305772],[24.1272055,35.3058072],[24.1273814,35.3057529],[24.1276455,35.3057978],[24.1277224,35.3057346],[24.1279204,35.3057794],[24.1279754,35.3057253],[24.1281514,35.3057792],[24.1282396,35.3058783],[24.1283936,35.3058601],[24.1284377,35.3059232],[24.1287676,35.3058687],[24.1290097,35.3059496],[24.1290756,35.3059044],[24.1294936,35.305913],[24.1296915,35.3058407],[24.1298233,35.3057143],[24.1301424,35.305759],[24.1305383,35.3056955],[24.1306041,35.3056233],[24.1310769,35.3055055],[24.131209,35.3055685],[24.1315057,35.3053608],[24.1317256,35.3053425],[24.1318689,35.3054776],[24.1321985,35.3052609],[24.1324734,35.3052065],[24.1326712,35.30508],[24.1329572,35.3050617],[24.1332428,35.3048359],[24.1334407,35.3047996],[24.1335284,35.3046192],[24.1334511,35.3044389],[24.133506,35.3043758],[24.1338249,35.3043033],[24.1336374,35.3040149],[24.1339563,35.3039515],[24.1342311,35.3038249],[24.1339662,35.3033022],[24.1341199,35.3031127],[24.1340095,35.3028694],[24.1342072,35.3026798],[24.1342393,35.3021748],[24.1347779,35.3019037],[24.1350967,35.3018042],[24.1353167,35.301858],[24.1357125,35.3017043],[24.1358772,35.3015779],[24.1360972,35.3015866],[24.1364598,35.3013518],[24.1365035,35.3011804],[24.1366025,35.3011442],[24.1382959,35.3009259],[24.1383288,35.3008718],[24.1387137,35.3007902],[24.1391756,35.3007716],[24.1399347,35.3008609],[24.140485,35.3010857],[24.1407048,35.3009412],[24.1411226,35.3008415],[24.1413978,35.3010035],[24.1415518,35.3009853],[24.1415959,35.3010754],[24.1419589,35.3010569],[24.142223,35.3011468],[24.1427067,35.3009749],[24.1432996,35.3003971],[24.1436953,35.3002524],[24.1439343,35.2989491],[24.14389,35.2987869],[24.1437676,35.2987712],[24.1435034,35.2986183],[24.1434371,35.298447],[24.1434471,35.297906],[24.1433806,35.2976175],[24.1430942,35.2973383],[24.143083,35.2972392],[24.1430672,35.2958934],[24.1430571,35.29503],[24.1433852,35.2940017],[24.1435279,35.2938392],[24.1431071,35.2931838],[24.1430956,35.2928772],[24.1431925,35.2926562],[24.1433898,35.2922772],[24.143389,35.2918264],[24.1436626,35.2911047],[24.1440468,35.2906624],[24.1454966,35.2896057],[24.147134,35.2889545],[24.1475407,35.2888368],[24.1479696,35.2888182],[24.148741,35.2891283],[24.1495008,35.2896504],[24.1501607,35.2898682],[24.150975,35.2901017],[24.1511515,35.290381],[24.1524835,35.2911007],[24.1527585,35.2911364],[24.1531873,35.2910637],[24.1537595,35.2912253],[24.1543308,35.290927],[24.1544959,35.2909989],[24.1550137,35.2914491],[24.155366,35.291638],[24.1555859,35.2916558],[24.1558827,35.2915562],[24.1561246,35.2915559],[24.1562127,35.2916008],[24.1562573,35.2918983],[24.1563785,35.2920064],[24.1570248,35.2921318],[24.1571924,35.2920775],[24.1576769,35.2923383],[24.1575895,35.2926721],[24.157777,35.2929423],[24.1579973,35.2931044],[24.1582724,35.2931761],[24.1583933,35.2931579],[24.1587118,35.2932499],[24.1590972,35.293529],[24.1593393,35.2935828],[24.1597581,35.2940511],[24.1598028,35.2943666],[24.1599569,35.2944656],[24.1605182,35.2946452],[24.1606392,35.294636],[24.1607592,35.2945231],[24.1608965,35.2945793],[24.1609519,35.2947866],[24.1610901,35.2948],[24.1611124,35.2949893],[24.160905,35.295756],[24.1611478,35.2961795],[24.1610822,35.296378],[24.1609505,35.2965134],[24.1615442,35.2964224],[24.1618299,35.2962778],[24.1623575,35.2961238],[24.1632704,35.2961406],[24.1632699,35.2959061],[24.163456,35.2954641],[24.1635549,35.2954188],[24.1635663,35.2955901],[24.1639509,35.2954454],[24.1639404,35.2956888],[24.1642041,35.2955712],[24.1643796,35.2953276],[24.1644122,35.2951291],[24.1647195,35.2948312],[24.1647193,35.294732],[24.16484,35.2945966],[24.1650818,35.2945061],[24.1652032,35.2946862],[24.1653242,35.2946951],[24.1660827,35.2945047],[24.1659836,35.2944778],[24.1660164,35.2943876],[24.1658514,35.2943517],[24.1659171,35.2942254],[24.1657848,35.2940813],[24.1660157,35.2940449],[24.1661032,35.2938013],[24.1662132,35.2938102],[24.1662568,35.2936208],[24.1664112,35.293837],[24.1668829,35.2932232],[24.1674977,35.2926993],[24.1675633,35.2925189],[24.1678275,35.2926267],[24.1678498,35.292789],[24.1682789,35.2928786],[24.1681251,35.29296],[24.1681143,35.2930321],[24.1684332,35.2930317],[24.1687083,35.2931124],[24.1685875,35.2931847],[24.1687747,35.2933017],[24.1686433,35.2935724],[24.168732,35.2939239],[24.1688091,35.2939869],[24.1690733,35.2940948],[24.1690068,35.2938244],[24.169216,35.2939413],[24.1695348,35.2939048],[24.169496,35.2937245],[24.1697927,35.2936339],[24.1700452,35.2933901],[24.1701992,35.2934259],[24.1703197,35.2931913],[24.1704515,35.2930829],[24.1715507,35.2928289],[24.1717597,35.2928467],[24.1723861,35.2926113],[24.1724804,35.2923384],[24.1727441,35.2922298],[24.1728432,35.2922658],[24.1730827,35.2922767],[24.1734015,35.2921951],[24.1739955,35.2922483],[24.1745446,35.2918688],[24.1752263,35.2916131],[24.1755671,35.2915766],[24.1758968,35.2914498],[24.1759848,35.2914677],[24.1760841,35.2916119],[24.1762237,35.29165],[24.1763932,35.2916926],[24.1767038,35.2919581]]},{"id":18501,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u03a0\u03bf\u03bb\u03c5\u03c1\u03c1\u03ae\u03bd\u03b5\u03b9\u03b1-\u03a3\u03b7\u03c1\u03b9\u03ba\u03ac\u03c1\u03b9","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03c3\u03c4\u03bf \u03a4\u03c3\u03b9\u03c7\u03bb\u03b9\u03b1\u03bd\u03cc \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9","path":"CRETE\/Crete_Elafonisi_Polyrinia_Sirikari","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5937,"name_EN":"Crete: E4 Polyrinia-Sirikair","description_EN":"E4 section along the Tsichliano gorge","ascent_time":140,"descent_time":135,"marker":"Red_dots","level":12,"ascent":420,"descent":167,"maxelev":521,"minelev":156,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.63962 35.41811,23.6555 35.45508)","views":8,"millestones":"0,23.6507195,35.4551139#1,23.6550810,35.4522698#2,23.6539887,35.4441172#3,23.6502386,35.4370954#4,23.6439048,35.4305216#5,23.6418560,35.4234285#5.9,23.6406352,35.4180685","x":23.6503351,"y":35.4384026,"coor":[[23.6507195,35.4551139],[23.651034,35.4549232],[23.6512655,35.4549149],[23.6515514,35.4550509],[23.6518603,35.4549797],[23.65215,35.4546424],[23.6526356,35.454468],[23.6519532,35.4542857],[23.6516548,35.4544742],[23.6513572,35.4545004],[23.6510385,35.454283],[23.6505757,35.4542817],[23.6510234,35.4541117],[23.6514203,35.4540768],[23.6515978,35.4537887],[23.6527667,35.4536028],[23.6529988,35.4534411],[23.6532967,35.4533608],[23.6535071,35.453127],[23.653981,35.4531103],[23.6541578,35.4530793],[23.6542914,35.4527731],[23.6544019,35.4526832],[23.6550413,35.452631],[23.6550307,35.4525227],[23.6546784,35.4524496],[23.6546016,35.4523773],[23.6547453,35.4522785],[23.6553073,35.4522621],[23.6553518,35.452181],[23.6551916,35.4518695],[23.6544483,35.4504608],[23.6542194,35.449865],[23.654066,35.4496662],[23.6539663,35.4493909],[23.6539153,35.448444],[23.6536296,35.4482448],[23.6533235,35.4476849],[23.6540811,35.4457305],[23.6543028,35.4454335],[23.6544364,35.4451093],[23.6544043,35.4448838],[23.6541648,35.4445991],[23.6540226,35.4443643],[23.654078,35.4442833],[23.6540235,35.4441388],[23.653551,35.443849],[23.6533212,35.4434786],[23.653344,35.4432893],[23.6535433,35.4430645],[23.653812,35.4420824],[23.6535949,35.4413154],[23.6533313,35.4411253],[23.6528912,35.4409888],[23.6525182,35.440609],[23.6524643,35.4403203],[23.6525421,35.4401582],[23.6524455,35.4395719],[23.6520283,35.439228],[23.6519304,35.4389392],[23.6516884,35.4388483],[23.6514798,35.4386674],[23.6506762,35.4385208],[23.6503351,35.4384026],[23.6501266,35.4382127],[23.6500066,35.4379418],[23.6500625,35.4377616],[23.6500086,35.437473],[23.6502415,35.437113],[23.6501985,35.4368694],[23.6502769,35.4365721],[23.6501793,35.4362111],[23.6495212,35.435551],[23.6478289,35.4345452],[23.6477082,35.4344276],[23.6474882,35.4343549],[23.6472579,35.4341017],[23.6470064,35.4336772],[23.6469521,35.4334877],[23.6470183,35.4334698],[23.6465469,35.4329365],[23.6462387,35.4328815],[23.6455373,35.4320228],[23.645451,35.4316168],[23.6449235,35.4313177],[23.6446394,35.4307939],[23.6444309,35.4305949],[23.6440677,35.4305127],[23.6434837,35.4305471],[23.6432748,35.4304563],[23.6430663,35.4302663],[23.6426727,35.4295979],[23.6419251,35.4292531],[23.6415958,35.4289816],[23.6414326,35.4285032],[23.6411593,35.4280335],[23.6408194,35.4276809],[23.6410613,35.4277718],[23.6408765,35.4272122],[23.6409325,35.427023],[23.6408681,35.4266261],[23.6412885,35.4262396],[23.6414886,35.4258164],[23.6418875,35.4252946],[23.6418675,35.4248257],[23.6421342,35.4243125],[23.6420915,35.4240148],[23.641971,35.4238432],[23.6416131,35.4225888],[23.6410419,35.4222174],[23.6404153,35.421936],[23.640371,35.42199],[23.6400855,35.4217727],[23.6397701,35.4217177],[23.6401471,35.4211688],[23.6405002,35.4210256],[23.6404565,35.4209443],[23.6405672,35.4208184],[23.6405347,35.4207011],[23.6401176,35.4203752],[23.6400081,35.4202216],[23.6400973,35.4199784],[23.6406263,35.4199169],[23.6404398,35.419754],[23.6409025,35.4197464],[23.6412341,35.4194859],[23.6406352,35.4180685]]},{"id":18502,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u039a\u03b1\u03c3\u03c4\u03ad\u03bb\u03b9 \u039a\u03b9\u03c3\u03c3\u03ac\u03bc\u03bf\u03c5-\u03a0\u03bf\u03bb\u03c5\u03c1\u03c1\u03ae\u03bd\u03b5\u03b9\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03b1\u03c0\u03cc \u03a4\u03bf \u039a\u03b1\u03b1\u03c4\u03ad\u03bb\u03b9 \u039a\u03b9\u03c3\u03c3\u03ac\u03bc\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03a0\u03bf\u03bb\u03c5\u03c1\u03c1\u03ae\u03bd\u03b5\u03b9\u03b1","path":"CRETE\/Crete_Elafonisi_Kissamos_Polyrinia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6177,"name_EN":"Crete: E4 Kasteli Kissamou-Polyrinia","description_EN":"E4 section from Kasteli Kissamou to Polyrinia","ascent_time":145,"descent_time":135,"marker":"Red_dots","level":12,"ascent":319,"descent":82,"maxelev":265,"minelev":18,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.64243 35.45425,23.65471 35.49576)","views":13,"millestones":"0,23.6545403,35.4950529#1,23.6505601,35.4886251#2,23.6488362,35.4799262#3,23.6455192,35.4715653#4,23.6425791,35.4632782#5,23.6461526,35.4579826#6.2,23.6507195,35.4551139","x":23.6433265,"y":35.4629052,"coor":[[23.6545403,35.4950529],[23.6540763,35.495268],[23.6536971,35.4954743],[23.6530013,35.4957518],[23.6529143,35.4957921],[23.6527615,35.495431],[23.6525734,35.494628],[23.6524933,35.4941972],[23.6521226,35.4935447],[23.6520052,35.4926607],[23.6517909,35.4919207],[23.6515933,35.4914896],[23.6514926,35.4912887],[23.6513278,35.491153],[23.6513508,35.4909276],[23.6512383,35.4904923],[23.6510123,35.489777],[23.650336,35.488098],[23.6500773,35.4867357],[23.65005,35.4865936],[23.6495613,35.4848971],[23.6494342,35.4837065],[23.6492926,35.4833004],[23.6492203,35.4821821],[23.6493555,35.4815153],[23.64896,35.4811985],[23.648796,35.4809095],[23.6489529,35.4803149],[23.6485833,35.4791236],[23.6486206,35.4781319],[23.6484465,35.4776084],[23.6483175,35.4768596],[23.648166,35.4765346],[23.6477938,35.4759474],[23.6474115,35.4751438],[23.6463688,35.4741309],[23.6462281,35.4735354],[23.645966,35.4729846],[23.6459689,35.4723264],[23.6454874,35.4715135],[23.6453898,35.4711526],[23.645082,35.4709713],[23.6443469,35.4701937],[23.6438985,35.469417],[23.6438795,35.4687136],[23.6441245,35.4681373],[23.644159,35.4678128],[23.6439194,35.4671629],[23.6438141,35.4660445],[23.6433151,35.4642487],[23.6425806,35.4633629],[23.6425759,35.4631645],[23.6433265,35.4629052],[23.6436127,35.4629782],[23.6437001,35.4631588],[23.6439309,35.4633038],[23.6440963,35.4632952],[23.6443392,35.4631878],[23.6445704,35.4632425],[23.6447801,35.463171],[23.6452821,35.4636008],[23.645382,35.4634298],[23.6453499,35.4632313],[23.6454387,35.4630873],[23.6454507,35.4628619],[23.6453096,35.4623656],[23.6448683,35.4613634],[23.6449142,35.4609488],[23.6450366,35.4606877],[23.644972,35.4603449],[23.645338,35.4598049],[23.6454266,35.459715],[23.6457575,35.4596529],[23.6460235,35.459311],[23.6461801,35.4587705],[23.6459731,35.4582379],[23.6461505,35.457995],[23.6463086,35.4571028],[23.6464742,35.4568824],[23.6468717,35.4567122],[23.6473235,35.4567225],[23.6475121,35.4564346],[23.647392,35.4561817],[23.6474257,35.4560195],[23.6483096,35.4554991],[23.6491705,35.4551951],[23.6495867,35.4546666],[23.6491909,35.454458],[23.6492687,35.454305],[23.6494298,35.4542333],[23.6497934,35.4542614],[23.6502557,35.454389],[23.6505757,35.4542817],[23.6510385,35.454283],[23.6513572,35.4545004],[23.6516548,35.4544742],[23.6519532,35.4542857],[23.6526356,35.454468],[23.65215,35.4546424],[23.6518603,35.4549797],[23.6515514,35.4550509],[23.6512655,35.4549149],[23.651034,35.4549232],[23.6507195,35.4551139]]},{"id":18503,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: \u03954 \u03a3\u03b7\u03c1\u03b9\u03ba\u03ac\u03c1\u03b9-\u039a\u03b5\u03c6\u03ac\u03bb\u03b9","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a3\u03b7\u03c1\u03b9\u03ba\u03ac\u03c1\u03b9 \u03c3\u03c4\u03bf \u039a\u03b5\u03c6\u03ac\u03bb\u03b9","path":"CRETE\/Crete_Elafonisi_Sirikari_Kefali","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":3468,"name_EN":"Crete: E4 Sirikari-Kefali","description_EN":"E4 section from Sirikari to Kefali","ascent_time":235,"descent_time":235,"marker":"Red_dots","level":12,"ascent":653,"descent":704,"maxelev":964,"minelev":448,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.60081 35.36194,23.64088 35.41794)","views":5,"millestones":"0,23.6406352,35.4180685#1,23.6319829,35.4154197#2,23.6269960,35.4082002#3,23.6251480,35.4001525#4,23.6221618,35.3948584#5,23.6209332,35.3864722#6,23.6230912,35.3817603#7,23.6226331,35.3757445#8,23.6263255,35.3719859#9,23.6200951,35.3708287#10,23.6237896,35.3633889#11,23.6151935,35.3620225#12,23.6064213,35.3628480#3.5,23.6010789,35.3637130","x":23.6234063,"y":35.3762121,"coor":[[23.6406352,35.4180685],[23.6404486,35.4179237],[23.6400879,35.4173004],[23.6399122,35.4171737],[23.6394503,35.41701],[23.639232,35.4165765],[23.6388482,35.4161787],[23.6386955,35.4158356],[23.6385857,35.4157631],[23.6384113,35.4157355],[23.6379704,35.4158063],[23.637475,35.4157508],[23.6370729,35.4158397],[23.6364669,35.415892],[23.6359262,35.4160978],[23.6349244,35.4159865],[23.6342285,35.4164353],[23.6340302,35.4164256],[23.6334154,35.415991],[23.6321828,35.4157528],[23.6320401,35.4156442],[23.6319211,35.4151749],[23.6315372,35.4148221],[23.6316484,35.414588],[23.631627,35.4144527],[23.6308495,35.4134585],[23.630175,35.4129875],[23.629916,35.412723],[23.6294908,35.411775],[23.6290734,35.4115302],[23.6289428,35.4111691],[23.6287459,35.410889],[23.6281963,35.4106349],[23.6274699,35.4105244],[23.6274044,35.410398],[23.6274838,35.4099023],[23.6269933,35.4087917],[23.6269977,35.407827],[23.6268027,35.4071298],[23.6263541,35.4064973],[23.6260821,35.4057751],[23.6256885,35.4051517],[23.6256351,35.4047909],[23.6253273,35.4046637],[23.6251662,35.4045189],[23.6246506,35.4040935],[23.6244358,35.4039441],[23.6243817,35.4037455],[23.6246598,35.4031513],[23.624811,35.4014206],[23.6250997,35.4008895],[23.6253758,35.400728],[23.6254204,35.40062],[23.6252457,35.4002768],[23.6250815,35.4000689],[23.6244342,35.3995439],[23.6235901,35.3987298],[23.6218536,35.3979759],[23.6213312,35.3976272],[23.6209546,35.3971256],[23.6209811,35.3961789],[23.6211024,35.3961432],[23.6213002,35.3962159],[23.6212101,35.3966485],[23.6213079,35.3969283],[23.6214838,35.397001],[23.621841,35.3959742],[23.6219211,35.3953252],[23.6221653,35.3949022],[23.622134,35.3945234],[23.6222826,35.3933607],[23.6219917,35.3930893],[23.6212755,35.3902558],[23.6211198,35.3895362],[23.6206031,35.3893723],[23.6203663,35.3882084],[23.6204006,35.387938],[23.6205117,35.3877219],[23.6210434,35.3870564],[23.6209252,35.3864338],[23.6209379,35.3860552],[23.6202681,35.3856744],[23.6200269,35.3854482],[23.6198645,35.3848526],[23.6193282,35.3841746],[23.6193623,35.3839583],[23.6196279,35.3836616],[23.6196969,35.3830306],[23.6193163,35.3820196],[23.6190868,35.3816672],[23.6195482,35.381867],[23.6198116,35.3820572],[23.6206581,35.3823213],[23.6224984,35.3819845],[23.6231711,35.3817341],[23.6234254,35.3815185],[23.6235141,35.3813722],[23.6235376,35.3811311],[23.6236151,35.3810412],[23.6241001,35.3809165],[23.624487,35.3805931],[23.6246184,35.380447],[23.6248084,35.3798254],[23.6249189,35.3797446],[23.6257022,35.3793863],[23.6263853,35.3792802],[23.6264187,35.3792082],[23.6262222,35.3788469],[23.625762,35.3783586],[23.6254212,35.3782493],[23.624948,35.3782118],[23.6243992,35.3778494],[23.624246,35.3776506],[23.6242138,35.3774702],[23.6238876,35.3768808],[23.6235699,35.3765552],[23.6234063,35.3762121],[23.6230885,35.3759045],[23.6220114,35.3755224],[23.6222098,35.375478],[23.6224308,35.3752893],[23.6227065,35.3752],[23.623257,35.3751837],[23.6237737,35.3753296],[23.6244899,35.3752146],[23.623822,35.3750885],[23.6247379,35.3746315],[23.6254098,35.3745434],[23.6251361,35.374218],[23.6248506,35.3740548],[23.6258316,35.3737873],[23.626718,35.3725638],[23.6268614,35.3725011],[23.6271143,35.372556],[23.6271365,35.37252],[23.6269172,35.372339],[23.6265547,35.3721575],[23.6262688,35.3720845],[23.6263354,35.3719675],[23.6266877,35.3719686],[23.626721,35.3719055],[23.626259,35.371823],[23.6257634,35.3718755],[23.625332,35.372325],[23.6251886,35.3723877],[23.6233833,35.372355],[23.6231187,35.3724534],[23.6229863,35.3724282],[23.6226891,35.3724273],[23.6220518,35.3721728],[23.6216334,35.3721715],[23.6213134,35.3723508],[23.6212686,35.372513],[23.6213433,35.3730182],[23.6214418,35.3731357],[23.6213975,35.3731897],[23.6209468,35.373053],[23.6205405,35.3728353],[23.6200482,35.3721755],[23.6200272,35.3719591],[23.6201279,35.3715987],[23.6201007,35.3711771],[23.6200359,35.3708974],[23.6205008,35.3703578],[23.6199767,35.3694365],[23.6199785,35.3690668],[23.6200562,35.3689318],[23.6199705,35.3684085],[23.6198397,35.3681376],[23.6208767,35.367654],[23.6213416,35.3671144],[23.6215329,35.3662314],[23.621722,35.3657992],[23.622296,35.3648722],[23.6224287,35.3647374],[23.6224738,35.3645031],[23.6225295,35.3642102],[23.6228388,35.3639767],[23.6230935,35.3638784],[23.6238003,35.3633846],[23.6220093,35.3640801],[23.6212903,35.3648353],[23.6210037,35.3649245],[23.6207626,35.3646984],[23.6203043,35.3638403],[23.6201853,35.3633891],[23.619999,35.3632262],[23.6194609,35.362954],[23.6183837,35.362617],[23.6178016,35.3623447],[23.6171526,35.3622524],[23.6164917,35.3621286],[23.6160086,35.3618836],[23.6157225,35.3618647],[23.615436,35.3619179],[23.615061,35.362079],[23.6146948,35.3627],[23.6145405,35.3627536],[23.6135402,35.3624618],[23.6126029,35.3628195],[23.6116993,35.363015],[23.6116106,35.363159],[23.611542,35.3636817],[23.6113479,35.3638457],[23.6111784,35.3638384],[23.6109382,35.3634138],[23.610752,35.3632329],[23.6095208,35.3628862],[23.6088292,35.3624963],[23.6085979,35.3625226],[23.6074181,35.3629516],[23.6064059,35.3628491],[23.6061134,35.3628639],[23.6056617,35.3629436],[23.6054404,35.3631953],[23.6053837,35.3635378],[23.6055677,35.3641696],[23.6051249,35.3646911],[23.6050568,35.3651057],[23.6051758,35.3655388],[23.6049655,35.3657726],[23.6048,35.3658622],[23.6046461,35.3658166],[23.6045271,35.3653925],[23.6041877,35.3650126],[23.603464,35.3644332],[23.6027605,35.3642235],[23.6021995,35.3641495],[23.6018469,35.3642295],[23.6014055,35.3644445],[23.6012294,35.3644439],[23.601142,35.3643173],[23.6010789,35.363713]]},{"id":18504,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: \u03954 \u039a\u03b5\u03c6\u03ac\u03bb\u03b9-\u03a7\u03c1\u03c5\u03c3\u03bf\u03c3\u03ba\u03b1\u03bb\u03af\u03c4\u03b9\u03c3\u03c3\u03b1","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03954 \u03b1\u03c0\u03cc \u03c4\u03bf \u039a\u03b5\u03c6\u03ac\u03bb\u03b9 \u03c3\u03c4\u03b7 \u03a7\u03c1\u03c5\u03c3\u03bf\u03c3\u03ba\u03b1\u03bb\u03af\u03c4\u03b9\u03c3\u03c3\u03b1","path":"CRETE\/Crete_Elafonisi_Kefali_Crysoskalitissa","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":10127,"name_EN":"Crete: E4 Kefali-Crysoskalitissa","description_EN":"E4 section from Kefali to Crysoskalitissa","ascent_time":175,"descent_time":190,"marker":"Red_dots","level":12,"ascent":96,"descent":517,"maxelev":451,"minelev":17,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.53684 35.31009,23.60331 35.36348)","views":11,"millestones":"0,23.6010789,35.3637130#1,23.6002115,35.3618408#2,23.5929833,35.3575438#3,23.5876515,35.3505564#4,23.5812919,35.3444356#5,23.5748432,35.3379150#6,23.5650001,35.3346326#7,23.5567687,35.3288749#8,23.5496153,35.3234468#9,23.5454899,35.3159192#10.1,23.5371484,35.3098508","x":23.5811336,"y":35.3435922,"coor":[[23.6010789,35.363713],[23.601498,35.3635521],[23.601973,35.363211],[23.6021058,35.3630492],[23.6021623,35.3627518],[23.6020318,35.3624268],[23.6018785,35.3622639],[23.6016587,35.3622001],[23.6009976,35.3623332],[23.6009099,35.3622698],[23.6009763,35.3621798],[23.6019018,35.3620116],[23.602188,35.3620125],[23.6024407,35.3621035],[23.6027255,35.362384],[23.6029306,35.3632142],[23.603052,35.3631424],[23.602804,35.3620867],[23.6027062,35.3618248],[23.6025311,35.3616259],[23.6021023,35.3615343],[23.6006377,35.3616647],[23.6001634,35.3618615],[23.5998313,35.3622392],[23.5996659,35.3622927],[23.5994903,35.362202],[23.5990967,35.3616596],[23.5985582,35.3614865],[23.5978567,35.3612949],[23.5968902,35.3608769],[23.5966699,35.3609122],[23.5962499,35.3612444],[23.596166,35.3612486],[23.596078,35.3612303],[23.5958508,35.3604451],[23.5955231,35.3599391],[23.5953367,35.3597942],[23.5948862,35.3596303],[23.5944472,35.3593764],[23.5939211,35.3589238],[23.5935696,35.3587874],[23.5933722,35.3586424],[23.5932775,35.3583942],[23.593246,35.3578215],[23.5929175,35.3574687],[23.592654,35.3573416],[23.5920823,35.3572134],[23.5918409,35.3570593],[23.591644,35.3568242],[23.5911676,35.3552537],[23.5909704,35.3550727],[23.5905969,35.3549362],[23.5904764,35.3548276],[23.5906114,35.3542419],[23.5904181,35.3536912],[23.5898828,35.352914],[23.589436,35.3520288],[23.5891189,35.351631],[23.5884827,35.351196],[23.5878559,35.3511037],[23.5876063,35.3508121],[23.5876968,35.3503255],[23.587588,35.3500726],[23.5866786,35.3492761],[23.5860019,35.3489829],[23.5838292,35.3480107],[23.5833671,35.347973],[23.5828616,35.347836],[23.5820159,35.3474995],[23.5817092,35.3472189],[23.5813675,35.3451799],[23.5812418,35.3439532],[23.5811336,35.3435922],[23.5807191,35.3428784],[23.5804588,35.3421471],[23.5801536,35.341587],[23.5795851,35.3408547],[23.5790921,35.3404292],[23.5783458,35.3400479],[23.5766202,35.3396631],[23.5756874,35.339173],[23.5753589,35.3388472],[23.574923,35.3380341],[23.5745408,35.3374738],[23.5742561,35.3372203],[23.5739269,35.3370388],[23.5735972,35.3369565],[23.5727941,35.3369266],[23.5723874,35.336844],[23.5717506,35.3365712],[23.5707082,35.3360085],[23.5693466,35.3354717],[23.5679607,35.3353585],[23.565852,35.3350016],[23.5654015,35.3348827],[23.5644145,35.334266],[23.5628887,35.3335752],[23.5613977,35.33256],[23.5596448,35.331156],[23.5592101,35.3307351],[23.5590682,35.3305272],[23.5589601,35.3301661],[23.5586865,35.3298946],[23.5571396,35.3290594],[23.5536721,35.3273515],[23.5526947,35.3270323],[23.5510893,35.326846],[23.5506287,35.3265738],[23.54995,35.3259581],[23.5498392,35.3257301],[23.5494732,35.324268],[23.5494861,35.3239344],[23.5498007,35.3227544],[23.5495005,35.3217073],[23.5495034,35.3211843],[23.5493726,35.3209674],[23.549044,35.3206957],[23.5488802,35.3204697],[23.5488174,35.3199014],[23.5487043,35.318598],[23.5485205,35.3180202],[23.5483122,35.3178932],[23.5478946,35.3178015],[23.5469627,35.31723],[23.5462449,35.3164856],[23.5458675,35.3160537],[23.545681,35.3159448],[23.5449115,35.3158427],[23.5445712,35.3157242],[23.5440224,35.3155057],[23.5434742,35.31517],[23.5429707,35.3147173],[23.5423596,35.3138313],[23.5419619,35.3134714],[23.5414031,35.3130635],[23.5411394,35.3130084],[23.5408213,35.3130275],[23.5406257,35.3130335],[23.5402958,35.3130142],[23.5399008,35.3128324],[23.5386824,35.3120004],[23.5378407,35.3115464],[23.5376904,35.3109552],[23.5372407,35.3101803],[23.5371484,35.3098508]]},{"id":18505,"author":"AnaDigit","name_GR":"\u039a\u03c1\u03ae\u03c4\u03b7: E4 \u03a0\u03b1\u03c0\u03b1\u03b3\u03b9\u03b1\u03bd\u03bd\u03ac\u03b4\u03b5\u03c2 -\u0396\u03af\u03c1\u03bf\u03c2","description_GR":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03954 \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03a0\u03b1\u03c0\u03b1\u03b3\u03b9\u03b1\u03bd\u03bd\u03ac\u03b4\u03b5\u03c2 \u03c3\u03c4\u03bf\u03bd \u0396\u03af\u03c1\u03bf","path":"CRETE\/Crete_E4_Papagianades_Ziros","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":7576,"name_EN":"Crete: E4 Papagianades-Ziros","description_EN":"E4 section from Papagianades to Ziros","ascent_time":140,"descent_time":140,"marker":"E4","level":12,"ascent":186,"descent":104,"maxelev":642,"minelev":491,"link_logo":"","link_ref":"http:\/\/www.anavasi.gr\/product.php?lang=gr$id=78","pdf_link":"","bbox":"LINESTRING(26.07221 35.07274,26.14057 35.09383)","views":5,"millestones":"0,26.0728684,35.0938169#1,26.0790458,35.0912692#2,26.0870237,35.0862814#3,26.0967979,35.0831092#4,26.1039191,35.0782573#5,26.1144679,35.0780412#6,26.1245416,35.0752612#7,26.1346310,35.0736800#7.6,26.1406100,35.0742644","x":26.0979933,"y":35.0819736,"coor":[[26.0728684,35.0938169],[26.0730153,35.0938212],[26.0730566,35.0937213],[26.0732277,35.0931143],[26.073203,35.0930066],[26.0726003,35.0921604],[26.0722507,35.0914835],[26.0721435,35.0912848],[26.0722507,35.0914835],[26.0729188,35.091445],[26.0741732,35.0911712],[26.0746702,35.0913069],[26.0753477,35.0912051],[26.0769641,35.0913668],[26.0778947,35.0917295],[26.0782898,35.0917407],[26.0798875,35.0907307],[26.0812118,35.090185],[26.082235,35.0894463],[26.0828548,35.0892373],[26.0834576,35.0892179],[26.0842517,35.0889608],[26.0844077,35.0890573],[26.0844731,35.0890382],[26.0849047,35.0887603],[26.0854047,35.0885804],[26.0854958,35.0887141],[26.0855726,35.0887127],[26.0860578,35.0879561],[26.0865795,35.086854],[26.0869718,35.0863244],[26.0873915,35.0859814],[26.0886206,35.0851488],[26.0889567,35.0849988],[26.0897195,35.0848053],[26.0908126,35.0846603],[26.0926055,35.0847037],[26.0931952,35.0846034],[26.0935681,35.0846059],[26.0938061,35.0844756],[26.0940466,35.0844444],[26.0952156,35.0837841],[26.0956609,35.0836142],[26.0964218,35.0831097],[26.0966954,35.0830869],[26.0974784,35.0832537],[26.097848,35.0828844],[26.0974819,35.0824806],[26.0979933,35.0819736],[26.098123,35.0818993],[26.0981713,35.081646],[26.098341,35.081607],[26.0983901,35.0813289],[26.0985115,35.0809302],[26.0988455,35.0809402],[26.0991383,35.0808089],[26.0994626,35.0807852],[26.0997051,35.0808351],[26.1000545,35.080775],[26.1007455,35.0803483],[26.1009103,35.0800141],[26.1015807,35.0796419],[26.1022836,35.0788274],[26.1029083,35.0783838],[26.1032791,35.0783052],[26.104932,35.0781864],[26.106266,35.0776043],[26.106767,35.0774694],[26.1099811,35.0770799],[26.1105511,35.07707],[26.115076,35.0781811],[26.1157143,35.0782692],[26.1175946,35.078038],[26.1183885,35.0777807],[26.119163,35.0776229],[26.1203539,35.0770251],[26.1209627,35.0768477],[26.1223553,35.0764177],[26.1238283,35.0757067],[26.1249505,35.0750019],[26.125835,35.0748602],[26.1270627,35.0748386],[26.1275641,35.0747217],[26.1289709,35.0742642],[26.1305091,35.073534],[26.1326415,35.0728835],[26.1330156,35.072931],[26.1346251,35.073678],[26.1355655,35.073995],[26.1366991,35.0741553],[26.1375002,35.0742291],[26.1380819,35.074194],[26.1388914,35.0740693],[26.1393995,35.0741009],[26.1399509,35.0742219],[26.14061,35.0742644]]}],{"extent":[23.52673,35.07274,26.26296,35.49576],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"openurl"},"sort":{"type":"byname"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":true},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Volima_AgAndreas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Vassilikos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Prodromos_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Klima_Schinari":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kiliomeno_Yperaghathos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Argasi_Skopiotisa":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Agalas_Kiliomenos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Skopelos_monasteries_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Klima":{"url":null,"color":"#1ab933","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Skopelos_Loutraki_Faros_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Taxiarches":{"url":null,"color":"#2f7aff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Foukalida":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Damoulianata_AgThekli":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Vilatoria_Petani":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Kefalonia_Gerogombos":{"url":null,"color":"#f029e0","width":6,"exclude":false,"useStyle":true},"Geology\/GEO_Kefalonia_4_karst_formations":{"url":null,"color":"#fff741","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Ainos":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Anavasi_AgDinati":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Fiskardo_Battery":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Gyro_apo_Zoodocho_Pigi":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Sami_Poros":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4x4\/SUV_Kefalonia_Ainos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"SUV_4x4\/SUV_Kefalonia_Livadi-AgEleni_beach":{"url":null,"color":"#f72fff","width":6,"exclude":false,"useStyle":true},"GEOLOGY\/GEO_Kefalonia_Mntzavinata_formations":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Antisamos_Fanentes":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Proni_acropolis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_traverse":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Assos_castle":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_AgDinati_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Atros_ascent":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_ridge":{"url":null,"color":"#e99429","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Koutavos_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Sami_Fanentes":{"url":null,"color":"#3ee373","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Kalymnos_Vathys_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Palionisos":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Eborios":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_1":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_12":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_8a":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_10":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_9":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_5":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_16":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_14":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_4":{"url":"http:\/\/www.alternetgreece.com\/en\/activities\/hiking","color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_17":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_6":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_3":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Kokkinoplos_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Litochoro_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Karya_Skolio":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Krania_Rapsani":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Rapsani_Tembi":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Dion_Petrostrouga":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Gortsia_Apostolidis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_Litochoro_Livadaki_Mouses":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Vrondou_Barbalas":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Ascent_Pyramida":{"url":null,"color":"#0f4a96","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Sykia_Pyramida":{"url":null,"color":"#960f65","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Viniani_Reka_Giona_ref":{"url":null,"color":"#f7f70d","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Kaloskopi_51":{"url":null,"color":"#0f962a","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Stromi_Kaloskopi":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Vardousia_Koprisies":{"url":null,"color":"#178e12","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Diakos_Stromi":{"url":null,"color":"#502fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Southern_Ridge":{"url":null,"color":"#eff900","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos":{"url":null,"color":"#ff2fe6","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina":{"url":null,"color":"#c52fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Oxia_AthDiakos":{"url":null,"color":"#40ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argirochori_Abelaki":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argyrochori_Trapeza":{"url":null,"color":"#2f72ff","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Gersali":{"url":null,"color":"#59ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Trapeza":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Oiti_Ypati_Kapnochori":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"STEREA\/Sterea_Oeta_Ypati_Kastania":{"url":null,"color":"#127a2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Pyrgos":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Greveno":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra_Pyrgos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Neochori_Pyrgos":{"url":null,"color":"#2fe6ff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra-Pyrgos":{"url":null,"color":"#69ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Eleftherochori_Gioza":{"url":null,"color":"#13a713","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Tithronio_Gioza":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Elati_Vytina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Nymfasia_Magouliana":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true}}}); function getPoiCollection(key,data,meta){ this.key = key; this.data = data; this.item = []; //this.meta = meta; this.gsMap = null; this.features = [] ; //this.lineFeatures = [] ; var self = this; //console.log(data); this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.features=[]; for(var i in this.data){ //console.log(this.data[i]); var newItem = this.getItem(this.data[i]); newItem.style = this.getIconStyle(newItem); var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem)); //var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(newItem.style); f.show = function () { var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } newItem.feature = f; this.item.push(newItem); this.features.push(f); } this.source.addFeatures(this.features); this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();}); this.refresh(); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ return { width:item.width, height:item.height, photoPath:item.photoPath, name:item.name, description:item.description, parent:this, click:[function(s,f,l){ var div = document.getElementById("myModal"); var self = f.get('msp'); //#34b0ff div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); }]}; } this.poiIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.5 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } this.getIconStyle = function(myItem) { var icon_size = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) var icon_size_set = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) * icon_size / 100; var is = (icon_size > 0) ? icon_size : 9; var icon_index = myItem.icon_index; if (wpt_icon.anch_fraction_x[icon_index] >= 0) { var anch_x = wpt_icon.anch_fraction_x[icon_index]; var anch_y = wpt_icon.anch_fraction_y[icon_index]; } else { var anch_x = 0.5; var anch_y = 0.5; } if (wpt_icon.scale[icon_index] >= 0) { var scale = wpt_icon.scale[icon_index]; } else { if (icon_size_set > 0) { var scale = icon_size_set; } else { var scale = 0.3; } } scale = 0.2; var MarkerIcon = wpt_icon.url_s[icon_index]; var iconStyle = new ol.style.Style({ image: new ol.style.Icon(({ anchor: [anch_x, anch_y], anchorXUnits: 'fraction', anchorYUnits: 'fraction', //anchorYUnits: 'pixels', opacity: 0.95, src: MarkerIcon, scale: scale })) }); return iconStyle; } this.getItem = function (dat){ var type = dat.type * 1;//[3]*1; var icon = map_point_collection.get(type); var icon_index = icon.iconindex; var img_path = icon.path; return { image: dat.photo, name: dat.name, description: dat.description, link_en: dat.hlink_EN, type: dat.type * 1, dbid: dat.id, hlink: dat.hlink_GR, zoom_level: dat.zoom_level, width: dat.width * 1, height: dat.height * 1, owner: dat.owner, icon_index: icon_index, photoPath: img_path + dat.photo + '.jpg', thumb_path: img_path + 'thumbs/' + dat.photo + '.jpg', //tmpim:add_image(pop_info_tmp, fp.attributes.thumb_path,-230,3,-1,-1,null), path: (dat.type * 1 == 1) ? img_path + dat.photo + '.jpg' : "" } } this.pop_info_adjust_size = function(type, dl) { if (dl < 0) dl = 0; var new_size = 9 + (1.5 * dl); return new_size * 0.2; } this.refresh = function () { try { this.source.clear(); } catch (err) { } var zoom = this.gsMap.getZoom(); for (var i = 0; i < this.item.length; i++) { if (zoom >= this.item[i].zoom_level) this.source.addFeatures([this.item[i].feature]); } } this.getImagetItem = function(path,width,height){ /* PARADOXES - OLES OI EIKONES PIANOYN TO MEGISTO PLATOS - AN TO YPSOS EINEI MEGALYTERO TOY DIAUESIMOY H EIKONA KOVETAI KATV */ var minAvailableWidth =568; //APO BOOTSTRAP, http://www.topoguide.gr/css/bootstrap.css, 5489, var maxAvailableHeight = browser.size()[1]-250; var style = "",divStyle = ""; if(height>maxAvailableHeight){ var ratio = width/height; var renderWidth = maxAvailableHeight*ratio; var renderHeight = maxAvailableHeight; if(minAvailableWidth/ratio>maxAvailableHeight) divStyle += "height:" + renderHeight + "px;"; divStyle += "width:100%;"; style += "width:100%;"; } else{ if(width'; } } var img_path = 'https://anadigit.fr/TopoMedia/map_points/img'; var map_point_collection = { 0 :{iconindex:14,path:img_path + "/Landscape/"}, 1 :{iconindex:17,path:img_path + "/Flora/"}, 2 :{iconindex:18,path:img_path + "/Animals/"}, 3 :{iconindex:19,path:img_path + "/Books/"}, 4 :{iconindex:20,path:img_path + "/Maps/"}, 5 :{iconindex:21,path:img_path + "/Apps/"}, 6 :{iconindex:22,path:img_path + "/Mushrooms/"}, 7 :{iconindex:23,path:img_path + "/Animals/"}, 8 :{iconindex:24,path:img_path + "/Animals/"}, 9 :{iconindex:25,path:img_path + "/Architecture/"}, 10:{iconindex:26,path:img_path + "/Monuments/"}, 447:{iconindex:38,path:img_path + "/Refuges/"}, 450:{iconindex:41,path:img_path + "/Signposts/"}, 71:{iconindex:36,path:img_path + "/Geology/"}, 72:{iconindex:34,path:img_path + "/Geology/"}, 73:{iconindex:35,path:img_path + "/Geology/"}, 204:{iconindex:27,path:img_path + "/logos/"}, 206:{iconindex:28,path:img_path + "/logos/"}, 200:{iconindex:29,path:img_path + "/logos/"}, 201:{iconindex:30,path:img_path + "/logos/"}, 205:{iconindex:31,path:img_path + "/logos/"}, 202:{iconindex:32,path:img_path + "/logos/"}, 203:{iconindex:33,path:img_path + "/logos/"}, 301:{iconindex:42,path:img_path + "/Beach/"}, 1001:{iconindex:42,path:img_path + "/Water/"}, default: {iconindex:28,path:""} } map_point_collection.get = function(key){ return this[key] || this.default; } function wpt_icon_class(){ this.count=0; this.url = new Array(); this.url_s = new Array(); this.cx = new Array(); this.cy = new Array(); this.scx = new Array(); this.scy = new Array(); this.ix = new Array(); this.iy = new Array(); this.anch_fraction_x = new Array(); this.anch_fraction_y = new Array(); this.scale = new Array(); this.inwptwindow = new Array(); this.add = function(url,url_s,cx,cy,ix,iy,scx,scy,anch_fraction_x, anch_fraction_y,scale,inwptwindow){ this.count+=1; this.url[this.count]="https://anadigit.fr/TopoMedia/" + url; this.url_s[this.count]="https://anadigit.fr/TopoMedia/" + url_s; this.cx[this.count]=cx; this.cy[this.count]=cy; this.scx[this.count]=scx; //kentro simeiou gia xarti this.scy[this.count]=scy; this.ix[this.count]=ix; //offset sto icon list this.iy[this.count]=iy; this.anch_fraction_x[this.count]=anch_fraction_x; //offset sto icon list this.anch_fraction_y[this.count]=anch_fraction_y; this.scale[this.count]=scale; this.inwptwindow[this.count]=inwptwindow; } } var wpt_icon = new wpt_icon_class(); wpt_icon.add("Icons/WPT/pin_blue.png","Icons/WPT/pin_blue_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_green.png","Icons/WPT/pin_green_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_red.png","Icons/WPT/pin_red_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/star_blue.png","Icons/WPT/star_blue_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_green.png","Icons/WPT/star_green_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_red.png","Icons/WPT/star_red_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/lmk_red.png","Icons/WPT/lmk_red_s.png",32,32,-3,0,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/house_blue.png","Icons/WPT/house_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true);; wpt_icon.add("Icons/WPT/house_red.png","Icons/WPT/house_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/monastery_red.png","Icons/WPT/monastery_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/church_red.png","Icons/WPT/church_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_blue.png","Icons/WPT/anchor_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_red.png","Icons/WPT/anchor_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); //photo_points wpt_icon.add("Icons/WPT/landscape.png","Icons/WPT/landscape.png",28,28,5,8,16,16); wpt_icon.add("img/NAV_START.png","img/NAV_START.png",32*1.5,42,-5,-48,11,11,0.5,1.0,0.6,true); wpt_icon.add("img/NAV_END.png","img/NAV_END.png",32*1.5,162,-5,-28,11,11,0.5,1.0,0.6,true); wpt_icon.add("Icons/WPT/flora.png","Icons/WPT/flora.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/bird.png","Icons/WPT/bird.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/book.png","Icons/WPT/book.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/map.png","Icons/WPT/map.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/iphone.png","Icons/WPT/iphone.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mushroom.png","Icons/WPT/mushroom.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mammal.png","Icons/WPT/mammal.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/turtle.png","Icons/WPT/turtle.png",30,30,5,8,16,16); wpt_icon.add("Icons/WPT/architecture.png","Icons/WPT/architecture.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/monument.png","Icons/WPT/monument.png",28,28,5,8,16,16); // pop_info wpt_icon.add("pop_info/Icons/pop_info_1.png","pop_info/Icons/pop_info_1.png",32,32,5,8,32,32,0.5,1); // iconindex= 27 wpt_icon.add("pop_info/Icons/pop_info_2.png","pop_info/Icons/pop_info_2.png",32,32,5,8,32,32,0.5,1); // iconindex= 28 wpt_icon.add("pop_info/Icons/pop_info_3.png","pop_info/Icons/pop_info_3.png",32,32,5,8,32,32); // iconindex= 29 wpt_icon.add("pop_info/Icons/pop_info_4.png","pop_info/Icons/pop_info_4.png",32,32,5,8,32,32,0.5,1); // iconindex= 30 wpt_icon.add("pop_info/Icons/pop_info_5.png","pop_info/Icons/pop_info_5.png",32,32,5,8,32,32); // iconindex= 31 wpt_icon.add("pop_info/Icons/pop_info_6.png","pop_info/Icons/pop_info_6.png",32,32,5,8,32,32); // iconindex= 32 wpt_icon.add("pop_info/Icons/pop_info_7.png","pop_info/Icons/pop_info_7.png",32,32,5,8,32,32); // iconindex= 33 wpt_icon.add("pop_info/Icons/pop_info_101.png","pop_info/Icons/pop_info_101.png",32,32,5,8,32,32,0.5,0.5); // iconindex= 34 wpt_icon.add("pop_info/Icons/pop_info_102.png","pop_info/Icons/pop_info_102.png",32,32,5,8,32,32); // iconindex= 35 wpt_icon.add("pop_info/Icons/pop_info_103.png","pop_info/Icons/pop_info_103.png",32,32,5,8,32,32); // iconindex= 36 wpt_icon.add("Icons/WPT/POI_446_icon.png","Icons/WPT/POI_446_icon.png",32,32,5,8,32,32); // iconindex= 37 wpt_icon.add("Icons/WPT/POI_447_icon.png","Icons/WPT/POI_447_icon.png",32,32,5,8,32,32); // iconindex= 38 wpt_icon.add("Icons/WPT/POI_448_icon.png","Icons/WPT/POI_448_icon.png",32,32,5,8,32,32); // iconindex= 39 wpt_icon.add("Icons/WPT/POI_449_icon.png","Icons/WPT/POI_449_icon.png",32,32,5,8,32,32); // iconindex= 40 wpt_icon.add("Icons/WPT/POI_450_icon.png","Icons/WPT/POI_450_icon.png",32,32,5,8,32,32); // iconindex= 41 wpt_icon.add("Icons/WPT/Fountain_blue.png","Icons/WPT/Fountain_blue.png",32,32,5,8,32,32); // iconindex= 42 console.log('poi signature up to date');var poiCollection_E4_Crete = new getPoiCollection("E4_Crete",[{"name":"\u0399\u03b4\u03b1\u03af\u03bf\u03bd \u0391\u03bd\u03c4\u03c1\u03bf\u03bd
\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2","owner":"\u03a1\u03b5\u03b3\u03b3\u03af\u03bd\u03b1 \u039a\u03bf\u03cd\u03c4\u03c3\u03b7","x":24.829396,"y":35.208318,"photo":"Cave_Ideon","type":73,"zoom_level":11,"id":27,"hlink_GR":"http:\/\/www.cretanbeaches.com\/spilaia\/spilaia-rethymn%CE%BFy\/spilaio-idaion-antron\/","hlink_EN":"http:\/\/www.cretanbeaches.com\/Caves\/Rethymno-Caves\/ideon-andron-cave\/","description":"\u03a4\u03bf \u0399\u03b4\u03b1\u03af\u03bf \u0386\u03bd\u03c4\u03c1\u03bf \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03b9\u03ad\u03c2 \u03c4\u03bf\u03c5 \u03cc\u03c1\u03bf\u03c5\u03c2 \u038a\u03b4\u03b7 (\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2), \u03c3\u03c4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03c4\u03b7\u03c2 \u039d\u03af\u03b4\u03b1\u03c2. \u0388\u03c7\u03b5\u03b9 \u03c4\u03b5\u03c1\u03ac\u03c3\u03c4\u03b9\u03b1 \u03bc\u03c5\u03b8\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ae \u03ba\u03b1\u03b9 \u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03b9\u03ba\u03ae \u03b1\u03be\u03af\u03b1, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ae\u03c4\u03b1\u03bd \u03c4\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03c0\u03bf\u03c5 \u03c3\u03cd\u03bc\u03c6\u03c9\u03bd\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03bc\u03cd\u03b8\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03c9\u03c3\u03b5 \u03bf \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03b8\u03b5\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03bf \u0394\u03af\u03b1\u03c2. \u0392\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c5\u03c8\u03cc\u03bc\u03b5\u03c4\u03c1\u03bf 1538 m. \u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c4\u03bf\u03c5 \u03b5\u03af\u03c3\u03bf\u03b4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03c4\u03bf\u03bc\u03b7 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ae \u03c0\u03bb\u03b1\u03b3\u03b9\u03ac \u03c4\u03bf\u03c5 \u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7 \u03c0\u03bf\u03c5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c4\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03c1\u03ae\u03b3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae\u03c2. \u03a4\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b9\u03b4\u03b1\u03af\u03c4\u03b5\u03c1\u03b1 \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03cc \u03b1\u03c6\u03bf\u03cd \u03c3\u03c4\u03b5\u03c1\u03b5\u03af\u03c4\u03b1\u03b9 \u03b4\u03b9\u03ac\u03ba\u03bf\u03c3\u03bc\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7\u03c2, \u03ad\u03c7\u03b5\u03b9 \u03bc\u03ae\u03ba\u03bf\u03c2 800\u03c4\u03bc \u03ba\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c4\u03b5\u03b9 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u03b1\u03af\u03b8\u03bf\u03c5\u03c3\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b5\u03c5\u03c1\u03b9\u03ba\u03ae \u03c3\u03c4\u03bf\u03ac \u03bc\u03ae\u03ba\u03bf\u03c5\u03c2 22 \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd. \u03a7\u03c9\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ac \u03c3\u03b5 \u03c4\u03c1\u03b5\u03b9\u03c2 \u03b8\u03b1\u03bb\u03ac\u03bc\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03ac\u03b4\u03c5\u03c4\u03bf.","height":0,"width":0},{"name":"\u0394\u03b9\u03ba\u03c4\u03b1\u03af\u03bf\u03bd \u0391\u03bd\u03c4\u03c1\u03bf\u03bd
\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a8\u03c5\u03c7\u03c1\u03bf\u03cd
\u039b\u03b1\u03c3\u03af\u03b8\u03b9","owner":"\u03a1\u03b5\u03b3\u03b3\u03af\u03bd\u03b1 \u039a\u03bf\u03cd\u03c4\u03c3\u03b7","x":25.445457,"y":35.162213,"photo":"Cave_Dikteon","type":73,"zoom_level":11,"id":28,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/2\/gh251.jsp?obj_id=1628","hlink_EN":"http:\/\/odysseus.culture.gr\/h\/2\/eh251.jsp?obj_id=1628","description":"\u0388\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c0\u03b9\u03bf \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03ac \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03bd\u03b7\u03c3\u03b9\u03bf\u03cd \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c5\u03c8\u03cc\u03bc\u03b5\u03c4\u03c1\u03bf 1025 \u03bc. \u03c3\u03c4\u03b9\u03c2 \u03b2\u03cc\u03c1\u03b5\u03b9\u03b5\u03c2 \u03c0\u03bb\u03b1\u03b3\u03b9\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03bf\u03c1\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03c4\u03b7\u03c2 \u0394\u03af\u03ba\u03c4\u03b7\u03c2. \u0393\u03b9\u03b1 \u03bc\u03b9\u03b1 \u03b5\u03ba\u03c4\u03b5\u03c4\u03b1\u03bc\u03ad\u03bd\u03b7 \u03c7\u03c1\u03bf\u03bd\u03b9\u03ba\u03ae \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf, \u03b1\u03c0\u03cc \u03c4\u03bf 1800 \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 \u03c0.\u03a7. \u03c9\u03c2 \u03c4\u03bf\u03bd 7\u03bf \u03b1\u03b9. \u03c0.\u03a7., \u03c4\u03bf \u0394\u03b9\u03ba\u03c4\u03b1\u03af\u03bf\u03bd \u0386\u03bd\u03c4\u03c1\u03bf\u03bd \u03ae \u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a8\u03c5\u03c7\u03c1\u03bf\u03cd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03bf\u03cd\u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03bf\u03c5\u03c2 \u03bb\u03b1\u03c4\u03c1\u03b5\u03c5\u03c4\u03b9\u03ba\u03bf\u03cd\u03c2 \u03c7\u03ce\u03c1\u03bf\u03c5\u03c2 \u03c4\u03b7\u03c2 \u039a\u03c1\u03ae\u03c4\u03b7\u03c2.\u03a4\u03bf \u03b9\u03b5\u03c1\u03cc \u03b1\u03c5\u03c4\u03cc \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03c4\u03b1\u03c5\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03af\u03c6\u03b7\u03bc\u03bf \u0394\u03b9\u03ba\u03c4\u03b1\u03af\u03bf\u03bd \u0386\u03bd\u03c4\u03c1\u03bf\u03bd, \u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03c3\u03cd\u03bc\u03c6\u03c9\u03bd\u03b1 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u03c0\u03b1\u03c1\u03ac\u03b4\u03bf\u03c3\u03b7, \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03c3\u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03ba\u03b1\u03c4\u03ad\u03c6\u03c5\u03b3\u03b5 \u03b7 \u03a1\u03ad\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b3\u03b5\u03bd\u03bd\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf \u0394\u03af\u03b1. \u0391\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03bf \u0386\u03bd\u03c9 \u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03b9\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03b4\u03cd\u03bf \u03c4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1, \u03ba\u03b1\u03b9 \u03c4\u03bf \u039a\u03b1\u03c4\u03ce\u03c4\u03b5\u03c1\u03bf \u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf, \u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03c7\u03c9\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c0\u03ad\u03bd\u03c4\u03b5 \u03bc\u03b9\u03ba\u03c1\u03ac \u03ba\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b9\u03b1\u03bc\u03b5\u03c1\u03af\u03c3\u03bc\u03b1\u03c4\u03b1. \u0388\u03c7\u03bf\u03c5\u03bd \u03b1\u03c0\u03bf\u03ba\u03b1\u03bb\u03c5\u03c6\u03b8\u03b5\u03af \u03b4\u03b9\u03ac\u03c6\u03bf\u03c1\u03b1 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ac \u03b1\u03c1\u03c7\u03b1\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ac \u03b5\u03c5\u03c1\u03ae\u03bc\u03b1\u03c4\u03b1. \u03a0\u03bf\u03bb\u03c5\u03ac\u03c1\u03b9\u03b8\u03bc\u03b1 \u03b1\u03bd\u03b1\u03b8\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b2\u03c1\u03af\u03c3\u03ba\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1 \u03bc\u03bf\u03b9\u03c1\u03b1\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03bf \u039c\u03bf\u03c5\u03c3\u03b5\u03af\u03bf \u0397\u03c1\u03b1\u03ba\u03bb\u03b5\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c4\u03bf Ashmolean Museum \u03c4\u03b7\u03c2 \u039f\u03be\u03c6\u03cc\u03c1\u03b4\u03b7\u03c2.","height":0,"width":0},{"name":"\u039b\u0395\u03a5\u039a\u0391 \u039f\u03a1\u0397
\u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u0391\u03c1\u03ac\u03b4\u03b1\u03b9\u03bd\u03b1\u03c2","owner":"","x":24.064657211303,"y":35.224897572781,"photo":"LEFKA_ORI_Aradena","type":0,"zoom_level":12,"id":107,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u03a3\u03ba\u03ac\u03bb\u03b1 \u03c4\u03b7\u03c2 \u0391\u03c1\u03ac\u03b4\u03b1\u03b9\u03bd\u03b1\u03c2, \u03c0\u03bf\u03c5 \u03b4\u03c1\u03b1\u03c3\u03ba\u03ad\u03bb\u03b9\u03b6\u03b5 \u03c4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c3\u03c4\u03bf \u03cd\u03c8\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03bf\u03bc\u03ce\u03bd\u03c5\u03bc\u03bf\u03c5 \u03c7\u03c9\u03c1\u03b9\u03bf\u03cd","height":423,"width":512},{"name":"\u03a6\u0391\u03a1\u0391\u0393\u0393\u0399 \u03a3\u0391\u039c\u0391\u03a1\u0399\u0391\u03a3
\u0397 \u03a3\u03b9\u03b4\u03b5\u03c1\u03cc\u03c0\u03bf\u03c1\u03c4\u03b1, \u03c4\u03bf \u03c3\u03c4\u03b5\u03bd\u03cc\u03c4\u03b5\u03c1\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03c6\u03b1\u03c1\u03b1\u03b3\u03b3\u03b9\u03bf\u03cd","owner":"A. Bonetti","x":23.967594,"y":35.250697,"photo":"Crete - Samaria Gorge Nat Park 01","type":0,"zoom_level":11,"id":156,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":342},{"name":"\u039b\u0395\u03a5\u039a\u0391 \u039f\u03a1\u0397
\u03a4\u03bf \u03c4\u03bf\u03c0\u03b9\u03ba\u03cc \u03b5\u03bd\u03b4\u03b7\u03bc\u03b9\u03ba\u03cc Tulipa bakeri","owner":"A. Bonetti","x":23.897287368771,"y":35.333852503427,"photo":"Crete - Tulipa bakeri Omalos plateau","type":1,"zoom_level":14,"id":157,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":342},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a4\u03bf \u03c6\u03bf\u03b9\u03bd\u03b9\u03ba\u03cc\u03b4\u03b1\u03c3\u03bf\u03c2
\u03c3\u03c4\u03bf \u0392\u03ac\u03b9","owner":"A. Bonetti","x":26.257459640499,"y":35.25553186901,"photo":"Crete - Vai Palm Forest","type":1,"zoom_level":12,"id":158,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u039b\u0395\u03a5\u039a\u0391 \u039f\u03a1\u0397
\u03a0\u03bb\u03b7\u03c3\u03b9\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c6\u03ae, \u03c4\u03b9\u03c2 \u03a0\u03ac\u03c7\u03bd\u03b5\u03c2","owner":"A. Bonetti","x":24.036504745478,"y":35.292039554954,"photo":"Crete - White mountains","type":0,"zoom_level":13,"id":159,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u03a8\u0397\u039b\u039f\u03a1\u0395\u0399\u03a4\u0397\u03a3
\u03a0\u03bb\u03b1\u03ba\u03ce\u03b4\u03b5\u03b9\u03c2 \u03b1\u03c3\u03b2\u03b5\u03c3\u03c4\u03cc\u03bb\u03b9\u03b8\u03bf\u03b9 \u03c3\u03b7\u03bd \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae","owner":"A. Bonetti","x":24.826490402217,"y":35.19895102318,"photo":"Crete Psiloritis 01","type":0,"zoom_level":13,"id":160,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u0391\u03b3\u03c1\u03af\u03bc\u03b9","owner":"A. Bonetti","x":23.957447,"y":35.293491,"photo":"Capra_aegagrus","type":7,"zoom_level":12,"id":259,"hlink_GR":"http:\/\/www.andreabonetti.com","hlink_EN":"http:\/\/www.andreabonetti.com","description":"\u03a4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c4\u03b7\u03c2 \u03a3\u03b1\u03bc\u03b1\u03c1\u03b9\u03ac\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03cc \u03bc\u03ad\u03c1\u03bf\u03c2 \u03cc\u03c0\u03bf\u03c5 \u03b6\u03b5\u03b9 \u03c4\u03bf \u03b1\u03b3\u03c1\u03af\u03bc\u03b9 (Capra aegagrus subsp. cretica).","height":382,"width":512},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u03a0\u03b5\u03c4\u03c1\u03bf\u03ba\u03bf\u03cd\u03bd\u03b1\u03b2\u03bf","owner":"A. Bonetti","x":24.407078742982,"y":35.192217590679,"photo":"Martes_foina","type":7,"zoom_level":12,"id":262,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03c0\u03b5\u03c4\u03c1\u03bf\u03ba\u03bf\u03cd\u03bd\u03b1\u03b2\u03bf (Martes foina), \u03c0\u03bf\u03c5 \u03b6\u03b5\u03b9 \u03c3\u03b5 \u03cc\u03bb\u03b7 \u03c4\u03b7\u03bd \u0395\u03bb\u03bb\u03ac\u03b4\u03b1, \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03ac\u03b3\u03c1\u03b9\u03bf \u03c3\u03b1\u03c1\u03ba\u03bf\u03c6\u03ac\u03b3\u03bf \u03c4\u03b7\u03c2 \u039a\u03c1\u03ae\u03c4\u03b7\u03c2","height":350,"width":512},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u03a4\u03bf \u03c4\u03bf\u03c0\u03b9\u03ba\u03cc \u03b5\u03bd\u03b4\u03b7\u03bc\u03b9\u03ba\u03cc Cephalanthera cucullata \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c3\u03c0\u03b1\u03bd\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c6\u03c5\u03c4\u03ac \u03c4\u03b7\u03c2 \u03ba\u03c1\u03ae\u03c4\u03b7\u03c2","owner":"AnaDigit","x":24.928843498227,"y":35.163103102613,"photo":"Cephalanthera_cucullata_Crete","type":1,"zoom_level":13,"id":531,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":287},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u03a7\u03b1\u03c1\u03bf\u03c5\u03c0\u03b9\u03ac","owner":"AnaDigit","x":24.526233196256,"y":35.355660894274,"photo":"Charoupia_Crete","type":1,"zoom_level":13,"id":532,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c7\u03b1\u03c1\u03bf\u03c5\u03c0\u03b9\u03ac \u03b5\u03af\u03bd\u03b1\u03b9 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b4\u03ad\u03bd\u03c4\u03c1\u03bf \u03c4\u03b7\u03c2 \u039a\u03c1\u03ae\u03c4\u03b7\u03c2","height":512,"width":310},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u0395\u03af\u03b4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b3\u03ad\u03bd\u03bf\u03c5\u03c2 Ranunculus \u03c3\u03c4\u03b9\u03c2 \u03a0\u03ac\u03c7\u03bd\u03b5\u03c2 ","owner":"AnaDigit","x":24.046139240263,"y":35.296032679324,"photo":"Ranunculus_Pachnes_Crete","type":1,"zoom_level":14,"id":533,"hlink_GR":"","hlink_EN":"","description":"","height":333,"width":512},{"name":"\u0393\u0391\u03a5\u0394\u039f\u03a3
\u03a3\u03c4\u03bf \u03ba\u03b1\u03c1\u03b1\u03b2\u03ac\u03ba\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u0393\u03b1\u03cd\u03b4\u03bf","owner":"AnaDigit","x":23.849458217619,"y":35.095292620962,"photo":"Crete__karavi_Gavdos","type":0,"zoom_level":14,"id":534,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":343},{"name":"\u0397\u03a1\u0391\u039a\u039b\u0395\u0399\u039f
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2 \u03c3\u03c4\u03bf \u03b4\u03ac\u03c3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a1\u03bf\u03cd\u03b2\u03b1","owner":"AnaDigit","x":24.915346622464,"y":35.165769441216,"photo":"Crete_Agios_Ioanis_Rouva","type":9,"zoom_level":13,"id":544,"hlink_GR":"","hlink_EN":"","description":"","height":442,"width":512},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a4\u03bf\u03c0\u03bf\u03bb\u03b9\u03b1\u03bd\u03cc \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9","owner":"AnaDigit","x":23.683998107904,"y":35.412871158787,"photo":"Crete_Topoliano_faragi","type":0,"zoom_level":14,"id":559,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":350},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u0397 \u03bb\u03af\u03bc\u03bd\u03b7 \u039a\u03bf\u03c5\u03c1\u03bd\u03ac","owner":"AnaDigit","x":24.279952764504,"y":35.331519917373,"photo":"Crete_Kourna_lake","type":0,"zoom_level":13,"id":562,"hlink_GR":"","hlink_EN":"","description":"","height":0,"width":0},{"name":"\u03a1\u0395\u0398\u03a5\u039c\u039d\u039f
\u03a0\u03b1\u03bb\u03b9\u03cc \u03b3\u03b5\u03c6\u03cd\u03c1\u03b9 \u03c3\u03c4\u03bf \u0391\u03bc\u03ac\u03c1\u03b9","owner":"AnaDigit","x":24.695287466041,"y":35.173167195976,"photo":"Crete_gefyri_Amari_563136_3892174","type":9,"zoom_level":14,"id":563,"hlink_GR":"","hlink_EN":"","description":"","height":343,"width":512},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u039b\u03b5\u03c5\u03ba\u03ac \u038c\u03c1\u03b7
\u0391\u03c0\u03cc \u03a0\u03c5\u03c1\u03bf\u03cd \u03c0\u03c1\u03bf\u03c2 \u039a\u03b1\u03c4\u03c3\u03b9\u03b2\u03ad\u03bb\u03b7","owner":"AnaDigit","x":24.01310515403,"y":35.31397741418,"photo":"Crete_Konda_sto_Katsiveli","type":0,"zoom_level":14,"id":564,"hlink_GR":"","hlink_EN":"","description":"\u039a\u03bf\u03c0\u03ac\u03b4\u03b9 \u03bc\u03b5 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03b2\u03b1\u03bc\u03ad\u03bd\u03b5\u03c2 \u03ba\u03cc\u03ba\u03ba\u03b9\u03bd\u03b5\u03c2 \u03c1\u03ac\u03c7\u03b5\u03c2, \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03a0\u03c5\u03c1\u03bf\u03cd \u03ba\u03b1\u03b9 \u039a\u03b1\u03c4\u03c3\u03b9\u03b2\u03ad\u03bb\u03b7","height":230,"width":600},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b9\u03ba\u03b1\u03af\u03bf\u03c2 \u03ba\u03b1\u03c4\u03ac\u03ba\u03bf\u03c1\u03c6\u03b1 \u03c3\u03c4\u03bf \u03bf\u03bc\u03ce\u03bd\u03c5\u03bc\u03bf \u03b2\u03bf\u03c5\u03bd\u03cc","owner":"AnaDigit","x":23.628969907754,"y":35.344578031646,"photo":"Crete_Korfi_Agios_Dikaios","type":9,"zoom_level":14,"id":565,"hlink_GR":"","hlink_EN":"","description":"","height":343,"width":512},{"name":"\u0397\u03a1\u0391\u039a\u039b\u0395\u0399\u039f
\u03a0\u03b1\u03bb\u03b9\u03cc \u03bc\u03b9\u03c4\u03ac\u03c4\u03bf \u03c3\u03c4\u03bf\u03bd \u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7","owner":"AnaDigit","x":24.930034399026,"y":35.178832359793,"photo":"Crete_Mitato_voria_Rouva_korfes_Psiloriti","type":9,"zoom_level":13,"id":566,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":343},{"name":"\u03a1\u0395\u0398\u03a5\u039c\u039d\u039f
\u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7\u03c2
\u039d\u03af\u03b4\u03b1","owner":"AnaDigit","x":24.85787224769,"y":35.214200008619,"photo":"Crete_Nida_korfes_Psiloriti","type":0,"zoom_level":13,"id":567,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03c4\u03b7\u03c2 \u039d\u03af\u03b4\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03bf\u03b9 \u03ba\u03bf\u03c1\u03c6\u03ad\u03c2 \u03c4\u03bf\u03c5 \u03a8\u03b7\u03bb\u03bf\u03c1\u03b5\u03af\u03c4\u03b7","height":272,"width":600},{"name":"\u0397\u03a1\u0391\u039a\u039b\u0395\u0399\u039f
\u0391\u03c0\u03ad\u03c1\u03b1\u03bd\u03c4\u03bf\u03b9 \u03b1\u03bc\u03c0\u03b5\u03bb\u03ce\u03bd\u03b5\u03c2 \u03c3\u03c4\u03b9\u03c2 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b1\u03b3\u03b9\u03ad\u03c2 \u03c4\u03bf\u03c5 \u0393\u03b9\u03bf\u03cd\u03c7\u03c4\u03b1","owner":"AnaDigit","x":25.132444620127,"y":35.236636537399,"photo":"Crete_Ghiouxtas2","type":0,"zoom_level":13,"id":568,"hlink_GR":"","hlink_EN":"","description":"","height":330,"width":600},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u03c3\u03c4\u03b1 \u03a3\u03b5\u03bb\u03bb\u03b9\u03ac","owner":"AnaDigit","x":23.996625661843,"y":35.37242012348,"photo":"Crete_Pigi_Selia_anavasi_Theriso_Livada","type":0,"zoom_level":14,"id":569,"hlink_GR":"","hlink_EN":"","description":"","height":343,"width":512},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7 \u039b\u03b9\u03b2\u03ac\u03b4\u03b1","owner":"AnaDigit","x":24.04479813575,"y":35.334688366853,"photo":"Crete_Perpatontas_Livada","type":0,"zoom_level":14,"id":570,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03ba\u03b1\u03c1\u03c3\u03c4\u03b9\u03ba\u03ae \u03bb\u03b5\u03ba\u03ac\u03bd\u03b7 \u03c4\u03b7\u03c2 \u039b\u03b9\u03b2\u03ac\u03b4\u03b1\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03b1 \u03cc\u03c0\u03bf\u03c5 \u03c4\u03bf \u03c0\u03c1\u03ac\u03c3\u03b9\u03bd\u03bf \u03c0\u03bb\u03b5\u03b9\u03bf\u03c8\u03b7\u03c6\u03b5\u03af \u03c4\u03bf\u03c5 \u03b3\u03ba\u03c1\u03af\u03b6\u03bf\u03c5 \u03ba\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b1\u03c3\u03b2\u03b5\u03c3\u03c4\u03cc\u03bb\u03b9\u03b8\u03bf\u03c5.","height":600,"width":399},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a3\u03b7\u03c4\u03b5\u03af\u03b1
\u03a6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03b1\u03b6\u03ac\u03c1\u03bc\u03b1","owner":"AnaDigit","x":26.107406,"y":35.210646,"photo":"Crete_Siteia_Kazarma","type":10,"zoom_level":14,"id":792,"hlink_GR":"http:\/\/www.cretanbeaches.com\/amyntiki-arhitekt\u03bfniki\/enetika-fr\u03bfyria-kai-kastelia\/kastro-kazarma-siteia\/","hlink_EN":"http:\/\/www.cretanbeaches.com\/Fortresses\/Venetian-Forts-Castels\/kazarma-fortress\/","description":"\u03a4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03b1\u03b6\u03ac\u03c1\u03bc\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03ce\u03c1\u03bf\u03c6\u03bf, \u03bc\u03b5 \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03c3\u03ba\u03ac\u03bb\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03bf\u03b4\u03b7\u03b3\u03bf\u03cd\u03bd \u03c3\u03c4\u03bf\u03c5\u03c2 \u03bf\u03c1\u03cc\u03c6\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03c0\u03bf\u03bb\u03b5\u03bc\u03af\u03c3\u03c4\u03c1\u03b5\u03c2.
\u039b\u03b5\u03b9\u03c4\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c3\u03c4\u03b7\u03bd \u0395\u03bd\u03b5\u03c4\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c9\u03c2 \u03c3\u03c4\u03c1\u03b1\u03c4\u03ce\u03bd\u03b1\u03c2 \u03ae \u03b4\u03b9\u03bf\u03b9\u03ba\u03b7\u03c4\u03ae\u03c1\u03b9\u03bf \u03ba\u03b1\u03b9 \u03b1\u03c0\u03cc \u03b5\u03ba\u03b5\u03af\u03bd\u03b7 \u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf \u03c0\u03ae\u03c1\u03b5 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 (Casa di Arma). \u03a4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03c9\u03c3\u03c4\u03cc\u03c3\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf, \u03b1\u03c6\u03bf\u03cd \u03c7\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b1 \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ac \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03bf\u03cd\u03c3\u03b5 \u03bc\u03ad\u03c1\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03bf\u03c7\u03cd\u03c1\u03c9\u03c3\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03b2\u03b1\u03bb\u03b5 \u03c4\u03bf \u03bb\u03b9\u03bc\u03ac\u03bd\u03b9 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03bb\u03ac\u03bc\u03b2\u03b1\u03bd\u03b5 \u03bc\u03b1\u03ba\u03c1\u03ac \u03c4\u03b5\u03af\u03c7\u03b7. \u039f\u03b9 \u0395\u03bd\u03b5\u03c4\u03bf\u03af \u03ba\u03b1\u03c4\u03b5\u03b4\u03ac\u03c6\u03b9\u03c3\u03b1\u03bd \u03c4\u03b1 \u03c4\u03b5\u03af\u03c7\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c6\u03c4\u03b9\u03ac\u03be\u03c5\u03bd \u03bd\u03ad\u03bf \u03bf\u03c7\u03c5\u03c1\u03c9\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1, \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c0\u03bf\u03c5 \u03cc\u03bc\u03c9\u03c2 \u03b4\u03b5\u03bd \u03c5\u03bb\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b1\u03bd. \u03a3\u03c4\u03b7\u03bd \u03a4\u03bf\u03c5\u03c1\u03ba\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03b7 \u039a\u03b1\u03b6\u03ac\u03c1\u03bc\u03b1 \u03ad\u03b3\u03b9\u03bd\u03b1\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c0\u03b9\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b5\u03c2.
\u03a3\u03ae\u03bc\u03b5\u03c1\u03b1 \u03b7 \u039a\u03b1\u03b6\u03ac\u03c1\u03bc\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bd\u03b1\u03c3\u03c4\u03b7\u03bb\u03c9\u03b8\u03b5\u03af \u03ba\u03b1\u03b9 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b9\u03c2 \u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b5\u03ba\u03b4\u03b7\u03bb\u03ce\u03c3\u03b5\u03b9\u03c2 \"\u039a\u03bf\u03c1\u03bd\u03ac\u03c1\u03b5\u03b9\u03b1\".","height":600,"width":500},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03954
\u039e\u03c5\u03bb\u03cc\u03c3\u03ba\u03b1\u03bb\u03bf-\u039a\u03bf\u03c5\u03c3\u03c4\u03bf\u03b3\u03ad\u03c1\u03b1\u03ba\u03bf","owner":"AnaDigit","x":23.899567,"y":35.291483,"photo":"Crete_E4_Axlada_Gigilos","type":0,"zoom_level":13,"id":795,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03b4\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03a8\u03b7\u03bb\u03b1\u03c6\u03b9\u03bf\u03cd \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u03b4\u03b9\u03ac\u03c3\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 \u0393\u03ba\u03af\u03b3\u03ba\u03b9\u03bb\u03bf\u03c5, \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03b1\u03c0\u03c1\u03ac\u03c3\u03b9\u03bd\u03b7 \u0391\u03c7\u03bb\u03ac\u03b4\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03b4\u03c1\u03bf\u03c3\u03b5\u03c1\u03cc \u039b\u03b9\u03bd\u03bf\u03c3\u03ad\u03bb\u03b9, \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c0\u03b9\u03cc \u03b5\u03c1\u03b7\u03bc\u03b9\u03ba\u03ac \u03c4\u03bf\u03c0\u03af\u03b1 \u03c4\u03c9\u03bd \u039b\u03b5\u03c5\u03ba\u03ce\u03bd \u03bf\u03c1\u03ad\u03c9\u03bd.","height":600,"width":402},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u03b5\u03bb\u03b9\u03ac
\u03a0\u03b1\u03bd\u03b1\u03c3\u03bf\u03cd","owner":"AnaDigit","x":24.986152,"y":35.126665,"photo":"Crete_Elia_Panasou2","type":1,"zoom_level":13,"id":796,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03b7\u03bb\u03af\u03ba\u03af\u03b1 \u03c4\u03b7\u03c2 \u03b5\u03bb\u03b9\u03ac\u03c2 \u03bd\u03cc\u03c4\u03b9\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u03a0\u03b1\u03bd\u03b1\u03c3\u03cc\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03c7\u03c1\u03bf\u03bd\u03bf\u03bb\u03bf\u03b3\u03b7\u03b8\u03b5\u03af \u03bc\u03b5 \u03c4\u03b7 \u03bc\u03ad\u03b8\u03bf\u03b4\u03bf \u03c4\u03c9\u03bd \u03b1\u03c5\u03be\u03b7\u03c4\u03b9\u03ba\u03ce\u03bd \u03b4\u03b1\u03ba\u03c4\u03c5\u03bb\u03af\u03c9\u03bd \u03c3\u03b5 300 \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1, \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1 \u03c0\u03bf\u03c5 \u03c4\u03b7\u03bd \u03b1\u03bd\u03ac\u03b3\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03c0\u03c1\u03ce\u03c4\u03b5\u03c2 \u03b3\u03b5\u03bd\u03b9\u03ad\u03c2 \u03b4\u03ad\u03bd\u03c4\u03c1\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ae\u03c1\u03b8\u03b1\u03bd \u03c3\u03c4\u03b7\u03bd \u039a\u03c1\u03ae\u03c4\u03b7. \u03a4\u03bf \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03ac\u03c4\u03bf\u03bc\u03bf \u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c4\u03b5\u03cd\u03b5\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03bc\u03bd\u03b7\u03bc\u03b5\u03b9\u03b1\u03ba\u03cc.","height":600,"width":399},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u038c\u03c1\u03bd\u03b9\u03bf","owner":"AnaDigit","x":25.54389,"y":35.285669,"photo":"Crete_Selinari_Gyps_fulvus","type":2,"zoom_level":12,"id":797,"hlink_GR":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u038c\u03c1\u03bd\u03b9\u03bf
Gyps fulvus","hlink_EN":"","description":"\u039c\u03b9\u03b1 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ae \u03b1\u03c0\u03bf\u03b9\u03ba\u03af\u03b1 \u03cc\u03c1\u03bd\u03b9\u03c9\u03bd \u03ba\u03bf\u03c5\u03c1\u03bd\u03b9\u03ac\u03b6\u03b5\u03b9, \u03c6\u03c9\u03bb\u03b9\u03ac\u03b6\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03ac\u03b3\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03c2 \u03ba\u03cc\u03ba\u03ba\u03b9\u03bd\u03b1 \u03b2\u03c1\u03ac\u03c7\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03bc\u03b9\u03ba\u03c1\u03bf\u03cd \u03c6\u03b1\u03c1\u03b1\u03b3\u03b3\u03b9\u03bf\u03cd \u03a3\u03b5\u03bb\u03b9\u03bd\u03ac\u03c1\u03b9. \u039a\u03ac\u03b8\u03b5 \u03c0\u03c1\u03c9\u03ca \u03c4\u03b1 \u03c0\u03bf\u03c5\u03bb\u03b9\u03ac \u03b3\u03c5\u03c1\u03bf\u03c0\u03b5\u03c4\u03bf\u03cd\u03bd \u03bc\u03ad\u03c3\u03b1 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1\u03b4\u03b9\u03b1\u03ba\u03ac \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03ba\u03b1\u03b9 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03ae\u03c3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c4\u03c1\u03bf\u03c6\u03ae\u03c2 \u03c3\u03c4\u03b9\u03c2 \u03b3\u03cd\u03c1\u03c9 \u03ba\u03c4\u03b7\u03bd\u03bf\u03c4\u03c1\u03bf\u03c6\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ad\u03c2.","height":301,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03a3\u03b1\u03bc\u03b1\u03c1\u03b9\u03ac\u03c2","owner":"AnaDigit","x":23.96688,"y":35.256307,"photo":"Crete_SAMARIA_FARAGGI","type":0,"zoom_level":12,"id":799,"hlink_GR":"","hlink_EN":"","description":"\u0393\u03b9\u03b1 \u03c7\u03b9\u03bb\u03b9\u03b5\u03c4\u03af\u03b5\u03c2, \u03c4\u03bf \u03c0\u03bb\u03bf\u03cd\u03c3\u03b9\u03bf \u03c1\u03ad\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03a3\u03b1\u03bc\u03b1\u03c1\u03b9\u03ac\u03c2 \u03bb\u03b5\u03b9\u03b1\u03af\u03bd\u03b5\u03b9 \u03b1\u03c3\u03c4\u03b1\u03bc\u03ac\u03c4\u03b7\u03c4\u03b1 \u03c4\u03b1 \u03c4\u03bf\u03b9\u03c7\u03ce\u03bc\u03b1\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03c1\u03b1\u03b3\u03b3\u03b9\u03bf\u03cd","height":600,"width":402},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u039a\u03c1\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2 \u03ba\u03c1\u03cc\u03ba\u03bf\u03c2","owner":"AnaDigit","x":23.994861,"y":35.326995,"photo":"Crete_SAMARIA_KROKOI","type":1,"zoom_level":13,"id":800,"hlink_GR":"","hlink_EN":"","description":"\u0391\u03bd\u03b1\u03c1\u03af\u03b8\u03bc\u03b7\u03c4\u03bf\u03b9 \u03ba\u03c1\u03cc\u03ba\u03bf\u03b9 \u03c3\u03c4\u03bf\u03bb\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03b1 \u03c0\u03b5\u03c4\u03c1\u03bf\u03bb\u03af\u03b2\u03b1\u03b4\u03b1 \u03c4\u03c9\u03bd \u039b\u03b5\u03c5\u03ba\u03ce\u03bd \u039f\u03c1\u03ad\u03c9\u03bd, \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c3\u03cd\u03bd\u03c4\u03bf\u03bc\u03bf \u03b4\u03b9\u03ac\u03c4\u03b7\u03bc\u03b1 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03bf \u03bb\u03b9\u03ce\u03c3\u03b9\u03bc\u03bf \u03c4\u03c9\u03bd \u03c7\u03b9\u03bf\u03bd\u03b9\u03ce\u03bd \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b7 \u03be\u03b7\u03c1\u03ae \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf \u03c4\u03bf\u03c5 \u03bc\u03b1\u03ba\u03c1\u03b9\u03bf\u03cd \u03ba\u03b1\u03bb\u03bf\u03ba\u03b1\u03b9\u03c1\u03b9\u03bf\u03cd.","height":600,"width":402},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u0395\u03bb\u03c5\u03b3\u03b9\u03ac","owner":"AnaDigit","x":23.993144,"y":35.254905,"photo":"Crete_Samaria_Eligias","type":71,"zoom_level":12,"id":801,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03c0\u03b9\u03cc \u03c0\u03b1\u03c1\u03ac\u03be\u03b5\u03bd\u03b5\u03c2 \u03bc\u03bf\u03c1\u03c6\u03bf\u03bb\u03bf\u03b3\u03af\u03b5\u03c2 \u03c4\u03b7\u03bd \u0395\u03bb\u03bb\u03ac\u03b4\u03b1: \u03bc\u03b9\u03b1 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c0\u03bf\u03c5 \u03b1\u03bd\u03b7\u03c6\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03b4\u03cd\u03bf \u03ba\u03b1\u03c4\u03b5\u03c5\u03b8\u03cd\u03bd\u03c3\u03b5\u03b9\u03c2. \u03a0\u03c1\u03ac\u03b3\u03bc\u03b1\u03c4\u03b9, \u03bf \u0395\u03bb\u03c5\u03b3\u03b9\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bf \u03c7\u03c1\u03cc\u03bd\u03bf\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c7\u03c4\u03af\u03c3\u03b5\u03b9 \u03c3\u03c4\u03bf \u03c0\u03bb\u03b1\u03c4\u03cd\u03c4\u03b5\u03c1\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03c6\u03b1\u03c1\u03b1\u03b3\u03b3\u03b9\u03bf\u03cd \u03ad\u03bd\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03c6\u03c5\u03c3\u03b9\u03ba\u03cc \u03c6\u03c1\u03ac\u03b3\u03bc\u03b1, \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03b1\u03ba\u03c1\u03b1\u03c4\u03b5\u03af \u03c4\u03bf \u03bd\u03b5\u03c1\u03cc \u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf \u03c4\u03c9\u03bd \u03b2\u03c1\u03bf\u03c7\u03ce\u03bd \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03c4\u03b7\u03c1\u03b5\u03af \u03ad\u03bd\u03b1 \u03c0\u03c5\u03ba\u03bd\u03cc \u03ba\u03c5\u03c0\u03b1\u03c1\u03b9\u03c3\u03c3\u03cc\u03b4\u03b1\u03c3\u03bf\u03c2. \u039f \u03c0\u03b5\u03b6\u03bf\u03c0\u03cc\u03c1\u03bf\u03c2 \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03b5\u03b2\u03b1\u03b9\u03bd\u03b5\u03b9 \u03c4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9, \u03b1\u03bd\u03b1\u03b3\u03ba\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ad\u03ba\u03c0\u03bb\u03b7\u03ba\u03c4\u03bf\u03c2 \u03bd\u03b1 \u03b1\u03bd\u03ad\u03b2\u03b5\u03b9 \u03bc\u03b9\u03b1 \u03c5\u03c8\u03bf\u03bc\u03b5\u03c4\u03c1\u03b9\u03ba\u03ae 50\u03bc. \u03b5\u03bd\u03ce \u03ba\u03b9\u03bd\u03b5\u03af\u03c4\u03b1\u03b9 \u03c0\u03b9\u03c3\u03c4\u03ac \u03c3\u03c4\u03b1 \u03ba\u03b1\u03c4\u03ac\u03bd\u03c4\u03b9 \u03c3\u03c4\u03bf\u03bd \u03ac\u03be\u03bf\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac\u03c2.","height":402,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03b9\u03bd\u03c9\u03b9\u03ba\u03ae \u03c0\u03cc\u03bb\u03b7
\u0393\u03bf\u03c5\u03c1\u03bd\u03b9\u03ce\u03bd","owner":"AnaDigit","x":25.792284,"y":35.110184,"photo":"Crete_Gournies","type":10,"zoom_level":12,"id":802,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/3\/gh351.jsp?obj_id=2368","hlink_EN":"http:\/\/odysseus.culture.gr\/h\/3\/eh351.jsp?obj_id=2368","description":"\u0397 \u03bc\u03b9\u03bd\u03c9\u03b9\u03ba\u03ae \u03c0\u03cc\u03bb\u03b7 \u0393\u03bf\u03c5\u03c1\u03bd\u03b9\u03ac \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03bb\u03af\u03b3\u03b5\u03c2 \u03bc\u03b9\u03bd\u03c9\u03b9\u03ba\u03ad\u03c2 \u03c0\u03cc\u03bb\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03c3\u03ba\u03b1\u03c6\u03b5\u03af \u03c0\u03bb\u03ae\u03c1\u03c9\u03c2. \u03a4\u03bf \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b3\u03bd\u03c9\u03c3\u03c4\u03cc \u03ba\u03b1\u03b9 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u0393\u03bf\u03c5\u03c1\u03bd\u03b9\u03ac \u03c0\u03b1\u03c1\u03b1\u03c0\u03ad\u03bc\u03c0\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03c3\u03c4\u03b5\u03bd\u03ad\u03c2 \u03c0\u03ad\u03c4\u03c1\u03b9\u03bd\u03b5\u03c2 \u03c3\u03ba\u03ac\u03c6\u03b5\u03c2 (\u03b3\u03bf\u03cd\u03c1\u03bd\u03b5\u03c2) \u03c0\u03bf\u03c5 \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03c3\u03b5 \u03cc\u03bb\u03bf \u03c4\u03bf\u03bd \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc. \u03a3\u03c4\u03b7\u03bd \u03c0\u03c1\u03ce\u03c4\u03b7 \u03c6\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5\u03c2, \u03c4\u03b1 \u0393\u03bf\u03c5\u03c1\u03bd\u03b9\u03ac \u03ae\u03c4\u03b1\u03bd \u03ad\u03bd\u03b1\u03c2 \u03c3\u03c5\u03bd\u03ae\u03b8\u03b7\u03c2 \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03cc\u03c2 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2, \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b5\u03bd\u03b9\u03c3\u03c7\u03cd\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03bc\u03b9\u03ba\u03c1\u03cc \u03b1\u03bd\u03ac\u03ba\u03c4\u03bf\u03c1\u03bf \u03b9\u03b4\u03c1\u03cd\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03bb\u03cc\u03c6\u03bf\u03c5. \u03a3\u03c4\u03b7\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c6\u03ac\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03ba\u03bc\u03ae\u03c2 \u03c4\u03b7\u03c2, \u03b7 \u03c0\u03cc\u03bb\u03b7 \u03ae\u03c4\u03b1\u03bd \u03b2\u03b9\u03bf\u03c4\u03b5\u03c7\u03bd\u03b9\u03ba\u03cc \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf \u03bc\u03b5 \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 4000 \u03ba\u03b1\u03c4\u03bf\u03af\u03ba\u03bf\u03c5\u03c2. \u0395\u03b3\u03ba\u03b1\u03c4\u03b1\u03bb\u03b5\u03af\u03c6\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5\u03c4\u03ac \u03c4\u03bf\u03bd 12\u03bf \u03b1\u03b9. \u03c0.\u03a7.\n","height":206,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u0395\u03bb\u03c5\u03b3\u03b9\u03ac","owner":"AnaDigit","x":23.994303,"y":35.270253,"photo":"Crete_Elygias","type":0,"zoom_level":14,"id":803,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03ba\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03c1\u03b1\u03b3\u03b3\u03b9\u03bf\u03cd \u03c4\u03bf\u03c5 \u0395\u03bb\u03c5\u03b3\u03b9\u03ac \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03b4\u03cd\u03c3\u03ba\u03bf\u03bb\u03b7 \u03b1\u03bb\u03bb\u03ac \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1, \u03c3\u03c4\u03bf \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03bc\u03ad\u03c1\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ac\u03b3\u03c1\u03b9\u03b1 \u03ba\u03bf\u03af\u03c4\u03b7 \u03c4\u03b7\u03c2 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac\u03c2. \u0388\u03bd\u03b1 \u03bc\u03b9\u03ba\u03c1\u03cc \u03c1\u03b1\u03c0\u03ad\u03bb (\u03c3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c3\u03c4\u03b1\u03b8\u03b5\u03c1\u03cc \u03c3\u03ba\u03bf\u03b9\u03bd\u03af, \u03b1\u03bb\u03bb\u03bf\u03b9\u03ce\u03c2 \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b5\u03ba\u03c4\u03b9\u03ba\u03ae \u03ba\u03b1\u03c4\u03b1\u03c1\u03c1\u03af\u03c7\u03b7\u03c3\u03b7 \u03bb\u03af\u03b3\u03c9\u03bd \u03bc\u03ad\u03c4\u03c1\u03c9\u03bd) \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03b4\u03c5\u03c3\u03ba\u03bf\u03bb\u03cc\u03c4\u03b5\u03c1\u03bf \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1.","height":600,"width":402},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0397\u03c1\u03ac\u03ba\u03bb\u03b5\u03b9\u03bf
\u03a6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03bf\u03c5\u03bb\u03ad\u03c2","owner":"AnaDigit","x":25.137214,"y":35.344972,"photo":"Crete_IRAKLIO_2","type":10,"zoom_level":12,"id":804,"hlink_GR":"http:\/\/www.explorecrete.com\/Heraklion\/GR17-Heraklion-koules.html","hlink_EN":"http:\/\/en.wikipedia.org\/wiki\/Heraklion","description":"\u03a4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03bf\u03c5\u03bb\u03ad\u03c2 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ad\u03c3\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf 1540 \u03c4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03bf\u03c7\u03c5\u03c1\u03c9\u03bc\u03b1\u03c4\u03b9\u03ba\u03ac \u03ad\u03c1\u03b3\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03c4\u03bf\u03c5 \u03bb\u03b9\u03bc\u03b1\u03bd\u03b9\u03bf\u03cd (\u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03b1 \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ac, \u03af\u03c3\u03c9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03b1\u03b2\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1\u03c2). \u039f \u03c7\u03ce\u03c1\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b5\u03c2 \u03b5\u03c0\u03b9\u03c7\u03c9\u03bc\u03b1\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2 (\u03b2\u03c5\u03b8\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac \u03c3\u03ba\u03ac\u03c6\u03b7 \u03b3\u03b5\u03bc\u03ac\u03c4\u03b1 \u03bc\u03b5 \u03c0\u03ad\u03c4\u03c1\u03b5\u03c2) \u03c0\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c0\u03bb\u03ac\u03c4\u03c5\u03bd\u03b1\u03bd \u03c4\u03bf \u03c6\u03c5\u03c3\u03b9\u03ba\u03cc \u03b2\u03c1\u03c1\u03b1\u03c7\u03ce\u03b4\u03b5\u03c2 \u03b2\u03ac\u03b8\u03c1\u03bf.\u03a5\u03c0\u03ae\u03c1\u03c7\u03b1\u03bd \u03c4\u03c1\u03b5\u03b9\u03c2 \u03c0\u03cd\u03bb\u03b5\u03c2 \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5, \u03bc\u03b5 \u03ba\u03cd\u03c1\u03b9\u03b1 \u03c0\u03cd\u03bb\u03b7 \u03c4\u03b7\u03bd \u03b4\u03c5\u03c4\u03b9\u03ba\u03ae. \u0391\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b1 \u03b4\u03b9\u03ac\u03c6\u03bf\u03c1\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bb\u03c5\u03c6\u03b1 (\u03c0\u03bb\u03ac\u03ba\u03b5\u03c2, \u03b5\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03bf\u03b9\u03ba\u03cc\u03c3\u03b7\u03bc\u03b1) \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03bd\u03c4\u03bf\u03b9\u03c7\u03b9\u03c3\u03c4\u03b5\u03af, \u03c0\u03b9\u03cc \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03ac \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03b1 \u03bc\u03b1\u03c1\u03bc\u03ac\u03c1\u03b9\u03bd\u03b1 \u03c3\u03cd\u03bd\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03ba\u03ac\u03b8\u03b5 \u03c0\u03cd\u03bb\u03b7 \u03c0\u03bf\u03c5 \u03b1\u03c0\u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b6\u03b1\u03bd \u03c4\u03bf\u03bd \u03c6\u03c4\u03b5\u03c1\u03c9\u03c4\u03cc \u03bb\u03ad\u03bf\u03bd\u03c4\u03b1, \u03ad\u03bc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c4\u03b7\u03c2 \u0393\u03b1\u03bb\u03b7\u03bd\u03bf\u03c4\u03ac\u03c4\u03b7\u03c2 \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1\u03c2 \u03c4\u03b7\u03c2 \u0392\u03b5\u03bd\u03b5\u03c4\u03af\u03b1\u03c2.
\u03a0\u03b1\u03c1\u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03b2\u03b5\u03bb\u03c4\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03b4\u03ad\u03c7\u03c4\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03b6\u03c9\u03ae\u03c2 \u03c4\u03bf\u03c5, \u03bf \u039a\u03bf\u03c5\u03bb\u03ad\u03c2 \u03ae\u03c4\u03b1\u03bd \u03c0\u03b1\u03c1\u03c9\u03c7\u03b7\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c4\u03b5\u03c7\u03bd\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03ba\u03b1\u03c4\u03ac\u03c6\u03b5\u03c1\u03b5 \u03bd\u03b1 \u03b5\u03bc\u03c0\u03bf\u03b4\u03af\u03c3\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03c4\u03c9\u03bd \u03a4\u03bf\u03cd\u03c1\u03ba\u03c9\u03bd \u03c3\u03c4\u03bf \u03bb\u03b9\u03bc\u03ac\u03bd\u03b9 \u03c3\u03c4\u03b7 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03bb\u03b9\u03bf\u03c1\u03ba\u03af\u03b1 \u03c4\u03bf\u03c5 1646-1669.
\u03a3\u03ae\u03bc\u03b5\u03c1\u03b1 \u03bf \u039a\u03bf\u03cd\u03bb\u03b5\u03c2 \u03c6\u03b9\u03bb\u03bf\u03be\u03b5\u03bd\u03b5\u03af \u03c0\u03b5\u03c1\u03b9\u03c3\u03c4\u03b1\u03c3\u03b9\u03b1\u03ba\u03ac \u03ba\u03b1\u03bb\u03bb\u03b9\u03c4\u03b5\u03c7\u03bd\u03b9\u03ba\u03ad\u03c2 \u03b5\u03ba\u03b4\u03b7\u03bb\u03ce\u03c3\u03b5\u03b9\u03c2.","height":600,"width":402},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0397\u03c1\u03ac\u03ba\u03bb\u03b5\u03b9\u03bf
\u03a6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03bf\u03c5\u03bb\u03ad\u03c2","owner":"AnaDigit","x":25.136602,"y":35.344561,"photo":"Crete_IRAKLIO_1","type":10,"zoom_level":15,"id":805,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03bc\u03b5\u03b3\u03b1\u03bb\u03cc\u03c0\u03c1\u03b5\u03c0\u03bf \u03bb\u03b9\u03b8\u03b1\u03bd\u03ac\u03b3\u03bb\u03c5\u03c6\u03bf \u03bc\u03b5 \u03c4\u03bf \u03c4\u03bf\u03bd \u03c6\u03c4\u03b5\u03c1\u03c9\u03c4\u03cc \u03bb\u03ad\u03bf\u03bd\u03c4\u03b1, \u03ad\u03bc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c4\u03b7\u03c2 \u0393\u03b1\u03bb\u03b7\u03bd\u03bf\u03c4\u03ac\u03c4\u03b7\u03c2 \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1\u03c2 \u03c4\u03b7\u03c2 \u0392\u03b5\u03bd\u03b5\u03c4\u03af\u03b1\u03c2, \u03c3\u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ae \u03c0\u03cd\u03bb\u03b7 \u03c4\u03bf\u03c5 \u039a\u03bf\u03c5\u03bb\u03b5.","height":600,"width":454},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0392\u03c1\u03c5\u03c3\u03af\u03b4\u03b9
\u039d\u03b5\u03bf\u03bb\u03b9\u03b8\u03b9\u03ba\u03cc \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf","owner":"AnaDigit","x":26.188114,"y":35.144844,"photo":"Crete_Magassas1","type":9,"zoom_level":13,"id":806,"hlink_GR":"","hlink_EN":"","description":"\u0395\u03b3\u03ba\u03b1\u03c4\u03b1\u03bb\u03b5\u03bb\u03b5\u03b9\u03bc\u03bc\u03ad\u03bd\u03bf\u03c2 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u03bc\u03b5 \u03bb\u03af\u03b3\u03b1 \u03c0\u03b5\u03c4\u03c1\u03cc\u03c7\u03c4\u03b9\u03c3\u03c4\u03b1 \u03c3\u03c0\u03af\u03c4\u03b9\u03b1. \u039b\u03ad\u03b3\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u039c\u03b1\u03b3\u03ba\u03b1\u03c3\u03ac. \u0392\u0394 \u03c4\u03bf\u03c5 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03cc\u03c0\u03bf\u03c5 \u03b5\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03af\u03c7\u03bd\u03b7 \u03bd\u03b5\u03bf\u03bb\u03b9\u03b8\u03b9\u03ba\u03ae\u03c2 \u03ba\u03b1\u03c4\u03bf\u03af\u03ba\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1 (\u03bb\u03af\u03b8\u03b9\u03bd\u03bf\u03b9 \u03c0\u03ad\u03bb\u03b5\u03ba\u03c5\u03c2, \u03bf\u03c8\u03b9\u03b1\u03bd\u03bf\u03af, \u03ba\u03bf\u03ba\u03ac\u03bb\u03b9\u03bd\u03b5\u03c2 \u03c0\u03b5\u03c1\u03cc\u03bd\u03b5\u03c2, \u03bc\u03c5\u03bb\u03cc\u03c0\u03b5\u03c4\u03c1\u03b5\u03c2 \u03ba\u03bb\u03c0).","height":100,"width":180},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039a\u03b5\u03bb\u03ac\u03c1\u03b9\u03b1
\u0396\u03ac\u03ba\u03c1\u03bf\u03c5","owner":"AnaDigit","x":26.223991,"y":35.139282,"photo":"Crete_Kelaria_Zakrou2","type":9,"zoom_level":13,"id":807,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03ba\u03c1\u03cc\u03c2 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u03bc\u03b5 \u03c9\u03c1\u03b1\u03af\u03b1 \u03b4\u03b9\u03ac\u03c4\u03b1\u03be\u03b7 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03b5 \u03c1\u03ac\u03c7\u03b7.","height":402,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0391\u03b6\u03c9\u03b3\u03c5\u03c1\u03ad\u03c2
\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u0396\u03bf\u03c5\u03c1\u03ad","owner":"AnaDigit","x":23.709045,"y":35.27141,"photo":"Crete_Spileo_Zoure_Azogyress","type":73,"zoom_level":13,"id":808,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c0\u03b7\u03bb\u03b1\u03b9\u03bf\u03b2\u03ac\u03c1\u03b1\u03b8\u03c1\u03bf \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u0391\u03b6\u03c9\u03b3\u03c5\u03c1\u03ad\u03c2. \u039c\u03b9\u03ba\u03c1\u03cc \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03bf\u03b4\u03b7\u03b3\u03b5\u03af \u03b1\u03c0\u03cc \u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2, \u03c0\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c4\u03b5\u03bd\u03ae \u03c3\u03c7\u03b9\u03c3\u03bc\u03ae \u03ba\u03b1\u03b9 \u03bf\u03b4\u03b7\u03b3\u03b5\u03af \u03c3\u03c4\u03b7\u03bd \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03ae \u03b1\u03af\u03b8\u03bf\u03c5\u03c3\u03b1. \u039c\u03cc\u03bd\u03b9\u03bc\u03b7 \u03c3\u03c4\u03b1\u03b3\u03bf\u03bd\u03bf\u03c1\u03c1\u03bf\u03ae \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c1\u03b9\u03ba\u03bf\u03af \u03c3\u03c4\u03b1\u03bb\u03b1\u03ba\u03c4\u03af\u03c4\u03b5\u03c2 \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf \u03b7\u03bc\u03af\u03c6\u03c9\u03c2 \u03c0\u03bf\u03c5 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03c6\u03c9\u03c4\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf \u03c4\u03bf\u03c5 \u03b8\u03b1\u03bb\u03ac\u03bc\u03bf\u03c5, \u03cc\u03c0\u03bf\u03c5 \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03ba\u03b5\u03bd\u03bf\u03c4\u03ac\u03c6\u03b5\u03b9\u03bf \u03c4\u03c9\u03bd 99 \u03a0\u03b1\u03c4\u03ad\u03c1\u03c9\u03bd, \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03ac\u03b4\u03bf\u03c3\u03b7 \"\u03ba\u03bf\u03b9\u03bc\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd\" \u03b5\u03b4\u03ce, \u03b1\u03bd\u03ac\u03bc\u03bd\u03b7\u03c3\u03b7 \u03c0\u03bf\u03c5 \u03b3\u03b9\u03bf\u03c1\u03c4\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u03c3\u03c4\u03b9\u03c2 7 \u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5.","height":600,"width":399},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a0\u03b1\u03bb\u03b9\u03bf\u03c7\u03c1\u03b9\u03c3\u03c4\u03b9\u03b1\u03bd\u03b9\u03ba\u03ae
\u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae \u03a0\u03b1\u03bd\u03cc\u03c1\u03bc\u03bf\u03c5","owner":"AnaDigit","x":24.687193,"y":35.414008,"photo":"Crete_Vasiliki_Panormou1","type":10,"zoom_level":13,"id":809,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/2\/gh251.jsp?obj_id=16162","hlink_EN":"","description":"\u03a0\u03c1\u03cc\u03ba\u03b5\u03b9\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03c4\u03c1\u03af\u03ba\u03bb\u03b9\u03c4\u03b7\u03c2 \u03be\u03c5\u03bb\u03cc\u03c3\u03c4\u03b5\u03b3\u03b7\u03c2 \u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae\u03c2 \u03c4\u03bf\u03c5 5\u03bf\u03c5 \u03b1\u03b9. \u03b4\u03b9\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd 54\u03a723 \u03bc. \u0389\u03c4\u03b1\u03bd \u03b1\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a3\u03bf\u03c6\u03af\u03b1. \u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5 \u03b2\u03af\u03b1\u03b9\u03b1, \u03c0\u03b9\u03b8\u03b1\u03bd\u03cc\u03bd \u03c3\u03c4\u03b9\u03c2 \u03b1\u03c1\u03b1\u03b2\u03b9\u03ba\u03ad\u03c2 \u03b5\u03c0\u03b9\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2 \u03c4\u03bf\u03c5 7\u03bf\u03c5 \u03b1\u03b9\u03ce\u03bd\u03b1. \u039f\u03b9 \u03b1\u03bd\u03b1\u03c3\u03ba\u03b1\u03c6\u03b5\u03af\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03b9\u03c3\u03c4\u03b5\u03cd\u03bf\u03c5\u03bd \u03cc\u03c4\u03b9 \u03b5\u03b4\u03ce \u03bc\u03b5\u03c4\u03b1\u03c6\u03ad\u03c1\u03b8\u03b7\u03ba\u03b5 \u03b7 \u03ad\u03b4\u03c1\u03b1 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae\u03c2 \u0395\u03bb\u03b5\u03c5\u03b8\u03ad\u03c1\u03bd\u03b7\u03c2, \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u03c0\u03cc\u03bb\u03b7\u03c2 \u03c3\u03c4\u03bf \u03a0\u03ac\u03bd\u03bf\u03c1\u03bc\u03bf. ","height":402,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03a7\u03b1","owner":"AnaDigit","x":25.828741,"y":35.089363,"photo":"Crete_Xas_geniko","type":71,"zoom_level":13,"id":811,"hlink_GR":"http:\/\/www.cretanbeaches.com\/faraggia\/faraggia-lasithi%CE%BFy\/faraggi-xa\/","hlink_EN":"http:\/\/www.cretanbeaches.com\/Gorges\/Lassithi-gorges\/ha-gorge\/","description":"","height":600,"width":402},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03bf\u03bd\u03ae \u0391\u03c4\u03c4\u03ac\u03bb\u03b7\u03c2
(\u03bc. \u039c\u03c0\u03b1\u03bb\u03af\u03bf\u03c5)","owner":"anadigit","x":24.772809,"y":35.402133,"photo":"Crete_Moni_Attalis2","type":10,"zoom_level":13,"id":812,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/2\/gh251.jsp?obj_id=14783","hlink_EN":"","description":"\u0395\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd \u03bc\u03bf\u03bd\u03b1\u03c3\u03c4\u03b9\u03ba\u03cc \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03c3\u03b5 \u03c0\u03c1\u03bf\u03c6\u03c5\u03bb\u03b1\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b8\u03ad\u03c3\u03b7. \u0395\u03ba\u03c4\u03b9\u03bc\u03ac\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03b7 \u03bc\u03bf\u03bd\u03ae \u03b9\u03b4\u03c1\u03cd\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b7\u03bd \u03cc\u03c8\u03b9\u03bc\u03b7 \u0392\u03b5\u03bd\u03b5\u03c4\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 (16\u03bf\u03c2-17\u03bf\u03c2 \u03b1\u03b9\u03ce\u03bd\u03b1\u03c2).
\u03a4\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03af\u03ba\u03bb\u03b9\u03c4\u03bf\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03bc\u03b5 \u03c4\u03b1 \u03ba\u03bb\u03af\u03c4\u03b7 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b4\u03cd\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03b1 \u03c4\u03bf\u03be\u03c9\u03c4\u03ac \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03b1. \u0397 \u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03b9\u03ba\u03ae \u03c4\u03bf\u03c5 \u03bd\u03b1\u03bf\u03cd \u03ba\u03b1\u03b8\u03c1\u03b5\u03c6\u03c4\u03af\u03b6\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c6\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03ba\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03b7 \u03b4\u03b9\u03ac\u03c1\u03b8\u03c1\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b2\u03bf\u03b7\u03b8\u03b7\u03c4\u03b9\u03ba\u03ce\u03bd \u03ba\u03c4\u03b9\u03c1\u03af\u03c9\u03bd \u03c4\u03b7\u03bd \u03b1\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03ba\u03c4\u03b1\u03b8\u03bf\u03cd\u03bd \u03bf\u03bc\u03cc\u03ba\u03b5\u03bd\u03c4\u03c1\u03b1 \u03b3\u03cd\u03c1\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc, \u03bb\u03cc\u03b3\u03c9 \u03c4\u03b7\u03c2 \u03ba\u03bb\u03af\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b5\u03b4\u03ac\u03c6\u03bf\u03c5\u03c2. \u0397 \u03bc\u03af\u03be\u03b7 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ce\u03bd \u03b5\u03c0\u03b9\u03c1\u03c1\u03bf\u03ce\u03bd, \u03b4\u03c5\u03c4\u03b9\u03ba\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c0\u03b9\u03ba\u03ae\u03c2, \u03b5\u03af\u03bd\u03b1\u03b9 \u03c6\u03b1\u03bd\u03b5\u03c1\u03ae \u03c3\u03b5 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03c4\u03af\u03c3\u03bc\u03b1\u03c4\u03b1.","height":402,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u039b\u03b9\u03c3\u03c3\u03cc\u03c2
\u0391\u03c3\u03c0\u03bb\u03b7\u03c0\u03b9\u03b5\u03af\u03bf","owner":"AnaDigit","x":23.785638,"y":35.243638,"photo":"Crete_Lissos1","type":10,"zoom_level":12,"id":813,"hlink_GR":"","hlink_EN":"","description":"","height":399,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u039b\u03b9\u03c3\u03c3\u03cc\u03c2
\u0386\u03b3\u03b9\u03bf\u03c2 \u039a\u03ae\u03c1\u03c5\u03ba\u03bf\u03c2","owner":"AnaDigit","x":23.787569,"y":35.240413,"photo":"Crete_SOUGIA_Agios_Kyrikos","type":10,"zoom_level":14,"id":814,"hlink_GR":"","hlink_EN":"","description":"","height":399,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a3\u03b7\u03c4\u03b5\u03af\u03b1","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":26.109568,"y":35.207722,"photo":"Crete_SITIA_Dren","type":9,"zoom_level":12,"id":815,"hlink_GR":"http:\/\/www.sitia.gr","hlink_EN":"http:\/\/www.sitia.gr\/en","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0391\u03b6\u03bf\u03c1\u03b9\u03ac\u03c2","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":25.866882,"y":35.117907,"photo":"Crete_AZORIAS_Dren","type":10,"zoom_level":12,"id":816,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039a\u03b1\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03bf\u03c5
\u03c6\u03b1\u03c1\u03b1\u03b3\u03b3\u03b9\u03bf\u03cd \u03c4\u03bf\u03c5 \u03a7\u03b1","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":25.83697,"y":35.083884,"photo":"Crete_Canyoning_Dren","type":0,"zoom_level":13,"id":817,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":450},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0393\u03bf\u03c5\u03c1\u03bd\u03b9\u03ad\u03c2","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":25.792252,"y":35.109236,"photo":"Crete_GOURNIA_Dren","type":10,"zoom_level":15,"id":818,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03bf \u03bc\u03b9\u03bd\u03c9\u03b9\u03ba\u03cc \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc \u03c4\u03c9\u03bd \u0393\u03bf\u03c5\u03c1\u03bd\u03b9\u03ce\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03ba\u03b1\u03bb\u03c5\u03c6\u03b8\u03b5\u03af \u03ad\u03bd\u03b1\u03c2 \u03ba\u03b1\u03bb\u03ac \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c0\u03bf\u03bb\u03b5\u03bf\u03b4\u03bf\u03bc\u03b9\u03ba\u03cc\u03c2 \u03b9\u03c3\u03c4\u03cc\u03c2 \u03bc\u03b5 \u03bb\u03b9\u03b8\u03cc\u03c3\u03c4\u03c1\u03c9\u03c4\u03bf\u03c5\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c5\u03c2.","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03b9\u03bd\u03c9\u03b9\u03ba\u03ae \u03bf\u03b9\u03ba\u03af\u03b1
\u03c3\u03c4\u03bf \u03a7\u03b1\u03bc\u03ad\u03b6\u03b9","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":26.017686,"y":35.167037,"photo":"Crete_Chamezi_Dren","type":10,"zoom_level":13,"id":819,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03cc\u03c7\u03bb\u03bf\u03c2
\u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b7\u03c3\u03af","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":25.904089,"y":35.182191,"photo":"Crete_Moxlos_Dren","type":0,"zoom_level":13,"id":820,"hlink_GR":"","hlink_EN":"","description":"","height":582,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a3\u03b7\u03c4\u03b5\u03af\u03b1
\u039c\u03bf\u03bd\u03ae \u03a6\u03b5\u03bd\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7\u03c2","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":26.062275,"y":35.219608,"photo":"Crete_Moni_Faneromenis_Dren","type":9,"zoom_level":13,"id":821,"hlink_GR":"","hlink_EN":"","description":"","height":445,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03c5\u03c1\u03c3\u03af\u03bd\u03b7
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":25.946618,"y":35.1663,"photo":"Crete_MYRSINI_Dren1","type":9,"zoom_level":14,"id":822,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u039a\u03bf\u03c1\u03bd\u03ac\u03c1\u03bf\u03c5","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":25.947758,"y":35.177362,"photo":"Crete_PYRGOS_KORNAROU_Dren","type":10,"zoom_level":14,"id":823,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039a\u03bf\u03c1\u03bd\u03ac\u03c1\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03c4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf\u03c2 \u03c0\u03b5\u03c4\u03c1\u03cc\u03ba\u03c4\u03b9\u03c3\u03c4\u03bf\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03bc\u03b5 \u03cd\u03c8\u03bf\u03c2 12\u03bc \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c9\u03c2 \u03c0\u03b1\u03c1\u03b1\u03c4\u03b7\u03c1\u03b7\u03c4\u03ae\u03c1\u03b9\u03bf \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf \u03c4\u03b7\u03c2 \u0395\u03bd\u03b5\u03c4\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1\u03c2. \u0395\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03ce\u03c1\u03bf\u03c6\u03bf\u03c2, \u03bc\u03b5 \u03b1\u03bd\u03b5\u03be\u03ac\u03c1\u03c4\u03b7\u03c4\u03b7 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03b3\u03b9\u03b1 \u03ba\u03ac\u03b8\u03b5 \u03cc\u03c1\u03bf\u03c6\u03bf, \u03b5\u03bd\u03ce \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c0\u03bf\u03bb\u03b5\u03bc\u03af\u03c3\u03c4\u03c1\u03b5\u03c2. ","height":600,"width":400},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a7\u03b1\u03bc\u03ad\u03b6\u03b9","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":26.018974,"y":35.175246,"photo":"Crete_Xorio_Chamezi_Dren","type":9,"zoom_level":14,"id":824,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":400},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0391\u03bd\u03b5\u03b2\u03b1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2
\u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u0392\u03c1\u03bf\u03bd\u03c4\u03ac","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":25.85817,"y":35.108253,"photo":"Crete_Vrondas_Dren","type":0,"zoom_level":13,"id":825,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03bf\u03bd\u03ae \u0391\u03c1\u03ba\u03b1\u03b4\u03af\u03bf\u03c5","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.630233,"y":35.309486,"photo":"Crete_Moni_Arkadiou_Dren","type":10,"zoom_level":11,"id":826,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":534},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0395\u03bb\u03b5\u03cd\u03b8\u03b5\u03c1\u03bd\u03b1
\u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.676517,"y":35.32801,"photo":"Crete_arxea_Eleftherna3_Dren","type":10,"zoom_level":13,"id":827,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0395\u03bb\u03b5\u03cd\u03b8\u03b5\u03c1\u03bd\u03b1
\u03bc\u03bf\u03bd\u03cc\u03c4\u03bf\u03be\u03b7 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.673063,"y":35.329796,"photo":"Crete_arxea_Eleftherna1_Dren","type":10,"zoom_level":14,"id":828,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0395\u03bb\u03b5\u03cd\u03b8\u03b5\u03c1\u03bd\u03b1","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.673814,"y":35.333874,"photo":"Crete_arxea_Eleftherna2_Dren","type":10,"zoom_level":12,"id":829,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":400},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03b1\u03c1\u03b3\u03b1\u03c1\u03af\u03c4\u03b5\u03c2","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.685937,"y":35.339196,"photo":"Crete_Margarites1_Dren","type":9,"zoom_level":13,"id":830,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03b1\u03c1\u03b3\u03b1\u03c1\u03af\u03c4\u03b5\u03c2
\u0395\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf \u03ba\u03b5\u03c1\u03b1\u03bc\u03b9\u03ba\u03ae\u03c2","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.687911,"y":35.340666,"photo":"Crete_Margarites_Ergastirio_Dren","type":9,"zoom_level":14,"id":831,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0395\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.768335,"y":35.343292,"photo":"Crete_Episkopi1_Dren","type":9,"zoom_level":14,"id":832,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u0395\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.768592,"y":35.343957,"photo":"Crete_Episkopi2_Dren","type":9,"zoom_level":12,"id":833,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03bf\u03bd\u03ae \u0392\u03c9\u03c3\u03ac\u03ba\u03bf\u03c5","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.842192,"y":35.384658,"photo":"Crete_Moni_Vosakou1_Dren","type":9,"zoom_level":13,"id":834,"hlink_GR":"","hlink_EN":"","description":"","height":396,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c. \u0392\u03c9\u03c3\u03ac\u03ba\u03bf\u03c5
\u03bc\u03bd\u03b7\u03bc\u03b5\u03b9\u03b1\u03ba\u03ae \u03ba\u03c1\u03ae\u03bd\u03b7","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.842342,"y":35.385096,"photo":"Crete_Moni_Vosakou2_Dren","type":9,"zoom_level":15,"id":835,"hlink_GR":"","hlink_EN":"","description":"","height":433,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u0396\u03c9\u03bd\u03b9\u03b1\u03bd\u03ce\u03bd","owner":"\u0393. \u039d\u03c4\u03c1\u03b5\u03bd\u03bf\u03b3\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2","x":24.839145,"y":35.298191,"photo":"Crete_Spileo_Zonianon_Dren","type":73,"zoom_level":12,"id":836,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u039a\u03a1\u0397\u03a4\u0397
\u039c\u03c5\u03c1\u03c3\u03af\u03bd\u03b7
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03bd\u03c4\u03ce\u03bd\u03b9\u03bf\u03c2","owner":"AnaDigit","x":25.947788,"y":35.177184,"photo":"Crete_Mirsini_AgAntonios","type":9,"zoom_level":14,"id":837,"hlink_GR":"http:\/\/lasithitour.bpis.teicrete.gr\/religious\/map.php?page=map&lang=el&scrollto=info&type=mon&id=1106","hlink_EN":"","description":"\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03bd\u03c4\u03c9\u03bd\u03af\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac\u03b3\u03c1\u03b1\u03c6\u03b7 \u03bc\u03b5 \u03b1\u03b3\u03b9\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2 \u03ba\u03b1\u03bb\u03ae\u03c2 \u03c4\u03ad\u03c7\u03bd\u03b7\u03c2. \u0394\u03b9\u03b1\u03c4\u03b7\u03c1\u03b5\u03af\u03c4\u03b1\u03b9 \u03c7\u03ac\u03c1\u03b1\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 1677, \u03c0\u03bf\u03c5 \u03c6\u03ad\u03c1\u03b5\u03b9 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae \"\u0392\u03b9\u03c4\u03c3\u03ad\u03bd\u03c4\u03b6\u03bf\u03c2 \u039a\u03bf\u03c1\u03bd\u03ac\u03c1\u03bf\u03c2\", \u03c0\u03b9\u03b8\u03b1\u03bd\u03cc\u03c4\u03b1\u03c4\u03b1 \u03b1\u03bd\u03b1\u03c6\u03b5\u03c1\u03cc\u03bc\u03b5\u03bd\u03bf \u03c3\u03b5 \u03c3\u03c5\u03bd\u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03bf \u03c4\u03bf\u03c5 \u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03cd \u03c0\u03bf\u03b9\u03b7\u03c4\u03ae \u03c4\u03bf\u03c5 \u0395\u03c1\u03c9\u03c4\u03cc\u03ba\u03c1\u03b9\u03c4\u03bf\u03c5, \u03c0\u03bf\u03c5 \u03b5\u03af\u03c7\u03b5 \u03c0\u03b5\u03b8\u03ac\u03bd\u03b5\u03b9 \u03c0\u03bf\u03bb\u03cd \u03bd\u03c9\u03c1\u03af\u03c4\u03b5\u03c1\u03b1.","height":100,"width":180},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039c\u03b5\u03c3\u03ba\u03bb\u03ac-\u0396\u03bf\u03cd\u03c1\u03b2\u03b1","owner":"AnaDigit","x":23.9641,"y":35.386550839673,"photo":"K3II01511","type":450,"zoom_level":17,"id":4353,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":716},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039c\u03b5\u03c3\u03ba\u03bb\u03ac-\u0396\u03bf\u03cd\u03c1\u03b2\u03b1","owner":"AnaDigit","x":23.964922,"y":35.386753,"photo":"K3II01521","type":450,"zoom_level":17,"id":4354,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":786},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039c\u03b5\u03c3\u03ba\u03bb\u03ac-\u0396\u03bf\u03cd\u03c1\u03b2\u03b1","owner":"AnaDigit","x":23.962957,"y":35.390103,"photo":"K3II01541","type":450,"zoom_level":17,"id":4355,"hlink_GR":"","hlink_EN":"","description":"","height":733,"width":1000},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039c\u03b5\u03c3\u03ba\u03bb\u03ac-\u0396\u03bf\u03cd\u03c1\u03b2\u03b1","owner":"AnaDigit","x":23.961267,"y":35.393367,"photo":"K3II01561","type":450,"zoom_level":17,"id":4356,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039c\u03b5\u03c3\u03ba\u03bb\u03ac-\u0396\u03bf\u03cd\u03c1\u03b2\u03b1","owner":"AnaDigit","x":23.963738,"y":35.393293,"photo":"K3II01571","type":450,"zoom_level":17,"id":4357,"hlink_GR":"","hlink_EN":"","description":"","height":924,"width":1000},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039c\u03b5\u03c3\u03ba\u03bb\u03ac-\u0396\u03bf\u03cd\u03c1\u03b2\u03b1","owner":"AnaDigit","x":23.96223,"y":35.395337,"photo":"K3II01581","type":450,"zoom_level":17,"id":4358,"hlink_GR":"","hlink_EN":"","description":"","height":975,"width":1000},{"name":"\u03a7\u0391\u039d\u0399\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039c\u03b5\u03c3\u03ba\u03bb\u03ac-\u0396\u03bf\u03cd\u03c1\u03b2\u03b1","owner":"AnaDigit","x":23.970826864242,"y":35.391140367688,"photo":"K3II01532","type":450,"zoom_level":17,"id":4359,"hlink_GR":"","hlink_EN":"","description":"","height":843,"width":1000}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathListDivId'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathListDivId').innerHTML="
E4 Ξυλόσκαλο-καταφύγιο Καλέργη
E4 Κάτω Ζάκρος-Ζάκρος
E4 Λασίθι-Κασταμονίτσα
E4 Παπαγιαννάδες -Ζίρος
E4 Σελάκανο-Λασίθι
E4 Ζάκρος-Ζίρος
E4 Ελαφονήσι-Κουντούρα
Ε4 Κεφάλι-Χρυσοσκαλίτισσα
E4 Καστέλι Κισσάμου-Πολυρρήνεια
E4 Πολυρρήνεια-Σηρικάρι
Ε4 Σηρικάρι-Κεφάλι
E4 Χρυσοσκαλίτισσα-Ελαφονήσι
E4 Αγία Ρουμέλη-Σφακιά
E4 Κατσιβέλη-Ασκύφου
E4 Κατ. Καλλέργη-Κατσιβέλη
E4 Κουστογέρακο-Σούγια
Φαράγγι Σαμαριάς
E4 Σούγια-Αγία Ρουμέλη
E4 Ξυλόσκαλο-καταφύγιο Καλέργη
E4 Ξυλόσκαλο-Κουστογέρακο
E4 Κουντούρα-Παλαιόχωρα
E4 Παλαιόχωρα-Σούγια
E4 Άγιος Υάκινθος-Νίδα
E4 Ανώγεια-Άγιος Υάκινθος
E4 Καμάρες-Νίδα
E4 Ρούβας-Νίδα
E4 Φουρφουράς-Τίμιος Σταυρός
E4 Καμάρες-Τίμιος Σταυρός
E4 Νίδα-Τίμιος Σταυρός
E4 Πρίνος-Δάσος Ρούβα
E4 Ζρός-Δάσος Ρούβα
";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["E4_Crete"],pc:["E4_Crete"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_E4_Crete.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); }