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_O22 = new getAdventureCollection("O22",[{"id":16505,"author":"AnaDigit","name_GR":"\u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2: O22 \u0386\u03c3\u03ba\u03c1\u03b7-\u039e\u03b7\u03c1\u03bf\u03bd\u03bf\u03bc\u03ae","description_GR":"\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u0386\u03c3\u03ba\u03c1\u03b7\u03c2 \u03bc\u03b5 \u03c4\u03b7\u03bd \u039e\u03b7\u03c1\u03bf\u03bd\u03bf\u03bc\u03ae","path":"STEREA\/Sterea_Elikon_O22_Askri_Xironomi","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":2,"length":9387,"name_EN":"Elikonas: O22 Askri-Xironomi","description_EN":"Askri to Xironomi","ascent_time":175,"descent_time":175,"marker":"O22","level":9,"ascent":53,"descent":240,"maxelev":377,"minelev":183,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.07349 38.24946,23.11452 38.31377)","views":45,"millestones":"0,23.1113878,38.3140584#1,23.1133143,38.3055360#2,23.1128733,38.2977637#3,23.1098213,38.2897954#4,23.1046469,38.2829618#5,23.1024081,38.2762001#6,23.0924362,38.2719240#7,23.0892614,38.2649251#8,23.0838958,38.2578900#9.4,23.0743091,38.2491501","x":23.0967211,"y":38.273225,"coor":[[23.1113878,38.3140584],[23.1114229,38.3136171],[23.1116693,38.3120869],[23.111697,38.3116906],[23.1114756,38.3101478],[23.1115532,38.3084722],[23.1116887,38.3076801],[23.1121569,38.3068005],[23.1123417,38.3066577],[23.1128244,38.3064631],[23.1130212,38.3062663],[23.1133751,38.3053858],[23.1134914,38.3048459],[23.1134161,38.3035116],[23.1138048,38.3025863],[23.113878,38.3019469],[23.1136077,38.3016024],[23.1130591,38.3015713],[23.1125354,38.301378],[23.1116092,38.3004248],[23.1122113,38.2995281],[23.1124804,38.2990255],[23.1125644,38.2987017],[23.1130149,38.2973037],[23.1130292,38.2970695],[23.1129138,38.2960097],[23.1126872,38.2945435],[23.1126679,38.2942549],[23.1127627,38.2939853],[23.1130488,38.2931088],[23.1129143,38.2925039],[23.112791,38.2923047],[23.1122551,38.2918861],[23.1110072,38.2910656],[23.1104886,38.2904578],[23.1091105,38.2890775],[23.1081029,38.2882498],[23.1077287,38.2879946],[23.1072617,38.2878468],[23.1061998,38.2877306],[23.1058478,38.2875297],[23.1046399,38.2862588],[23.1044557,38.2854282],[23.1042556,38.2849671],[23.1042347,38.2838765],[23.1047635,38.2827089],[23.1049073,38.2821783],[23.1050824,38.280954],[23.1055649,38.2798311],[23.1055617,38.2791642],[23.1058266,38.2780667],[23.1058943,38.2769452],[23.103624,38.2766485],[23.1027813,38.2763807],[23.1016505,38.2758314],[23.0982645,38.2741472],[23.0967211,38.273225],[23.0946012,38.272704],[23.0923499,38.2718936],[23.0927453,38.2713559],[23.0928838,38.2712488],[23.0930785,38.2712233],[23.0932612,38.2712382],[23.0933419,38.2711848],[23.0934248,38.2709511],[23.0933572,38.2708695],[23.0933486,38.2706441],[23.0931798,38.2704265],[23.0927603,38.2701529],[23.0927284,38.2699544],[23.0924159,38.2693481],[23.0922577,38.2692027],[23.0917234,38.2689643],[23.0915685,38.2685485],[23.0900884,38.2680684],[23.0899105,38.2678688],[23.0899466,38.2668056],[23.0898102,38.2658312],[23.08926,38.2650339],[23.0892619,38.2639705],[23.0893811,38.2635749],[23.0893758,38.2630882],[23.0891961,38.2628344],[23.089014,38.2627699],[23.0889474,38.2626072],[23.0885731,38.262379],[23.0879515,38.2618154],[23.0877964,38.2614176],[23.0875138,38.2611631],[23.0874477,38.2609643],[23.0875132,38.2602979],[23.0873573,38.2599723],[23.0858926,38.2591903],[23.0854385,38.258948],[23.0847584,38.2584921],[23.0845439,38.2582831],[23.0839536,38.2579541],[23.0835591,38.2575184],[23.0821588,38.2570749],[23.0816034,38.25671],[23.0807737,38.2563431],[23.0795197,38.2560809],[23.0784974,38.2557529],[23.0770777,38.2541376],[23.0767563,38.253342],[23.0759255,38.2521639],[23.0753021,38.2517534],[23.0749429,38.2512414],[23.0750109,38.2511158],[23.0748534,38.250389],[23.0748106,38.2501544],[23.0743091,38.2491501]]},{"id":16506,"author":"AnaDigit","name_GR":"\u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2: O22 \u0394\u03af\u03c3\u03c4\u03bf\u03bc\u03bf-\u039a\u03c5\u03c1\u03b9\u03ac\u03ba\u03b9","description_GR":"\u039c\u03b9\u03b1 \u03ba\u03b1\u03bb\u03ae \u03b5\u03c5\u03ba\u03b1\u03b9\u03c1\u03af\u03b1 \u03b5\u03c0\u03af\u03c3\u03ba\u03b5\u03c8\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","path":"STEREA\/Sterea_Elikon_O22_Distomo_Kyriaki","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":13533,"name_EN":"Elikonas: O22 Distomo-Kyriaki","description_EN":"A chance to visit Osios Loukas monastery","ascent_time":435,"descent_time":425,"marker":"O22","level":9,"ascent":696,"descent":379,"maxelev":765,"minelev":287,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.66737 38.35268,22.78875 38.42927)","views":61,"millestones":"0,22.6673664,38.4292728#1,22.6784331,38.4271771#2,22.6883829,38.4238647#3,22.6986811,38.4206263#4,22.7076203,38.4153680#5,22.7151860,38.4106075#6,22.7245794,38.4062003#7,22.7344256,38.4021992#8,22.7421790,38.3977802#9,22.7475337,38.3970075#10,22.7521332,38.3912711#11,22.7488271,38.3843378#12,22.7575787,38.3823382#13,22.7614954,38.3770010#14,22.7660333,38.3696887#15,22.7734601,38.3664514#16,22.7818331,38.3686812#17,22.7869662,38.3610759#13.5,22.7882442,38.3526738","x":22.75049,"y":38.3854815,"coor":[[22.6673664,38.4292728],[22.6685221,38.4290922],[22.6699339,38.428946],[22.6706647,38.4288237],[22.6737135,38.4283716],[22.6746789,38.4282023],[22.6758984,38.4276618],[22.6779495,38.4273245],[22.6786868,38.4270985],[22.6796715,38.4264969],[22.6808544,38.4256451],[22.6825223,38.4246365],[22.6831781,38.4244817],[22.6842967,38.4240707],[22.6848749,38.4237708],[22.685048,38.4237006],[22.6856082,38.4235852],[22.6865263,38.4234964],[22.6882609,38.4238583],[22.6887645,38.4238819],[22.6908881,38.4239598],[22.691266,38.4239685],[22.6918303,38.4238036],[22.6930668,38.4232046],[22.6949361,38.4224504],[22.6972264,38.4212143],[22.7041026,38.4184698],[22.7047376,38.4181885],[22.7056412,38.4176217],[22.7062577,38.4170968],[22.7082844,38.4145599],[22.7094007,38.413297],[22.709746,38.4128818],[22.7099086,38.4127574],[22.7103587,38.4125641],[22.7106256,38.4123688],[22.710792,38.4121498],[22.7109892,38.4120078],[22.7115269,38.4114009],[22.7117892,38.410372],[22.7120982,38.4105691],[22.7129203,38.4107133],[22.7132503,38.4108341],[22.7134916,38.4107917],[22.7140727,38.4109603],[22.714791,38.4106978],[22.7162517,38.4103534],[22.7179849,38.410138],[22.7181758,38.4099734],[22.7188826,38.4099541],[22.7197077,38.4092782],[22.7205418,38.4089449],[22.7210793,38.4087885],[22.7226227,38.4080889],[22.72354,38.407378],[22.7238778,38.4070573],[22.7247088,38.406039],[22.7254334,38.4054746],[22.7272248,38.4047551],[22.7279058,38.4043074],[22.7289149,38.4035794],[22.7301707,38.4031514],[22.7319047,38.402634],[22.7324783,38.4025771],[22.7334951,38.4026332],[22.7339553,38.402512],[22.735172,38.4016961],[22.7356836,38.401251],[22.7361112,38.4010303],[22.7366912,38.400604],[22.7378694,38.4000219],[22.7379994,38.399789],[22.7380531,38.399339],[22.7381698,38.3992141],[22.7384121,38.3991086],[22.738974,38.3990605],[22.7398401,38.3993042],[22.7405977,38.3992042],[22.7415571,38.3993496],[22.7418899,38.3993082],[22.742135,38.3990404],[22.7423384,38.398538],[22.7422784,38.3980327],[22.7420703,38.3974897],[22.7421877,38.3973198],[22.7423709,38.3973217],[22.7437037,38.3977235],[22.744538,38.3978226],[22.7448267,38.3976815],[22.7450644,38.3971794],[22.7452393,38.397001],[22.7455041,38.3969137],[22.7462458,38.3970659],[22.7465901,38.3970245],[22.7473298,38.3966269],[22.7474128,38.3964655],[22.7473432,38.3963296],[22.7475372,38.3963677],[22.7476434,38.3965176],[22.7467323,38.3975532],[22.7465826,38.3976057],[22.7462626,38.3975662],[22.7461704,38.3976012],[22.7465098,38.397695],[22.7467855,38.3976439],[22.7475409,38.3970031],[22.7480029,38.3967737],[22.7481433,38.396604],[22.7482522,38.3962627],[22.7483118,38.3962093],[22.7482376,38.3958661],[22.7483298,38.395831],[22.7484418,38.3959764],[22.7485334,38.3959774],[22.7485804,38.3959058],[22.7485139,38.3957789],[22.7485954,38.3956987],[22.7485524,38.395536],[22.7483037,38.3953531],[22.7484389,38.3948138],[22.7483956,38.3946692],[22.7482809,38.3945959],[22.7484128,38.3942548],[22.7485622,38.3942204],[22.7485773,38.3940133],[22.7488347,38.3936916],[22.7489721,38.3936931],[22.7491813,38.3935151],[22.7496632,38.3934571],[22.7497463,38.3932868],[22.7499527,38.393271],[22.7499784,38.393109],[22.7501421,38.3929125],[22.7503381,38.3928335],[22.7505779,38.3928721],[22.7506363,38.3924717],[22.7507304,38.3923285],[22.7504177,38.3918656],[22.7505356,38.3917542],[22.7508812,38.3916317],[22.7514047,38.3911506],[22.7516691,38.3910904],[22.7521354,38.3912756],[22.7518984,38.3908044],[22.751678,38.390365],[22.75136,38.3888837],[22.7515329,38.3881466],[22.7514961,38.3876235],[22.7511404,38.3870069],[22.7515808,38.3866962],[22.7518905,38.3866635],[22.7521795,38.3865043],[22.75049,38.3854815],[22.7500241,38.3852783],[22.7495213,38.3852189],[22.7492325,38.3850986],[22.7491656,38.3850573],[22.7489203,38.3846762],[22.7487913,38.3841882],[22.7492124,38.3829401],[22.7496368,38.3827734],[22.7499025,38.382632],[22.7501321,38.3825984],[22.7500968,38.3826521],[22.750632,38.3825497],[22.7506766,38.3825592],[22.7513622,38.3827017],[22.7517404,38.3826787],[22.7520064,38.3825193],[22.7525016,38.3823533],[22.7534631,38.3823636],[22.75406,38.3822708],[22.7544941,38.3823295],[22.7545504,38.3823841],[22.7552935,38.3824461],[22.7556955,38.3823692],[22.7567937,38.3830928],[22.7568406,38.3830888],[22.7573997,38.382536],[22.7574994,38.3823929],[22.7578354,38.3821621],[22.7578714,38.3820634],[22.7577716,38.3818731],[22.7573538,38.3815352],[22.7573331,38.3814088],[22.757441,38.3811216],[22.7575561,38.3804199],[22.7576801,38.3804077],[22.7578762,38.3805675],[22.758036,38.3805962],[22.7586795,38.3804588],[22.7587387,38.3803423],[22.7589451,38.3803265],[22.7589802,38.3802818],[22.7590483,38.3803186],[22.7590841,38.3802288],[22.7593018,38.3802221],[22.7593958,38.3800789],[22.7594109,38.3798628],[22.759573,38.3797564],[22.7599409,38.3796701],[22.7599443,38.3794719],[22.7600835,38.3793653],[22.7602267,38.3790243],[22.7602545,38.3787362],[22.7606028,38.3784515],[22.7607102,38.3781913],[22.7609276,38.3781396],[22.7611024,38.3781054],[22.7615485,38.3781281],[22.7621641,38.3782788],[22.7620346,38.3778178],[22.7618648,38.377433],[22.7618386,38.3771444],[22.761494,38.3770236],[22.7615106,38.3767174],[22.7610846,38.3761902],[22.7609308,38.3758101],[22.7615837,38.3746364],[22.7616919,38.3743312],[22.7621639,38.3741739],[22.7622357,38.3739944],[22.762339,38.3739775],[22.7625614,38.3736915],[22.7628042,38.3735499],[22.7629681,38.3733353],[22.7630306,38.3731107],[22.7632539,38.3727706],[22.7638932,38.3722006],[22.7640699,38.371905],[22.7643372,38.3716736],[22.7645833,38.3713337],[22.7647042,38.3710826],[22.7650937,38.3702667],[22.7655005,38.3699015],[22.7655168,38.3697439],[22.7656951,38.3696917],[22.7658407,38.3696707],[22.7663779,38.3697215],[22.7669538,38.3695112],[22.7672631,38.3694965],[22.7677007,38.3693389],[22.7685492,38.3692576],[22.7688719,38.3691259],[22.769412,38.3690054],[22.7697713,38.3687388],[22.7700936,38.368634],[22.7702339,38.3686715],[22.7705996,38.3684951],[22.7711851,38.3683931],[22.7720781,38.3683845],[22.7723394,38.3685044],[22.7729011,38.3684562],[22.7733564,38.3686051],[22.7734487,38.368561],[22.7737704,38.3685779],[22.7737881,38.3682086],[22.7735773,38.3678099],[22.7733507,38.3669965],[22.77332,38.3667799],[22.7733993,38.3668257],[22.7734231,38.3667719],[22.7733613,38.3663657],[22.7744893,38.3673508],[22.7760671,38.3681423],[22.7765789,38.3683369],[22.7771939,38.3685236],[22.7783588,38.3686799],[22.7787272,38.3685576],[22.7792771,38.3685272],[22.7803937,38.3688363],[22.7806351,38.3687757],[22.7806911,38.3688484],[22.7805372,38.3691532],[22.780688,38.3690376],[22.7807449,38.3690562],[22.78057,38.3692436],[22.7804851,38.3695311],[22.780717,38.3693533],[22.7811667,38.3691597],[22.7813272,38.3691434],[22.781955,38.3685641],[22.7826517,38.3672917],[22.7833146,38.3666677],[22.783537,38.3663726],[22.7841737,38.3645769],[22.7842807,38.3636588],[22.784496,38.3631023],[22.7847167,38.3627576],[22.7857979,38.3624444],[22.7863914,38.3618558],[22.7868999,38.3612212],[22.7875884,38.3597413],[22.7879411,38.3591863],[22.7885254,38.3574981],[22.788077,38.3569347],[22.7878164,38.3560849],[22.7878806,38.3547248],[22.7877133,38.3541823],[22.7879736,38.3536714],[22.7886139,38.3530201],[22.7887442,38.3528232],[22.7886999,38.3527326],[22.7884251,38.3527388],[22.7882442,38.3526738]]},{"id":16507,"author":"AnaDigit","name_GR":"\u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2: O22 \u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2-\u0391\u03b3\u03af\u03b1 \u0386\u03bd\u03bd\u03b1","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u039c\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u039b\u03bf\u03cd\u03c4\u03c3\u03b1\u03c2","path":"STEREA\/Sterea_Elikon_O22_Elikonas_AgiaAnna","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":12444,"name_EN":"Elikonas: O22 Elikonas-Aghia Ana","description_EN":"Cossing Megali Loutsa massif","ascent_time":295,"descent_time":300,"marker":"O22","level":9,"ascent":451,"descent":576,"maxelev":1197,"minelev":664,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.84061 38.31643,22.90465 38.36651)","views":99,"millestones":"0,22.8406212,38.3657344#1,22.8476373,38.3625952#2,22.8471814,38.3547541#3,22.8542388,38.3487811#4,22.8601693,38.3445999#5,22.8621796,38.3384596#6,22.8599346,38.3321824#7,22.8647771,38.3269349#8,22.8698725,38.3206468#9,22.8788416,38.3233014#10,22.8867518,38.3285585#11,22.8964017,38.3262804#12,22.9033229,38.3193293#12.4,22.9046493,38.3164240","x":22.8590314,"y":38.3345942,"coor":[[22.8406212,38.3657344],[22.841291,38.3660835],[22.8416752,38.3663937],[22.8420778,38.3662715],[22.8429779,38.3665328],[22.8435938,38.3665388],[22.8443995,38.3665513],[22.8445139,38.3665524],[22.8457951,38.3653214],[22.8458367,38.3649974],[22.8462235,38.3644244],[22.8465935,38.3641937],[22.8469259,38.364161],[22.8475947,38.3638521],[22.8479892,38.3635136],[22.8482314,38.3633988],[22.8481982,38.3633264],[22.8480546,38.3633159],[22.8479656,38.3631529],[22.847784,38.3630609],[22.8475558,38.3630136],[22.8476559,38.3624739],[22.8474446,38.3620843],[22.8471996,38.3619512],[22.8468367,38.3617404],[22.8466455,38.3615222],[22.8463354,38.3608703],[22.8460406,38.3606962],[22.8459525,38.3604791],[22.8457257,38.3603416],[22.84558,38.360151],[22.8455482,38.3592675],[22.8456954,38.3586471],[22.8455075,38.3582307],[22.8455704,38.3578709],[22.8454969,38.3574556],[22.8455565,38.357303],[22.8457305,38.3571605],[22.8456545,38.3568984],[22.8457165,38.3566016],[22.8456621,38.3563983],[22.8458283,38.3560215],[22.8462491,38.3554669],[22.8469085,38.3550228],[22.8471131,38.354795],[22.8476793,38.3544581],[22.8478596,38.3539101],[22.8477828,38.3537021],[22.8479556,38.3536317],[22.8481309,38.3533991],[22.8481946,38.3531474],[22.8484964,38.35288],[22.8485863,38.3526691],[22.8487585,38.3526348],[22.8490287,38.3521958],[22.8497467,38.3516622],[22.8497605,38.3515091],[22.8500303,38.3510972],[22.8500577,38.3508091],[22.8501747,38.350648],[22.8511101,38.3501165],[22.8513742,38.350056],[22.8519406,38.3497011],[22.851937,38.3495658],[22.8520659,38.3493779],[22.8523542,38.3492365],[22.8533901,38.3488591],[22.8536193,38.3488343],[22.8538588,38.3488907],[22.8538599,38.3488186],[22.8539753,38.3487567],[22.8543867,38.3487968],[22.8546744,38.3486914],[22.8548944,38.3485314],[22.8553074,38.3484633],[22.8556953,38.3485392],[22.8562072,38.3487334],[22.8565513,38.3486827],[22.8568821,38.3487535],[22.8569993,38.3487997],[22.8570242,38.3486738],[22.8568794,38.3484201],[22.856908,38.3480599],[22.8567505,38.3478871],[22.8567532,38.3477159],[22.8566083,38.3474712],[22.8568424,38.34641],[22.8573396,38.3460814],[22.8574793,38.3459296],[22.8575159,38.3457858],[22.8577361,38.3456077],[22.8581244,38.3456565],[22.8587657,38.3456267],[22.8592759,38.3451991],[22.8596906,38.3450229],[22.8605638,38.3447971],[22.8603253,38.3446866],[22.8600283,38.3446477],[22.8603964,38.3445251],[22.8608092,38.344475],[22.8606432,38.3441129],[22.8607369,38.3439787],[22.8618769,38.3435211],[22.8620965,38.3433791],[22.8623882,38.3430214],[22.8629304,38.3427383],[22.8630362,38.3425591],[22.8629826,38.3423243],[22.8634454,38.3420043],[22.8636349,38.3415916],[22.8641219,38.3411818],[22.8641243,38.3410286],[22.8642764,38.3408138],[22.8641609,38.3401458],[22.863993,38.3399098],[22.8636657,38.3396183],[22.8637059,38.3392402],[22.8631576,38.3391808],[22.8629531,38.3390887],[22.8626856,38.3386355],[22.8627112,38.3384645],[22.86255,38.338526],[22.8624024,38.3384525],[22.8620132,38.3384668],[22.8618658,38.3383752],[22.8614666,38.3382992],[22.8609448,38.3380058],[22.8602704,38.3379632],[22.8597737,38.3375348],[22.8597206,38.3372729],[22.8598107,38.3373639],[22.8598908,38.3373647],[22.8601009,38.3370964],[22.8600131,38.3368612],[22.859985,38.3364644],[22.8598505,38.3362829],[22.8598307,38.3360844],[22.8596038,38.3359651],[22.859165,38.3354922],[22.8590102,38.3351482],[22.8587948,38.33502],[22.8587407,38.3348888],[22.8587774,38.3347359],[22.8588575,38.3347367],[22.8589404,38.3345573],[22.8590314,38.3345942],[22.859388,38.3344715],[22.8597474,38.3341686],[22.8596873,38.3336273],[22.8595986,38.3334462],[22.8594962,38.3334092],[22.8595207,38.3333013],[22.8594301,38.3332463],[22.8593302,38.3330471],[22.85952,38.3326163],[22.8598909,38.3323135],[22.8599749,38.332062],[22.8596775,38.3320591],[22.8592945,38.3316769],[22.8592952,38.3316319],[22.8593976,38.3316689],[22.85929,38.3312353],[22.8593582,38.330533],[22.8591154,38.3299629],[22.8592212,38.3297837],[22.8595576,38.3294896],[22.8607684,38.328884],[22.8614432,38.3288906],[22.8615828,38.3287477],[22.8620554,38.328518],[22.8622187,38.3283213],[22.862621,38.3281991],[22.862842,38.3279669],[22.8631877,38.327808],[22.8632703,38.3276917],[22.863406,38.3277921],[22.8636681,38.3278578],[22.8641949,38.3278268],[22.8647113,38.3277237],[22.8649896,38.327483],[22.8648223,38.3270218],[22.8646558,38.3266958],[22.8645871,38.3259651],[22.8643185,38.325584],[22.8642887,38.3252954],[22.8642513,38.3248309],[22.8644156,38.3245621],[22.8643632,38.3245075],[22.8647578,38.3239616],[22.8653174,38.3234038],[22.865378,38.3231881],[22.8658528,38.3228142],[22.8659446,38.3227971],[22.866217,38.3229349],[22.8665049,38.3228115],[22.8665987,38.3226682],[22.8666027,38.3225015],[22.8670887,38.3221457],[22.867184,38.3219033],[22.8672879,38.3218412],[22.8675614,38.321907],[22.8680215,38.3217492],[22.8683264,38.3212655],[22.8687043,38.3209447],[22.8694725,38.320826],[22.8697522,38.32068],[22.8701083,38.3205843],[22.8703027,38.3205861],[22.8712247,38.3208834],[22.8713263,38.3209745],[22.8720676,38.3211168],[22.872813,38.3209978],[22.873018,38.3210538],[22.8732786,38.3212186],[22.8738724,38.3212873],[22.8742045,38.3212635],[22.8745807,38.3213482],[22.8750163,38.3212893],[22.8752314,38.3214356],[22.8753299,38.3217249],[22.8755115,38.3218167],[22.8753827,38.3220048],[22.8758355,38.3223155],[22.8762131,38.3230491],[22.8763275,38.3230502],[22.8765585,38.3229082],[22.8766401,38.3228099],[22.8766659,38.3226209],[22.8767693,38.3225948],[22.8776785,38.322982],[22.878041,38.3232108],[22.8784968,38.3233233],[22.8787951,38.3232721],[22.879203,38.3235283],[22.8797419,38.3234433],[22.8803356,38.3235211],[22.8806743,38.3238127],[22.881015,38.3239782],[22.8813628,38.3244231],[22.8815117,38.3244065],[22.8816111,38.3246417],[22.8817718,38.3246072],[22.8822295,38.3247378],[22.8825607,38.324777],[22.8829353,38.3249608],[22.8831721,38.3251883],[22.8832592,38.3254775],[22.8833882,38.3258302],[22.8836018,38.3260756],[22.883885,38.3262585],[22.8843855,38.3268851],[22.8848855,38.3271061],[22.8849637,38.3272331],[22.8854383,38.3274764],[22.8856526,38.3276767],[22.8857408,38.3278938],[22.8857027,38.3281368],[22.886099,38.3284109],[22.886453,38.3284503],[22.8868171,38.3285799],[22.8870309,38.3288163],[22.8875323,38.3289472],[22.8879506,38.3292756],[22.8883814,38.3294599],[22.8889958,38.3294928],[22.8891568,38.3294402],[22.8893496,38.3295502],[22.8895209,38.3295698],[22.8901543,38.3292965],[22.8905651,38.3293724],[22.8926152,38.3284726],[22.8967045,38.3260644],[22.8984591,38.3250265],[22.8988775,38.3246429],[22.9001944,38.3230421],[22.9006878,38.3221861],[22.9007234,38.3220963],[22.900893,38.3217329],[22.9014799,38.3210085],[22.9022833,38.3200697],[22.9029889,38.3195536],[22.9032344,38.3194883],[22.9035402,38.3189324],[22.9038062,38.3183131],[22.904241,38.3176368],[22.9043698,38.3174397],[22.9045731,38.3170451],[22.90463,38.3168969],[22.9046448,38.3166718],[22.9046454,38.3166357],[22.9046493,38.316424]]},{"id":16508,"author":"AnaDigit","name_GR":"\u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2: O22 \u039a\u03c5\u03c1\u03b9\u03ac\u03ba\u03b9-\u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u039c\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u039b\u03bf\u03cd\u03c4\u03c3\u03b1\u03c2","path":"STEREA\/Sterea_Elikon_O22_Kyriaki_Elikonas","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":8262,"name_EN":"Elikonas: O22 Kyriaki-Elikonas","description_EN":"Cossing Megali Loutsa massif","ascent_time":190,"descent_time":190,"marker":"O22","level":9,"ascent":395,"descent":336,"maxelev":1121,"minelev":743,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.78605 38.35321,22.84082 38.36928)","views":65,"millestones":"0,22.7882420,38.3526738#1,22.7871072,38.3607917#2,22.7900421,38.3654528#3,22.8006297,38.3659482#4,22.8072275,38.3694524#5,22.8147906,38.3645997#6,22.8239094,38.3662240#7,22.8324413,38.3662596#8.3,22.8406202,38.3657344","x":22.8165257,"y":38.3641014,"coor":[[22.788242,38.3526738],[22.788423,38.3527388],[22.7886978,38.3527326],[22.788742,38.3528232],[22.7886118,38.3530201],[22.7879715,38.3536713],[22.7877112,38.3541823],[22.7878781,38.3547248],[22.7878143,38.3560849],[22.7880748,38.3569347],[22.7885232,38.3574981],[22.7879389,38.3591862],[22.7875863,38.3597413],[22.7868978,38.3612212],[22.7863893,38.3618557],[22.78637,38.3630766],[22.786142,38.3637051],[22.7862534,38.3638865],[22.7863026,38.364243],[22.7868145,38.3644285],[22.7871163,38.3648642],[22.7873314,38.3650106],[22.7874688,38.365003],[22.7876581,38.3646355],[22.7879141,38.3643858],[22.7882327,38.3644972],[22.7884056,38.3644269],[22.7886707,38.3636276],[22.7890415,38.364046],[22.7901821,38.3656619],[22.7907008,38.3661268],[22.7916336,38.3664789],[22.7923179,38.3666301],[22.7929875,38.3666956],[22.7947912,38.3669845],[22.7970229,38.3669444],[22.7980562,38.3667567],[22.7997471,38.3662513],[22.8001597,38.3662195],[22.801015,38.3657236],[22.8019106,38.3655525],[22.8029132,38.3658331],[22.8032181,38.3660886],[22.8046412,38.3665537],[22.8052011,38.3666134],[22.8064527,38.3663739],[22.807059,38.3663981],[22.8072409,38.366472],[22.8076433,38.3670619],[22.8077905,38.3678564],[22.806969,38.3690917],[22.8069302,38.3693616],[22.8070546,38.369453],[22.8080506,38.3694451],[22.8081673,38.3695049],[22.8088958,38.369278],[22.8095587,38.3693388],[22.8098126,38.3692152],[22.8103042,38.369031],[22.8106185,38.3687097],[22.8107973,38.368279],[22.8110406,38.3681012],[22.8113093,38.3677705],[22.8112,38.366751],[22.8113189,38.3662836],[22.811588,38.3659259],[22.8126122,38.3655938],[22.8128293,38.365614],[22.8133426,38.3652227],[22.8135476,38.3650896],[22.8139957,38.364986],[22.8143616,38.3650077],[22.8145958,38.3646857],[22.8149302,38.3645358],[22.8151511,38.3643218],[22.8154135,38.3643785],[22.8154711,38.3645503],[22.8157532,38.364445],[22.8161928,38.3641611],[22.8165257,38.3641014],[22.8170102,38.3638719],[22.8175842,38.3637696],[22.817919,38.3635927],[22.8187334,38.3634838],[22.8193304,38.363661],[22.8195094,38.3639152],[22.8200781,38.3641372],[22.8205021,38.3641054],[22.8211635,38.3642562],[22.8215183,38.3642598],[22.8217545,38.3645145],[22.8219925,38.3646611],[22.8220477,38.3647878],[22.8221162,38.3647975],[22.8221256,38.3649238],[22.8222521,38.364889],[22.8225831,38.3649464],[22.8232619,38.3654398],[22.8236521,38.3660836],[22.8241172,38.3663406],[22.8244157,38.3662895],[22.8246013,38.3661382],[22.8247832,38.3662121],[22.8253581,38.3660556],[22.8254838,38.3660659],[22.8257863,38.3657625],[22.8263028,38.3656776],[22.8267636,38.365493],[22.8275514,38.3649061],[22.8279866,38.3648924],[22.8283053,38.3650037],[22.8286102,38.3652591],[22.829213,38.3654994],[22.8293245,38.3656808],[22.8292536,38.3658242],[22.8292737,38.3659957],[22.8295058,38.3657997],[22.8295511,38.3658272],[22.8296703,38.366243],[22.8301278,38.3662655],[22.8302547,38.3662037],[22.8304606,38.3662148],[22.8312542,38.3659794],[22.8313444,38.3660614],[22.8313314,38.3661604],[22.8315711,38.3661988],[22.831738,38.3664979],[22.8318176,38.3665347],[22.8321063,38.3663754],[22.8322583,38.3661786],[22.8323269,38.3661793],[22.8327909,38.3665084],[22.8327019,38.3677782],[22.8327791,38.3679592],[22.8331072,38.3681967],[22.8332627,38.3684957],[22.8336263,38.3686615],[22.8339242,38.3686464],[22.8340398,38.3685755],[22.8354524,38.3682831],[22.8355224,38.3682027],[22.836028,38.3680816],[22.8366059,38.3677359],[22.837076,38.3676865],[22.8373923,38.367658],[22.8376309,38.3677686],[22.838256,38.3676891],[22.83844,38.3676369],[22.8388104,38.3673792],[22.8395906,38.3672608],[22.8397842,38.367123],[22.840327,38.3666688],[22.8396915,38.36632],[22.8396614,38.3662116],[22.8395187,38.3658317],[22.8398054,38.3657985],[22.8401593,38.365856],[22.8406202,38.3657344]]},{"id":16574,"author":"AnaDigit","name_GR":"\u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1\u03c2: O22 \u039c. \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b5\u03ba\u03c4\u03b1\u03c1\u03af\u03bf\u03c5-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","path":"STEREA\/Sterea_Kitheronas_O22_AgNektarios_refuge","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":12795,"name_EN":"Kitheronas: O22 AgNektarios mon. - Kitheronas refuge","description_EN":"Kitheronas traverse","ascent_time":320,"descent_time":285,"marker":"O22","level":9,"ascent":1217,"descent":403,"maxelev":1401,"minelev":264,"link_logo":"KTH_144","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.kitheronas","pdf_link":"","bbox":"LINESTRING(23.21095 38.18232,23.28568 38.22096)","views":44,"millestones":"0,23.2109510,38.2209620#1,23.2147408,38.2134912#2,23.2221110,38.2077747#3,23.2294662,38.2040248#4,23.2354377,38.1994229#5,23.2305421,38.1920983#6,23.2236529,38.1899675#7,23.2337577,38.1865996#8,23.2393085,38.1849455#9,23.2492286,38.1846373#10,23.2598813,38.1841836#11,23.2704009,38.1827086#12,23.2801038,38.1841287#12.8,23.2856702,38.1833587","x":23.2314228,"y":38.1873782,"coor":[[23.210951,38.220962],[23.2111507,38.2201207],[23.2114501,38.2192711],[23.2116111,38.219173],[23.2123157,38.218254],[23.2115761,38.2179877],[23.2117961,38.2174754],[23.212002,38.2163953],[23.2124606,38.2162362],[23.2131741,38.2157543],[23.2134285,38.2154676],[23.2138006,38.2148573],[23.2145047,38.2141771],[23.214598,38.2139974],[23.2146361,38.2136372],[23.2147858,38.2134309],[23.2155121,38.2128049],[23.2157766,38.2126445],[23.2158244,38.2124465],[23.2160783,38.2122049],[23.2168122,38.2119394],[23.2171111,38.2117611],[23.2173079,38.2115101],[23.2169438,38.2113815],[23.2168887,38.2111919],[23.2172239,38.2108246],[23.2174079,38.2107087],[23.2184739,38.2103553],[23.2189907,38.2100974],[23.2195461,38.2094251],[23.2197531,38.2093003],[23.2197792,38.2089941],[23.2202861,38.2085829],[23.2208374,38.2082982],[23.2220533,38.2078196],[23.2223297,38.2076051],[23.2227816,38.2069952],[23.2229537,38.2069243],[23.2233643,38.2069721],[23.2235366,38.2068831],[23.2236343,38.2062889],[23.2239013,38.2058851],[23.2238014,38.2056141],[23.2240115,38.2051829],[23.224298,38.2050947],[23.2246404,38.2051149],[23.2246531,38.2049979],[23.2250332,38.204694],[23.2251133,38.2046855],[23.2253628,38.2048493],[23.2258204,38.2047803],[23.2258785,38.2046905],[23.2258594,38.2043299],[23.2263638,38.204153],[23.226401,38.2038829],[23.2265409,38.2036134],[23.2275799,38.2036383],[23.2280114,38.2038754],[23.2285938,38.2038883],[23.2290604,38.2040445],[23.2303631,38.203981],[23.2312179,38.2040497],[23.2314005,38.2040599],[23.2322807,38.2039936],[23.2330565,38.2040707],[23.2337883,38.2039944],[23.2345013,38.2035304],[23.2353115,38.203387],[23.2355591,38.2026496],[23.2355739,38.2023252],[23.2354961,38.2021174],[23.235577,38.2020278],[23.2357182,38.2014925],[23.2354891,38.2010179],[23.2356156,38.2009286],[23.2357553,38.2006771],[23.2357229,38.2004967],[23.2355305,38.2003332],[23.235423,38.1996926],[23.235438,38.1993503],[23.2353485,38.1991694],[23.2349667,38.1987839],[23.2348241,38.1984315],[23.2344709,38.1983481],[23.2344958,38.19815],[23.2343254,38.1980678],[23.2343488,38.1979102],[23.234491,38.1974154],[23.2343319,38.1973423],[23.2342889,38.1970897],[23.2341637,38.1970528],[23.2339277,38.1967899],[23.2337703,38.1964464],[23.233237,38.1961185],[23.2329995,38.1959006],[23.2326697,38.1946818],[23.2323457,38.1939948],[23.2323368,38.1937514],[23.2320671,38.193335],[23.2320801,38.1931909],[23.2316855,38.1927017],[23.2316638,38.1925934],[23.2308461,38.1921645],[23.2306065,38.1921449],[23.2304025,38.1919993],[23.2301606,38.192196],[23.2301479,38.1923221],[23.2302487,38.192503],[23.2301903,38.1926288],[23.229974,38.1925643],[23.2296796,38.1928733],[23.2294748,38.1927999],[23.2290101,38.1924678],[23.2288816,38.1927374],[23.2286526,38.192799],[23.2276299,38.1923236],[23.2273092,38.1924116],[23.2270561,38.1925902],[23.2266116,38.1927044],[23.2265297,38.1928976],[23.2263163,38.1925583],[23.2258493,38.1924471],[23.2256434,38.1924727],[23.2255415,38.1923909],[23.2254312,38.1920297],[23.2254664,38.1919398],[23.2252424,38.1915238],[23.2253583,38.1913623],[23.225301,38.1911772],[23.2249823,38.191085],[23.2241219,38.1903763],[23.224008,38.1903485],[23.2235543,38.1900571],[23.2234877,38.1899801],[23.2239448,38.1899471],[23.2245831,38.1900594],[23.2248343,38.1900611],[23.2256916,38.1899766],[23.22607,38.1898349],[23.2263167,38.189823],[23.2270607,38.1892511],[23.2275684,38.1890562],[23.2286463,38.1886217],[23.2296108,38.1881233],[23.2307339,38.1877341],[23.2314228,38.1873782],[23.2318693,38.1872639],[23.2325024,38.1872185],[23.2326073,38.1870209],[23.2327569,38.1869137],[23.2332497,38.1867367],[23.2335812,38.1867028],[23.2339719,38.186471],[23.2345332,38.1862945],[23.2348322,38.1860981],[23.2351867,38.1860464],[23.235291,38.1858938],[23.2355208,38.1857602],[23.2355779,38.1857605],[23.2356703,38.186],[23.2363867,38.185946],[23.2368141,38.1858091],[23.2378885,38.185708],[23.2387671,38.1857677],[23.2401922,38.1859842],[23.2380684,38.1851954],[23.2380359,38.1848212],[23.238368,38.1847242],[23.2385044,38.1847792],[23.238605,38.1849871],[23.2388105,38.1849974],[23.2394848,38.1849297],[23.2397242,38.1849673],[23.2406736,38.1848112],[23.2412211,38.1848689],[23.2414281,38.184726],[23.2420576,38.1845768],[23.2423424,38.1846418],[23.2428475,38.1843837],[23.243168,38.1843046],[23.2433061,38.1841974],[23.2433736,38.1842969],[23.2433716,38.1844952],[23.2434985,38.1843698],[23.2436703,38.1843169],[23.2440122,38.1843731],[23.244413,38.1842676],[23.2446518,38.1843592],[23.2448454,38.1843019],[23.2453392,38.1840347],[23.2456042,38.1838021],[23.2457164,38.1839921],[23.2459905,38.1839848],[23.246031,38.1841428],[23.2461558,38.1842247],[23.2476125,38.1845855],[23.2484444,38.1847441],[23.2487641,38.1847461],[23.2497484,38.1845181],[23.25023,38.1843229],[23.2502824,38.1842196],[23.250238,38.1840931],[23.2504733,38.1840856],[23.2506456,38.1840822],[23.2509189,38.1841561],[23.2513014,38.1842621],[23.2521002,38.1843123],[23.2521341,38.1843486],[23.252363,38.1842959],[23.2526018,38.1843876],[23.2534128,38.1843567],[23.2537787,38.1843049],[23.2539396,38.1842068],[23.254132,38.1843703],[23.2544967,38.1844447],[23.2550791,38.1844304],[23.2552956,38.1844768],[23.2560155,38.1844273],[23.2561302,38.1843739],[23.2568502,38.1843064],[23.2569994,38.1842352],[23.2573189,38.1842553],[23.2581192,38.1841522],[23.2585522,38.1842451],[23.259089,38.1842304],[23.259511,38.1842781],[23.2597176,38.1841713],[23.2599571,38.1841908],[23.260289,38.1841208],[23.2604138,38.1842027],[23.2607728,38.1841554],[23.2608986,38.1841382],[23.2610918,38.1842295],[23.2612636,38.1841765],[23.2614794,38.184286],[23.2618573,38.1841803],[23.2618559,38.1843244],[23.2619465,38.1843971],[23.2625533,38.1842297],[23.2631249,38.1841612],[23.2638584,38.1838954],[23.2646461,38.1839094],[23.265195,38.1838227],[23.2652746,38.1838592],[23.2659486,38.1838274],[23.2664506,38.1838666],[23.2665982,38.1839486],[23.267067,38.1838794],[23.2683159,38.1834546],[23.2689224,38.1833142],[23.2699195,38.1829419],[23.2713653,38.1822299],[23.2714924,38.1824334],[23.271778,38.1824172],[23.2717872,38.1826426],[23.2718778,38.1827152],[23.2725848,38.1828097],[23.2731528,38.1831016],[23.273506,38.1831759],[23.2736418,38.1833029],[23.2744276,38.1835061],[23.2748597,38.183689],[23.2750878,38.1837084],[23.2753718,38.1838544],[23.2758054,38.1838931],[23.2757581,38.184055],[23.275803,38.1841274],[23.2763957,38.1842392],[23.2767155,38.1842232],[23.2767023,38.1844033],[23.2768063,38.1842778],[23.2774129,38.1841373],[23.2777782,38.1841486],[23.2785098,38.184063],[23.2798107,38.184143],[23.2809073,38.1840957],[23.2815704,38.1840096],[23.2819695,38.1840661],[23.2818877,38.1842549],[23.2824586,38.1842584],[23.2834884,38.1840304],[23.2839699,38.183835],[23.2842569,38.1836745],[23.2845994,38.183208],[23.2846883,38.1833482],[23.284885,38.1833044],[23.2848738,38.1830655],[23.2852721,38.1831941],[23.2854536,38.1833213],[23.2856702,38.1833587]]},{"id":16575,"author":"AnaDigit","name_GR":"\u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1\u03c2: O22 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1-\u039c. \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b5\u03ba\u03c4\u03b1\u03c1\u03af\u03bf\u03c5","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","path":"STEREA\/Sterea_Kitheronas_O22_Livadostra_AgNektarios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":12211,"name_EN":"Kitheronas: O22 Livadostra-Aghios Nektarios monastery","description_EN":"Kitheronas traverse","ascent_time":290,"descent_time":280,"marker":"O22","level":9,"ascent":312,"descent":57,"maxelev":264,"minelev":0,"link_logo":"KTH_144","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.kitheronas","pdf_link":"","bbox":"LINESTRING(23.11195 38.20689,23.21131 38.228)","views":25,"millestones":"0,23.1122045,38.2072926#1,23.1199773,38.2099842#2,23.1262310,38.2169611#3,23.1357323,38.2197703#4,23.1451481,38.2232911#5,23.1538265,38.2281653#6,23.1646835,38.2271959#7,23.1744684,38.2253497#8,23.1783090,38.2208948#9,23.1808595,38.2149205#10,23.1918589,38.2143837#11,23.2022415,38.2170145#12.2,23.2109510,38.2209620","x":23.1660721,"y":38.2270685,"coor":[[23.1122045,38.2072926],[23.115779,38.2062111],[23.1166917,38.2063802],[23.1168682,38.2066068],[23.1170452,38.2066081],[23.1172793,38.2068217],[23.1172547,38.2069657],[23.1170308,38.2068559],[23.117143,38.2070189],[23.1174602,38.2072376],[23.1178086,38.2077089],[23.1182961,38.2080099],[23.1191145,38.2083405],[23.1195258,38.208623],[23.1199213,38.2089774],[23.1200411,38.2091721],[23.1199731,38.2100728],[23.1203282,38.2109406],[23.120988,38.2114548],[23.1213737,38.2121516],[23.1215658,38.2123243],[23.1218957,38.2124439],[23.1221995,38.2128247],[23.1228214,38.2133521],[23.1231029,38.2136876],[23.1232442,38.2142925],[23.1234133,38.214474],[23.1237023,38.2151431],[23.1246931,38.2153082],[23.1254973,38.2158729],[23.1261042,38.2167066],[23.1264167,38.2173217],[23.1268454,38.2177755],[23.1271147,38.2181831],[23.1276267,38.2183491],[23.128539,38.2184821],[23.129222,38.2186854],[23.1298242,38.2189602],[23.1300605,38.2192594],[23.1302081,38.2193326],[23.1312664,38.2196829],[23.1319291,38.2196698],[23.132396,38.2199706],[23.1331599,38.2201024],[23.1336862,38.2200342],[23.1347094,38.219483],[23.1353941,38.2195421],[23.1357794,38.2198063],[23.1368889,38.2196883],[23.1379952,38.2198406],[23.1381899,38.219797],[23.1384548,38.2196187],[23.1388089,38.2196213],[23.1398626,38.220359],[23.1403172,38.2205606],[23.1404397,38.2208229],[23.1411183,38.2214046],[23.1420053,38.2217536],[23.1422661,38.2219177],[23.1435546,38.2221254],[23.1439758,38.2222546],[23.1442004,38.2224005],[23.144322,38.2227438],[23.1445142,38.2229165],[23.1448438,38.2230631],[23.1452515,38.2233724],[23.1458655,38.2236202],[23.1464324,38.2239849],[23.1475492,38.2242273],[23.148154,38.2242858],[23.1486088,38.2244693],[23.1496126,38.2246028],[23.1499055,38.2249654],[23.1502814,38.2250582],[23.1504401,38.2251675],[23.1507322,38.2255842],[23.1514668,38.2262744],[23.1516575,38.2265822],[23.1520435,38.2267923],[23.152942,38.2271412],[23.1533639,38.2273921],[23.1535444,38.2275917],[23.1536746,38.2281874],[23.1542583,38.2281015],[23.1548398,38.2282049],[23.1566209,38.2283078],[23.1579027,38.2281187],[23.1584284,38.2281045],[23.1586105,38.2281598],[23.1588027,38.2283415],[23.1590555,38.2282171],[23.1599006,38.2282412],[23.1607018,38.2281207],[23.1609314,38.2280233],[23.161217,38.2280253],[23.1613557,38.2278821],[23.161643,38.2277399],[23.1626138,38.2277649],[23.163887,38.2273234],[23.1644813,38.2273096],[23.1650333,38.2269981],[23.165607,38.2267768],[23.1657782,38.2267961],[23.1660721,38.2270685],[23.1662316,38.2271057],[23.166383,38.2268545],[23.1663531,38.2264757],[23.1666634,38.2263157],[23.1671905,38.2261752],[23.1681403,38.2260378],[23.1692364,38.2260996],[23.1695115,38.2260205],[23.1697968,38.2260495],[23.1700606,38.2259522],[23.1706091,38.2259471],[23.1710193,38.2260401],[23.1712487,38.2259606],[23.1717634,38.2259102],[23.1720049,38.2257677],[23.1724172,38.2256805],[23.1729086,38.2256659],[23.1733301,38.225777],[23.1734337,38.2257057],[23.1734588,38.2255076],[23.1735396,38.2254361],[23.1741006,38.2253319],[23.1744773,38.2253525],[23.174878,38.2252832],[23.1756251,38.2248829],[23.1760139,38.2248496],[23.1761643,38.2246794],[23.176394,38.2245729],[23.1766915,38.224539],[23.1773534,38.2245977],[23.1778252,38.2245154],[23.1778715,38.2244616],[23.1777273,38.2240821],[23.1785191,38.2237722],[23.1786119,38.2236467],[23.1785104,38.2235288],[23.1783961,38.2234063],[23.1783975,38.2232802],[23.1786539,38.2228314],[23.178453,38.2224064],[23.1788756,38.2219091],[23.178489,38.2217442],[23.178295,38.2217248],[23.178054,38.2218223],[23.1777193,38.2221264],[23.1776398,38.2220897],[23.1778627,38.2215686],[23.1781293,38.221228],[23.1781076,38.2211197],[23.1778926,38.2209379],[23.1786818,38.2208533],[23.1789921,38.2206933],[23.1789588,38.2206029],[23.178651,38.2205467],[23.1784215,38.2196259],[23.1784362,38.2193286],[23.1788019,38.2191238],[23.17932,38.218767],[23.1798923,38.2186718],[23.1804658,38.2184595],[23.1807767,38.2182454],[23.1809516,38.2179222],[23.1805293,38.2168738],[23.1798975,38.2161664],[23.1792862,38.2156755],[23.1792205,38.2154227],[23.1802433,38.2151955],[23.1814144,38.214663],[23.1821703,38.214488],[23.183175,38.214531],[23.1842807,38.214737],[23.1849886,38.2147689],[23.18532,38.2147532],[23.1861101,38.2145785],[23.1871623,38.2144686],[23.1882733,38.2141969],[23.1887895,38.2140022],[23.1896992,38.214378],[23.1908751,38.2144311],[23.1924295,38.2143517],[23.1927844,38.2142821],[23.193335,38.2140696],[23.1941855,38.2139853],[23.1958484,38.2144293],[23.1975239,38.2147652],[23.1990195,38.2154829],[23.2007256,38.2161614],[23.2019751,38.2168008],[23.2022809,38.2170462],[23.2025836,38.2175709],[23.2028434,38.2178431],[23.2049863,38.2197186],[23.2065639,38.2206666],[23.2074474,38.2213575],[23.2095142,38.222498],[23.2097947,38.2226756],[23.2103387,38.2226522],[23.2108433,38.2224754],[23.2110163,38.2223233],[23.2111482,38.2217474],[23.2110037,38.2213679],[23.210951,38.220962]]},{"id":16576,"author":"AnaDigit","name_GR":"\u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1\u03c2: O22 \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1-\u0394\u03c1\u03c5\u03cc\u03c2 \u039a\u03b5\u03c6\u03b1\u03bb\u03ad\u03c2","description_GR":"O22 \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","path":"STEREA\/Sterea_Kitheronas_O22_refuge_DryosKefales","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6677,"name_EN":"Kitheronas: O22 Kitheronas refuge-Dryos Kefales","description_EN":"O22 Kitheronas traverse","ascent_time":145,"descent_time":165,"marker":"O22","level":9,"ascent":65,"descent":551,"maxelev":1086,"minelev":597,"link_logo":"KTH_144","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.kitheronas","pdf_link":"","bbox":"LINESTRING(23.28476 38.18343,23.34699 38.19491)","views":77,"millestones":"0,23.2856680,38.1833587#1,23.2929027,38.1859691#2,23.3026079,38.1841417#3,23.3118172,38.1866707#4,23.3220603,38.1886964#5,23.3293594,38.1937808#6,23.3402198,38.1952122#6.7,23.3468991,38.1940615","x":23.3114644,"y":38.1865725,"coor":[[23.285668,38.1833587],[23.2854514,38.1833213],[23.28527,38.183194],[23.2848716,38.1830654],[23.2848828,38.1833043],[23.2850599,38.1838822],[23.285046,38.1841345],[23.2854423,38.1844794],[23.2856337,38.1847509],[23.2857814,38.1848329],[23.2858815,38.1851039],[23.2866473,38.1850274],[23.2879699,38.1852247],[23.2884931,38.1854352],[23.288492,38.1855433],[23.2886176,38.1855441],[23.2887184,38.185743],[23.2888098,38.185739],[23.2890505,38.1856503],[23.2892213,38.1856964],[23.2893702,38.1856523],[23.2894227,38.1856841],[23.2905627,38.1858713],[23.2908355,38.1859991],[23.2914631,38.1860389],[23.2919643,38.1861681],[23.2926503,38.1860821],[23.2938221,38.1855665],[23.2955045,38.185162],[23.2959271,38.1851465],[23.2963189,38.1847794],[23.2967543,38.1846197],[23.2974379,38.1847771],[23.2978447,38.1852211],[23.2983689,38.1853234],[23.2986441,38.1852078],[23.2984724,38.1850311],[23.2984964,38.184905],[23.2988742,38.1847992],[23.299067,38.1846741],[23.2996371,38.1847677],[23.2997524,38.1846422],[23.3000035,38.1846617],[23.300849,38.1845946],[23.3017882,38.1842938],[23.3019184,38.1843036],[23.302733,38.1841102],[23.3032386,38.1837752],[23.3032276,38.1841131],[23.3033381,38.1844923],[23.3038166,38.1852071],[23.3038808,38.1852841],[23.304086,38.1853213],[23.3042824,38.1853405],[23.3049668,38.1854167],[23.3060488,38.1857115],[23.3081364,38.1859221],[23.3084792,38.185888],[23.3097953,38.1855713],[23.3098865,38.1855899],[23.3102941,38.1859618],[23.3107486,38.1861988],[23.3114644,38.1865725],[23.3118858,38.1866921],[23.3139863,38.1867495],[23.3152314,38.1867027],[23.3159612,38.1868061],[23.3165746,38.1871521],[23.3167455,38.1871892],[23.3168354,38.1872257],[23.3170645,38.187155],[23.3172235,38.187246],[23.3187516,38.1874532],[23.3193232,38.1873844],[23.3197566,38.187441],[23.3202143,38.1873355],[23.3207864,38.1873343],[23.3210463,38.1876242],[23.3212372,38.1879677],[23.3215314,38.1882578],[23.3226194,38.1891473],[23.32346,38.1896208],[23.3237435,38.1898388],[23.3238554,38.1900827],[23.3237839,38.1904068],[23.3237359,38.1913979],[23.3240127,38.1923367],[23.3242086,38.1925316],[23.324972,38.1927163],[23.325085,38.1928431],[23.3254059,38.1927188],[23.3258747,38.1926494],[23.3267749,38.1928618],[23.3271858,38.1928912],[23.3282894,38.1933301],[23.3291419,38.1937676],[23.3299637,38.1938173],[23.3306577,38.1940917],[23.3311039,38.1940041],[23.3313777,38.1940417],[23.3323119,38.1942813],[23.3325845,38.1944451],[23.3331202,38.1945563],[23.33409,38.1946519],[23.3343646,38.1945994],[23.3348784,38.1946023],[23.3359155,38.1948425],[23.3377205,38.1947626],[23.3382683,38.1948017],[23.3391793,38.1950862],[23.3392606,38.1951768],[23.3395817,38.1950344],[23.3397973,38.1951798],[23.3400024,38.1952351],[23.3408254,38.1951496],[23.3417964,38.195119],[23.3425155,38.1951591],[23.3436955,38.1947331],[23.3443123,38.1947185],[23.3447585,38.1946263],[23.3462574,38.1943102],[23.3466482,38.194024],[23.3468082,38.1940069],[23.3468991,38.1940615]]},{"id":16577,"author":"AnaDigit","name_GR":"\u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1\u03c2: O22 \u0392\u03af\u03bb\u03b9\u03b1-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","description_GR":"\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 O22 \u03bc\u03b5 \u0392\u03af\u03bb\u03b9\u03b1 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b5\u03c6\u03bf\u03b4\u03b9\u03b1\u03c3\u03bc\u03cc","path":"STEREA\/Sterea_Kitheronas_O22_refuge_Vilia","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":6175,"name_EN":"Kitheronas: O22 Vilia-Kitheronas refuge","description_EN":"Connection to refill","ascent_time":135,"descent_time":150,"marker":"O22","level":9,"ascent":16,"descent":593,"maxelev":1086,"minelev":505,"link_logo":"KTH_144","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.kitheronas","pdf_link":"","bbox":"LINESTRING(23.28484 38.16675,23.33624 38.18613)","views":67,"millestones":"0,23.2856680,38.1833587#1,23.2929027,38.1859691#2,23.3026079,38.1841417#3,23.3096075,38.1774823#4,23.3146898,38.1701616#5,23.3244090,38.1668439#6.2,23.3362231,38.1684919","x":23.30842,"y":38.178146,"coor":[[23.285668,38.1833587],[23.2854514,38.1833213],[23.28527,38.183194],[23.2848716,38.1830654],[23.2848828,38.1833043],[23.2850599,38.1838822],[23.285046,38.1841345],[23.2854423,38.1844794],[23.2856337,38.1847509],[23.2857814,38.1848329],[23.2858815,38.1851039],[23.2866473,38.1850274],[23.2879699,38.1852247],[23.2884931,38.1854352],[23.288492,38.1855433],[23.2886176,38.1855441],[23.2887184,38.185743],[23.2888098,38.185739],[23.2890505,38.1856503],[23.2892213,38.1856964],[23.2893702,38.1856523],[23.2894227,38.1856841],[23.2905627,38.1858713],[23.2908355,38.1859991],[23.2914631,38.1860389],[23.2919643,38.1861681],[23.2926503,38.1860821],[23.2938221,38.1855665],[23.2955045,38.185162],[23.2959271,38.1851465],[23.2963189,38.1847794],[23.2967543,38.1846197],[23.2974379,38.1847771],[23.2978447,38.1852211],[23.2983689,38.1853234],[23.2986441,38.1852078],[23.2984724,38.1850311],[23.2984964,38.184905],[23.2988742,38.1847992],[23.299067,38.1846741],[23.2996371,38.1847677],[23.2997524,38.1846422],[23.3000035,38.1846617],[23.300849,38.1845946],[23.3017882,38.1842938],[23.3019184,38.1843036],[23.302733,38.1841102],[23.3032386,38.1837752],[23.3034594,38.1833709],[23.3044625,38.1823495],[23.3050195,38.1814155],[23.3055742,38.1807068],[23.3059873,38.1804929],[23.3061392,38.1801243],[23.3065068,38.1798922],[23.306785,38.1794522],[23.3068439,38.1791416],[23.3070316,38.1788769],[23.3074573,38.1785369],[23.3080982,38.1783784],[23.30842,38.178146],[23.3089926,38.1779691],[23.3093947,38.1777011],[23.3095678,38.1775039],[23.3103022,38.1771116],[23.3105213,38.1768786],[23.3105555,38.176622],[23.3108774,38.1763895],[23.311074,38.1761203],[23.3114991,38.1758344],[23.3119956,38.1752425],[23.3123467,38.1743343],[23.3128998,38.1737878],[23.3135317,38.1733589],[23.3138089,38.173018],[23.3137758,38.1728916],[23.3138344,38.1727298],[23.3140887,38.1723978],[23.3140325,38.1723073],[23.3140463,38.1720551],[23.3138892,38.1717658],[23.3140754,38.1713883],[23.3140567,38.1709376],[23.3141491,38.1707128],[23.3143677,38.1705338],[23.3143016,38.1702766],[23.3151487,38.1700292],[23.3157792,38.1697535],[23.3174792,38.1686278],[23.3190008,38.1682762],[23.320689,38.1671864],[23.321056,38.1670083],[23.3215251,38.1668938],[23.321867,38.1669499],[23.3227542,38.1672975],[23.32335,38.1674496],[23.3236475,38.1673792],[23.3241088,38.167098],[23.324203,38.1670219],[23.3245288,38.1667399],[23.3247233,38.166687],[23.3249516,38.1666973],[23.3254081,38.1668261],[23.3260036,38.1668881],[23.3265737,38.1669634],[23.3269291,38.1671457],[23.3271791,38.1672643],[23.3274073,38.1672837],[23.3284253,38.1670642],[23.3295433,38.1671427],[23.3304238,38.1669764],[23.331451,38.1667615],[23.3318161,38.1667816],[23.3323515,38.1669108],[23.3324984,38.1669567],[23.3331323,38.1671541],[23.333871,38.1675188],[23.3349942,38.1680479],[23.3356644,38.1684122],[23.3358222,38.1684761],[23.3362231,38.1684919]]},{"id":16618,"author":"AnaDigit","name_GR":"\u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2: O22 \u039c. \u0399\u03b5\u03c1\u03bf\u03c5\u03c3\u03b1\u03bb\u03ae\u03bc-\u0391\u03ba\u03c1\u03b9\u03bd\u03cc \u039d\u03b5\u03c1\u03cc","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c9\u03c1\u03b1\u03af\u03b1 \u03bf\u03c1\u03b5\u03b9\u03bd\u03ae \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1","path":"STEREA\/Sterea_Parnassos_O22_Ierousalim_AkrinoNero","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5747,"name_EN":"Parnassos Mt: O22 Ierousalim mon.-Akrino Nero pass","description_EN":"An old path through a nice mountain valley","ascent_time":150,"descent_time":120,"marker":"O22","level":9,"ascent":922,"descent":65,"maxelev":1802,"minelev":870,"link_logo":"PRS_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnassos","pdf_link":"","bbox":"LINESTRING(22.64088 38.50288,22.69163 38.51534)","views":105,"millestones":"0,22.6913965,38.5156899#1,22.6807820,38.5148436#2,22.6701253,38.5151552#3,22.6621075,38.5124736#4,22.6540266,38.5079419#5,22.6455973,38.5043935#5.7,22.6410847,38.5042986","x":22.6672072,"y":38.514543,"coor":[[22.6913965,38.5156899],[22.6906882,38.5155378],[22.6896772,38.5156256],[22.6892495,38.5158101],[22.6891009,38.5157814],[22.6885259,38.5158651],[22.6882904,38.515885],[22.6879711,38.5157823],[22.6876031,38.5158322],[22.6875016,38.515741],[22.6871002,38.5157365],[22.6868841,38.5156349],[22.6867232,38.5156511],[22.6865868,38.5155865],[22.6863224,38.5156196],[22.6862549,38.5155467],[22.6857721,38.5156044],[22.6853198,38.5156219],[22.6851383,38.5155117],[22.6848506,38.5155625],[22.6847389,38.5153991],[22.6847032,38.5154708],[22.6845544,38.5154511],[22.684404,38.5155215],[22.6840387,38.5154272],[22.6838579,38.515281],[22.6835597,38.5152777],[22.6832632,38.5151842],[22.682633,38.5151501],[22.6825194,38.5150857],[22.68237,38.5151021],[22.6822686,38.5150018],[22.6821189,38.5150362],[22.6817988,38.5149785],[22.6814659,38.5149928],[22.6810331,38.5148257],[22.6805623,38.5148564],[22.6802769,38.5147811],[22.6800469,38.5148146],[22.6797609,38.5147753],[22.6796223,38.5148278],[22.6795091,38.5147454],[22.6793476,38.5147977],[22.6789125,38.5147567],[22.6786939,38.5147903],[22.6782149,38.5146407],[22.6775174,38.5145247],[22.6772222,38.5143592],[22.6766846,38.514281],[22.6759895,38.5140298],[22.675507,38.5141505],[22.6747957,38.5141605],[22.6739979,38.5145119],[22.673585,38.5145073],[22.6728472,38.5147152],[22.6720438,38.5147421],[22.6718124,38.5148476],[22.6716486,38.515026],[22.671431,38.5150055],[22.6712339,38.5151204],[22.6709836,38.5150094],[22.6704538,38.5151296],[22.670349,38.5152185],[22.6700523,38.515134],[22.6697801,38.5149687],[22.6697601,38.5148063],[22.6699482,38.5145561],[22.6699978,38.5143584],[22.6692756,38.5143322],[22.6691395,38.5142496],[22.6689109,38.5142109],[22.6684053,38.5142592],[22.6683722,38.5141868],[22.6680279,38.5142009],[22.6678476,38.5146494],[22.6675348,38.5148171],[22.6673462,38.5144725],[22.6672072,38.514543],[22.6669229,38.5144136],[22.6660725,38.5138812],[22.6658586,38.5136625],[22.6648935,38.5131289],[22.664028,38.5127946],[22.6634495,38.5124455],[22.6633811,38.5124267],[22.6633109,38.512498],[22.663174,38.5124604],[22.6631039,38.5125317],[22.6628218,38.5122762],[22.6625932,38.5122375],[22.6624276,38.512506],[22.6621425,38.5124216],[22.6619419,38.5127257],[22.6617938,38.5126699],[22.6616882,38.5127949],[22.6614263,38.5126928],[22.6612763,38.5127451],[22.6612081,38.5127083],[22.6610795,38.512842],[22.660726,38.5127298],[22.6605125,38.5124931],[22.6603914,38.5122213],[22.6603111,38.5122204],[22.6602779,38.512157],[22.6601281,38.5121913],[22.6593989,38.5119306],[22.6591515,38.5116665],[22.6586403,38.5113993],[22.6585393,38.511281],[22.6579014,38.5110484],[22.6576524,38.5108653],[22.6575081,38.5106113],[22.6572555,38.5106264],[22.6571907,38.5104094],[22.6570778,38.510309],[22.6565305,38.5101405],[22.6561126,38.5097933],[22.6557247,38.5096807],[22.6554077,38.5094608],[22.6548886,38.5090042],[22.6547562,38.5087234],[22.6545427,38.5084866],[22.6541923,38.5082122],[22.6540284,38.507949],[22.6539218,38.5075152],[22.6534624,38.5069332],[22.6533436,38.5065353],[22.6531288,38.5063707],[22.6526968,38.5061674],[22.6519758,38.5059158],[22.6514821,38.5059462],[22.6505061,38.5053943],[22.6501867,38.5053005],[22.6493752,38.5045432],[22.649017,38.5039353],[22.6485596,38.5038669],[22.6482839,38.5038907],[22.6479376,38.5040129],[22.6474115,38.5039347],[22.6472638,38.5041673],[22.6467425,38.5044497],[22.6466022,38.5044751],[22.645608,38.5044005],[22.6451322,38.5040886],[22.6447225,38.5039217],[22.6438314,38.5031274],[22.6434292,38.502564],[22.6430667,38.5023255],[22.6429625,38.5023784],[22.642622,38.5027979],[22.6422558,38.5033704],[22.6419074,38.5036007],[22.6415685,38.5039392],[22.6410847,38.5042986]]},{"id":16619,"author":"AnaDigit","name_GR":"\u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2: O22 \u0391\u03b3\u03cc\u03c1\u03b9\u03b1\u03bd\u03b7-\u03a0\u03bf\u03bb\u03cd\u03b4\u03c1\u03bf\u03c3\u03bf\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u0391\u03b3\u03cc\u03c1\u03b9\u03b1\u03bd\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c4\u03bf\u03c5 \u039a\u03b7\u03c6\u03b9\u03c3\u03bf\u03cd","path":"STEREA\/Sterea_Parnassos_O22_Polydroso_Agoriani","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":10723,"name_EN":"Parnassos: O22 Agoriani-Polydrosos","description_EN":"From Agoriani to the Kifissos river source","ascent_time":315,"descent_time":325,"marker":"O22","level":9,"ascent":353,"descent":785,"maxelev":973,"minelev":309,"link_logo":"PRS_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnassos","pdf_link":"","bbox":"LINESTRING(22.49338 38.59732,22.53209 38.63946)","views":138,"millestones":"0,22.4942568,38.5974863#1,22.5032449,38.5995390#2,22.5129739,38.5988861#3,22.5155810,38.6034423#4,22.5236831,38.5991403#5,22.5236687,38.6060987#6,22.5186440,38.6134407#7,22.5128275,38.6199215#8,22.5143823,38.6266138#9,22.5219975,38.6297948#10,22.5270611,38.6359969#10.7,22.5312198,38.6399439","x":22.5236237,"y":38.6064076,"coor":[[22.4942568,38.5974863],[22.4951972,38.5974893],[22.4957042,38.5974057],[22.4959433,38.5974494],[22.4961955,38.5974706],[22.4964537,38.5973568],[22.4967593,38.5970183],[22.4973134,38.5968812],[22.4973869,38.5968822],[22.4976627,38.5970434],[22.4985394,38.5970727],[22.4993494,38.5973264],[22.4999242,38.5972977],[22.5001099,38.5977507],[22.5000477,38.5979842],[22.5000927,38.5985795],[22.5002199,38.5988109],[22.5003873,38.5989257],[22.5006157,38.5989827],[22.5010546,38.5988621],[22.5017,38.5988704],[22.5020043,38.5991446],[22.5031215,38.5995374],[22.5041088,38.59955],[22.504538,38.5993392],[22.5048465,38.5994153],[22.5050957,38.5993058],[22.5054771,38.5991845],[22.5056075,38.5990916],[22.5056796,38.5989393],[22.5060273,38.5987816],[22.5063003,38.5983525],[22.506468,38.5985709],[22.5066959,38.5986549],[22.5071192,38.5987324],[22.5077069,38.5986858],[22.508049,38.5987983],[22.508222,38.5987645],[22.5082131,38.5986382],[22.5082839,38.598549],[22.5083786,38.5984601],[22.5085055,38.5984347],[22.5086769,38.5984729],[22.5087886,38.5986275],[22.5091877,38.5987588],[22.509374,38.598635],[22.5101706,38.5984289],[22.5103874,38.5984947],[22.5106767,38.5983903],[22.510875,38.5985144],[22.5112972,38.598646],[22.5118362,38.5986799],[22.5119375,38.5987803],[22.5123063,38.5987129],[22.5128551,38.598828],[22.5133554,38.5990686],[22.513595,38.5991438],[22.5138476,38.599147],[22.5139942,38.599275],[22.514396,38.5992801],[22.5147868,38.5993842],[22.5150136,38.5995222],[22.515091,38.5996674],[22.5149249,38.5999266],[22.5142746,38.6002788],[22.5140633,38.6005014],[22.5137721,38.6012546],[22.5138102,38.6021923],[22.5144856,38.6016196],[22.5147283,38.6015416],[22.5148318,38.6020926],[22.5150125,38.6022391],[22.5153425,38.6023875],[22.5154421,38.602569],[22.5151963,38.6039085],[22.5157263,38.6032664],[22.5160004,38.6027833],[22.51614,38.602695],[22.5171292,38.6026174],[22.5174043,38.6026389],[22.5182641,38.6024335],[22.5185409,38.6021667],[22.518532,38.6014817],[22.5186538,38.6011408],[22.5186246,38.6008881],[22.5186946,38.600835],[22.5195547,38.6008909],[22.5198543,38.6008406],[22.520192,38.6006106],[22.5203516,38.6006667],[22.5204333,38.6006046],[22.5207206,38.6005903],[22.5211963,38.600353],[22.5215968,38.5998624],[22.5218722,38.5998749],[22.522034,38.5998229],[22.5220584,38.5997511],[22.5225647,38.5997034],[22.5227998,38.5994361],[22.5230909,38.5992415],[22.5233545,38.5992628],[22.5235871,38.5991216],[22.5236901,38.5991409],[22.5238015,38.5993045],[22.5239041,38.5993419],[22.5239102,38.5996033],[22.5240195,38.599875],[22.5239544,38.6002526],[22.5240677,38.6003261],[22.5241579,38.6002327],[22.5243538,38.6001991],[22.5246489,38.600365],[22.525027,38.6004058],[22.5252194,38.6005434],[22.5254089,38.6008252],[22.5254384,38.6010688],[22.5252393,38.6012556],[22.5250451,38.6012081],[22.5248832,38.6012601],[22.5246077,38.6012566],[22.5241548,38.6015032],[22.5241384,38.6017463],[22.5239052,38.6019146],[22.5238614,38.6020943],[22.5240166,38.6023665],[22.5238725,38.6026711],[22.5238688,38.6028513],[22.5239092,38.6031221],[22.5240859,38.6034668],[22.5240589,38.6036647],[22.5241818,38.6038285],[22.5242571,38.6046404],[22.5242164,38.6049463],[22.5240949,38.6052692],[22.5238231,38.6056442],[22.5236279,38.6062004],[22.5236237,38.6064076],[22.5234333,38.6067296],[22.5233808,38.6070534],[22.5232645,38.607124],[22.5231676,38.6073661],[22.5228891,38.6075068],[22.5227247,38.6076849],[22.5228688,38.607939],[22.5226414,38.6083867],[22.5224161,38.6086272],[22.5223187,38.6088963],[22.5220278,38.6090819],[22.5219087,38.6092876],[22.5215491,38.6094633],[22.5214284,38.6097501],[22.521471,38.6099129],[22.5210313,38.6100695],[22.5211097,38.6101696],[22.5209949,38.6107269],[22.5208069,38.6109318],[22.5205998,38.6109472],[22.520471,38.6110717],[22.5198665,38.6119832],[22.5194793,38.6123117],[22.5192852,38.6128139],[22.51918,38.6129027],[22.5192235,38.6130204],[22.5187794,38.6133932],[22.5184555,38.6135062],[22.5180814,38.6138259],[22.5175586,38.6141167],[22.5170637,38.6141645],[22.516893,38.6140902],[22.5164448,38.6141025],[22.5163055,38.6141729],[22.5162914,38.6142988],[22.5161407,38.614369],[22.5157066,38.6148141],[22.5153069,38.6152596],[22.5153031,38.6154397],[22.5147035,38.6155583],[22.5144463,38.61633],[22.5141898,38.616516],[22.513989,38.6167838],[22.5138916,38.6170529],[22.5138112,38.6170518],[22.5137049,38.6171947],[22.513636,38.6171938],[22.5136084,38.6174187],[22.5135282,38.6174087],[22.5133963,38.6176774],[22.5132326,38.6178194],[22.5130839,38.6188989],[22.5128008,38.6198145],[22.5130448,38.6207908],[22.5128832,38.6209014],[22.5127209,38.6209714],[22.5125901,38.621186],[22.5123695,38.6213003],[22.512391,38.6213727],[22.5121817,38.6214962],[22.5124566,38.6215357],[22.5125014,38.6215904],[22.5125956,38.6217583],[22.5130078,38.6218176],[22.513349,38.6219841],[22.513585,38.6222394],[22.5139839,38.6229474],[22.5140926,38.6232461],[22.51399,38.6232088],[22.5139185,38.623334],[22.5138866,38.6237662],[22.5141886,38.6241575],[22.5142449,38.6242123],[22.51436,38.6242047],[22.5144233,38.6244758],[22.5143757,38.6245563],[22.5146216,38.6248839],[22.5145953,38.6250457],[22.5147287,38.6252637],[22.5149998,38.6254834],[22.5149287,38.6255906],[22.5151102,38.6257011],[22.5151184,38.6258634],[22.5149222,38.6259059],[22.5146547,38.6260648],[22.5147681,38.6261383],[22.5146754,38.6261732],[22.5146958,38.6262996],[22.5145467,38.6262887],[22.5146482,38.6263801],[22.5146685,38.626511],[22.5145518,38.6265996],[22.5143562,38.6266152],[22.514353,38.6267683],[22.5144749,38.6269861],[22.5141944,38.6272169],[22.5150304,38.6273942],[22.5151304,38.6275576],[22.5155385,38.6278241],[22.5151019,38.6278276],[22.5151343,38.6279272],[22.514995,38.6279975],[22.5154608,38.6282467],[22.5153679,38.6282996],[22.5154238,38.6283724],[22.5161619,38.6287872],[22.5164817,38.6288814],[22.5164796,38.6289805],[22.5167534,38.6290741],[22.5181826,38.6295608],[22.5187098,38.6296215],[22.5191736,38.6294111],[22.520336,38.629151],[22.5205881,38.6291812],[22.5208374,38.6293466],[22.5215068,38.6297065],[22.5229261,38.6299587],[22.5237536,38.6305008],[22.523877,38.6306465],[22.5239077,38.6308272],[22.5235788,38.6323008],[22.5230364,38.6335375],[22.523133,38.6338722],[22.5236539,38.6342392],[22.524037,38.6343251],[22.5244764,38.6343983],[22.5255142,38.6347718],[22.5260199,38.6348863],[22.5262129,38.6349969],[22.526436,38.6353241],[22.527279,38.6362358],[22.5287011,38.6369205],[22.5301885,38.6377863],[22.5305643,38.6385119],[22.5310146,38.6394773],[22.5312198,38.6399439]]},{"id":16620,"author":"AnaDigit","name_GR":"\u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2: O22 \u03a0\u03bf\u03bb\u03cd\u03b4\u03c1\u03bf\u03c3\u03bf-\u03ba\u03b1\u03c4. \u039c. \u0394\u03ad\u03c6\u03bd\u03b5\u03c1","description_GR":"\u0395\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03c5\u03c3\u03b1 \u03b4\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b2\u03cc\u03c1\u03b5\u03b9\u03bf\u03c5 \u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03bf\u03cd","path":"STEREA\/Sterea_Parnassos_O22_Polydroso_Sarandari","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":15278,"name_EN":"Parnassos Mt: O22 Polydroso-M.Defner ref.","description_EN":"A traverse of northern Parnasos","ascent_time":520,"descent_time":430,"marker":"O22","level":9,"ascent":1564,"descent":167,"maxelev":1843,"minelev":380,"link_logo":"PRS_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnassos","pdf_link":"","bbox":"LINESTRING(22.53122 38.54073,22.58314 38.64015)","views":104,"millestones":"0,22.5312198,38.6399439#1,22.5402412,38.6356063#2,22.5490829,38.6316774#3,22.5544340,38.6255414#4,22.5561714,38.6176753#5,22.5559753,38.6104312#6,22.5575545,38.6027663#7,22.5618020,38.5957424#8,22.5629835,38.5874535#9,22.5672175,38.5807506#10,22.5664431,38.5727407#11,22.5681875,38.5655108#12,22.5737558,38.5580590#13,22.5761611,38.5524230#14,22.5821612,38.5456719#15.3,22.5763607,38.5413054","x":22.5640943,"y":38.5856446,"coor":[[22.5312198,38.6399439],[22.5316912,38.6399814],[22.532239,38.6401595],[22.5329385,38.6401232],[22.5335828,38.6400772],[22.5340623,38.6400021],[22.5348862,38.639706],[22.5352153,38.6395209],[22.5354594,38.6393798],[22.535733,38.6391489],[22.5372056,38.6384915],[22.537889,38.6379324],[22.5387181,38.6372759],[22.538767,38.6371323],[22.5389861,38.6369143],[22.5391413,38.6366279],[22.5395014,38.63638],[22.539803,38.6362396],[22.5398511,38.6361321],[22.5401412,38.6356536],[22.5402909,38.6355834],[22.5406426,38.6352363],[22.5408971,38.6351494],[22.5414902,38.6347964],[22.5417445,38.6347184],[22.5431299,38.6338165],[22.5435208,38.6338034],[22.5442058,38.6340192],[22.5451578,38.6340941],[22.5455811,38.6341805],[22.5459733,38.6341042],[22.5464329,38.6341009],[22.5470903,38.6339739],[22.5473589,38.633761],[22.5475458,38.633484],[22.5475494,38.6333038],[22.54783,38.6329018],[22.5486912,38.6323538],[22.5490419,38.6320517],[22.5491092,38.6313857],[22.5495314,38.6315802],[22.5496973,38.6313299],[22.5507818,38.6305324],[22.5506333,38.6302016],[22.550752,38.6302977],[22.5510663,38.6302205],[22.5513929,38.6299722],[22.5517973,38.6298601],[22.5523671,38.6295157],[22.5527513,38.6294213],[22.5541281,38.628366],[22.5544939,38.6278839],[22.5548211,38.6276086],[22.5545535,38.6266321],[22.5543971,38.6264139],[22.5544423,38.6253061],[22.5542043,38.6245732],[22.5542517,38.6240512],[22.5542064,38.6238974],[22.5545829,38.6234515],[22.5546791,38.6232364],[22.5546304,38.6228033],[22.5549828,38.6224111],[22.5550557,38.6222138],[22.5556334,38.6220497],[22.555762,38.6219342],[22.5558342,38.6217728],[22.5557929,38.621538],[22.5560758,38.6211811],[22.5562055,38.6209033],[22.5558783,38.6206109],[22.555869,38.6205027],[22.5559865,38.6203149],[22.5557908,38.6200512],[22.5561447,38.6195869],[22.5565157,38.6188436],[22.5566002,38.6186374],[22.556569,38.6184748],[22.5561297,38.6181495],[22.5562075,38.6177089],[22.5559933,38.617508],[22.5558943,38.6172905],[22.5555548,38.617034],[22.5552013,38.6163358],[22.5548018,38.6162137],[22.5546461,38.6150989],[22.5541171,38.6145607],[22.5539424,38.6142161],[22.5539688,38.6141713],[22.553915,38.6139904],[22.5540137,38.6136492],[22.5541621,38.6135159],[22.5539486,38.613279],[22.5541579,38.6131554],[22.554162,38.6129482],[22.554073,38.6128029],[22.5541581,38.6125697],[22.5544174,38.6122395],[22.5544083,38.6121222],[22.5542723,38.6120304],[22.5543344,38.6117969],[22.5546588,38.6116567],[22.5546276,38.6114941],[22.5547123,38.6112789],[22.5551366,38.6113112],[22.5553387,38.6109712],[22.5555709,38.6108479],[22.5557474,38.6106339],[22.5559672,38.6105555],[22.5559996,38.6100873],[22.5563915,38.6094433],[22.5561677,38.6085755],[22.5565263,38.6084447],[22.5565945,38.6084816],[22.5568913,38.6079987],[22.5567448,38.6078617],[22.5564665,38.6075474],[22.556226,38.6069902],[22.5560449,38.6068618],[22.5560383,38.6067761],[22.5558647,38.6062693],[22.5559403,38.6059369],[22.5563931,38.605582],[22.5566293,38.6052605],[22.5566026,38.6049808],[22.5562976,38.6047247],[22.5565431,38.6045115],[22.5564965,38.6039703],[22.5568783,38.6038308],[22.5570338,38.6035173],[22.5574332,38.6030717],[22.5575541,38.6027668],[22.5577544,38.6025169],[22.5577138,38.6022461],[22.5573087,38.6018356],[22.5572651,38.6016638],[22.557315,38.6014662],[22.5571595,38.601203],[22.5574535,38.6008551],[22.5576682,38.6004568],[22.5579963,38.6001274],[22.5581402,38.5998228],[22.5586224,38.599252],[22.559044,38.599077],[22.5590706,38.5988971],[22.5592327,38.598827],[22.5594032,38.5983425],[22.5596349,38.5982372],[22.5596966,38.5979721],[22.5600227,38.5977418],[22.5605555,38.5975141],[22.560767,38.5971472],[22.5613082,38.596852],[22.5616587,38.5965499],[22.5621215,38.5963754],[22.5619118,38.5962422],[22.561778,38.5960423],[22.5617593,38.5958258],[22.5618429,38.5956646],[22.5619763,38.5953644],[22.5619842,38.594968],[22.5621706,38.5948351],[22.5621719,38.5945332],[22.5623265,38.5942648],[22.5622688,38.5937054],[22.5621601,38.5933976],[22.5621555,38.5930552],[22.5623462,38.5927061],[22.5623998,38.5923192],[22.5622657,38.5915606],[22.5623494,38.5913905],[22.5622058,38.5911093],[22.562383,38.5908592],[22.5619588,38.5902502],[22.5621156,38.5898737],[22.5617428,38.588995],[22.5620373,38.5886201],[22.5622656,38.5881093],[22.5625339,38.5878963],[22.562759,38.5875477],[22.5630137,38.5874426],[22.5631082,38.5873086],[22.5630928,38.5863533],[22.5633371,38.586194],[22.5635839,38.5859087],[22.5640943,38.5856446],[22.5642584,38.5854754],[22.5643908,38.5851707],[22.5647035,38.5850303],[22.5649374,38.5848169],[22.5650434,38.5846831],[22.5652442,38.5841133],[22.5654357,38.5837192],[22.565367,38.5831326],[22.5655099,38.582873],[22.5655501,38.5825851],[22.5656552,38.5824963],[22.5659934,38.5824103],[22.5663187,38.5822161],[22.5671831,38.5820464],[22.5676882,38.5821607],[22.5676585,38.5812322],[22.5673416,38.5810031],[22.5671209,38.5805588],[22.5667263,38.5801935],[22.5664593,38.5797667],[22.5664962,38.579641],[22.5662825,38.5794221],[22.5660497,38.5790047],[22.5657905,38.5788168],[22.5657144,38.5785996],[22.5654341,38.5782628],[22.5653271,38.5778695],[22.5657841,38.5774065],[22.5658665,38.5770155],[22.5657786,38.5768162],[22.5658547,38.5763981],[22.5661251,38.576077],[22.5662815,38.5757184],[22.5662234,38.5751771],[22.5660075,38.5750663],[22.5658945,38.5747946],[22.5658771,38.574515],[22.566074,38.5744273],[22.566065,38.574301],[22.5661355,38.5742208],[22.5660591,38.5740216],[22.5662468,38.5738166],[22.5662179,38.5735369],[22.5663123,38.5734119],[22.5663112,38.5728893],[22.5666752,38.5724792],[22.5666549,38.5723438],[22.5667745,38.5721019],[22.5669949,38.5719875],[22.5670687,38.5717361],[22.5672523,38.5717383],[22.5673836,38.5714876],[22.5673986,38.5713076],[22.5671218,38.5707995],[22.5672908,38.5703781],[22.5672257,38.570188],[22.5674223,38.5701184],[22.5674997,38.5696868],[22.5673767,38.569523],[22.5673598,38.5692165],[22.5670369,38.5687169],[22.5670867,38.5685192],[22.5672221,38.568638],[22.5672813,38.5685487],[22.5672144,38.5684487],[22.5672398,38.5683229],[22.5670374,38.5681131],[22.566931,38.5676883],[22.5672599,38.5673138],[22.5674105,38.5672436],[22.5673664,38.5671529],[22.5674578,38.5671721],[22.5675163,38.5671187],[22.5674607,38.5670279],[22.5676669,38.5670485],[22.5676002,38.5669395],[22.5677045,38.5668867],[22.5677083,38.5666975],[22.5676272,38.5667326],[22.5675935,38.5666961],[22.5677554,38.566635],[22.5677454,38.5665628],[22.5678734,38.5664743],[22.5678433,38.5662576],[22.5682387,38.5654154],[22.5682791,38.5651185],[22.568411,38.5648318],[22.5687223,38.5645788],[22.5691218,38.5641151],[22.5693062,38.5641489],[22.5702329,38.5630653],[22.5712014,38.5616849],[22.5715089,38.5612245],[22.5716781,38.5607941],[22.5718314,38.5605887],[22.572181,38.5603226],[22.5721723,38.5601783],[22.572339,38.559874],[22.5725954,38.5596788],[22.5729485,38.5592326],[22.5729625,38.5591066],[22.5730919,38.558946],[22.572982,38.5587013],[22.5730298,38.5586028],[22.5734122,38.5584182],[22.5737291,38.5580616],[22.5738901,38.5580455],[22.5739034,38.5579556],[22.5743931,38.557565],[22.5746989,38.5571903],[22.5748968,38.5570485],[22.5749232,38.5569452],[22.5746696,38.5569286],[22.5745402,38.556873],[22.5741497,38.5568862],[22.5741289,38.5567778],[22.5738537,38.5567655],[22.5739251,38.5566402],[22.573834,38.556603],[22.5738418,38.5564995],[22.5737343,38.5564216],[22.5737486,38.5562776],[22.5742512,38.5558151],[22.5742892,38.5556353],[22.5740954,38.5555699],[22.5736236,38.5556363],[22.5732693,38.5555598],[22.573847,38.5554723],[22.5738665,38.5549589],[22.5737549,38.5547953],[22.5737352,38.5546328],[22.574241,38.5540082],[22.5744154,38.5538932],[22.5744527,38.5537495],[22.5746712,38.5537251],[22.5750645,38.5535677],[22.5753796,38.5533012],[22.5755459,38.5530148],[22.5760951,38.5525169],[22.5762603,38.5522846],[22.576586,38.5520633],[22.5770944,38.5518892],[22.5780677,38.5514144],[22.5786482,38.55107],[22.5790572,38.5506965],[22.5795562,38.5504142],[22.5798132,38.550183],[22.5800427,38.5501858],[22.5805509,38.5500163],[22.580451,38.5498438],[22.5805335,38.5497367],[22.5806485,38.5497201],[22.5815211,38.5481086],[22.5818161,38.5476976],[22.5818117,38.5473371],[22.5821578,38.5466565],[22.5821125,38.5460431],[22.5821658,38.5456653],[22.5820463,38.5453214],[22.5820375,38.5447851],[22.5821235,38.5444978],[22.5824643,38.5440874],[22.582566,38.543584],[22.5825483,38.5433135],[22.5830974,38.5428155],[22.5831036,38.5425001],[22.5830551,38.5423959],[22.5827607,38.5421941],[22.5826059,38.5418949],[22.5821531,38.541583],[22.5818121,38.5416014],[22.5816296,38.5415451],[22.5814071,38.541191],[22.5812133,38.5411255],[22.5812874,38.5409687],[22.5802679,38.5408843],[22.5798227,38.5407708],[22.5789331,38.5406789],[22.5783226,38.5407976],[22.5777261,38.5407904],[22.5773788,38.5409483],[22.5769198,38.5408797],[22.5767463,38.5409497],[22.5763607,38.5413054]]},{"id":16621,"author":"AnaDigit","name_GR":"\u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2: O22 \u03ba\u03b1\u03c4. \u039c. \u0394\u03ad\u03c6\u03bd\u03b5\u03c1-\u0396\u03b5\u03bc\u03b5\u03bd\u03cc","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bd\u03cc\u03c4\u03b9\u03bf\u03c5 \u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03bf\u03cd","path":"STEREA\/Sterea_Parnassos_O22_Sarandari_Zemeno","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":15813,"name_EN":"Parnassos Mt: O22 M. Defner ref.-Zemeno","description_EN":"Southern Parnassos traverse","ascent_time":460,"descent_time":485,"marker":"O22","level":9,"ascent":783,"descent":1819,"maxelev":2380,"minelev":743,"link_logo":"PRS_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnassos","pdf_link":"","bbox":"LINESTRING(22.57629 38.47583,22.64222 38.54459)","views":112,"millestones":"0,22.5763592,38.5413054#1,22.5844738,38.5417638#2,22.5894148,38.5427542#3,22.5958576,38.5375577#4,22.6032200,38.5326973#5,22.6098677,38.5260503#6,22.6145566,38.5199939#7,22.6234239,38.5196412#8,22.6313483,38.5151451#9,22.6387266,38.5101572#10,22.6393990,38.5048910#11,22.6339913,38.5044001#12,22.6306289,38.4980794#13,22.6285624,38.4897150#14,22.6317689,38.4816646#15,22.6374789,38.4771859#15.8,22.6383688,38.4757906","x":22.6253603,"y":38.5173934,"coor":[[22.5763592,38.5413054],[22.5767449,38.5409497],[22.5769184,38.5408797],[22.577377,38.5409483],[22.5777244,38.5407903],[22.5783209,38.5407976],[22.5789313,38.5406788],[22.5798212,38.5407707],[22.579643,38.5404982],[22.5796698,38.5403003],[22.5797634,38.5402113],[22.5799225,38.5401592],[22.580385,38.5399801],[22.5805481,38.5398559],[22.5813793,38.5400687],[22.5815905,38.5404137],[22.5815827,38.5405218],[22.5813935,38.5408078],[22.5816444,38.540883],[22.5823223,38.541184],[22.5825782,38.5412998],[22.5829556,38.5415972],[22.5831203,38.5419777],[22.5835355,38.5418656],[22.5838761,38.5420499],[22.5840937,38.5420706],[22.5843179,38.5417579],[22.584467,38.5417597],[22.5847732,38.5419436],[22.585027,38.5418746],[22.5851793,38.5417142],[22.5854103,38.5416359],[22.5855845,38.5414713],[22.5857444,38.5415093],[22.5857767,38.5416178],[22.5856456,38.5418685],[22.585401,38.5420548],[22.5853234,38.5425045],[22.5855911,38.5423094],[22.5856693,38.5424185],[22.5856063,38.5427061],[22.5856959,38.5428154],[22.585722,38.5432392],[22.585779,38.5432579],[22.5857143,38.5436356],[22.5857834,38.5436184],[22.5857939,38.5436726],[22.5858433,38.5446645],[22.5861195,38.5446227],[22.5862554,38.5447145],[22.5863851,38.5445358],[22.586602,38.5445925],[22.5866731,38.5444762],[22.5868699,38.5443885],[22.5868598,38.5443163],[22.587282,38.5438528],[22.5874452,38.5437196],[22.5876058,38.5437215],[22.5879408,38.5434778],[22.5880007,38.5433523],[22.5883741,38.5430324],[22.5885333,38.5431064],[22.5893652,38.5428101],[22.589506,38.5426496],[22.5896788,38.5426156],[22.5899253,38.5423302],[22.5901343,38.5422066],[22.5901616,38.5420582],[22.5902879,38.5420507],[22.5902932,38.5417804],[22.5906055,38.5410633],[22.5909493,38.5410854],[22.591331,38.5409278],[22.5914134,38.5408207],[22.5913374,38.5406035],[22.5913868,38.5404239],[22.5916177,38.5401112],[22.5916814,38.5400219],[22.5918667,38.539934],[22.5919689,38.5399893],[22.5920506,38.5399182],[22.5922989,38.5401284],[22.5924297,38.5398957],[22.5925684,38.5398433],[22.5927694,38.5395393],[22.5929675,38.5393795],[22.5929749,38.5390011],[22.5932165,38.538968],[22.5932419,38.5388421],[22.5933218,38.5388611],[22.593464,38.5386285],[22.5935447,38.5386115],[22.5936737,38.5384688],[22.593859,38.538381],[22.5942491,38.5383766],[22.5943859,38.5384233],[22.5944676,38.5383522],[22.5946723,38.5384448],[22.594664,38.5382825],[22.5948246,38.5382844],[22.5948034,38.538194],[22.5952269,38.5376584],[22.5956617,38.5377177],[22.5958599,38.5375579],[22.5959049,38.5376035],[22.5960206,38.5375508],[22.5960655,38.5376054],[22.5961364,38.5374981],[22.5961701,38.5375346],[22.596298,38.537446],[22.596412,38.5374834],[22.5966208,38.5373688],[22.596796,38.5372087],[22.5970662,38.5362927],[22.5980559,38.5355476],[22.5983029,38.5352352],[22.5983891,38.5349839],[22.5984397,38.5347412],[22.5985094,38.534697],[22.5984789,38.5344984],[22.5987286,38.5340418],[22.5987702,38.5338395],[22.5989903,38.5337295],[22.599126,38.5338303],[22.5993431,38.5338779],[22.5994024,38.5337795],[22.5996904,38.5337199],[22.5999924,38.5335252],[22.6003925,38.5336021],[22.6004742,38.533531],[22.600429,38.5334944],[22.6006497,38.5333528],[22.6014093,38.5332268],[22.6016182,38.5331031],[22.6019978,38.5330536],[22.6021837,38.5329296],[22.6027937,38.5328288],[22.6029349,38.5326502],[22.6032322,38.5326988],[22.6034124,38.5325748],[22.6036627,38.5320912],[22.6037748,38.5316329],[22.6040604,38.5311047],[22.6042241,38.5309444],[22.6046686,38.5299044],[22.6049376,38.5296372],[22.6054479,38.529355],[22.6055546,38.529176],[22.6056818,38.5291234],[22.6058649,38.5291436],[22.6058316,38.5290892],[22.6059935,38.529019],[22.606135,38.5288225],[22.6062737,38.52877],[22.6065425,38.5285119],[22.6065088,38.5284755],[22.6066349,38.528477],[22.6067743,38.5283885],[22.607137,38.5280233],[22.6075106,38.5276854],[22.6077506,38.5271385],[22.6080882,38.5268812],[22.6087141,38.5265462],[22.6096735,38.5261701],[22.6103003,38.5257901],[22.610278,38.5257537],[22.6105811,38.525505],[22.6108997,38.5250402],[22.6109258,38.5248783],[22.6110895,38.524718],[22.6115417,38.5244666],[22.6116789,38.5244862],[22.6118613,38.5243262],[22.6122583,38.5239614],[22.6124697,38.5231078],[22.6128374,38.5230762],[22.6130515,38.5232769],[22.6131693,38.5231161],[22.6132801,38.5233157],[22.61344,38.5233536],[22.6135686,38.523229],[22.6137389,38.5233211],[22.6137415,38.523186],[22.6135009,38.5225704],[22.6135096,38.5221199],[22.6132993,38.5217209],[22.6132478,38.5214139],[22.6133937,38.5209831],[22.6139039,38.5207008],[22.6144419,38.5201574],[22.6150314,38.5193263],[22.6156982,38.5186493],[22.6160232,38.5184459],[22.6161634,38.5184836],[22.6162914,38.518386],[22.6163825,38.5184231],[22.6165409,38.5185331],[22.616697,38.5187693],[22.6175031,38.5192023],[22.6178991,38.5194864],[22.6186623,38.5197657],[22.6190933,38.5200231],[22.6193788,38.5200896],[22.619516,38.5201092],[22.6197238,38.5200396],[22.6199558,38.5199071],[22.6204287,38.5197685],[22.6207084,38.5195375],[22.6217008,38.5192248],[22.621987,38.5192552],[22.6222754,38.5191685],[22.6224807,38.519234],[22.6227848,38.5195259],[22.6228278,38.5196796],[22.6229212,38.5195906],[22.6231259,38.5196831],[22.623471,38.5196331],[22.6239609,38.5192063],[22.6240762,38.5191716],[22.6242068,38.5189389],[22.6241769,38.5187042],[22.6240872,38.518595],[22.6241622,38.5182715],[22.624046,38.5177475],[22.6241064,38.517586],[22.624198,38.5175961],[22.6242345,38.5174883],[22.6246009,38.5175197],[22.6249355,38.5174155],[22.6253603,38.5173934],[22.6253381,38.5173571],[22.6255923,38.517261],[22.625906,38.5170484],[22.6260356,38.5168697],[22.6265102,38.516641],[22.6274645,38.516517],[22.6279503,38.5163064],[22.6280643,38.5163438],[22.6282736,38.516193],[22.6283879,38.5162124],[22.6286082,38.5160888],[22.6287573,38.5160906],[22.6289555,38.5159217],[22.6290862,38.5156799],[22.6293423,38.5154846],[22.6295716,38.5154873],[22.6305624,38.5152556],[22.6313675,38.5151388],[22.6328041,38.5149844],[22.6329522,38.5150402],[22.633079,38.5150056],[22.6331976,38.5147998],[22.6334387,38.5147846],[22.6334182,38.5146582],[22.6335368,38.5144523],[22.6338524,38.5141406],[22.6349639,38.5135858],[22.6355168,38.5128533],[22.6364312,38.5124134],[22.6380233,38.5119182],[22.6381053,38.5118291],[22.6379812,38.5117195],[22.6379721,38.5115932],[22.6383414,38.5114714],[22.638493,38.511338],[22.6384363,38.5113013],[22.6387038,38.5111061],[22.6386357,38.5110693],[22.6386843,38.5109257],[22.6388831,38.5107207],[22.6389219,38.5104869],[22.6388548,38.510396],[22.6388904,38.5103333],[22.6386747,38.5102136],[22.6387567,38.5101245],[22.6386473,38.5098439],[22.638798,38.5097555],[22.6387761,38.5097012],[22.6390051,38.5097219],[22.6389502,38.5095951],[22.6391343,38.5095611],[22.6391126,38.5094978],[22.6392756,38.5093645],[22.639278,38.5092384],[22.6390731,38.5091549],[22.639288,38.5087068],[22.6397791,38.5082079],[22.6400879,38.5076438],[22.6407803,38.5068047],[22.6412417,38.5060531],[22.6413039,38.5057925],[22.6414776,38.5057044],[22.641456,38.5056321],[22.6416058,38.5055977],[22.6416648,38.5055083],[22.641656,38.505364],[22.6414637,38.5052266],[22.6415353,38.5050743],[22.6413875,38.5050095],[22.6413457,38.5047927],[22.6411237,38.5045919],[22.6410865,38.5042986],[22.6410309,38.5042078],[22.6407874,38.5043492],[22.640464,38.5044716],[22.640407,38.5044529],[22.6399652,38.5047722],[22.6399166,38.5049158],[22.6395976,38.504804],[22.6393201,38.5049269],[22.6390528,38.5046399],[22.6388563,38.5047187],[22.6387882,38.5046819],[22.6386276,38.5040763],[22.6385714,38.5040125],[22.6384908,38.5040296],[22.6384585,38.5039211],[22.6381944,38.5039361],[22.6379911,38.5037715],[22.6379028,38.5035902],[22.6378208,38.5036794],[22.6377087,38.5035429],[22.6375718,38.5035053],[22.6375631,38.503361],[22.6374248,38.5033954],[22.6373038,38.5031237],[22.637189,38.5031313],[22.6371239,38.5029323],[22.636954,38.5028222],[22.6367036,38.5023597],[22.6365488,38.5026598],[22.6362248,38.5028182],[22.6359903,38.5030859],[22.6358129,38.5033722],[22.6357746,38.503579],[22.6356945,38.503569],[22.6356052,38.5034418],[22.6355406,38.5032158],[22.6354815,38.5033142],[22.635215,38.5034553],[22.6351604,38.5033105],[22.6351129,38.5034],[22.634952,38.5034162],[22.6347143,38.5032512],[22.6344622,38.5032393],[22.6344939,38.5033838],[22.6343495,38.5037426],[22.634483,38.5039604],[22.6344667,38.5042756],[22.6342308,38.5040116],[22.6339822,38.5044232],[22.6337616,38.5045648],[22.6337013,38.5047263],[22.6334151,38.5046959],[22.6326908,38.5047956],[22.6323478,38.5047375],[22.6321216,38.5045727],[22.6320899,38.5044281],[22.63178,38.5044425],[22.6318132,38.5043168],[22.6317175,38.5039191],[22.631782,38.5035414],[22.6315282,38.5030158],[22.6314929,38.5024566],[22.631647,38.5021881],[22.6318185,38.5016134],[22.6320794,38.5011568],[22.6319651,38.5011375],[22.6317975,38.5009012],[22.63147,38.5000323],[22.6312921,38.4997328],[22.631178,38.4997045],[22.6311818,38.4995063],[22.6307526,38.4991588],[22.6305567,38.4973903],[22.6302672,38.4969363],[22.6300642,38.4967537],[22.6296475,38.4957485],[22.6295124,38.4956208],[22.6295603,38.4955132],[22.6293043,38.4951047],[22.6291448,38.4950488],[22.6290332,38.4948853],[22.6289804,38.4946503],[22.6290283,38.4945428],[22.6289093,38.4941629],[22.6289574,38.4940463],[22.6287608,38.4937196],[22.62871,38.4933765],[22.628815,38.4932787],[22.628685,38.4928806],[22.6287318,38.4928271],[22.6283581,38.4919756],[22.6284515,38.4918866],[22.6283747,38.4917055],[22.6283704,38.491327],[22.6284413,38.4912197],[22.6283857,38.4911289],[22.6284137,38.4908589],[22.6285102,38.4906077],[22.6284435,38.4904988],[22.628483,38.4902289],[22.6284193,38.4899578],[22.6285853,38.4896714],[22.6286178,38.4891671],[22.6287102,38.4891321],[22.6286788,38.4889696],[22.6288326,38.488719],[22.6287632,38.4881505],[22.6289669,38.4876843],[22.6287895,38.4873668],[22.6290936,38.4870459],[22.6290522,38.4868112],[22.6291359,38.4866319],[22.6290584,38.4864868],[22.6291354,38.4860552],[22.6293832,38.4856796],[22.6294089,38.4855357],[22.6295718,38.4854114],[22.6296085,38.4852857],[22.6299842,38.4848215],[22.6301231,38.484751],[22.6302068,38.4845718],[22.6310751,38.4835186],[22.6311007,38.4833747],[22.6312751,38.4832506],[22.631416,38.483072],[22.6313946,38.4829906],[22.6316285,38.4827501],[22.631677,38.4826064],[22.6315864,38.4825513],[22.6317617,38.4823731],[22.6318009,38.4821213],[22.6317478,38.4812916],[22.6318868,38.4812121],[22.6318458,38.4809593],[22.6320331,38.480565],[22.6318238,38.480549],[22.6311053,38.4803514],[22.6303984,38.4800097],[22.6316833,38.4793579],[22.6322413,38.4792517],[22.6331724,38.4791184],[22.6336815,38.478872],[22.634124,38.4785077],[22.6348825,38.4784084],[22.6367518,38.4777633],[22.6371962,38.4772999],[22.6377043,38.4770986],[22.6377531,38.4769459],[22.6376745,38.4768549],[22.6374918,38.4768167],[22.6368706,38.4769357],[22.6364576,38.4769489],[22.6363225,38.4768212],[22.6363712,38.4766685],[22.6375625,38.4761056],[22.6382769,38.4759157],[22.6383688,38.4757906]]},{"id":17155,"author":"AnaDigit","name_GR":"\u039a\u03bf\u03c1\u03bf\u03bc\u03c0\u03af\u03bb\u03b9: O22 \u039e\u03b7\u03c1\u03bf\u03bd\u03bf\u03bc\u03ae-\u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u039a\u03bf\u03c1\u03bf\u03bc\u03c0\u03b9\u03bb\u03b9\u03bf\u03cd","path":"STEREA\/Sterea_O22_Xironomi_Livadostra","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":3,"length":12206,"name_EN":"Korobili: O22 Xironomi-Livadostra","description_EN":"Korobili crossing","ascent_time":335,"descent_time":340,"marker":"O22","level":9,"ascent":328,"descent":515,"maxelev":489,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.07431 38.20742,23.12967 38.24915)","views":69,"millestones":"0,23.0743080,38.2491501#1,23.0782659,38.2418044#2,23.0861966,38.2357558#3,23.0880849,38.2304688#4,23.0898381,38.2256152#5,23.0916821,38.2219192#6,23.1021754,38.2227108#7,23.1115585,38.2201461#8,23.1220855,38.2232947#9,23.1281511,38.2245405#10,23.1221348,38.2207803#11,23.1152790,38.2149621#12.2,23.1122045,38.2072926","x":23.1057945,"y":38.2226549,"coor":[[23.074308,38.2491501],[23.074477,38.2490297],[23.0758753,38.2487163],[23.0752061,38.2469041],[23.0752217,38.2466068],[23.0755702,38.2457579],[23.0758618,38.2443904],[23.0766066,38.2433328],[23.0789534,38.2411883],[23.0799959,38.2400699],[23.0805838,38.23966],[23.0810033,38.2390144],[23.0816957,38.2384701],[23.0822877,38.2377357],[23.0828059,38.2374153],[23.0832597,38.23677],[23.0837436,38.2364493],[23.0856118,38.2359953],[23.0867948,38.2355088],[23.087325,38.2351344],[23.087799,38.2346965],[23.0883146,38.2340381],[23.0885952,38.233468],[23.0885968,38.2333418],[23.0885289,38.2332872],[23.0861949,38.2335395],[23.0858192,38.2334284],[23.0857294,38.2333015],[23.0857425,38.2331664],[23.0862872,38.2325578],[23.0873616,38.2316109],[23.0878143,38.2310376],[23.0881431,38.2303282],[23.0882215,38.2295358],[23.0885105,38.2292676],[23.0889173,38.228712],[23.0908115,38.2270685],[23.0907208,38.2270137],[23.08991,38.2269804],[23.0875706,38.2269983],[23.0876981,38.2268551],[23.0886869,38.226349],[23.0891831,38.2259564],[23.0902985,38.2253702],[23.0908857,38.2251765],[23.0904875,38.2250472],[23.0895833,38.2250673],[23.0882239,38.2248314],[23.0868425,38.2247486],[23.0869798,38.2245604],[23.0875897,38.2242136],[23.0887542,38.2233575],[23.0900647,38.2227008],[23.0906639,38.2222593],[23.090814,38.2221343],[23.0917572,38.2219028],[23.0952815,38.2215875],[23.0960457,38.2216835],[23.0975603,38.2220737],[23.0984014,38.2224226],[23.0990179,38.2228284],[23.0993144,38.2228667],[23.0997494,38.222798],[23.1000719,38.2225842],[23.1004381,38.2225329],[23.1005541,38.2223896],[23.1007017,38.2224628],[23.1010444,38.2224654],[23.1012032,38.2225568],[23.1013535,38.2224137],[23.1017182,38.2224886],[23.1018532,38.2226519],[23.1021045,38.2226538],[23.1022177,38.2227448],[23.1023321,38.2227276],[23.1025595,38.2228195],[23.1027091,38.2227305],[23.1029037,38.222696],[23.1032345,38.2227345],[23.1034154,38.2228891],[23.1036551,38.222909],[23.1038591,38.2230457],[23.1041101,38.2230657],[23.1040884,38.2229754],[23.1044327,38.2228428],[23.1049924,38.2228561],[23.1050718,38.2229018],[23.1050957,38.2228118],[23.1052785,38.2228132],[23.1051996,38.2227225],[23.1057945,38.2226549],[23.10599,38.2225483],[23.1059916,38.2224221],[23.1063589,38.2222807],[23.1064753,38.2221013],[23.1067393,38.2220042],[23.1072926,38.2215939],[23.1075894,38.2216141],[23.108106,38.2214108],[23.1083019,38.2212681],[23.1085308,38.2212338],[23.1090021,38.220994],[23.1090604,38.2208953],[23.1093596,38.2207174],[23.1098181,38.2205947],[23.1098765,38.220487],[23.1101749,38.2203721],[23.110245,38.2202464],[23.1104273,38.2201667],[23.1114103,38.2201201],[23.112915,38.2203838],[23.1144411,38.2207738],[23.117342,38.221778],[23.1185951,38.2220758],[23.1202216,38.2226648],[23.1202776,38.2227644],[23.1208114,38.2230207],[23.1209774,38.2229318],[23.1222747,38.2233561],[23.12307,38.2237225],[23.123639,38.223907],[23.1245172,38.2240307],[23.125678,38.2243999],[23.1271329,38.2250235],[23.1278274,38.225227],[23.12802,38.2253546],[23.1281323,38.2255176],[23.1281022,38.2251749],[23.127956,38.2249756],[23.1269223,38.2244812],[23.1264143,38.2239728],[23.1272101,38.2242941],[23.1279397,38.2244257],[23.1287456,38.2248643],[23.1290265,38.2252629],[23.1291739,38.2253541],[23.1294587,38.2252165],[23.1290028,38.2241677],[23.1280824,38.2237463],[23.1275494,38.2234179],[23.1263193,38.2227464],[23.1247953,38.2221763],[23.1234595,38.2211569],[23.1230617,38.2209918],[23.1221502,38.2207867],[23.1215932,38.2205572],[23.1212209,38.2201669],[23.1209182,38.219696],[23.1208859,38.2195335],[23.1209563,38.2193718],[23.1213712,38.2187486],[23.1214307,38.2185507],[23.1213654,38.2182799],[23.1210948,38.2179805],[23.1207666,38.2177257],[23.1200735,38.2174141],[23.118343,38.2169324],[23.1177246,38.216707],[23.1171111,38.216432],[23.1164419,38.2160304],[23.1160035,38.2154503],[23.1157093,38.2152138],[23.1148473,38.2147116],[23.1142434,38.2145809],[23.1139025,38.2144341],[23.1133248,38.2140332],[23.1129866,38.2136702],[23.1130221,38.2135623],[23.1133079,38.2135464],[23.1134343,38.2134843],[23.1134599,38.2132592],[23.1133264,38.2129878],[23.1132128,38.2119956],[23.1129922,38.2111198],[23.1127298,38.2107122],[23.1121898,38.2100322],[23.1113496,38.2090525],[23.1109761,38.2078331],[23.1108534,38.2075618],[23.1109002,38.207472],[23.1122045,38.2072926]]},{"id":19333,"author":"AnaDigit","name_GR":"\u03a0\u03ac\u03c3\u03c4\u03c1\u03b1: O22 \u0394\u03c1\u03c5\u03cc\u03c2 \u039a\u03b5\u03c6\u03b1\u03bb\u03ad\u03c2-\u03a3\u03ba\u03bf\u03cd\u03c1\u03c4\u03b1","description_GR":"\u039c\u03b1\u03ba\u03c1\u03b9\u03ac \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c4\u03b7\u03c2 \u03a0\u03ac\u03c3\u03c4\u03c1\u03b1\u03c2","path":"ATTIKI\/Attiki_O22_DryosKefales_Skourta","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":21472,"name_EN":"Pastra: O22 Dryos Kefales-Skourta","description_EN":"A long ride along the Pastra Mt crest","ascent_time":540,"descent_time":530,"marker":"O22","level":9,"ascent":576,"descent":630,"maxelev":998,"minelev":510,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.34677 38.19483,23.55171 38.21628)","views":21,"millestones":"0,23.3471481,38.1938736#1,23.3532903,38.1959471#2,23.3588870,38.1982919#3,23.3671101,38.1981897#4,23.3773389,38.1977911#5,23.3882260,38.1993302#6,23.3984297,38.1998588#7,23.4090099,38.1989468#8,23.4196954,38.2006289#9,23.4268596,38.2064583#10,23.4360315,38.2081834#11,23.4462108,38.2095084#12,23.4555741,38.2102887#13,23.4642916,38.2130884#14,23.4717249,38.2147487#15,23.4825583,38.2169579#16,23.4937090,38.2151443#17,23.5035574,38.2143901#18,23.5144185,38.2121096#19,23.5256294,38.2129915#20,23.5365508,38.2151067#21.5,23.5515888,38.2140019","x":23.4401624,"y":38.2095174,"coor":[[23.3471481,38.1938736],[23.3471241,38.1941258],[23.3469624,38.1943232],[23.3470969,38.1948917],[23.3473012,38.195037],[23.3474607,38.195074],[23.3477123,38.1950303],[23.3478975,38.194761],[23.3483231,38.1944119],[23.3491469,38.1942362],[23.3494416,38.1943234],[23.3505364,38.1946494],[23.3507412,38.1947407],[23.3510924,38.1950581],[23.3517928,38.1953999],[23.3520999,38.1955368],[23.3522145,38.1954923],[23.352204,38.1953841],[23.3519475,38.1946933],[23.3519144,38.1944407],[23.352018,38.1943512],[23.3521084,38.1944598],[23.3523747,38.1950516],[23.3528265,38.1956129],[23.3533712,38.1960034],[23.353947,38.1962364],[23.3542992,38.1964366],[23.3548435,38.1965162],[23.3551394,38.196626],[23.3556845,38.1969805],[23.3560033,38.1970904],[23.3565812,38.1975982],[23.35682,38.1977167],[23.3569556,38.1978797],[23.3569544,38.1980239],[23.3576648,38.1990552],[23.3576749,38.1992084],[23.3575358,38.199442],[23.357614,38.1996317],[23.3578759,38.1997232],[23.3580688,38.1998685],[23.3583055,38.2002213],[23.3584418,38.2003121],[23.3592203,38.2000911],[23.3593473,38.1999386],[23.3593272,38.1996275],[23.3589014,38.1986969],[23.3588752,38.1977775],[23.3589919,38.1974897],[23.3594286,38.1971767],[23.3595575,38.1967989],[23.359567,38.1964925],[23.3597097,38.1965023],[23.3598686,38.1966113],[23.3600926,38.1971172],[23.3603322,38.1971366],[23.3606609,38.1974267],[23.3609916,38.1974826],[23.3613897,38.197665],[23.3615029,38.1977738],[23.361811,38.1978115],[23.361993,38.1978936],[23.3623016,38.1978593],[23.3628144,38.1979882],[23.3634547,38.1979016],[23.3636024,38.1979925],[23.3636942,38.1979389],[23.3639226,38.1979401],[23.3640037,38.1978144],[23.3641412,38.1977611],[23.3644037,38.1977805],[23.3645742,38.1978716],[23.3652706,38.1978934],[23.3654971,38.1981199],[23.3659434,38.1980142],[23.3660468,38.1979426],[23.3661829,38.1980515],[23.3669817,38.1981279],[23.3675048,38.1983831],[23.3677686,38.1982493],[23.3679962,38.1983407],[23.3684299,38.198379],[23.3686129,38.198344],[23.3687165,38.1982544],[23.3692753,38.1983475],[23.3695843,38.1982681],[23.370324,38.1985785],[23.3709861,38.1986091],[23.3711238,38.1985377],[23.3713633,38.198575],[23.371659,38.1987118],[23.3721279,38.1986422],[23.3723578,38.1984632],[23.373479,38.1982349],[23.3737872,38.1982545],[23.3746755,38.1985477],[23.3749613,38.1985131],[23.3754273,38.198768],[23.3755424,38.1986694],[23.3756563,38.1987061],[23.3768394,38.1979013],[23.3779493,38.1976548],[23.3790234,38.1975884],[23.3802197,38.1979192],[23.3810295,38.1980496],[23.3837734,38.1979424],[23.3846867,38.1979832],[23.3858948,38.1982779],[23.3870776,38.1988609],[23.3885687,38.1994635],[23.3899308,38.2000834],[23.390657,38.200646],[23.3916823,38.2009577],[23.3922539,38.2008886],[23.3928834,38.2007296],[23.39364,38.200391],[23.3938595,38.2000857],[23.3940661,38.1999606],[23.3959316,38.1994926],[23.3965359,38.1996039],[23.3969587,38.199579],[23.3977805,38.1996373],[23.3984069,38.1998568],[23.3986237,38.1998759],[23.3996432,38.1995026],[23.4009338,38.1994912],[23.4012871,38.1995831],[23.4023338,38.2000751],[23.4026871,38.200167],[23.4040795,38.2002823],[23.4051529,38.2003057],[23.4065248,38.2001324],[23.4075543,38.1999303],[23.4080248,38.1996533],[23.4086341,38.1991517],[23.4096206,38.1986159],[23.4099068,38.1985272],[23.4106486,38.198594],[23.4111731,38.1987048],[23.4119809,38.1990874],[23.4123228,38.1991792],[23.4133272,38.1992564],[23.4148288,38.1991377],[23.4157754,38.1993046],[23.418116,38.1999291],[23.4195503,38.200513],[23.4204923,38.2012657],[23.4212965,38.2021168],[23.4213577,38.2030364],[23.4211981,38.2034502],[23.4211968,38.2036124],[23.4215235,38.2041908],[23.4217048,38.2043719],[23.4236422,38.2049042],[23.424929,38.2053971],[23.425145,38.2055244],[23.4258369,38.2061406],[23.4260417,38.2062317],[23.4266806,38.206325],[23.4269532,38.2065246],[23.427359,38.2069366],[23.4279155,38.2073449],[23.427994,38.2075255],[23.427896,38.2083722],[23.427963,38.2085708],[23.4282671,38.2086669],[23.4300926,38.2089282],[23.4308233,38.2089678],[23.4325392,38.2086336],[23.4337726,38.2086576],[23.4344591,38.2085077],[23.4355127,38.2081522],[23.4367685,38.2082304],[23.4389589,38.2085653],[23.4392776,38.208711],[23.439753,38.2092811],[23.4401624,38.2095174],[23.4405046,38.2095731],[23.4415332,38.2095059],[23.4422038,38.2099326],[23.4428191,38.2101338],[23.4432871,38.2101721],[23.4441905,38.2100322],[23.4446274,38.2096557],[23.4447534,38.2096203],[23.4449931,38.2096394],[23.4454257,38.2098217],[23.4457001,38.209787],[23.4469618,38.209099],[23.4472837,38.2088301],[23.4475758,38.2087188],[23.4477827,38.2085395],[23.4479534,38.2086305],[23.4480906,38.2086131],[23.4483632,38.2088127],[23.4487318,38.2086837],[23.4488228,38.2087382],[23.4489257,38.2087207],[23.4490391,38.2088293],[23.4492027,38.2089518],[23.4498653,38.2089369],[23.4500256,38.2088835],[23.4507145,38.2084181],[23.4512857,38.2084028],[23.4519784,38.2089467],[23.4524765,38.2095439],[23.4530442,38.2099972],[23.4532037,38.210052],[23.4537516,38.2100996],[23.4541971,38.2101017],[23.4547119,38.2099959],[23.4550428,38.2100335],[23.4558737,38.2104339],[23.456489,38.210635],[23.4565109,38.2107613],[23.456338,38.2109768],[23.456325,38.211184],[23.4564715,38.2114461],[23.4566875,38.2115822],[23.4568895,38.2120789],[23.4569632,38.2120026],[23.4575919,38.2119424],[23.4577982,38.2118532],[23.4581394,38.2120531],[23.4587544,38.2122993],[23.4600094,38.2124943],[23.4601923,38.2124771],[23.4602935,38.2126984],[23.4604433,38.2128117],[23.460728,38.2131195],[23.4619263,38.2132692],[23.4622236,38.2132345],[23.4622358,38.2131264],[23.4624649,38.2130373],[23.4631721,38.2131667],[23.4636642,38.2130518],[23.4638354,38.2130706],[23.4639447,38.2131117],[23.4640821,38.2130672],[23.4642875,38.2130862],[23.4644241,38.2131589],[23.4645731,38.2130875],[23.4648016,38.2130795],[23.4653265,38.213154],[23.4654069,38.2131003],[23.4657606,38.213156],[23.4663091,38.2131224],[23.4667428,38.2131785],[23.4669372,38.2131433],[23.4670736,38.2132341],[23.4672564,38.2132349],[23.4674284,38.2131455],[23.4677254,38.2131469],[23.4681695,38.2133382],[23.4684324,38.2133033],[23.4687288,38.2133858],[23.469164,38.2132345],[23.4698155,38.2131744],[23.4700341,38.2131168],[23.4702163,38.2131897],[23.4702194,38.2132483],[23.4701387,38.2133561],[23.4697372,38.2135886],[23.4687641,38.2138906],[23.4694481,38.214074],[23.4696232,38.2143496],[23.4697252,38.2144582],[23.4700682,38.2144147],[23.470432,38.2144569],[23.4706255,38.2145479],[23.4712173,38.2145641],[23.4716045,38.2147191],[23.4725168,38.2149395],[23.4739204,38.2154324],[23.4756423,38.2158547],[23.4764071,38.2159302],[23.4772742,38.2160873],[23.4779236,38.2163245],[23.4787882,38.216833],[23.4790844,38.2169425],[23.4831053,38.2169603],[23.483871,38.2169186],[23.4846131,38.2168272],[23.4878612,38.2162736],[23.4902411,38.2157252],[23.491407,38.2156221],[23.4929121,38.2153448],[23.4939638,38.2150834],[23.4942406,38.2150621],[23.4944609,38.2150495],[23.494862,38.214871],[23.4951103,38.2148315],[23.4951573,38.2146515],[23.4953181,38.214526],[23.495403,38.214274],[23.4955856,38.2143018],[23.4963538,38.2143998],[23.4965956,38.2144323],[23.4974671,38.2146208],[23.4975355,38.2146391],[23.4979038,38.2140774],[23.4990457,38.2144563],[23.4999236,38.2146989],[23.5005624,38.21499],[23.5009611,38.2149917],[23.5019405,38.2151175],[23.5058027,38.2134125],[23.5060717,38.2134812],[23.5068376,38.2133988],[23.5122595,38.2122814],[23.5134254,38.2121646],[23.5139288,38.2120495],[23.5142713,38.2120689],[23.514887,38.2122382],[23.5169548,38.2123684],[23.5176728,38.2126102],[23.5185397,38.2127985],[23.5192921,38.2128557],[23.5197027,38.2129565],[23.520412,38.2127926],[23.5210156,38.2129123],[23.5217811,38.2128793],[23.522299,38.2128319],[23.5236352,38.2128734],[23.5266611,38.2130523],[23.5272655,38.2129872],[23.5285332,38.2130283],[23.5291507,38.213148],[23.5309189,38.2132767],[23.5327671,38.2138609],[23.5338497,38.2142752],[23.5355716,38.2147417],[23.5365869,38.2151197],[23.5369852,38.2151889],[23.5382534,38.2151623],[23.5399683,38.2149302],[23.540952,38.214898],[23.5413326,38.2148319],[23.5417203,38.2149371],[23.5428395,38.214973],[23.5438098,38.2150804],[23.5444724,38.215083],[23.54501,38.2149634],[23.5469759,38.2147863],[23.5478973,38.2148889],[23.5481371,38.2149079],[23.5487893,38.2147256],[23.5492087,38.2146732],[23.5497571,38.2146573],[23.5503497,38.2147136],[23.5507491,38.2146115],[23.550648,38.2143227],[23.5515888,38.2140019]]},{"id":19336,"author":"AnaDigit","name_GR":"\u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2: O22 \u0391\u03b3\u03af\u03b1 \u0386\u03bd\u03bd\u03b1-\u0386\u03c3\u03ba\u03c1\u03b7","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03b1\u03c1\u03ac \u03b1\u03c0\u03cc \u039a\u03bf\u03c5\u03c4\u03c3\u03bf\u03cd\u03c1\u03b9 \u0399\u03bc\u03c0\u03ac\u03c1\u03b4 \u03ba\u03b1\u03b9 \u0399\u03c0\u03c0\u03bf\u03ba\u03c1\u03ae\u03bd\u03b7","path":"STEREA\/Sterea_Elikon_O22_AgAnna_Askri","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":26864,"name_EN":"Elikonas: O22 Agia Anna-Askri","description_EN":"Zagaras Mt. crossing to Askri valley via Koutsouri Ibard and Ippokrini spring","ascent_time":660,"descent_time":675,"marker":"O22","level":9,"ascent":1387,"descent":1695,"maxelev":1349,"minelev":372,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.90439 38.30632,23.11148 38.33334)","views":9,"millestones":"0,22.9046493,38.3164240#1,22.9102433,38.3189579#2,22.9186053,38.3206093#3,22.9290435,38.3181294#4,22.9380777,38.3164703#5,22.9477442,38.3178493#6,22.9515329,38.3123550#7,22.9596247,38.3086498#8,22.9673404,38.3067674#9,22.9710467,38.3130572#10,22.9694894,38.3200258#11,22.9781600,38.3245398#12,22.9876492,38.3284642#13,22.9968413,38.3327148#14,23.0065779,38.3316896#15,23.0164414,38.3329103#16,23.0247595,38.3281237#17,23.0308935,38.3231174#18,23.0368881,38.3186029#19,23.0438876,38.3138795#20,23.0436325,38.3102732#21,23.0545160,38.3093214#22,23.0640478,38.3113777#23,23.0740538,38.3104824#24,23.0851756,38.3110224#25,23.0959411,38.3127812#26,23.1062689,38.3155425#26.9,23.1113878,38.3140584","x":23.0008846,"y":38.3340907,"coor":[[22.9046493,38.316424],[22.9051532,38.3163566],[22.9052447,38.3163574],[22.9056496,38.3163432],[22.9062266,38.3163621],[22.9069802,38.3164502],[22.9087543,38.3168542],[22.9090665,38.3168211],[22.9091349,38.3168398],[22.9096067,38.3168126],[22.9092093,38.317647],[22.9086862,38.3182009],[22.9086646,38.3188766],[22.9082711,38.3194227],[22.9084665,38.3196678],[22.908637,38.3197415],[22.9087541,38.3195623],[22.9091352,38.3193226],[22.9098318,38.3194011],[22.9100513,38.319259],[22.910309,38.3188558],[22.9105409,38.3186417],[22.9110329,38.3186373],[22.9111353,38.3186743],[22.9111999,38.3189452],[22.9113129,38.3190364],[22.9111828,38.3193236],[22.9112736,38.3193695],[22.9112601,38.3195045],[22.9114418,38.3195963],[22.9118331,38.3194378],[22.9119586,38.3194569],[22.9121698,38.3198735],[22.9123051,38.3200009],[22.9122923,38.3200909],[22.9123833,38.3201278],[22.9125514,38.3203636],[22.912747,38.3202843],[22.9129532,38.3202682],[22.9131009,38.3203327],[22.9134568,38.3202459],[22.913649,38.3204008],[22.9141504,38.3205317],[22.914502,38.3212108],[22.9151356,38.3211986],[22.9156311,38.3209599],[22.917503,38.3204725],[22.9179724,38.3204408],[22.9188156,38.3206649],[22.919251,38.3206148],[22.9197578,38.3203852],[22.9202702,38.3201826],[22.9213258,38.319967],[22.9221198,38.3196499],[22.9227398,38.3194934],[22.9235804,38.3193839],[22.9243164,38.3193907],[22.9250856,38.3191995],[22.9252452,38.319237],[22.9256419,38.3194839],[22.9258933,38.3195043],[22.9261231,38.3194343],[22.9268509,38.3189543],[22.9272308,38.3187865],[22.9279395,38.3185317],[22.9286396,38.3183759],[22.9289734,38.3182347],[22.9291372,38.3179839],[22.929231,38.3173223],[22.9294307,38.3169637],[22.9296969,38.3167498],[22.9300983,38.3166814],[22.9309433,38.3166846],[22.9315851,38.3166003],[22.9324246,38.3162926],[22.9342676,38.3162012],[22.9346805,38.3161238],[22.9352448,38.3159126],[22.9360975,38.3154878],[22.9370955,38.3153391],[22.9376904,38.3161421],[22.9380176,38.3164515],[22.9386097,38.3166371],[22.9395579,38.3167177],[22.9399095,38.3169282],[22.9406773,38.316827],[22.9410167,38.3168886],[22.9420782,38.3164611],[22.9423539,38.3164276],[22.9426643,38.3163222],[22.9432476,38.3163275],[22.9435247,38.3161497],[22.9437082,38.3161153],[22.9440945,38.3162991],[22.9444708,38.3163745],[22.9446603,38.3167187],[22.9454456,38.3169961],[22.9455116,38.317177],[22.9458893,38.3171623],[22.9461372,38.3174169],[22.9462176,38.3173996],[22.946353,38.317527],[22.9465482,38.3174747],[22.9465271,38.3173483],[22.9466653,38.3172865],[22.9469024,38.3175049],[22.9471085,38.3174887],[22.9472886,38.3176886],[22.9477399,38.3178503],[22.9487499,38.3176161],[22.94938,38.3175496],[22.9500713,38.3176775],[22.9504853,38.317528],[22.950616,38.3171867],[22.9501155,38.316993],[22.9497301,38.3167462],[22.9495635,38.3164022],[22.9496928,38.3161601],[22.9499477,38.3159371],[22.9500194,38.3157214],[22.9497416,38.3151602],[22.9497223,38.3149077],[22.9495874,38.3147442],[22.9496113,38.3146724],[22.949383,38.3146433],[22.949409,38.3144272],[22.9492754,38.3141737],[22.9500049,38.3135584],[22.9501235,38.3131674],[22.9503856,38.3130616],[22.9510442,38.3125989],[22.9516486,38.3123024],[22.952189,38.312109],[22.9533464,38.3119571],[22.9538054,38.311853],[22.9541056,38.3116574],[22.955265,38.3105683],[22.9554841,38.3104441],[22.9558735,38.3104115],[22.9565462,38.3105617],[22.9572109,38.3104685],[22.9581365,38.3105308],[22.9584004,38.31047],[22.95862,38.3103098],[22.9586566,38.3101479],[22.9585677,38.3099668],[22.9580577,38.3096379],[22.9581077,38.3093409],[22.9582923,38.3092344],[22.9587957,38.3091938],[22.9590831,38.3090972],[22.9612372,38.307323],[22.9615841,38.3070557],[22.9631818,38.306502],[22.9643044,38.3055747],[22.9650777,38.3053517],[22.9662589,38.3051278],[22.9666246,38.3051491],[22.9670085,38.3054949],[22.9675904,38.3055992],[22.9677034,38.3056903],[22.9677128,38.3058346],[22.9672576,38.3064794],[22.9673336,38.3067685],[22.9682276,38.3066321],[22.9688435,38.3067547],[22.9696629,38.3070413],[22.9700629,38.3070628],[22.9700545,38.3073827],[22.9699231,38.3077781],[22.969277,38.30898],[22.9691814,38.3092675],[22.9692226,38.3095923],[22.9689288,38.3101485],[22.9690511,38.3103929],[22.9697091,38.3107772],[22.9700689,38.3112129],[22.9700909,38.311506],[22.9701887,38.3118673],[22.9703123,38.3120216],[22.9704834,38.3120592],[22.9705596,38.3123302],[22.970852,38.3126843],[22.9711862,38.313318],[22.9712327,38.3140754],[22.9711231,38.3145431],[22.971244,38.3148956],[22.9711614,38.3150752],[22.9710467,38.3150922],[22.970988,38.3151998],[22.9710388,38.3156508],[22.9707346,38.3161348],[22.9708469,38.31628],[22.9707724,38.3166939],[22.9709623,38.31702],[22.9702504,38.317212],[22.969909,38.3170829],[22.9695542,38.3170978],[22.969372,38.3170421],[22.9691951,38.317419],[22.9688598,38.3176684],[22.9687421,38.3179017],[22.9688181,38.3181908],[22.9691664,38.3186354],[22.9691975,38.318861],[22.9689385,38.3193814],[22.9689921,38.3196342],[22.9690816,38.3197792],[22.9694003,38.3198901],[22.96977,38.3204431],[22.970075,38.3207162],[22.9710932,38.3207071],[22.9713879,38.3208989],[22.971985,38.3207419],[22.973164,38.3215003],[22.9740452,38.3214719],[22.974319,38.3215284],[22.9745669,38.3217919],[22.9746549,38.322045],[22.9748684,38.3223172],[22.9750831,38.3225084],[22.9757536,38.3228206],[22.976084,38.3229136],[22.9761622,38.3230495],[22.9765502,38.323116],[22.9766514,38.323243],[22.9773212,38.3236093],[22.9775228,38.3239175],[22.9779524,38.3242817],[22.9786497,38.3251349],[22.9788323,38.3251636],[22.9790563,38.325508],[22.9792887,38.3257083],[22.9800499,38.3259131],[22.9805656,38.3258455],[22.9808277,38.3259199],[22.9811139,38.3259044],[22.9823444,38.3262665],[22.9827333,38.3262699],[22.9830951,38.3265794],[22.9836653,38.3267106],[22.9842558,38.3270221],[22.9845657,38.3273086],[22.9858146,38.3276078],[22.9863289,38.3276483],[22.9864895,38.3276137],[22.9866128,38.327795],[22.9872832,38.3281252],[22.9878141,38.3286164],[22.9881113,38.328637],[22.9884181,38.3287839],[22.9887951,38.3288232],[22.9897396,38.3291918],[22.9899799,38.3291848],[22.9901644,38.3290873],[22.990461,38.3291439],[22.9905287,38.3292166],[22.9904807,38.3293784],[22.9906057,38.3294335],[22.9907173,38.3296418],[22.9911691,38.3300602],[22.9921001,38.3305729],[22.9930176,38.3312387],[22.993439,38.3313775],[22.9942761,38.3320695],[22.9945263,38.3321798],[22.9947442,38.3321457],[22.9950177,38.3322201],[22.9953119,38.3324569],[22.9956576,38.332568],[22.995933,38.3326605],[22.9964255,38.3326197],[22.9968361,38.3327133],[22.9973223,38.3328526],[22.9975805,38.3330802],[22.9979871,38.3334621],[22.9984751,38.3337547],[22.9995276,38.3337637],[23.0000973,38.3339307],[23.0003346,38.3341491],[23.0004942,38.3341955],[23.0008846,38.3340907],[23.0015367,38.3340962],[23.0021699,38.3338132],[23.0034537,38.3336349],[23.0044332,38.3331295],[23.005115,38.3326306],[23.0060485,38.3321429],[23.0067698,38.3315227],[23.0069074,38.3315058],[23.0070415,38.3317412],[23.0072571,38.3318692],[23.0074284,38.3318887],[23.0073525,38.3317439],[23.0076494,38.3317824],[23.0083027,38.3316978],[23.0085427,38.3317179],[23.0091463,38.3319213],[23.0094493,38.3323564],[23.0099179,38.3323964],[23.0100907,38.3323077],[23.0102318,38.3319755],[23.011246,38.3322724],[23.011829,38.3323134],[23.0131294,38.3325947],[23.013607,38.332815],[23.0144879,38.3328224],[23.0151723,38.3329724],[23.0159622,38.3329429],[23.0160395,38.3329346],[23.0167752,38.3328912],[23.0182322,38.332597],[23.0186212,38.3326002],[23.0193939,38.3323859],[23.0199419,38.3322328],[23.0206571,38.3321667],[23.0210631,38.3317555],[23.0221427,38.3314491],[23.0226146,38.3312367],[23.0235658,38.3302713],[23.0238107,38.3299219],[23.0238959,38.3295441],[23.0238601,38.3294086],[23.0239436,38.329157],[23.0241538,38.3288343],[23.024452,38.3287827],[23.0244542,38.3286205],[23.0247124,38.328136],[23.0251716,38.3280137],[23.0254493,38.3277817],[23.0260594,38.3274983],[23.0265003,38.3270424],[23.0266845,38.3269538],[23.0270435,38.3266323],[23.0271355,38.3265971],[23.0276724,38.3266556],[23.0278798,38.3265401],[23.0282235,38.3265069],[23.0283048,38.3264175],[23.0284886,38.3263559],[23.0285356,38.3262662],[23.0283759,38.3262288],[23.0286984,38.3260693],[23.0286538,38.3259788],[23.0287463,38.3259075],[23.0285299,38.3258336],[23.028554,38.3257437],[23.0283605,38.32567],[23.0283847,38.325571],[23.0281579,38.325425],[23.0282762,38.3251285],[23.0282554,38.3249752],[23.0280413,38.3247301],[23.0280335,38.3244596],[23.0281712,38.3244247],[23.0281043,38.324298],[23.0291133,38.3241261],[23.0297341,38.3238969],[23.0304364,38.3235603],[23.0307715,38.3233107],[23.0308537,38.3231492],[23.0311428,38.3229173],[23.0312713,38.3227201],[23.0312062,38.3224492],[23.0313457,38.3222881],[23.0312667,38.3222063],[23.0313701,38.3221711],[23.0310737,38.3220966],[23.0309357,38.3221495],[23.0307764,38.3220851],[23.0308603,38.3217974],[23.030816,38.3216889],[23.0309323,38.3215457],[23.0312312,38.321431],[23.0314531,38.3210904],[23.0322817,38.3207187],[23.0323525,38.3205571],[23.0323324,38.3203496],[23.0325099,38.3199005],[23.0326715,38.3197937],[23.0327065,38.3197399],[23.0326267,38.3197212],[23.0329627,38.3193996],[23.0327581,38.3192987],[23.0326529,38.3191447],[23.0337698,38.3190007],[23.0352234,38.3189405],[23.0357993,38.3186389],[23.0369553,38.3185943],[23.0377571,38.3185107],[23.0380328,38.3184229],[23.0381355,38.3184418],[23.0382368,38.3185688],[23.0383519,38.3185156],[23.0387603,38.3187713],[23.0390131,38.3186833],[23.0392765,38.3186674],[23.0394728,38.3185248],[23.0398177,38.3183924],[23.0401271,38.3183499],[23.0403254,38.3180632],[23.0406716,38.3178317],[23.0409971,38.3174378],[23.041551,38.3170728],[23.0423549,38.3168271],[23.0437199,38.3156666],[23.0441066,38.3149668],[23.0444862,38.3148077],[23.044235,38.3144993],[23.04402,38.3143173],[23.0438775,38.3138475],[23.0433223,38.3134464],[23.0432329,38.3132835],[23.042404,38.3128261],[23.0420961,38.3127515],[23.0415588,38.3127291],[23.0410388,38.3122652],[23.0405216,38.3117743],[23.0405119,38.3116391],[23.040341,38.3115926],[23.0400584,38.311338],[23.039762,38.3112634],[23.0395142,38.310973],[23.039803,38.3107501],[23.0403985,38.3107009],[23.0410655,38.3105081],[23.0411243,38.3103824],[23.0412966,38.3103297],[23.0412633,38.3098698],[23.0415282,38.3097278],[23.0417126,38.3097609],[23.0419304,38.3099699],[23.0426866,38.3098679],[23.0428105,38.3100132],[23.0430619,38.3100332],[23.0434365,38.3102526],[23.0438134,38.3102917],[23.0441889,38.3104389],[23.0445899,38.3103881],[23.045024,38.3104322],[23.0456913,38.3104016],[23.0461705,38.3104956],[23.0466758,38.3103375],[23.0475569,38.3103086],[23.0476708,38.3103456],[23.0488511,38.3102606],[23.0498932,38.3099175],[23.0509115,38.3098897],[23.0514159,38.3098037],[23.0517726,38.3096353],[23.0520925,38.309665],[23.0524727,38.3094517],[23.0524849,38.3093978],[23.0526335,38.309399],[23.0530135,38.3092038],[23.0532544,38.3091516],[23.0540888,38.3091944],[23.0543628,38.3092327],[23.0545107,38.3093195],[23.0553417,38.3096236],[23.0558094,38.3097175],[23.0562863,38.3099917],[23.0571066,38.3102416],[23.0574851,38.3101545],[23.057736,38.3102106],[23.0580679,38.3101952],[23.0582634,38.3101157],[23.0584693,38.3101444],[23.058779,38.3101289],[23.0590667,38.3101897],[23.0593542,38.310174],[23.0595477,38.3102477],[23.0600617,38.3103059],[23.0604743,38.3102371],[23.0609409,38.3104211],[23.0620853,38.3103761],[23.0624035,38.3105319],[23.0627471,38.3104986],[23.0627821,38.3104448],[23.0630691,38.310366],[23.0631937,38.3104571],[23.0632151,38.3105744],[23.0630865,38.3107897],[23.0630257,38.3110686],[23.0632173,38.3112864],[23.0633445,38.3111793],[23.0635159,38.3111987],[23.063685,38.3113893],[23.0640283,38.311374],[23.064325,38.3114304],[23.0645619,38.3116846],[23.0650178,38.3118144],[23.0655208,38.3118365],[23.0658765,38.3117492],[23.0659364,38.3115334],[23.0660975,38.3114626],[23.0661826,38.3113731],[23.0665719,38.3113402],[23.066743,38.3113776],[23.0668672,38.3115047],[23.0669478,38.3114603],[23.0674279,38.3114822],[23.0674973,38.3114286],[23.067634,38.3114658],[23.0677722,38.3113948],[23.0679433,38.3114322],[23.0680811,38.3113882],[23.0682183,38.3114254],[23.0686643,38.3114289],[23.0689289,38.3113048],[23.0689553,38.3112284],[23.069677,38.311144],[23.0707785,38.3108734],[23.0709743,38.3107668],[23.0710565,38.3105962],[23.0711366,38.3103716],[23.0714246,38.3102116],[23.0721,38.3101629],[23.0733001,38.3102355],[23.0747168,38.3106973],[23.0751501,38.3108043],[23.0766705,38.3108704],[23.0779068,38.31079],[23.0795996,38.3107852],[23.0800349,38.3107346],[23.0814585,38.3103132],[23.0817949,38.3103969],[23.0824051,38.310618],[23.0829754,38.3107486],[23.0839008,38.3108279],[23.0850194,38.3110169],[23.0861513,38.3110528],[23.086665,38.3111288],[23.0870637,38.3112581],[23.0877107,38.3116597],[23.0884294,38.3118095],[23.0888728,38.3120202],[23.0894206,38.3121236],[23.0904319,38.3126541],[23.0912781,38.3126787],[23.0920062,38.3129908],[23.0929265,38.3129168],[23.0934325,38.3127855],[23.0952059,38.3127451],[23.0960747,38.3127879],[23.0990382,38.3136308],[23.1005235,38.3137683],[23.1011149,38.3140432],[23.1015471,38.3144431],[23.1022681,38.3144126],[23.1029752,38.3145802],[23.1034416,38.314791],[23.1050998,38.315759],[23.1059517,38.3157204],[23.1075642,38.3148135],[23.1080113,38.3146727],[23.1086658,38.3144704],[23.1089513,38.3145086],[23.109256,38.3144073],[23.1094971,38.314337],[23.109853,38.314227],[23.1113878,38.3140584]]},{"id":19337,"author":"AnaDigit","name_GR":"\u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2: \u039f22 \u0391\u03b3\u03af\u03b1 \u0386\u03bd\u03bd\u03b1-\u0386\u03c3\u03ba\u03c1\u03b7","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03b1\u03c1\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b3\u03b9\u03b1 \u03bb\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03bf \u03c7\u03c9\u03bc\u03b1\u03c4\u03cc\u03b4\u03c1\u03bf\u03bc\u03bf","path":"STEREA\/Sterea_Elikon_O22_AgAnna_Askri2","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":24757,"name_EN":"Elikonas: O22 Agia Anna-Askri","description_EN":"An alternative route with less dirt roads","ascent_time":700,"descent_time":720,"marker":"O22","level":9,"ascent":1203,"descent":1511,"maxelev":1349,"minelev":372,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.90439 38.30961,23.11144 38.33334)","views":2,"millestones":"0,22.9046493,38.3164240#1,22.9102425,38.3189581#2,22.9186041,38.3206091#3,22.9290415,38.3181286#4,22.9380759,38.3164704#5,22.9477397,38.3178532#6,22.9556115,38.3218321#7,22.9612233,38.3266454#8,22.9706367,38.3238367#9,22.9790892,38.3255373#10,22.9890949,38.3289420#11,22.9980621,38.3335085#12,23.0075819,38.3317747#13,23.0180140,38.3330569#14,23.0253654,38.3278513#15,23.0312539,38.3226562#16,23.0375989,38.3185281#17,23.0433765,38.3134864#18,23.0443025,38.3104239#19,23.0551677,38.3095571#20,23.0645914,38.3116936#21,23.0747168,38.3106980#22,23.0858919,38.3110478#23,23.0966241,38.3129423#24.8,23.1113843,38.3140584","x":23.0044318,"y":38.3331295,"coor":[[22.9046493,38.316424],[22.9051536,38.3163566],[22.9052451,38.3163574],[22.9056503,38.3163432],[22.9062277,38.3163621],[22.9069813,38.3164502],[22.908755,38.3168543],[22.9090669,38.3168211],[22.9091352,38.3168398],[22.9096067,38.3168126],[22.9092089,38.317647],[22.9086859,38.3182009],[22.9086643,38.3188766],[22.9082704,38.3194227],[22.9084658,38.3196678],[22.9086363,38.3197415],[22.9087534,38.3195623],[22.9091345,38.3193226],[22.9098311,38.3194011],[22.9100505,38.319259],[22.9103082,38.3188558],[22.9105402,38.3186417],[22.9110322,38.3186373],[22.9111346,38.3186743],[22.9111992,38.3189452],[22.9113122,38.3190364],[22.9111821,38.3193236],[22.9112729,38.3193695],[22.9112594,38.3195045],[22.9114411,38.3195963],[22.9118324,38.3194377],[22.9119579,38.3194569],[22.912169,38.3198734],[22.9123044,38.3200009],[22.9122916,38.3200909],[22.9123826,38.3201278],[22.9125506,38.3203636],[22.9127463,38.3202843],[22.9129524,38.3202682],[22.9131002,38.3203327],[22.9134561,38.3202459],[22.9136483,38.3204008],[22.9141496,38.3205316],[22.9145009,38.3212108],[22.9151349,38.3211986],[22.9156304,38.3209599],[22.9175022,38.3204725],[22.9179717,38.3204408],[22.9188149,38.3206649],[22.9192503,38.3206148],[22.9197571,38.3203852],[22.9202691,38.3201826],[22.9213247,38.319967],[22.9221187,38.3196499],[22.9227388,38.3194934],[22.923579,38.3193839],[22.9243142,38.3193907],[22.9250835,38.3191995],[22.9252431,38.319237],[22.9256398,38.3194839],[22.9258912,38.3195043],[22.926121,38.3194343],[22.9268487,38.3189543],[22.9272287,38.3187865],[22.927937,38.3185317],[22.9286371,38.3183758],[22.9289709,38.3182347],[22.9291347,38.3179839],[22.9292281,38.3173223],[22.9294278,38.3169637],[22.9296941,38.3167498],[22.9300954,38.3166814],[22.9309408,38.3166846],[22.9315826,38.3166003],[22.9324221,38.3162925],[22.9342651,38.3162011],[22.934678,38.3161238],[22.9352427,38.3159126],[22.9360953,38.3154878],[22.9370937,38.3153391],[22.9376882,38.3161421],[22.9380154,38.3164515],[22.9386075,38.3166371],[22.9395558,38.3167177],[22.9399073,38.3169282],[22.9406752,38.316827],[22.9410153,38.3168886],[22.942076,38.3164611],[22.9423521,38.3164276],[22.9426625,38.3163222],[22.9432458,38.3163275],[22.9435229,38.3161497],[22.9437064,38.3161153],[22.9440927,38.316299],[22.944469,38.3163745],[22.9446585,38.3167187],[22.9454438,38.3169961],[22.9455098,38.3171769],[22.9458875,38.3171623],[22.9461354,38.3174169],[22.9462158,38.3173996],[22.9463512,38.317527],[22.9465464,38.3174746],[22.9465254,38.3173483],[22.9466635,38.3172864],[22.9469006,38.3175049],[22.9471067,38.3174887],[22.9472868,38.3176886],[22.9477388,38.3178503],[22.9477825,38.3179949],[22.9480311,38.3182044],[22.9480745,38.318367],[22.9483256,38.3184053],[22.9485664,38.3183714],[22.9487518,38.3182019],[22.9488535,38.3182929],[22.9490602,38.3182317],[22.9491387,38.3183405],[22.9495042,38.3183798],[22.9496745,38.3184715],[22.9498076,38.3187611],[22.9500829,38.3187095],[22.9506852,38.3189852],[22.9511644,38.3190706],[22.9516338,38.3190388],[22.9523283,38.3192703],[22.9529113,38.3192935],[22.9528967,38.3195187],[22.9530313,38.3197001],[22.9532702,38.3197924],[22.9534256,38.3201272],[22.9536195,38.320165],[22.9537096,38.3202649],[22.9540279,38.3204029],[22.9544009,38.3207127],[22.9544444,38.3208753],[22.9550139,38.3210425],[22.9553417,38.3213158],[22.9555819,38.321318],[22.9559563,38.3215376],[22.9559779,38.3216279],[22.9558734,38.3217351],[22.9556205,38.321823],[22.9553766,38.3220731],[22.9553746,38.3222173],[22.9552691,38.3223155],[22.9550409,38.3222774],[22.9546591,38.3225714],[22.9544494,38.3228399],[22.9544428,38.3232995],[22.9550011,38.3234576],[22.955196,38.3234233],[22.9556169,38.3235893],[22.9558657,38.3237898],[22.9560266,38.3237371],[22.9564721,38.3237862],[22.9571278,38.3243327],[22.9572651,38.3243249],[22.9575953,38.324436],[22.9576741,38.3245268],[22.9578571,38.3245285],[22.9581641,38.3246574],[22.9584637,38.3245068],[22.9587835,38.3245457],[22.9592027,38.3248288],[22.9594945,38.3252279],[22.9597685,38.3252664],[22.9599944,38.3254667],[22.9603373,38.3254877],[22.9606554,38.3256437],[22.9608239,38.3258615],[22.9608437,38.326078],[22.9612374,38.3265501],[22.9612122,38.3267121],[22.9613235,38.3267491],[22.9622709,38.3270819],[22.9625914,38.3270668],[22.962856,38.326961],[22.962961,38.3268177],[22.9632826,38.3267304],[22.9639667,38.3260876],[22.9641199,38.3257735],[22.964713,38.3259049],[22.9649425,38.3258529],[22.9652395,38.3258825],[22.9655498,38.3257861],[22.9658124,38.3258245],[22.9662145,38.3257019],[22.966503,38.3255242],[22.9667239,38.3252738],[22.9670113,38.3251772],[22.9671966,38.3250166],[22.967692,38.3247776],[22.9680127,38.3247444],[22.96822,38.3246471],[22.9688597,38.3247158],[22.9689405,38.3246625],[22.9693293,38.3246749],[22.9697685,38.3243633],[22.9700097,38.3242934],[22.9704962,38.323865],[22.9708404,38.323796],[22.9709445,38.3237158],[22.9712528,38.3237545],[22.9715858,38.3236673],[22.971767,38.3237951],[22.9720867,38.323843],[22.9723154,38.323845],[22.9726378,38.3237036],[22.9729578,38.3237244],[22.9731899,38.3234921],[22.9733387,38.3234844],[22.9734668,38.3233233],[22.9738913,38.3232369],[22.9745089,38.3224312],[22.9746475,38.3223423],[22.9748673,38.3223172],[22.975082,38.3225084],[22.9757525,38.3228206],[22.976083,38.3229136],[22.9761611,38.3230495],[22.9765492,38.323116],[22.9766503,38.323243],[22.9773201,38.3236093],[22.9775217,38.3239175],[22.9779513,38.3242817],[22.9786486,38.3251349],[22.9788313,38.3251636],[22.9790552,38.325508],[22.979288,38.3257082],[22.9800495,38.3259131],[22.9805652,38.3258455],[22.9808273,38.3259199],[22.9811136,38.3259044],[22.982344,38.3262665],[22.982733,38.3262699],[22.9830947,38.3265794],[22.9836649,38.3267105],[22.9842555,38.3270221],[22.984565,38.3273086],[22.9858135,38.3276078],[22.9863278,38.3276483],[22.9864885,38.3276137],[22.9866118,38.327795],[22.9872822,38.3281252],[22.987813,38.3286164],[22.9881102,38.328637],[22.9884171,38.3287838],[22.9887941,38.3288231],[22.9897385,38.3291918],[22.9899789,38.3291848],[22.9901633,38.3290873],[22.99046,38.3291439],[22.9905276,38.3292166],[22.9904796,38.3293784],[22.9906047,38.3294335],[22.9907162,38.3296418],[22.991168,38.3300602],[22.9920991,38.3305729],[22.9930166,38.3312386],[22.993438,38.3313774],[22.994275,38.3320695],[22.9945252,38.3321798],[22.9947431,38.3321456],[22.9950166,38.3322201],[22.9953108,38.3324569],[22.9956558,38.332568],[22.9959316,38.3326605],[22.9964241,38.3326197],[22.9968347,38.3327133],[22.9973212,38.3328526],[22.9975791,38.3330801],[22.9979857,38.3334621],[22.9984736,38.3337547],[22.9995261,38.3337637],[23.0000959,38.3339307],[23.0003332,38.334149],[23.0004927,38.3341955],[23.0008832,38.3340906],[23.0015353,38.3340962],[23.0021684,38.3338132],[23.0034523,38.3336349],[23.0044318,38.3331295],[23.0051136,38.3326306],[23.006047,38.3321429],[23.0067681,38.3315226],[23.0069056,38.3315058],[23.0070397,38.3317412],[23.0072553,38.3318692],[23.0074267,38.3318887],[23.007351,38.3317439],[23.007648,38.3317824],[23.0083013,38.3316978],[23.0085413,38.3317179],[23.0091449,38.3319213],[23.0094479,38.3323564],[23.0099164,38.3323964],[23.0100892,38.3323077],[23.0102296,38.3319755],[23.0112439,38.3322724],[23.0118268,38.3323134],[23.0131273,38.3325947],[23.0136048,38.332815],[23.0144857,38.3328224],[23.0151702,38.3329723],[23.01596,38.3329429],[23.0160381,38.3329346],[23.0167731,38.3328912],[23.0171826,38.3330613],[23.0183076,38.3330527],[23.0189378,38.3329859],[23.0190415,38.3329327],[23.0191705,38.3326995],[23.0194124,38.3325753],[23.0198556,38.3327953],[23.0204079,38.3327233],[23.0203052,38.3325467],[23.0203303,38.3323847],[23.0206546,38.3321666],[23.0210606,38.3317555],[23.0221402,38.3314491],[23.0226121,38.3312367],[23.0235632,38.3302713],[23.0238082,38.3299219],[23.0238933,38.3295441],[23.0238576,38.3294086],[23.0239411,38.329157],[23.0241513,38.3288343],[23.0244495,38.3287827],[23.0244517,38.3286205],[23.0247099,38.328136],[23.0251691,38.3280136],[23.0254468,38.3277816],[23.0260569,38.3274983],[23.0264978,38.3270424],[23.026682,38.3269538],[23.027041,38.3266323],[23.027133,38.326597],[23.0276699,38.3266556],[23.0278773,38.3265401],[23.028221,38.3265069],[23.0283023,38.3264175],[23.0284861,38.3263559],[23.0285331,38.3262662],[23.0283734,38.3262288],[23.0286959,38.3260693],[23.0286513,38.3259788],[23.0287438,38.3259074],[23.0285274,38.3258336],[23.0285515,38.3257436],[23.028358,38.3256699],[23.0283822,38.325571],[23.0281554,38.3254249],[23.0282737,38.3251285],[23.0282529,38.3249751],[23.0280388,38.32473],[23.028031,38.3244596],[23.0281687,38.3244247],[23.0281018,38.324298],[23.0291108,38.3241261],[23.0297316,38.3238969],[23.0304339,38.3235603],[23.030769,38.3233107],[23.0308512,38.3231492],[23.0311403,38.3229172],[23.0312688,38.32272],[23.0312037,38.3224491],[23.0313432,38.3222881],[23.0312642,38.3222063],[23.0313676,38.3221711],[23.0310711,38.3220966],[23.0309332,38.3221495],[23.0307739,38.3220851],[23.0308578,38.3217974],[23.0308135,38.3216889],[23.0309298,38.3215457],[23.0312287,38.321431],[23.0314506,38.3210904],[23.0322792,38.3207187],[23.03235,38.3205571],[23.0323299,38.3203496],[23.0325074,38.3199005],[23.032669,38.3197937],[23.032704,38.3197399],[23.0326242,38.3197212],[23.0329602,38.3193995],[23.0327556,38.3192987],[23.0326501,38.3191446],[23.0337673,38.3190006],[23.0352209,38.3189405],[23.0357968,38.3186388],[23.0369528,38.3185943],[23.0377546,38.3185107],[23.0380303,38.3184229],[23.038133,38.3184417],[23.0382343,38.3185687],[23.0383494,38.3185156],[23.0387578,38.3187713],[23.0390106,38.3186832],[23.039274,38.3186674],[23.0394703,38.3185248],[23.0398152,38.3183924],[23.0401246,38.3183499],[23.0403229,38.3180631],[23.0406691,38.3178317],[23.0409946,38.3174378],[23.0415484,38.3170728],[23.0423524,38.316827],[23.0437174,38.3156666],[23.0441041,38.3149668],[23.0444836,38.3148077],[23.0442325,38.3144992],[23.0440175,38.3143173],[23.043875,38.3138475],[23.0433198,38.3134464],[23.0432304,38.3132835],[23.0424015,38.3128261],[23.0420936,38.3127515],[23.0415563,38.3127291],[23.0410363,38.3122652],[23.0405191,38.3117743],[23.0405094,38.3116391],[23.0403385,38.3115926],[23.0400559,38.3113379],[23.0397595,38.3112634],[23.0395117,38.310973],[23.0398005,38.3107501],[23.040396,38.3107009],[23.041063,38.3105081],[23.0411218,38.3103824],[23.0412941,38.3103297],[23.0412612,38.3098698],[23.0415261,38.3097278],[23.0417108,38.3097608],[23.041929,38.3099699],[23.0426852,38.3098679],[23.0428091,38.3100131],[23.0430605,38.3100332],[23.043435,38.3102526],[23.043812,38.3102917],[23.0441875,38.3104389],[23.0445885,38.3103881],[23.0450225,38.3104322],[23.0456899,38.3104016],[23.0461691,38.3104956],[23.0466744,38.3103375],[23.0475555,38.3103086],[23.0476694,38.3103456],[23.0488496,38.3102605],[23.0498914,38.3099175],[23.0509097,38.3098897],[23.0514141,38.3098037],[23.0517709,38.3096353],[23.0520907,38.3096649],[23.0524709,38.3094517],[23.0524831,38.3093978],[23.0526318,38.309399],[23.0530117,38.3092038],[23.0532526,38.3091516],[23.054087,38.3091944],[23.054361,38.3092327],[23.0545086,38.3093195],[23.0553396,38.3096236],[23.0558073,38.3097175],[23.0562841,38.3099917],[23.0571044,38.3102416],[23.057483,38.3101545],[23.0577339,38.3102106],[23.0580658,38.3101952],[23.0582613,38.3101157],[23.0584668,38.3101444],[23.0587769,38.3101288],[23.0590645,38.3101897],[23.0593517,38.310174],[23.0595452,38.3102477],[23.0600592,38.3103058],[23.0604718,38.3102371],[23.0609384,38.310421],[23.0620828,38.3103761],[23.062401,38.3105319],[23.0627446,38.3104986],[23.0627796,38.3104448],[23.0630666,38.310366],[23.0631912,38.3104571],[23.0632126,38.3105744],[23.063084,38.3107897],[23.0630232,38.3110685],[23.0632148,38.3112864],[23.063342,38.3111792],[23.0635134,38.3111986],[23.0636825,38.3113892],[23.0640258,38.311374],[23.0643225,38.3114304],[23.0645594,38.3116846],[23.0650153,38.3118144],[23.0655183,38.3118365],[23.065874,38.3117492],[23.0659339,38.3115334],[23.066095,38.3114625],[23.0661797,38.3113731],[23.0665691,38.3113401],[23.0667401,38.3113776],[23.0668643,38.3115047],[23.066945,38.3114603],[23.0674251,38.3114821],[23.0674944,38.3114286],[23.0676312,38.3114658],[23.0677693,38.3113948],[23.0679404,38.3114322],[23.0680783,38.3113882],[23.068215,38.3114253],[23.0686611,38.3114289],[23.0689257,38.3113048],[23.0689517,38.3112284],[23.0696734,38.311144],[23.0707749,38.3108734],[23.0709707,38.3107668],[23.0710529,38.3105962],[23.0711337,38.3103715],[23.0714217,38.3102116],[23.0720972,38.3101629],[23.0732972,38.3102354],[23.0747139,38.3106972],[23.0751472,38.3108043],[23.0766676,38.3108703],[23.0779039,38.3107899],[23.0795968,38.3107852],[23.0800321,38.3107346],[23.0814557,38.3103131],[23.081792,38.3103969],[23.0824026,38.3106179],[23.0829729,38.3107486],[23.0838983,38.3108279],[23.0850169,38.3110169],[23.0861488,38.3110527],[23.0866625,38.3111288],[23.0870612,38.3112581],[23.0877082,38.3116597],[23.0884269,38.3118095],[23.0888703,38.3120202],[23.0894181,38.3121236],[23.0904294,38.3126541],[23.0912756,38.3126787],[23.0920037,38.3129907],[23.092924,38.3129168],[23.0934303,38.3127855],[23.0952038,38.3127451],[23.0960725,38.3127879],[23.0990361,38.3136308],[23.1005213,38.3137683],[23.1011127,38.3140432],[23.1015446,38.3144431],[23.1022656,38.3144125],[23.1029727,38.3145802],[23.1034391,38.314791],[23.1050973,38.315759],[23.1059488,38.3157204],[23.1075614,38.3148134],[23.1080081,38.3146726],[23.1086626,38.3144703],[23.1089481,38.3145086],[23.1092525,38.3144072],[23.1094935,38.314337],[23.1098495,38.314227],[23.1113843,38.3140584]]},{"id":19338,"author":"AnaDigit","name_GR":"\u039a\u03af\u03c1\u03c6\u03b7: O22 \u0396\u03b5\u03bc\u03b5\u03bd\u03cc-\u0394\u03af\u03c3\u03c4\u03bf\u03bc\u03bf","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u039a\u03af\u03c1\u03c6\u03b7\u03c2","path":"STEREA\/Sterea_Parnassos_O22_Zemeno_Distomo","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":3,"length":8655,"name_EN":"Kirfis Mt: O22 Zemeno-Distomo","description_EN":"Kirfi crossing","ascent_time":250,"descent_time":250,"marker":"O22","level":9,"ascent":571,"descent":866,"maxelev":1309,"minelev":448,"link_logo":"PRS_144px","link_ref":"http:\/\/www.toponavigator.com\/topoguide-parnassos\/","pdf_link":"","bbox":"LINESTRING(22.62944 38.42927,22.66737 38.47592)","views":14,"millestones":"0,22.6383670,38.4757906#1,22.6297390,38.4738066#2,22.6306550,38.4655201#3,22.6312352,38.4568017#4,22.6361765,38.4501202#5,22.6442525,38.4460344#6,22.6531885,38.4419041#7,22.6619751,38.4397623#8.7,22.6673671,38.4292728","x":22.6466077,"y":38.4449584,"coor":[[22.638367,38.4757906],[22.6380142,38.4756513],[22.6370305,38.4755407],[22.6317037,38.4759472],[22.6302735,38.4758044],[22.62976,38.4756767],[22.6297988,38.4754429],[22.6300987,38.4747975],[22.629884,38.4746328],[22.6296399,38.4742064],[22.6294704,38.4740783],[22.6298445,38.4736951],[22.630248,38.4735737],[22.6306501,38.4735243],[22.6308181,38.4731298],[22.6305368,38.4728471],[22.6310154,38.4717894],[22.631147,38.4708898],[22.6308096,38.4693358],[22.6307365,38.4683527],[22.6307676,38.4679205],[22.6305867,38.4671795],[22.6306738,38.4654908],[22.6306752,38.4652836],[22.6307909,38.4652309],[22.6307026,38.4650496],[22.6307549,38.4647078],[22.6312401,38.4639024],[22.6316228,38.4630598],[22.6318252,38.4620529],[22.6318106,38.4603946],[22.6319202,38.4594496],[22.6317855,38.4586911],[22.6313675,38.457767],[22.631218,38.4567109],[22.6311527,38.456584],[22.6309189,38.4562208],[22.6307705,38.4558901],[22.6309281,38.4548286],[22.6308271,38.4541065],[22.6309753,38.4540362],[22.6314407,38.4537803],[22.631725,38.4532879],[22.6322537,38.4526002],[22.6323744,38.4522772],[22.633308,38.4514996],[22.634165,38.451023],[22.6343089,38.4509886],[22.6345284,38.450892],[22.634545,38.4506219],[22.6346741,38.4504612],[22.635042,38.4503934],[22.6352698,38.4504681],[22.6354593,38.4504478],[22.6364534,38.4499908],[22.6371085,38.4498317],[22.6375402,38.4494222],[22.6379391,38.4489312],[22.6382237,38.4484208],[22.638442,38.4490001],[22.6385449,38.4490103],[22.6389616,38.4487899],[22.6400325,38.4485139],[22.64008,38.4484244],[22.6408796,38.447947],[22.641033,38.4477145],[22.6417319,38.4471098],[22.6417251,38.4468574],[22.6420222,38.4469059],[22.6421377,38.4468532],[22.6422887,38.4467468],[22.6422917,38.4465846],[22.642567,38.4465698],[22.6432355,38.4463612],[22.6434322,38.4462644],[22.6435144,38.4461572],[22.6438719,38.4460352],[22.644422,38.4460325],[22.6445987,38.4457732],[22.645486,38.4455041],[22.6460904,38.4450515],[22.6466077,38.4449584],[22.6470365,38.444702],[22.647642,38.4447991],[22.6483032,38.4443652],[22.6486728,38.4442072],[22.648936,38.4442283],[22.6499593,38.4440418],[22.6504627,38.4440837],[22.6505191,38.4441294],[22.6507949,38.4440875],[22.6512531,38.44348],[22.6513742,38.4431299],[22.6516276,38.4430608],[22.6519529,38.4428212],[22.6522753,38.4427348],[22.6523016,38.4425549],[22.6527702,38.4420015],[22.6528633,38.4419215],[22.6531393,38.4418706],[22.6534756,38.4420952],[22.6535375,38.4424654],[22.6536059,38.4424842],[22.6536714,38.4426562],[22.6537515,38.4426661],[22.6543207,38.4422491],[22.6544852,38.4420257],[22.6545638,38.4421168],[22.6552598,38.4416561],[22.6556169,38.4415521],[22.6558162,38.4413111],[22.656069,38.4412689],[22.6562439,38.4411087],[22.6565668,38.4409953],[22.6566842,38.4408434],[22.6570407,38.4407754],[22.6572388,38.4405974],[22.6578391,38.440352],[22.6580002,38.4403178],[22.6580207,38.4404442],[22.6582384,38.4404467],[22.658329,38.4405018],[22.6584338,38.4404129],[22.6587546,38.4404166],[22.6590197,38.4403295],[22.6592141,38.4403497],[22.6592354,38.4404401],[22.6593614,38.4404415],[22.6601797,38.4401805],[22.6605929,38.4401402],[22.6607526,38.4401781],[22.661143,38.4401375],[22.6613473,38.4402389],[22.6615791,38.4400974],[22.6617674,38.4398292],[22.6619158,38.4397813],[22.6620772,38.4397291],[22.6624373,38.4394629],[22.6627243,38.4394301],[22.6631361,38.4391599],[22.6627071,38.4388126],[22.6626979,38.4386863],[22.6628321,38.4384986],[22.6632397,38.4381428],[22.6639487,38.4369704],[22.6642864,38.4365597],[22.6645896,38.4362748],[22.6648369,38.4359081],[22.6649754,38.435716],[22.6650508,38.4353563],[22.6658881,38.4334374],[22.6660118,38.4323214],[22.6664866,38.432124],[22.6660517,38.4320965],[22.6660925,38.4311237],[22.6659758,38.4306178],[22.6661573,38.4306378],[22.6661523,38.4302863],[22.666123,38.4300111],[22.6663557,38.4298155],[22.6667805,38.4296537],[22.6673181,38.4294435],[22.6673671,38.4292728]]},{"id":19340,"author":"AnaDigit","name_GR":"\u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1: O22 \u03a3\u03bf\u03cd\u03c1\u03c4\u03b1-\u03ba\u03b1\u03c4. \u039c\u03c0\u03ac\u03c6\u03b9","description_GR":"\u03a3\u03ba\u03bf\u03cd\u03c1\u03c4\u03b1-\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae (\u039c\u03c0\u03cc\u03c1\u03c3\u03b9)-\u03a3\u03ba\u03af\u03c0\u03b9\u03b6\u03b1-\u03ba\u03b1\u03c4. \u039c\u03c0\u03ac\u03c6\u03b9","path":"ATTIKI\/Attiki_Parnitha_O22_Skourta_Bafi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":27854,"name_EN":"Parnitha: O22 Skourta-Bafi ref.","description_EN":"Skourta-Agia Paraskevi (Borsi)-Skipiza-Bafi refuge","ascent_time":705,"descent_time":675,"marker":"O22","level":9,"ascent":1256,"descent":655,"maxelev":1283,"minelev":492,"link_logo":"parnitha_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnitha","pdf_link":"","bbox":"LINESTRING(23.55159 38.16759,23.72748 38.21399)","views":8,"millestones":"0,23.5515935,38.2139929#1,23.5609107,38.2095309#2,23.5721424,38.2085177#3,23.5832306,38.2072498#4,23.5919044,38.2027580#5,23.5954006,38.1972896#6,23.6024743,38.1948062#7,23.6126278,38.1908680#8,23.6148708,38.1957179#9,23.6259184,38.1948724#10,23.6310088,38.1958314#11,23.6318861,38.1913463#12,23.6389741,38.1900722#13,23.6467524,38.1870639#14,23.6524397,38.1823777#15,23.6509097,38.1760113#16,23.6581638,38.1793987#17,23.6614166,38.1774954#18,23.6645910,38.1720406#19,23.6718008,38.1693391#20,23.6765629,38.1731382#21,23.6831022,38.1740908#22,23.6902107,38.1701759#23,23.6982302,38.1712059#24,23.7045986,38.1733219#25,23.7120496,38.1764746#26,23.7226349,38.1779940#27,23.7256120,38.1725625#27.9,23.7271341,38.1675858","x":23.6650304,"y":38.179209,"coor":[[23.5515935,38.2139929],[23.5518788,38.2138768],[23.5519922,38.2138322],[23.5519927,38.2137511],[23.5525308,38.2135548],[23.5524853,38.2135186],[23.5533512,38.2127198],[23.5539948,38.2120733],[23.5547521,38.2115084],[23.5548725,38.2114458],[23.555504,38.2111328],[23.557314,38.2102744],[23.5589283,38.2096496],[23.5592029,38.2095785],[23.5604254,38.209529],[23.5625634,38.2095415],[23.5671908,38.2093154],[23.5688034,38.2089698],[23.5704511,38.2084711],[23.5714471,38.2084477],[23.5725201,38.2085598],[23.5728973,38.2085251],[23.5739917,38.2083398],[23.5749302,38.2080008],[23.5762559,38.2078794],[23.5772396,38.2076306],[23.5788355,38.2073795],[23.5791106,38.2072092],[23.5796155,38.207175],[23.5800038,38.2071944],[23.580666,38.2072373],[23.5810994,38.207347],[23.582767,38.2073529],[23.5835332,38.2071844],[23.5838996,38.2070235],[23.5842321,38.2068084],[23.5844283,38.2064576],[23.5845199,38.2064038],[23.5848623,38.2064501],[23.5853974,38.2067674],[23.5856827,38.2068135],[23.5860028,38.2067606],[23.5867247,38.2063485],[23.586911,38.2061599],[23.5871999,38.2055661],[23.5876256,38.2050179],[23.5893603,38.2037982],[23.5898187,38.2035295],[23.5901951,38.2034226],[23.5909845,38.2031911],[23.5918892,38.2027616],[23.593639,38.2023351],[23.594565,38.202176],[23.5956424,38.2014768],[23.5952915,38.2009168],[23.5951339,38.2004927],[23.5951384,38.1998843],[23.5947969,38.1996849],[23.5947632,38.1995766],[23.595417,38.1990742],[23.5956816,38.1987146],[23.5963574,38.1983609],[23.5966561,38.1980375],[23.5963353,38.1980364],[23.5956737,38.1978899],[23.5952676,38.1969873],[23.595291,38.1968792],[23.595623,38.1967362],[23.5962839,38.1969908],[23.5964552,38.1970004],[23.596776,38.1968212],[23.5969602,38.1965515],[23.5971892,38.1964441],[23.5976263,38.1958598],[23.5981642,38.1956634],[23.5984154,38.1956642],[23.5986773,38.1958093],[23.5987924,38.1956385],[23.5987936,38.1954312],[23.5987486,38.1952959],[23.5985213,38.1951058],[23.5984991,38.1949796],[23.5989911,38.194819],[23.5994379,38.1945502],[23.6000577,38.1939845],[23.6003091,38.1939493],[23.6008992,38.1940505],[23.6008727,38.1942622],[23.6010084,38.194515],[23.6018523,38.1947251],[23.6022388,38.1950419],[23.6024915,38.1947904],[23.6031678,38.194324],[23.6046337,38.1935539],[23.6055829,38.1933047],[23.6066355,38.1929297],[23.6076087,38.1924643],[23.6090267,38.1920905],[23.6100555,38.1918957],[23.6120464,38.1911633],[23.6126762,38.1908409],[23.6130191,38.1907789],[23.6137612,38.1908174],[23.6139101,38.1907278],[23.6147675,38.1905503],[23.6155372,38.1903501],[23.6158598,38.1910902],[23.6161883,38.1915959],[23.6162424,38.1921729],[23.6159784,38.1924244],[23.6158056,38.1927122],[23.6154127,38.1935942],[23.6152726,38.1941705],[23.614538,38.1948891],[23.6142845,38.1953209],[23.6140032,38.1955994],[23.6143675,38.1958078],[23.615521,38.1955953],[23.617359,38.1957275],[23.6180104,38.1956395],[23.619324,38.1955897],[23.6202956,38.1954126],[23.621037,38.1955952],[23.6221002,38.1953733],[23.6227279,38.1954475],[23.6232647,38.1954402],[23.6238693,38.1955683],[23.6240408,38.1955328],[23.6244876,38.1952548],[23.6249109,38.195112],[23.6263629,38.1947741],[23.6272391,38.1946958],[23.6270991,38.1948621],[23.6263201,38.1953463],[23.6262853,38.1954363],[23.6263415,38.1956167],[23.6267292,38.1957261],[23.6267743,38.1958524],[23.6265675,38.1960861],[23.6265894,38.1962664],[23.6270557,38.1966464],[23.6277739,38.1969011],[23.6286644,38.196958],[23.628824,38.1970125],[23.6293706,38.1973207],[23.6296886,38.1976732],[23.6299054,38.1977099],[23.6301343,38.1976205],[23.6305592,38.1971532],[23.6310995,38.19688],[23.6312233,38.1968128],[23.6312696,38.1966868],[23.6311584,38.1961006],[23.6308515,38.1958022],[23.6312395,38.1958756],[23.6313082,38.1958217],[23.6312176,38.1956772],[23.6309558,38.1955142],[23.6309333,38.195433],[23.631322,38.1953531],[23.6319976,38.1949947],[23.6323862,38.1949328],[23.6324552,38.1948429],[23.6321588,38.1947338],[23.631508,38.1947138],[23.6309376,38.1945858],[23.6300835,38.1941145],[23.6302207,38.1940789],[23.6308595,38.1942251],[23.6310767,38.1941897],[23.6305998,38.1936475],[23.6307264,38.1934496],[23.6303296,38.1928715],[23.6302301,38.1922223],[23.6302888,38.1919161],[23.6303464,38.1918081],[23.6305869,38.1916647],[23.6312493,38.1916667],[23.631558,38.1915776],[23.6323258,38.1910392],[23.6328297,38.1907704],[23.6334403,38.1906191],[23.6346861,38.1903887],[23.6347429,38.190461],[23.6347189,38.1906952],[23.634431,38.191163],[23.6343955,38.1914152],[23.6350694,38.1913993],[23.6359248,38.1916092],[23.6361532,38.1916099],[23.6362335,38.1915381],[23.6361813,38.1905465],[23.6362956,38.1905199],[23.6367172,38.1907014],[23.6370937,38.1907747],[23.637151,38.1907388],[23.6370619,38.1902879],[23.6371081,38.1901799],[23.6377468,38.1903261],[23.6381931,38.1901472],[23.638456,38.1900939],[23.6389242,38.1900864],[23.6397247,38.1898545],[23.6396351,38.1895027],[23.6399346,38.1889629],[23.6398568,38.1885391],[23.6402579,38.1882519],[23.6410248,38.1878757],[23.6415384,38.1879314],[23.6422652,38.188231],[23.6428809,38.1884311],[23.6431207,38.1884319],[23.6432124,38.1883601],[23.6432479,38.1880988],[23.6429643,38.1877194],[23.6436608,38.1877215],[23.643844,38.1876139],[23.6439937,38.1873711],[23.6441997,38.1872815],[23.6444397,38.1872282],[23.6451133,38.1872483],[23.6460283,38.1869446],[23.6464845,38.1870631],[23.6468727,38.1870643],[23.6471051,38.1871867],[23.6470944,38.1870424],[23.6473585,38.1867368],[23.6480603,38.1864009],[23.6483575,38.1863297],[23.6485992,38.1863665],[23.6492047,38.1863142],[23.6498284,38.1860142],[23.6504221,38.186034],[23.6505806,38.1863229],[23.6508741,38.1862877],[23.6516897,38.1860152],[23.6519088,38.1860023],[23.6519721,38.1858989],[23.6521195,38.185683],[23.6521207,38.1854307],[23.6518034,38.184907],[23.65184,38.1844295],[23.6516368,38.1839241],[23.6522101,38.1834211],[23.6524363,38.1831244],[23.6527272,38.1827377],[23.6527393,38.1825845],[23.6526143,38.182458],[23.6522156,38.1822766],[23.6520349,38.1818434],[23.6519439,38.1817891],[23.6515558,38.1817519],[23.6513974,38.181463],[23.6511123,38.1813901],[23.6507826,38.1810917],[23.6502131,38.1807836],[23.6501356,38.1802786],[23.6497613,38.1797728],[23.6491574,38.1795006],[23.6485663,38.1789671],[23.6485192,38.1788048],[23.6485903,38.1782642],[23.6487279,38.17785],[23.6490039,38.1774453],[23.6490741,38.177085],[23.6494187,38.1766444],[23.6499219,38.1764837],[23.6507098,38.17645],[23.6509501,38.1763426],[23.6510193,38.1761986],[23.650906,38.176009],[23.6509184,38.1757927],[23.6510791,38.175631],[23.651388,38.1754877],[23.6516732,38.1755246],[23.6523222,38.175905],[23.6524706,38.1759145],[23.6528365,38.1757984],[23.6533071,38.175259],[23.6533987,38.1752052],[23.6535128,38.1752236],[23.6539205,38.1759188],[23.6540782,38.1763879],[23.654077,38.1766402],[23.6543181,38.1773304],[23.6545002,38.1774571],[23.6550022,38.1775217],[23.6553326,38.1776849],[23.6556732,38.1780824],[23.6560239,38.1787864],[23.6571978,38.1792225],[23.6579163,38.1794048],[23.6583356,38.1793925],[23.6591267,38.1793723],[23.6597552,38.1792659],[23.6604054,38.179394],[23.6611824,38.1792611],[23.6616388,38.1793345],[23.6623012,38.1792913],[23.6632143,38.179357],[23.6645958,38.17937],[23.6649273,38.1792808],[23.6650304,38.179209],[23.6650308,38.1791189],[23.6648943,38.1790103],[23.6648419,38.1789967],[23.6642981,38.1788509],[23.6631274,38.1783969],[23.6629096,38.1781214],[23.66234,38.1780747],[23.6616905,38.1777845],[23.6613383,38.1774139],[23.6612817,38.1773056],[23.6613165,38.1771886],[23.6623242,38.1765335],[23.6627485,38.1761382],[23.663275,38.1758513],[23.6642814,38.1754937],[23.6646699,38.1754227],[23.6647273,38.1753508],[23.6647288,38.1750263],[23.6652437,38.1747754],[23.6652099,38.1746672],[23.664698,38.1742692],[23.6644236,38.1743405],[23.6637729,38.1743386],[23.6635298,38.1742794],[23.6630748,38.1739356],[23.6629388,38.1737009],[23.6632598,38.1734134],[23.6633869,38.1730803],[23.6636618,38.1729008],[23.6638802,38.172577],[23.6644526,38.1722361],[23.6647169,38.1718584],[23.6651289,38.1716252],[23.6652422,38.1713597],[23.6657168,38.1714151],[23.6660433,38.171718],[23.6664877,38.1718995],[23.6669538,38.1723154],[23.6671023,38.1723158],[23.667194,38.1722169],[23.667354,38.1721903],[23.6677071,38.1723716],[23.6680721,38.1724447],[23.668426,38.1724457],[23.6690073,38.1726456],[23.6692476,38.1725291],[23.6692492,38.1721686],[23.6695907,38.1718497],[23.6696038,38.1714622],[23.6693762,38.1712993],[23.6693311,38.171191],[23.6699257,38.1709764],[23.6701311,38.170986],[23.6706294,38.1706179],[23.6711119,38.1699523],[23.6715129,38.1696199],[23.6715252,38.1694217],[23.6718567,38.1693235],[23.6718686,38.1692244],[23.6721547,38.169063],[23.6723499,38.1688111],[23.6724838,38.1690233],[23.6727575,38.1690962],[23.6728833,38.1690425],[23.6729053,38.1692408],[23.6730648,38.1693133],[23.6732821,38.1692238],[23.6734076,38.1692422],[23.6735337,38.1691164],[23.6743669,38.1691637],[23.6749917,38.1690348],[23.6753882,38.1690179],[23.6753261,38.1695765],[23.6751759,38.1699906],[23.6744431,38.1704753],[23.6744081,38.1706374],[23.6745896,38.1708903],[23.6746337,38.1712509],[23.6747924,38.1715037],[23.6753951,38.1720281],[23.6755312,38.1722447],[23.6758958,38.172399],[23.6759181,38.1725252],[23.6757911,38.1728493],[23.6758585,38.1731018],[23.6760978,38.1732016],[23.6766347,38.173131],[23.6769067,38.1735734],[23.6770093,38.1736187],[23.6771121,38.173592],[23.6773876,38.1732503],[23.6776397,38.1730527],[23.6779482,38.1729814],[23.6780608,38.1733422],[23.6782085,38.1735049],[23.6785275,38.173668],[23.6788014,38.1736867],[23.6790644,38.1735973],[23.6792027,38.1732913],[23.6792941,38.1732915],[23.6795901,38.1734726],[23.6797843,38.1734551],[23.6801077,38.1731721],[23.6805292,38.1727992],[23.6808825,38.1729444],[23.6812823,38.1729004],[23.6813275,38.1730087],[23.6811091,38.1733325],[23.6810617,38.1737289],[23.6811182,38.1738643],[23.6813463,38.173919],[23.6819294,38.1737403],[23.6820089,38.1738307],[23.6820642,38.1742454],[23.6821892,38.1743629],[23.6823147,38.1743812],[23.6825663,38.1742828],[23.6828309,38.1738329],[23.6829796,38.1737702],[23.6831601,38.1742574],[23.6831218,38.1747079],[23.6837633,38.1742139],[23.6838668,38.1740339],[23.6840729,38.1738903],[23.6854329,38.1735605],[23.6859616,38.1727418],[23.6858606,38.1723269],[23.6859315,38.1717773],[23.6860804,38.1716696],[23.6865376,38.1715446],[23.6867328,38.1712658],[23.6875102,38.1710335],[23.6879892,38.1711429],[23.6883099,38.1708914],[23.6885844,38.170775],[23.6890177,38.1708843],[23.6894518,38.1708223],[23.6896353,38.1706246],[23.6896938,38.1703003],[23.6897855,38.1702194],[23.6901165,38.1702203],[23.6903682,38.1701038],[23.6904936,38.1701401],[23.6906527,38.1703208],[23.6908582,38.1703033],[23.6910999,38.1698443],[23.6914769,38.1697732],[23.6917173,38.1696206],[23.6918103,38.1692153],[23.692301,38.1692797],[23.6925299,38.1691361],[23.6927135,38.1689203],[23.6928848,38.1689027],[23.6933068,38.1689939],[23.6934562,38.16876],[23.6936046,38.1687423],[23.6938437,38.1689142],[23.6941172,38.1690141],[23.6942644,38.1693209],[23.6944926,38.1693395],[23.6949956,38.1691831],[23.6951881,38.1695576],[23.6954153,38.1698286],[23.6960532,38.1701547],[23.6964329,38.1702097],[23.6970078,38.1706123],[23.6971793,38.1705406],[23.6977266,38.1707133],[23.6977497,38.1706412],[23.6979144,38.1705831],[23.6982608,38.1712824],[23.6987496,38.1718064],[23.6987782,38.1721354],[23.6988442,38.1721266],[23.6989597,38.1718024],[23.6992344,38.1716409],[23.69936,38.1716322],[23.6994493,38.1721191],[23.6995405,38.1721554],[23.6995056,38.1723176],[23.6995957,38.1726242],[23.6997206,38.1727777],[23.6996515,38.1729218],[23.6997534,38.1731383],[23.699477,38.1737144],[23.6995109,38.1737956],[23.6998081,38.1737063],[23.7000364,38.1737159],[23.7002645,38.1737705],[23.7006062,38.1739877],[23.7012344,38.1738992],[23.7019529,38.1740902],[23.7023626,38.1744248],[23.7025683,38.1743622],[23.7027278,38.1744617],[23.7029911,38.1742821],[23.7032672,38.1737601],[23.7035986,38.1736888],[23.7038047,38.1735452],[23.7044335,38.1733214],[23.7046732,38.173322],[23.7048792,38.1731964],[23.7052345,38.1731252],[23.7050734,38.1734402],[23.7050828,38.1739539],[23.7049332,38.174224],[23.704967,38.1743502],[23.7054116,38.1745136],[23.7056401,38.1744781],[23.7057775,38.1743703],[23.7059146,38.1743526],[23.7059827,38.1744429],[23.7061879,38.1745245],[23.7063595,38.1744348],[23.7065994,38.1744084],[23.7067211,38.1745709],[23.7069835,38.1746076],[23.7074862,38.1745368],[23.7076919,38.1744832],[23.7078637,38.1743304],[23.7083666,38.1741875],[23.7087434,38.1741884],[23.7089941,38.1743152],[23.7091311,38.1743155],[23.7094953,38.1745958],[23.7096551,38.1746142],[23.7104528,38.1749767],[23.7108406,38.1750678],[23.7108858,38.1751941],[23.7111708,38.175312],[23.7111361,38.175402],[23.7113631,38.175745],[23.7113507,38.1759973],[23.7114754,38.176232],[23.7119087,38.1763772],[23.7124552,38.1767481],[23.7130593,38.1770109],[23.7134348,38.1773273],[23.7144144,38.1779245],[23.7148823,38.1779797],[23.715213,38.1780887],[23.7158639,38.1780452],[23.7159779,38.1780995],[23.7171765,38.1781565],[23.7176441,38.1782838],[23.7187631,38.1782685],[23.7192536,38.1783868],[23.7198929,38.1784244],[23.7206584,38.178264],[23.7210466,38.1782829],[23.7225546,38.1780432],[23.722875,38.1778456],[23.7232177,38.1778104],[23.7237207,38.1776313],[23.7240525,38.1774609],[23.724602,38.1770476],[23.7249902,38.1770575],[23.7255943,38.1773293],[23.7256745,38.1772394],[23.7262687,38.1771236],[23.7265432,38.1769981],[23.7263173,38.176619],[23.7263068,38.1763666],[23.7262163,38.1761591],[23.7258186,38.1756355],[23.7252835,38.1752377],[23.7251473,38.175021],[23.7246694,38.1746053],[23.7246716,38.1740195],[23.7249807,38.173804],[23.7249469,38.1736597],[23.7250387,38.1735608],[23.7249934,38.1734525],[23.7248924,38.173263],[23.7248591,38.1730106],[23.7250308,38.1728848],[23.7253278,38.1728584],[23.7255337,38.1727508],[23.7256604,38.1724537],[23.7260265,38.1722382],[23.7262328,38.1720314],[23.7263939,38.1716983],[23.7270847,38.171362],[23.7271311,38.1711638],[23.7269047,38.1706676],[23.7270879,38.1705058],[23.7270657,38.1703525],[23.7274665,38.17002],[23.7273524,38.1700107],[23.7272959,38.1698483],[23.7274449,38.1696955],[23.7273993,38.1696548],[23.7273242,38.1696186],[23.7274049,38.1694205],[23.7273486,38.169186],[23.7271209,38.1690413],[23.7268138,38.1687251],[23.7266845,38.1684815],[23.7266681,38.1682787],[23.7269998,38.1681172],[23.7270758,38.1679281],[23.7271341,38.1675858]]},{"id":19341,"author":"AnaDigit","name_GR":"\u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1: O22 \u0391\u03c0\u03cc \u03c4\u03b7 \u03a7\u03bf\u03cd\u03bd\u03b7 \u03c3\u03c4\u03bf \u039c\u03c0\u03ac\u03c6\u03b9","description_GR":"\u0397 \u03ba\u03bb\u03b1\u03c3\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2","path":"ATTIKI\/Attiki_O22_Parnitha_Bafi_Thrakomakedones","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":4505,"name_EN":"Parnitha Mt: O22 Bafi refuge via the Chouni ravine","description_EN":"The classic ascent of Mt. Parnitha","ascent_time":90,"descent_time":110,"marker":"O22","level":9,"ascent":57,"descent":666,"maxelev":1143,"minelev":523,"link_logo":"parnitha_144px","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.parnitha","pdf_link":"","bbox":"LINESTRING(23.72533 38.14394,23.74697 38.16807)","views":49,"millestones":"0,23.7271373,38.1675858#1,23.7298609,38.1636875#2,23.7368896,38.1583163#3,23.7429571,38.1532553#4,23.7450979,38.1468362#4.5,23.7453240,38.1439416","x":23.7398752,"y":38.1575522,"coor":[[23.7271373,38.1675858],[23.727079,38.1679282],[23.7269313,38.1677476],[23.7269051,38.1676799],[23.7267796,38.1676616],[23.7263111,38.1677867],[23.726243,38.1676784],[23.7263119,38.1675614],[23.7262664,38.1675162],[23.7260378,38.1676058],[23.7253283,38.1680728],[23.7256488,38.1672489],[23.7263941,38.1663854],[23.7273544,38.1660091],[23.7275605,38.1658474],[23.7276646,38.1654781],[23.7274112,38.1651305],[23.727628,38.1651671],[23.727788,38.1650953],[23.7277313,38.1650051],[23.7278568,38.1650234],[23.7281654,38.164916],[23.7282004,38.1647088],[23.7283727,38.1644208],[23.728362,38.1642315],[23.7284535,38.1641776],[23.7289443,38.1642058],[23.7291275,38.164062],[23.7294932,38.1639367],[23.7296879,38.1637659],[23.7300424,38.1636045],[23.7301068,38.1635415],[23.7302447,38.1633075],[23.7304276,38.1632178],[23.7304623,38.1631007],[23.7307484,38.1629031],[23.7315029,38.1626164],[23.731891,38.1625993],[23.7321886,38.1623746],[23.7328281,38.162322],[23.7331483,38.1621515],[23.7340413,38.1614325],[23.7341106,38.1611984],[23.7339855,38.1610719],[23.7339532,38.1605581],[23.7340921,38.1600267],[23.7353613,38.1594167],[23.7355561,38.1592008],[23.735454,38.1590294],[23.7354774,38.1588762],[23.7353757,38.1585876],[23.7358552,38.1585526],[23.736048,38.158499],[23.7363333,38.1585357],[23.7366532,38.1584462],[23.7370192,38.1582488],[23.7373962,38.1581505],[23.7390057,38.158118],[23.7393945,38.1579386],[23.7398752,38.1575522],[23.7404959,38.1573508],[23.7411013,38.1572079],[23.74141,38.1570644],[23.7417535,38.1567587],[23.7419028,38.1564977],[23.7419942,38.1564708],[23.7419034,38.1563354],[23.7427027,38.1562471],[23.7425775,38.1561386],[23.7423151,38.156102],[23.7423154,38.1560209],[23.7424526,38.1559671],[23.7422818,38.1558406],[23.7423513,38.1555433],[23.7422151,38.1553267],[23.7423189,38.1550385],[23.7423199,38.1547501],[23.7426528,38.1542101],[23.7426994,38.1539308],[23.7428368,38.153823],[23.742769,38.1536245],[23.7429072,38.1532643],[23.7440036,38.1530685],[23.7442328,38.1527986],[23.7448159,38.1525114],[23.7451483,38.1521156],[23.7458922,38.1515314],[23.7461288,38.1513922],[23.7464142,38.1513568],[23.7467395,38.1510511],[23.7467518,38.1507807],[23.7466268,38.1506182],[23.7466846,38.1504201],[23.7464572,38.1501672],[23.7464465,38.1499779],[23.7466528,38.149726],[23.746952,38.1490057],[23.7468856,38.1483927],[23.7466475,38.1479415],[23.7465122,38.1474636],[23.7459191,38.1473541],[23.745293,38.1469021],[23.7450194,38.1468114],[23.7449057,38.146694],[23.7448611,38.1463875],[23.7446908,38.1461348],[23.744338,38.1458636],[23.7442249,38.1455659],[23.7443284,38.1453318],[23.7442488,38.1452596],[23.7442379,38.1451153],[23.7445509,38.144724],[23.744768,38.1446523],[23.7447342,38.1445441],[23.7448942,38.1444543],[23.7452026,38.1443784],[23.7451347,38.144216],[23.7452154,38.1439999],[23.745324,38.1439416]]}],{"extent":[22.49338,38.14394,23.74697,38.64015],"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_O22 = new getPoiCollection("O22",[{"name":"ecoktima","owner":"AnaDigit","x":23.553984,"y":38.215659,"photo":"ecoktima_logo","type":200,"zoom_level":13,"id":1,"hlink_GR":"http:\/\/www.ecoktima.gr\/","hlink_EN":"http:\/\/www.ecoktima.gr\/","description":"\u03a4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf \u03bf\u03b9\u03ba\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03ba\u03c4\u03ae\u03bc\u03b1 \u03ba\u03b1\u03bb\u03bb\u03b9\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1\u03c2, \u03bc\u03ac\u03b8\u03b7\u03c3\u03b7\u03c2, \u03b4\u03b9\u03b1\u03bc\u03bf\u03bd\u03ae\u03c2, \u03b5\u03c5\u03b5\u03be\u03af\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b2\u03b1\u03bb\u03bb\u03bf\u03bd\u03c4\u03b9\u03ba\u03bf\u03cd \u03ba\u03b1\u03b9 \u03c8\u03b7\u03c6\u03b9\u03b1\u03ba\u03bf\u03cd \u03b5\u03b3\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd.
\u03a3\u03c4\u03bf ECOKTHMA<\/b> \u03bf \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c0\u03c4\u03b7\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03b9:
\u03bd\u03b1 \u03ba\u03b1\u03bb\u03bb\u03b9\u03b5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03ba\u03b1\u03bb\u03cd\u03c8\u03b5\u03b9 (\u03c4\u03b7 \u03c6\u03cd\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03bc\u03c5\u03c3\u03c4\u03b9\u03ba\u03ac \u03c4\u03b7\u03c2),
\u03bd\u03b1 \u03c0\u03b1\u03af\u03be\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03bc\u03ac\u03b8\u03b5\u03b9 (\u03c6\u03c5\u03c3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c8\u03b7\u03c6\u03b9\u03b1\u03ba\u03ac),
\u03bd\u03b1 \u03bc\u03b5\u03af\u03bd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03b1\u03bb\u03b1\u03c1\u03ce\u03c3\u03b5\u03b9 (\u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03c1\u03c5\u03b8\u03bc\u03bf\u03cd\u03c2 \u03c4\u03b7\u03c2 \u03c6\u03cd\u03c3\u03b7\u03c2).","height":0,"width":0},{"name":"\u039a\u03c4\u03ae\u03bc\u03b1 \u039b\u03b9\u03b2\u03cc\u03bd\u03bf\u03c4\u03bf\u03c2","owner":"AnaDigit","x":23.174342,"y":38.245571,"photo":"Livonotos_logo","type":200,"zoom_level":12,"id":29,"hlink_GR":"http:\/\/livonotos.blogspot.gr\/2009\/03\/blog-post_17.html","hlink_EN":"","description":"\u03a4\u03bf \u039a\u03c4\u03ae\u03bc\u03b1 \u039b\u03b9\u03b2\u03bf\u03bd\u03bf\u03c4\u03bf\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03af\u03b1 \u03bf\u03b9\u03ba\u03bf\u03b3\u03b5\u03bd\u03b5\u03b9\u03b1\u03ba\u03ae \u03b5\u03c0\u03b9\u03c7\u03b5\u03af\u03c1\u03b7\u03c3\u03b7 \u03c0\u03bf\u03c5 \u03be\u03b5\u03ba\u03af\u03bd\u03b7\u03c3\u03b5 \u03c4\u03bf 2013 \u03bc\u03b5 \u03c3\u03ba\u03bf\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03bd\u03ac\u03b4\u03b5\u03b9\u03be\u03b7 \u03c4\u03c9\u03bd \u03c6\u03b1\u03c1\u03bc\u03b1\u03ba\u03b5\u03c5\u03c4\u03b9\u03ba\u03ce\u03bd \u03c6\u03c5\u03c4\u03ce\u03bd \u03c4\u03b7\u03c2 \u0395\u03bb\u03bb\u03ac\u03b4\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03cc\u03c7\u03b9 \u03bc\u03cc\u03bd\u03bf. \u03a6\u03b9\u03bb\u03bf\u03b4\u03bf\u03be\u03b5\u03af \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c6\u03ad\u03c1\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf \u03c0\u03ac\u03c1\u03ba\u03bf \u03c0\u03bf\u03b9\u03ba\u03af\u03bb\u03c9\u03bd \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03bf\u03c4\u03ae\u03c4\u03c9\u03bd \u03b3\u03b5\u03bc\u03ac\u03c4\u03bf \u03b1\u03c0\u03cc \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac \u03c0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03ac \u03b1\u03c1\u03ce\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03b8\u03bb\u03b7\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b5\u03ba\u03b4\u03b7\u03bb\u03ce\u03c3\u03b5\u03b9\u03c2.","height":0,"width":0},{"name":"\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2
\u039b\u03ac\u03ba\u03ba\u03b1\u03c2 \u03a3\u03c4\u03b5\u03af\u03c1\u03b9\u03b4\u03b1\u03c2","owner":"AnaDigit","x":22.763041,"y":38.38793,"photo":"AgGeorgios_Lakas_Stireida","type":203,"zoom_level":14,"id":44,"hlink_GR":"http:\/\/www.kiriakivillage.gr\/thriskeutikaMnimeia.html","hlink_EN":"http:\/\/www.kiriakivillage.gr\/thriskeutikaMnimeia.html","description":"\u039d\u03b1\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5 \u03c4\u03b7\u03c2 \u03c4\u03bf\u03c5\u03c1\u03ba\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1\u03c2 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03b5 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf \u03ba\u03c4\u03af\u03c3\u03bc\u03b1, \u03c0\u03b1\u03bb\u03b1\u03b9\u03bf\u03c7\u03c1\u03b9\u03c3\u03c4\u03b9\u03b1\u03bd\u03b9\u03ba\u03ce\u03bd \u03c7\u03c1\u03cc\u03bd\u03c9\u03bd (\u03af\u03c3\u03c9\u03c2 5\u03bf\u03c2 \u03b1\u03b9.). \u0395\u03bd\u03c4\u03bf\u03c0\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03c4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b4\u03b1\u03c0\u03ad\u03b4\u03bf\u03c5 \u03c0\u03b1\u03bb\u03b1\u03b9\u03bf\u03c7\u03c1\u03b9\u03c3\u03c4\u03b9\u03b1\u03bd\u03b9\u03ba\u03ae\u03c2 \u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae\u03c2 \u03bc\u03b5 \u03b8\u03ce\u03c1\u03b1\u03ba\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03b1\u03bb\u03b1\u03b9\u03bf\u03c7\u03c1\u03b9\u03c3\u03c4\u03b9\u03b1\u03bd\u03b9\u03ba\u03ac \u03c3\u03cd\u03bc\u03b2\u03bf\u03bb\u03b1 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1\u03c5\u03c1\u03bf\u03cd\u03c2, \u03b5\u03bd\u03ce \u03c0\u03bf\u03bb\u03bb\u03ac \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac \u03bc\u03ad\u03bb\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03cc\u03c3\u03bf\u03c8\u03b7 \u039f \u03bd\u03b1\u03cc\u03c2 \u03b1\u03bd\u03b1\u03ba\u03b1\u03b9\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1.","height":0,"width":0},{"name":"\u039c\u03bf\u03bd\u03ae \u0399\u03b5\u03c1\u03bf\u03c5\u03c3\u03b1\u03bb\u03ae\u03bc
\u0394\u03b1\u03cd\u03bb\u03b5\u03b9\u03b1\u03c2","owner":"AnaDigit","x":22.691859722138,"y":38.515848288109,"photo":"moni_ierousalim_davlia","type":203,"zoom_level":14,"id":46,"hlink_GR":"http:\/\/www.ecclesia.gr\/greek\/dioceses\/Thebes\/photos_gersali.html","hlink_EN":"http:\/\/www.ecclesia.gr\/greek\/dioceses\/Thebes\/photos_gersali.html","description":"","height":0,"width":0},{"name":"\u03a6\u03a9\u039a\u0399\u0394\u0391
\u039d\u03ad\u03b1 \u03bc\u03bf\u03bd\u03ae \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5
\u0394\u03b5\u03c3\u03c6\u03af\u03bd\u03b1\u03c2","owner":"AnaDigit","x":22.565674,"y":38.403894,"photo":"nea_moni_prodromou_desfinas","type":203,"zoom_level":13,"id":47,"hlink_GR":"http:\/\/el.wikipedia.org\/wiki\/%CE%9D%CE%AD%CE%B1_%CE%9C%CE%BF%CE%BD%CE%AE_%CE%A4%CE%B9%CE%BC%CE%AF%CE%BF%CF%85_%CE%A0%CF%81%CE%BF%CE%B4%CF%81%CF%8C%CE%BC%CE%BF%CF%85_%CE%94%CE%B5%CF%83%CF%86%CE%AF%CE%BD%CE%B1%CF%82","hlink_EN":"http:\/\/el.wikipedia.org\/wiki\/%CE%9D%CE%AD%CE%B1_%CE%9C%CE%BF%CE%BD%CE%AE_%CE%A4%CE%B9%CE%BC%CE%AF%CE%BF%CF%85_%CE%A0%CF%81%CE%BF%CE%B4%CF%81%CF%8C%CE%BC%CE%BF%CF%85_%CE%94%CE%B5%CF%83%CF%86%CE%AF%CE%BD%CE%B1%CF%82","description":"\u0397 \u039d\u03ad\u03b1 \u03bc\u03bf\u03bd\u03ae \u03a4\u03b9\u03bc\u03af\u03bf\u03c5 \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5 \u0394\u03b5\u03c3\u03c6\u03af\u03bd\u03b1\u03c2 \u03b9\u03b4\u03c1\u03cd\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf 1873, \u03cc\u03c4\u03b1\u03bd \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd \u03bf\u03b9 \u03bc\u03bf\u03bd\u03b1\u03c7\u03bf\u03af \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c0\u03b1\u03bb\u03b9\u03ac \u03bc\u03bf\u03bd\u03ae, \u03c3\u03b5 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c5\u03ba\u03bf\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7\u03c2 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2, \u03cc\u03c0\u03c9\u03c2 \u03bc\u03b1\u03c1\u03c4\u03c5\u03c1\u03ac \u03ba\u03b1\u03b9 \u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c4\u03b7\u03c2 \u03bd\u03ad\u03b1\u03c2 \u03b8\u03ad\u03c3\u03b7\u03c2, \u03b4\u03b7\u03bb. \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u03c4\u03c1\u03af\u03c3\u03c4\u03c1\u03b1\u03c4\u03bf \u0394\u03af\u03c3\u03c4\u03bf\u03bc\u03bf\/\u0391\u03bd\u03c4\u03af\u03ba\u03c5\u03c1\u03b1\/\u0394\u03b5\u03c3\u03c6\u03af\u03bd\u03b1. \u0397 \u03bc\u03bf\u03bd\u03ae \u03b4\u03b9\u03ad\u03ba\u03bf\u03c8\u03b5 \u03c4\u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c4\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c4\u03bf\u03c5 20\u03bf\u03c5 \u03b1\u03b9. \u0388\u03ba\u03c4\u03bf\u03c4\u03b5 \u03b1\u03bd\u03bf\u03af\u03b3\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03c4\u03b7\u03c1\u03b5\u03af\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03c6\u03c1\u03bf\u03c4\u03bd\u03c4\u03af\u03b4\u03b5\u03c2 \u03c4\u03c9\u03bd \u03ba\u03b1\u03c4\u03bf\u03af\u03ba\u03c9\u03bd \u03c4\u03b7\u03c2 \u0394\u03b5\u03c3\u03c6\u03af\u03bd\u03b1\u03c2. ","height":0,"width":0},{"name":"\u03a6\u03a9\u039a\u0399\u0394\u0391
\u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u03bc\u03bf\u03bd\u03ae \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5
\u0394\u03b5\u03c3\u03c6\u03af\u03bd\u03b1\u03c2","owner":"AnaDigit","x":22.560182,"y":38.380915,"photo":"plaea_moni_prodromou_desfinas","type":203,"zoom_level":13,"id":48,"hlink_GR":"http:\/\/el.wikipedia.org\/wiki\/%CE%A0%CE%B1%CE%BB%CE%B1%CE%B9%CE%AC_%CE%9C%CE%BF%CE%BD%CE%AE_%CE%A4%CE%B9%CE%BC%CE%AF%CE%BF%CF%85_%CE%A0%CF%81%CE%BF%CE%B4%CF%81%CF%8C%CE%BC%CE%BF%CF%85_%CE%94%CE%B5%CF%83%CF%86%CE%AF%CE%BD%CE%B1%CF%82","hlink_EN":"http:\/\/el.wikipedia.org\/wiki\/%CE%A0%CE%B1%CE%BB%CE%B1%CE%B9%CE%AC_%CE%9C%CE%BF%CE%BD%CE%AE_%CE%A4%CE%B9%CE%BC%CE%AF%CE%BF%CF%85_%CE%A0%CF%81%CE%BF%CE%B4%CF%81%CF%8C%CE%BC%CE%BF%CF%85_%CE%94%CE%B5%CF%83%CF%86%CE%AF%CE%BD%CE%B1%CF%82","description":"\u0397 \u03a0\u03b1\u03bb\u03b1\u03b9\u03ac \u03bc\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03bf\u03c5 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7 \u03c4\u03bf\u03c5 \u03a4\u03b9\u03bc\u03af\u03bf\u03c5 \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5 \u03b9\u03b4\u03c1\u03cd\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b1 \u03c4\u03ad\u03bb\u03b7 \u03c4\u03bf\u03c5 13\u03bf\u03c5 \u03ae \u03b1\u03c1\u03c7\u03ad\u03c2 14\u03bf\u03c5 \u03b1\u03b9. \u03c3\u03c4\u03bf \u03bc\u03c5\u03c7\u03cc \u03c4\u03b7\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u03c7\u03b1\u03c1\u03ac\u03b4\u03c1\u03b1\u03c2 \u03a7\u03bf\u03c5\u03c1\u03c7\u03bf\u03c5\u03c1\u03cc\u03c1\u03b5\u03bc\u03b1, \u03c3\u03b5 \u03b8\u03ad\u03c3\u03b7 \u03bc\u03b5 \u03bd\u03b5\u03c1\u03cc \u03ba\u03b1\u03b9 \u03cc\u03c7\u03b9 \u03bc\u03b1\u03ba\u03c1\u03b9\u03ac \u03b1\u03c0\u03cc \u03c4\u03b7 \u03b4\u03b9\u03b1\u03c3\u03c4\u03b1\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03ba\u03c4\u03b7\u03bd\u03bf\u03c4\u03c1\u03bf\u03c6\u03b9\u03ba\u03ce\u03bd \u03b4\u03c1\u03cc\u03bc\u03c9\u03bd \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bd\u03ad\u03b4\u03b5\u03b1\u03bd \u03c4\u03b7 \u0394\u03b5\u03c3\u03c6\u03af\u03bd\u03b1, \u03b1\u03c6\u03b5\u03bd\u03cc\u03c2 \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c0\u03b1\u03c1\u03ac\u03bb\u03b9\u03bf\u03c5\u03c2 \u03b4\u03bf\u03c1\u03c5\u03c6\u03cc\u03c1\u03bf\u03c5\u03c2 \u03c4\u03b7\u03c2 \u0391\u03bd\u03c4\u03af\u03ba\u03c5\u03c1\u03b1\u03c2, \u03c4\u03bf\u03c5\u03c2 \u03a0\u03bf\u03c4\u03b1\u03bc\u03bf\u03cd\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u0392\u03ac\u03bb\u03c4\u03bf \u03ba\u03b1\u03b9 \u03b1\u03c6\u03b5\u03c4\u03ad\u03c1\u03bf\u03c5 \u03bc\u03b5 \u03c4\u03bf \u039c\u03b1\u03ba\u03c1\u03b1\u03bd\u03b9\u03ba\u03cc\u03bb\u03b1. \u03a4\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03ba\u03c4\u03af\u03c3\u03bc\u03b1\u03c4\u03b1 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03ba\u03b1\u03bb\u03ae \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7.","height":0,"width":0},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0394\u03c1\u03b1\u03ba\u03bf\u03ba\u03ac\u03c1\u03ba\u03b1\u03c1\u03bf\u03c2","owner":"anadigit","x":22.571903,"y":38.546491,"photo":"PARNASOS_Drakokarkaros_22_571903_38_546491","type":0,"zoom_level":13,"id":59,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03be\u03c9\u03ba\u03bb\u03ae\u03c3\u03b9 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03b7\u03c1\u03ce\u03bf \u03c0\u03b5\u03c3\u03cc\u03bd\u03c4\u03c9\u03bd \u03c3\u03c4\u03bf \u0394\u03c1\u03b1\u03ba\u03bf\u03ba\u03ac\u03c1\u03ba\u03b1\u03c1\u03bf, \u03bc\u03b9\u03ba\u03c1\u03cc \u03b2\u03ac\u03c1\u03b1\u03b8\u03c1\u03bf \u03c3\u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03a3\u03b1\u03c1\u03b1\u03bd\u03c4\u03ac\u03c1\u03b9. \u03a3\u03c4\u03bf\u03bd \u03b5\u03bc\u03c6\u03cd\u03bb\u03b9\u03bf \u03b4\u03bf\u03bb\u03bf\u03c6\u03bf\u03bd\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd \u03b5\u03b4\u03ce \u03ba\u03bf\u03bd\u03c4\u03ac 31 \u03b1\u03c1\u03b1\u03c7\u03c9\u03b2\u03af\u03c4\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03c3\u03ce\u03bc\u03b1\u03c4\u03ac \u03c4\u03bf\u03c5\u03c2 \u03c1\u03af\u03c7\u03c4\u03b7\u03ba\u03b1\u03bd \u03c3\u03c4\u03bf \n\n\u03b2\u03ac\u03c1\u03b1\u03b8\u03c1\u03bf.","height":420,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u0395\u039f\u03a3 \u0391\u03b8\u03b7\u03bd\u03ce\u03bd ","owner":"AnaDigit","x":22.57639,"y":38.541409,"photo":"PARNASOS_katafygio_Sarandari_22_57639_38_541409","type":0,"zoom_level":12,"id":60,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03c4\u03bf\u03c5 \u0395\u039f\u03a3 \u0391\u03b8\u03b7\u03bd\u03ce\u03bd \u03c3\u03c4\u03bf \u03a3\u03b1\u03c1\u03b1\u03bd\u03c4\u03ac\u03c1\u03b9","height":548,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03c1\u03cc\u03bd\u03c4\u03bf\u03bb\u03b7","owner":"AnaDigit","x":22.573885,"y":38.525442,"photo":"PARNASOS_Prondoli_22_573885_38_525442","type":0,"zoom_level":14,"id":61,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03ac\u03bb\u03bb\u03bf\u03c4\u03b5 \u03c6\u03b9\u03bb\u03cc\u03be\u03b5\u03bd\u03b7 \u03c3\u03c4\u03c1\u03bf\u03cd\u03b3\u03ba\u03b1 \u03c4\u03b7\u03c2 \u03a0\u03c1\u03cc\u03bd\u03c4\u03bf\u03bb\u03b7\u03c2, \u03c4\u03ce\u03c1\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf \u03ba\u03b1\u03b9\u03c1\u03cc \u03ad\u03c1\u03b7\u03bc\u03b7.","height":571,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039b\u03ad\u03c9\u03bd \u03c4\u03b7\u03c2 \u03a7\u03b1\u03b9\u03c1\u03ce\u03bd\u03b5\u03b9\u03b1\u03c2","owner":"AnaDigit","x":22.848182,"y":38.494704,"photo":"PARNASOS_Leon_Xaironias_22_848182_38_494704","type":10,"zoom_level":11,"id":67,"hlink_GR":"","hlink_EN":"","description":"\u039f \u039b\u03ad\u03c9\u03bd \u03c4\u03b7\u03c2 \u03a7\u03b1\u03b9\u03c1\u03ce\u03bd\u03b5\u03b9\u03b1\u03c2, \u03c4\u03b1\u03c6\u03b9\u03ba\u03cc \u03bc\u03bd\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03b7\u03c2 \u03bc\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03b9\u03ba\u03ae\u03c2 \u03b5\u03b9\u03c3\u03b2\u03bf\u03bb\u03ae\u03c2 \u03c3\u03c4\u03b7\u03bd \u0392\u03bf\u03b9\u03c9\u03c4\u03af\u03b1","height":843,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0393\u03b5\u03bd\u03b9\u03ba\u03ae \u03cc\u03c8\u03b7
\u03b1\u03c0\u03cc \u03c4\u03b1 \u039d\u0391","owner":"AnaDigit","x":22.604387,"y":38.535457,"photo":"PARNASOS_geniki_opsi_22_604387_38_535457","type":0,"zoom_level":11,"id":68,"hlink_GR":"","hlink_EN":"","description":"\u0393\u03b5\u03bd\u03b9\u03ba\u03ae \u03ac\u03c0\u03bf\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c5\u03b3\u03ba\u03c1\u03bf\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03bf\u03c5 \u039a\u03b7\u03c6\u03b9\u03c3\u03c3\u03bf\u03cd","height":199,"width":800},{"name":"\u03a6\u03a9\u039a\u0399\u0394\u0391
\u03a0\u03c1\u03bf\u03b4\u03ad\u03ba\u03c4\u03b7\u03c2","owner":"AnaDigit","x":22.560498,"y":38.310168,"photo":"FOKIDA_Prodektis_22_560498_38_310168","type":9,"zoom_level":14,"id":79,"hlink_GR":"","hlink_EN":"","description":"\u03a5\u03c0\u03ad\u03c1\u03b3\u03b5\u03b9\u03bf\u03c2 \u03c3\u03c5\u03bb\u03bb\u03ad\u03ba\u03c4\u03b7\u03c2 \u03bd\u03b5\u03c1\u03bf\u03cd \u03bc\u03b5 \u03bc\u03b9\u03ba\u03c1\u03ae \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ae \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae","height":731,"width":512},{"name":"\u03a6\u03a9\u039a\u0399\u0394\u0391
\u0394\u03b5\u03c3\u03c6\u03af\u03bd\u03b1
\u039c\u03bf\u03bd\u03ae \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5","owner":"AnaDigit","x":22.566021,"y":38.403245,"photo":"FOKIDA_Pigadi_Moni_Prodromou_Desfinas_22_566021_38_403245","type":9,"zoom_level":15,"id":80,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03b5\u03c0\u03b9\u03c3\u03c4\u03cc\u03bc\u03b9\u03bf \u03c3\u03c4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5. \u03a3\u03c4\u03bf\u03bd \u03c3\u03c5\u03bc\u03c0\u03b1\u03b3\u03ae \u03b1\u03c3\u03b2\u03b5\u03c3\u03c4\u03cc\u03bb\u03b9\u03b8\u03bf, \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03c7\u03c1\u03bf\u03bd\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b1\u03c5\u03bb\u03ac\u03ba\u03b9\u03b1 \u03c6\u03b8\u03bf\u03c1\u03ac\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c3\u03ba\u03bf\u03b9\u03bd\u03af.","height":736,"width":512},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u03a0\u03b7\u03b3\u03ae \u0399\u03c0\u03c0\u03bf\u03ba\u03c1\u03ae\u03bd\u03b7","owner":"AnaDigit","x":23.032602,"y":38.319153,"photo":"ELIKON_Ipokrini_23_032602_38_319153","type":10,"zoom_level":14,"id":81,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u0399\u03c0\u03c0\u03bf\u03ba\u03c1\u03ae\u03bd\u03b7 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b1\u03af\u03c9\u03bd, \u03c4\u03bf \u039a\u03c1\u03cd\u03bf \u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c4\u03c9\u03bd \u03ba\u03c4\u03b7\u03bd\u03bf\u03c4\u03c1\u03cc\u03c6\u03c9\u03bd \u03c4\u03bf\u03c5 \u0396\u03b1\u03b3\u03b1\u03c1\u03ac, \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03bc\u03b9\u03ba\u03ae \u03cd\u03c6\u03b5\u03c3\u03b7, \u03ba\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c6\u03ae 1401 (\u03cc\u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b1\u03af\u03c9\u03bd \u03ba\u03c4\u03b9\u03c3\u03bc\u03ac\u03c4\u03c9\u03bd). \u039f \u03bc\u03cd\u03b8\u03bf\u03c2 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03c3\u03b5 \u03b4\u03b9\u03b1\u03b3\u03c9\u03bd\u03b9\u03c3\u03bc\u03cc \u03c4\u03c9\u03bd \u03b5\u03bb\u03b9\u03ba\u03c9\u03bd\u03b5\u03af\u03c9\u03bd \u03bc\u03bf\u03c5\u03c3\u03ce\u03bd \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03b9\u03b5\u03c1\u03af\u03b4\u03b5\u03c2 \u03bf\u03bc\u03cc\u03c4\u03b5\u03c7\u03bd\u03ad\u03c2 \u03c4\u03bf\u03c5\u03c2, \u03bf \u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2 \u03ac\u03c1\u03c7\u03b9\u03b6\u03b5 \u03bd\u03b1 \u03c5\u03c8\u03ce\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03b5\u03c1\u03b7\u03c6\u03ac\u03bd\u03b5\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf\u03bd \u03bf\u03c5\u03c1\u03b1\u03bd\u03cc, \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c0\u03bf\u03c5, \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c4\u03b1\u03b3\u03ae \u03c4\u03bf\u03c5 \u03a0\u03bf\u03c3\u03b5\u03b9\u03b4\u03ce\u03bd\u03b1, \u03c4\u03bf\u03bd \u03c3\u03c4\u03b1\u03bc\u03ac\u03c4\u03b7\u03c3\u03b5 \u03c4\u03bf \u03c6\u03c4\u03b5\u03c1\u03c9\u03c4\u03cc \u03ac\u03bb\u03bf\u03b3\u03bf \u03a0\u03ae\u03b3\u03b1\u03c3\u03bf\u03c2, \u03c7\u03c4\u03c5\u03c0\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf\u03bd \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03bf\u03c0\u03bb\u03ad\u03c2 \u03c4\u03bf\u03c5. \u03a4\u03bf \u03c7\u03c4\u03cd\u03c0\u03b7\u03bc\u03b1 \u03ac\u03bd\u03bf\u03b9\u03be\u03b5 \u03c3\u03c4\u03bf \u03b2\u03c1\u03ac\u03c7\u03bf \u03bc\u03b9\u03b1 \u03b2\u03b1\u03b8\u03b5\u03b9\u03ac \u03bf\u03c0\u03ae, \u03bc\u03ad\u03c3\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03be\u03b5\u03c0\u03ae\u03b4\u03b7\u03c3\u03b5 \u03b7 \u03c0\u03b7\u03b3\u03ae \u0399\u03c0\u03c0\u03bf\u03ba\u03c1\u03ae\u03bd\u03b7, \u03c4\u03bf \u03bd\u03b5\u03c1\u03cc \u03c4\u03b7\u03c2 \u03bf\u03c0\u03bf\u03af\u03b1\u03c2 \u03b5\u03bd\u03ad\u03c0\u03bd\u03b5\u03b5 \u03c4\u03b9\u03c2 \u039c\u03bf\u03cd\u03c3\u03b5\u03c2. \u03a3\u03c4\u03b7\u03bd \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b7 \u0399\u03c0\u03c0\u03bf\u03ba\u03c1\u03ae\u03bd\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03c7\u03b1\u03bc\u03b7\u03bb\u03cc \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9, \u03c0\u03bf\u03c5 \u03b1\u03be\u03b9\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03bc\u03b9\u03b1 \u03c3\u03c4\u03b5\u03bd\u03ae \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b5\u03b3\u03b1\u03bd\u03ae \u03b4\u03b9\u03ac\u03ba\u03bb\u03b1\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c3\u03b2\u03b5\u03c3\u03c4\u03cc\u03bb\u03b9\u03b8\u03bf\u03c5, \u03bc\u03b5 \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03cc \u03b1\u03be\u03b9\u03bf\u03c0\u03b5\u03c1\u03af\u03b5\u03c1\u03b3\u03bf \u03cc\u03c4\u03b9 \u03ba\u03c1\u03b1\u03c4\u03ac\u03b5\u03b9 \u03bd\u03b5\u03c1\u03cc \u03cc\u03bb\u03bf \u03c4\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf.","height":766,"width":512},{"name":"\u039b\u0395\u0399\u0392\u0391\u0394\u0399\u0391
\u039a\u03b1\u03bb\u03ac\u03bc\u03b9
\u039d\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2","owner":"","x":22.9459400177,"y":38.4207752208,"photo":"LIVADIA_Neromilos sti Livadia","type":9,"zoom_level":11,"id":106,"hlink_GR":"","hlink_EN":"","description":"\u039d\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03bc\u03b5 \u03ba\u03ac\u03b8\u03b5\u03c4\u03b7 \u03c6\u03c4\u03b5\u03c1\u03c9\u03c4\u03ae \u03c3\u03c4\u03bf \u039a\u03b1\u03bb\u03ac\u03bc\u03b9","height":786,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03bb\u03c5\u03ba\u03ae","owner":"","x":23.046705245973,"y":38.198287962675,"photo":"VIOTIA_Aliki","type":0,"zoom_level":12,"id":122,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03c5\u03b3\u03c1\u03cc\u03c4\u03bf\u03c0\u03bf\u03c2 \u03c4\u03b7\u03c2 \u0391\u03bb\u03c5\u03ba\u03ae\u03c2. \u03a3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2 \u03c4\u03bf \u039a\u03bf\u03c1\u03bf\u03bc\u03c0\u03af\u03bb\u03b9","height":332,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1 \u03c3\u03c4\u03bf\u03bd \u0391\u03c3\u03c9\u03c0\u03cc","owner":"","x":23.693954467774,"y":38.2937713343,"photo":"VIOTIA_Gefira_Asopou","type":9,"zoom_level":13,"id":123,"hlink_GR":"","hlink_EN":"","description":"","height":312,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03ad\u03c4\u03c1\u03b9\u03bd\u03b7 \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1
\u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u039a\u03bb\u03b5\u03b9\u03c3\u03bf\u03cd\u03c1\u03b1\u03c2","owner":"","x":22.73723,"y":38.376746,"photo":"VIOTIA_Gefyra_Kleisouras","type":9,"zoom_level":13,"id":124,"hlink_GR":"","hlink_EN":"","description":"","height":434,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u039b\u03b5\u03b9\u03b2\u03b1\u03b4\u03b9\u03ac\u03c2","owner":"","x":22.873670578004,"y":38.431063066906,"photo":"VIOTIA_Kastro Livadias","type":10,"zoom_level":12,"id":125,"hlink_GR":"","hlink_EN":"","description":"","height":320,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03b1\u03c0\u03b1\u03c1\u03b5\u03bb\u03bb\u03b9, \u03ba\u03c1\u03ae\u03bd\u03b7 \u03bc\u03b5 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u03bc\u03ad\u03bb\u03b7","owner":"","x":23.216135025025,"y":38.236894119992,"photo":"VIOTIA_Krini sto Kapareli","type":10,"zoom_level":15,"id":126,"hlink_GR":"","hlink_EN":"","description":"","height":335,"width":512},{"name":"\u039a\u0391\u039b\u039b\u0399\u0394\u03a1\u039f\u039c\u039f
\u039a\u03b1\u03bb\u03b1\u03c0\u03cc\u03b4\u03b9","owner":"","x":22.88508605957,"y":38.635975707879,"photo":"Kalapodi1","type":10,"zoom_level":14,"id":129,"hlink_GR":"","hlink_EN":"","description":"\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac \u03bc\u03ad\u03bb\u03b7 \u03c3\u03c4\u03bf \u039a\u03b1\u03bb\u03b1\u03c0\u03cc\u03b4\u03b9","height":775,"width":512},{"name":"\u0394\u0395\u039b\u03a6\u039f\u0399
\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u0391\u03c0\u03cc\u03bb\u03bb\u03c9\u03bd\u03b1","owner":"A. Bonetti","x":22.500950813291,"y":38.482513905992,"photo":"Delphi 01","type":10,"zoom_level":14,"id":163,"hlink_GR":"","hlink_EN":"","description":"","height":334,"width":511},{"name":"\u0394\u0395\u039b\u03a6\u039f\u0399
\u03a4\u03bf \u03a3\u03c4\u03ac\u03b4\u03b9\u03bf","owner":"A. Bonetti","x":22.498976707456,"y":38.482009993478,"photo":"Delphi 02","type":10,"zoom_level":11,"id":164,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03c1\u03ae\u03bd\u03b7 \u039a\u03bf\u03c1\u03bf\u03bc\u03b7\u03bb\u03b9\u03ac","owner":"AnaDigit","x":23.749513,"y":38.16828,"photo":"Parnitha_Vrisi_Koromilia","type":0,"zoom_level":14,"id":203,"hlink_GR":"","hlink_EN":"","description":"\u03a9\u03c1\u03b1\u03af\u03b1 \u03ba\u03c1\u03ae\u03bd\u03b7, \u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03bf\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c0\u03b7\u03b3\u03ae \u03c0\u03bf\u03c5 \u03c0\u03b1\u03c1\u03ad\u03c7\u03b5\u03b9 \u03b4\u03c1\u03bf\u03c3\u03b5\u03c1\u03cc \u03bd\u03b5\u03c1\u03cc \u03cc\u03bb\u03bf \u03c4\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf. \u03a4\u03bf \u03bd\u03b5\u03c1\u03cc \u03c3\u03c7\u03b7\u03bc\u03b1\u03c4\u03af\u03b6\u03b5\u03b9 \u03c1\u03c5\u03ac\u03ba\u03b9 \u03c0\u03bf\u03c5 \u03b6\u03c9\u03bd\u03c4\u03b1\u03bd\u03b5\u03cd\u03b5\u03b9 \u03bc\u03b9\u03b1 \u03bc\u03b1\u03ba\u03c1\u03b9\u03ac \u03bb\u03bf\u03c5\u03c1\u03af\u03b4\u03b1 \u03c0\u03b1\u03c1\u03cc\u03c7\u03b8\u03b9\u03b1\u03c2 \u03b2\u03bb\u03ac\u03c3\u03c4\u03b7\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03c0\u03bb\u03b1\u03c4\u03ac\u03bd\u03b9\u03b1, \u03c3\u03c6\u03b5\u03bd\u03c4\u03ac\u03bc\u03b9\u03b1, \u03ba\u03b1\u03c1\u03c5\u03b4\u03b9\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03ad\u03bd\u03c4\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c6\u03ad\u03c1\u03b5\u03b9 \u03b8\u03ad\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd \u03ba\u03b1\u03b9 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u03c3\u03b5 \u03c0\u03bf\u03bb\u03bb\u03ac \u03bc\u03b9\u03ba\u03c1\u03ac \u03b6\u03ce\u03b1 (\u03b1\u03bc\u03c6\u03af\u03b2\u03b9\u03b1, \u03bb\u03b9\u03bc\u03c0\u03b5\u03bb\u03bf\u03cd\u03bb\u03b5\u03c2 \u03ba\u03bb\u03c0). \u039a\u03b1\u03c4\u03ac\u03bd\u03c4\u03b9, \u03c4\u03bf \u03c1\u03ad\u03bc\u03b1 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b5\u03af \u03bc\u03b9\u03ba\u03c1\u03ad\u03c2 \u03bb\u03b9\u03bc\u03bd\u03bf\u03cd\u03bb\u03b5\u03c2 \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c4\u03bf\u03bd \u0399\u03bf\u03cd\u03bb\u03b9\u03bf.","height":285,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039c\u03c0\u03ac\u03c6\u03b9","owner":"AnaDigit","x":23.727037,"y":38.167601,"photo":"Parnitha_Bafi","type":0,"zoom_level":14,"id":204,"hlink_GR":"","hlink_EN":"","description":"","height":773,"width":512},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u0395\u03bb\u03ac\u03c6\u03b9\u03b1 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.721404194833,"y":38.160515465422,"photo":"Parnitha_Elafia","type":7,"zoom_level":13,"id":205,"hlink_GR":"","hlink_EN":"","description":"\u0395\u03bb\u03b1\u03c6\u03af\u03bd\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03bc\u03b9\u03ba\u03c1\u03cc \u03c4\u03b7\u03c2 \u03c3\u03c4\u03b9\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ad\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2, \u03c4\u03ce\u03c1\u03b1 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b1 \u03ba\u03b1\u03bc\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2 \u03ba\u03bf\u03c1\u03bc\u03bf\u03cd\u03c2.","height":315,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03c1\u03ae\u03bd\u03b7 \u039c\u03b5\u03c3\u03b9\u03b1\u03bd\u03cc \u039d\u03b5\u03c1\u03cc","owner":"AnaDigit","x":23.742116212841,"y":38.174966838707,"photo":"Parnitha_Vrisi_Mesiano_Nero","type":0,"zoom_level":14,"id":206,"hlink_GR":"","hlink_EN":"","description":"","height":339,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a3\u03c0\u03b7\u03bb\u03b9\u03ac \u03c4\u03b7\u03c2 \u03a3\u03c6\u03af\u03b3\u03b3\u03b1\u03c2","owner":"AnaDigit","x":23.185536384583,"y":38.379676467353,"photo":"Viotia_Sfiga_cave","type":10,"zoom_level":12,"id":280,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bb\u03b5\u03b3\u03cc\u03bc\u03b5\u03bd\u03b7 \"\u03a3\u03c0\u03b7\u03bb\u03b9\u03ac \u03c4\u03b7\u03c2 \u03a3\u03c6\u03af\u03b3\u03b3\u03b1\u03c2\" \u03c3\u03c4\u03bf \u03a3\u03c6\u03af\u03b3\u03b3\u03b5\u03b9\u03bf\u03bd \u03cc\u03c1\u03bf\u03c2. \u0395\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03bc\u03b9\u03ba\u03c1\u03cc \u03b2\u03cd\u03b8\u03b9\u03c3\u03bc\u03b1, \u03c7\u03c9\u03c1\u03af\u03c2 \u03b8\u03ac\u03bb\u03b1\u03bc\u03bf \u03ba\u03b1\u03b9 \u03b4\u03b9\u03ac\u03ba\u03bf\u03c3\u03bc\u03bf","height":512,"width":340},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039c\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u0398\u03bf\u03cd\u03c1\u03b9\u03bf","owner":"AnaDigit","x":22.905942916869,"y":38.475895574282,"photo":"Parnassos_Pirgos_sto_404489_4258888","type":10,"zoom_level":13,"id":340,"hlink_GR":"","hlink_EN":"","description":"","height":313,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03c4\u03bf\u03c5 \u03a6\u03c9\u03ba\u03b9\u03ba\u03bf\u03cd","owner":"AnaDigit","x":22.734924,"y":38.476405,"photo":"Parnassos_Fokiko2","type":10,"zoom_level":12,"id":341,"hlink_GR":"","hlink_EN":"","description":"","height":308,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039f\u03b9 \u0394\u03b5\u03bb\u03c6\u03bf\u03af \u03b1\u03c0\u03cc \u03c8\u03b7\u03bb\u03ac","owner":"AnaDigit","x":22.50262451172,"y":38.486108379726,"photo":"Parnassos_Delfi5","type":10,"zoom_level":12,"id":342,"hlink_GR":"","hlink_EN":"","description":"","height":288,"width":512},{"name":"\u039c\u0391\u039d\u0399\u03a4\u0391\u03a1\u0399\u0391
\u03a4\u03bf \u039a\u03cc\u03ba\u03ba\u03b9\u03bd\u03bf \u039a\u03b1\u03bb\u03b1\u03b8\u03ac\u03ba\u03b9 Clathrus ruber","owner":"AnaDigit","x":23.497745513916,"y":38.480599019699,"photo":"Mushrooms_Clathrus_ruber","type":6,"zoom_level":13,"id":528,"hlink_GR":"","hlink_EN":"","description":"","height":340,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u039a\u03bf\u03c1\u03b9\u03bd\u03bf\u03cd","owner":"AnaDigit","x":23.520576477049,"y":38.156118119931,"photo":"Parhitha_Korinos","type":10,"zoom_level":13,"id":571,"hlink_GR":"http:\/\/www.ancientgreece.gr\/index.php\/ancient-sites\/central\/290\/355\/","hlink_EN":"","description":"\u03a4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 \u039a\u03bf\u03c1\u03b9\u03bd\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03bc\u03b9\u03ba\u03c1\u03cc \u03bf\u03c7\u03c5\u03c1\u03cc \u03c0\u03ac\u03bd\u03c9 \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03c0\u03cc\u03ba\u03c1\u03b7\u03bc\u03bd\u03b7 \u03c1\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b1 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ac \u03c4\u03b7\u03c2 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2. \u0391\u03c0\u03cc \u03c4\u03b7 \u03b8\u03ad\u03c3\u03b7 (\u03b5\u03ba\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5 \u03bf\u03b4\u03b9\u03ba\u03bf\u03cd \u03ac\u03be\u03bf\u03bd\u03b1) \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03c4\u03c1\u03cc\u03c0\u03bf \u03bf\u03c7\u03cd\u03c1\u03c9\u03c3\u03b7\u03c2, \u03b5\u03af\u03bd\u03b1\u03b9 \u03c6\u03b1\u03bd\u03b5\u03c1\u03cc \u03cc\u03c4\u03b9 \u03bf \u03ba\u03cd\u03c1\u03b9\u03bf \u03c3\u03ba\u03bf\u03c0\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c6\u03c1\u03bf\u03c5\u03c1\u03ac\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03ba\u03b1\u03bd\u03b5 \u03b1\u03bd\u03b1\u03bc\u03b5\u03c4\u03ac\u03b4\u03bf\u03c3\u03b7 \u03bf\u03c0\u03c4\u03b9\u03ba\u03ce\u03bd \u03c3\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd (\u03ac\u03c1\u03b1 \u03c0\u03c1\u03cc\u03ba\u03b5\u03b9\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c6\u03c1\u03c5\u03ba\u03c4\u03c9\u03c1\u03af\u03b1), \u03ba\u03b1\u03b8\u03ce\u03c2 \u03b7 \u03b8\u03ad\u03c3\u03b7 \u03ad\u03c7\u03b5\u03b9 \u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 \u03c4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03a0\u03ac\u03bd\u03b1\u03ba\u03c4\u03bf, \u03c4\u03bf \u039a\u03bf\u03c1\u03bf\u03c1\u03ad\u03bc\u03b9, \u03c4\u03bf \u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u03ba\u03b1\u03b9 \u03c4\u03bf \u0398\u03c1\u03b9\u03ac\u03c3\u03b9\u03bf \u03a0\u03b5\u03b4\u03af\u03bf. \u03a4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03bf\u03bc\u03b1\u03bb\u03ad\u03c2 \u03c0\u03bb\u03b5\u03c5\u03c1\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03bb\u03b1\u03b3\u03b9\u03ac\u03c2 \u03bc\u03b5 \u03b1\u03c1\u03b3\u03bf\u03bb\u03b9\u03b8\u03bf\u03b4\u03bf\u03bc\u03ae \u03c0\u03bf\u03b9\u03ba\u03af\u03bb\u03bf\u03c5 \u03cd\u03c8\u03bf\u03c5\u03c2. \u03a3\u03ae\u03bc\u03b5\u03c1\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03bf, \u03b1\u03bb\u03bb\u03ac \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b7 - \u03ba\u03c5\u03c1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 - \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ae \u03c0\u03cd\u03bb\u03b7 \u03ba\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b7 \u03c3\u03c4\u03b1 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ac.","height":243,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03a0\u03ac\u03bd\u03b1\u03ba\u03c4\u03bf","owner":"AnaDigit","x":23.506156921385,"y":38.183446961282,"photo":"Parhitha_Panakto","type":10,"zoom_level":12,"id":573,"hlink_GR":"http:\/\/www.ancientgreece.gr\/index.php\/ancient-sites\/central\/290\/352\/","hlink_EN":"","description":"\u03a4\u03bf \u03a0\u03ac\u03bd\u03b1\u03ba\u03c4\u03bf \u03ae\u03c4\u03b1\u03bd \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03cc \u03b1\u03c1\u03c7\u03b1\u03af\u03bf \u03b1\u03b8\u03b7\u03bd\u03b1\u03ca\u03ba\u03cc \u03bf\u03c7\u03c5\u03c1\u03cc \u03c3\u03c4\u03bf \u039d\u0394 \u03ac\u03ba\u03c1\u03bf \u03c4\u03bf\u03c5 \u03bf\u03c1\u03bf\u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c4\u03c9\u03bd \u03a3\u03ba\u03bf\u03cd\u03c1\u03c4\u03c9\u03bd. \u0391\u03c0\u03cc \u03c4\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03b1\u03c5\u03c4\u03cc \u03ae\u03bb\u03b5\u03b3\u03c7\u03b5 \u03bc\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03ba\u03cd\u03c1\u03b9\u03b5\u03c2 \u03bf\u03c1\u03b5\u03b9\u03bd\u03ad\u03c2 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u0391\u03c4\u03c4\u03b9\u03ba\u03ae \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7 \u0392\u03bf\u03b9\u03c9\u03c4\u03af\u03b1. \u039d\u03bf\u03c4\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c4\u03bf \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 \u039a\u03bf\u03c1\u03b9\u03bd\u03bf\u03cd \u03b5\u03c0\u03cc\u03c0\u03c4\u03b5\u03c5\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03bf\u03b4\u03b9\u03ba\u03ac \u03c0\u03b5\u03c1\u03ac\u03c3\u03bc\u03b1\u03c4\u03b1 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03cc\u03b4\u03bf\u03c5 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u0395\u03bb\u03b5\u03c5\u03c3\u03af\u03bd\u03b1, \u03b5\u03bd\u03ce \u03c4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03c4\u03b7\u03c2 \u03a6\u03c5\u03bb\u03ae\u03c2 \u03ae\u03bb\u03b5\u03b3\u03c7\u03b5 \u03c4\u03b7\u03bd \u03bf\u03c1\u03b5\u03b9\u03bd\u03ae \u03c0\u03cd\u03bb\u03b7 \u03c4\u03b7\u03c2 \u0391\u03b8\u03ae\u03bd\u03b1\u03c2. \u039c\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03b1\u03bd\u03b1\u03c3\u03ba\u03b1\u03c6\u03ad\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03b3\u03b9\u03bd\u03b1\u03bd \u03c3\u03c4\u03bf \u03bb\u03cc\u03c6\u03bf \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u03a0\u03c1\u03ac\u03c3\u03b9\u03bd\u03bf (\u03b4\u03b5\u03ba\u03b1\u03b5\u03c4\u03af\u03b1 \u03c4\u03bf\u03c5 1980), \u03b7 \u03b8\u03ad\u03c3\u03b7 \u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ac. \u03a3\u03c4\u03bf \u03bb\u03cc\u03c6\u03bf \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1 \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c0\u03bf\u03bb\u03bb\u03ac \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03ba\u03c4\u03b9\u03c1\u03af\u03c9\u03bd \u03ba\u03b1\u03b9 \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ce\u03bd, \u03ba\u03b1\u03c4\u03ac\u03ba\u03bf\u03c1\u03c6\u03b1 \u03c4\u03b1 \u03b5\u03c1\u03b5\u03af\u03c0\u03b9\u03b1 \u03c4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf\u03c5 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c5 \u03c4\u03c9\u03bd \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03ce\u03bd \u03c7\u03c1\u03cc\u03bd\u03c9\u03bd \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03bf\u03c1\u03b8\u03bf\u03b3\u03ce\u03bd\u03b9\u03b1 \u03b8\u03b5\u03bc\u03b5\u03bb\u03af\u03c9\u03c3\u03b7, \u03c0\u03bf\u03c5 \u03af\u03c3\u03c9\u03c2 \u03b1\u03bd\u03ae\u03ba\u03b5 \u03c3\u03b5 \u03c0\u03b1\u03bb\u03b1\u03b9\u03bf\u03c7\u03c1\u03b9\u03c3\u03c4\u03b9\u03b1\u03bd\u03b9\u03ba\u03ae \u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae.","height":339,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03a0\u03cd\u03bb\u03b7\u03c2","owner":"AnaDigit","x":23.501007080075,"y":38.217172135902,"photo":"Parhitha_Pyrgos_Pyli","type":10,"zoom_level":14,"id":574,"hlink_GR":"http:\/\/www.ancientgreece.gr\/index.php\/ancient-sites\/central\/290\/353\/354\/","hlink_EN":"","description":"","height":339,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0397 \u03ba\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03cc\u03bb\u03b3\u03b7\u03c2 \u03c4\u03c9\u03bd \u03a3\u03ba\u03bf\u03cd\u03c1\u03c4\u03c9\u03bd","owner":"AnaDigit","x":23.51958942413,"y":38.212771886929,"photo":"Parhitha_Katavothra_Skourta","type":0,"zoom_level":13,"id":575,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":339},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03a0\u03c5\u03c1\u03b3\u03ac\u03c1\u03b9, \u03a3\u03ba\u03bf\u03cd\u03c1\u03c4\u03b1","owner":"AnaDigit","x":23.608778238297,"y":38.214670686006,"photo":"Parhitha_Pirgari","type":10,"zoom_level":13,"id":576,"hlink_GR":"http:\/\/www.ancientgreece.gr\/index.php\/ancient-sites\/central\/290\/293\/","hlink_EN":"","description":"\u03a4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03b7 \u03c6\u03c1\u03c5\u03ba\u03c4\u03c9\u03c1\u03af\u03b1 \u03c4\u03bf\u03c5 4\u03bf\u03c5 \u03b1\u03b9. \u03c0.\u03a7., \u03c0\u03b1\u03c1\u03cc\u03bc\u03bf\u03b9\u03b1 \u03bc\u03b5 \u03c4\u03bf\u03bd \u03a0\u03cd\u03c1\u03b3\u03bf \u039b\u03b7\u03bc\u03b9\u03ba\u03bf\u03cd. \u0391\u03bd \u03ba\u03b1\u03b9 \u03b7 \u03b8\u03ad\u03c3\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bf\u03bc\u03b2\u03b9\u03ba\u03ae \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1 \u03c4\u03c9\u03bd \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03ce\u03bd \u03bb\u03b5\u03ba\u03b1\u03bd\u03ce\u03bd \u03c4\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae\u03c2 (\u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03b1 \u03a3\u03ba\u03bf\u03cd\u03c1\u03c4\u03c9\u03bd, \u039c\u03b1\u03b6\u03b1\u03c1\u03b1\u03af\u03b9\u03ba\u03c9\u03bd \u03ba\u03b1\u03b9 \u0392\u03bf\u03cd\u03bd\u03c4\u03b7\u03bc\u03b1), \u03b7 \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03c0\u03c1\u03bf\u03c3\u03b2\u03b1\u03c3\u03b9\u03bc\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03bb\u03cc\u03c6\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bf\u03b9 \u03bc\u03b9\u03ba\u03c1\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5 \u03b4\u03b5\u03af\u03c7\u03bd\u03bf\u03c5\u03bd \u03cc\u03c4\u03b9 \u03bc\u03ac\u03bb\u03bb\u03bf\u03bd \u03bf \u03c1\u03cc\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03b6\u03cc\u03c4\u03b1\u03bd \u03c3\u03c4\u03b7 \u03bc\u03b5\u03c4\u03ac\u03b4\u03bf\u03c3\u03b7 \u03bc\u03b7\u03bd\u03c5\u03bc\u03ac\u03c4\u03c9\u03bd, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 \u03c4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03a0\u03ac\u03bd\u03b1\u03ba\u03c4\u03bf \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03a0\u03cd\u03c1\u03b3\u03bf \u039b\u03b7\u03bc\u03b9\u03ba\u03bf\u03cd.","height":339,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u03c3\u03c4\u03bf \u0392\u03bf\u03cd\u03bd\u03c4\u03b7\u03bc\u03b1","owner":"AnaDigit","x":23.64538502693,"y":38.218777907623,"photo":"Parhitha_Ag_Nikolaos_Voudima","type":9,"zoom_level":14,"id":577,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03ac\u03ba\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b1\u03bb\u03b9\u03bf\u03cd \u03b3\u03b5\u03c9\u03c1\u03b3\u03b9\u03ba\u03bf\u03cd \u03c3\u03c5\u03bd\u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd \u03c4\u03bf\u03c5 \u03bf\u03c1\u03bf\u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u0392\u03bf\u03cd\u03bd\u03c4\u03b7\u03bc\u03b1. \u0394\u03af\u03c0\u03bb\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03b7\u03b3\u03ae.","height":339,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c3\u03c0\u03b7\u03bb\u03b1\u03b9\u03bf\u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03b9\u03ac \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u039c\u03b1\u03c1\u03af\u03bd\u03b1\u03c2","owner":"AnaDigit","x":23.638346910477,"y":38.228291694085,"photo":"Parhitha_Ag_Marina","type":9,"zoom_level":14,"id":578,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03bf\u03bd\u03cc\u03c7\u03c9\u03c1\u03bf\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c7\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03b5 \u03c3\u03ba\u03b1\u03bb\u03af \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03b9\u03bb\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c5 \u03b2\u03c1\u03ac\u03c7\u03bf\u03c5, \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u0392\u03bf\u03cd\u03bd\u03c4\u03b7\u03bc\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03c1\u03c5\u03c3\u03c4\u03ac \u03c3\u03c4\u03b7 \u0394\u03b9\u03ba\u03bb\u03b7\u03c3\u03b9\u03ac. \u0398\u03b5\u03c9\u03c1\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03c7\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c4\u03bf\u03bd 12\u03bf \u03b1\u03b9. ","height":600,"width":373},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1\u03c2 \u03c3\u03c4\u03b7 \u0394\u03b9\u03ba\u03bb\u03b7\u03c3\u03b9\u03ac","owner":"AnaDigit","x":23.630750894547,"y":38.227684871768,"photo":"Parhitha_Diklisia_old","type":9,"zoom_level":14,"id":579,"hlink_GR":"","hlink_EN":"","description":"","height":773,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03c4\u03b7\u03c4\u03bf\u03c1\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c4\u03b7 \u03bd\u03ad\u03b1 \u0395\u03c5\u03b1\u03b3\u03b3\u03b5\u03bb\u03af\u03c3\u03c4\u03c1\u03b9\u03b1 \u03c3\u03c4\u03b7 \u0394\u03b9\u03ba\u03bb\u03b7\u03c3\u03b9\u03ac","owner":"AnaDigit","x":23.631523370743,"y":38.227145469902,"photo":"Parhitha_Diklisia_New","type":9,"zoom_level":14,"id":580,"hlink_GR":"","hlink_EN":"","description":"","height":773,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u0392\u03bf\u03cd\u03bd\u03c4\u03b7\u03bc\u03b1","owner":"AnaDigit","x":23.649762392042,"y":38.218204722835,"photo":"Parhitha_Voudima","type":0,"zoom_level":13,"id":581,"hlink_GR":"","hlink_EN":"","description":"","height":236,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1 \u0391\u03c5\u03bb\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.678944826127,"y":38.238438361556,"photo":"Parhitha_Ag_Triada_Avlona","type":9,"zoom_level":14,"id":582,"hlink_GR":"","hlink_EN":"","description":"","height":287,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u0386\u03b3. \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2","owner":"AnaDigit","x":23.615558862687,"y":38.190254381241,"photo":"Parhitha_Ag_Dimitrios_Skourta","type":9,"zoom_level":14,"id":586,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ae \u03ac\u03ba\u03c1\u03b7 \u03c4\u03bf\u03c5 \u03bf\u03c1\u03bf\u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c4\u03c9\u03bd \u03a3\u03ba\u03bf\u03cd\u03c1\u03c4\u03c9\u03bd","height":512,"width":339},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u039a\u03bf\u03c1\u03b9\u03bd\u03cc\u03c2","owner":"AnaDigit","x":23.51469707489,"y":38.155805972137,"photo":"Parhitha_view_Korinos","type":0,"zoom_level":14,"id":587,"hlink_GR":"","hlink_EN":"","description":"\u0398\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b2\u03cc\u03c1\u03b5\u03b9\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03ac\u03ba\u03c1\u03b7 \u03c4\u03b7\u03c2 \u03c1\u03ac\u03c7\u03b7\u03c2 \u03c4\u03bf\u03c5 \u039a\u03bf\u03c1\u03b9\u03bd\u03bf\u03cd","height":339,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f\u03b9 \u03b4\u03af\u03b4\u03c5\u03bc\u03b5\u03c2 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ad\u03c2 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1","owner":"AnaDigit","x":23.639376878739,"y":38.22964017,"photo":"Parhitha_spilies_Ag_Marina","type":0,"zoom_level":15,"id":589,"hlink_GR":"","hlink_EN":"","description":"","height":339,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0391\u03c1\u03c7\u03b1\u03af\u03bf\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u039f\u03b9\u03bd\u03cc\u03b7\u03c2","owner":"AnaDigit","x":23.424590945244,"y":38.163571306177,"photo":"Attiki_Pirgos_Oiniis","type":10,"zoom_level":13,"id":590,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":307},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0391\u03c1\u03c7\u03b1\u03af\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf
\u0395\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd","owner":"AnaDigit","x":23.375404596327,"y":38.179778406807,"photo":"Attiki_Pirgos_Eleftheron","type":10,"zoom_level":12,"id":591,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/3\/gh351.jsp?obj_id=12845","hlink_EN":"http:\/\/www.perseus.tufts.edu\/hopper\/text?doc=Perseus:text:1999.04.0006:id=gyphtokastro","description":"\u03a4\u03bf \u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u03c4\u03c9\u03bd \u0395\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd (\u03ae \u0393\u03c5\u03c6\u03c4\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf) \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b1 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b7\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u03bf\u03c7\u03c5\u03c1\u03ac. \u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b2\u03c1\u03b1\u03c7\u03ce\u03b4\u03b7 \u03c3\u03c4\u03ad\u03c8\u03b7 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c5 \u03b5\u03c0\u03b9\u03ba\u03bb\u03b9\u03bd\u03bf\u03cd\u03c2 \u03b5\u03be\u03ac\u03c1\u03bc\u03b1\u03c4\u03bf\u03c2, \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ac \u03c4\u03b7\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u03b4\u03b9\u03cc\u03b4\u03bf\u03c5 \u0395\u03bb\u03b5\u03c5\u03c3\u03af\u03bd\u03b1\u03c2-\u0398\u03b7\u03b2\u03ce\u03bd (\u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u039a\u03ac\u03b6\u03b1\u03c2). \u03a4\u03bf \u03b5\u03be\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03ae\u03c2 \u03c4\u03bf\u03b9\u03c7\u03bf\u03b4\u03bf\u03bc\u03af\u03b1\u03c2 \u03ba\u03cd\u03c1\u03b9\u03bf \u03c4\u03b5\u03af\u03c7\u03bf\u03c2, \u03c0\u03bf\u03c5 \u03b1\u03bd\u03ae\u03ba\u03b5\u03b9 \u03c3\u03c4\u03bf \u03b9\u03c3\u03bf\u03b4\u03bf\u03bc\u03b9\u03ba\u03cc \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1, \u03ad\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03b3\u03cd\u03c1\u03c9 \u03c3\u03c4\u03b1 2.6 \u03bc. \u03ba\u03b1\u03b9 \u03b5\u03bd\u03b9\u03c3\u03c7\u03cd\u03b5\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03c3\u03c4\u03b9\u03b2\u03b1\u03c1\u03bf\u03cd\u03c2 \u03c4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf\u03c5\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c5\u03c2, \u03c0\u03bf\u03c5 \u03ad\u03c7\u03c9\u03bd \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ac \u03cc\u03c1\u03bf\u03c6\u03bf \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ac\u03bb\u03b1. \u0397 \u03c3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03ae \u03c0\u03b5\u03c1\u03af\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2, \u03cc\u03c0\u03bf\u03c5 \u03b1\u03bd\u03bf\u03af\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03ad\u03c3\u03c3\u03b5\u03c1\u03b5\u03b9\u03c2 \u03c0\u03cd\u03bb\u03b5\u03c2, \u03c6\u03c4\u03ac\u03bd\u03b5\u03b9 \u03c4\u03b1 850\u03bc. \u0394\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03c1\u03b5\u03b9\u03c2 \u03c6\u03ac\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03b9\u03c7\u03bf\u03b4\u03bf\u03bc\u03af\u03b1\u03c2, \u03c0\u03bf\u03c5 \u03c7\u03c1\u03bf\u03bd\u03bf\u03bb\u03bf\u03b3\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd 5\u03bf \u03ba\u03b1\u03b9 4\u03bf \u03b1\u03b9. \u03a5\u03c0\u03bf\u03c4\u03af\u03b8\u03b5\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf, \u03c3\u03c4\u03b9\u03c2 \u03bf\u03bc\u03b1\u03bb\u03ad\u03c2 \u03c0\u03bb\u03b1\u03b3\u03b9\u03ad\u03c2 \u03bd\u03cc\u03c4\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03b2\u03cc\u03c1\u03b5\u03b9\u03ac \u03c4\u03bf\u03c5, \u03b1\u03c0\u03bb\u03c9\u03bd\u03cc\u03c4\u03b1\u03bd \u03b7 \u03c0\u03cc\u03bb\u03b7 \u03c4\u03c9\u03bd \u0395\u03bb\u03b5\u03c5\u03b8\u03b5\u03c1\u03ce\u03bd. \u039a\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7 \u03b2\u03cc\u03c1\u03b5\u03b9\u03b1 \u03c0\u03cd\u03bb\u03b7 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b5\u03af\u03c4\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03ae \u03c0\u03b7\u03b3\u03ae.","height":218,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a4\u03c1\u03cc\u03c0\u03b1\u03b9\u03bf \u0395\u03c0\u03b1\u03bc\u03b5\u03b9\u03bd\u03ce\u03bd\u03b4\u03b1","owner":"AnaDigit","x":23.174362301824,"y":38.264685449874,"photo":"Viotia_Tropeo_Epaminonda","type":10,"zoom_level":14,"id":592,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03a4\u03c1\u03cc\u03c0\u03b1\u03b9\u03bf \u03c4\u03bf\u03c5 \u0395\u03c0\u03b1\u03bc\u03b5\u03b9\u03bd\u03ce\u03bd\u03b4\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03bc\u03bd\u03b7\u03bc\u03b5\u03af\u03bf \u03c0\u03bf\u03c5 \u03cd\u03c8\u03c9\u03c3\u03b1\u03bd \u03bf\u03b9 \u0398\u03b7\u03b2\u03b1\u03af\u03bf\u03b9 \u03c3\u03b5 \u03b1\u03bd\u03ac\u03bc\u03bd\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u03bd\u03af\u03ba\u03b7\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03ba\u03b1\u03c4\u03ac \u03c4\u03c9\u03bd \u03a3\u03c0\u03b1\u03c1\u03c4\u03b9\u03b1\u03c4\u03ce\u03bd, \u03c4\u03bf 371 \u03c0. \u03a7. \u03a4\u03bf \u03b7\u03c1\u03ce\u03bf \u03b2\u03b1\u03c3\u03b9\u03b6\u03cc\u03c4\u03b1\u03bd \u03c3\u03b5 \u03ba\u03c5\u03bb\u03b9\u03bd\u03b4\u03c1\u03b9\u03ba\u03cc \u03b2\u03ac\u03b8\u03c1\u03bf. \u03a0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03af\u03c3\u03c4\u03b5\u03c8\u03b7, \u03b4\u03b9\u03b1\u03ba\u03bf\u03c3\u03bc\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bc\u03b5 \u03c4\u03c1\u03af\u03b3\u03bb\u03c5\u03c6\u03b1 \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c4\u03cc\u03c0\u03b5\u03c2, \u03b2\u03c1\u03b9\u03c3\u03ba\u03cc\u03c4\u03b1\u03bd \u03c3\u03b5\u03b9\u03c1\u03ac \u03bf\u03ba\u03c4\u03ce \u03c3\u03c4\u03c1\u03bf\u03b3\u03b3\u03c5\u03bb\u03ce\u03bd \u03b1\u03c3\u03c0\u03af\u03b4\u03c9\u03bd. \u03a3\u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03c5\u03c0\u03ae\u03c1\u03c7\u03b5 \u03c7\u03ac\u03bb\u03ba\u03b9\u03bd\u03bf \u03c4\u03c1\u03cc\u03c0\u03b1\u03b9\u03bf (\u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5, \u03b1\u03bb\u03bb\u03ac \u03b5\u03af\u03bd\u03b1\u03b9 \u03b3\u03bd\u03c9\u03c3\u03c4\u03cc \u03b1\u03c0\u03cc \u03b8\u03b7\u03b2\u03b1\u03ca\u03ba\u03ac \u03bd\u03bf\u03bc\u03af\u03c3\u03bc\u03b1\u03c4\u03b1) \u03c0\u03bf\u03c5 \u03b1\u03c0\u03b5\u03b9\u03ba\u03cc\u03bd\u03b9\u03b6\u03b5 \u03c3\u03c4\u03c1\u03bf\u03b3\u03b3\u03c5\u03bb\u03cc \u03c3\u03c4\u03cd\u03bb\u03bf, \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03bf\u03bd \u03bf\u03c0\u03bf\u03af\u03bf \u03c3\u03c4\u03b7\u03c1\u03b9\u03b6\u03cc\u03c4\u03b1\u03bd \u03c0\u03b1\u03bd\u03bf\u03c0\u03bb\u03af\u03b1 \u03b1\u03c0\u03cc \u03b8\u03ce\u03c1\u03b1\u03ba\u03b1, \u03c3\u03c4\u03c1\u03bf\u03b3\u03b3\u03c5\u03bb\u03ae \u03b1\u03c3\u03c0\u03af\u03b4\u03b1, \u03b4\u03cc\u03c1\u03c5 \u03ba\u03b1\u03b9 \u03ba\u03c1\u03ac\u03bd\u03bf\u03c2. \u038c\u03bb\u03bf \u03c4\u03bf \u03bb\u03af\u03b8\u03b9\u03bd\u03bf \u03c5\u03bb\u03b9\u03ba\u03cc \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c0\u03af \u03c4\u03cc\u03c0\u03bf\u03c5 (\u03b7 \u03bc\u03af\u03b1 \u03b1\u03c3\u03c0\u03af\u03b4\u03b1, \u03c0\u03bf\u03c5 \u03b4\u03b5\u03bd \u03b5\u03af\u03c7\u03b5 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03b1\u03c1\u03c7\u03b9\u03ba\u03ac, \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03bc\u03b5 \u03bd\u03b5\u03ce\u03c4\u03b5\u03c1\u03b7, \u03b1\u03bb\u03bb\u03ac \u03c4\u03ce\u03c1\u03b1 \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b7\u03c1\u03ce\u03bf\u03c5) \u03ba\u03b1\u03b9 \u03c4\u03bf \u03bc\u03bd\u03b7\u03bc\u03b5\u03af\u03bf \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af.","height":600,"width":450},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03a0\u03bb\u03b1\u03c4\u03b1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":23.274494528767,"y":38.214381970586,"photo":"Viotia_Platees","type":10,"zoom_level":13,"id":593,"hlink_GR":"","hlink_EN":"","description":"","height":324,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u0398\u03af\u03c3\u03b2\u03b7\u03c2","owner":"AnaDigit","x":22.970943570133,"y":38.257107816113,"photo":"Viotia_Thisvi","type":10,"zoom_level":13,"id":594,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u0398\u03af\u03c3\u03b2\u03b7\u03c2","height":450,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039c. \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","owner":"AnaDigit","x":22.745776,"y":38.395114,"photo":"Osios_Loukas11","type":10,"zoom_level":12,"id":595,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","height":397,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039c. \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","owner":"AnaDigit","x":22.74595,"y":38.395076,"photo":"Osios_Loukas","type":10,"zoom_level":15,"id":596,"hlink_GR":"","hlink_EN":"","description":"\u0395\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03bf\u03cd \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","height":800,"width":401},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039c. \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","owner":"AnaDigit","x":22.745958,"y":38.395251,"photo":"Osios_Loukas2","type":10,"zoom_level":16,"id":597,"hlink_GR":"","hlink_EN":"","description":"\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b1 \u03c8\u03b7\u03c6\u03b9\u03b4\u03c9\u03c4\u03ce\u03bd \u03bc\u03bf\u03bd\u03ae\u03c2 \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","height":528,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039c\u03b5\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 \u03a3\u03c9\u03c4\u03ae\u03c1\u03bf\u03c2","owner":"AnaDigit","x":22.745718479151,"y":38.39462034993,"photo":"Osios_Loukas3_Met_Sotiros1","type":9,"zoom_level":15,"id":598,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03bd\u03b1\u03cc\u03c2 \u039c\u03b5\u03c4. \u03a3\u03c9\u03c4\u03ae\u03c1\u03bf\u03c2 \u03c3\u03c4\u03b7 \u03bc. \u039f\u03c3\u03af\u03bf\u03c5 \u039b\u03bf\u03c5\u03ba\u03ac","height":456,"width":600},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2
\u03a0\u03cc\u03c1\u03c4\u03bf \u0393\u03b5\u03c1\u03bc\u03b5\u03bd\u03cc","owner":"AnaDigit","x":23.223902702332,"y":38.147082166396,"photo":"Attiki_Porto_Germeno_agNikolaos","type":9,"zoom_level":15,"id":604,"hlink_GR":"","hlink_EN":"","description":"","height":362,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae
\u03a0\u03cc\u03c1\u03c4\u03bf \u0393\u03b5\u03c1\u03bc\u03b5\u03bd\u03cc","owner":"AnaDigit","x":23.211038827896,"y":38.162048674135,"photo":"Attiki_Porto_Germeno_AgParaskevi","type":9,"zoom_level":15,"id":605,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c3\u03c4\u03bf \u03a0\u03cc\u03c1\u03c4\u03bf \u0393\u03b5\u03c1\u03bc\u03b5\u03bd\u03cc","height":384,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u039f \u03ba\u03cc\u03bb\u03c0\u03bf\u03c2 \u0391\u03b9\u03b3\u03bf\u03c3\u03b8\u03b5\u03bd\u03ce\u03bd \u03ba\u03b1\u03b9 \u03bf \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1\u03c2 \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u039a\u03c5\u03c0\u03c1\u03b9\u03b1\u03bd\u03cc","owner":"AnaDigit","x":23.178840279581,"y":38.141805234341,"photo":"Panoramiko_Kitherona4","type":0,"zoom_level":13,"id":606,"hlink_GR":"","hlink_EN":"","description":"","height":188,"width":800},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0397 \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ae \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1
\u03c4\u03b7\u03c2 \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1\u03c2","owner":"AnaDigit","x":23.227110624313,"y":38.14864307869,"photo":"Attiki_Panagia_Pentakliti_vasiliki_Aigostherna2","type":9,"zoom_level":14,"id":607,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c4\u03c1\u03af\u03ba\u03bf\u03c7\u03b7 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03b7\u03c2 \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1\u03c2 (11\u03bf\u03c2-12\u03bf\u03c2 \u03b1\u03b9. \u03bc.\u03a7., \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1 \u03b1\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u0386\u03bd\u03bd\u03b1) \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03b5 \u03b5\u03c1\u03b5\u03af\u03c0\u03b9\u03b1 \u03c0\u03b5\u03bd\u03c4\u03ac\u03ba\u03bb\u03b9\u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b1\u03b9\u03bf\u03c7\u03c1\u03b9\u03c3\u03c4\u03b9\u03b1\u03bd\u03b9\u03ba\u03ae\u03c2 \u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae\u03c2 (6\u03bf\u03c2 \u03b1\u03b9. \u03bc.\u03a7.), \u03c0\u03bf\u03c5 \u03b5\u03af\u03c7\u03b5 \u03c7\u03c4\u03b9\u03c3\u03c4\u03b5\u03af \u03bc\u03b5 \u03ac\u03c6\u03b8\u03bf\u03bd\u03bf \u03b1\u03c1\u03c7\u03b1\u03af\u03bf \u03c5\u03bb\u03b9\u03ba\u03cc. \u03a3\u03c4\u03b7\u03bd \u03bd\u03b5\u03ce\u03c4\u03b5\u03c1\u03b7 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03ce\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c8\u03b7\u03c6\u03b9\u03b4\u03c9\u03c4\u03bf\u03cd \u03b1\u03c0\u03cc \u03c4\u03bf \u03bd\u03ac\u03c1\u03b8\u03b7\u03ba\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03bc\u03b5\u03c3\u03b1\u03af\u03bf \u03ba\u03bb\u03af\u03c4\u03bf\u03c2, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03ba\u03b1\u03b9 \u03bf\u03c1\u03b8\u03bf\u03b3\u03ce\u03bd\u03b9\u03bf \u03b2\u03b1\u03c0\u03c4\u03b9\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf \u03c3\u03c4\u03b7 \u03bd\u03cc\u03c4\u03b9\u03b1 \u03c0\u03bb\u03b5\u03c5\u03c1\u03ac.","height":494,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2
\u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u0391\u03b9\u03b3\u03bf\u03c3\u03b8\u03b5\u03bd\u03ce\u03bd","owner":"AnaDigit","x":23.22875213623,"y":38.146862792263,"photo":"Attiki_AgGeorgios_Aigosthenon1","type":9,"zoom_level":14,"id":608,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03cc\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03c3\u03c4\u03b1\u03c5\u03c1\u03b5\u03c0\u03af\u03c3\u03c4\u03b5\u03b3\u03bf\u03c2 \u03bd\u03b1\u03cc\u03c2, \u03bc\u03b5 \u03bc\u03b5\u03c4\u03b1\u03b3\u03b5\u03bd\u03ad\u03c3\u03c4\u03b5\u03c1\u03bf \u03c0\u03c1\u03bf\u03b8\u03ac\u03bb\u03b1\u03bc\u03bf. \u039f\u03b9 \u03b1\u03b3\u03b9\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03ba\u03b1\u03bb\u03c5\u03c6\u03b8\u03b5\u03af \u03b1\u03c1\u03ba\u03b5\u03c4\u03ad\u03c2 \u03c6\u03bf\u03c1\u03ad\u03c2, \u03bc\u03b5 \u03bd\u03b5\u03ce\u03c4\u03b5\u03c1\u03bf \u03c3\u03c4\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 19\u03bf\u03c5 \u03b1\u03b9. \u039f \u03bd\u03b1\u03cc\u03c2 \u03bb\u03b5\u03b9\u03c4\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c9\u03c2 \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03bc\u03b9\u03ba\u03c1\u03ae\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u03c4\u03c9\u03bd \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03ce\u03bd \u03c7\u03c1\u03cc\u03bd\u03c9\u03bd, \u03c4\u03b1 \u03ba\u03b5\u03bb\u03b9\u03ac \u03c4\u03b7\u03c2 \u03bf\u03c0\u03bf\u03af\u03b1\u03c2 \u03c3\u03ce\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9, \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2 \u03b4\u03af\u03c0\u03bb\u03b1.","height":448,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0391\u03c1\u03c7\u03b1\u03af\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf
\u0391\u03b9\u03b3\u03bf\u03c3\u03b8\u03b5\u03bd\u03ce\u03bd","owner":"AnaDigit","x":23.228977441787,"y":38.147335289578,"photo":"Attiki_Porto_Germeno_Aigosthena8","type":10,"zoom_level":12,"id":609,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/3\/gh351.jsp?obj_id=12862","hlink_EN":"http:\/\/odysseus.culture.gr\/h\/3\/eh351.jsp?obj_id=12862","description":"\u0397 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03ba\u03b1\u03c4\u03b1\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 190\u03a780 \u03bc. \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c8\u03b7\u03bb\u03cc \u03c4\u03b5\u03af\u03c7\u03bf\u03c2 \u03bc\u03b5 \u03b9\u03c3\u03c7\u03c5\u03c1\u03bf\u03cd\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c5\u03c2, \u03bf \u03c0\u03b9\u03cc \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03cc\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03bf\u03c0\u03bf\u03af\u03bf\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03cd\u03c8\u03bf\u03c2 18\u03bc. \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b5\u03c5\u03c1\u03ac 8.8\u03bc. \u03a4\u03b5\u03af\u03c7\u03b7 \u03c0\u03b5\u03c1\u03b9\u03ad\u03b2\u03b1\u03bb\u03b1\u03bd \u03bf\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03b7 \u03c4\u03b7\u03bd \u03c0\u03cc\u03bb\u03b7, \u03c0\u03b5\u03c1\u03b9\u03ba\u03bb\u03b5\u03af\u03bf\u03bd\u03c4\u03b1\u03c2 \u03b4\u03b9\u03ac\u03c6\u03bf\u03c1\u03b1 \u03ba\u03c4\u03af\u03c3\u03bc\u03b1\u03c4\u03b1, \u03ba\u03b1\u03b9 \u03ad\u03c6\u03c4\u03b1\u03bd\u03b1\u03bd \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c4\u03b7 \u03b8\u03ac\u03bb\u03b1\u03c3\u03c3\u03b1, \u03cc\u03c0\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1. \u03a4\u03b1 \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1 \u03b5\u03ba\u03c4\u03b5\u03bb\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 \u03c4\u03c9\u03bd \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03ba\u03c4\u03b9\u03c3\u03bc\u03ac\u03c4\u03c9\u03bd \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2, \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b5\u03af \u03c6\u03b8\u03bf\u03c1\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03b4\u03b9\u03ac\u03b2\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03c5\u03c7\u03bd\u03bf\u03cd\u03c2 \u03c3\u03b5\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2.","height":253,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","owner":"AnaDigit","x":23.259726285933,"y":38.159172035966,"photo":"Attiki_AgIoanis_prodromos_Porto_Germaeno21","type":9,"zoom_level":14,"id":610,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03c3\u03c4\u03b1\u03c5\u03c1\u03b5\u03c0\u03af\u03c3\u03c4\u03b5\u03b3\u03bf\u03c2 \u03bd\u03b1\u03cc\u03c2, \u03c3\u03c4\u03bf \u03b1\u03bd\u03ce\u03c4\u03b5\u03c1\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03bc\u03b9\u03b1\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03ae\u03c2 \u03b6\u03ce\u03bd\u03b7\u03c2. \u03a0\u03af\u03c3\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c5\u03c0\u03ae\u03c1\u03c7\u03b5 \u03c0\u03b7\u03b3\u03ae \u03bc\u03b5 \u03bc\u03b9\u03ba\u03c1\u03ae \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03bd\u03b5\u03c1\u03bf\u03cd, \u03b5\u03bd\u03ce \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03ce\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9. \u0395\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ac \u03c4\u03bf \u03b4\u03ac\u03c0\u03b5\u03b4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03b2\u03c5\u03b8\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf, \u03b4\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03cd\u03c8\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03c4\u03c1\u03bf\u03cd\u03bb\u03bf. \u0395\u03b9\u03ba\u03bf\u03bd\u03bf\u03b3\u03c1\u03ac\u03c6\u03b7\u03c3\u03b7 \u03bd\u03b5\u03ce\u03c4\u03b5\u03c1\u03c9\u03bd \u03c7\u03c1\u03cc\u03bd\u03c9\u03bd. ","height":476,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0391\u03c1\u03c7\u03b1\u03af\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf
\u0391\u03b9\u03b3\u03bf\u03c3\u03b8\u03b5\u03bd\u03ce\u03bd","owner":"AnaDigit","x":23.224836111068,"y":38.149381336384,"photo":"Attiki_Porto_Germeno_Aigosthena1","type":10,"zoom_level":15,"id":614,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b1\u03c1\u03ac\u03ba\u03c4\u03b9\u03b1 \u03b1\u03c0\u03cc\u03bb\u03b7\u03be\u03b7 \u03c4\u03bf\u03c5 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u0391\u03b9\u03b3\u03bf\u03c3\u03b8\u03b5\u03bd\u03ce\u03bd","height":512,"width":464},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u03a0\u03b1\u03bd\u03bf\u03c1\u03b1\u03bc\u03b9\u03ba\u03cc \u03c4\u03bf\u03c5 \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.303328275679,"y":38.137264528115,"photo":"Panoramiko_Kitherona","type":0,"zoom_level":12,"id":615,"hlink_GR":"","hlink_EN":"","description":"","height":179,"width":1000},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","owner":"AnaDigit","x":23.31427168846,"y":38.156873174614,"photo":"Attiki_Paliochori_Vilia_AgGeorgios","type":9,"zoom_level":14,"id":616,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3. \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5. \u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u03bc\u03ad\u03bb\u03b7 \u03c3\u03c4\u03bf\u03bd \u03c0\u03b5\u03c1\u03af\u03b2\u03bf\u03bb\u03bf.","height":460,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u039c\u03b5\u03c4\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 \u03a3\u03c9\u03c4\u03ae\u03c1\u03b1","owner":"AnaDigit","x":23.337435245512,"y":38.167206936055,"photo":"Attiki_Vilia_MetSotiros_Tsiller_18931","type":9,"zoom_level":14,"id":619,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03b7\u03c2 \u039c\u03b5\u03c4\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a3\u03c9\u03c4\u03ae\u03c1\u03b1, \u03ad\u03c1\u03b3\u03bf \u03c4\u03bf\u03c5 \u0395. \u03a4\u03c3\u03af\u03bb\u03bb\u03b5\u03c1 (1893)","height":377,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u039d\u03b1\u03cc\u03c2 \u03a4\u03b1\u03be\u03b9\u03b1\u03c1\u03c7\u03ce\u03bd","owner":"AnaDigit","x":23.337478160856,"y":38.167004492756,"photo":"Attiki_Vilia_Taxiarches_16372","type":9,"zoom_level":15,"id":620,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03bd\u03b1\u03cc\u03c2 \u03a4\u03b1\u03be\u03b9\u03b1\u03c1\u03c7\u03ce\u03bd \u03c3\u03c4\u03b1 \u0392\u03af\u03bb\u03b9\u03b1 \u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf 1637.","height":435,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u039c\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2","owner":"AnaDigit","x":23.403964757917,"y":38.242611652494,"photo":"Attiki_Dafni_apothikes1","type":9,"zoom_level":13,"id":622,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u0394\u03ac\u03c6\u03bd\u03b7. \u039a\u03bf\u03bd\u03c4\u03ac \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03b1\u03bb\u03ce\u03bd\u03b9.","height":244,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u03a5\u03c3\u03c4\u03b5\u03c1\u03bf\u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ae \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03b7 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7 \u0394\u03b1\u03c6\u03bd\u03b7","owner":"AnaDigit","x":23.406657695768,"y":38.242367286685,"photo":"Attiki_ereipomeni_eklisia_konta_sti_Dafni2","type":10,"zoom_level":15,"id":623,"hlink_GR":"","hlink_EN":"","description":"","height":283,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u039c\u03bf\u03bd\u03ae \u03a0\u03c1\u03c6. \u0397\u03bb\u03af\u03b1","owner":"AnaDigit","x":23.364675760266,"y":38.20741030448,"photo":"Attiki_PrfIlias_Pastras2","type":10,"zoom_level":13,"id":624,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03bf\u03bd\u03ae \u03a0\u03c1\u03c6. \u0397\u03bb\u03af\u03b1 \u03a0\u03ac\u03c3\u03c4\u03c1\u03b1\u03c2. \u03a4\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03cd\u03b3\u03c7\u03c1\u03bf\u03bd\u03bf \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u039f\u03c3\u03af\u03bf\u03c5 \u039c\u03b5\u03bb\u03b5\u03c4\u03af\u03bf\u03c5.","height":297,"width":512},{"name":"\u039c\u0391\u039d\u0399\u03a4\u0391\u03a1\u0399\u0391
\u0388\u03bd\u03b1 \u03b3\u03b1\u03af\u03b1\u03c3\u03c4\u03c1\u03bf (Geastum sp.)","owner":"AnaDigit","x":23.274462342259,"y":38.158467621935,"photo":"Musgrooms_Geastrum sp","type":6,"zoom_level":14,"id":625,"hlink_GR":"","hlink_EN":"","description":"","height":339,"width":512},{"name":"\u0391\u03a4\u03a4\u0399\u039a\u0397
\u03a4\u03bf \u03b8\u03cd\u03c1\u03c9\u03bc\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03b8\u03b1\u03bd\u03b1\u03c3\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.426983475683,"y":38.243083528973,"photo":"Attiki_AgAthanasios_Dafnis","type":10,"zoom_level":15,"id":627,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":322},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ae \u0391\u03b3\u03af\u03b1\u03c2 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2","owner":"AnaDigit","x":23.64683,"y":38.146874,"photo":"Parnitha_Pigi_AgParaskevis","type":0,"zoom_level":14,"id":658,"hlink_GR":"","hlink_EN":"","description":"","height":906,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03c1\u03c5\u03c6\u03ae \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf","owner":"AnaDigit","x":23.135690212251,"y":38.176885600268,"photo":"Viotia_AgVasilios2","type":0,"zoom_level":15,"id":665,"hlink_GR":"","hlink_EN":"","description":"","height":378,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03ac\u03bc\u03bc\u03b1\u03c2, \u03c3\u03b5 \u03c7\u03ce\u03c1\u03bf \u03bc\u03b5 \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c5","owner":"AnaDigit","x":23.153929233554,"y":38.240972700567,"photo":"Viotia_Livadostra_AgMammas","type":9,"zoom_level":14,"id":666,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03c0\u03b1\u03c1\u03ac\u03bb\u03b9\u03bf\u03c2 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u039a\u03b1\u03bb\u03b1\u03bc\u03ac\u03ba\u03b9","owner":"AnaDigit","x":23.12456244205,"y":38.200307958199,"photo":"Viotia_Kalamaki","type":0,"zoom_level":13,"id":667,"hlink_GR":"","hlink_EN":"","description":"","height":384,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c3\u03c4\u03b7 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1","owner":"AnaDigit","x":23.116939,"y":38.2074,"photo":"Viotia_Livadostra_pyrgos2","type":10,"zoom_level":13,"id":668,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":450},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0395\u03c1\u03b5\u03af\u03c0\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039a\u03c1\u03b5\u03cd\u03c3\u03b9\u03b4\u03b1\u03c2","owner":"AnaDigit","x":23.110367,"y":38.20777,"photo":"Viotia_Livadostra_Krefsis","type":10,"zoom_level":14,"id":669,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f \u03cc\u03c1\u03bc\u03bf\u03c2 \u03c4\u03b7\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.114318370823,"y":38.208472536146,"photo":"Viotia_Livadostra2","type":0,"zoom_level":13,"id":670,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03bf \u039a\u03bf\u03c1\u03bf\u03bc\u03c0\u03af\u03bb\u03b9","owner":"AnaDigit","x":23.162555217746,"y":38.240231157481,"photo":"Viotia_Livadostra1","type":0,"zoom_level":14,"id":671,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2 \u03b7 \u039a\u03bf\u03c1\u03b9\u03bd\u03b8\u03af\u03b1","height":450,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a4\u03b1 \u03c7\u03c9\u03c1\u03b9\u03ac \u0398\u03b5\u03c3\u03c0\u03b9\u03ad\u03c2 \u03ba\u03b1\u03b9 \u039b\u03b5\u03bf\u03bd\u03c4\u03ac\u03c1\u03b9","owner":"AnaDigit","x":23.175000667576,"y":38.290840955111,"photo":"Viotia_Thespies_Leondari","type":0,"zoom_level":14,"id":672,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2 \u03bf \u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03bf \u03a0\u03b1\u03c1\u03bd\u03b1\u03c3\u03c3\u03cc\u03c2.","height":106,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039b\u03b5\u03bf\u03bd\u03c4\u03ac\u03c1\u03b9
\u03b7 \u03b2\u03c1\u03cd\u03c3\u03b7 \u03a7\u03b1\u03c1\u03bc\u03ac\u03c4\u03b9","owner":"AnaDigit","x":23.169700622562,"y":38.300136922715,"photo":"Viotia_Leondari_vrisi_Charmati","type":9,"zoom_level":15,"id":673,"hlink_GR":"","hlink_EN":"","description":"","height":279,"width":512},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0386\u03c3\u03ba\u03c1\u03b7
\u0397 \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae","owner":"AnaDigit","x":23.06536820099,"y":38.323961957362,"photo":"Viotia_Askri_AgParaskevi","type":9,"zoom_level":14,"id":674,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03bf \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u0386\u03c3\u03ba\u03c1\u03b7\u03c2 ","height":282,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b1 \u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03b9\u03ba\u03ac \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u0395\u03cd\u03c4\u03c1\u03b7\u03c3\u03b7","owner":"AnaDigit","x":23.204633712772,"y":38.2694152786,"photo":"Viotia_Eftrisis","type":10,"zoom_level":14,"id":676,"hlink_GR":"","hlink_EN":"","description":"","height":253,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03b1\u03bd\u03bf\u03c1\u03b1\u03bc\u03b9\u03ba\u03cc \u03c4\u03b7\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.11996173859,"y":38.205589299834,"photo":"Livadostra_pano","type":0,"zoom_level":12,"id":677,"hlink_GR":"","hlink_EN":"","description":"","height":380,"width":1000},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
Hermodactylus tuberosa","owner":"AnaDigit","x":23.131291389467,"y":38.173376969428,"photo":"Hermodactylus tuberosa","type":1,"zoom_level":14,"id":678,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":339},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0386\u03c3\u03ba\u03c1\u03b7
\u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2","owner":"AnaDigit","x":23.074337507935,"y":38.32712666349,"photo":"Viotia_Askri_arxeos_pyrgos2","type":10,"zoom_level":13,"id":679,"hlink_GR":"","hlink_EN":"","description":"","height":338,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0386\u03c3\u03ba\u03c1\u03b7
\u039f \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 (14 \u03b1\u03b9.)","owner":"AnaDigit","x":23.094684600832,"y":38.318371746369,"photo":"Viotia_Askri_meseonikos_pyrgos4","type":10,"zoom_level":13,"id":680,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039b\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1\u03c2","owner":"AnaDigit","x":23.094212532046,"y":38.318405416779,"photo":"Viotia_Askri_Palia_ekklisia","type":9,"zoom_level":16,"id":681,"hlink_GR":"","hlink_EN":"","description":"","height":339,"width":512},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03bc\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5 \u039c\u03b1\u03c5\u03c1\u03bf\u03bc\u03b1\u03c4\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.117429733278,"y":38.348062972169,"photo":"Viotia_moni_AgGeorgiou_Mavromati2","type":9,"zoom_level":14,"id":682,"hlink_GR":"","hlink_EN":"","description":"","height":327,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039c\u03b1\u03c5\u03c1\u03bf\u03bc\u03b1\u03bd\u03c4\u03ae\u03bb\u03b1
(\u0391\u03b3\u03af\u03b1 \u0395\u03bb\u03b5\u03bf\u03cd\u03c3\u03b1)","owner":"AnaDigit","x":22.522022247314,"y":38.62880155483,"photo":"Polydroso_Eleousa","type":10,"zoom_level":14,"id":728,"hlink_GR":"http:\/\/afaia-kalokairi.blogspot.gr\/2011\/11\/blog-post_20.html","hlink_EN":"","description":"","height":400,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03b7\u03b3\u03ad\u03c2 \u03a0\u03bf\u03bb\u03c5\u03b4\u03c1\u03cc\u03c3\u03bf\u03c5","owner":"AnaDigit","x":22.520155429837,"y":38.629480448193,"photo":"Polydroso_piges_Kifisou","type":71,"zoom_level":14,"id":755,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03b7\u03b3\u03ae \u03c4\u03bf\u03c5 \u03a0\u03bf\u03bb\u03c5\u03b4\u03c1\u03cc\u03c3\u03bf\u03c5 \u03ae \u03c0\u03b7\u03b3\u03ae \u0391\u03b3\u03af\u03b1\u03c2 \u0395\u03bb\u03b5\u03bf\u03cd\u03c3\u03b1\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c0\u03bf\u03c5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03c4\u03bf\u03bd \u039a\u03b7\u03c6\u03b9\u03c3\u03cc. \u03a4\u03bf 2001 \u03ad\u03b3\u03b9\u03bd\u03b5 \u03b5\u03be\u03b5\u03c1\u03b5\u03cd\u03bd\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c3\u03c0\u03b7\u03bb\u03b1\u03b9\u03bf\u03ba\u03b1\u03c4\u03b1\u03b4\u03cd\u03c4\u03b5\u03c2 \u03c4\u03bf\u03c5 \u03a3\u03a0\u0395\u039b\u0395\u039f \u03c0\u03bf\u03c5 \u03ad\u03c6\u03c4\u03b1\u03c3\u03b1\u03bd \u03c3\u03c4\u03b1 165 \u03bc. \u03bc\u03ae\u03ba\u03bf\u03c2 \u03ba\u03b1\u03c4\u03ac\u03b4\u03c5\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2 \u201337 \u03bc.","height":369,"width":789},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039d\u03b1\u03cc\u03c2 \u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5","owner":"AnaDigit","x":23.03438854217,"y":38.218423882251,"photo":"AgNikolaos_Psatha","type":9,"zoom_level":14,"id":762,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c3\u03c4\u03b7 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c0\u03c1\u03b9\u03bd \u03c4\u03bf\u03bd \u03bf\u03bc\u03ce\u03bd\u03c5\u03bc\u03bf \u03c0\u03b1\u03c1\u03b1\u03bb\u03b9\u03b1\u03ba\u03cc \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc.","height":397,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a3\u03af\u03c6\u03b1\u03b9\/\u03a4\u03af\u03c6\u03b1","owner":"AnaDigit","x":23.053003072733,"y":38.190155299781,"photo":"Arx_Tfes_9","type":10,"zoom_level":13,"id":764,"hlink_GR":"http:\/\/www.ehw.gr\/l.aspx?id=12897","hlink_EN":"","description":"\u039f\u03b9 \u03a3\u03af\u03c6\u03b1\u03b9 \u03ae \u03a4\u03af\u03c6\u03b1 \u03ae\u03c4\u03b1\u03bd \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03ac\u03bb\u03b9\u03b1 \u03c0\u03cc\u03bb\u03b7 \u03bc\u03b5 \u03b1\u03be\u03b9\u03cc\u03bb\u03bf\u03b3\u03b5\u03c2 \u03bb\u03b9\u03bc\u03b5\u03bd\u03b9\u03ba\u03ad\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2, \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03bf\u03b9\u03ba\u03ae\u03b8\u03ba\u03b5 \u03c3\u03c5\u03bd\u03b5\u03ba\u03c4\u03b9\u03ba\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c0\u03c1\u03c9\u03bf\u03b5\u03bb\u03bb\u03b1\u03b4\u03b9\u03ba\u03ae \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf \u03ad\u03c9\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ac \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1. \u0397 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03ae \u03c4\u03b7\u03c2 \u03c3\u03ce\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03c0\u03bf\u03bb\u03cd \u03ba\u03b1\u03bb\u03ae \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7, \u03bb\u03cc\u03b3\u03c9 \u03c4\u03bf\u03c5 \u03cc\u03c4\u03b9 \u03b7 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03b4\u03b5\u03bd \u03ba\u03b1\u03c4\u03bf\u03b9\u03ba\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5\u03c4\u03ad\u03c0\u03b5\u03b9\u03c4\u03b1 \u03b1\u03c0\u03cc \u03ac\u03bb\u03bb\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc, \u03b1\u03bb\u03bb\u03ac \u03ba\u03b1\u03b9 \u03bb\u03cc\u03b3\u03c9 \u03c4\u03b7\u03c2 \u03b1\u03c0\u03cc\u03ba\u03c1\u03b7\u03bc\u03bd\u03b7\u03c2 \u03c4\u03bf\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1\u03c2 \u03c4\u03b7\u03c2, \u03c0\u03ac\u03bd\u03c9 \u03c3\u03b5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03b2\u03c1\u03ac\u03c7\u03b9\u03bd\u03bf \u03ad\u03be\u03b1\u03c1\u03bc\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03ac\u03bb\u03b9\u03bf \u03bc\u03ad\u03c4\u03c9\u03c0\u03bf (\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03b1\u03bd\u03ce\u03c4\u03b5\u03c1\u03b7 \u03b6\u03ce\u03bd\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03b1\u03ba\u03cc\u03bc\u03b1 \u03ba\u03b1\u03b9 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1). \u03a7\u03b1\u03bc\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b1, \u03c3\u03ce\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03c1\u03b5\u03b9\u03c2 \u03c0\u03cd\u03bb\u03b5\u03c2 \u03bc\u03b5 \u03c0\u03bb\u03bf\u03cd\u03c3\u03b9\u03b1 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1, \u03c7\u03ce\u03c1\u03bf\u03c2 \u03c0\u03bf\u03c5 \u03af\u03c3\u03c9\u03c2 \u03ae\u03c4\u03b1\u03bd \u03b7 \u03b1\u03b3\u03bf\u03c1\u03ac \u03c4\u03b7\u03c2 \u03c0\u03cc\u03bb\u03b7\u03c2, \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03bd\u03b1\u03ce\u03c2, \u03bc\u03ad\u03c1\u03bf\u03c2 \u03c4\u03c9\u03bd \u03bb\u03b9\u03bc\u03b5\u03bd\u03b9\u03ba\u03ce\u03bd \u03c5\u03c0\u03bf\u03b4\u03bf\u03bc\u03ce\u03bd \u03ba\u03b1\u03b9 \u03c7\u03ce\u03c1\u03bf\u03c2 \u03bd\u03b5\u03ba\u03c1\u03bf\u03c4\u03b1\u03c6\u03b5\u03af\u03bf\u03c5","height":600,"width":397},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03c1\u03c7\u03b1\u03af\u03bf\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2","owner":"AnaDigit","x":23.042907238002,"y":38.225976049768,"photo":"Arx_pyrgos_pros_Alyki3","type":10,"zoom_level":13,"id":765,"hlink_GR":"","hlink_EN":"","description":"\u0391\u03c1\u03c7\u03b1\u03af\u03bf\u03c2 \u03c4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03bf \u03bf\u03b4\u03b9\u03ba\u03cc \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u0391\u03bb\u03c5\u03ba\u03ae (\u03b1\u03c1\u03c7\u03b1\u03af\u03b5\u03c2 \u03a3\u03af\u03c6\u03b5\u03c2).","height":397,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0394\u03bf\u03bc\u03b2\u03c1\u03b1\u03af\u03bd\u03b1
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u039a\u03b1\u03c1\u03b1\u03ca\u03c3\u03ba\u03ac\u03ba\u03b7","owner":"AnaDigit","x":22.984038114542,"y":38.255073219538,"photo":"Pirgos_Karaiskaki_Domvraina2","type":9,"zoom_level":14,"id":772,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u0391\u03ba\u03c1\u03b1\u03b9\u03c6\u03bd\u03af\u03bf\u03c5","owner":"anadigit","x":23.22283,"y":38.450996,"photo":"Akrefnion_acropolis_pano","type":10,"zoom_level":13,"id":911,"hlink_GR":"http:\/\/www.akraifnia.gr","hlink_EN":"","description":"\u0397 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u0391\u03ba\u03c1\u03b1\u03b9\u03c6\u03af\u03b1\u03c2 \u03b5\u03af\u03c7\u03b5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03c4\u03b5\u03af\u03c7\u03bf\u03c2, \u03c0\u03bf\u03c5 \u03ba\u03c4\u03af\u03c3\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03ac \u03c4\u03bf\u03bd 4\u03bf\u03bd \u03c0\u03a7. \u03b1\u03b9\u03ce\u03bd\u03b1 \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf\u03c5\u03c2 \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd\u03c2 \u03c7\u03c1\u03cc\u03bd\u03bf\u03c5\u03c2. \u0389\u03c4\u03b1\u03bd \u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03b7\u03bc\u03ad\u03bd\u03bf \u03bc\u03b5 \u03c0\u03bf\u03bb\u03c5\u03b3\u03c9\u03bd\u03b9\u03ba\u03bf\u03cd\u03c2 \u03bb\u03af\u03b8\u03bf\u03c5\u03c2. \u0394\u03b9\u03b1\u03c3\u03ce\u03b8\u03b7\u03ba\u03b1\u03bd \u03c3\u03b5 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03ba\u03b1\u03bb\u03ae \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03c7\u03b5\u03b4\u03cc\u03bd \u03bf\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03b7 \u03b7 \u03bd\u03cc\u03c4\u03b9\u03b1 \u03c0\u03cd\u03bb\u03b7.","height":394,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03b1\u03bd\u03bf\u03c1\u03b1\u03bc\u03b9\u03ba\u03cc \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd
\u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u039a\u03c5\u03c1\u03c4\u03ce\u03bd\u03b7","owner":"anadigit","x":23.066425,"y":38.606277,"photo":"Chlomo_Kyrtoni_pano","type":0,"zoom_level":12,"id":912,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b1\u03bd\u03bf\u03c1\u03b1\u03bc\u03b9\u03ba\u03ae \u03b8\u03ad\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039a\u03c5\u03c1\u03c4\u03ce\u03bd\u03b7\u03c2. \u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac, \u03b7 \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03a7\u03bb\u03c9\u03bc\u03bf\u03cd, \u03ba\u03ac\u03c4\u03c9 \u03b7 \u03c0\u03b1\u03c1\u03b1\u03bb\u03b9\u03b1\u03ba\u03ae \u03a6\u03b8\u03b9\u03ce\u03c4\u03b9\u03b4\u03b1 \u03ba\u03b1\u03b9 \u03bf \u039c\u03b1\u03bb\u03b9\u03b1\u03ba\u03cc\u03c2 \u03ba\u03cc\u03bb\u03c0\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03af\u03ba\u03c1\u03c5 \u03b7 \u0395\u03cd\u03b2\u03bf\u03b9\u03b1.","height":225,"width":1600},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u039b\u03b1\u03b4\u03b1\u03bd\u03b9\u03ac
Cistus parviflorus","owner":"anadigit","x":23.41803,"y":38.425894,"photo":"Cistus_parviflorus","type":1,"zoom_level":14,"id":913,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03c4\u03bf\u03c5 \u0393\u03bb\u03b1","owner":"anadigit","x":23.183348,"y":38.482951,"photo":"Glas_pano","type":10,"zoom_level":13,"id":914,"hlink_GR":"http:\/\/viotikoskosmos.wikidot.com\/glas","hlink_EN":"","description":"\u039f \u0393\u03bb\u03b1\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03c5\u03ba\u03b7\u03bd\u03b1\u03ca\u03ba\u03ae \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7, \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7\u03c2 \u03c0\u03cc\u03bb\u03b7\u03c2 \u03ae \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03ad\u03c1\u03b3\u03bf \u03c0\u03bf\u03bb\u03bb\u03ce\u03bd \u03b3\u03b5\u03b9\u03c4\u03bf\u03bd\u03b9\u03ba\u03ce\u03bd \u03c0\u03cc\u03bb\u03b5\u03c9\u03bd \u03c4\u03b7\u03c2 \u039a\u03c9\u03c0\u03b1\u0390\u03b4\u03b1\u03c2, \u03c0\u03bf\u03c5 \u03b2\u03c1\u03af\u03c3\u03ba\u03bf\u03bd\u03c4\u03b1\u03bd \u03c5\u03c0\u03cc \u03c4\u03bf\u03bd \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf \u03c4\u03c9\u03bd \u039c\u03b9\u03bd\u03cd\u03c9\u03bd \u03c4\u03bf\u03c5 \u039f\u03c1\u03c7\u03bf\u03bc\u03b5\u03bd\u03bf\u03cd. \u039c\u03b5 \u03bc\u03ae\u03ba\u03bf\u03c2 3\u03c7\u03bb\u03bc \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03c3\u03b5 \u03c3\u03c9\u03b6\u03ce\u03bc\u03b5\u03bd\u03b7 \u03bf\u03c7\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u0395\u03bb\u03bb\u03ac\u03b4\u03b1.","height":386,"width":1000},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u03a0\u03b1\u03c0\u03b1\u03c1\u03bf\u03cd\u03bd\u03b1
Papaver rhoeas","owner":"anadigit","x":23.385082,"y":38.378962,"photo":"Papaver_rhoeas2","type":1,"zoom_level":14,"id":916,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c4\u03bf\u03c5 \u03a5\u03c0\u03ac\u03c4\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b1\u03bd\u03c4\u03ac\u03bc\u03b5 \u03ba\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03c4\u03ac\u03c6\u03c5\u03c4\u03b1 \u03b1\u03c0\u03cc \u03ba\u03bf\u03b9\u03bd\u03ad\u03c2 \u03c0\u03b1\u03c0\u03b1\u03c1\u03bf\u03cd\u03bd\u03b5\u03c2.","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039d\u03ad\u03bf \u039a\u03cc\u03ba\u03ba\u03b9\u03bd\u03bf
\u039c\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03b1 \u039b\u0391\u03a1\u039a\u039f","owner":"anadigit","x":23.274446,"y":38.500476,"photo":"Kokino_metaleia_pano","type":0,"zoom_level":14,"id":917,"hlink_GR":"","hlink_EN":"","description":"","height":140,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03b1\u03bd\u03bf\u03c1\u03b1\u03bc\u03b9\u03ba\u03cc \u039a\u03c9\u03c0\u03b1\u03ca\u03b4\u03b1\u03c2
\u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf
\u03c7\u03c9\u03c1\u03b9\u03cc \u03a0\u03cd\u03c1\u03b3\u03bf\u03c2","owner":"anadigit","x":23.040815,"y":38.513036,"photo":"Kopaida_Pyrgos_pano","type":0,"zoom_level":13,"id":918,"hlink_GR":"","hlink_EN":"","description":"","height":517,"width":1600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2
\u03c3\u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc \u03a0\u03cd\u03c1\u03b3\u03bf\u03c2","owner":"anadigit","x":23.035451,"y":38.512835,"photo":"Viotia_Kopais_Pyrgos3","type":10,"zoom_level":14,"id":919,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
Leopoldia comosa
(Muscari commosum)","owner":"anadigit","x":23.186041,"y":38.472763,"photo":"Leopoldia_comosa","type":1,"zoom_level":14,"id":920,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":510},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u039d\u03bf\u03cd\u03c6\u03b1\u03c1\u03bf
Nuphar lutea","owner":"anadigit","x":23.093601,"y":38.480221,"photo":"Nuphar_lutea","type":1,"zoom_level":14,"id":921,"hlink_GR":"","hlink_EN":"","description":"","height":547,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039d\u03b1\u03cc\u03c2 \u0391\u03c0\u03cc\u03bb\u03bb\u03c9\u03bd\u03b1 \u03a0\u03c4\u03ce\u03bf\u03c5","owner":"anadigit","x":23.250681877136,"y":38.459884762179,"photo":"Ptoon_Naos_Apollona_pano","type":10,"zoom_level":13,"id":922,"hlink_GR":"http:\/\/www.akraifnia.gr\/?page_id=348","hlink_EN":"","description":"\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03a0\u03c4\u03ce\u03bf\u03c5 \u0391\u03c0\u03cc\u03bb\u03bb\u03c9\u03bd\u03b1 \u03ae\u03c4\u03b1\u03bd \u03b4\u03c9\u03c1\u03b9\u03ba\u03bf\u03cd \u03c1\u03c5\u03b8\u03bc\u03bf\u03cd \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\u03c4\u03b1\u03bd \u03b1\u03c0\u03cc \u03ba\u03b9\u03bf\u03bd\u03bf\u03c3\u03c4\u03bf\u03b9\u03c7\u03af\u03b5\u03c2. \u0394\u03af\u03c0\u03bb\u03b1 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03c3\u03b5 \u03ad\u03bd\u03b1 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c3\u03c0\u03bf\u03c5\u03b4\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03c4\u03bf \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc \u03c4\u03b1 \u03ad\u03be\u03b9 \u03bc\u03b1\u03bd\u03c4\u03b5\u03af\u03b1 \u03c4\u03b7\u03c2 \u0392\u03bf\u03b9\u03c9\u03c4\u03af\u03b1\u03c2 (\u03c4\u03b1 \u03ac\u03bb\u03bb\u03b1 5 \u03ae\u03c4\u03b1\u03bd \u03c4\u03bf\u03c5 \u03a4\u03c1\u03bf\u03c6\u03c9\u03bd\u03af\u03bf\u03c5 \u03c3\u03c4\u03b7 \u039b\u03b5\u03b9\u03b2\u03b1\u03b4\u03b9\u03ac, \u03c4\u03c9\u03bd \u0398\u03b7\u03b2\u03ce\u03bd, \u03c4\u03bf\u03c5 \u0391\u03bc\u03c6\u03b9\u03b1\u03c1\u03ac\u03bf\u03c5, \u03c4\u03b7\u03c2 \u03a4\u03b5\u03b3\u03cd\u03c1\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u0391\u03b2\u03ce\u03bd). \u03a4\u03bf \u03bc\u03b1\u03bd\u03c4\u03b5\u03af\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03b6\u03cc\u03c4\u03b1\u03bd \"\u03b1\u03c8\u03b5\u03c5\u03b4\u03ad\u03c2\", \u03b4\u03b7\u03bb\u03b1\u03b4\u03ae \u03b1\u03bb\u03ac\u03b8\u03b7\u03c4\u03bf \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03c1\u03b7\u03c3\u03bc\u03bf\u03cd\u03c2 \u03ba\u03b1\u03b9 \"\u03c0\u03bf\u03bb\u03cd\u03c6\u03c9\u03bd\u03bf\", \u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03ad\u03b4\u03b9\u03bd\u03b5 \u03c7\u03c1\u03b7\u03c3\u03bc\u03bf\u03cd\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03b5 \u03bc\u03b7 \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1. \u03a4\u03bf \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03bd\u03b1\u03bf\u03cd \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03b5\u03bb\u03ac\u03bc\u03b2\u03b1\u03bd\u03b5 \u03c4\u03bf \u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf (\u03c4\u03b5\u03c7\u03bd\u03b7\u03c4\u03ae \u03b8\u03bf\u03bb\u03c9\u03c4\u03ae \u03ba\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03ba\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03b2\u03c1\u03b1\u03c7\u03bf\u03c3\u03ba\u03b5\u03c0\u03ae), \u03bd\u03b1\u03cc \u03c4\u03b7\u03c2 \u03a0\u03c1\u03bf\u03bd\u03b1\u03af\u03b1\u03c2 \u0391\u03b8\u03b7\u03bd\u03ac\u03c2, \u03b8\u03ad\u03b1\u03c4\u03c1\u03bf, \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u0398\u03b5\u03c9\u03c1\u03bf\u03cd\u03c2, \u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u0399\u03b5\u03c1\u03b5\u03af\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5\u03c2 \u0394\u03b7\u03bc\u03bf\u03c3\u03af\u03bf\u03c5\u03c2 \u039b\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03c2, \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae \u03bd\u03b5\u03c1\u03bf\u03cd \u03ba\u03b1\u03b9 \u03bb\u03bf\u03c5\u03c4\u03c1\u03ac.","height":422,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0395\u03c1\u03b5\u03af\u03c0\u03b9\u03b1 \u03ba\u03c4\u03b9\u03c1\u03af\u03c9\u03bd
\u03c4\u03c9\u03bd \u03c0\u03b1\u03bb\u03b9\u03ce\u03bd \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03c9\u03bd","owner":"anadigit","x":23.099598,"y":38.556047,"photo":"Viotia_ereipia_ktiron_metleion_Yitou","type":9,"zoom_level":15,"id":923,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2","owner":"anadigit","x":23.103101,"y":38.557788,"photo":"Viotia_Loutsi_Yitos_AgAthanasios","type":9,"zoom_level":14,"id":924,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1, \u03c0\u03bf\u03c5 \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03bf\u03c5 \u03bb\u03cc\u03c6\u03bf\u03c5 \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a5\u03b7\u03c4\u03bf\u03cd, \u03b5\u03bd\u03c4\u03ac\u03c3\u03c3\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c4\u03bf\u03b9\u03c7\u03bf\u03c0\u03bf\u03b9\u03af\u03b1 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac \u03bc\u03ad\u03bb\u03b7 \u03c4\u03bf\u03c5 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2.","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03c5\u03c1\u03c4\u03ce\u03bd\u03b7
\u03a0\u03b7\u03b3\u03ae \u03c0\u03bf\u03c5 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03b9
\u03bf \u03a0\u03b1\u03c5\u03c3\u03b1\u03bd\u03af\u03b1\u03c2","owner":"anadigit","x":23.040075,"y":38.581678,"photo":"Viotia_Kyrtoni_pigiPafsania2","type":10,"zoom_level":15,"id":925,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03b7\u03bd \u03bd\u03cc\u03c4\u03b9\u03b1 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03c4\u03bf\u03c5 \u03c7\u03c9\u03c1\u03b9\u03bf\u03cd \u039a\u03c5\u03c1\u03c4\u03ce\u03bd\u03b7 (\u03c0\u03b1\u03bb\u03b9\u03cc \u03cc\u03bd\u03bf\u03bc\u03b1 \u039a\u03bf\u03bb\u03ac\u03ba\u03b1) \u03b1\u03bd\u03b1\u03b2\u03bb\u03cd\u03b6\u03b5\u03b9 \u03bd\u03b5\u03c1\u03cc \u03bc\u03ad\u03c3\u03b1 \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03b2\u03c1\u03ac\u03c7\u03bf (\u03c0\u03b7\u03b3\u03ae \u039a\u03b1\u03bc\u03af\u03bd\u03b9). \u0397 \u03c0\u03b7\u03b3\u03ae \u03b1\u03c5\u03c4\u03ae \u03ad\u03ba\u03b1\u03bd\u03b5 \u03b5\u03bd\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03c0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03c4\u03ae \u03c4\u03c9\u03bd \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c7\u03c1\u03cc\u03bd\u03c9\u03bd \u03a0\u03b1\u03c5\u03c3\u03b1\u03bd\u03af\u03b1, \u03bf \u03bf\u03c0\u03bf\u03af\u03bf\u03c2 \u03c4\u03b7\u03bd \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9.","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039a\u03c5\u03c1\u03c4\u03ce\u03bd\u03b7\u03c2","owner":"anadigit","x":23.068662,"y":38.60761,"photo":"Viotia_Kyrtoni_pirgos1","type":10,"zoom_level":13,"id":926,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03b3\u03af\u03b1 \u0395\u03bb\u03b5\u03bf\u03cd\u03c3\u03b1","owner":"anadigit","x":23.279408,"y":38.378314,"photo":"Viotia_Yliki_AgEleousa","type":9,"zoom_level":14,"id":927,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf 1903","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u0391\u03b3\u03af\u03b1 \u0395\u03bb\u03b5\u03bf\u03cd\u03c3\u03b1","owner":"anadigit","x":23.280814,"y":38.37865,"photo":"Viotia_Yliki_OldAgEleousa1","type":9,"zoom_level":15,"id":928,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03b1\u03bb\u03b9\u03ac \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03b7 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1","height":397,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0395\u03c5\u03c3\u03c4\u03ac\u03b8\u03b9\u03bf\u03c2
","owner":"anadigit","x":23.057965,"y":38.602563,"photo":"Viotia_Kyrtoni_AgEfstathios_AgNikolaos","type":9,"zoom_level":14,"id":929,"hlink_GR":"","hlink_EN":"","description":"\u0394\u03af\u03c0\u03bb\u03b1 \u03c3\u03c4\u03bf\u03bd \u03bd\u03b5\u03ce\u03c4\u03b5\u03c1\u03bf \u0386\u03b3. \u0395\u03c5\u03c3\u03c4\u03ac\u03b8\u03b9\u03bf \u03c5\u03c8\u03ce\u03bd\u03b5\u03c4\u03b1\u03b9 \u03bf \u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u03bf \u03b5\u03bd \u0392\u03bf\u03c5\u03bd\u03ad\u03bd\u03b7, \u03c0\u03bf\u03c5 \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03ce\u03bd\u03b5\u03b9 \u03bf\u03b3\u03ba\u03cc\u03bb\u03b9\u03b8\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03b9\u03c7\u03c5\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039a\u03c5\u03c1\u03c4\u03ce\u03bd\u03b7\u03c2.","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03ac\u03c1\u03ba\u03bf\u03c2","owner":"anadigit","x":23.10382,"y":38.553614,"photo":"Yitos_agMarkos_pano","type":9,"zoom_level":15,"id":930,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03bd\u03b1\u03cc\u03c2 \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03ce\u03bd\u03b5\u03b9 \u03bb\u03af\u03b8\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03bf\u03c7\u03c5\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u03a5\u03b7\u03c4\u03bf\u03cd","height":508,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03bc\u03bf\u03bd\u03ae \u03c4\u03b7\u03c2
\u0391\u03b3\u03af\u03b1\u03c2 \u03a0\u03b5\u03bb\u03b1\u03b3\u03af\u03b1\u03c2","owner":"anadigit","x":23.26677,"y":38.458692,"photo":"Viotia_Ptoon_AgPelagia","type":9,"zoom_level":13,"id":931,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03a5\u03bb\u03af\u03ba\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03b1\u03b9\u03b3\u03af\u03b4\u03b1","owner":"anadigit","x":23.245698,"y":38.458053,"photo":"Yliki_pano","type":0,"zoom_level":13,"id":932,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":1600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u038e\u03c0\u03b1\u03c4\u03bf\u03bd \u03cc\u03c1\u03bf\u03c2
\u03b7 \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac","owner":"anadigit","x":23.405655,"y":38.395645,"photo":"Ypato_kyria_rematia_","type":0,"zoom_level":15,"id":933,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae \u03c4\u03c9\u03bd \u03b4\u03cd\u03bf \u03b3\u03b5\u03c9\u03bb\u03bf\u03b3\u03b9\u03ba\u03ce\u03bd \u03bc\u03b1\u03b6\u03ce\u03bd \u03c0\u03bf\u03c5 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03c4\u03bf \u038e\u03c0\u03b1\u03c4\u03bf \u03cc\u03c1\u03bf\u03c2, \u03b1\u03bd\u03b1\u03b2\u03bb\u03cd\u03b6\u03b5\u03b9 \u03bc\u03b9\u03b1 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ae \u03c0\u03b7\u03b3\u03ae \u03c0\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b5\u03af \u03c3\u03c4\u03b1\u03b8\u03b5\u03c1\u03ae \u03c4\u03b7\u03c2 \u03c1\u03bf\u03ae \u03c4\u03b7\u03c2 \u03bc\u03b9\u03ba\u03c1\u03ae\u03c2 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac\u03c2. \u039a\u03b1\u03c4\u03ac\u03bd\u03c4\u03b9, \u03b7 \u03bf\u03c1\u03ae \u03b1\u03c5\u03c4\u03ae \u03ba\u03b9\u03bd\u03bf\u03cd\u03c3\u03b5 2 \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c5\u03c2.","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03c4\u03b7\u03c2
\u03bc\u03bf\u03bd\u03ae\u03c2 \u03a3\u03b1\u03b3\u03bc\u03b1\u03c4\u03ac","owner":"anadigit","x":23.411443,"y":38.399761,"photo":"Ypato_moni_Sagmata","type":10,"zoom_level":13,"id":934,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03bf\u03b9\u03bc\u03b7\u03c4\u03b7\u03c1\u03b9\u03b1\u03ba\u03cc\u03c2 \u03bd\u03b1\u03cc\u03c2
\u03bc\u03bf\u03bd\u03ae\u03c2 \u03a3\u03b1\u03b3\u03bc\u03b1\u03c4\u03ac","owner":"anadigit","x":23.411018,"y":38.398646,"photo":"Ypato_moni_Sagmata_kimitiriakos","type":9,"zoom_level":15,"id":935,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03c3\u03ba\u03ae\u03c4\u03b7 \u03c4\u03bf\u03c5
\u039f\u03c3\u03af\u03bf\u03c5 \u039a\u03bb\u03ae\u03bc\u03b7","owner":"anadigit","x":23.409993,"y":38.398889,"photo":"Ypato_Osios_Klimis_pano","type":10,"zoom_level":14,"id":936,"hlink_GR":"","hlink_EN":"","description":"","height":451,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039d\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd
\u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac
\u03c4\u03bf\u03c5 \u038e\u03c0\u03b1\u03c4\u03bf\u03c5","owner":"anadigit","x":23.405205,"y":38.39603,"photo":"Ypato_upper_watermill","type":9,"zoom_level":15,"id":937,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039d\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd
\u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac
\u03c4\u03bf\u03c5 \u038e\u03c0\u03b1\u03c4\u03bf\u03c5","owner":"anadigit","x":23.405965,"y":38.39142,"photo":"Ypato_Lower_Watermill_pano","type":9,"zoom_level":15,"id":938,"hlink_GR":"","hlink_EN":"","description":"","height":528,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03b7 \u03c0\u03cc\u03c1\u03c4\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3. \u0391\u03b8\u03b1\u03bd\u03b1\u03c3\u03af\u03bf\u03c5","owner":"anadigit","x":22.901405,"y":38.587675,"photo":"Viotia_AgAthahasios_AssosRiver","type":9,"zoom_level":15,"id":940,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03cd\u03bb\u03b7 \u03c3\u03c4\u03b7\u03bd \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03c4\u03c9\u03bd \u0391\u03b2\u03ce\u03bd","owner":"anadigit","x":22.916323065759,"y":38.579493369532,"photo":"Viotia_Aves_pyli","type":10,"zoom_level":13,"id":941,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03c4\u03b7\u03c2 \u0394\u03b1\u03c5\u03bb\u03af\u03b4\u03bf\u03c2","owner":"anadigit","x":22.728703,"y":38.507592,"photo":"Viotia_Davlis_eisodos1","type":10,"zoom_level":14,"id":942,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0399\u03b5\u03c1\u03cc \u0397\u03c1\u03b1\u03ba\u03bb\u03ae \u03a7\u03ac\u03c1\u03bf\u03c0\u03b1","owner":"anadigit","x":22.914805,"y":38.379975,"photo":"Viotia_Iraklis_Charopas4","type":10,"zoom_level":14,"id":943,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a4\u0399\u0391
\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u039a\u03bf\u03c1\u03ce\u03bd\u03b5\u03b9\u03b1
\u03ba\u03c1\u03ae\u03bd\u03b7","owner":"anadigit","x":22.961915254593,"y":38.394204115886,"photo":"Viotia_Krini_ancientKoroni","type":9,"zoom_level":15,"id":944,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03ba\u03c1\u03ae\u03bd\u03b7 \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03ce\u03bd\u03b5\u03b9 \u03b4\u03bf\u03bc\u03b9\u03ba\u03ac \u03c5\u03bb\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03bc\u03ad\u03bb\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03c2\u03b7 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u03c0\u03cc\u03bb\u03b7\u03c2","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03c1\u03c7\u03b1\u03af\u03b1 \u039a\u03bf\u03c1\u03ce\u03bd\u03b5\u03b9\u03b1","owner":"anadigit","x":22.961229,"y":38.393279,"photo":"Viotia_Mesaionikos_Pyrgos_Koroneias","type":10,"zoom_level":14,"id":945,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bc\u03ae\u03bc\u03b1 \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03bf\u03cd \u03c0\u03cd\u03c1\u03b3\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c1\u03c7. \u039a\u03bf\u03c1\u03ce\u03bd\u03b5\u03b9\u03b1","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03bc\u03bf\u03bd\u03ae\u03c2 \u0391\u03b3. \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5 \u039f\u03c1\u03c7\u03bf\u03bc\u03b5\u03bf\u03cd","owner":"anadigit","x":22.907874,"y":38.530416,"photo":"Viotia_MoniAgNikolaou_Orchomenos2","type":9,"zoom_level":13,"id":946,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f\u03b9 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b5\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u039c\u03b1\u03c5\u03c1\u03bf\u03bd\u03ad\u03c1\u03b9","owner":"anadigit","x":22.796337,"y":38.538892,"photo":"Viotia_Piges_Mavroneri","type":0,"zoom_level":13,"id":947,"hlink_GR":"","hlink_EN":"","description":"","height":385,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03b9\u03b2\u03c9\u03c4\u03b9\u03cc\u03c3\u03c7\u03b7\u03bc\u03bf\u03b9 \u03c4\u03ac\u03c6\u03bf\u03b9 \u03c3\u03c4\u03bf \u039c\u03b1\u03c5\u03c1\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf","owner":"anadigit","x":22.902641,"y":38.558542,"photo":"Viotia_Mavrokastro_tombs","type":10,"zoom_level":13,"id":948,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 10 \u03bc\u03b9\u03ba\u03c1\u03bf\u03af \u03c4\u03ac\u03c6\u03bf\u03b9 \u03c3\u03b5 \u03b4\u03cd\u03bf \u03bf\u03bc\u03ac\u03b4\u03b5\u03c2, \u03bc\u03b5 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03cc \u03ba\u03b1\u03b9 \u03bd\u03cc\u03c4\u03b9\u03bf \u03c0\u03c1\u03bf\u03c3\u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03c3\u03bc\u03cc \u03b1\u03bd\u03c4\u03af\u03c3\u03c4\u03bf\u03b9\u03c7\u03b1","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397 \u03b8\u03ad\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03c4\u03c9\u03bd \u03a0\u03b1\u03c1\u03b1\u03c0\u03bf\u03c4\u03b1\u03bc\u03af\u03c9\u03bd","owner":"anadigit","x":22.806197,"y":38.553417,"photo":"Viotia_Plaroma_Parapotamion","type":0,"zoom_level":15,"id":949,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u039d\u03bf\u03cd\u03c6\u03b1\u03c1\u03bf (Nuphar lutea)","owner":"anadigit","x":22.960231,"y":38.517443,"photo":"Flora_Nuphar_lutea","type":1,"zoom_level":13,"id":951,"hlink_GR":"","hlink_EN":"","description":"","height":612,"width":800},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u03a6\u03c1\u03b1\u03b3\u03ba\u03bf\u03c3\u03c5\u03ba\u03b9\u03ac
Opuntia ficus-indica","owner":"anadigit","x":22.969007,"y":38.494304,"photo":"Flora_Opuntia_ficus_indica","type":1,"zoom_level":14,"id":952,"hlink_GR":"http:\/\/el.wikipedia.org\/wiki\/\u03a6\u03c1\u03b1\u03b3\u03ba\u03bf\u03c3\u03c5\u03ba\u03b9\u03ac","hlink_EN":"","description":"\u0397 \u03c0\u03b1\u03c4\u03c1\u03af\u03b4\u03b1 \u03c4\u03b7\u03c2 \u03c6\u03c1\u03b1\u03b3\u03ba\u03bf\u03c3\u03c5\u03ba\u03b9\u03ac\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03ae - \u039c\u03b5\u03be\u03b9\u03ba\u03cc \u03b1\u03c0\u03cc \u03cc\u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ae\u03c7\u03b8\u03b7 \u03c3\u03c4\u03b7\u03bd \u0395\u03c5\u03c1\u03ce\u03c0\u03b7 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1 \u03c3\u03b5 \u03cc\u03bb\u03bf \u03c4\u03bf\u03bd \u03ba\u03cc\u03c3\u03bc\u03bf. \u0397 \u03c6\u03c1\u03b1\u03b3\u03ba\u03bf\u03c3\u03c5\u03ba\u03b9\u03ac \u03c1\u03b9\u03b6\u03bf\u03b2\u03bf\u03bb\u03b5\u03af \u03b1\u03c0\u03cc \u03bf\u03c0\u03bf\u03b9\u03bf\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03c4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03b7\u03c2 , \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03bf\u03bb\u03cd \u03b1\u03bd\u03b8\u03b5\u03ba\u03c4\u03b9\u03ba\u03cc \u03c6\u03c5\u03c4\u03cc \u03ba\u03b1\u03b9 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03c5\u03c7\u03bd\u03ac \u03c9\u03c2 \u03c6\u03c5\u03c4\u03bf\u03c6\u03c1\u03ac\u03ba\u03c4\u03b7\u03c2.","height":675,"width":600},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0398\u03bf\u03bb\u03c9\u03c4\u03cc\u03c2 \u03c4\u03ac\u03c6\u03bf\u03c2 \u039c\u03b9\u03bd\u03cd\u03bf\u03c5","owner":"anadigit","x":22.97524,"y":38.492717,"photo":"Viotia_Orchomenos_Tholos","type":10,"zoom_level":13,"id":953,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/2\/gh251.jsp?obj_id=5341","hlink_EN":"http:\/\/odysseus.culture.gr\/h\/2\/eh251.jsp?obj_id=5341","description":"","height":600,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03c1\u03c7\u03b1\u03af\u03bf \u03b8\u03ad\u03b1\u03c4\u03c1\u03bf \u039f\u03c1\u03c7\u03bf\u03bc\u03b5\u03bd\u03bf\u03cd","owner":"anadigit","x":22.975337,"y":38.493053,"photo":"Viotia_Orchomenos_Theatro","type":10,"zoom_level":15,"id":954,"hlink_GR":"http:\/\/www.orchomenos.gr\/gr\/orchomenos-theater.html","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a3\u03ba\u03c1\u03b9\u03c0\u03bf\u03cd","owner":"anadigit","x":22.975852,"y":38.493985,"photo":"Viotia_Orchomenos_Skripou0","type":10,"zoom_level":14,"id":955,"hlink_GR":"http:\/\/el.wikipedia.org\/wiki\/\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1_\u03b7_\u03a3\u03ba\u03c1\u03b9\u03c0\u03bf\u03cd","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f\u03c1\u03c7\u03bf\u03bc\u03b5\u03bd\u03cc\u03c2","owner":"anadigit","x":22.975444,"y":38.490559,"photo":"Viotia_Orchomenos_plateia","type":9,"zoom_level":16,"id":956,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0395\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a3\u03ba\u03c1\u03b9\u03c0\u03bf\u03cd","owner":"anadigit","x":22.976067,"y":38.493801,"photo":"Viotia_Orchomenos_Skripou1","type":10,"zoom_level":18,"id":957,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0395\u03c0\u03b9\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a3\u03ba\u03c1\u03b9\u03c0\u03bf\u03cd","owner":"anadigit","x":22.976281,"y":38.493994,"photo":"Viotia_Orchomenos_Skripou2","type":10,"zoom_level":18,"id":958,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0397\u03bb\u03b9\u03b1\u03ba\u03cc \u03c1\u03bf\u03bb\u03cc\u03b9 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a3\u03ba\u03c1\u03b9\u03c0\u03bf\u03cd","owner":"anadigit","x":22.976142,"y":38.494078,"photo":"Viotia_Orchomenos_Skripou3","type":10,"zoom_level":18,"id":959,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f\u03c1\u03c7\u03bf\u03bc\u03b5\u03bd\u03cc\u03c2
\u0399\u03c7\u03b8\u03c5\u03bf\u03c4\u03c1\u03bf\u03c6\u03b5\u03af\u03bf \u0394\u03ae\u03bc\u03bf\u03c5","owner":"anadigit","x":22.95845,"y":38.502584,"photo":"Viotia_Orchomenos_ixthiotrofeio_Dimou1","type":9,"zoom_level":14,"id":960,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f\u03c1\u03c7\u03bf\u03bc\u03b5\u03bd\u03cc\u03c2
\u0399\u03c7\u03b8\u03c5\u03bf\u03c4\u03c1\u03bf\u03c6\u03b5\u03af\u03bf \u0394\u03ae\u03bc\u03bf\u03c5","owner":"anadigit","x":22.956948,"y":38.503725,"photo":"Viotia_Orchomenos_ixthiotrofeio_Dimou2","type":0,"zoom_level":15,"id":961,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03b1\u03c4\u03b1\u03b2\u03cc\u03b8\u03c1\u03b5\u03c2 \u039a\u03c9\u03c0\u03b1\u03ca\u03b4\u03b1\u03c2","owner":"anadigit","x":23.189206,"y":38.452727,"photo":"Viotia_Kopaida_katavothres_","type":0,"zoom_level":14,"id":962,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf\u03c2 \u0391\u03ba\u03c1\u03b1\u03b9\u03c6\u03bd\u03af\u03bf\u03c5","owner":"anadigit","x":23.212423,"y":38.448206,"photo":"Viotia_Akrefnio_AgVasilios","type":10,"zoom_level":14,"id":963,"hlink_GR":"","hlink_EN":"","description":"","height":300,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039b\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u0391\u03bb\u03b9\u03ac\u03c1\u03c4\u03bf\u03c5","owner":"anadigit","x":23.087732,"y":38.377944,"photo":"Viotia_Aliartos2_pano","type":10,"zoom_level":14,"id":964,"hlink_GR":"","hlink_EN":"","description":"","height":254,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0394\u03b1\u03cd\u03bb\u03b5\u03b9\u03b1","owner":"anadigit","x":22.734324455262,"y":38.514941662696,"photo":"Viotia_Davlia_pano","type":0,"zoom_level":13,"id":965,"hlink_GR":"","hlink_EN":"","description":"","height":336,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0395\u03c1\u03b5\u03af\u03c0\u03b9\u03b1 \u03bd\u03b1\u03bf\u03cd \u0391\u03b3. \u0398\u03b5\u03bf\u03b4\u03ce\u03c1\u03c9\u03bd \u0394\u03b1\u03c5\u03bb\u03af\u03b4\u03b1\u03c2","owner":"anadigit","x":22.7311537,"y":38.5072826,"photo":"Viotia_Davlia_AgTheodori2_pano","type":9,"zoom_level":15,"id":966,"hlink_GR":"","hlink_EN":"","description":"","height":334,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5 \u039f\u03c1\u03c7\u03bf\u03bc\u03b5\u03bd\u03bf\u03cd","owner":"anadigit","x":22.959035,"y":38.494548,"photo":"Viotia_Orchomenos3_pano","type":10,"zoom_level":12,"id":967,"hlink_GR":"","hlink_EN":"","description":"","height":226,"width":1000},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03a5\u03c8\u03b7\u03bb\u03ac\u03bd\u03c4\u03b7","owner":"anadigit","x":23.014385,"y":38.364149,"photo":"Viotia_Ypsilandis_tower_pano","type":10,"zoom_level":14,"id":968,"hlink_GR":"","hlink_EN":"","description":"","height":355,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5 \u03a0\u03b1\u03bd\u03bf\u03c0\u03ad\u03b1","owner":"anadigit","x":22.796267,"y":38.493977,"photo":"Viotia_Panopeas5_pano","type":10,"zoom_level":14,"id":969,"hlink_GR":"","hlink_EN":"","description":"","height":231,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399
\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a3\u03b5\u03c1\u03b5\u03bd\u03c4\u03ac\u03bc\u03b9","owner":"anadigit","x":23.120321,"y":38.367489,"photo":"Viotia_Spilia_Aliartou_pano","type":0,"zoom_level":15,"id":970,"hlink_GR":"","hlink_EN":"","description":"","height":620,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u03a4\u03b5\u03af\u03c7\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u03a5\u03b1\u03bc\u03c0\u03cc\u03bb\u03b5\u03c9\u03c2","owner":"anadigit","x":22.906838774682,"y":38.596869545804,"photo":"Viotia_Yampolis2_pano","type":10,"zoom_level":13,"id":971,"hlink_GR":"http:\/\/arcadia.ceid.upatras.gr\/pausanias\/place.php?id=116","hlink_EN":"","description":"","height":187,"width":800},{"name":"\u03a0\u0391\u03a1\u03a3\u03a3\u039f\u03a3
Mountain bike","owner":"bikenature","x":22.493704,"y":38.516229,"photo":"mtb_bikenature_parnassos","type":0,"zoom_level":14,"id":976,"hlink_GR":"","hlink_EN":"","description":"","height":374,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1 \u03c4\u03bf\u03c5 \u039d\u03b5\u03c1\u03bf\u03cd","owner":"AnaDigit","x":23.720411777495,"y":38.156008446535,"photo":"Parnitha_AgTriada","type":9,"zoom_level":14,"id":1053,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03bf\u03bd\u03cc\u03ba\u03bb\u03b9\u03c4\u03bf\u03c2 \u03c3\u03c4\u03b1\u03c5\u03c1\u03b5\u03c0\u03af\u03c3\u03c4\u03b5\u03b3\u03bf\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03bc\u03b5 \u03bd\u03ac\u03c1\u03b8\u03b7\u03ba\u03b1. \u0391\u03c0\u03bf\u03c4\u03b5\u03bb\u03bf\u03cd\u03c3\u03b5 \u03bc\u03b5\u03c4\u03cc\u03c7\u03b9 \u03c4\u03b7\u03c2 \u039c\u03bf\u03bd\u03ae\u03c2 \u0391\u03c1\u03c7\u03b1\u03b3\u03b3\u03ad\u03bb\u03c9\u03bd \u03a0\u03b5\u03c4\u03c1\u03ac\u03ba\u03b7 (\u0391\u03b8\u03ae\u03bd\u03b1) \u03ba\u03b1\u03b9 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1 \u03bb\u03b5\u03b9\u03c4\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b5 \u03c9\u03c2 \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03bc\u03bf\u03bd\u03ae\u03c2, \u03c3\u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03b1\u03bd\u03ae\u03ba\u03b1\u03bd \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b4\u03cd\u03bf \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03ac\u03ba\u03b9\u03b1 \u03c3\u03c4\u03bf \u039c\u03b5\u03c4\u03cc\u03c7\u03b9, \u03bf \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03bf \u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2. \u039c\u03ad\u03c7\u03c1\u03b9 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03b8\u03b5\u03c9\u03c1\u03b5\u03af\u03c4\u03bf \u03ba\u03c4\u03af\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 17\u03bf\u03c5 \u03b1\u03b9., \u03b1\u03bb\u03bb\u03ac \u03b7 \u03b5\u03c0\u03b9\u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf\u03c5 \u03c3\u03c4\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03b9\u03c7\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ce\u03bd, \u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03b1\u03c4\u03ac\u03c3\u03c3\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c5\u03c3\u03c4\u03b5\u03c1\u03bf\u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ae \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf (13\u03bf\u03c2 \u03b1\u03b9.).","height":530,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u03c4\u03b7\u03c2
\u0391\u03b3\u03af\u03b1\u03c2 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1\u03c2","owner":"AnaDigit","x":23.72010064125,"y":38.155995791901,"photo":"Parnitha_AgTriada_pigi","type":9,"zoom_level":16,"id":1054,"hlink_GR":"","hlink_EN":"","description":"","height":412,"width":600},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u0395\u03bb\u03ac\u03c6\u03b9 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1","owner":"AnaDigit","x":23.720476150512,"y":38.154456128462,"photo":"Parnitha_Elafi1","type":7,"zoom_level":15,"id":1055,"hlink_GR":"","hlink_EN":"","description":"","height":554,"width":800},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u03a6\u03b9\u03bb\u03ac\u03bd\u03b8\u03c1\u03c9\u03c0\u03b7 \u03b5\u03bb\u03b1\u03c6\u03af\u03bd\u03b1","owner":"AnaDigit","x":23.719934344291,"y":38.155620370114,"photo":"Parnitha_Elafi4","type":7,"zoom_level":14,"id":1056,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ae \u03a3\u03ba\u03af\u03c0\u03b9\u03b6\u03b1","owner":"AnaDigit","x":23.70533776283,"y":38.173145022733,"photo":"Parnitha_Skipiza","type":9,"zoom_level":13,"id":1057,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b1\u03b6\u03af \u03bc\u03b5 \u03c4\u03b7 \u039c\u03cc\u03bb\u03b1, \u03b5\u03af\u03bd\u03b1\u03b9 \u03bf\u03b9 \u03b4\u03cd\u03bf \u03c0\u03b9\u03cc \u03b3\u03bd\u03c9\u03c3\u03c4\u03ad\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c3\u03c4\u03b7 \u03b6\u03ce\u03bd\u03b7 \u03c4\u03c9\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ce\u03bd \u03ba\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03c0\u03b9\u03cc \u03b4\u03b7\u03bc\u03bf\u03c6\u03b9\u03bb\u03b5\u03af\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 45 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2. \u03a3\u03b7\u03bc\u03b5\u03af\u03bf \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u039f22 \u03bc\u03b5 \u03c4\u03b1 \u03c4\u03bf\u03c0\u03b9\u03ba\u03ac \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 (\u03ba\u03af\u03c4\u03c1\u03b9\u03bd\u03bf \u03ba\u03b1\u03b9 \u03bc\u03c9\u03b2 \u03c4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf), \u03b7 \u03a3\u03ba\u03af\u03c0\u03b9\u03b6\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03b4\u03c1\u03bf\u03c3\u03af\u03c3\u03b5\u03b9 \u03bf\u03bc\u03ac\u03b4\u03b5\u03c2 \u03bf\u03c1\u03b5\u03b9\u03b2\u03b1\u03c4\u03ce\u03bd \u03ba\u03b1\u03b9 \u03c0\u03b9\u03cc \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03b5\u03b8\u03b5\u03bb\u03bf\u03bd\u03c4\u03ce\u03bd \u03c0\u03c5\u03c1\u03bf\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1\u03c2.","height":530,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ae \u03a0\u03bb\u03b1\u03c4\u03ac\u03bd\u03b1","owner":"AnaDigit","x":23.699329614637,"y":38.171593069502,"photo":"Parnitha_Platana2","type":9,"zoom_level":14,"id":1058,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03af\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c3\u03b2\u03b5\u03c3\u03c4\u03bf\u03bb\u03af\u03b8\u03c9\u03bd \u03c4\u03c9\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ce\u03bd \u03bc\u03b5 \u03c4\u03bf \u03c5\u03c0\u03bf\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03b1\u03b4\u03b9\u03ac\u03b2\u03c1\u03bf\u03c7\u03bf \u03c3\u03c4\u03c1\u03ce\u03bc\u03b1, \u03b7 \u03a0\u03bb\u03b1\u03c4\u03ac\u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b1\u03c3\u03c4\u03b5\u03c5\u03c4\u03b5\u03af \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1. \u039a\u03b1\u03b8\u03ce\u03c2 \u03c4\u03bf \u03bd\u03b5\u03c1\u03cc \u03c4\u03b7\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac\u03bd\u03c4\u03b9, \u03bc\u03cc\u03bb\u03b9\u03c2 \u03bb\u03af\u03b3\u03b5\u03c2 - \u03ba\u03b1\u03b9 \u03bc\u03ae \u03c0\u03cc\u03c3\u03b9\u03bc\u03b5\u03c2 - \u03c3\u03c4\u03b1\u03b3\u03cc\u03bd\u03b5\u03c2 \u03b1\u03bd\u03b1\u03bb\u03bf\u03b3\u03bf\u03cd\u03bd \u03c3\u03c4\u03b1 \u03c0\u03bb\u03b1\u03c4\u03ac\u03bd\u03b9\u03b1 \u03c0\u03bf\u03c5 \u03b4\u03b9\u03ba\u03b1\u03b9\u03bf\u03bb\u03bf\u03b3\u03bf\u03cd\u03bd \u03c4\u03bf \u03c9\u03c1\u03b1\u03af\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c4\u03b7\u03c2.","height":800,"width":755},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03c1\u03c7\u03b1\u03af\u03bf\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u039b\u03b7\u03bc\u03b9\u03ba\u03bf\u03cd","owner":"AnaDigit","x":23.692627,"y":38.201858,"photo":"Parnitha_Pirgos_Limikou4","type":10,"zoom_level":13,"id":1067,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.695381402967,"y":38.200568655285,"photo":"Parnitha_Simansi1","type":0,"zoom_level":16,"id":1068,"hlink_GR":"","hlink_EN":"","description":"","height":300,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.693879365919,"y":38.201040804533,"photo":"Parnitha_Simansi21","type":0,"zoom_level":16,"id":1069,"hlink_GR":"","hlink_EN":"","description":"","height":339,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u039b\u03b7\u03bc\u03b9\u03ba\u03bf\u03cd","owner":"AnaDigit","x":23.699112,"y":38.198186,"photo":"Parnitha_AgGeorgios_Limikou","type":9,"zoom_level":13,"id":1070,"hlink_GR":"","hlink_EN":"","description":"","height":385,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b3\u03b9\u03b1 \u039b\u03b7\u03bc\u03b9\u03ba\u03cc","owner":"AnaDigit","x":23.699597835541,"y":38.205018118854,"photo":"Parnitha_pigadi_voria_Limikou","type":9,"zoom_level":15,"id":1071,"hlink_GR":"","hlink_EN":"","description":"","height":364,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2","owner":"AnaDigit","x":23.678204536438,"y":38.21980204273,"photo":"Parnitha_AgNikolaos_Avlona","type":9,"zoom_level":14,"id":1072,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03ac\u03ba\u03b9 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf \u039d\u03b5\u03bf\u03bc\u03ac\u03c1\u03c4\u03c5\u03c1\u03b1 \u03b5\u03be \u0399\u03c9\u03b1\u03bd\u03bd\u03af\u03bd\u03c9\u03bd. \u03a0\u03c1\u03cc\u03ba\u03b5\u03b9\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03ae \u03c3\u03c4\u03b7\u03bd \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03b1\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u03c3\u03c4\u03bf\u03bd \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf \u03ac\u03b3\u03b9\u03bf (\u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b1\u03ba\u03cc\u03bc\u03b7 \u03c3\u03c4\u03b7 \u03a3\u03cc\u03c6\u03b9\u03b1 \u03c4\u03b7\u03c2 \u0392\u03bf\u03c5\u03bb\u03b3\u03b1\u03c1\u03af\u03b1\u03c2, \u03cc\u03c0\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bc\u03b1\u03c1\u03c4\u03cd\u03c1\u03b7\u03c3\u03b5). \u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03b3\u03b9\u03bf\u03c1\u03c4\u03ac\u03b6\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 17 \u039c\u03b1\u03ca\u03bf\u03c5.","height":376,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf\u03bd
\u0386\u03b3\u03b9\u03bf \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf","owner":"AnaDigit","x":23.679245233534,"y":38.219587101989,"photo":"Parnitha_pigadi_AgNikolaou_Avlona","type":9,"zoom_level":14,"id":1073,"hlink_GR":"","hlink_EN":"","description":"","height":481,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1 \u0391\u03c5\u03bb\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.679373979569,"y":38.239618114729,"photo":"Attiki_Avlona_AgTriada","type":9,"zoom_level":16,"id":1074,"hlink_GR":"","hlink_EN":"","description":"","height":471,"width":600},{"name":"\u0391\u03a5\u039b\u03a9\u039d\u0391
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1","owner":"AnaDigit","x":23.689630746843,"y":38.245853634923,"photo":"Attiki_Avlona_Panagia","type":9,"zoom_level":15,"id":1075,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":446},{"name":"\u0391\u03a5\u039b\u03a9\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2","owner":"AnaDigit","x":23.693364381791,"y":38.250470945726,"photo":"Attiki_Avlona_AgDimitrios","type":9,"zoom_level":16,"id":1076,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.695912480352,"y":38.195362163674,"photo":"Parnitha_Simansi3","type":0,"zoom_level":17,"id":1077,"hlink_GR":"","hlink_EN":"","description":"","height":434,"width":512},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u039b\u03b7\u03bc\u03b9\u03ba\u03bf\u03cd","owner":"AnaDigit","x":23.695705,"y":38.195475,"photo":"Parnitha_pigadi_Limikou2","type":9,"zoom_level":14,"id":1078,"hlink_GR":"","hlink_EN":"","description":"\u0394\u03cd\u03bf \u03bc\u03ad\u03bb\u03b7 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c4\u03b5\u03af\u03c7\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03bc\u03b5\u03c4\u03b1\u03c6\u03b5\u03c1\u03b8\u03b5\u03af \u03b5\u03b4\u03ce \u03c9\u03c2 \u03bc\u03ad\u03c1\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c3\u03c4\u03bf\u03bc\u03af\u03bf\u03c5.","height":600,"width":479},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a0\u03b1\u03bd\u03cc\u03c2
\u039b\u03c5\u03c7\u03bd\u03bf\u03c3\u03c0\u03b7\u03bb\u03b9\u03ac","owner":"AnaDigit","x":23.668524702306,"y":38.146860148586,"photo":"Parnitha_spileo_Panos2","type":0,"zoom_level":12,"id":1083,"hlink_GR":"","hlink_EN":"","description":"\u0395\u03c5\u03c1\u03cd\u03c7\u03c9\u03c1\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1, \u03cc\u03c0\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bb\u03b1\u03c4\u03c1\u03b5\u03c5\u03cc\u03c4\u03b1\u03bd \u03bf \u03a0\u03ac\u03bd\u03b1\u03c2. \u039f\u03bd\u03bf\u03bc\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u00ab\u039b\u03c5\u03c7\u03bd\u03bf\u03c3\u03c0\u03b7\u03bb\u03b9\u03ac\u00bb, \u03bb\u03cc\u03b3\u03c9 \u03c4\u03bf\u03c5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd \u03bb\u03c5\u03c7\u03bd\u03b1\u03c1\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd.","height":530,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f\u03c1\u03b8\u03bf\u03c0\u03bb\u03b1\u03b3\u03b9\u03ac
\u03ba\u03b1\u03b9 \u03a3\u03c0\u03b7\u03bb\u03b9\u03ac \u03a3\u03b1\u03c1\u03c1\u03ae","owner":"AnaDigit","x":23.665340662001,"y":38.142302192102,"photo":"Parnitha_Arma_spilia_Sarri","type":0,"zoom_level":15,"id":1084,"hlink_GR":"","hlink_EN":"","description":"\u0399\u03b4\u03b9\u03b1\u03af\u03c4\u03b5\u03c1\u03b7 \u03bf\u03c1\u03b8\u03bf\u03c0\u03bb\u03b1\u03b3\u03b9\u03ac \u03c0\u03ad\u03c1\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u0392\u03cc\u03c1\u03b5\u03b9\u03bf \u0386\u03c1\u03bc\u03b1. \u03a4\u03cc\u03c3\u03bf \u03bf \u03c4\u03bf\u03af\u03c7\u03bf\u03c2, \u03cc\u03c3\u03bf \u03ba\u03b1\u03b9 \u03b7 \u03bc\u03b9\u03ba\u03c1\u03ae \u03c3\u03c0\u03b7\u03bb\u03b9\u03ac \u03c3\u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03ad\u03c1\u03bf\u03c5\u03bd \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03b3\u03b5\u03c9\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03bf\u03c1\u03b5\u03b9\u03b2\u03ac\u03c4\u03b7 \u0393. \u03a3\u03b1\u03c1\u03c1\u03ae. \u039c\u03af\u03b1 \u03bc\u03cc\u03bd\u03bf \u03b1\u03bd\u03b1\u03c1\u03c1\u03b9\u03c7\u03b7\u03c4\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bd\u03bf\u03b9\u03c7\u03c4\u03b5\u03af \u03c3\u03c4\u03bf\u03bd \u03c4\u03bf\u03af\u03c7\u03bf.","height":800,"width":530},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae","owner":"AnaDigit","x":23.676238735434,"y":38.151652479626,"photo":"Parnitha_Ag_Paraskevi","type":9,"zoom_level":14,"id":1086,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03ac\u03ba\u03b9 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c6\u03ad\u03c1\u03b5\u03b9 \u03c3\u03c4\u03bf\u03bd \u03c0\u03b5\u03b6\u03bf\u03c0\u03cc\u03c1\u03bf \u03bd\u03b5\u03c1\u03cc \u03ba\u03b1\u03b9 \u03ac\u03c6\u03b8\u03bf\u03bd\u03bf \u03c7\u03ce\u03c1\u03bf \u03ba\u03b1\u03c4\u03b1\u03c6\u03c5\u03b3\u03ae\u03c2.","height":530,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03bf\u03c1\u03c5\u03c6\u03ae \u0386\u03c1\u03bc\u03b1 (884 m)","owner":"AnaDigit","x":23.660705804823,"y":38.140378301175,"photo":"Parnitha_Arma1","type":0,"zoom_level":12,"id":1087,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9","owner":"AnaDigit","x":23.746708154675,"y":38.161572054247,"photo":"Parnitha_Flabouri_refuge1","type":9,"zoom_level":13,"id":1134,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ae \u039a\u03c5\u03c1\u03ac\u03c2","owner":"AnaDigit","x":23.745395,"y":38.165216,"photo":"Parnitha_Kyras_spring1","type":0,"zoom_level":15,"id":1135,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b1\u03c1\u03b1\u03bc\u03b5\u03bb\u03b7\u03bc\u03ad\u03bd\u03b7, \u03bc\u03b5 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c1\u03bf\u03ae \u03c4\u03bf \u03ba\u03b1\u03bb\u03bf\u03ba\u03b1\u03af\u03c1\u03b9, \u03b7 \u039a\u03c5\u03c1\u03ac \u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03bf\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03bc\u03b9\u03b1 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03bb\u03c5\u03c3\u03b7, \u03c0\u03bf\u03c5 \u03cc\u03bc\u03c9\u03c2 \u03b4\u03b9\u03b1\u03c1\u03c1\u03ad\u03b5\u03b9 \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03ba\u03c1\u03ae\u03bd\u03b7\u03c2.","height":355,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ae \u0398\u03ad\u03c1\u03b9\u03b6\u03b1","owner":"AnaDigit","x":23.737942695617,"y":38.166072402804,"photo":"Attiki_Parnitha_Theriza_21","type":0,"zoom_level":15,"id":1136,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03b7\u03b3\u03ae \u0398\u03ad\u03c1\u03b9\u03b6\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03bc\u03b9\u03ba\u03c1\u03ae \u03b1\u03bd\u03ac\u03b2\u03bb\u03c5\u03c3\u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf \u03c1\u03ad\u03bc\u03b1 \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03b5\u03b2\u03b1\u03af\u03bd\u03b5\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c0\u03b7\u03b3\u03ae \u039a\u03b1\u03bd\u03c4\u03b1\u03bb\u03af\u03b4\u03b9. \u0391\u03bd \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03c0\u03ac\u03bd\u03c4\u03b1 \u03bd\u03b5\u03c1\u03cc, \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03ba\u03b1\u03bb\u03bf\u03ba\u03b1\u03b9\u03c1\u03b9\u03bf\u03cd \u03b8\u03b1 \u03b2\u03c1\u03b5\u03af\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b3\u03bf\u03c5\u03c1\u03bd\u03af\u03c4\u03c3\u03b1 \u03ba\u03b1\u03b9 \u03bb\u03af\u03b3\u03b7 \u03bb\u03ac\u03c3\u03c0\u03b7. \u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03c4\u03b5 \u03bd\u03b5\u03c1\u03cc \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1, \u03c4\u03b1 \u03b5\u03bb\u03ac\u03c6\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03c0\u03bf\u03c5\u03bb\u03ac\u03ba\u03b9\u03b1 \u03cc\u03bc\u03c9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd.","height":823,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03c5\u03c1\u03bf\u03c6\u03c5\u03bb\u03ac\u03ba\u03b5\u03b9\u03bf \u0395\u0394\u0391\u03a3\u0391","owner":"AnaDigit","x":23.706067323681,"y":38.175101786226,"photo":"Parnitha_Pyro_EDASA","type":9,"zoom_level":13,"id":1137,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0398\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bc\u03ad\u03bd\u03b7
\u03b6\u03ce\u03bd\u03b7 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u039a\u03b1\u03b6\u03af\u03bd\u03bf","owner":"AnaDigit","x":23.742194,"y":38.166921,"photo":"Parnitha_Kazino_burned_areas","type":0,"zoom_level":14,"id":1138,"hlink_GR":"","hlink_EN":"","description":"","height":361,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039a\u03c9\u03c1\u03cd\u03ba\u03b5\u03b9\u03bf\u03bd \u0386\u03bd\u03c4\u03c1\u03bf\u03bd","owner":"\u0394.\u0392\u03b1\u03c1\u03b1\u03bb\u03ae\u03c2","x":22.520542,"y":38.51713,"photo":"Varalis_Parnassos_Korykeio","type":10,"zoom_level":13,"id":1554,"hlink_GR":"","hlink_EN":"","description":"","height":533,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03ac\u03bc\u03bc\u03b1\u03c2 \u0391\u03bd\u03c4\u03af\u03ba\u03c5\u03c1\u03b1\u03c2","owner":"\u0394. \u0396\u03ad\u03c0\u03c0\u03bf\u03c2","x":22.648201,"y":38.401032,"photo":"Zeppos_Aghios_Mammas","type":9,"zoom_level":15,"id":1561,"hlink_GR":"","hlink_EN":"","description":"","height":491,"width":700},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039f \u03ba\u03cc\u03bb\u03c0\u03bf\u03c2 \u03c4\u03c9\u03bd \u03a0\u03bf\u03c4\u03b1\u03bc\u03ce\u03bd","owner":"\u0394. \u0396\u03ad\u03c0\u03c0\u03bf\u03c2","x":22.60236,"y":38.356847,"photo":"Zeppos_Potamoi_Antikyras","type":0,"zoom_level":14,"id":1564,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":1095},{"name":"\u0393\u039f\u03a1\u03a4\u03a5\u039d\u0399\u0391
\u0392\u03b1\u03bb\u03c4\u03b5\u03c3\u03b9\u03bd\u03af\u03ba\u03bf
\u03a4\u03bf \u03b3\u03b5\u03c6\u03c5\u03c1\u03ac\u03ba\u03b9 \u03c3\u03c4\u03b1 \u039a\u03b1\u03bc\u03af\u03bd\u03b9\u03b1","owner":"topoguide","x":22.981605529785,"y":38.301101858776,"photo":"Pelop_Arkadia_Gortynia_Valtesiniko_prasino_monopati1","type":0,"zoom_level":15,"id":1652,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":399},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03a0\u03b7\u03b3\u03ae \u039a\u03b1\u03c4\u03ac\u03c1\u03b1","owner":"topoguide","x":23.746266,"y":38.167081,"photo":"Attiki_Parnitha_pigi_Katara","type":0,"zoom_level":15,"id":2251,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bc\u03b9\u03ba\u03c1\u03ae \u03c0\u03b7\u03b3\u03ae \u039a\u03b1\u03c4\u03ac\u03c1\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03bb\u03b7\u03c6\u03b8\u03b5\u03af \u03ba\u03b1\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03bb\u03c5\u03c6\u03b8\u03b5\u03af \u03b1\u03c0\u03cc \u03b2\u03ac\u03c4\u03b1. \u0388\u03c4\u03c3\u03b9, \u03b1\u03bd \u03ba\u03b1\u03b9 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b5\u03af \u03bc\u03b9\u03b1 \u03bc\u03b9\u03ba\u03c1\u03ae \u03b5\u03ba\u03c1\u03c1\u03bf\u03ae \u03cc\u03bb\u03bf \u03c4\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf, \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03cd\u03c3\u03ba\u03bf\u03bb\u03bf \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03b9 \u03ba\u03b1\u03bd\u03b5\u03af\u03c2 \u03bd\u03b5\u03c1\u03cc.","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03cc\u03ba\u03ba\u03b9\u03bd\u03bf \u03a4\u03c1\u03af\u03b3\u03c9\u03bd\u03bf","owner":"topoguide","x":23.750064,"y":38.165605,"photo":"Attiki_Parnitha_Red_triangle_path1","type":0,"zoom_level":15,"id":2255,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b4\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03b5\u03b9 \u03c3\u03c5\u03c3\u03c4\u03ac\u03b4\u03b1 \u03bc\u03b1\u03c5\u03c1\u03cc\u03c0\u03b5\u03c5\u03ba\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03bc\u03b5 \u03b1\u03bd\u03b1\u03b4\u03ac\u03c3\u03c9\u03c3\u03b7.","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.749482,"y":38.167257,"photo":"Attiki_Parnitha_simansi30","type":9,"zoom_level":17,"id":2261,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u0392\u03b1\u03c4\u03bf\u03bc\u03bf\u03c5\u03c1\u03b9\u03ac (Rubus sp.)","owner":"topoguide","x":23.750848,"y":38.164508,"photo":"Rubus_fruticosus_Parnitha","type":1,"zoom_level":15,"id":2262,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":583},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.74632,"y":38.167129,"photo":"Attiki_Parnitha_simansi32","type":9,"zoom_level":17,"id":2264,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":550},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03c4\u03b9\u03ba\u03ae \u03c0\u03b9\u03bd\u03b1\u03ba\u03af\u03b4\u03b1 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.749653,"y":38.168168,"photo":"Attiki_Parnitha_simansi33","type":9,"zoom_level":16,"id":2266,"hlink_GR":"","hlink_EN":"","description":"","height":545,"width":700},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03b7 \u039c\u03cc\u03bb\u03b1","owner":"topoguide","x":23.733742,"y":38.180145,"photo":"Attiki_Parnitha_Mola_krini1","type":9,"zoom_level":16,"id":2274,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.731290817262,"y":38.185042935655,"photo":"Attiki_Parnitha_mov_tetragono1","type":9,"zoom_level":16,"id":2275,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u038a\u03c7\u03bd\u03b7 \u03ba\u03b1\u03c1\u03b2\u03bf\u03c5\u03bd\u03b9\u03ac\u03c1\u03b9\u03ba\u03bf\u03c5 \u03c3\u03c4\u03b7 \u039e\u03bf\u03cd\u03bb\u03b9\u03b6\u03b1","owner":"topoguide","x":23.74181,"y":38.205724,"photo":"Attiki_Parnitha_Xouliza_karvoun","type":9,"zoom_level":15,"id":2276,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":552},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03b3\u03c1\u03b9\u03bf\u03b3\u03bf\u03cd\u03c1\u03bf\u03c5\u03bd\u03b1 \u03c3\u03c4\u03bf \u03a3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b9","owner":"topoguide","x":23.732519,"y":38.213564,"photo":"Attiki_Parnitha_wild_boar","type":7,"zoom_level":15,"id":2277,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03b1 \u03b8\u03b7\u03bb\u03c5\u03ba\u03b9\u03ac \u03c8\u03ac\u03c7\u03bd\u03b5\u03b9 \u03b3\u03b9\u03b1 \u03ad\u03bd\u03c4\u03bf\u03bc\u03b1 \u03ba\u03b1\u03b9 \u03b2\u03bf\u03bb\u03b2\u03bf\u03cd\u03c2 \u03c3\u03c4\u03b9\u03c2 \u03c1\u03af\u03b6\u03b5\u03c2 \u03c4\u03c9\u03bd \u03c0\u03bf\u03c5\u03c1\u03bd\u03b1\u03c1\u03b9\u03ce\u03bd. \u0393\u03cd\u03c1\u03c9 \u03c4\u03b7\u03c2, \u03c4\u03b1 \u03c4\u03ad\u03c3\u03c3\u03b5\u03c1\u03b1 \u03bc\u03b9\u03ba\u03c1\u03ac \u03c4\u03b7\u03c2, \u03bc\u03b5 \u03c4\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03c1\u03af\u03b3\u03b5\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03c5.","height":398,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b5\u03c1\u03b9\u03c4\u03c4\u03ce\u03bc\u03b1\u03c4\u03b1 \u03b5\u03bb\u03b1\u03c6\u03b9\u03bf\u03cd","owner":"topoguide","x":23.731307,"y":38.18795,"photo":"Attiki_Parnitha_red_deer","type":7,"zoom_level":16,"id":2278,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u03a0\u03ad\u03c4\u03c1\u03bf\u03c2 \u03c3\u03c4\u03b7 \u039c\u03cc\u03bb\u03b1","owner":"topoguide","x":23.733586788181,"y":38.180128403306,"photo":"Attiki_Parnitha_Mola_AgPetros4","type":9,"zoom_level":14,"id":2282,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03bf\u03bd\u03cc\u03ba\u03bb\u03b9\u03c4\u03b7 \u03ba\u03b1\u03bc\u03b1\u03c1\u03bf\u03c3\u03ba\u03ad\u03c0\u03b1\u03c3\u03c4\u03b7 \u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c5 \u03c7\u03c1\u03bf\u03bd\u03bf\u03bb\u03bf\u03b3\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03cd\u03c3\u03c4\u03b5\u03c1\u03b7 \u03ae \u03c4\u03b7\u03bd \u03b1\u03bc\u03ad\u03c3\u03c9\u03c2 \u03bc\u03b5\u03c4\u03ac \u03c4\u03bf \u0392\u03c5\u03b6\u03ac\u03bd\u03c4\u03b9\u03bf \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf.","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b5\u03c4\u03c1\u03cc\u03c7\u03c4\u03b9\u03c3\u03c4\u03b7 \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae \u03c3\u03c4\u03b7 \u039c\u03cc\u03bb\u03b1","owner":"topoguide","x":23.732476,"y":38.180283,"photo":"Attiki_Parnitha_Mola_wta2","type":9,"zoom_level":16,"id":2283,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u03c4\u03b7\u03c2 \u039c\u03cc\u03bb\u03b1\u03c2","owner":"topoguide","x":23.732364,"y":38.181619,"photo":"Attiki_Parnitha_Mola_kato_krini1","type":9,"zoom_level":16,"id":2284,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03bd\u03b5\u03c1\u03cc","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03bb\u03b1\u03c4\u03ac\u03bd\u03b9 \u03c3\u03c4\u03bf\u03bd \u03c0\u03b5\u03c1\u03af\u03b2\u03bf\u03bb\u03bf \u03c4\u03bf\u03c5 \u0391\u03b3. \u03a0\u03ad\u03c4\u03c1\u03bf\u03c5, \u039c\u03cc\u03bb\u03b1","owner":"topoguide","x":23.733646,"y":38.180198,"photo":"Attiki_Parnitha_Mola_platani","type":1,"zoom_level":17,"id":2285,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.732674837116,"y":38.18031605134,"photo":"Attiki_Parnitha_Mola_simansi0","type":9,"zoom_level":16,"id":2286,"hlink_GR":"","hlink_EN":"","description":"","height":645,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.732374429706,"y":38.182656340157,"photo":"Attiki_Parnitha_Mola_simansi11","type":9,"zoom_level":16,"id":2287,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.733769,"y":38.194875,"photo":"Attiki_Parnitha_pros_Makrychorafo_simansi","type":9,"zoom_level":16,"id":2288,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c7\u03b1\u03c1\u03ac\u03b4\u03c1\u03b1 \u03c3\u03c4\u03bf \u03a0\u03b1\u03bb\u03b9\u03bf\u03bc\u03ae\u03bb\u03b5\u03c3\u03b9","owner":"topoguide","x":23.7404,"y":38.21618,"photo":"Attiki_Parnitha_Paliomilesi_gorge","type":0,"zoom_level":16,"id":2289,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03bb\u03bf\u03cd\u03c4\u03c3\u03b1 \u03c3\u03c4\u03bf \u03a0\u03b1\u03bb\u03b9\u03bf\u03bc\u03ae\u03bb\u03b5\u03c3\u03b9","owner":"topoguide","x":23.746504,"y":38.216163,"photo":"Attiki_Parnitha_Paliomilesi_spring","type":0,"zoom_level":16,"id":2290,"hlink_GR":"","hlink_EN":"","description":"\u0391\u03bd\u03ac\u03b2\u03bb\u03c5\u03c3\u03b7 \u03c0\u03bf\u03c5 \u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03bf\u03c4\u03b5\u03af \u03bc\u03b9\u03b1 \u03bc\u03b9\u03ba\u03c1\u03ae \u03bb\u03bf\u03cd\u03c4\u03c3\u03b1","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c3\u03c4\u03bf \u03a0\u03b1\u03bb\u03b9\u03bf\u03bc\u03ae\u03bb\u03b5\u03c3\u03b9","owner":"topoguide","x":23.746247,"y":38.216112,"photo":"Attiki_Parnitha_Paliomilesi_rema","type":0,"zoom_level":16,"id":2294,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03c1\u03ad\u03bc\u03b1, \u03c0\u03bf\u03c5 \u03ad\u03c1\u03c7\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u039e\u03bf\u03cd\u03bb\u03b9\u03b6\u03b1, \u03b5\u03af\u03bd\u03b1\u03b9 \u03be\u03b5\u03c1\u03cc \u03c3\u03b5 \u03cc\u03bb\u03bf \u03c4\u03bf \u03bc\u03ae\u03ba\u03bf\u03c2 \u03c4\u03bf\u03c5, \u03b5\u03ba\u03c4\u03cc\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03b1\u03c5\u03c4\u03cc, \u03c3\u03c4\u03b7 \u039b\u03ac\u03ba\u03ba\u03b1 \u03a0\u03b1\u03bb\u03b9\u03bf\u03bc\u03ae\u03bb\u03b5\u03c3\u03b9, \u03cc\u03c0\u03bf\u03c5 \u03b1\u03bd\u03b1\u03b2\u03bb\u03cd\u03b6\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9 \u03bb\u03af\u03b3\u03bf \u03bd\u03b5\u03c1\u03cc \u03c3\u03c7\u03b5\u03b4\u03cc\u03bd \u03cc\u03bb\u03bf \u03c4\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf.","height":800,"width":532},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.73238,"y":38.18223,"photo":"Attiki_Parnitha_Mola_simansi2","type":9,"zoom_level":17,"id":2295,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.748802621697,"y":38.15625680336,"photo":"Attiki_Parnitha_simansi37","type":9,"zoom_level":15,"id":2298,"hlink_GR":"","hlink_EN":"","description":"\u0394\u03b9\u03b1\u03c3\u03c4\u03b1\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03ac\u03ba\u03b9, \u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u0398\u03c1\u03b1\u03ba\u03bf\u03bc\u03b1\u03ba\u03b5\u03b4\u03cc\u03bd\u03b5\u03c2-\u03ba\u03b1\u03c4. \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9. ","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.740518,"y":38.157341,"photo":"Attiki_Parnitha_Chouni_diast_Flabouri","type":9,"zoom_level":15,"id":2299,"hlink_GR":"","hlink_EN":"","description":"\u0394\u03b9\u03b1\u03c3\u03c4\u03b1\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03bc\u03bf\u03bd\u03bf\u03c0\u03b1\u03c4\u03b9\u03ce\u03bd \u03a7\u03bf\u03cd\u03bd\u03b7-\u039c\u03c0\u03ac\u03c6\u03b9 \u03ba\u03b1\u03b9 \u03a7\u03bf\u03cd\u03bd\u03b7-\u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c7\u03b1\u03c1\u03ac\u03b4\u03c1\u03b1 \u03c4\u03b7\u03c2 \u03a7\u03bf\u03cd\u03bd\u03b7\u03c2","owner":"topoguide","x":23.741955,"y":38.156397,"photo":"Attiki_Parnitha_Chouni1","type":0,"zoom_level":14,"id":2301,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b7\u03c2 \u03a7\u03bf\u03cd\u03bd\u03b7\u03c2","owner":"topoguide","x":23.74232,"y":38.15611,"photo":"Attiki_Parnitha_Chouni2","type":0,"zoom_level":15,"id":2302,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03c0\u03b9\u03cc \u03c0\u03bf\u03bb\u03c5\u03c3\u03cd\u03c7\u03bd\u03b1\u03c3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c4\u03b7\u03c2 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03c1\u03bf\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03a7\u03bf\u03cd\u03bd\u03b7","owner":"topoguide","x":23.742985,"y":38.153267,"photo":"Attiki_Parnitha_Chouni3","type":0,"zoom_level":16,"id":2303,"hlink_GR":"","hlink_EN":"","description":"\u039f\u03b9 \u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03c2 \u03bf\u03c1\u03b5\u03b9\u03bd\u03ce\u03bd \u03b1\u03b3\u03ce\u03bd\u03c9\u03bd \u03b1\u03b3\u03b1\u03c0\u03bf\u03cd\u03bd \u03c4\u03b7 \u03a7\u03bf\u03cd\u03bd\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03c3\u03ba\u03b9\u03ac, \u03c4\u03bf \u03ba\u03b1\u03b8\u03b1\u03c1\u03cc \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03b5\u03c7\u03b5\u03af\u03c2 \u03b5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03ba\u03bb\u03af\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03b5\u03b4\u03ac\u03c6\u03bf\u03c5\u03c2. \u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03bf\u03b4\u03cc \u0392\u03ad\u03c1\u03bf\u03b9\u03b1\u03c2, \u03c4\u03b1 1\u03c945 \u03b3\u03b9\u03b1 \u03c4\u03bf \u039c\u03c0\u03ac\u03c6\u03b9 \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03bf\u03c5\u03bd \u03ba\u03b1\u03bb\u03ae \u03c6\u03c5\u03c3\u03b9\u03ba\u03ae \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b5\u03c4\u03bf\u03b9\u03bc\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ad\u03c2. \u0397 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03b3\u03b9\u03bf\u03c1\u03c4\u03ae \u03b5\u03bb\u03b9\u03b3\u03bc\u03ce\u03bd.","height":700,"width":546},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.730078,"y":38.163592,"photo":"Attiki_Parnitha_simansi34","type":9,"zoom_level":16,"id":2304,"hlink_GR":"","hlink_EN":"","description":"\u0394\u03b9\u03b1\u03c3\u03c4\u03b1\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03a7\u03bf\u03cd\u03bd\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03ba\u03b1\u03c4. \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03b3\u03b9\u03b1 \u0398\u03ad\u03c1\u03b9\u03b6\u03b1\u03c2.","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.742041,"y":38.161079,"photo":"Attiki_Parnitha_simansi35","type":9,"zoom_level":16,"id":2305,"hlink_GR":"","hlink_EN":"","description":"\u0394\u03b9\u03b1\u03c3\u03c4\u03b1\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03cd\u03bf \u03c0\u03b1\u03c1\u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03a7\u03bf\u03cd\u03bd\u03b7-\u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9. \u0397 \"\u03b4\u03cd\u03c3\u03ba\u03bf\u03bb\u03b7\" \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03b9\u03cc \u03b1\u03c0\u03cc\u03c4\u03bf\u03bc\u03b7 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae \u03ba\u03b1\u03b9 \u03bf\u03b4\u03b7\u03b3\u03b5\u03af \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03b3\u03c5\u03bc\u03bd\u03ae, \u03b5\u03c5\u03ac\u03b5\u03c1\u03b7 \u03c1\u03ac\u03c7\u03b7 \u03bc\u03b5 \u03c9\u03c1\u03b1\u03af\u03b1 \u03b8\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7 \u03a7\u03bf\u03cd\u03bd\u03b7 \u03ba\u03b1\u03b9 \u03c4\u03bf \u039c\u03bf\u03bd \u03a0\u03b1\u03c1\u03bd\u03b5\u03c2. \u0397 \"\u03b5\u03cd\u03ba\u03bf\u03bb\u03b7\" \u03b5\u03bb\u03af\u03c3\u03c3\u03b5\u03c4\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf \u03b5\u03bb\u03b1\u03c4\u03cc\u03b4\u03b1\u03c3\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b1\u03bd\u03c4\u03ac \u03c4\u03bf \u03b4\u03c1\u03cc\u03bc\u03bf \u03c4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03b1\u03c6\u03c5\u03b3\u03af\u03bf\u03c5.","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.746655,"y":38.161365,"photo":"Attiki_Parnitha_simansi36","type":9,"zoom_level":17,"id":2306,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.728405,"y":38.156945,"photo":"Attiki_Parnitha_simansi41","type":9,"zoom_level":15,"id":2308,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.729048,"y":38.158151,"photo":"Attiki_Parnitha_simansi40","type":9,"zoom_level":16,"id":2309,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.729735,"y":38.159425,"photo":"Attiki_Parnitha_simansi43","type":9,"zoom_level":16,"id":2310,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.728748,"y":38.156801,"photo":"Attiki_Parnitha_simansi42","type":9,"zoom_level":16,"id":2311,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":" \u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.704349,"y":38.138253,"photo":"Attiki_Parnitha_simansi55","type":9,"zoom_level":16,"id":2312,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.704119,"y":38.138239,"photo":"Attiki_Parnitha_simansi48","type":9,"zoom_level":16,"id":2313,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.691823,"y":38.139803,"photo":"Attiki_Parnitha_simansi52","type":9,"zoom_level":17,"id":2314,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":457},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0392\u03af\u03bb\u03bb\u03b1 \u03a0\u03b1\u03c0\u03b1\u03b4\u03cc\u03c0\u03bf\u03c5\u03bb\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.692045,"y":38.157476,"photo":"Attiki_Parnitha_villa_Papadopoulou","type":9,"zoom_level":15,"id":2315,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03c5\u03c1\u03ba\u03b1\u03b3\u03b9\u03ac \u03b1\u03c0\u03bf\u03ba\u03ac\u03bb\u03c5\u03c8\u03b5 \u03c4\u03b7\u03bd \u03ba\u03b1\u03bb\u03ac \u03ba\u03c1\u03c5\u03bc\u03ad\u03bd\u03b7 \"\u03b2\u03af\u03bb\u03bb\u03b1 \u03a0\u03b1\u03c0\u03b1\u03b4\u03cc\u03c0\u03bf\u03c5\u03bb\u03bf\u03c5\" \u03c3\u03c4\u03b7 \u03b8\u03ad\u03c3\u03b7 \u03a3\u03c4\u03b1\u03c4\u03ae\u03c1\u03b9.","height":527,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.717553,"y":38.147677,"photo":"Attiki_Parnitha_simansi51","type":9,"zoom_level":16,"id":2316,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.69826,"y":38.147719,"photo":"Attiki_Parnitha_simansi53","type":9,"zoom_level":16,"id":2317,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":542},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.705161,"y":38.149904,"photo":"Attiki_Parnitha_simansi54","type":9,"zoom_level":16,"id":2318,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.734284,"y":38.137446,"photo":"Attiki_Parnitha_simansi45","type":9,"zoom_level":17,"id":2319,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf \u039c\u03b5\u03c4\u03cc\u03c7\u03b9 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2","owner":"topoguide","x":23.734552,"y":38.137047,"photo":"Attiki_Parnitha_Metochi_PrfIlias","type":9,"zoom_level":15,"id":2320,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03ba\u03c1\u03cc\u03c2 \u03bc\u03bf\u03bd\u03cc\u03ba\u03bb\u03b9\u03c4\u03bf\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 18\u03bf\u03c5 \u03b1\u03b9.","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03b1\u03bc\u03af\u03b4\u03b9 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2","owner":"topoguide","x":23.692228937912,"y":38.137251882803,"photo":"Attiki_Parnitha_AgGeorgios_Keramidhi","type":9,"zoom_level":15,"id":2321,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03ba\u03c1\u03ae \u03bc\u03bf\u03bd\u03cc\u03ba\u03bb\u03b9\u03c4\u03b7 \u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae \u03bc\u03b5\u03c4\u03b1\u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ce\u03bd \u03c7\u03c1\u03cc\u03bd\u03c9\u03bd \u03bc\u03b5 \u03b7\u03bc\u03b9\u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03b1\u03c8\u03af\u03b4\u03b1.","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03ac\u03c0\u03b1\u03c5\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03b1\u03bc\u03af\u03b4\u03b9","owner":"topoguide","x":23.692045,"y":38.137385,"photo":"Attiki_Parnitha_AgGeorgios_Keramidhi_rest","type":0,"zoom_level":16,"id":2322,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03b1\u03bc\u03af\u03b4\u03b9","owner":"topoguide","x":23.692098,"y":38.137309,"photo":"Attiki_Parnitha_AgGeorgios_Keramidhi_pigi1","type":9,"zoom_level":17,"id":2323,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03ac\u03c6\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03b1\u03bc\u03af\u03b4\u03b9","owner":"topoguide","x":23.692313,"y":38.137216,"photo":"Attiki_Parnitha_AgGeorgios_Keramidhi_tafos","type":9,"zoom_level":18,"id":2324,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03b1\u03bc\u03af\u03b4\u03b9","owner":"AnaDigit","x":23.694459801364,"y":38.141014679729,"photo":"Attiki_Parnitha_AgGeorgios_Keramidi_3","type":0,"zoom_level":14,"id":2325,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c3\u03c5\u03c3\u03c4\u03ac\u03b4\u03b1 \u03b1\u03c0\u03cc \u03bb\u03b5\u03cd\u03ba\u03b5\u03c2, \u03ba\u03b1\u03c1\u03c5\u03b4\u03b9\u03ad\u03c2, \u03b1\u03c1\u03b9\u03ad\u03c2, \u03c3\u03c5\u03ba\u03b9\u03ad\u03c2, \u03ba\u03bf\u03c1\u03bf\u03bc\u03b7\u03bb\u03b9\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03c8\u03b5\u03c5\u03b4\u03bf\u03c0\u03bb\u03ac\u03c4\u03b1\u03bd\u03bf\u03c5\u03c2, \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bd\u03c4\u03b7\u03c1\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03b8\u03ad\u03c3\u03b7\u03c2, \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5.","height":622,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.693751,"y":38.142119,"photo":"Attiki_Parnitha_simansi46","type":9,"zoom_level":17,"id":2326,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u0392\u03bf\u03c5\u03c1\u03b4\u03bf\u03c5\u03bc\u03c0\u03ac\u03c2","owner":"topoguide","x":23.749058,"y":38.137132,"photo":"Attiki_Parnitha_AgiosGeorgios_Vourdhoubas2","type":9,"zoom_level":15,"id":2327,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03bf \u03c7\u03c4\u03b9\u03c3\u03c4\u03cc \u03c4\u03ad\u03bc\u03c0\u03bb\u03bf \u03ad\u03c7\u03bf\u03c5\u03bd \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b7\u03b8\u03b5\u03af \u03c4\u03bf\u03b9\u03c7\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2 \u03c4\u03bf\u03c5 14\u03bf\u03c5 \u03ba\u03b1\u03b9 15\u03bf\u03c5 \u03b1\u03b9.","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03b1\u03bc\u03bd\u03b7\u03c3\u03c4\u03b9\u03ba\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7 \u03a4\u03ac\u03c3\u03bf\u03c5 \u03a3\u03c4\u03b5\u03c6\u03ac\u03bd\u03bf\u03c5","owner":"topoguide","x":23.714511,"y":38.147046,"photo":"Attiki_Parnitha_Petra_iroo_Tasou_Stefanou","type":9,"zoom_level":16,"id":2328,"hlink_GR":"http:\/\/dasarxeio.com\/2015\/03\/11\/2040-4\/","hlink_EN":"","description":"\u039f \u03a4\u03ac\u03c3\u03bf\u03c2 \u03a3\u03c4\u03b5\u03c6\u03ac\u03bd\u03bf\u03c5 (1893- 1984) \u03ae\u03c4\u03b1\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03c0\u03c1\u03ce\u03c4\u03bf\u03c5\u03c2 \u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03bf\u03bd\u03b5\u03c2 \u03b4\u03b1\u03c3\u03bf\u03bb\u03cc\u03b3\u03bf\u03c5\u03c2 \u03c4\u03b7\u03c2 \u0395\u03bb\u03bb\u03ac\u03b4\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03b9\u03c3\u03b5 \u03ba\u03b1\u03b9 \u03b5\u03bd\u03ad\u03c0\u03bd\u03b5\u03c5\u03c3\u03b5 \u03c0\u03bf\u03bb\u03bb\u03ac \u03ad\u03c1\u03b3\u03b1 \u03b1\u03bd\u03b1\u03b4\u03ac\u03c3\u03c9\u03c3\u03b7\u03c2.","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0386\u03bb\u03c3\u03bf\u03c2 \u03a4\u03ac\u03c3\u03bf\u03c5 \u03a3\u03c4\u03b5\u03c6\u03ac\u03bd\u03bf\u03c5","owner":"topoguide","x":23.713899,"y":38.147029,"photo":"Attiki_Parnitha_Petra_alsos_Tasou_Stefanou1","type":0,"zoom_level":15,"id":2329,"hlink_GR":"","hlink_EN":"","description":"\u0386\u03bb\u03c3\u03bf\u03c2 \u03b1\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03b7 \u03bc\u03bd\u03ae\u03bc\u03b7 \u03c4\u03bf\u03c5 \u03b4\u03b1\u03c3\u03bf\u03bb\u03cc\u03b3\u03bf\u03c5 \u03a4\u03ac\u03c3\u03bf\u03c5 \u03a3\u03c4\u03b5\u03c6\u03ac\u03bd\u03bf\u03c5.","height":700,"width":465},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0398\u03ad\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u039e\u03b5\u03bd\u03af\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ad\u03c2","owner":"topoguide","x":23.720561981202,"y":38.148060904495,"photo":"Attiki_Parnitha_Xenia_koryfes","type":0,"zoom_level":14,"id":2331,"hlink_GR":"","hlink_EN":"","description":"","height":422,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0398\u03ad\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u039e\u03b5\u03c1\u03bf\u03bb\u03af\u03b2\u03b1\u03b4\u03bf \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b9\u03c2 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ad\u03c2","owner":"topoguide","x":23.708739,"y":38.149341,"photo":"Attiki_Parnitha_Xerolivadho1","type":0,"zoom_level":15,"id":2332,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.693225,"y":38.1433,"photo":"Attiki_Parnitha_simansi47","type":9,"zoom_level":16,"id":2333,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":" \u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.69315,"y":38.14319,"photo":"Attiki_Parnitha_simansi49","type":9,"zoom_level":16,"id":2334,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u039c\u03b1\u03c5\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u0392\u03b1\u03c1\u03c5\u03bc\u03c0\u03cc\u03c0\u03b7","owner":"topoguide","x":23.73098,"y":38.155306,"photo":"Attiki_Parnitha_Petra_Kazino2","type":0,"zoom_level":15,"id":2335,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03b1\u03bc\u03bc\u03ad\u03bd\u03b7 \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03bf\u03c5 \u03c1\u03ad\u03bc\u03b1\u03c4\u03bf\u03c2 \u039a\u03b1\u03bc\u03c0\u03ad\u03c1\u03b1","owner":"topoguide","x":23.699104,"y":38.149031,"photo":"Attiki_Parnitha_Kabera_valley","type":0,"zoom_level":15,"id":2337,"hlink_GR":"","hlink_EN":"","description":"","height":430,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc\u03c2 \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b9\u03ba\u03cc\u03c2 \u03c3\u03c4\u03b1\u03c5\u03c1\u03cc\u03c2 \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a7\u03ac\u03c1\u03b1\u03b4\u03c1\u03bf","owner":"topoguide","x":23.747341,"y":38.181503,"photo":"Attiki_Parnitha_Charadros_stavros","type":0,"zoom_level":15,"id":2340,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03b8\u03b5\u03b1\u03c4\u03c1\u03ac\u03ba\u03b9 \u03c3\u03c4\u03bf \u03c7\u03ce\u03c1\u03bf \u03c4\u03bf\u03c5 \u0391\u03b3. \u03a0\u03ad\u03c4\u03c1\u03bf\u03c5, \u039c\u03cc\u03bb\u03b1","owner":"topoguide","x":23.733898,"y":38.180491,"photo":"Attiki_Parnitha_AgPetros_Mola_theatraki","type":9,"zoom_level":16,"id":2342,"hlink_GR":"","hlink_EN":"","description":"","height":474,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b1\u03c1\u03c0\u03bf\u03c6\u03bf\u03c1\u03af\u03b1 \u03c4\u03c9\u03bd \u03b5\u03bb\u03ac\u03c4\u03c9\u03bd","owner":"topoguide","x":23.741108,"y":38.18184,"photo":"Attiki_Parnitha_elato5","type":1,"zoom_level":15,"id":2344,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f\u03b9 \u03ba\u03ce\u03bd\u03bf\u03b9 \u03c4\u03bf\u03c5 \u03b5\u03bb\u03ac\u03c4\u03bf\u03c5","owner":"topoguide","x":23.711491,"y":38.176274,"photo":"Attiki_Parnitha_elato6","type":1,"zoom_level":16,"id":2345,"hlink_GR":"","hlink_EN":"","description":"","height":778,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03ce\u03bd\u03bf\u03b9 \u03c4\u03bf\u03c5 \u03b5\u03bb\u03ac\u03c4\u03bf\u03c5 \u03c4\u03bf \u03ba\u03b1\u03bb\u03bf\u03ba\u03b1\u03af\u03c1\u03b9","owner":"topoguide","x":23.744621,"y":38.168759,"photo":"Attiki_Parnitha_elato7","type":1,"zoom_level":17,"id":2346,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03b1\u03bc\u03bd\u03b7\u03c3\u03c4\u03b9\u03ba\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7 \u03b8\u03c5\u03bc\u03ac\u03c4\u03c9\u03bd \u03c4\u03b7\u03c2 27\/7\/1944","owner":"topoguide","x":23.740351,"y":38.177571,"photo":"Attiki_Parnitha_diastMesianoNero_iroo","type":9,"zoom_level":16,"id":2353,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":535},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"topoguide","x":23.740351,"y":38.177335,"photo":"Attiki_Parnitha_diastMesianoNero_simansi2","type":9,"zoom_level":17,"id":2355,"hlink_GR":"","hlink_EN":"","description":"","height":572,"width":700},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.719457,"y":38.155667,"photo":"Attiki_Parnitha_simansi_56","type":9,"zoom_level":17,"id":2415,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.719242,"y":38.155884,"photo":"Attiki_Parnitha_simansi_57","type":9,"zoom_level":17,"id":2416,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u03a0\u03b5\u03c1\u03b9\u03b2\u03b1\u03bb\u03bb\u03bf\u03bd\u03c4\u03b9\u03ba\u03ae\u03c2 \u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7\u03c2","owner":"AnaDigit","x":23.718598604202,"y":38.156113901727,"photo":"Attiki_Parnitha_AgTriada_Kentro_Perivalontikis_Enimerossis","type":9,"zoom_level":15,"id":2417,"hlink_GR":"","hlink_EN":"","description":"","height":612,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03bf \u03b5\u03c3\u03c4\u03b9\u03b1\u03c4\u03cc\u03c1\u03b9\u03bf \"\u039a\u03c5\u03ba\u03bb\u03ac\u03bc\u03b9\u03bd\u03bf\"","owner":"AnaDigit","x":23.719757318496,"y":38.156122338135,"photo":"Attiki_Parnitha_AgTriada_Kyklamino2","type":9,"zoom_level":16,"id":2418,"hlink_GR":"","hlink_EN":"","description":"","height":556,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b5\u03c4\u03c1\u03cc\u03c7\u03c4\u03b9\u03c3\u03c4\u03b7 \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae","owner":"AnaDigit","x":23.725025,"y":38.159229,"photo":"Attiki_Parnitha_AgTriada_wta","type":9,"zoom_level":16,"id":2419,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u0391\u03ad\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.737294,"y":38.148147,"photo":"Attiki_Parnitha_koryfi_Aeras","type":0,"zoom_level":15,"id":2420,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.737337,"y":38.150029,"photo":"Attiki_Parnitha_MontParnes_simansi","type":9,"zoom_level":17,"id":2421,"hlink_GR":"","hlink_EN":"","description":"","height":761,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c4\u03b5\u03bb\u03b5\u03c6\u03b5\u03c1\u03af\u03ba","owner":"AnaDigit","x":23.735497,"y":38.151345,"photo":"Attiki_Parnitha_MontParnes_13","type":9,"zoom_level":15,"id":2422,"hlink_GR":"","hlink_EN":"","description":"","height":636,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.736573,"y":38.15394,"photo":"Attiki_Parnitha_simansi_58","type":9,"zoom_level":17,"id":2423,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2 \u03c3\u03c4\u03b7 \u0392\u03cc\u03c1\u03b5\u03b9\u03b1 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.635536,"y":38.17402,"photo":"Attiki_Parnitha_PrfIlias_Karamanli_1","type":9,"zoom_level":14,"id":2429,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u0397\u0398\u0391
\u03a6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03a6\u03c5\u03bb\u03ae\u03c2","owner":"AnaDigit","x":23.637086272239,"y":38.139954278919,"photo":"Attiki_Parnitha_frourio_Fylis_1_1","type":10,"zoom_level":13,"id":2432,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03c6\u03c1\u03bf\u03cd\u03c1\u03b9\u03bf \u03c4\u03b7\u03c2 \u03a6\u03c5\u03bb\u03ae\u03c2 \u03ba\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03b5\u03b9 \u03c4\u03bf \u03ba\u03cd\u03c1\u03b9\u03bf \u03bf\u03c1\u03b5\u03b9\u03bd\u03cc \u03c0\u03ad\u03c1\u03b1\u03c3\u03bc\u03b1 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b7 \u0394\u03c5\u03c4\u03b9\u03ba\u03ae \u0391\u03c4\u03c4\u03b9\u03ba\u03ae \u03ba\u03b1\u03b9 \u03c4\u03b7 \u0392\u03bf\u03b9\u03c9\u03c4\u03af\u03b1, \u03c0\u03ac\u03bd\u03c9 \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c6\u03c5\u03c3\u03b9\u03ba\u03ac \u03bf\u03c7\u03c5\u03c1\u03ae \u03b8\u03ad\u03c3\u03b7, \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03bf \u03ba\u03cd\u03c1\u03b9\u03bf \u03ac\u03be\u03bf\u03bd\u03b1. \u03a3\u03c4\u03b1 \u03ba\u03bb\u03b1\u03c3\u03b9\u03ba\u03ac \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1, \u03b7 \u03c6\u03cd\u03bb\u03b1\u03be\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03c1\u03bf\u03c5\u03c1\u03af\u03bf\u03c5 \u03b5\u03af\u03c7\u03b5 \u03b1\u03bd\u03b1\u03c4\u03b5\u03b8\u03b5\u03af \u03c3\u03c4\u03bf\u03c5\u03c2 \u03a6\u03c5\u03bb\u03ac\u03c3\u03b9\u03bf\u03c5\u03c2, \u03ac\u03b3\u03c1\u03b9\u03bf \u03ba\u03b1\u03b9 \u03c0\u03bf\u03bb\u03b5\u03bc\u03bf\u03c7\u03b1\u03c1\u03ad\u03c2 \u03c6\u03cd\u03bb\u03bf, \u03c0\u03bf\u03c5 \u03b5\u03af\u03c7\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b9\u03c2 \u03c3\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ad\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2, \u03b5\u03c0\u03b9\u03b2\u03bb\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03c4\u03c3\u03b9 \u03cc\u03bb\u03b7 \u03c4\u03b7 \u03b2\u03b1\u03c4\u03ae \u03b6\u03ce\u03bd\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2. \u0397 \u03c3\u03c4\u03ad\u03c8\u03b7 \u03c4\u03b7\u03c2 \u03ad\u03be\u03b1\u03c1\u03c3\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c3\u03c4\u03b9\u03b2\u03b1\u03c1\u03cc \u03ba\u03b1\u03b9 \u03c8\u03b7\u03bb\u03cc \u03b9\u03c3\u03bf\u03b4\u03bf\u03bc\u03b9\u03ba\u03cc \u03c4\u03b5\u03af\u03c7\u03bf\u03c2, \u03c0\u03bf\u03c5 \u03b5\u03af\u03c7\u03b5 \u03b4\u03cd\u03bf \u03c0\u03cd\u03bb\u03b5\u03c2, \u03bc\u03af\u03b1 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03bc\u03af\u03b1 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ac (\u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03b1\u03c0\u03cc\u03ba\u03c1\u03b7\u03bc\u03bd\u03b7 \u03c7\u03b1\u03c1\u03ac\u03b4\u03c1\u03b1, \u03c0\u03c1\u03bf\u03c6\u03b1\u03bd\u03ce\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03ad\u03be\u03bf\u03b4\u03bf \u03c3\u03b5 \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7 \u03c0\u03bf\u03bb\u03b9\u03bf\u03c1\u03ba\u03af\u03b1\u03c2). \u0395\u03c0\u03c4\u03ac \u03c0\u03cd\u03c1\u03b3\u03bf\u03b9 \u03b5\u03bd\u03af\u03c3\u03c7\u03c5\u03b1\u03bd \u03c4\u03b7\u03bd \u03ac\u03bc\u03c5\u03bd\u03b1, \u03b5\u03bd\u03ce \u03ba\u03bf\u03bd\u03c4\u03ac \u03c5\u03c0\u03ae\u03c1\u03c7\u03b1\u03bd \u03c0\u03b7\u03b3\u03ad\u03c2.","height":366,"width":1200},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ae \u039c\u03c0\u03af\u03ba\u03b5\u03b6\u03b1","owner":"AnaDigit","x":23.648432,"y":38.158776,"photo":"Attiki_Parnitha_Bikeza_spring","type":0,"zoom_level":15,"id":2433,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u039a\u03c1\u03cd\u03bf \u03a0\u03b7\u03b3\u03ac\u03b4\u03b9","owner":"AnaDigit","x":23.627994,"y":38.158425,"photo":"Attiki_Parnitha_Kryo_Pigadi_2","type":0,"zoom_level":15,"id":2434,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03a0\u03ac\u03c1\u03ba\u03bf \u03c4\u03c9\u03bd \u03a8\u03c5\u03c7\u03ce\u03bd","owner":"AnaDigit","x":23.719961,"y":38.149293,"photo":"Attiki_Parnitha_Parko_Psichon_0","type":9,"zoom_level":14,"id":2456,"hlink_GR":"","hlink_EN":"","description":"","height":551,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.712418794633,"y":38.157058773444,"photo":"Attiki_Parhitha_simansi_66","type":9,"zoom_level":16,"id":2457,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.712934,"y":38.15635,"photo":"Attiki_Parhitha_simansi_60","type":9,"zoom_level":17,"id":2458,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u03a0\u03b1\u03bb\u03b9\u03bf\u03c7\u03ce\u03c1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.712241768837,"y":38.157206408544,"photo":"Attiki_Parhitha_Paliochori_spring_2","type":9,"zoom_level":15,"id":2459,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.696769,"y":38.170463,"photo":"Attiki_Parhitha_simansi_62","type":9,"zoom_level":16,"id":2460,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.694995164872,"y":38.169237664302,"photo":"Attiki_Parhitha_simansi_65","type":9,"zoom_level":16,"id":2461,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":653},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.700719,"y":38.162645,"photo":"Attiki_Parhitha_simansi_68","type":9,"zoom_level":17,"id":2462,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03a0\u03b1\u03bb\u03b9\u03bf\u03c7\u03ce\u03c1\u03b9-\u03a3\u03ba\u03af\u03c0\u03b9\u03b6\u03b1","owner":"AnaDigit","x":23.712996,"y":38.163059,"photo":"Attiki_Parhitha_Paliochori_Skipiza","type":0,"zoom_level":15,"id":2463,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03ba\u03c4\u03ae\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 \u03c0\u03b1\u03bb\u03b9\u03bf\u03cd \u03a3\u03b1\u03bd\u03b1\u03c4\u03bf\u03c1\u03af\u03bf\u03c5-\u039e\u03b5\u03bd\u03af\u03b1","owner":"AnaDigit","x":23.719832,"y":38.148911,"photo":"Attiki_Parhitha_Xenia_1","type":9,"zoom_level":15,"id":2464,"hlink_GR":"","hlink_EN":"","description":"","height":366,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0392\u03ac\u03c4\u03bf\u03c2 \u03b7 \u03b8\u03b1\u03bc\u03bd\u03ce\u03b4\u03b7\u03c2 (Rubus fruticosus)","owner":"AnaDigit","x":23.684786550277,"y":38.172810775828,"photo":"Parhitha_Vatomouria","type":1,"zoom_level":15,"id":2466,"hlink_GR":"","hlink_EN":"","description":"","height":635,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u0391\u03bd\u03c4\u03cd\u03c0\u03b1","owner":"AnaDigit","x":23.69156,"y":38.168638,"photo":"Attiki_Parhitha_Vrysi_Antypa","type":9,"zoom_level":16,"id":2467,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.691068410874,"y":38.168748438994,"photo":"Attiki_Parhitha_Gaidourovrysi","type":9,"zoom_level":16,"id":2468,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0395\u03bb\u03ac\u03c6\u03b9\u03b1 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1","owner":"AnaDigit","x":23.684287786485,"y":38.171784956815,"photo":"Attiki_Parhitha_elafia_Goura","type":7,"zoom_level":15,"id":2469,"hlink_GR":"","hlink_EN":"","description":"","height":369,"width":900},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03b2\u03c1\u03cd\u03c3\u03b7 \u0392\u03b9\u03bb\u03b9\u03ac\u03bd\u03b9","owner":"AnaDigit","x":23.701658,"y":38.160929,"photo":"Attiki_Parhitha_Viliani_spring_2","type":9,"zoom_level":15,"id":2470,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u039c\u03b1\u03c5\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9","owner":"AnaDigit","x":23.737117,"y":38.152045,"photo":"Attiki_Parhitha_MonParnes_3","type":0,"zoom_level":14,"id":2471,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u039c\u03c0\u03cc\u03c1\u03c3\u03b9","owner":"AnaDigit","x":23.649784,"y":38.186006,"photo":"Attiki_Parnitha_Borsi","type":0,"zoom_level":14,"id":2472,"hlink_GR":"","hlink_EN":"","description":"","height":461,"width":1200},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03c4\u03bf \u039c\u03c0\u03cc\u03c1\u03c3\u03b9","owner":"AnaDigit","x":23.650862,"y":38.186304,"photo":"Attiki_Parnitha_AgParaskevi_Borsi5","type":9,"zoom_level":14,"id":2473,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u039c\u03c0\u03cc\u03c1\u03c3\u03b9","owner":"AnaDigit","x":23.654376,"y":38.185688,"photo":"Attiki_Parnitha_Borsi_pigi2","type":0,"zoom_level":15,"id":2474,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03bc\u03b9\u03ba\u03c1\u03ae \u03c0\u03b7\u03b3\u03ae \u03c3\u03c4\u03bf \u03ba\u03c4\u03ae\u03bc\u03b1 \u03c3\u03c4\u03bf \u039c\u03c0\u03cc\u03c1\u03c3\u03b9","owner":"AnaDigit","x":23.652611,"y":38.186586,"photo":"Attiki_Parnitha_Borsi_pigi3","type":0,"zoom_level":15,"id":2475,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03b4\u03b1\u03c3\u03b9\u03ba\u03cc \u03c6\u03c5\u03bb\u03ac\u03ba\u03b5\u03b9\u03bf \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03a6\u03c5\u03bb\u03ae\u03c2","owner":"AnaDigit","x":23.642912,"y":38.145093,"photo":"Attiki_Parnitha_fylakio_Fylis","type":9,"zoom_level":15,"id":2476,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03c4\u03b9\u03c2 \u03a0\u03b7\u03b3\u03ad\u03c2 \u03a6\u03c5\u03bb\u03ae\u03c2","owner":"AnaDigit","x":23.646592,"y":38.146021,"photo":"Attiki_Parnitha_AgParaskevi_Fylis","type":9,"zoom_level":15,"id":2477,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.654842,"y":38.153336,"photo":"Attiki_Parnitha_simansi71","type":9,"zoom_level":16,"id":2478,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039c\u03b5\u03bb\u03af\u03c3\u03c3\u03b9\u03b1 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.658587,"y":38.156753,"photo":"Attiki_Parnitha_melisia","type":0,"zoom_level":15,"id":2479,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u0392\u03bf\u03c5\u03bd\u03cc \u03a6\u03c5\u03bb\u03ae\u03c2","owner":"AnaDigit","x":23.644044,"y":38.150463,"photo":"Attiki_Parnitha_Vouno_Fylis2","type":0,"zoom_level":15,"id":2482,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a1\u03b7\u03c4\u03b9\u03bd\u03bf\u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.658281388889,"y":38.143958223259,"photo":"Attiki_Parnitha_ritinosyllogi","type":0,"zoom_level":16,"id":2483,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
Pelophylax kurtmuelleri","owner":"AnaDigit","x":23.649934,"y":38.180025,"photo":"Pelophylax_kurtmuelleri_Parnitha0","type":8,"zoom_level":15,"id":2484,"hlink_GR":"","hlink_EN":"","description":"","height":584,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u039c\u03b1\u03c5\u03c1\u03bf\u03bc\u03cd\u03c4\u03b7","owner":"AnaDigit","x":23.649559,"y":38.179671,"photo":"Attiki_Parnitha_pigi_Mavromyti","type":9,"zoom_level":15,"id":2485,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b1\u03bb\u03cd\u03b2\u03b1 \u03c3\u03c4\u03bf \u039a\u03bb\u03b7\u03bc\u03ad\u03bd\u03c4\u03b9","owner":"AnaDigit","x":23.655588,"y":38.154155,"photo":"Attiki_Parnitha_Klimenti_kalyva","type":9,"zoom_level":16,"id":2486,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u039a\u03bf\u03ba\u03bf\u03c1\u03b5\u03b2\u03c5\u03b8\u03b9\u03ac","owner":"AnaDigit","x":23.704655,"y":38.227601,"photo":"Attiki_Parhitha_Glystrokoumaria_81","type":1,"zoom_level":13,"id":2656,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03ba\u03bf\u03ba\u03ba\u03bf\u03c1\u03b5\u03b2\u03c5\u03b8\u03b9\u03ac (Pistacia terebinthus, \u03bb\u03ad\u03b3\u03b5\u03c4\u03b1\u03b9 \u03b5\u03c0\u03af\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b5\u03c1\u03ad\u03b2\u03b9\u03bd\u03b8\u03bf\u03c2, \u03c4\u03c3\u03b9\u03ba\u03bf\u03c5\u03b4\u03b9\u03ac \u03ae \u03c4\u03c1\u03b1\u03bc\u03b9\u03b8\u03b9\u03ac) \u03b5\u03af\u03bd\u03b1\u03b9 \u03c6\u03c5\u03bb\u03bb\u03bf\u03b2\u03cc\u03bb\u03bf \u03b4\u03ad\u03bd\u03b4\u03c1\u03bf \u03c4\u03b7\u03c2 \u039c\u03b5\u03c3\u03bf\u03b3\u03b5\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b6\u03ce\u03bd\u03b7\u03c2. \u03a6\u03c4\u03ac\u03bd\u03b5\u03b9 \u03cd\u03c8\u03bf\u03c2 \u03bc\u03ad\u03c7\u03c1\u03b9 \u03ba\u03b1\u03b9 \u03c4\u03b1 10\u03bc. \u0395\u03af\u03bd\u03b1\u03b9 \u03b5\u03af\u03b4\u03bf\u03c2 \u03b4\u03af\u03bf\u03b9\u03ba\u03bf \u03ba\u03b1\u03b9 \u03ba\u03b1\u03c1\u03c0\u03bf\u03cd\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bd \u03bc\u03cc\u03bd\u03bf \u03c4\u03b1 \u03b8\u03b7\u03bb\u03c5\u03ba\u03ac \u03ac\u03c4\u03bf\u03bc\u03b1.\n\u039f\u03b9 \u03ba\u03b1\u03c1\u03c0\u03bf\u03af \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c1\u03cd\u03c0\u03b5\u03c2, \u03c3\u03b5 \u03c3\u03c7\u03ae\u03bc\u03b1 \u03ba\u03b5\u03c1\u03ac\u03c4\u03bf\u03c5 \u03b3\u03af\u03b4\u03b1\u03c2 (\u03c3\u03c4\u03b7\u03bd \u0399\u03c3\u03c0\u03b1\u03bd\u03af\u03b1 \u03c4\u03bf\u03c5 \u03b4\u03ad\u03bd\u03c4\u03c1\u03bf \u03bb\u03ad\u03b3\u03b5\u03c4\u03b1\u03b9 cornicabra, \u03b4\u03b7\u03bb. \u03ba\u03ad\u03c1\u03b1\u03c4\u03bf \u03b3\u03af\u03b4\u03b1\u03c2), \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03bf\u03bb\u03bb\u03bf\u03cd\u03c2 \u03bc\u03b9\u03ba\u03c1\u03bf\u03cd\u03c2 \u03c3\u03c0\u03cc\u03c1\u03bf\u03c5\u03c2 \u03c3\u03b5 \u03c3\u03c7\u03ae\u03bc\u03b1 \u03c6\u03c5\u03c3\u03c4\u03b9\u03ba\u03b9\u03bf\u03cd, \u03c0\u03bf\u03c5 \u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03c3\u03af\u03ba\u03bf\u03c5\u03b4\u03b1.
\u039f\u03b9 \u03ba\u03b1\u03c1\u03c0\u03bf\u03af \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc \u03ac\u03b3\u03c1\u03b9\u03b1 \u03b4\u03ad\u03bd\u03c4\u03c1\u03b1, \u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc \u03ba\u03b1\u03bb\u03bb\u03b9\u03b5\u03c1\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u03ac\u03c4\u03bf\u03bc\u03b1. \u03a4\u03b1 \u03c4\u03c3\u03af\u03ba\u03bf\u03c5\u03b4\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c5\u03c7\u03ac\u03c1\u03b9\u03c3\u03c4\u03b1 \u03c3\u03c4\u03b7 \u03b3\u03b5\u03cd\u03c3\u03b7, \u03bc\u03b5 \u03ad\u03bd\u03c4\u03bf\u03bd\u03bf \u03ac\u03c1\u03c9\u03bc\u03b1 \u03ba\u03b1\u03b9 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03c4\u03b7\u03c2 \u03c4\u03c3\u03b9\u03ba\u03bf\u03c5\u03b4\u03b9\u03ac\u03c2 (\u039a\u03c1\u03ae\u03c4\u03b7), \u03c9\u03c2 \u03cc\u03c3\u03c0\u03c1\u03b9\u03bf (\u0392\u03cc\u03c1\u03b5\u03b9\u03b5\u03c2 \u03a3\u03c0\u03bf\u03c1\u03ac\u03b4\u03b5\u03c2), \u03c9\u03c2 \u03ac\u03c1\u03c4\u03c5\u03bc\u03b1 \u03c3\u03c4\u03bf \u03c8\u03c9\u03bc\u03af (\u039a\u03cd\u03c0\u03c1\u03bf\u03c2), \u03c9\u03c2 \u03b2\u03ac\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03b1\u03c1\u03c9\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c1\u03cc\u03c6\u03b7\u03bc\u03b1 (\u03a4\u03bf\u03c5\u03c1\u03ba\u03af\u03b1), \u03c9\u03c2 \u03b2\u03ac\u03c3\u03b7 \u03c3\u03bf\u03cd\u03c0\u03b1\u03c2 (\u03a4\u03bf\u03c5\u03c1\u03ba\u03af\u03b1), \u03c9\u03c2 \u03b1\u03c1\u03c9\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03c4\u03b7\u03c1\u03b7\u03c4\u03b9\u03ba\u03cc \u03ba\u03c1\u03b1\u03c3\u03b9\u03bf\u03cd (\u0399\u03c3\u03c1\u03b1\u03ae\u03bb) \u03ba\u03b1\u03b9 \u03c9\u03c2 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf \u03c6\u03b1\u03c1\u03bc\u03ac\u03ba\u03c9\u03bd \u03ae \u03b8\u03b5\u03c1\u03b1\u03c0\u03b5\u03b9\u03ce\u03bd (\u03b1\u03c1\u03c7\u03b1\u03af\u03b1 \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 \u03ba\u03bb\u03c0). \u03a4\u03b1 \u03c4\u03c3\u03af\u03ba\u03bf\u03c5\u03b4\u03b1 \u03c3\u03c5\u03bd\u03b8\u03bb\u03af\u03b2\u03bf\u03bd\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03b4\u03af\u03b4\u03bf\u03c5\u03bd \u03c4\u03bf \u03c4\u03b5\u03c1\u03b5\u03b2\u03b9\u03bd\u03b8\u03ad\u03bb\u03b1\u03b9\u03bf (\u03ae \u03ba\u03c1\u03b5\u03bc\u03b5\u03bd\u03c4\u03af\u03bd\u03b1), \u03c0\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b3\u03bd\u03c9\u03c3\u03c4\u03ae \u03c0\u03b7\u03b3\u03ae \u03b3\u03b9\u03b1 \u03c4\u03bf \u03bd\u03ad\u03c6\u03c4\u03b9, \u03b1\u03bb\u03bb\u03ac \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03ac\u03c1\u03c9\u03bc\u03b1 \u03c3\u03c4\u03b7 \u03b6\u03b1\u03c7\u03b1\u03c1\u03bf\u03c0\u03bb\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae \u03ba\u03b1\u03b9 \u03c4\u03b7 \u03bc\u03b1\u03b3\u03b5\u03b9\u03c1\u03b9\u03ba\u03ae.
\u03a4\u03bf \u03bd\u03ad\u03c6\u03c4\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03b1\u03c0\u03cc \u03c7\u03b7\u03bc\u03b9\u03ba\u03bf\u03cd\u03c2 \u03b4\u03b9\u03b1\u03bb\u03cd\u03c4\u03b5\u03c2.","height":633,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039c\u03b9\u03b1 \u03ba\u03b1\u03bb\u03cd\u03b2\u03b1 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf\u03bd \u0391\u03c5\u03bb\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.707783937455,"y":38.237460837282,"photo":"Attiki_Parhitha_kalyva_Avlonas1","type":9,"zoom_level":14,"id":2657,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039b\u03bf\u03c5\u03c4\u03c1\u03cc \u03b5\u03bb\u03b1\u03c6\u03b9\u03ce\u03bd \u03c3\u03b5 \u03bb\u03ac\u03ba\u03ba\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b9","owner":"AnaDigit","x":23.707328,"y":38.220228,"photo":"Attiki_Parhitha_laka_pano_Saloniki_31","type":0,"zoom_level":14,"id":2658,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039c\u03b5\u03c4\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 \u03a3\u03c9\u03c4\u03ae\u03c1\u03b1 \u0391\u03c5\u03bb\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.719499826432,"y":38.233146090373,"photo":"Attiki_Parhitha_MetSotira_Avlonas_21","type":9,"zoom_level":14,"id":2661,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03b1 \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1 \u03c3\u03c4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03a3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b9","owner":"AnaDigit","x":23.717905,"y":38.2091,"photo":"Attiki_Parhitha_Saloniki_31","type":0,"zoom_level":13,"id":2665,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.708384752274,"y":38.235134950834,"photo":"Attiki_Parhitha_Simansi_821","type":450,"zoom_level":15,"id":2667,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.706495,"y":38.217668,"photo":"Attiki_Parhitha_Simansi_831","type":450,"zoom_level":15,"id":2668,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c0\u03b7\u03bb\u03b9\u03ad\u03c2 \u03c3\u03c4\u03bf \u039c\u03b5\u03b3\u03ac\u03bb\u03bf \u0391\u03c1\u03bc\u03ad\u03bd\u03b9","owner":"AnaDigit","x":23.699844598771,"y":38.236988924309,"photo":"Attiki_Parhitha_spilies_Avlonas1","type":73,"zoom_level":14,"id":2670,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7 \u039c\u03b5\u03c4. \u03a3\u03c9\u03c4\u03ae\u03c1\u03b1 \u0391\u03c5\u03bb\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.717225313187,"y":38.232370757153,"photo":"Attiki_Parhitha_well_MetSotira_Avlonas1","type":9,"zoom_level":14,"id":2671,"hlink_GR":"","hlink_EN":"","description":"","height":627,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf \u03c1\u03ad\u03bc\u03b1 \u03a0\u03b1\u03bb\u03b9\u03bf\u03bc\u03ae\u03bb\u03b5\u03c3\u03b9","owner":"AnaDigit","x":23.74417614937,"y":38.2160531323,"photo":"Attiki_Parhitha_well_Paliomilesi1","type":9,"zoom_level":15,"id":2672,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0395\u03a1\u03a0\u0395\u03a4\u0391
\u0396\u03b5\u03c5\u03b3\u03ac\u03c1\u03c9\u03bc\u03b1 \u03c7\u03b5\u03bb\u03c9\u03bd\u03ce\u03bd","owner":"AnaDigit","x":23.70381,"y":38.227106,"photo":"Attiki_Parhitha_tesudo_copulation_52","type":8,"zoom_level":14,"id":2673,"hlink_GR":"","hlink_EN":"","description":"","height":556,"width":800},{"name":"\u0395\u03a1\u03a0\u0395\u03a4\u0391
\u03a4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03a3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b9","owner":"AnaDigit","x":23.717354,"y":38.210722,"photo":"Attiki_Parhitha_Saloniki_pano","type":0,"zoom_level":13,"id":2674,"hlink_GR":"","hlink_EN":"","description":"","height":251,"width":1200},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.687258,"y":38.142188,"photo":"Attiki_Parnitha_simansi_116","type":450,"zoom_level":16,"id":2737,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.676461,"y":38.140816,"photo":"Attiki_Parnitha_simansi_119","type":450,"zoom_level":15,"id":2738,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.676792,"y":38.13828,"photo":"Attiki_Parnitha_simansi_123","type":450,"zoom_level":16,"id":2739,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.673541,"y":38.137514,"photo":"Attiki_Parnitha_simansi_126","type":450,"zoom_level":17,"id":2740,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
Sternbergia lutea","owner":"AnaDigit","x":23.748245,"y":38.146318,"photo":"Sternbergia_lutea_Parnitha_Flabouri1","type":1,"zoom_level":14,"id":2744,"hlink_GR":"","hlink_EN":"","description":"","height":551,"width":800},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u039a\u03c1\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03af\u03b3\u03b1\u03b3\u03c1\u03bf\u03c2 (Capra aegagrus cretica)","owner":"AnaDigit","x":23.750091,"y":38.153126,"photo":"Attiki_Parnitha_Flabouri_krikri_11","type":7,"zoom_level":14,"id":2745,"hlink_GR":"","hlink_EN":"","description":"","height":366,"width":1200},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b1\u03c0\u03cc \u03c4\u03bf \u039c\u03c0\u03ac\u03c6\u03b9 \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1","owner":"AnaDigit","x":23.723138,"y":38.161771,"photo":"Attiki_Parnitha_Asproes_11","type":0,"zoom_level":15,"id":2746,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c4\u03b5\u03bb\u03b9\u03ba\u03ae \u03b1\u03bd\u03b7\u03c6\u03cc\u03c1\u03b1 \u03c3\u03c4\u03b7 \u03a7\u03bf\u03cd\u03bd\u03b7","owner":"AnaDigit","x":23.729218,"y":38.164025,"photo":"Attiki_Parnitha_Chouni_91","type":0,"zoom_level":16,"id":2747,"hlink_GR":"","hlink_EN":"","description":"","height":748,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03b7\u03bd \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03cc\u03c8\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03b9\u03bf\u03cd","owner":"AnaDigit","x":23.747778,"y":38.146263,"photo":"Attiki_Parnitha_Flabouri_21","type":0,"zoom_level":15,"id":2748,"hlink_GR":"","hlink_EN":"","description":"","height":558,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03cc\u03c8\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03b9\u03bf\u03cd","owner":"AnaDigit","x":23.748513,"y":38.147003,"photo":"Attiki_Parnitha_Flabouri_31","type":0,"zoom_level":16,"id":2749,"hlink_GR":"","hlink_EN":"","description":"","height":537,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03cc\u03c8\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03b9\u03bf\u03cd","owner":"AnaDigit","x":23.74979,"y":38.14803,"photo":"Attiki_Parnitha_Flabouri_41","type":0,"zoom_level":17,"id":2750,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03cc\u03c8\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03b9\u03bf\u03cd","owner":"AnaDigit","x":23.749933,"y":38.148871,"photo":"Attiki_Parnitha_Flabouri_51","type":0,"zoom_level":16,"id":2751,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03cc\u03c8\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03b9\u03bf\u03cd","owner":"AnaDigit","x":23.75005,"y":38.14926,"photo":"Attiki_Parnitha_Flabouri_61","type":0,"zoom_level":15,"id":2752,"hlink_GR":"","hlink_EN":"","description":"","height":555,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03cc\u03c8\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03b9\u03bf\u03cd","owner":"AnaDigit","x":23.750346,"y":38.150965,"photo":"Attiki_Parnitha_Flabouri_71","type":0,"zoom_level":17,"id":2753,"hlink_GR":"","hlink_EN":"","description":"","height":709,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03cc\u03c8\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03b9\u03bf\u03cd","owner":"AnaDigit","x":23.750283,"y":38.15395,"photo":"Attiki_Parnitha_Flabouri_121","type":0,"zoom_level":15,"id":2754,"hlink_GR":"","hlink_EN":"","description":"","height":627,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03c5\u03c1\u03ac\u03ba\u03b9","owner":"AnaDigit","x":23.750158,"y":38.154353,"photo":"Attiki_Parnitha_Flabouri_131","type":0,"zoom_level":14,"id":2755,"hlink_GR":"","hlink_EN":"","description":"","height":653,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.727449893952,"y":38.165155062823,"photo":"Attiki_Parnitha_simansi_1011","type":450,"zoom_level":17,"id":2756,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03a6\u03c1\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9-\u0398\u03ad\u03c1\u03b9\u03b6\u03b1-\u039c\u03c0\u03ac\u03c6\u03b9","owner":"AnaDigit","x":23.742926,"y":38.16532,"photo":"Attiki_Parnitha_Flabouri_Theriza_11","type":0,"zoom_level":16,"id":2757,"hlink_GR":"","hlink_EN":"","description":"","height":687,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u03c3\u03c4\u03bf \u039c\u03b5\u03c4\u03cc\u03c7\u03b9","owner":"AnaDigit","x":23.73366,"y":38.136891,"photo":"Attiki_Parnitha_AgNikolaos_Metochi_11","type":9,"zoom_level":14,"id":2774,"hlink_GR":"","hlink_EN":"","description":"","height":457,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c6\u03c5\u03bb\u03ac\u03ba\u03b5\u03b9\u03bf \u03c4\u03bf\u03c5 \u0394\u03b1\u03c3\u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u039c\u03b5\u03c4\u03cc\u03c7\u03b9","owner":"AnaDigit","x":23.733158,"y":38.137194,"photo":"Attiki_Parnitha_Metochi_Dasiko_Fylakio1","type":9,"zoom_level":14,"id":2775,"hlink_GR":"","hlink_EN":"","description":"","height":621,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u039a\u03c5\u03c1\u03ac","owner":"AnaDigit","x":23.697903,"y":38.14388,"photo":"Attiki_Parnitha_dias_Kyras_pros_Kyra1","type":0,"zoom_level":15,"id":2776,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03b1\u03c0\u03cc\u03c4\u03bf\u03bc\u03b7 \u03c1\u03ac\u03bc\u03c0\u03b1 \u03c3\u03c4\u03bf Elevator","owner":"AnaDigit","x":23.719031,"y":38.137235,"photo":"Attiki_Parnitha_MTB_Elevator_13","type":341,"zoom_level":17,"id":2779,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf bump \u03c3\u03c4\u03bf Elevator","owner":"AnaDigit","x":23.718973,"y":38.137265,"photo":"Attiki_Parnitha_MTB_Elevator_21","type":341,"zoom_level":17,"id":2780,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c0\u03c5\u03c1\u03bf\u03c6\u03c5\u03bb\u03ac\u03ba\u03b5\u03b9\u03bf \u03c4\u03b7\u03c2 \u039a\u03c5\u03c1\u03ac\u03c2","owner":"AnaDigit","x":23.700617,"y":38.145527,"photo":"Attiki_Parnitha_pyro_Kyras_11","type":9,"zoom_level":14,"id":2781,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.701698,"y":38.146263,"photo":"Attiki_Parnitha_simansi_1311","type":450,"zoom_level":16,"id":2782,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.708255,"y":38.145526,"photo":"Attiki_Parnitha_simansi_1321","type":450,"zoom_level":16,"id":2783,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03c0\u03cc \u03c4\u03bf \u03b4\u03b9\u03ac\u03c3\u03b5\u03bb\u03bf \u03c4\u03b7\u03c2 \u03a3\u03ba\u03ac\u03bb\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u039c\u03b5\u03c4\u03cc\u03c7\u03b9","owner":"AnaDigit","x":23.70792,"y":38.145218,"photo":"Attiki_Parnitha_Skala_11","type":0,"zoom_level":14,"id":2784,"hlink_GR":"","hlink_EN":"","description":"","height":550,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u03c0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03b4\u03b1\u03bd\u03b5\u03b9\u03bf\u03b8\u03ac\u03bb\u03b1\u03bc\u03bf\u03c2 \u03c3\u03c4\u03b9\u03c2 \u0391\u03c3\u03c0\u03c1\u03bf\u03ad\u03c2","owner":"AnaDigit","x":23.727841,"y":38.160581,"photo":"Attiki_Parnitha_Asproes1","type":0,"zoom_level":16,"id":2785,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03bd\u03ad\u03bf \u03c4\u03b5\u03bb\u03b5\u03c6\u03b5\u03c1\u03af\u03ba \u03c4\u03b7\u03c2 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2","owner":"AnaDigit","x":23.737155,"y":38.147684,"photo":"Attiki_Parnitha_funicular_11","type":0,"zoom_level":14,"id":2787,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039c\u03bf\u03bd\u03c4\u03ad\u03c1\u03bd\u03b1 (\u03ba\u03b1\u03b9 \u03bb\u03af\u03b3\u03bf \u03ba\u03af\u03c4\u03c2) \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03c4\u03bf \u03bd\u03ad\u03bf \u03c4\u03b5\u03bb\u03b5\u03c6\u03b5\u03c1\u03af\u03ba \u03c4\u03b7\u03c2 \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1\u03c2","owner":"AnaDigit","x":23.741248,"y":38.13785,"photo":"Attiki_Parnitha_funicular_21","type":9,"zoom_level":17,"id":2788,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":410},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0394\u03b9\u03b1\u03c4\u03c1\u03ad\u03c7\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u03c0\u03b5\u03c4\u03c1\u03bf\u03ba\u03bf\u03c1\u03c6\u03ae \u03c4\u03b7\u03c2 \u039a\u03b1\u03ba\u03b9\u03ac\u03c2 \u03a1\u03ac\u03c7\u03b7\u03c2","owner":"AnaDigit","x":23.71889,"y":38.167908,"photo":"Attiki_Parnitha_Kaki_Rachi_11","type":0,"zoom_level":14,"id":2789,"hlink_GR":"","hlink_EN":"","description":"","height":586,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b1\u03c4\u03b7\u03c6\u03bf\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u039a\u03b1\u03ba\u03b9\u03ac \u03a1\u03ac\u03c7\u03b7 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1","owner":"AnaDigit","x":23.720326,"y":38.166418,"photo":"Attiki_Parnitha_Kaki_Rachi_31","type":0,"zoom_level":15,"id":2790,"hlink_GR":"","hlink_EN":"","description":"","height":498,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03bb\u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03b9\u03ce\u03bd \u03c4\u03bf\u03c5 \u039f\u03a4\u0395","owner":"AnaDigit","x":23.729477,"y":38.172488,"photo":"Attiki_Parnitha_OTE_tower1","type":9,"zoom_level":14,"id":2791,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.726823,"y":38.167641,"photo":"Attiki_Parnitha_simansi_1341","type":450,"zoom_level":17,"id":2792,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":714},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.724546,"y":38.169498,"photo":"Attiki_Parnitha_simansi_1351","type":450,"zoom_level":16,"id":2793,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":721},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.717373,"y":38.1691,"photo":"Attiki_Parnitha_simansi_1361","type":450,"zoom_level":17,"id":2794,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.717448,"y":38.169293,"photo":"Attiki_Parnitha_simansi_1371","type":450,"zoom_level":17,"id":2795,"hlink_GR":"","hlink_EN":"","description":"","height":690,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0386\u03c1\u03c3\u03b5\u03bd\u03b9\u03ba\u03cc \u03b5\u03bb\u03ac\u03c6\u03b9 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03c4\u03bf \u03bb\u03bf\u03c5\u03c4\u03c1\u03cc \u03c4\u03bf\u03c5","owner":"AnaDigit","x":23.728943,"y":38.156823,"photo":"Attiki_Parnitha_elafi_221","type":7,"zoom_level":13,"id":2796,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":620},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039c\u03bf\u03bd \u03a0\u03b1\u03c1\u03bd\u03ad\u03c2","owner":"AnaDigit","x":23.736563,"y":38.152133,"photo":"Attiki_Parnitha_Kazino_13","type":9,"zoom_level":16,"id":2797,"hlink_GR":"","hlink_EN":"","description":"","height":469,"width":1200},{"name":"\u039c\u0391\u039d\u0399\u03a4\u0391\u03a1\u0399\u0391
Suillus luteus \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.70237,"y":38.138649,"photo":"Suillus_luteus_Parnitha_3","type":6,"zoom_level":14,"id":2798,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":681},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
Crocus laevigatus \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.721054,"y":38.166111,"photo":"Crocus_laevigatus_Parnitha_1","type":1,"zoom_level":15,"id":2799,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":687},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
Crataegus monogyna \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.728806,"y":38.156842,"photo":"Crataegus_monogyna_Parnitha_2","type":1,"zoom_level":15,"id":2800,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":635},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u039c\u03b1\u03b6\u03b1\u03c1\u03ad\u03ca\u03ba\u03b1","owner":"AnaDigit","x":23.614159,"y":38.226296,"photo":"Attiki_Parnitha_Mazareika1","type":0,"zoom_level":14,"id":2881,"hlink_GR":"","hlink_EN":"","description":"","height":514,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03c9\u03bd \u0395\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03c4\u03b7\u03c2 \u0398\u03b5\u03bf\u03c4\u03cc\u03ba\u03bf\u03c5 \u03c3\u03c4\u03b1 \u039c\u03b1\u03b6\u03b1\u03c1\u03ad\u03ca\u03ba\u03b1","owner":"AnaDigit","x":23.618295,"y":38.226609,"photo":"Attiki_Parnitha_Mazareika_Isodia_Theotokou_21","type":9,"zoom_level":14,"id":2882,"hlink_GR":"","hlink_EN":"","description":"","height":720,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u03c3\u03c4\u03b1 \u039c\u03b1\u03b6\u03b1\u03c1\u03ad\u03ca\u03ba\u03b1","owner":"AnaDigit","x":23.616965,"y":38.226865,"photo":"Attiki_Parnitha_Mazareika_pigi1","type":0,"zoom_level":15,"id":2883,"hlink_GR":"","hlink_EN":"","description":"\u0391\u03bd \u03ba\u03b1\u03b9 \u03bc\u03bf\u03b9\u03ac\u03b6\u03b5\u03b9 \u03bc\u03b5 \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9, \u03c0\u03c1\u03cc\u03ba\u03b5\u03b9\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03ba\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03ae \u03c0\u03b7\u03b3\u03ae \u03c0\u03bf\u03c5 \u03b1\u03bd\u03b1\u03b2\u03bb\u03cd\u03b6\u03b5\u03b9 \u03c7\u03b1\u03bc\u03b7\u03bb\u03ac","height":800,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039c\u03bd\u03b7\u03bc\u03b5\u03af\u03bf \u03a1\u03bf\u03c5\u03c3\u03c4\u03ad\u03bd\u03b7","owner":"AnaDigit","x":23.587865,"y":38.215863,"photo":"Attiki_Parnitha_mnimio_Rousteni1","type":9,"zoom_level":15,"id":2884,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":662},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f\u03b9 \u03bc\u03bf\u03bd\u03ad\u03c2 \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03b8\u03b1\u03bd\u03b1\u03c3\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u0391\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7\u03c2, \u03c3\u03c4\u03bf \u039a\u03bb\u03b5\u03b9\u03b4\u03af \u0392\u03bf\u03b9\u03c9\u03c4\u03af\u03b1\u03c2","owner":"AnaDigit","x":23.55356,"y":38.237326,"photo":"Attiki_Parnitha_mones_AgAthanasiou_Analipsis_31","type":9,"zoom_level":14,"id":2885,"hlink_GR":"","hlink_EN":"","description":"","height":434,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u03c4\u03b7\u03c2 \u039c\u03bf\u03c5\u03bb\u03ac\u03ba\u03b9\u03b6\u03b1\u03c2","owner":"AnaDigit","x":23.600001,"y":38.247749,"photo":"Attiki_Parnitha_Moulakiza1","type":0,"zoom_level":13,"id":2889,"hlink_GR":"","hlink_EN":"","description":"","height":402,"width":1200},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0391\u03bc\u03c0\u03ad\u03bb\u03b9\u03b1 \u03c3\u03c4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03c4\u03b7\u03c2 \u039e\u03b7\u03c1\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7\u03c2","owner":"AnaDigit","x":23.615035,"y":38.236132,"photo":"Attiki_Parnitha_Moulakiza_abelia2","type":0,"zoom_level":14,"id":2890,"hlink_GR":"","hlink_EN":"","description":"","height":349,"width":1200},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03c3\u03c4\u03b7 \u039c\u03bf\u03c5\u03bb\u03ac\u03ba\u03b9\u03b6\u03b1","owner":"AnaDigit","x":23.59813,"y":38.247578,"photo":"Attiki_Parnitha_Moulakiza_AgGeorgios_2","type":9,"zoom_level":14,"id":2891,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":522},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.605868,"y":38.225318,"photo":"Attiki_Parnitha_simansi_1451","type":450,"zoom_level":15,"id":2894,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf \u03a4\u03c3\u03b9\u03b3\u03ba\u03bf\u03c5\u03c1\u03ac\u03c4\u03b9","owner":"AnaDigit","x":23.57184,"y":38.208405,"photo":"Attiki_Parnitha_Tsigourati_pigadi1","type":9,"zoom_level":14,"id":2900,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u039e\u03b7\u03c1\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","owner":"AnaDigit","x":23.610325,"y":38.23817,"photo":"Attiki_Parnitha_Xirovrisi_AgVasilios_21","type":9,"zoom_level":14,"id":2901,"hlink_GR":"","hlink_EN":"","description":"","height":591,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.728871,"y":38.18333,"photo":"Attiki_Parnitha_simansi_151","type":450,"zoom_level":17,"id":3114,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.717205,"y":38.187552,"photo":"Attiki_Parnitha_simansi_150","type":450,"zoom_level":17,"id":3115,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u0391\u03c1\u03ac\u03c7\u03c9\u03b2\u03b1\u03c2","owner":"AnaDigit","x":22.642356872558,"y":38.504514649829,"photo":"Akrino_AgNikolaos","type":9,"zoom_level":15,"id":3185,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u0391\u03b3\u03af\u03b1 \u0391\u03b9\u03ba\u03b1\u03c4\u03b5\u03c1\u03af\u03bd\u03b7 \u0391\u03c1\u03ac\u03c7\u03c9\u03b2\u03b1\u03c2","owner":"AnaDigit","x":22.5979123,"y":38.478719,"photo":"Araxova_AgEkaterini","type":9,"zoom_level":15,"id":3186,"hlink_GR":"","hlink_EN":"","description":"","height":441,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2 \u03a0\u03bf\u03bb\u03c5\u03b4\u03c1\u03cc\u03c3\u03bf\u03c5","owner":"AnaDigit","x":22.5493238,"y":38.6257566,"photo":"Polydroso_PrfIlias","type":9,"zoom_level":15,"id":3192,"hlink_GR":"","hlink_EN":"","description":"","height":481,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u039c\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c3\u03c4\u03bf \u03a0\u03b1\u03c1\u03cc\u03c1\u03b9","owner":"AnaDigit","x":22.777341,"y":38.561983,"photo":"parori_tower","type":10,"zoom_level":14,"id":3198,"hlink_GR":"","hlink_EN":"","description":"","height":634,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u039d\u03b5\u03ce\u03bd\u03bf\u03c2","owner":"AnaDigit","x":22.6686517,"y":38.5854751,"photo":"Parnassos_Tithorea_acropolis_1","type":10,"zoom_level":14,"id":3199,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0392\u039f\u0399\u03a9\u03a4\u0399\u0391
\u039a\u03b1\u03c1\u03b1\u03ba\u03cc\u03bb\u03b9\u03b8\u03bf\u03c2: \u03bc\u03bd\u03b7\u03bc\u03b5\u03af\u03bf \u0395\u03b8\u03bd\u03b9\u03ba\u03ae\u03c2 \u0391\u03bd\u03c4\u03af\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2","owner":"AnaDigit","x":22.766769,"y":38.459766,"photo":"Viotia_Karakolithos","type":9,"zoom_level":14,"id":3201,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a4\u03bf\u03cd\u03c1\u03ba\u03bf\u03c5 \u03c3\u03c4\u03c1\u03bf\u03cd\u03b3\u03b3\u03b1","owner":"AnaDigit","x":22.640858,"y":38.495261,"photo":"DSC022791","type":9,"zoom_level":15,"id":3202,"hlink_GR":"","hlink_EN":"","description":"","height":496,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0391\u03a3\u03a3\u039f\u03a3
\u03a0\u03bf\u03c4\u03af\u03c3\u03c4\u03c1\u03b1 \u03c3\u03c4\u03bf\u03bd \u039a\u03bf\u03cd\u03b2\u03b5\u03bb\u03bf","owner":"AnaDigit","x":22.64963,"y":38.50298,"photo":"Parnassos_Akrino_Nero_potistra1","type":0,"zoom_level":15,"id":3203,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.683131152114,"y":38.17475550229,"photo":"DSC039321","type":450,"zoom_level":17,"id":3419,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.675325,"y":38.169761,"photo":"DSC039361","type":450,"zoom_level":17,"id":3420,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.674941,"y":38.169053,"photo":"DSC039401","type":450,"zoom_level":17,"id":3421,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b7\u03b3\u03ae \u03ba\u03b1\u03c4\u03ac \u03bc\u03ae\u03ba\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03b3\u03c9\u03b3\u03bf\u03cd \u03c4\u03b7\u03c2 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.669051,"y":38.1638,"photo":"Parnitha_agogos_Gouras_31","type":1001,"zoom_level":16,"id":3422,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b1\u03c4\u03ac \u03bc\u03ae\u03ba\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03b3\u03c9\u03b3\u03bf\u03cd \u03c4\u03b7\u03c2 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.668441,"y":38.162673,"photo":"Parnitha_agogos_Gouras_41","type":1001,"zoom_level":16,"id":3423,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b1\u03c4\u03ac \u03bc\u03ae\u03ba\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03b3\u03c9\u03b3\u03bf\u03cd \u03c4\u03b7\u03c2 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.67109,"y":38.166795,"photo":"Parnitha_agogos_Gouras11","type":1001,"zoom_level":17,"id":3424,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039a\u03b5\u03c1\u03b1\u03bc\u03b9\u03ba\u03ac \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c0\u03c1\u03ce\u03c4\u03b7 \u03c6\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03b3\u03c9\u03b3\u03bf\u03cd \u03c4\u03b7\u03c2 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.669295,"y":38.164023,"photo":"Parnitha_agogos_Gouras21","type":1001,"zoom_level":17,"id":3425,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03b4\u03b1\u03c3\u03b9\u03ba\u03cc \u03c6\u03c5\u03c4\u03ce\u03c1\u03b9\u03bf","owner":"AnaDigit","x":23.646031,"y":38.14157,"photo":"Parnitha_Fyli_ktima1","type":0,"zoom_level":16,"id":3428,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0393\u03b1\u03ca\u03b4\u03bf\u03c5\u03c1\u03cc\u03b2\u03c1\u03c5\u03c3\u03b7","owner":"AnaDigit","x":23.69148,"y":38.167766,"photo":"Parnitha_Gaidourovrisi_01","type":1001,"zoom_level":15,"id":3429,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0394\u03b9\u03b1\u03c3\u03c4\u03b1\u03cd\u03c1\u03c9\u03c3\u03b7 \u0394\u03b9\u03b1\u03c3. \u03a0\u03b1\u03bd\u03cc\u03c2-\u0393\u03ba\u03bf\u03cd\u03c1\u03b1-\u039d\u03c4\u03c1\u03ac\u03c3\u03b9\u03b6\u03b1","owner":"AnaDigit","x":23.683168703041,"y":38.1746964625,"photo":"Parnitha_diaselo_Drasizas1","type":0,"zoom_level":15,"id":3430,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.677373,"y":38.179486,"photo":"DSC040041","type":450,"zoom_level":17,"id":3432,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.678823,"y":38.180226,"photo":"DSC040091","type":450,"zoom_level":17,"id":3433,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.681403,"y":38.185811,"photo":"DSC040191","type":450,"zoom_level":18,"id":3434,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.685479673942,"y":38.188782459802,"photo":"DSC040231","type":450,"zoom_level":17,"id":3435,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.688729,"y":38.189936,"photo":"DSC040261","type":450,"zoom_level":18,"id":3436,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.69434,"y":38.193531,"photo":"DSC040301","type":450,"zoom_level":17,"id":3437,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.674271,"y":38.1906,"photo":"DSC040431","type":450,"zoom_level":16,"id":3438,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03ac\u03c1\u03bd\u03b7\u03b8\u03b1","owner":"AnaDigit","x":23.67802,"y":38.179198,"photo":"DSC040611","type":450,"zoom_level":17,"id":3439,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039b\u03bf\u03cd\u03c4\u03c3\u03b1 \u03c3\u03c4\u03bf \u039a\u03bb\u03b7\u03bc\u03ad\u03bd\u03c4\u03b9","owner":"AnaDigit","x":23.6582998,"y":38.157787,"photo":"Loutsa_Klimenti1","type":1001,"zoom_level":15,"id":3440,"hlink_GR":"","hlink_EN":"","description":"","height":617,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03b1\u03bb\u03b9\u03cc \u03c6\u03c5\u03bb\u03ac\u03ba\u03b5\u03b9\u03bf","owner":"AnaDigit","x":23.655945,"y":38.148023,"photo":"Parnitha_diast_Kalamara1","type":9,"zoom_level":16,"id":3441,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a0\u03c5\u03c1\u03bf\u03c6\u03c5\u03bb\u03ac\u03ba\u03b5\u03b9\u03bf \u039d\u03c4\u03c1\u03ac\u03c3\u03b9\u03b6\u03b1\u03c2","owner":"AnaDigit","x":23.678425,"y":38.180578,"photo":"Parnitha_Drasiza_pyrofilakio21","type":9,"zoom_level":16,"id":3442,"hlink_GR":"","hlink_EN":"","description":"","height":828,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0394\u03b9\u03b1\u03c3\u03c7\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u039c\u03b1\u03c5\u03c1\u03cc\u03c1\u03b5\u03bc\u03b1","owner":"AnaDigit","x":23.684589,"y":38.189136,"photo":"Parnitha_Mavrorema_21","type":0,"zoom_level":15,"id":3443,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03c6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u03c3\u03c4\u03bf \u039c\u03b1\u03c5\u03c1\u03cc\u03c1\u03b5\u03bc\u03b1","owner":"AnaDigit","x":23.676706,"y":38.191499,"photo":"Parnitha_Mavrorema_31","type":0,"zoom_level":15,"id":3444,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u039a\u03b1\u03bc\u03ac\u03c1\u03b9\u03b6\u03b1 \u03c3\u03c4\u03bf \u039c\u03b1\u03c5\u03c1\u03cc\u03c1\u03b5\u03bc\u03b1","owner":"AnaDigit","x":23.6820709,"y":38.1901898,"photo":"Parnitha_Drasiza_Kamariza_11","type":1001,"zoom_level":15,"id":3445,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u0397 \u03c0\u03b7\u03b3\u03ae \u039d\u03c4\u03c1\u03ac\u03c3\u03b9\u03b6\u03b1","owner":"AnaDigit","x":23.6768389,"y":38.1849003,"photo":"Parnitha_Drasiza_spr_11","type":1001,"zoom_level":15,"id":3446,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039b\u03b1\u03c3\u03c0\u03cc\u03bb\u03bf\u03c5\u03c4\u03c1\u03b1 \u03b5\u03bb\u03b1\u03c6\u03b9\u03ce\u03bd","owner":"AnaDigit","x":23.66594,"y":38.171573,"photo":"Parnitha_Klimenti_loutsa31","type":7,"zoom_level":16,"id":3447,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u03a4\u03bf \u03bb\u03b9\u03b2\u03ac\u03b4\u03b9 \u039b\u03b7\u03bc\u03b9\u03ba\u03cc","owner":"AnaDigit","x":23.697236710989,"y":38.196272710346,"photo":"Parnitha_Limiko_31","type":0,"zoom_level":13,"id":3448,"hlink_GR":"","hlink_EN":"","description":"","height":417,"width":1400},{"name":"\u03a0\u0391\u03a1\u039d\u0397\u0398\u0391
\u039b\u03bf\u03cd\u03c4\u03c3\u03b1 \u03c3\u03c4\u03bf \u039b\u03b7\u03bc\u03b9\u03ba\u03cc","owner":"AnaDigit","x":23.69272,"y":38.192433,"photo":"Parnitha_Limiko_loutsa1","type":1001,"zoom_level":16,"id":3449,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0396\u03b1\u03b3\u03b1\u03c1\u03ac\u03c2, \u0393\u03b5\u03bd\u03ad\u03c3\u03b9\u03bf\u03bd \u03c4\u03b7\u03c2 \u0398\u03b5\u03bf\u03c4\u03cc\u03ba\u03bf\u03c5","owner":"AnaDigit","x":23.01000728836,"y":38.332632793487,"photo":"Elikon_Panagia_Pournara_21","type":9,"zoom_level":15,"id":3988,"hlink_GR":"","hlink_EN":"","description":"","height":713,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0396\u03b1\u03b3\u03b1\u03c1\u03ac\u03c2, \u03bb\u03ac\u03ba\u03ba\u03b1 \u03a0\u03ad\u03bd\u03c4\u03b5 \u03a0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1","owner":"AnaDigit","x":23.015087264286,"y":38.302826478278,"photo":"Elikon_Pente_Pigadia_11","type":0,"zoom_level":15,"id":3989,"hlink_GR":"","hlink_EN":"","description":"","height":776,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u039f\u03bc\u03b2\u03c1\u03bf\u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae \u03c3\u03c4\u03b7 \u0392\u03b1\u03b8\u03b5\u03b9\u03ac \u039b\u03ac\u03ba\u03ba\u03b1","owner":"AnaDigit","x":23.05006326984,"y":38.300519523535,"photo":"Elikon_Vathia_Laka1","type":1001,"zoom_level":15,"id":3990,"hlink_GR":"","hlink_EN":"","description":"","height":587,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u03a4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u039a\u03cc\u03c7\u03b7","owner":"AnaDigit","x":23.062236,"y":38.302635,"photo":"Elikon_Kochi1","type":0,"zoom_level":15,"id":3991,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03c0\u03b7\u03b3\u03ae \u03a7\u03b1\u03bb\u03af\u03ba\u03b9","owner":"AnaDigit","x":23.024058,"y":38.329548,"photo":"Elikon_Chaliki_spring1","type":1001,"zoom_level":15,"id":3992,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03c0\u03b7\u03b3\u03ae \u03c4\u03bf\u03c5 \u03a3\u03c5\u03bb\u03bb\u03cc\u03b3\u03bf\u03c5 \u0399\u03c0\u03c0\u03bf\u03ba\u03c1\u03ae\u03bd\u03b7","owner":"AnaDigit","x":23.017683,"y":38.332758,"photo":"Elikon_fountain_11","type":1001,"zoom_level":15,"id":3993,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03c0\u03b7\u03b3\u03ae \u039a\u03b5\u03c1\u03b1\u03c3\u03b9\u03ac","owner":"AnaDigit","x":22.98289,"y":38.32642,"photo":"Elikon_Kerasia_spring_21","type":1001,"zoom_level":15,"id":3994,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03c0\u03bf\u03c4\u03af\u03c3\u03c4\u03c1\u03b1 \u03c3\u03c4\u03bf\u03bd \u039a\u03ac\u03bd\u03c4\u03b1\u03bb\u03bf (\u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03bd\u03b5\u03c1\u03cc)","owner":"AnaDigit","x":22.996786,"y":38.332739,"photo":"Elikon_Kantalos_11","type":1001,"zoom_level":16,"id":3995,"hlink_GR":"","hlink_EN":"","description":"","height":627,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03a4\u03c3\u03ac\u03bc\u03b7","owner":"AnaDigit","x":22.989952,"y":38.276756,"photo":"Elikon_pigadi_Tsami_21","type":1001,"zoom_level":16,"id":3996,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u0392\u03bf\u03c1\u03cc\u03c2","owner":"AnaDigit","x":22.989831,"y":38.283301,"photo":"Elikon_pigadi_Voros1","type":1001,"zoom_level":16,"id":3997,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":642},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03ba\u03c1\u03ae\u03bd\u03b7 \u03a0\u03bf\u03c5\u03c1\u03bd\u03ac\u03c1\u03b1","owner":"AnaDigit","x":23.010257,"y":38.33197,"photo":"Elikon_Pournara_spring1","type":1001,"zoom_level":15,"id":3998,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03bc\u03bf\u03bd\u03ae \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1\u03c2 \u039c\u03b1\u03ba\u03b1\u03c1\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2","owner":"AnaDigit","x":22.9997,"y":38.293458,"photo":"Elikon_moni_Makariotisas_41","type":9,"zoom_level":14,"id":3999,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u0395\u03c5\u03b1\u03b3\u03b3\u03b5\u03bb\u03af\u03c3\u03c4\u03c1\u03b9\u03b1\u03c2","owner":"AnaDigit","x":23.011938,"y":38.342457,"photo":"Elikon_Evagelistria_AgGeorgios1","type":9,"zoom_level":15,"id":4000,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03b5\u03c1\u03b1\u03c6\u03b5\u03af\u03bc, \u03a3\u03c4\u03b7 \u03a1\u03b9\u03b3\u03b1\u03bd\u03b9\u03ac \u039a\u03bf\u03c1\u03ce\u03bd\u03b5\u03b9\u03b1\u03c2","owner":"AnaDigit","x":22.963192,"y":38.347775,"photo":"Elikon_Strigania_AgSerafim2","type":9,"zoom_level":15,"id":4001,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0391\u03bd\u03b5\u03b2\u03b1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u0399\u03c0\u03c0\u03bf\u03ba\u03c1\u03ae\u03bd\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ac","owner":"AnaDigit","x":23.05612764089,"y":38.311105213327,"photo":"Elikon_Zagaras_41","type":0,"zoom_level":16,"id":4002,"hlink_GR":"","hlink_EN":"","description":"","height":483,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u0395\u03bb\u03b9\u03ba\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.04905,"y":38.318196,"photo":"Elikon_simansi_11","type":450,"zoom_level":17,"id":4003,"hlink_GR":"","hlink_EN":"","description":"","height":787,"width":800},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u039a\u03b5\u03c1\u03b1\u03c3\u03b9\u03ac-\u039c\u03ac\u03bb\u03b9\u03b6\u03b1","owner":"AnaDigit","x":22.966103285625,"y":38.325628523369,"photo":"Elikon_Kerasia_to_Maliza1","type":0,"zoom_level":15,"id":4004,"hlink_GR":"","hlink_EN":"","description":"","height":591,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u039b\u03ac\u03ba\u03ba\u03b1 \u039a\u03b5\u03c1\u03b1\u03c3\u03b9\u03ac","owner":"AnaDigit","x":22.978077,"y":38.324433,"photo":"Elikon_lakka_Kerasia21","type":0,"zoom_level":14,"id":4005,"hlink_GR":"","hlink_EN":"","description":"","height":649,"width":1200},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03c9\u03bd \u039c\u03bf\u03c5\u03c3\u03ce\u03bd","owner":"AnaDigit","x":23.075034,"y":38.312027,"photo":"Elikon_Muses_valley_chu1","type":9,"zoom_level":15,"id":4006,"hlink_GR":"","hlink_EN":"","description":"","height":608,"width":1000},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03c9\u03bd \u039c\u03bf\u03c5\u03c3\u03ce\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u039a\u03cc\u03c7\u03b7","owner":"AnaDigit","x":23.069803664076,"y":38.323179363311,"photo":"Elikon_Zagaras_Muses_valley21","type":0,"zoom_level":14,"id":4007,"hlink_GR":"","hlink_EN":"","description":"","height":504,"width":1600},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03c9\u03bd \u039c\u03bf\u03c5\u03c3\u03ce\u03bd","owner":"AnaDigit","x":23.07078,"y":38.303673,"photo":"Elikon_Zagaras_Muses_valley31","type":0,"zoom_level":15,"id":4008,"hlink_GR":"","hlink_EN":"","description":"","height":531,"width":1600},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u0397 \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03c9\u03bd \u039c\u03bf\u03c5\u03c3\u03ce\u03bd","owner":"AnaDigit","x":23.024211,"y":38.332895,"photo":"Elikon_Zagaras31","type":0,"zoom_level":15,"id":4009,"hlink_GR":"","hlink_EN":"","description":"","height":570,"width":1400},{"name":"\u0395\u039b\u0399\u039a\u03a9\u039d\u0391\u03a3
\u03a4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03c4\u03b7\u03c2 \u03a1\u03b9\u03b3\u03b1\u03bd\u03b9\u03ac\u03c2","owner":"AnaDigit","x":22.964973719584,"y":38.34620720991,"photo":"Elikon_Zagaras41","type":0,"zoom_level":14,"id":4010,"hlink_GR":"","hlink_EN":"","description":"","height":443,"width":1600},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u039b\u03bf\u03c5\u03ba\u03af\u03c3\u03b8\u03b9","owner":"AnaDigit","x":23.305210088731,"y":38.191410074753,"photo":"Kitheronas_51","type":0,"zoom_level":15,"id":4023,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0395\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03ac\u03c3\u03b9","owner":"AnaDigit","x":23.276941,"y":38.170513,"photo":"Kitheronas_71","type":9,"zoom_level":17,"id":4024,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0395\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03ac\u03c3\u03b9","owner":"AnaDigit","x":23.333509,"y":38.179005,"photo":"Kitheronas_81","type":9,"zoom_level":15,"id":4025,"hlink_GR":"","hlink_EN":"","description":"","height":633,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0395\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03ac\u03c3\u03b9 \u03c3\u03c4\u03b7\u03bd \u039a\u03b9\u03ac\u03c6\u03b1 \u039c\u03bf\u03cd\u03b6\u03b1","owner":"AnaDigit","x":23.316994845615,"y":38.18721298111,"photo":"Kitheronas_91","type":9,"zoom_level":15,"id":4026,"hlink_GR":"","hlink_EN":"","description":"","height":681,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0395\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03ac\u03c3\u03b9","owner":"AnaDigit","x":23.284169,"y":38.166549,"photo":"Kitheronas_62","type":9,"zoom_level":16,"id":4027,"hlink_GR":"","hlink_EN":"","description":"","height":654,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae","owner":"AnaDigit","x":23.259155,"y":38.184216,"photo":"Kitheronas_crestline_11","type":0,"zoom_level":15,"id":4028,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae","owner":"AnaDigit","x":23.261587,"y":38.184238,"photo":"Kitheronas_crestline_41","type":0,"zoom_level":16,"id":4029,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":809},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae","owner":"AnaDigit","x":23.272139,"y":38.18177,"photo":"Kitheronas_crestline_31","type":0,"zoom_level":14,"id":4030,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a3\u03c4\u03b9\u03c2 \u03c0\u03b7\u03b3\u03ad\u03c2 \u03c4\u03b7\u03c2 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.329782,"y":38.179634,"photo":"Kitheronas_Goura_21","type":1001,"zoom_level":15,"id":4031,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03b4\u03bf\u03bb\u03af\u03bd\u03b7 \u039b\u03ac\u03ba\u03ba\u03b1-\u03b5-\u039c\u03c0\u03bf\u03cd\u03ba\u03bf\u03c5\u03c1","owner":"AnaDigit","x":23.307812,"y":38.183697,"photo":"Kitheronas_laka_boukour1","type":0,"zoom_level":15,"id":4032,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03b4\u03bf\u03bb\u03af\u03bd\u03b7 \u039b\u03ac\u03ba\u03ba\u03b1-\u03b5-\u039c\u03c0\u03bf\u03cd\u03ba\u03bf\u03c5\u03c1","owner":"AnaDigit","x":23.303057,"y":38.178318,"photo":"Kitheronas_old_road_23","type":0,"zoom_level":15,"id":4033,"hlink_GR":"","hlink_EN":"","description":"","height":659,"width":1400},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac \u03ba\u03c4\u03af\u03c3\u03bc\u03b1\u03c4\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae","owner":"AnaDigit","x":23.250093,"y":38.18399,"photo":"Kitheronas_summit1","type":9,"zoom_level":16,"id":4034,"hlink_GR":"","hlink_EN":"","description":"","height":640,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03bb\u03b5\u03bb\u03b5\u03b9\u03bc\u03ad\u03bd\u03b7 \u03c3\u03c4\u03ac\u03bd\u03b7 \u03c3\u03c4\u03b1 \u03a4\u03c3\u03af\u03c0\u03bf\u03c5\u03c1\u03b1","owner":"AnaDigit","x":23.252778,"y":38.173611,"photo":"Kitheronas_Tsipoura1","type":0,"zoom_level":15,"id":4035,"hlink_GR":"","hlink_EN":"","description":"","height":830,"width":1400},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c4\u03b7\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.151475,"y":38.22634,"photo":"Livadostra_11","type":0,"zoom_level":15,"id":4036,"hlink_GR":"","hlink_EN":"","description":"","height":633,"width":1200},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c4\u03b7\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.178543,"y":38.223678,"photo":"Livadostra_pano1","type":0,"zoom_level":14,"id":4037,"hlink_GR":"","hlink_EN":"","description":"","height":501,"width":1400},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c4\u03b7\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.135408,"y":38.2195,"photo":"Livadostra_21","type":0,"zoom_level":15,"id":4038,"hlink_GR":"","hlink_EN":"","description":"","height":666,"width":985},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0397 \u03c1\u03b5\u03bc\u03b1\u03c4\u03b9\u03ac \u03c4\u03b7\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.133896,"y":38.21986,"photo":"Livadostra_31","type":0,"zoom_level":16,"id":4039,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03c0\u03c5\u03c1\u03af\u03b4\u03c9\u03bd \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1\u03c2","owner":"AnaDigit","x":23.11728,"y":38.206686,"photo":"Livadostra_AgSpyridon1","type":9,"zoom_level":15,"id":4040,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03a0\u03bb\u03b1\u03c4\u03b1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":23.25267,"y":38.214106,"photo":"Kitheronas_agParaskevi1","type":9,"zoom_level":15,"id":4041,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0391\u03b3\u03af\u03b1 \u0392\u03b1\u03c1\u03b2\u03ac\u03c1\u03b1 \u03a0\u03bb\u03b1\u03c4\u03b1\u03b9\u03ce\u03bd","owner":"AnaDigit","x":23.238806,"y":38.216763,"photo":"Kitheronas_chu_11","type":9,"zoom_level":15,"id":4042,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0399\u03b4\u03b9\u03c9\u03c4\u03b9\u03ba\u03ae \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1","owner":"AnaDigit","x":23.19449,"y":38.214116,"photo":"Kitheronas_chu_21","type":9,"zoom_level":16,"id":4043,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u0393\u03ba\u03bf\u03cd\u03c1\u03b1\u03c2, \u0392\u03af\u03bb\u03b9\u03b1","owner":"AnaDigit","x":23.333325,"y":38.177688,"photo":"Kitheronas_Panagia_Gouras1","type":9,"zoom_level":15,"id":4044,"hlink_GR":"","hlink_EN":"","description":"","height":847,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a0\u03b1\u03bb\u03b9\u03ac \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae","owner":"AnaDigit","x":23.226303,"y":38.1929,"photo":"Kitheronas_old_wta1","type":1001,"zoom_level":16,"id":4045,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a0\u03bb\u03b1\u03c4\u03b1\u03b9\u03ad\u03c2","owner":"AnaDigit","x":23.267328378432,"y":38.212325977854,"photo":"Kitheronas_Platees1","type":9,"zoom_level":13,"id":4046,"hlink_GR":"","hlink_EN":"","description":"","height":590,"width":1200},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u039f\u03c1\u03b5\u03b9\u03b2\u03b1\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03c4\u03b1\u03c6\u03cd\u03b3\u03b9\u03bf \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.285553,"y":38.18339,"photo":"Kitheronas_refuge_11","type":447,"zoom_level":14,"id":4047,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.284508,"y":38.183328,"photo":"Kitheronas_simansi_11","type":450,"zoom_level":17,"id":4048,"hlink_GR":"","hlink_EN":"","description":"","height":837,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0391\u03b3\u03af\u03b1 \u03a3\u03c9\u03c4\u03ae\u03c1\u03b1","owner":"AnaDigit","x":23.178606,"y":38.219591,"photo":"Kitheronas_Sotira_11","type":9,"zoom_level":15,"id":4049,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b5\u03c2","owner":"AnaDigit","x":23.1802,"y":38.214785,"photo":"Kitheronas_taxiarches1","type":9,"zoom_level":15,"id":4050,"hlink_GR":"","hlink_EN":"","description":"","height":657,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03b1 \u0392\u03af\u03bb\u03b9\u03b1","owner":"AnaDigit","x":23.315553,"y":38.170386,"photo":"Kitheronas_Vilia_chu1","type":9,"zoom_level":16,"id":4051,"hlink_GR":"","hlink_EN":"","description":"","height":625,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a0\u03ac\u03c1\u03ba\u03bf \u03b1\u03bd\u03b5\u03bc\u03bf\u03b3\u03b5\u03bd\u03bd\u03b7\u03c4\u03c1\u03b9\u03ce\u03bd \u03c3\u03c4\u03bf\u03bd \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.216032745972,"y":38.191366608781,"photo":"Kitheronas_windfarm_11","type":9,"zoom_level":14,"id":4052,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u039c\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03b1\u03c2 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1\u03c2 \u03c3\u03c4\u03bf\u03bd \u039a\u03b9\u03b8\u03b1\u03b9\u03c1\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.235455691562,"y":38.204009202232,"photo":"Kitheronas_moni_AgTriada_11","type":9,"zoom_level":14,"id":4053,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
Cyclamen repandum","owner":"AnaDigit","x":23.319565,"y":38.194686,"photo":"Cyclamen repandum21","type":1,"zoom_level":15,"id":4054,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":664},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03b1\u03c0\u03cc \u0391\u03bb\u03c5\u03ba\u03ae \u03c0\u03c1\u03bf\u03c2 \u039b\u03b9\u03b2\u03b1\u03b4\u03cc\u03c3\u03c4\u03c1\u03b1, \u03b8\u03ad\u03c3\u03b7 \u039a\u03bf\u03c1\u03bf\u03bc\u03af\u03bb\u03b9","owner":"AnaDigit","x":23.091131,"y":38.192036,"photo":"kitheron_991","type":0,"zoom_level":15,"id":4055,"hlink_GR":"","hlink_EN":"","description":"","height":808,"width":1000},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf\u03c2","owner":"AnaDigit","x":23.140033423648,"y":38.178349558334,"photo":"agvasilios_3","type":9,"zoom_level":14,"id":4056,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":1069},{"name":"\u039a\u0399\u0398\u0391\u0399\u03a1\u03a9\u039d\u0391\u03a3
\u039c\u03b1\u03c5\u03c1\u03bf\u03c4\u03c3\u03b9\u03c1\u03bf\u03b2\u03ac\u03ba\u03bf\u03c2 (Sylvia melanocephala)","owner":"AnaDigit","x":23.131803,"y":38.168055,"photo":"Sylvia melanocephala31","type":2,"zoom_level":15,"id":4057,"hlink_GR":"","hlink_EN":"","description":"","height":723,"width":1000}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="
O22 Δρυός Κεφαλές-Σκούρτα
O22 Από τη Χούνη στο Μπάφι
O22 Σούρτα-κατ. Μπάφι
O22 Αγία Άννα-Άσκρη
Ο22 Αγία Άννα-Άσκρη
O22 Άσκρη-Ξηρονομή
O22 Δίστομο-Κυριάκι
O22 Ελικώνας-Αγία Άννα
O22 Κυριάκι-Ελικώνας
O22 Μ. Αγίου Νεκταρίου-καταφύγιο Κιθαιρώνα
O22 Λιβαδόστρα-Μ. Αγίου Νεκταρίου
O22 καταφύγιο Κιθαιρώνα-Δρυός Κεφαλές
O22 Βίλια-καταφύγιο Κιθαιρώνα
O22 Ξηρονομή-Λιβαδόστρα
O22 Μ. Ιερουσαλήμ-Ακρινό Νερό
O22 Αγόριανη-Πολύδροσος
O22 Πολύδροσο-κατ. Μ. Δέφνερ
O22 κατ. Μ. Δέφνερ-Ζεμενό
O22 Ζεμενό-Δίστομο
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["O22"],pc:["O22"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_O22.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); }