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_zakynthos = new getAdventureCollection("zakynthos",[{"id":16747,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1","description_GR":"","path":"ISLANDS\/Islands_Zakynthos_AgiaMarina_loop","activity_type":31,"assistance":2,"difficulty":1,"scenic_value":4,"length":1055,"name_EN":"Zakynthos: Loop trail around Aghia Marina","description_EN":"","ascent_time":20,"descent_time":20,"marker":"No_marks","level":13,"ascent":41,"descent":41,"maxelev":184,"minelev":138,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.77427 37.79145,20.77723 37.79453)","views":14,"millestones":"0,20.7744109,37.7913755#1.1,20.7744120,37.7913755","x":20.7757095,"y":37.7938347,"coor":[[20.7744109,37.7913755],[20.7746944,37.7916445],[20.7750065,37.7917792],[20.7753001,37.7920756],[20.7754041,37.7925312],[20.7753373,37.7928109],[20.7751977,37.7926269],[20.7750173,37.7925498],[20.7749688,37.7926206],[20.7750638,37.7927854],[20.7749101,37.7929253],[20.7749595,37.7933276],[20.7752183,37.793641],[20.7757095,37.7938347],[20.7758382,37.7940364],[20.7764649,37.794477],[20.776766,37.7946024],[20.7770382,37.7946098],[20.7771216,37.7939432],[20.7769207,37.7936043],[20.776893,37.7933265],[20.776081,37.7926556],[20.7754053,37.7925289],[20.7753012,37.7920756],[20.7750075,37.7917793],[20.7746955,37.7916446],[20.774412,37.7913755]]},{"id":16748,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf\u03c5\u03c2 \u0386\u03b3\u03b9\u03bf\u03c5\u03c2 \u03a0\u03ac\u03bd\u03c4\u03b5\u03c2","description_GR":"","path":"ISLANDS\/Islands_Zakynthos_AgiiPandes_loop","activity_type":31,"assistance":2,"difficulty":1,"scenic_value":4,"length":3279,"name_EN":"Zakynthos: Loop trail around Aghii Pandes","description_EN":"","ascent_time":55,"descent_time":55,"marker":"No_marks","level":13,"ascent":130,"descent":130,"maxelev":239,"minelev":115,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.77726 37.77568,20.78731 37.7839)","views":15,"millestones":"0,20.7850173,37.7808384#1,20.7782375,37.7821391#2,20.7833253,37.7768823#3,20.7861297,37.7789595#3.3,20.7850162,37.7808406","x":20.7808291,"y":37.778449,"coor":[[20.7850173,37.7808384],[20.7847515,37.7807388],[20.7839224,37.7804346],[20.7837336,37.7806006],[20.7836319,37.7805888],[20.7833848,37.7804514],[20.7830302,37.7801737],[20.7828155,37.7801498],[20.7827335,37.7802084],[20.7827242,37.7804243],[20.7826264,37.7805838],[20.7820447,37.7809103],[20.7816338,37.7812234],[20.7807682,37.7825962],[20.7797741,37.7835556],[20.7797334,37.7839689],[20.7795387,37.7837474],[20.7791387,37.7835472],[20.7790133,37.7832735],[20.7789637,37.78311],[20.7784279,37.7825322],[20.7781547,37.7819752],[20.7781019,37.7816223],[20.7778603,37.7814355],[20.7773742,37.7812871],[20.7775239,37.7812371],[20.7784407,37.7812983],[20.7785694,37.7812117],[20.7787406,37.7808988],[20.77953,37.7799744],[20.7795241,37.7798481],[20.7793826,37.7797091],[20.7793325,37.7795545],[20.7794087,37.7790048],[20.7802411,37.7783969],[20.7806688,37.7784806],[20.7808291,37.778449],[20.7810672,37.7781942],[20.7820977,37.7774656],[20.7824894,37.7770709],[20.7826641,37.7767062],[20.7831075,37.7766913],[20.7831615,37.7768324],[20.7833519,37.7768917],[20.7837162,37.7770751],[20.784201,37.777674],[20.7845884,37.7771169],[20.7848968,37.77681],[20.7851337,37.776321],[20.7852177,37.7759539],[20.7855434,37.7757736],[20.7856216,37.776064],[20.7859657,37.7760058],[20.786443,37.7757305],[20.7873114,37.7756799],[20.7872176,37.7757494],[20.7869733,37.7759342],[20.7865461,37.7761028],[20.7862447,37.776509],[20.7860051,37.777061],[20.7857878,37.7773614],[20.7857081,37.7778908],[20.7857355,37.778306],[20.7860178,37.778602],[20.7858849,37.7787876],[20.7860956,37.7789015],[20.7862117,37.7791028],[20.7862692,37.7793477],[20.7862071,37.7794721],[20.7857237,37.7797067],[20.7854634,37.7799518],[20.7852198,37.7800713],[20.7850162,37.7808406]]},{"id":16749,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039c\u03c0\u03cc\u03c7\u03b1\u03bb\u03b7, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 1","description_GR":"\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03a6\u03b9\u03bb\u03b9\u03ba\u03ce\u03bd-\u0395\u03bd\u03b5\u03c4\u03b9\u03ba\u03cc \u039a\u03ac\u03c3\u03c4\u03c1\u03bf","path":"ISLANDS\/Islands_Zakynthos_Bochali_1","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":631,"name_EN":"Zakynthos: Bochali, Trail 1","description_EN":"Aghios Georgios Filikon-Venetian castle","ascent_time":15,"descent_time":10,"marker":"No_marks","level":9,"ascent":90,"descent":0,"maxelev":136,"minelev":42,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.89254 37.78961,20.89704 37.79272)","views":19,"millestones":"0,20.8964968,37.7928265#0.6,20.8926785,37.7894980","x":20.8951905,"y":37.7911591,"coor":[[20.8964968,37.7928265],[20.8968279,37.7927812],[20.8969164,37.7925673],[20.8966839,37.7923697],[20.896474,37.7919587],[20.8956571,37.7916759],[20.8956071,37.7912421],[20.8954793,37.7910405],[20.8951905,37.7911591],[20.894731,37.7906109],[20.8943622,37.7904705],[20.8941031,37.7902361],[20.893843,37.789941],[20.8937964,37.7899127],[20.8931636,37.7895717],[20.8930211,37.7895048],[20.8926785,37.789498]]},{"id":16750,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039c\u03c0\u03cc\u03c7\u03b1\u03bb\u03b7, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 2","description_GR":"\u0395\u03bd\u03b5\u03c4\u03b9\u03ba\u03cc \u039a\u03ac\u03c3\u03c4\u03c1\u03bf","path":"ISLANDS\/Islands_Zakynthos_Bochali_2","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":5,"length":1490,"name_EN":"Zakynthos: Bochali, Trail 2","description_EN":"Venetian castle","ascent_time":30,"descent_time":25,"marker":"No_marks","level":9,"ascent":59,"descent":59,"maxelev":188,"minelev":127,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.88905 37.78645,20.89281 37.79005)","views":15,"millestones":"0,20.8926778,37.7894980#1,20.8893646,37.7886034#1.5,20.8926788,37.7894980","x":20.8903693,"y":37.7870404,"coor":[[20.8926778,37.789498],[20.8923562,37.7895301],[20.8921347,37.7896684],[20.892242,37.7892748],[20.8918977,37.7893648],[20.8920681,37.7890652],[20.8918399,37.7890119],[20.8915223,37.7887332],[20.8910434,37.7885133],[20.8909466,37.7883846],[20.8909153,37.787913],[20.8910007,37.7877711],[20.8903693,37.7870404],[20.8896802,37.786369],[20.8894843,37.7864359],[20.8894617,37.7867056],[20.8894843,37.7864359],[20.8896802,37.786369],[20.8903693,37.7870404],[20.8895328,37.7874463],[20.8894572,37.7876245],[20.8895169,37.7878243],[20.8891351,37.7880214],[20.8891158,37.7884804],[20.8893827,37.7886136],[20.8893695,37.7889016],[20.8898336,37.7895828],[20.8902367,37.7899066],[20.8904596,37.7900859],[20.8909442,37.7899005],[20.8913185,37.7896401],[20.8918989,37.7893648],[20.8922433,37.7892748],[20.8921359,37.7896684],[20.8923575,37.7895301],[20.8926788,37.789498]]},{"id":16751,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039c\u03c0\u03cc\u03c7\u03b1\u03bb\u03b7, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 3","description_GR":"\u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u03c0\u03cc\u03bb\u03b7\u03c2-\u0395\u03bd\u03b5\u03c4\u03b9\u03ba\u03cc \u039a\u03ac\u03c3\u03c4\u03c1\u03bf","path":"ISLANDS\/Islands_Zakynthos_Bochali_3","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":1006,"name_EN":"Zakynthos: Bochali, Trail 3","description_EN":"Town of Zakynthos-Venetian castle","ascent_time":15,"descent_time":20,"marker":"No_marks","level":9,"ascent":0,"descent":124,"maxelev":136,"minelev":8,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.89268 37.78593,20.89749 37.78956)","views":22,"millestones":"0,20.8926778,37.7894980#1,20.8974224,37.7874315","x":20.8939587,"y":37.7858873,"coor":[[20.8926778,37.789498],[20.8930204,37.7895048],[20.8931629,37.7895716],[20.8932143,37.7894829],[20.8933295,37.789308],[20.8933627,37.7890566],[20.8934303,37.7885538],[20.8934546,37.7882999],[20.8930916,37.7874795],[20.8929555,37.7862573],[20.8931029,37.7859909],[20.8932786,37.7858604],[20.89353,37.785822],[20.8939587,37.7858873],[20.8942785,37.786112],[20.8946758,37.7866541],[20.8950236,37.7867533],[20.8951034,37.7863951],[20.8951937,37.7864064],[20.8953832,37.7865961],[20.8956036,37.7870254],[20.8958857,37.7870982],[20.8959011,37.7871617],[20.8965181,37.7876104],[20.8968998,37.7875506],[20.8974224,37.7874315]]},{"id":16752,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039c\u03c0\u03cc\u03c7\u03b1\u03bb\u03b7, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 4","description_GR":"\u0395\u03bd\u03b5\u03c4\u03b9\u03ba\u03cc \u039a\u03ac\u03c3\u03c4\u03c1\u03bf-\u039b\u03cc\u03c6\u03bf\u03c2 \u03a3\u03c4\u03c1\u03ac\u03bd\u03b7","path":"ISLANDS\/Islands_Zakynthos_Bochali_4","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":5,"length":1186,"name_EN":"Zakynthos: Bochali, Trail 4","description_EN":"Venetian castle-Strani Hill","ascent_time":20,"descent_time":20,"marker":"No_marks","level":9,"ascent":7,"descent":61,"maxelev":136,"minelev":78,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.89013 37.78953,20.89386 37.79687)","views":16,"millestones":"0,20.8926778,37.7894980#1.2,20.8901307,37.7968729","x":20.8922058,"y":37.7920083,"coor":[[20.8926778,37.789498],[20.8930204,37.7895048],[20.8931629,37.7895716],[20.8937957,37.7899127],[20.8938422,37.7899409],[20.8934177,37.7901527],[20.8934036,37.7903281],[20.8933545,37.7903358],[20.8933704,37.7904984],[20.8931859,37.7906737],[20.8929565,37.7908929],[20.8928159,37.7909973],[20.8926572,37.7915337],[20.8923752,37.7917605],[20.8922058,37.7920083],[20.8921514,37.7920339],[20.892052,37.7921034],[20.8910154,37.7927247],[20.8908374,37.7929092],[20.8906715,37.7936166],[20.8907472,37.7943281],[20.8908614,37.795124],[20.8910489,37.7955254],[20.8911053,37.7958602],[20.8918442,37.7958144],[20.8916813,37.7964498],[20.8914228,37.7965736],[20.8908645,37.7967031],[20.8901307,37.7968729]]},{"id":16753,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039c\u03c0\u03cc\u03c7\u03b1\u03bb\u03b7, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 5","description_GR":"\u039b\u03cc\u03c6\u03bf\u03c2 \u03a3\u03c4\u03c1\u03ac\u03bd\u03b7-\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03a6\u03b9\u03bb\u03b9\u03ba\u03ce\u03bd","path":"ISLANDS\/Islands_Zakynthos_Bochali_5","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":3,"length":832,"name_EN":"Zakynthos: Bochali, Trail 5","description_EN":"Strani Hill-Aghios Georgios Filikon","ascent_time":15,"descent_time":15,"marker":"No_marks","level":13,"ascent":37,"descent":3,"maxelev":82,"minelev":41,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.89013 37.79278,20.89683 37.79687)","views":14,"millestones":"0,20.8964968,37.7928265#0.8,20.8901292,37.7968706","x":20.8934561,"y":37.7953232,"coor":[[20.8964968,37.7928265],[20.8968279,37.7927812],[20.8962357,37.7934774],[20.8954113,37.7941854],[20.8952382,37.7942529],[20.8947388,37.7942488],[20.8940746,37.7946547],[20.8938281,37.7948464],[20.8934561,37.7953232],[20.8932452,37.7954798],[20.8929103,37.7956151],[20.8921597,37.7957777],[20.8918427,37.7958121],[20.8916798,37.7964475],[20.8914213,37.7965714],[20.890863,37.7967008],[20.8901292,37.7968706]]},{"id":16754,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039c\u03c0\u03cc\u03c7\u03b1\u03bb\u03b7, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 5a","description_GR":"\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u03a6\u03b9\u03bb\u03b9\u03ba\u03ce\u03bd-\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03cc \u039d\u03b5\u03ba\u03c1\u03bf\u03c4\u03b1\u03c6\u03b5\u03af\u03bf","path":"ISLANDS\/Islands_Zakynthos_Bochali_5a","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":507,"name_EN":"Zakynthos: Bochali, Trail 5a","description_EN":"Aghios Georgios Filikon-English cemetery","ascent_time":10,"descent_time":10,"marker":"No_marks","level":13,"ascent":4,"descent":34,"maxelev":43,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.89623 37.79298,20.8989 37.79368)","views":14,"millestones":"0,20.8962357,37.7934774#0.5,20.8977287,37.7937195","x":20.8979439,"y":37.7930043,"coor":[[20.8962357,37.7934774],[20.8968504,37.7932481],[20.8968244,37.7933285],[20.8964082,37.7935067],[20.8970149,37.7933876],[20.8973514,37.7934865],[20.8977714,37.7932183],[20.8979439,37.7930043],[20.8981424,37.7931447],[20.8988984,37.7929844],[20.8987979,37.793162],[20.8985184,37.7932988],[20.8981525,37.7933612],[20.8977287,37.7937195]]},{"id":16755,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03b5\u03c1\u03af-\u03a6\u03ac\u03c1\u03bf\u03c2 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","description_GR":"\u039c\u03b9\u03ba\u03c1\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u03c6\u03ac\u03c1\u03bf","path":"ISLANDS\/Islands_Zakynthos_Keri_Faros","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1722,"name_EN":"Zakynthos: Keri-Keri Lighthouse","description_EN":"A short trail to the lighthouse","ascent_time":40,"descent_time":40,"marker":"No_marks","level":13,"ascent":92,"descent":110,"maxelev":247,"minelev":139,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.80734 37.65481,20.81672 37.66089)","views":39,"millestones":"0,20.8159452,37.6611262#1,20.8116596,37.6560537#1.7,20.8075924,37.6551249","x":20.8129441,"y":37.6558554,"coor":[[20.8159452,37.6611262],[20.8158961,37.661028],[20.8160381,37.660917],[20.8160546,37.6608994],[20.8163113,37.6606248],[20.8164774,37.660449],[20.8162205,37.6603317],[20.8160997,37.6602429],[20.8160062,37.660175],[20.8158461,37.6599725],[20.8158024,37.6598564],[20.8150457,37.6595297],[20.8149922,37.6594561],[20.8150413,37.6593674],[20.8150965,37.6593486],[20.8155745,37.6585056],[20.8156129,37.6581372],[20.8154933,37.6577555],[20.8156203,37.6572229],[20.8154086,37.6570572],[20.815067,37.6570931],[20.8147973,37.6570407],[20.8146344,37.6568742],[20.8145706,37.656512],[20.8144608,37.656428],[20.8142329,37.6564579],[20.8138527,37.6563395],[20.8139899,37.6560458],[20.8134918,37.6560324],[20.8129441,37.6558554],[20.8124769,37.6559148],[20.812372,37.6559841],[20.8118052,37.6559868],[20.8112851,37.656225],[20.8111402,37.656167],[20.8110341,37.6562632],[20.8109119,37.6562059],[20.8109091,37.6560076],[20.8106689,37.6557938],[20.8105009,37.655483],[20.8102341,37.6556807],[20.8101306,37.6550292],[20.8100142,37.6548368],[20.8097736,37.6546321],[20.8095589,37.6546173],[20.8093615,37.6547291],[20.8089714,37.6551059],[20.8088318,37.6554535],[20.8089268,37.6556183],[20.809255,37.6556272],[20.8092871,37.6556731],[20.8092176,37.6557073],[20.8088673,37.6557383],[20.8087103,37.655698],[20.8085565,37.6555024],[20.8084416,37.6553574],[20.8081773,37.655179],[20.8080335,37.6551459],[20.8075924,37.6551249]]},{"id":16756,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03b5\u03c1\u03af-\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","description_GR":"\u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bd\u03cc\u03c4\u03b9\u03bf\u03c5 \u03ac\u03ba\u03c1\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03bd\u03b7\u03c3\u03b9\u03bf\u03cd","path":"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":9558,"name_EN":"Zakynthos: Keri-Keri Beach","description_EN":"Crossing the southernmost end of Zakynthos","ascent_time":175,"descent_time":180,"marker":"No_marks","level":13,"ascent":303,"descent":509,"maxelev":381,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.81399 37.65625,20.85401 37.68283)","views":49,"millestones":"0,20.8159452,37.6611262#1,20.8193524,37.6555576#2,20.8265911,37.6565902#3,20.8305858,37.6606733#4,20.8402450,37.6601471#5,20.8474426,37.6602406#6,20.8527368,37.6634241#7,20.8487562,37.6685230#8,20.8452978,37.6757254#9,20.8368141,37.6792822#9.6,20.8358591,37.6834236","x":20.8432994,"y":37.6588032,"coor":[[20.8159452,37.6611262],[20.8158961,37.661028],[20.8160381,37.660917],[20.8160546,37.6608994],[20.8163195,37.6606182],[20.8164774,37.660449],[20.8162205,37.6603317],[20.8161293,37.6602662],[20.8160062,37.660175],[20.8158461,37.6599725],[20.8158024,37.6598564],[20.8150457,37.6595297],[20.8149922,37.6594561],[20.8150413,37.6593674],[20.8150965,37.6593486],[20.8155745,37.6585056],[20.8156129,37.6581372],[20.8154933,37.6577555],[20.8156203,37.6572229],[20.8160639,37.6569195],[20.8161611,37.6562374],[20.8171316,37.6558041],[20.8172923,37.6557544],[20.8175636,37.6557707],[20.8182629,37.656114],[20.8187514,37.6558208],[20.819066,37.6558834],[20.8193757,37.6555314],[20.819917,37.6553297],[20.8201078,37.6553709],[20.8205128,37.655731],[20.8205814,37.6556382],[20.8208328,37.6555909],[20.8209358,37.6554045],[20.8212484,37.6556224],[20.8217227,37.6556622],[20.8227752,37.6554293],[20.8230845,37.6556719],[20.8233316,37.6555119],[20.8239204,37.6558386],[20.8241211,37.6564477],[20.824275,37.65656],[20.8246119,37.6567402],[20.8246683,37.657012],[20.8246098,37.6576119],[20.8247672,37.6575621],[20.8247824,37.6574724],[20.824922,37.657386],[20.8250665,37.657453],[20.825342,37.6573703],[20.8254702,37.657554],[20.8255857,37.657503],[20.825545,37.6573938],[20.8255933,37.657323],[20.8257827,37.6574002],[20.8259193,37.6573859],[20.8261292,37.6572474],[20.8262309,37.6569888],[20.8264928,37.6569598],[20.8265932,37.6565729],[20.8266291,37.6563666],[20.8267812,37.6562536],[20.8269725,37.6557542],[20.8272906,37.6559519],[20.8276052,37.6560145],[20.8276448,37.6561507],[20.8277338,37.6561891],[20.8277177,37.6560355],[20.8279916,37.6559888],[20.8280693,37.6560269],[20.828096,37.6561989],[20.8282892,37.656186],[20.8284423,37.6563163],[20.8286781,37.6563677],[20.8285295,37.6560236],[20.8286247,37.655918],[20.8289034,37.6560246],[20.8294367,37.6565435],[20.8301141,37.6568681],[20.8302673,37.6570772],[20.8305629,37.6573194],[20.8306065,37.6574399],[20.830552,37.6576547],[20.8301595,37.6583559],[20.8300528,37.6590536],[20.8300306,37.6595755],[20.8305869,37.6606176],[20.8305808,37.6611603],[20.8304615,37.6613013],[20.8311682,37.6614734],[20.8317367,37.6616959],[20.8328147,37.6619321],[20.8333261,37.6620315],[20.8338129,37.6620446],[20.8349198,37.6618671],[20.8354407,37.661854],[20.8356275,37.661859],[20.8364234,37.6616642],[20.8371459,37.661197],[20.8384486,37.6607838],[20.8388486,37.6607044],[20.8395794,37.6603095],[20.8405473,37.6600674],[20.8409817,37.6600881],[20.8415732,37.6605725],[20.8416449,37.6604843],[20.8415744,37.6602752],[20.8417694,37.6596857],[20.8422267,37.6590583],[20.8424358,37.6589378],[20.8428811,37.6588596],[20.8428951,37.6587969],[20.8432994,37.6588032],[20.8437626,37.6585724],[20.8444825,37.6586998],[20.8450108,37.6585337],[20.8447548,37.6589593],[20.8447502,37.6590673],[20.8450268,37.6592279],[20.8454388,37.65932],[20.8455594,37.6593323],[20.8459888,37.6593618],[20.8468443,37.6592315],[20.8471492,37.6592577],[20.8472224,37.6594038],[20.8471229,37.6598787],[20.8474692,37.6602663],[20.8474939,37.6607535],[20.847747,37.6609315],[20.8485341,37.6609998],[20.8488297,37.6617826],[20.8491186,37.6621868],[20.8491879,37.6624229],[20.8491086,37.662691],[20.8488034,37.6628608],[20.8493527,37.6628147],[20.8495308,37.6627564],[20.8498011,37.6625294],[20.8498156,37.6621874],[20.8497485,37.6618973],[20.8499101,37.6615592],[20.8506838,37.6614898],[20.8513812,37.6613462],[20.8515464,37.6618912],[20.8516976,37.6620665],[20.851941,37.6622081],[20.852317,37.662966],[20.8528811,37.6635892],[20.8528345,37.6638853],[20.8525484,37.66422],[20.8526019,37.6642936],[20.8528382,37.6643359],[20.8528728,37.6644292],[20.8529468,37.6647397],[20.8532676,37.6648767],[20.8535525,37.6651096],[20.8536211,37.6653637],[20.8532911,37.6655531],[20.8530231,37.6657261],[20.8532144,37.6659722],[20.8535251,37.6662936],[20.853485,37.6664367],[20.8531499,37.6665899],[20.8530509,37.6667855],[20.8529019,37.6668266],[20.8525977,37.6667824],[20.8518857,37.6664661],[20.8517053,37.666468],[20.8512914,37.6671417],[20.8511152,37.6672902],[20.8496854,37.6678646],[20.8492679,37.6680877],[20.8486437,37.6683503],[20.8486176,37.6684307],[20.8493673,37.6689283],[20.849593,37.6689524],[20.8496921,37.6692884],[20.8495357,37.6695027],[20.8487993,37.6697623],[20.8481288,37.670339],[20.8476105,37.6706923],[20.8474662,37.6708867],[20.8474503,37.6710754],[20.8475131,37.6714645],[20.8477507,37.6720115],[20.8476379,37.6722405],[20.8472897,37.6726997],[20.8471642,37.6730928],[20.8470697,37.6734506],[20.8462208,37.6746532],[20.8458326,37.6752555],[20.8455272,37.6755312],[20.8453162,37.6756967],[20.8451095,37.6760245],[20.8449731,37.6765705],[20.8446351,37.6767867],[20.8441074,37.676964],[20.8438723,37.6772415],[20.8437121,37.6775436],[20.8432696,37.67782],[20.8432392,37.6782697],[20.8430414,37.6783905],[20.8428731,37.67835],[20.8425868,37.6781216],[20.8422619,37.6780048],[20.8419226,37.6779867],[20.8415367,37.6783187],[20.84101,37.67871],[20.840831,37.6789214],[20.8406928,37.6789718],[20.8390788,37.6790727],[20.8378789,37.6790315],[20.8370288,37.679297],[20.8366965,37.6792723],[20.8364896,37.6793388],[20.8364167,37.679454],[20.8364545,37.6798965],[20.836307,37.6804331],[20.8363618,37.68109],[20.8361456,37.6816428],[20.836134,37.6821831],[20.836033,37.6824237],[20.8359626,37.6825885],[20.8358862,37.6831856],[20.8358591,37.6834236]]},{"id":16757,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03b5\u03c1\u03af-\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","description_GR":"\u0394\u03b1\u03c3\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039a\u03b5\u03c1\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c4\u03bf \u039a\u03b5\u03c1\u03af","path":"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":3990,"name_EN":"Zakynthos: Keri-Keri Beach","description_EN":"A quiet forest road between Paralia Keriou and Keri","ascent_time":65,"descent_time":75,"marker":"No_marks","level":13,"ascent":51,"descent":253,"maxelev":218,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.81404 37.66171,20.83751 37.68283)","views":23,"millestones":"0,20.8159452,37.6611262#1,20.8169956,37.6683429#2,20.8219013,37.6752981#3,20.8321173,37.6788085#4.0,20.8358625,37.6834237","x":20.8194226,"y":37.6729261,"coor":[[20.8159452,37.6611262],[20.8157673,37.6613106],[20.8155664,37.6614786],[20.8156199,37.6615228],[20.815456,37.6616468],[20.8154151,37.6618079],[20.8149274,37.6619771],[20.8149583,37.66205],[20.8154854,37.6621814],[20.8155236,37.6628492],[20.8153458,37.6632949],[20.81544,37.6634776],[20.816064,37.663517],[20.8164343,37.6638694],[20.8164902,37.6640195],[20.8162325,37.6644811],[20.8161367,37.6648659],[20.8165087,37.6654436],[20.8165217,37.6655903],[20.8164989,37.665646],[20.81641,37.6658419],[20.8162923,37.6662081],[20.8160852,37.6665449],[20.8163705,37.667163],[20.8167316,37.6677313],[20.8170514,37.6679382],[20.8170194,37.6679756],[20.8169982,37.6683625],[20.8166759,37.6692728],[20.8165134,37.6696288],[20.8162754,37.6698926],[20.8164292,37.6705365],[20.8165242,37.6706472],[20.8178021,37.6718552],[20.8183574,37.6721225],[20.8190291,37.6723208],[20.8191607,37.6724235],[20.8194226,37.6729261],[20.8202274,37.6737227],[20.8206426,37.6746168],[20.8209049,37.6747951],[20.8215509,37.6750648],[20.8221461,37.6754593],[20.8227471,37.6756376],[20.8229945,37.6757141],[20.8238154,37.6761327],[20.8245522,37.6766661],[20.8251517,37.6769616],[20.8258687,37.6771611],[20.8267797,37.6773298],[20.8283555,37.6778587],[20.828677,37.6780296],[20.8290815,37.6781125],[20.8299364,37.6782392],[20.8304333,37.6785499],[20.8327978,37.6789288],[20.834157,37.6789563],[20.8357574,37.6786952],[20.8366527,37.6787012],[20.836778,37.6787654],[20.8367855,37.6788557],[20.8365592,37.6792213],[20.8366998,37.6792724],[20.8364929,37.6793389],[20.83642,37.6794541],[20.8364579,37.6798966],[20.8363104,37.6804332],[20.8363654,37.6810901],[20.8361491,37.6816429],[20.8361375,37.6821832],[20.8360366,37.6824238],[20.835966,37.6825886],[20.8358896,37.6831857],[20.8358625,37.6834237]]},{"id":16758,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u03a0\u03b5\u03c1\u03af\u03c0\u03b1\u03c4\u03bf\u03b9 \u03c3\u03c4\u03b7 \u039b\u03bf\u03cd\u03c7\u03b1, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 1","description_GR":"","path":"ISLANDS\/Islands_Zakynthos_Loucha_1","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":583,"name_EN":"Zakynthos: Walking in Loucha, Route 1","description_EN":"","ascent_time":10,"descent_time":10,"marker":"Red_dots","level":13,"ascent":25,"descent":18,"maxelev":525,"minelev":494,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.71957 37.79269,20.72551 37.79382)","views":11,"millestones":"0,20.7254499,37.7939855#0.6,20.7196243,37.7925259","x":20.722949,"y":37.7929,"coor":[[20.7254499,37.7939855],[20.7248836,37.7939021],[20.7244279,37.7938602],[20.7242895,37.7939104],[20.7240298,37.7938761],[20.7238393,37.7935645],[20.7232981,37.7929638],[20.722949,37.7929],[20.7226265,37.7927469],[20.7222857,37.7927239],[20.7215848,37.7926075],[20.7206992,37.7926099],[20.7200326,37.7925373],[20.7197248,37.7925647],[20.7196243,37.7925259]]},{"id":16759,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u03a0\u03b5\u03c1\u03af\u03c0\u03b1\u03c4\u03bf\u03b9 \u03c3\u03c4\u03b7 \u039b\u03bf\u03cd\u03c7\u03b1, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 2","description_GR":"","path":"ISLANDS\/Islands_Zakynthos_Loucha_2","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":539,"name_EN":"Zakynthos: Walking in Loucha, Route 2","description_EN":"","ascent_time":10,"descent_time":10,"marker":"Red_dots","level":13,"ascent":20,"descent":0,"maxelev":521,"minelev":494,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.72233 37.79065,20.7256 37.7939)","views":13,"millestones":"0,20.7254499,37.7939855#0.5,20.7224758,37.7905602","x":20.7240123,"y":37.7915489,"coor":[[20.7254499,37.7939855],[20.7248836,37.7939021],[20.7244279,37.7938602],[20.7242974,37.7937304],[20.7242292,37.7934763],[20.7240296,37.7916215],[20.7240123,37.7915489],[20.7235603,37.7915003],[20.7233832,37.7913963],[20.7231421,37.7912004],[20.7229629,37.7908891],[20.7224758,37.7905602]]},{"id":16760,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u03a0\u03b5\u03c1\u03af\u03c0\u03b1\u03c4\u03bf\u03b9 \u03c3\u03c4\u03b7 \u039b\u03bf\u03cd\u03c7\u03b1, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 3","description_GR":"","path":"ISLANDS\/Islands_Zakynthos_Loucha_3","activity_type":31,"assistance":2,"difficulty":1,"scenic_value":4,"length":1220,"name_EN":"Zakynthos: Walking in Loucha, Route 3","description_EN":"","ascent_time":25,"descent_time":20,"marker":"Red_dots","level":13,"ascent":38,"descent":38,"maxelev":508,"minelev":475,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.72391 37.79053,20.72712 37.79394)","views":12,"millestones":"0,20.7254499,37.7939855#1.2,20.7254509,37.7939855","x":20.7246773,"y":37.7905291,"coor":[[20.7254499,37.7939855],[20.7263078,37.7932503],[20.7270164,37.7929096],[20.7267084,37.7928673],[20.7261774,37.7922939],[20.7257246,37.7919547],[20.7254873,37.7919301],[20.7253069,37.7918485],[20.725253,37.7917839],[20.7252998,37.7914969],[20.7250031,37.7912724],[20.7254396,37.7906449],[20.7252357,37.7904816],[20.7249924,37.7905919],[20.7246773,37.7905291],[20.7241154,37.7912973],[20.7240136,37.7915467],[20.7240307,37.7916215],[20.7247488,37.7918127],[20.7251124,37.7921674],[20.7256483,37.7928062],[20.7256867,37.7932217],[20.7255548,37.7933803],[20.7253593,37.7934379],[20.7246911,37.7934013],[20.7246843,37.7935542],[20.7248846,37.7939022],[20.7254509,37.7939855]]},{"id":16761,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u03a0\u03b5\u03c1\u03af\u03c0\u03b1\u03c4\u03bf\u03b9 \u03c3\u03c4\u03b7 \u039b\u03bf\u03cd\u03c7\u03b1, \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 4","description_GR":"","path":"ISLANDS\/Islands_Zakynthos_Loucha_4","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":722,"name_EN":"Zakynthos: Walking in Loucha, Route 4","description_EN":"","ascent_time":15,"descent_time":15,"marker":"Red_dots","level":13,"ascent":0,"descent":35,"maxelev":494,"minelev":450,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.72545 37.78889,20.73001 37.79398)","views":5,"millestones":"0,20.7254499,37.7939855#0.7,20.7300071,37.7888889","x":20.7290053,"y":37.790958,"coor":[[20.7254499,37.7939855],[20.7263078,37.7932503],[20.7270117,37.7929117],[20.7276636,37.7922902],[20.7283537,37.7918319],[20.7288408,37.7913409],[20.7290053,37.790958],[20.7290007,37.7908048],[20.729203,37.7905941],[20.7294837,37.7901515],[20.7295596,37.7894598],[20.7300071,37.7888889]]},{"id":16762,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u0391\u03b3\u03b1\u03bb\u03ac\u03c2-\u03b1\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03b9-\u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u0394\u03b1\u03bc\u03b9\u03b1\u03bd\u03bf\u03cd","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b1\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ac","path":"ISLANDS\/Islands_Zakynthos_NatPro_DamianosCave","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":1483,"name_EN":"Zakynthos: Agalas-Windmills-Damianos cave","description_EN":"A short trail to the windmills and the cave","ascent_time":30,"descent_time":25,"marker":"No_marks","level":13,"ascent":56,"descent":57,"maxelev":328,"minelev":267,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.76964 37.70571,20.77706 37.70805)","views":39,"millestones":"0,20.7769878,37.7072915#1,20.7705581,37.7071497#1.5,20.7720839,37.7056278","x":20.7696768,"y":37.707758,"coor":[[20.7769878,37.7072915],[20.7764543,37.7075112],[20.7759727,37.7077413],[20.7747623,37.7079041],[20.7744291,37.7080031],[20.7743908,37.7078399],[20.7746103,37.7077468],[20.7745732,37.7075565],[20.7748284,37.7074532],[20.7745804,37.7074193],[20.7742343,37.7068738],[20.7732934,37.7071273],[20.7729458,37.7075593],[20.7727485,37.707662],[20.7721603,37.7076278],[20.7715455,37.7076831],[20.7696809,37.7080554],[20.7696411,37.7080093],[20.7696768,37.707758],[20.7700197,37.707434],[20.7703373,37.7072242],[20.7719024,37.7066995],[20.7723922,37.7063886],[20.772526,37.7062076],[20.7726619,37.7062113],[20.7729154,37.7063804],[20.7731193,37.706386],[20.7732967,37.7063481],[20.7730725,37.7062879],[20.7730326,37.7062395],[20.7733178,37.7062022],[20.7730268,37.7061132],[20.7726085,37.7058224],[20.7722409,37.7056682],[20.7721882,37.7055766],[20.7720839,37.7056278]]},{"id":16763,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039b\u03af\u03bc\u03bd\u03b7 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03c0\u03b5\u03c1\u03b9\u03b2\u03b1\u03bb\u03bb\u03bf\u03bd\u03c4\u03b9\u03ba\u03cc \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd","path":"ISLANDS\/Islands_Zakynthos_NatPro_LimniKeriou_Marathias","activity_type":31,"assistance":2,"difficulty":1,"scenic_value":4,"length":2296,"name_EN":"Zakynthos: Keri Lake","description_EN":"A hike focused on nature observation","ascent_time":40,"descent_time":40,"marker":"No_marks","level":13,"ascent":24,"descent":24,"maxelev":21,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.82626 37.68327,20.83655 37.68755)","views":52,"millestones":"0,20.8358645,37.6834260#1,20.8288830,37.6876022#2,20.8325927,37.6831904#2.3,20.8358634,37.6834260","x":20.8276711,"y":37.6866272,"coor":[[20.8358645,37.683426],[20.8358685,37.6836536],[20.8360159,37.6849302],[20.8362787,37.6857121],[20.8364371,37.6859574],[20.8355868,37.6862229],[20.8346255,37.6867016],[20.8339021,37.6869164],[20.8334593,37.6869315],[20.8326372,37.6868013],[20.8317786,37.686785],[20.8315517,37.6867879],[20.8308087,37.6869301],[20.829751,37.6873048],[20.8291158,37.687576],[20.8288082,37.6876128],[20.8286625,37.6875728],[20.8276711,37.6866272],[20.8267736,37.6864048],[20.8264396,37.6862606],[20.8263323,37.6858523],[20.8264281,37.6854675],[20.8266306,37.6852387],[20.8269745,37.6851488],[20.8279808,37.6852119],[20.8287495,37.6849984],[20.8295731,37.684561],[20.8304354,37.6842779],[20.8308331,37.6839913],[20.8313566,37.6834107],[20.8319909,37.6831575],[20.8324656,37.6831635],[20.8335137,37.6833876],[20.8352373,37.6835668],[20.8358634,37.683426]]},{"id":16764,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u0392\u03bf\u03bb\u03af\u03bc\u03b1 - \u03bc\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03bd\u03b4\u03c1\u03ad\u03b1","description_GR":"\u039f \u03c0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03ad\u03c1\u03b7\u03bc\u03b7 \u03bc\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03bd\u03b4\u03c1\u03ad\u03b1","path":"ISLANDS\/Islands_Zakynthos_northern_AgAndreas","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2624,"name_EN":"Zakynthos: Volima-Aghios Andreas mon.","description_EN":"The old road to the monastery of Aghios Andreas","ascent_time":55,"descent_time":60,"marker":"No_marks","level":13,"ascent":29,"descent":157,"maxelev":429,"minelev":299,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.6397 37.87551,20.65588 37.88457)","views":28,"millestones":"0,20.6558703,37.8757410#1,20.6466503,37.8783212#2,20.6427124,37.8796770#2.6,20.6419465,37.8846328","x":20.6458988,"y":37.8785247,"coor":[[20.6558703,37.875741],[20.6554973,37.8756944],[20.6551868,37.8755234],[20.6548252,37.8754771],[20.6545889,37.875601],[20.6545408,37.8756311],[20.6543064,37.8757146],[20.6541466,37.875728],[20.6538988,37.875703],[20.65346,37.8758076],[20.6530547,37.8760213],[20.6528025,37.8760682],[20.6526763,37.8761457],[20.6524076,37.8760029],[20.6522288,37.8760383],[20.6515802,37.8760559],[20.6510061,37.8759314],[20.6500412,37.8761562],[20.6498425,37.8762767],[20.6493059,37.8770812],[20.6486555,37.8776393],[20.6484349,37.8777411],[20.6481155,37.8777681],[20.6477883,37.8777137],[20.6474004,37.8774954],[20.6472982,37.8774925],[20.647132,37.8776499],[20.6469536,37.8780728],[20.6465759,37.8783818],[20.6460565,37.8785562],[20.6458988,37.8785247],[20.6456349,37.878328],[20.6452231,37.878136],[20.6450776,37.8780868],[20.6449178,37.8781003],[20.644479,37.8785022],[20.6437869,37.8787257],[20.6436401,37.8789558],[20.6426371,37.8785893],[20.6423855,37.8783749],[20.6420855,37.8782222],[20.64091,37.8778282],[20.6407289,37.8779132],[20.6400909,37.8781202],[20.6399857,37.8782073],[20.6400161,37.8782892],[20.6402634,37.8783503],[20.6409188,37.8786844],[20.6414215,37.8788789],[20.6427683,37.879557],[20.6427293,37.879664],[20.6424114,37.8799072],[20.6420236,37.8804367],[20.6417808,37.8812766],[20.6417457,37.8817981],[20.641829,37.8824672],[20.6414871,37.8837367],[20.6416208,37.8840469],[20.6415266,37.8843685],[20.6418671,37.8843782],[20.6419465,37.8846328]]},{"id":16765,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c1\u03b1\u03c3\u03af\u03bc\u03bf\u03c5","description_GR":"","path":"ISLANDS\/Islands_Zakynthos_northern_AgGerasimos","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":732,"name_EN":"Zakynthos: Aghios Gerasimos cave","description_EN":"","ascent_time":20,"descent_time":20,"marker":"No_marks","level":13,"ascent":157,"descent":211,"maxelev":243,"minelev":57,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.6251 37.86151,20.62642 37.86589)","views":35,"millestones":"0,20.6260109,37.8615005#0.7,20.6261680,37.8659240","x":20.6251821,"y":37.8643462,"coor":[[20.6260109,37.8615005],[20.6259574,37.8615756],[20.6257636,37.861588],[20.6257815,37.8617687],[20.6256777,37.8618018],[20.6258005,37.8621251],[20.6257575,37.8623221],[20.6256274,37.8631292],[20.6256733,37.863617],[20.6255434,37.8639737],[20.6251821,37.8643462],[20.6251689,37.8644089],[20.6251931,37.8646258],[20.6258575,37.8652575],[20.6259916,37.8653064],[20.6260685,37.8656149],[20.6259983,37.8656579],[20.6260955,37.8657688],[20.6262224,37.8657274],[20.626168,37.865924]]},{"id":16766,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u0388\u03be\u03c9 \u03a7\u03ce\u03c1\u03b1-\u039a\u03b1\u03bc\u03c0\u03af","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03b5\u03be\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03ae \u03b8\u03ad\u03b1","path":"ISLANDS\/Islands_Zakynthos_northern_Kambi","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":4733,"name_EN":"Zakynthos: Exo Chora-Kambi","description_EN":"A trial with excellent view poits","ascent_time":85,"descent_time":85,"marker":"No_marks","level":13,"ascent":71,"descent":205,"maxelev":333,"minelev":161,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.67484 37.77707,20.68616 37.80062)","views":57,"millestones":"0,20.6850905,37.8009101#1,20.6820099,37.7970441#2,20.6809642,37.7912769#3,20.6840406,37.7835762#4,20.6797698,37.7795066#4.7,20.6761518,37.7783124","x":20.6816619,"y":37.7874886,"coor":[[20.6850905,37.8009101],[20.6847276,37.8008007],[20.6845637,37.8004042],[20.6846994,37.8002098],[20.6846653,37.7999566],[20.6844422,37.7996643],[20.6843604,37.7994638],[20.6841518,37.7993047],[20.683368,37.7990574],[20.682539,37.7991894],[20.6816148,37.7995418],[20.681169,37.7996103],[20.6806364,37.7998385],[20.680217,37.800106],[20.6804614,37.7992119],[20.6805577,37.7990885],[20.6809651,37.7988658],[20.6814232,37.7984215],[20.6818816,37.798074],[20.6817948,37.7977292],[20.6819046,37.7974846],[20.6820299,37.7970669],[20.6816305,37.7966052],[20.6815405,37.7963323],[20.6815534,37.7960444],[20.6817145,37.7956683],[20.6820789,37.7948835],[20.681877,37.794067],[20.6819445,37.7935734],[20.681874,37.7933732],[20.6812666,37.7935002],[20.6809132,37.7937875],[20.6806702,37.7938888],[20.6803292,37.7938972],[20.67971,37.7937806],[20.6796926,37.793663],[20.6797873,37.7935756],[20.6803307,37.7933567],[20.6803209,37.7930681],[20.6800954,37.7930347],[20.6802099,37.7927586],[20.6801535,37.7924462],[20.6806045,37.7917562],[20.6810753,37.7913821],[20.6807922,37.7911128],[20.6813072,37.790767],[20.6817364,37.7903106],[20.6818335,37.7901692],[20.6818667,37.7899359],[20.682027,37.789553],[20.6820738,37.7890137],[20.6815724,37.7885491],[20.6816298,37.7883796],[20.6814077,37.788094],[20.681415,37.7879321],[20.6816619,37.7874886],[20.6821283,37.7872134],[20.6822042,37.7870399],[20.6822964,37.7867542],[20.6822323,37.7861577],[20.6825084,37.7858232],[20.6826366,37.7852412],[20.683011,37.7847382],[20.6833636,37.7844688],[20.6836899,37.7840275],[20.6840068,37.7837932],[20.684101,37.7832103],[20.6842819,37.7829721],[20.6843519,37.7826768],[20.6842566,37.7820164],[20.6842792,37.7817648],[20.6844152,37.7815163],[20.6844209,37.7810075],[20.6843513,37.7808861],[20.6838103,37.7805466],[20.683824,37.7804929],[20.6836232,37.7804151],[20.683253,37.7800624],[20.6829997,37.7799922],[20.6829942,37.7798321],[20.6828327,37.7797915],[20.6823986,37.7795991],[20.6822808,37.7794426],[20.682037,37.7793096],[20.681915,37.7789908],[20.6818272,37.7789253],[20.681007,37.7787355],[20.68026,37.7786874],[20.6801159,37.7791924],[20.6800206,37.7800546],[20.6795669,37.7790823],[20.6792591,37.7786051],[20.6794898,37.778017],[20.6794428,37.7777994],[20.6793036,37.7776874],[20.6790901,37.7775643],[20.6786152,37.7775238],[20.6784189,37.7775228],[20.6781852,37.7774171],[20.6778208,37.7770645],[20.6776318,37.7768969],[20.6773512,37.776826],[20.676809,37.7768467],[20.6764908,37.7768557],[20.6762443,37.7770087],[20.6762144,37.77717],[20.675876,37.7776289],[20.6759643,37.7779378],[20.6763951,37.7782022],[20.6762348,37.7782337],[20.6761518,37.7783124]]},{"id":16767,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03bb\u03af\u03bc\u03b1-\u03a6\u03ac\u03c1\u03bf\u03c2 \u03a3\u03c7\u03b9\u03bd\u03ac\u03c1\u03b9","description_GR":"\u03a3\u03c4\u03b1 \u03b5\u03c1\u03b7\u03bc\u03b9\u03ba\u03ac \u03c4\u03bf\u03c0\u03af\u03b1 \u03c4\u03b7\u03c2 \u0392\u0394 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5","path":"ISLANDS\/Islands_Zakynthos_northern_Schinari","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":6832,"name_EN":"Zakynthos: Klima-Schinari lighthouse","description_EN":"Along the remote NW Zakynthos","ascent_time":145,"descent_time":160,"marker":"No_marks","level":13,"ascent":92,"descent":536,"maxelev":458,"minelev":10,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.66577 37.90199,20.70259 37.93195)","views":68,"millestones":"0,20.6697303,37.9011575#1,20.6687643,37.9076563#2,20.6689960,37.9129434#3,20.6771430,37.9160871#4,20.6833037,37.9214966#5,20.6919926,37.9253901#6,20.7002422,37.9276186#6.8,20.6991317,37.9328524","x":20.6779987,"y":37.9159774,"coor":[[20.6697303,37.9011575],[20.6691974,37.9011244],[20.6685921,37.9010307],[20.6683629,37.9010692],[20.6682258,37.9015879],[20.6684022,37.9019623],[20.6672809,37.9021197],[20.667113,37.9023131],[20.6672257,37.9028389],[20.6674668,37.9034944],[20.6674449,37.9039802],[20.6676841,37.9044735],[20.667678,37.9046085],[20.6675213,37.9047031],[20.667423,37.904867],[20.6672946,37.905494],[20.6677472,37.9060474],[20.6678048,37.9062833],[20.6681576,37.9067798],[20.6682695,37.9070712],[20.6687075,37.907444],[20.668892,37.908143],[20.6689894,37.9082538],[20.6693353,37.9083988],[20.6693945,37.9088509],[20.669605,37.908974],[20.6711381,37.9092697],[20.6714845,37.9094056],[20.671869,37.9097048],[20.6719079,37.90985],[20.6718422,37.9100464],[20.671959,37.9102299],[20.6724798,37.9105329],[20.6725654,37.9106525],[20.6725516,37.9107061],[20.6722277,37.9108276],[20.6719706,37.9109825],[20.6722782,37.9112209],[20.6721282,37.9112707],[20.6720657,37.9113951],[20.671785,37.9115673],[20.6703329,37.9122469],[20.6698137,37.9126647],[20.6689266,37.9129188],[20.6709977,37.9136442],[20.6717116,37.9137004],[20.6724555,37.9138476],[20.6727033,37.9138997],[20.6727795,37.9139739],[20.672859,37.9147329],[20.673381,37.9153378],[20.6738499,37.9155313],[20.674339,37.9160091],[20.6749524,37.9162787],[20.6755389,37.9163854],[20.6757819,37.9165454],[20.6761307,37.9166273],[20.676237,37.9165402],[20.6759571,37.91619],[20.6768118,37.9164033],[20.6769489,37.9163892],[20.6770969,37.9161321],[20.6774621,37.915773],[20.6776349,37.9154716],[20.6779987,37.9159774],[20.6782406,37.9169212],[20.6785172,37.9173434],[20.6793496,37.9175471],[20.6798396,37.9175249],[20.680128,37.917434],[20.6803519,37.9175124],[20.6808315,37.9179764],[20.6808838,37.9183292],[20.6810108,37.91854],[20.6813865,37.9187849],[20.6823569,37.9197132],[20.6827675,37.9204455],[20.682896,37.9209266],[20.6833034,37.9214787],[20.6833205,37.9221098],[20.6834049,37.9222563],[20.683574,37.9222881],[20.6841923,37.9221975],[20.6847792,37.9220428],[20.6853837,37.9220058],[20.6855975,37.9220569],[20.6856859,37.9221134],[20.6858093,37.9224052],[20.6862264,37.9227413],[20.6867733,37.9234775],[20.6874964,37.9240925],[20.6881974,37.9244365],[20.6888141,37.9246341],[20.689158,37.9248555],[20.6896286,37.9250129],[20.6900132,37.9250598],[20.690526,37.9252904],[20.6914194,37.9254057],[20.6936056,37.9253501],[20.6946052,37.9253782],[20.6952613,37.9254597],[20.6958674,37.9256389],[20.6964159,37.9255822],[20.6968553,37.9256757],[20.6980123,37.9257442],[20.6984172,37.9258457],[20.6989535,37.9258067],[20.6997373,37.9255764],[20.700203,37.9255895],[20.7006874,37.9256932],[20.7005104,37.926445],[20.7005405,37.9267882],[20.700325,37.9271335],[20.7002399,37.9275095],[20.7002677,37.929177],[20.7006232,37.9296194],[20.7005969,37.9303349],[20.7004924,37.9308906],[20.7008333,37.9311524],[20.7012845,37.9312371],[20.7012562,37.9316147],[20.7011845,37.9316938],[20.7001337,37.9320427],[20.699898,37.9325811],[20.699809,37.9326913],[20.6995088,37.9327909],[20.699379,37.9328954],[20.6991317,37.9328524]]},{"id":16768,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u03a3\u03c0\u03b7\u03bb\u03b9\u03ac \u03a3\u03c0\u03b7\u03bb\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u03bc\u03bf\u03bd\u03ae \u03c3\u03c4\u03b7 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ac \u03a3\u03c0\u03b7\u03bb\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2","path":"ISLANDS\/Islands_Zakynthos_northern_Spiliotissa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1006,"name_EN":"Zakynthos: Spiliotissa cave","description_EN":"From the monastery to the cave of Spiliotissa","ascent_time":25,"descent_time":25,"marker":"No_marks","level":13,"ascent":53,"descent":96,"maxelev":377,"minelev":276,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.69825 37.85712,20.70226 37.86123)","views":31,"millestones":"0,20.7022654,37.8571224#1,20.7009888,37.8613075","x":20.6985464,"y":37.8584911,"coor":[[20.7022654,37.8571224],[20.7017327,37.8573462],[20.701593,37.857572],[20.7016575,37.8576549],[20.7014202,37.8581348],[20.7011555,37.8582085],[20.7007827,37.8584142],[20.7006799,37.8586816],[20.7005241,37.8587358],[20.6996838,37.8577032],[20.6993409,37.8577476],[20.6990566,37.8582622],[20.6988921,37.8583837],[20.6985464,37.8584911],[20.6984298,37.8588122],[20.6983601,37.8588463],[20.6988656,37.8589776],[20.6991068,37.8591735],[20.6989682,37.8592237],[20.699094,37.8594615],[20.6990644,37.8596138],[20.6994752,37.8600848],[20.6996221,37.8603592],[20.6996067,37.8604489],[20.699867,37.8607265],[20.7003868,37.8610474],[20.7009888,37.8613075]]},{"id":16769,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03b7 \u03a1\u03af\u03b6\u03b1","description_GR":"\u03a0\u03b1\u03bb\u03b9\u03ac \u039b\u03b1\u03b3\u03ba\u03b1\u03b4\u03ac\u03ba\u03b9\u03b1-\u0392\u03bf\u03c5\u03b3\u03b9\u03ac\u03c4\u03bf-\u039c\u03b5\u03bb\u03b9\u03bd\u03ac\u03b4\u03bf-\u039c\u03b1\u03c7\u03b1\u03b9\u03c1\u03ac\u03b4\u03bf","path":"ISLANDS\/Islands_Zakynthos_Riza_cultural","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":4,"length":2924,"name_EN":"Zakynthos: A cultural route along Riza","description_EN":"Old Lagadakia-Voughiato-Melinado-Macherado","ascent_time":50,"descent_time":55,"marker":"No_marks","level":13,"ascent":45,"descent":162,"maxelev":209,"minelev":49,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.79331 37.75716,20.81067 37.76739)","views":35,"millestones":"0,20.7934094,37.7650188#1,20.8011026,37.7663430#2,20.8083339,37.7620466#2.9,20.8090774,37.7575655","x":20.80535,"y":37.7650146,"coor":[[20.7934094,37.7650188],[20.7937947,37.7652163],[20.7940469,37.7654213],[20.7943698,37.7655653],[20.7947424,37.7656881],[20.7947557,37.7659046],[20.7950416,37.7663809],[20.7956421,37.7666676],[20.7958431,37.7670064],[20.7960073,37.767146],[20.7962878,37.7672978],[20.7963724,37.767442],[20.7964709,37.767474],[20.7965541,37.7673861],[20.7965857,37.7669185],[20.796704,37.7665433],[20.7967993,37.7664378],[20.79689,37.7664402],[20.7969893,37.766506],[20.7971521,37.7669429],[20.7971804,37.7669977],[20.7974032,37.7670939],[20.7976413,37.7671004],[20.7979672,37.766911],[20.7980645,37.7668686],[20.798211,37.7666293],[20.798845,37.7664033],[20.7990037,37.7664076],[20.799198,37.7666382],[20.8000583,37.7664273],[20.8005581,37.7664431],[20.8016824,37.7662417],[20.8024359,37.7658747],[20.80279,37.765774],[20.8036984,37.7657626],[20.8038786,37.7657652],[20.8040428,37.7656436],[20.8042089,37.7657382],[20.8044817,37.7654663],[20.8045711,37.7652345],[20.8052165,37.76527],[20.80535,37.7650146],[20.8052184,37.7649615],[20.8052631,37.7647442],[20.8053415,37.7645031],[20.8054353,37.7644335],[20.8060361,37.7644498],[20.8063355,37.7643498],[20.8067711,37.764195],[20.807224,37.7641667],[20.8073503,37.7641341],[20.8073982,37.763811],[20.8075662,37.7635994],[20.80772,37.7631891],[20.807781,37.7631434],[20.8073905,37.762804],[20.8075648,37.7626015],[20.8079545,37.762513],[20.8081577,37.7624058],[20.8082479,37.762156],[20.8084436,37.7619091],[20.8083971,37.7618515],[20.8085023,37.7617034],[20.8092699,37.761535],[20.8103885,37.7614933],[20.8104645,37.7610448],[20.8105286,37.7605555],[20.8102232,37.760268],[20.8097545,37.7600841],[20.809854,37.7596701],[20.8093955,37.7595135],[20.809298,37.7594838],[20.809662,37.7589351],[20.8094412,37.7587917],[20.8097672,37.7583365],[20.8098079,37.7582881],[20.8101068,37.7579358],[20.8098412,37.7577484],[20.8093313,37.757203],[20.8090514,37.7571143],[20.8089595,37.7575646],[20.8090774,37.7575655]]},{"id":16770,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03b1\u03bb\u03bb\u03b9\u03b8\u03ad\u03b1-\u039b\u03b1\u03b3\u03bf\u03c0\u03cc\u03b4\u03bf","description_GR":"\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03b7\u03c2 \u03a1\u03af\u03b6\u03b1\u03c2","path":"ISLANDS\/Islands_Zakynthos_Riza_Kalithea_Lagopodo","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":9307,"name_EN":"Zakynthos: Kalithea-Lagopodo","description_EN":"Along the foot of the mountain","ascent_time":170,"descent_time":165,"marker":"No_marks","level":13,"ascent":376,"descent":326,"maxelev":298,"minelev":139,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.76378 37.74891,20.80859 37.80544)","views":14,"millestones":"0,20.7641704,37.8054534#1,20.7668895,37.7989387#2,20.7723319,37.7918327#3,20.7755893,37.7853776#4,20.7794851,37.7789488#5,20.7875223,37.7737131#6,20.7916395,37.7668469#7,20.7962897,37.7606251#8,20.8001570,37.7540012#9.3,20.8084952,37.7510312","x":20.7810679,"y":37.7781942,"coor":[[20.7641704,37.8054534],[20.7640527,37.8052114],[20.7638142,37.8046913],[20.7645346,37.8041593],[20.7644834,37.8040317],[20.7646097,37.8039992],[20.764564,37.8037457],[20.7648155,37.8034462],[20.7648112,37.803284],[20.7650741,37.8029849],[20.7651442,37.8029395],[20.7652268,37.8026895],[20.7654815,37.8023181],[20.7661249,37.801624],[20.7663722,37.8011623],[20.7668117,37.8007419],[20.766703,37.8006308],[20.7666859,37.8002429],[20.7670934,37.8000109],[20.7670637,37.799911],[20.7672405,37.7997626],[20.767456,37.7993767],[20.7673563,37.7993739],[20.7670453,37.7997348],[20.7668259,37.7998188],[20.7667244,37.7998025],[20.7668774,37.7996806],[20.7669169,37.7995555],[20.7668535,37.7982744],[20.7668444,37.798094],[20.7670732,37.7975327],[20.7671448,37.7974536],[20.7676978,37.7972705],[20.7678742,37.7971312],[20.768227,37.7965913],[20.7690593,37.7957313],[20.7690445,37.7952894],[20.7695446,37.7952761],[20.7696983,37.7951361],[20.7699076,37.7947635],[20.7704516,37.7937964],[20.7706972,37.7936319],[20.7712935,37.7934951],[20.7718473,37.7927715],[20.7720529,37.7924528],[20.7722005,37.7922226],[20.7724746,37.7914013],[20.7724121,37.7912734],[20.7721024,37.7910847],[20.7724876,37.7911043],[20.7725837,37.7910078],[20.7728801,37.7909799],[20.7735346,37.7910699],[20.7738572,37.7909098],[20.7744386,37.7908537],[20.7744374,37.7907275],[20.7741156,37.7905565],[20.7737398,37.7900597],[20.7737461,37.7899157],[20.7740163,37.7893938],[20.7740468,37.7892145],[20.7744492,37.7885768],[20.7746279,37.7881222],[20.7746561,37.787213],[20.7749122,37.7868056],[20.7749807,37.7865372],[20.7748427,37.7860559],[20.7754026,37.7857109],[20.7757834,37.7850456],[20.7760126,37.7844752],[20.776648,37.7836998],[20.7770951,37.7833607],[20.777942,37.7829424],[20.778082,37.7825948],[20.7784288,37.7825322],[20.7781557,37.7819729],[20.7781029,37.7816201],[20.7778613,37.7814333],[20.777375,37.7812848],[20.7775247,37.7812349],[20.7784415,37.781296],[20.7785702,37.7812094],[20.7787416,37.7808965],[20.779531,37.7799721],[20.7795251,37.7798458],[20.7793836,37.7797068],[20.7793335,37.7795523],[20.7794095,37.7790048],[20.7802418,37.7783969],[20.7806695,37.7784807],[20.7808298,37.778449],[20.7810679,37.7781942],[20.7820984,37.7774656],[20.7824901,37.7770709],[20.7826648,37.7767063],[20.7831082,37.7766913],[20.783575,37.7755328],[20.7858826,37.773884],[20.7859055,37.7738802],[20.7861805,37.7738201],[20.7871426,37.7738824],[20.787453,37.7737918],[20.7879185,37.7732639],[20.7878918,37.7728307],[20.7880169,37.7725638],[20.7881451,37.7724862],[20.7884068,37.7727862],[20.7886602,37.7729643],[20.7889209,37.7729714],[20.7890769,37.7727774],[20.7897157,37.7716259],[20.7898071,37.7710878],[20.7899951,37.7706784],[20.7904934,37.7701785],[20.7907428,37.7695298],[20.7907876,37.7694117],[20.7908411,37.7687014],[20.7905966,37.768055],[20.7909273,37.7677577],[20.7912211,37.7672612],[20.791517,37.7669809],[20.7916638,37.7668182],[20.7918509,37.7664269],[20.7922539,37.7660325],[20.7926115,37.7658981],[20.7929798,37.7658833],[20.7931572,37.7658769],[20.7933647,37.7655402],[20.7934268,37.7651544],[20.7934087,37.7650188],[20.7928009,37.7647703],[20.7926582,37.7646582],[20.792641,37.7645316],[20.792734,37.7644801],[20.7932085,37.7645291],[20.7934974,37.7644108],[20.7938772,37.7640247],[20.7943572,37.7636864],[20.7951161,37.7629323],[20.7954543,37.7619324],[20.7958718,37.7619888],[20.7960223,37.7619208],[20.7964051,37.7612014],[20.7962267,37.7603407],[20.7965913,37.7603055],[20.7968242,37.7601677],[20.7969952,37.7599944],[20.7983908,37.7585796],[20.7985005,37.7584024],[20.7985387,37.758043],[20.7984104,37.7575981],[20.7985147,37.7575468],[20.7990104,37.7576324],[20.7992531,37.7575309],[20.7993394,37.757371],[20.7993405,37.7570828],[20.7990809,37.7567874],[20.7990844,37.7567064],[20.7992277,37.7565391],[20.7997827,37.7563019],[20.8003917,37.7553364],[20.800433,37.7549051],[20.7997788,37.7540224],[20.8004499,37.7539866],[20.8007606,37.7538869],[20.8008686,37.7537794],[20.8018829,37.7527799],[20.8020596,37.7526045],[20.8025871,37.7522134],[20.8028539,37.7518152],[20.8029121,37.7514632],[20.8040149,37.7511507],[20.8048083,37.7505371],[20.8049407,37.7503605],[20.8049969,37.7501097],[20.8043048,37.7490548],[20.8043938,37.748832],[20.80452,37.7487994],[20.8048099,37.7490775],[20.8060729,37.7497875],[20.8063437,37.7498737],[20.8077248,37.7507401],[20.8084952,37.7510312]]},{"id":16771,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03bf\u03b9\u03bb\u03b9\u03c9\u03bc\u03ad\u03bd\u03bf-\u03a0\u03b1\u03bd\u03c4\u03bf\u03ba\u03c1\u03ac\u03c4\u03bf\u03c1\u03b1\u03c2","description_GR":"\u0394\u03c1\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u039c\u03b5\u03b3\u03ac\u03bb\u03bf\u03c5 \u0392\u03bf\u03c5\u03bd\u03bf\u03cd","path":"ISLANDS\/Islands_Zakynthos_Riza_Kiliomeno_Pandokratoras","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":8242,"name_EN":"Zakynthos Isl.: Kiliomeno-Pandokratoras","description_EN":"Crossing Megalo Vouno","ascent_time":230,"descent_time":240,"marker":"No_marks","level":13,"ascent":138,"descent":555,"maxelev":504,"minelev":57,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.77393 37.72279,20.8279 37.74754)","views":46,"millestones":"0,20.7739308,37.7475396#1,20.7796440,37.7406754#2,20.7879973,37.7357453#3,20.7974061,37.7360967#4,20.8063972,37.7321464#5,20.8149171,37.7281103#6,20.8232061,37.7228688#7,20.8232631,37.7260299#8.2,20.8274687,37.7328983","x":20.8122554,"y":37.7285232,"coor":[[20.7739308,37.7475396],[20.7739774,37.7472503],[20.7742174,37.7466893],[20.7741861,37.7457897],[20.7742803,37.7454499],[20.7742561,37.745251],[20.774324,37.7446267],[20.7743503,37.7443887],[20.7743653,37.7443305],[20.7743939,37.7440633],[20.7744877,37.7439938],[20.7745057,37.7438411],[20.7745392,37.7437226],[20.7747322,37.7435365],[20.7751335,37.7431781],[20.7765406,37.7423877],[20.7772607,37.7418736],[20.7775124,37.7416935],[20.7812324,37.7398942],[20.7818551,37.7397153],[20.7831186,37.739225],[20.7840162,37.7391955],[20.785449,37.7388562],[20.7861859,37.7383447],[20.7866032,37.7381399],[20.7866641,37.7380424],[20.7866698,37.7377025],[20.7868833,37.7374876],[20.7873334,37.7373106],[20.7874476,37.737084],[20.7874585,37.7365708],[20.787753,37.7360562],[20.7881612,37.7355358],[20.7886737,37.7350137],[20.7890394,37.7346407],[20.7892141,37.7345374],[20.7897493,37.7344889],[20.7900377,37.7343797],[20.7903525,37.7344445],[20.7906727,37.7346492],[20.7912779,37.7348189],[20.7919114,37.7351245],[20.7931583,37.7354107],[20.7933751,37.7353806],[20.7941718,37.7350599],[20.7945594,37.7350164],[20.7953879,37.7356899],[20.7956442,37.7355347],[20.7961376,37.7354039],[20.7964024,37.735499],[20.7966092,37.7357028],[20.7968116,37.7357444],[20.7972532,37.7360267],[20.7974869,37.7361321],[20.7976573,37.7361278],[20.7977663,37.7362298],[20.7985814,37.73627],[20.7994027,37.7361662],[20.8005479,37.735918],[20.8011855,37.7358633],[20.8015532,37.7357561],[20.8021028,37.7353746],[20.8028206,37.735304],[20.803466,37.7350693],[20.803646,37.7348399],[20.8042898,37.7343798],[20.8045534,37.7340536],[20.8046193,37.7338392],[20.804797,37.7336638],[20.8050486,37.7336166],[20.8057229,37.7332385],[20.8061817,37.7325932],[20.8064429,37.7320597],[20.8070568,37.7314997],[20.8071732,37.7314308],[20.8083491,37.731787],[20.8085014,37.73162],[20.8086349,37.7314704],[20.8090927,37.7311134],[20.8097177,37.730824],[20.8101027,37.7303119],[20.8109645,37.7300559],[20.8115768,37.7295319],[20.81196,37.7293261],[20.8121439,37.7290067],[20.8122554,37.7285232],[20.8123495,37.7284446],[20.8126698,37.7283812],[20.8134318,37.7286001],[20.8138401,37.7286021],[20.814753,37.7282123],[20.8153009,37.7278668],[20.8153661,37.7276703],[20.8155528,37.7275492],[20.8157616,37.7271765],[20.8162614,37.7266314],[20.8164918,37.7265475],[20.8168558,37.72626],[20.8175178,37.7258995],[20.8182291,37.7257115],[20.8183728,37.7255352],[20.8188875,37.7251707],[20.8191508,37.7251147],[20.8195136,37.7248542],[20.8204443,37.7237802],[20.8205551,37.7235759],[20.820766,37.7234194],[20.8217131,37.7230215],[20.8222737,37.7229105],[20.822732,37.7230671],[20.8230011,37.7228761],[20.8231128,37.7229152],[20.8232866,37.7228297],[20.823514,37.7228179],[20.8238147,37.7226818],[20.8239273,37.7227029],[20.8240914,37.7228424],[20.8243226,37.7227406],[20.8245692,37.7230761],[20.8247942,37.723384],[20.8249861,37.7234071],[20.8249215,37.7234842],[20.8248825,37.7236003],[20.8245412,37.7238884],[20.8247256,37.7238213],[20.8251156,37.7234534],[20.8250985,37.7235881],[20.8249435,37.7237641],[20.8246917,37.724084],[20.8257064,37.7236969],[20.8256679,37.723831],[20.8252374,37.7243487],[20.8249504,37.7246946],[20.8248766,37.7248525],[20.8245562,37.7250511],[20.8249131,37.7250607],[20.8251549,37.7249771],[20.8247977,37.725373],[20.8237394,37.7254525],[20.8235308,37.725555],[20.8233516,37.7257664],[20.8232081,37.726204],[20.8234007,37.7267408],[20.823394,37.7268735],[20.8233582,37.7275235],[20.8240308,37.7278435],[20.8246657,37.7283832],[20.8247256,37.7286776],[20.8249773,37.7290786],[20.8244171,37.7291806],[20.8242798,37.7291836],[20.8241951,37.7293075],[20.8246233,37.7295871],[20.8248021,37.7297023],[20.8250915,37.7300975],[20.8250767,37.7304147],[20.825278,37.730749],[20.8250892,37.7311854],[20.8246303,37.7315694],[20.8244354,37.731884],[20.8246928,37.7318324],[20.8251803,37.7315752],[20.8255807,37.7314959],[20.8257871,37.7314745],[20.8261095,37.7316273],[20.8263781,37.7317134],[20.8264908,37.7319957],[20.8265896,37.7320727],[20.8271241,37.7325736],[20.8274687,37.7328983]]},{"id":16772,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u0391\u03c1\u03b3\u03ac\u03c3\u03b9-\u03a3\u03ba\u03bf\u03c0\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u0391\u03c1\u03b3\u03ac\u03c3\u03b9 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ac \u03a3\u03ba\u03bf\u03c0\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","path":"ISLANDS\/Islands_Zakynthos_Skopos_Argasi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3707,"name_EN":"Zakynthos: Arghasi-Skopiotisa","description_EN":"From Arghasi-to Panagia Skopiotisa church","ascent_time":95,"descent_time":75,"marker":"No_marks","level":13,"ascent":424,"descent":4,"maxelev":466,"minelev":43,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.93169 37.743,20.94005 37.75871)","views":75,"millestones":"0,20.9393911,37.7589121#1,20.9321677,37.7528391#2,20.9361386,37.7500542#3,20.9325768,37.7473449#3.7,20.9332489,37.7437845","x":20.9365777,"y":37.7508561,"coor":[[20.9393911,37.7589121],[20.9393905,37.7588468],[20.939233,37.7585364],[20.9385225,37.7578782],[20.9381687,37.7577586],[20.9380141,37.7575744],[20.9378611,37.757156],[20.937324,37.7569708],[20.9369542,37.7565828],[20.9363538,37.7565581],[20.9359681,37.7562778],[20.9351897,37.7561674],[20.9351261,37.7560577],[20.935144,37.7556257],[20.9347405,37.7552277],[20.9346296,37.7548915],[20.9337536,37.7541208],[20.9330407,37.7537959],[20.9327767,37.7533205],[20.9319419,37.7526501],[20.9320477,37.7525627],[20.9326923,37.7526156],[20.9331061,37.7527615],[20.9354138,37.7529387],[20.9355641,37.7528705],[20.9356973,37.7526668],[20.9356451,37.7525573],[20.9353954,37.7525598],[20.9353065,37.7525124],[20.9352891,37.7523858],[20.9353993,37.7523009],[20.9356709,37.7522629],[20.9358738,37.7522952],[20.9363198,37.752487],[20.9367086,37.7523034],[20.9370667,37.7521505],[20.9373967,37.7518528],[20.9376951,37.7517704],[20.9377106,37.7516717],[20.9375537,37.7516226],[20.9371627,37.7515291],[20.9372571,37.7514414],[20.9375069,37.7514389],[20.9375544,37.7513861],[20.937469,37.7512577],[20.9365777,37.7508561],[20.9364042,37.7506624],[20.9354009,37.7483027],[20.9353083,37.7472461],[20.9354321,37.7469971],[20.9357558,37.7465212],[20.9351985,37.7467185],[20.9348277,37.7468507],[20.9346493,37.7473236],[20.9346307,37.7473614],[20.9346493,37.7473236],[20.9345839,37.7472588],[20.9343553,37.7472979],[20.9343449,37.7475499],[20.9341833,37.7476178],[20.9341448,37.7477249],[20.934077,37.7479935],[20.9341305,37.7483462],[20.9340238,37.7484268],[20.9338968,37.7485091],[20.9337408,37.748442],[20.9336129,37.7482404],[20.933575,37.7480592],[20.9336211,37.7480424],[20.9334204,37.7479561],[20.9328926,37.7474108],[20.9327323,37.7475823],[20.93237,37.7475638],[20.9323915,37.7474563],[20.9327521,37.7472404],[20.9328943,37.7468206],[20.9327472,37.7464812],[20.9328802,37.7460071],[20.9328291,37.745321],[20.9329135,37.7449268],[20.9326963,37.743867],[20.9326221,37.7436037],[20.9325645,37.74335],[20.9325035,37.7429294],[20.932622,37.7428064],[20.9328641,37.7429366],[20.9330687,37.7432032],[20.933096,37.7433661],[20.9330005,37.7434807],[20.9332489,37.7437845]]},{"id":16773,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u0393\u03ad\u03c1\u03b1\u03ba\u03b1\u03c2 \u03ba\u03b1\u03b9 \u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac \u03c0\u03c5\u03c1\u03bf\u03b2\u03bf\u03bb\u03b5\u03af\u03b1","description_GR":"\u039c\u03b9\u03b1 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c4\u03bf\u03c5 20\u03bf\u03c5 \u03b1\u03b9.","path":"ISLANDS\/Islands_Zakynthos_Skopos_Gerakas","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2328,"name_EN":"Zakynthos: Gherakas beach and the Italian army bases","description_EN":"Crossing the WWII time","ascent_time":55,"descent_time":50,"marker":"No_marks","level":13,"ascent":109,"descent":69,"maxelev":110,"minelev":11,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.9748 37.70786,20.98676 37.71553)","views":80,"millestones":"0,20.9867573,37.7080260#1,20.9783827,37.7094543#2,20.9778755,37.7141495#2.3,20.9806079,37.7156849","x":20.9771069,"y":37.7100719,"coor":[[20.9867573,37.708026],[20.9865512,37.7078496],[20.9861386,37.7078998],[20.9854629,37.7080628],[20.9842525,37.7085454],[20.9836835,37.7085939],[20.9834196,37.7086682],[20.9833941,37.7087396],[20.9834993,37.7092199],[20.9833924,37.7094536],[20.9830152,37.7098044],[20.9826688,37.7099577],[20.9821228,37.7099978],[20.981944,37.7099301],[20.9815022,37.7099188],[20.9812562,37.7098314],[20.980871,37.7098215],[20.9805169,37.7096052],[20.980393,37.709584],[20.9799095,37.7097608],[20.9797575,37.7098741],[20.9791585,37.7098227],[20.9788727,37.7098784],[20.9787338,37.7099469],[20.9785211,37.7101577],[20.9783043,37.7101882],[20.9784111,37.7092359],[20.9781503,37.7089544],[20.9777502,37.7090342],[20.9777421,37.7092322],[20.9776555,37.7094102],[20.9775623,37.7094709],[20.9774366,37.709774],[20.9771928,37.7099119],[20.9771069,37.7100719],[20.9769687,37.7101224],[20.9767319,37.7100893],[20.9763763,37.7101883],[20.9763094,37.7101595],[20.9763475,37.7100614],[20.9762795,37.7100597],[20.976134,37.7102902],[20.9760437,37.7105582],[20.9758149,37.7106064],[20.975789,37.7106868],[20.9756852,37.7107292],[20.9756918,37.7108465],[20.9755616,37.7109783],[20.9752619,37.7110967],[20.9749704,37.7114024],[20.975201,37.7115885],[20.9755233,37.7117499],[20.9756344,37.7123655],[20.975604,37.7128332],[20.9756954,37.7129302],[20.9757963,37.7129598],[20.9761366,37.7129595],[20.9770598,37.7131274],[20.977407,37.713152],[20.97762,37.7137702],[20.9778766,37.7141552],[20.977928,37.7142286],[20.9783998,37.7148984],[20.9784851,37.7149186],[20.9790396,37.7149509],[20.9793758,37.7150496],[20.9805874,37.7156573],[20.9806079,37.7156849]]},{"id":16774,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03b1\u03bb\u03b1\u03bc\u03ac\u03ba\u03b9-\u03a3\u03ba\u03bf\u03c0\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf \u039a\u03b1\u03bb\u03b1\u03bc\u03ac\u03ba\u03b9 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ac \u03a3\u03ba\u03bf\u03c0\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","path":"ISLANDS\/Islands_Zakynthos_Skopos_Kalamaki","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6153,"name_EN":"Zakynthos: Kalamaki-Skopiotisa","description_EN":"From Kalamaki-to Panagia Skopiotisa church","ascent_time":145,"descent_time":130,"marker":"No_marks","level":12,"ascent":504,"descent":58,"maxelev":466,"minelev":11,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.90631 37.73608,20.93357 37.74689)","views":56,"millestones":"0,20.9065377,37.7415317#1,20.9140085,37.7376424#2,20.9203293,37.7376285#3,20.9247857,37.7361728#4,20.9257335,37.7408307#5,20.9283486,37.7463517#6.2,20.9332495,37.7437845","x":20.9255701,"y":37.7375116,"coor":[[20.9065377,37.7415317],[20.9075944,37.7417666],[20.9079145,37.7417908],[20.9082008,37.7417263],[20.9089306,37.741367],[20.9092025,37.7411038],[20.9092492,37.7407987],[20.9094346,37.7404342],[20.9101302,37.7398037],[20.910087,37.7394782],[20.9097824,37.7391639],[20.9097529,37.739055],[20.9099284,37.7386542],[20.9102176,37.7383847],[20.9109277,37.7382231],[20.9115641,37.7379245],[20.9118165,37.737859],[20.9119865,37.7378635],[20.9123552,37.7379993],[20.9127314,37.7379551],[20.913031,37.7378458],[20.9132901,37.7378886],[20.9137303,37.73797],[20.9139698,37.7379402],[20.914036,37.7374374],[20.9141728,37.737423],[20.9143256,37.7378414],[20.9152555,37.7383974],[20.9153154,37.7388675],[20.9160555,37.739896],[20.9163223,37.7400291],[20.9167099,37.7399852],[20.9171139,37.7403652],[20.91733,37.7403528],[20.9174272,37.7399229],[20.9179645,37.7392792],[20.9187347,37.7390381],[20.9191312,37.7387781],[20.919661,37.7383145],[20.9200062,37.7381974],[20.92011,37.7373351],[20.9202336,37.7373654],[20.9204378,37.7379113],[20.9205157,37.7379494],[20.920598,37.7378795],[20.9206174,37.7374115],[20.9209773,37.7372136],[20.921449,37.7370548],[20.9219057,37.7369856],[20.9224014,37.7370707],[20.9234671,37.7370895],[20.9232852,37.7368234],[20.9223133,37.7361854],[20.9222176,37.7360297],[20.922267,37.7359319],[20.9223687,37.7359436],[20.9225633,37.7361739],[20.9230772,37.7363675],[20.9237696,37.7363586],[20.923968,37.7364989],[20.9240289,37.7363721],[20.9239427,37.736237],[20.9234632,37.7360352],[20.9234114,37.7359167],[20.9239857,37.7360218],[20.9243042,37.7360009],[20.9249137,37.7358546],[20.9250584,37.7358944],[20.9247859,37.7361756],[20.9251295,37.7366441],[20.9252651,37.7372063],[20.9255701,37.7375116],[20.9260119,37.7378024],[20.9260922,37.7379982],[20.9261422,37.7381617],[20.9260078,37.7383925],[20.925278,37.7384815],[20.9249209,37.7388867],[20.9242335,37.7390489],[20.9238949,37.7395536],[20.9239993,37.7397726],[20.9239329,37.7400051],[20.9241257,37.7402805],[20.9238962,37.7406168],[20.9238767,37.7408145],[20.9242698,37.7411852],[20.9246688,37.7419615],[20.9247935,37.7419647],[20.9249101,37.7418867],[20.9257525,37.7409987],[20.9257274,37.7407818],[20.9255156,37.7404159],[20.9255216,37.7402719],[20.9256478,37.7402391],[20.9257585,37.7403051],[20.9259151,37.7406335],[20.9260591,37.7407184],[20.9263634,37.740492],[20.9265379,37.7402263],[20.9266641,37.7404909],[20.926686,37.7410591],[20.9265804,37.7414167],[20.9266625,37.7421757],[20.9273347,37.7429321],[20.9277503,37.743033],[20.9282057,37.7432701],[20.9287032,37.7438598],[20.9286995,37.7439498],[20.9284605,37.7442409],[20.9283553,37.7445895],[20.9283615,37.7447158],[20.928589,37.744974],[20.9286372,37.7451825],[20.9285139,37.7456929],[20.9282944,37.746007],[20.9283475,37.7463688],[20.9286281,37.7467185],[20.9292323,37.7469234],[20.9296065,37.7472035],[20.930165,37.7473104],[20.9304564,37.7473991],[20.930912,37.7473569],[20.931299,37.7475449],[20.9318019,37.7474589],[20.9323705,37.7475638],[20.932392,37.7474563],[20.9327527,37.7472404],[20.9328948,37.7468207],[20.9327476,37.7464835],[20.9328806,37.7460094],[20.9328296,37.7453233],[20.9329139,37.7449291],[20.9326967,37.7438692],[20.9326226,37.7436038],[20.932565,37.74335],[20.9325042,37.7429294],[20.9326227,37.7428064],[20.9328647,37.7429366],[20.9330692,37.7432032],[20.9330966,37.7433661],[20.933001,37.7434807],[20.9332495,37.7437845]]},{"id":16775,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03b5\u03c1\u03af-\u0391\u03b3\u03b1\u03bb\u03ac\u03c2","description_GR":"\u0393\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u03b1\u03c1\u03b3\u03bf\u03c4\u03b9\u03ba\u03ae \u03cc\u03c8\u03b7 \u03c4\u03b7\u03c2 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5","path":"ISLANDS\/Islands_Zakynthos_ZanteTrail_1","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":8414,"name_EN":"Zakynthos: Keri-Aghalas","description_EN":"Touching the secluded rural side of Zakynthos","ascent_time":190,"descent_time":190,"marker":"No_marks","level":12,"ascent":263,"descent":188,"maxelev":281,"minelev":104,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.77217 37.66113,20.81594 37.70715)","views":34,"millestones":"0,20.8159452,37.6611262#1,20.8094007,37.6657539#2,20.8065350,37.6697084#3,20.7986030,37.6735712#4,20.7932529,37.6799552#5,20.7844456,37.6844547#6,20.7798426,37.6917564#7,20.7733077,37.6986894#8,20.7752630,37.7049145#8.4,20.7769885,37.7072870","x":20.7950667,"y":37.6784311,"coor":[[20.8159452,37.6611262],[20.8157673,37.6613106],[20.8155664,37.6614786],[20.8156199,37.6615228],[20.815456,37.6616468],[20.8154151,37.6618079],[20.8149274,37.6619771],[20.8149583,37.66205],[20.8154854,37.6621814],[20.8155236,37.6628492],[20.8153458,37.6632949],[20.81544,37.6634776],[20.815231,37.663517],[20.8140035,37.6634928],[20.8129587,37.6638069],[20.8127714,37.663946],[20.8123214,37.6641321],[20.8122711,37.6642501],[20.8122114,37.6643206],[20.8118203,37.6644541],[20.8103898,37.6647758],[20.8101117,37.6651827],[20.8098401,37.6654367],[20.80979,37.6658137],[20.8089116,37.6656818],[20.8091641,37.6659747],[20.8096042,37.666284],[20.8100626,37.6664315],[20.8104487,37.6664149],[20.8108131,37.6661095],[20.8109252,37.6661395],[20.8108435,37.666723],[20.8101494,37.6673168],[20.8101297,37.6677758],[20.8100342,37.6679174],[20.8096525,37.6680962],[20.8095308,37.6682912],[20.8096355,37.6684922],[20.8100194,37.6687909],[20.8099989,37.6690066],[20.8090776,37.6690808],[20.807938,37.6689598],[20.807379,37.6690438],[20.8071237,37.669181],[20.8068659,37.6696425],[20.8064658,37.6697218],[20.8063366,37.6698264],[20.8062813,37.6700592],[20.8063432,37.6704663],[20.8062471,37.6709344],[20.8062711,37.6711693],[20.8061371,37.6711207],[20.8060859,37.6709931],[20.8059754,37.6709271],[20.8060109,37.670892],[20.8058766,37.6708523],[20.8054472,37.6708227],[20.805309,37.670873],[20.8049014,37.6708619],[20.8046882,37.6708111],[20.8043811,37.6711001],[20.8041145,37.6715276],[20.8036979,37.6714622],[20.8033329,37.6715154],[20.8018492,37.6720157],[20.8013589,37.6720835],[20.8009322,37.6722521],[20.8004801,37.6722218],[20.8000699,37.672535],[20.7996969,37.6730384],[20.7992457,37.6732514],[20.7981121,37.6738085],[20.798063,37.6738973],[20.7980951,37.6742045],[20.797868,37.6744776],[20.7978615,37.6745991],[20.7979858,37.6747939],[20.7985813,37.6751795],[20.7986657,37.6753259],[20.798581,37.6754498],[20.7979094,37.6758865],[20.7971193,37.6763336],[20.796415,37.6772604],[20.7956641,37.6775103],[20.7956032,37.6776078],[20.7950667,37.6784311],[20.7947048,37.6786735],[20.7942982,37.679167],[20.7940351,37.6798265],[20.7938121,37.6799781],[20.7932157,37.6799529],[20.7926125,37.6800086],[20.7917111,37.6804075],[20.7910478,37.6805426],[20.7903787,37.6808645],[20.7890868,37.6813789],[20.7875426,37.6814359],[20.787265,37.6815635],[20.7870051,37.6817816],[20.7870401,37.6822308],[20.7867604,37.6825926],[20.7866614,37.6826777],[20.7864151,37.6831305],[20.785932,37.6833178],[20.7857477,37.6833848],[20.7855791,37.6836145],[20.7847799,37.6842684],[20.7834435,37.6850248],[20.78311,37.6851328],[20.7831991,37.685356],[20.7833281,37.6863055],[20.7830814,37.6867673],[20.782766,37.6870335],[20.7826862,37.6872813],[20.7826473,37.6874987],[20.7826969,37.6876623],[20.7824998,37.687738],[20.7815451,37.6880543],[20.781528,37.6884502],[20.7814037,37.6885955],[20.7809543,37.6890247],[20.7808346,37.6899584],[20.7805004,37.6903457],[20.7800124,37.6914045],[20.7797995,37.6918447],[20.7796467,37.6919419],[20.7795832,37.6920978],[20.7792952,37.6923625],[20.7780579,37.6942297],[20.7776674,37.6946064],[20.7771531,37.6949618],[20.7768989,37.6950719],[20.7762717,37.6951539],[20.7757894,37.6952939],[20.7753759,37.695679],[20.7751322,37.6961228],[20.7750076,37.6963266],[20.7743727,37.6971111],[20.7741571,37.6976367],[20.7734538,37.6984284],[20.772806,37.6996089],[20.7728224,37.6997535],[20.772992,37.6999248],[20.7730892,37.7000356],[20.773067,37.7002873],[20.7732681,37.7006171],[20.7732833,37.7007887],[20.7731549,37.7008753],[20.7725026,37.7010106],[20.7724308,37.7010987],[20.7729158,37.7011571],[20.7735942,37.701464],[20.7740457,37.7015124],[20.7740648,37.701594],[20.7737876,37.702127],[20.773458,37.7024062],[20.7729714,37.7031677],[20.7731058,37.7034687],[20.7735479,37.7037331],[20.7743122,37.7038892],[20.7745981,37.7040952],[20.7749723,37.704619],[20.7756351,37.7052859],[20.7759238,37.7062128],[20.776469,37.7067142],[20.7766807,37.7068011],[20.7773275,37.7067918],[20.7774053,37.7068299],[20.7773779,37.7069373],[20.7770073,37.7071164],[20.7769885,37.707287]]},{"id":16776,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u0391\u03b3\u03b1\u03bb\u03ac\u03c2-\u039a\u03bf\u03b9\u03bb\u03b9\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2","description_GR":"\u0391\u03c1\u03b3\u03bf\u03c4\u03b9\u03ba\u03ac \u03c4\u03bf\u03c0\u03af\u03b1 \u03c4\u03b7\u03c2 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5","path":"ISLANDS\/Islands_Zakynthos_ZanteTrail_2","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":7766,"name_EN":"Zakynthos: Aghalas-Kiliomenos","description_EN":"The rural aspect of Zakynthos","ascent_time":180,"descent_time":180,"marker":"No_marks","level":12,"ascent":75,"descent":280,"maxelev":483,"minelev":277,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.77393 37.70762,20.79165 37.74754)","views":19,"millestones":"0,20.7739308,37.7475396#1,20.7781755,37.7396539#2,20.7834330,37.7333581#3,20.7846629,37.7297213#4,20.7865029,37.7240026#5,20.7907049,37.7180623#6,20.7877279,37.7132069#7,20.7828956,37.7100913#7.8,20.7769936,37.7072894","x":20.7865452,"y":37.7239007,"coor":[[20.7739308,37.7475396],[20.7739774,37.7472503],[20.7742174,37.7466893],[20.7741861,37.7457897],[20.7742803,37.7454499],[20.7742561,37.745251],[20.7743503,37.7443887],[20.7743653,37.7443305],[20.7743939,37.7440633],[20.7744877,37.7439938],[20.7745057,37.7438411],[20.7745392,37.7437226],[20.7747322,37.7435365],[20.7750782,37.7429355],[20.7755558,37.74239],[20.7767687,37.7416304],[20.7777526,37.7406572],[20.7778475,37.7402995],[20.7782933,37.73944],[20.7780557,37.7391632],[20.7781746,37.7382767],[20.7782692,37.7379279],[20.7785528,37.7374041],[20.7785008,37.7372946],[20.7782011,37.7371422],[20.7782316,37.7369629],[20.7796339,37.7357579],[20.7803223,37.7355785],[20.7806385,37.7358755],[20.7812153,37.7353146],[20.7814487,37.7347714],[20.7816413,37.7345154],[20.7824563,37.7340331],[20.7837311,37.7331489],[20.784166,37.7330617],[20.7846626,37.7331203],[20.7849635,37.7329844],[20.7850584,37.7328879],[20.7849189,37.7327039],[20.7849696,37.7325791],[20.7854459,37.7323218],[20.7859862,37.7321564],[20.7871958,37.7314686],[20.7873911,37.7311496],[20.787663,37.7308957],[20.786954,37.7311579],[20.7856607,37.7311587],[20.7854021,37.7311066],[20.7850269,37.7308621],[20.7846585,37.7307259],[20.7840423,37.7305469],[20.7837779,37.7305509],[20.7838658,37.7303551],[20.784817,37.7296063],[20.7849776,37.7293043],[20.7850013,37.7290167],[20.7849986,37.7289242],[20.7847829,37.7289521],[20.7846942,37.7289047],[20.7848028,37.7284932],[20.7849559,37.7283622],[20.7846822,37.7282646],[20.7845756,37.7281086],[20.7840427,37.728103],[20.7837324,37.7279324],[20.7834325,37.727708],[20.7830132,37.7269127],[20.7827756,37.7266359],[20.7834633,37.7264429],[20.7842783,37.7264832],[20.7850408,37.7259004],[20.7858764,37.7249411],[20.7857294,37.7247975],[20.7856675,37.7245255],[20.786405,37.7242573],[20.7865452,37.7239007],[20.786469,37.7238266],[20.7858752,37.7236572],[20.7856485,37.7233898],[20.7859554,37.7231143],[20.7861725,37.7228139],[20.7859014,37.7225272],[20.7860912,37.7222328],[20.7859458,37.7219225],[20.7859244,37.7215773],[20.7860396,37.72138],[20.7863174,37.7215137],[20.7866596,37.721469],[20.7871468,37.7215836],[20.7875334,37.7207743],[20.787531,37.7203057],[20.7879407,37.7200106],[20.7890067,37.7194901],[20.7893235,37.7192464],[20.7900003,37.7185441],[20.7903729,37.71832],[20.7906929,37.7180787],[20.7912358,37.7173277],[20.7910419,37.7173809],[20.7906594,37.7173075],[20.7899532,37.7175089],[20.7898883,37.7174351],[20.7897131,37.7174213],[20.7893648,37.7170041],[20.7901581,37.7159401],[20.7903552,37.7153148],[20.7908723,37.7148964],[20.790521,37.7146278],[20.7903522,37.7143349],[20.7903572,37.7140873],[20.7901415,37.7138291],[20.7901653,37.7134874],[20.7897726,37.7134429],[20.789609,37.7135556],[20.7894707,37.7136059],[20.7887344,37.7135317],[20.7884239,37.7136314],[20.7882434,37.7136084],[20.7879914,37.7134034],[20.787802,37.7131459],[20.7876844,37.7132418],[20.7869703,37.7127088],[20.7863774,37.7123052],[20.7859122,37.7122857],[20.7854551,37.7118408],[20.7853453,37.7114954],[20.7847828,37.7113359],[20.7843739,37.7116131],[20.7838283,37.7110148],[20.7845548,37.7105233],[20.7851424,37.7103119],[20.7844377,37.7103467],[20.7838651,37.7104752],[20.7824711,37.7109777],[20.7823364,37.710947],[20.7823176,37.7108564],[20.7829316,37.710033],[20.7831085,37.7096144],[20.7830585,37.7091986],[20.7827967,37.7089572],[20.7822242,37.7087726],[20.7815089,37.7082395],[20.7809082,37.7077096],[20.7796687,37.7072928],[20.779496,37.7073511],[20.7789034,37.7078124],[20.7786553,37.7077786],[20.7781308,37.7075841],[20.7776538,37.707571],[20.7774092,37.7075351],[20.7769936,37.7072894]]},{"id":16777,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03bf\u03b9\u03bb\u03b9\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2-\u039c. \u03a5\u03c0\u03b5\u03c1\u03b1\u03b3\u03ac\u03b8\u03bf\u03c5","description_GR":"\u03a0\u03b1\u03bb\u03b9\u03ad\u03c2 \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b6\u03ce\u03bd\u03b5\u03c2 \u03c4\u03b7\u03c2 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5","path":"ISLANDS\/Islands_Zakynthos_ZanteTrail_3","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":4498,"name_EN":"Zakynthos: Kiliomenos-Yperaghathou mon.","description_EN":"Old rural landscapes of Zakynthos","ascent_time":105,"descent_time":100,"marker":"No_marks","level":12,"ascent":150,"descent":136,"maxelev":544,"minelev":441,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.761 37.7476,20.77599 37.77297)","views":13,"millestones":"0,20.7739308,37.7475396#1,20.7715333,37.7537419#2,20.7715065,37.7608311#3,20.7693042,37.7669327#4,20.7642224,37.7701543#4.5,20.7609999,37.7728754","x":20.7690911,"y":37.762748,"coor":[[20.7739308,37.7475396],[20.7745307,37.7477047],[20.7746269,37.7477343],[20.7747953,37.747775],[20.7750014,37.747632],[20.7752018,37.7479798],[20.7749134,37.7483503],[20.7753212,37.7485755],[20.77549,37.7486071],[20.7757022,37.7488922],[20.7759242,37.7490064],[20.77541,37.7493257],[20.7744069,37.7503704],[20.7737222,37.7509823],[20.7735088,37.751454],[20.7728733,37.7517158],[20.7727033,37.7518959],[20.7724027,37.7525453],[20.7722401,37.7531535],[20.7719797,37.75366],[20.7710877,37.7538202],[20.7718388,37.7542913],[20.7717875,37.7547944],[20.77168,37.7549176],[20.7715811,37.7552843],[20.7714974,37.7556424],[20.7715857,37.7562214],[20.7715685,37.7566173],[20.7713519,37.757161],[20.7710521,37.7575312],[20.7703568,37.7578635],[20.7694781,37.7592021],[20.7696919,37.759244],[20.7699533,37.7594944],[20.7703962,37.7597498],[20.7712771,37.7605285],[20.771304,37.7606396],[20.771522,37.7608438],[20.7718648,37.7610515],[20.7716413,37.7613359],[20.7710407,37.7618375],[20.770762,37.761983],[20.7704402,37.762026],[20.7701537,37.7620902],[20.7696264,37.7624721],[20.7690911,37.762748],[20.7685642,37.7628597],[20.7683187,37.7629701],[20.7677988,37.7634423],[20.767676,37.7639165],[20.7674708,37.7641991],[20.7674621,37.7643971],[20.7675665,37.7646072],[20.7675977,37.7651441],[20.767765,37.7654731],[20.7677962,37.7657983],[20.76823,37.7662606],[20.7682405,37.7668015],[20.7684035,37.7669682],[20.7692099,37.7669542],[20.7699323,37.7667849],[20.7707581,37.7663751],[20.7708515,37.7664204],[20.7708429,37.7666184],[20.7705164,37.7670779],[20.770599,37.7673978],[20.7706911,37.7676278],[20.7704569,37.7681845],[20.7702575,37.7683322],[20.7690366,37.76856],[20.7679639,37.768954],[20.7677907,37.7691519],[20.7670605,37.76924],[20.766706,37.7690411],[20.766491,37.7690261],[20.7659667,37.7693361],[20.7652259,37.7694058],[20.7649202,37.7696497],[20.7644331,37.7698886],[20.7643556,37.7701027],[20.7639631,37.7702541],[20.7636699,37.7704712],[20.7634936,37.7706105],[20.7630882,37.7707976],[20.7628805,37.7711343],[20.762737,37.7715628],[20.7623945,37.7718687],[20.7623189,37.7725604],[20.7617664,37.7729956],[20.7613536,37.7728311],[20.7609999,37.7728754]]},{"id":16778,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039c. \u03a5\u03c0\u03b5\u03c1\u03b1\u03b3\u03ac\u03b8\u03bf\u03c5-\u039b\u03bf\u03cd\u03c7\u03b1","description_GR":"\u03a0\u03b1\u03bb\u03b9\u03ad\u03c2 \u03b1\u03b3\u03c1\u03bf\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b6\u03ce\u03bd\u03b5\u03c2 \u03c4\u03b7\u03c2 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5","path":"ISLANDS\/Islands_Zakynthos_ZanteTrail_4","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":4434,"name_EN":"Zakynthos: Yperaghathou mon.-Loucha","description_EN":"Old rural landscapes of Zakynthos","ascent_time":100,"descent_time":100,"marker":"No_marks","level":12,"ascent":54,"descent":62,"maxelev":499,"minelev":450,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.72545 37.77176,20.76105 37.79398)","views":23,"millestones":"0,20.7609996,37.7728777#1,20.7528923,37.7763029#2,20.7442395,37.7811578#3,20.7361099,37.7865356#4,20.7288640,37.7912796#4.4,20.7254479,37.7939854","x":20.7421069,"y":37.7820529,"coor":[[20.7609996,37.7728777],[20.7589906,37.7717075],[20.7588174,37.7717748],[20.7582004,37.7723885],[20.757579,37.7733624],[20.757342,37.7735901],[20.7564351,37.7735651],[20.7560007,37.7738955],[20.755214,37.7746757],[20.7545434,37.7752158],[20.7537142,37.7755668],[20.7532477,37.7758513],[20.7526821,37.7765835],[20.7521258,37.776924],[20.7513297,37.7772174],[20.7510489,37.7772547],[20.7502717,37.7770373],[20.7494119,37.7772297],[20.7488829,37.777285],[20.7485943,37.7773941],[20.7481184,37.7778945],[20.7466905,37.7791344],[20.7460585,37.7795674],[20.7459186,37.7797055],[20.7449557,37.7805888],[20.7446772,37.7809865],[20.7443247,37.7811277],[20.7436444,37.7813701],[20.7430787,37.7813275],[20.7427584,37.7813817],[20.7423314,37.781541],[20.7422095,37.7817854],[20.7421069,37.7820529],[20.7418414,37.782746],[20.740926,37.7836351],[20.7406267,37.7839872],[20.7394025,37.7847191],[20.7385311,37.7847873],[20.7383794,37.7848822],[20.7377937,37.7855507],[20.7371815,37.7860473],[20.7365299,37.7864076],[20.7355519,37.7867049],[20.7349938,37.7870047],[20.7346417,37.7872652],[20.73413,37.7878006],[20.7336247,37.7881132],[20.7333353,37.7882403],[20.7328911,37.788273],[20.7316618,37.7888605],[20.7313559,37.7891043],[20.7308554,37.78964],[20.7306585,37.7892674],[20.7300054,37.7888889],[20.7295578,37.7894598],[20.7294819,37.7901514],[20.7292012,37.7905941],[20.7289989,37.7908047],[20.7290035,37.790958],[20.7288391,37.7913408],[20.7283519,37.7918318],[20.7276618,37.7922901],[20.72701,37.7929117],[20.7263058,37.7932502],[20.7254479,37.7939854]]},{"id":16779,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039b\u03bf\u03cd\u03c7\u03b1-\u039a\u03b1\u03bb\u03bb\u03b9\u03b8\u03ad\u03b1","description_GR":"\u039b\u03bf\u03cd\u03c7\u03b1-\u0393\u03cd\u03c1\u03b9-\u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a7\u03b1\u03b3\u03b9\u03ce\u03c4\u03b7-\u039a\u03b1\u03bb\u03bb\u03b9\u03b8\u03ad\u03b1","path":"ISLANDS\/Islands_Zakynthos_ZanteTrail_5","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":3,"length":6642,"name_EN":"Zakynthos: Loucha-Kalithea","description_EN":"Loucha-Ghyri-Chaghiotis cave-Kalithea","ascent_time":165,"descent_time":180,"marker":"No_marks","level":12,"ascent":131,"descent":489,"maxelev":578,"minelev":127,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.72491 37.79276,20.76774 37.80624)","views":64,"millestones":"0,20.7254499,37.7939855#1,20.7321208,37.7948463#2,20.7394107,37.7989448#3,20.7483029,37.7948552#4,20.7574505,37.7937156#5,20.7648469,37.7974657#6,20.7651475,37.8029241#6.6,20.7645146,37.8073346","x":20.7565917,"y":37.7936675,"coor":[[20.7254499,37.7939855],[20.7255953,37.7940346],[20.7256921,37.7941566],[20.726205,37.7940831],[20.7268591,37.7936688],[20.7272463,37.7934363],[20.7276531,37.7933508],[20.7275328,37.7937619],[20.7279768,37.7935287],[20.7281501,37.7934614],[20.7282271,37.7935176],[20.7273962,37.7951072],[20.7278413,37.7947232],[20.728308,37.7944388],[20.7292563,37.794303],[20.731449,37.7945261],[20.7316735,37.7945864],[20.7321163,37.794842],[20.7323481,37.7950691],[20.7323977,37.7952327],[20.7322624,37.7957244],[20.7322946,37.7958199],[20.7325095,37.7957854],[20.7338939,37.795031],[20.7343178,37.7949436],[20.7349584,37.7949884],[20.7350347,37.7950356],[20.7352599,37.7950779],[20.7354565,37.7952545],[20.735886,37.7963295],[20.7362671,37.7968807],[20.7371048,37.7974535],[20.738352,37.7981908],[20.7386284,37.798694],[20.7394567,37.7989647],[20.7404708,37.7988847],[20.7407065,37.7989452],[20.7412529,37.7989153],[20.7419241,37.7986276],[20.7420909,37.7981907],[20.7425586,37.7981406],[20.7433868,37.7981545],[20.7448218,37.7977978],[20.7451848,37.7975466],[20.7454888,37.7970865],[20.7458198,37.7967893],[20.7461433,37.7966631],[20.7463472,37.7963624],[20.7464115,37.7959317],[20.7464964,37.795808],[20.7472696,37.795523],[20.7480159,37.7950751],[20.7485988,37.7946227],[20.7486667,37.7946291],[20.7488178,37.7946536],[20.7491275,37.794581],[20.7494213,37.7944067],[20.7495653,37.7942305],[20.7497728,37.7936416],[20.7500854,37.7931907],[20.7507226,37.7926407],[20.7512662,37.7924125],[20.751651,37.7924411],[20.752541,37.7923395],[20.7532676,37.7925758],[20.7540582,37.7926697],[20.7552152,37.7926926],[20.7553708,37.792769],[20.7557707,37.7932305],[20.7563227,37.793588],[20.7565917,37.7936675],[20.7574187,37.7937083],[20.7577425,37.7937803],[20.7590618,37.7942491],[20.7595205,37.7941446],[20.760089,37.7943855],[20.7607087,37.7944927],[20.7618013,37.7944326],[20.7623739,37.794061],[20.7624709,37.7939195],[20.7624824,37.7938094],[20.7626502,37.7938681],[20.7629597,37.7945794],[20.7628692,37.7953517],[20.7629779,37.7954628],[20.7629154,37.795594],[20.7629604,37.7956042],[20.7630972,37.7957724],[20.7632103,37.7957845],[20.7632133,37.7959738],[20.7634233,37.7961057],[20.7635685,37.7964453],[20.7639587,37.7968705],[20.7645898,37.7972392],[20.7648849,37.7974996],[20.7651801,37.7980212],[20.7655824,37.7984287],[20.7656981,37.7986391],[20.766079,37.7987577],[20.7661478,37.7990029],[20.7666174,37.7994302],[20.7666963,37.7997027],[20.7665489,37.7997797],[20.7663849,37.7997369],[20.7662245,37.8000298],[20.7663849,37.7997369],[20.7665489,37.7997797],[20.7667251,37.7998003],[20.7668265,37.7998166],[20.7670459,37.7997325],[20.7673569,37.7993717],[20.7674566,37.7993767],[20.767241,37.7997627],[20.7670642,37.799911],[20.7670939,37.8000109],[20.7666864,37.800243],[20.7667035,37.8006308],[20.7668122,37.8007419],[20.7663728,37.8011601],[20.7661256,37.8016218],[20.7654821,37.8023158],[20.7652274,37.8026872],[20.7651449,37.8029395],[20.7650749,37.8029826],[20.764812,37.8032817],[20.7648163,37.803444],[20.7645648,37.8037434],[20.7646105,37.8039969],[20.7644842,37.8040295],[20.7645354,37.8041571],[20.7638149,37.8046891],[20.7640533,37.8052092],[20.764171,37.8054512],[20.764293,37.8059613],[20.7644505,37.8062539],[20.764606,37.806488],[20.7644387,37.8066545],[20.7643683,37.8067067],[20.7643987,37.8070499],[20.7643961,37.8071872],[20.7645146,37.8073346]]},{"id":16780,"author":"AnaDigit","name_GR":"\u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf\u03c2: \u039a\u03b1\u03bb\u03bb\u03b9\u03b8\u03ad\u03b1-\u039c. \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5","description_GR":"\u0397 \u03b2\u03cc\u03c1\u03b5\u03b9\u03b1 \u03ac\u03ba\u03c1\u03b7 \u03c4\u03b7\u03c2 \u03a1\u03af\u03b6\u03b1\u03c2","path":"ISLANDS\/Islands_Zakynthos_ZanteTrail_6","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":7591,"name_EN":"Zakynthos: Kalithea- Prodromos mon.","description_EN":"Crossing the mountains foundations","ascent_time":165,"descent_time":170,"marker":"No_marks","level":12,"ascent":327,"descent":342,"maxelev":384,"minelev":121,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(20.73523 37.80719,20.76452 37.84996)","views":28,"millestones":"0,20.7645148,37.8073369#1,20.7578413,37.8122433#2,20.7539145,37.8204384#3,20.7485766,37.8280975#4,20.7447437,37.8316697#5,20.7392772,37.8372543#6,20.7370420,37.8407434#7,20.7422302,37.8469648#7.6,20.7428616,37.8501698","x":20.7390314,"y":37.8348602,"coor":[[20.7645148,37.8073369],[20.7644158,37.8075481],[20.7642313,37.807694],[20.763909,37.8076873],[20.7637749,37.8076386],[20.7636623,37.8074103],[20.7634292,37.8072867],[20.7630299,37.8073298],[20.7628101,37.8071616],[20.7626861,37.8071402],[20.7625379,37.8071541],[20.7623406,37.8074055],[20.7623347,37.8075404],[20.7621106,37.8077325],[20.7620655,37.8080128],[20.762064,37.8080195],[20.7613715,37.8086108],[20.7610571,37.8087396],[20.7608564,37.8091755],[20.7604327,37.8095152],[20.7600147,37.810033],[20.7598541,37.8101232],[20.7597175,37.8103897],[20.7595159,37.811105],[20.7593938,37.8112998],[20.7590957,37.8113637],[20.7585705,37.811169],[20.758133,37.8117471],[20.7579342,37.812138],[20.7575038,37.8126307],[20.7571929,37.8137664],[20.7571954,37.8139691],[20.7572101,37.8149291],[20.7568567,37.8157392],[20.7562173,37.8176316],[20.7558552,37.8183784],[20.7553433,37.8191751],[20.7545153,37.8199271],[20.7536466,37.820678],[20.753211,37.8212336],[20.7527805,37.8217803],[20.7526086,37.8220728],[20.7522999,37.8223797],[20.7515537,37.8238546],[20.7509905,37.8245238],[20.7507334,37.8246879],[20.7504637,37.8251399],[20.749611,37.825675],[20.7495738,37.825719],[20.7491331,37.8262113],[20.7488175,37.8269324],[20.7489434,37.8271701],[20.7489014,37.8273491],[20.7484476,37.8283727],[20.7481137,37.8287329],[20.7486399,37.8291889],[20.7485778,37.8302165],[20.7482481,37.8303515],[20.7483313,37.8305498],[20.7483664,37.830785],[20.7482944,37.8308731],[20.7481411,37.8307427],[20.747906,37.8306642],[20.7465328,37.8306352],[20.7454484,37.8304971],[20.7454676,37.8305787],[20.7465013,37.8310938],[20.7462859,37.8316014],[20.7455589,37.8318606],[20.7457507,37.8316317],[20.7457433,37.8315414],[20.7454061,37.8314599],[20.7447608,37.8316673],[20.7443461,37.8317234],[20.7439952,37.8317723],[20.7427394,37.8324313],[20.7420689,37.8329533],[20.7417706,37.8332783],[20.7406948,37.833717],[20.7396518,37.8344449],[20.7391677,37.8346027],[20.7390314,37.8348602],[20.7388964,37.8356042],[20.7388016,37.8356917],[20.7385019,37.8357915],[20.7384141,37.8359783],[20.7385854,37.8362173],[20.7386934,37.8362428],[20.7390115,37.8363192],[20.7391812,37.8363599],[20.7396118,37.8366421],[20.7396817,37.8368603],[20.7396514,37.8370306],[20.7392747,37.8372545],[20.7389047,37.8374019],[20.7386485,37.8378002],[20.7383472,37.837936],[20.7376931,37.8378278],[20.7373626,37.8378276],[20.7371817,37.8378316],[20.7366513,37.8374925],[20.7364702,37.8374785],[20.7360964,37.8377114],[20.7358261,37.8381724],[20.7363509,37.8384572],[20.7365044,37.8388399],[20.7367129,37.838724],[20.7368127,37.8387809],[20.7368083,37.8388799],[20.7368032,37.8389968],[20.736637,37.8391814],[20.7366558,37.839272],[20.7370761,37.839581],[20.737294,37.8397402],[20.7373464,37.8398408],[20.7372982,37.8399566],[20.7365755,37.8398554],[20.7356704,37.8400285],[20.7359846,37.8401183],[20.7365965,37.8401533],[20.7368364,37.8406375],[20.7371364,37.8407899],[20.737355,37.8409852],[20.7376793,37.8411023],[20.7382067,37.8412521],[20.7388797,37.8411897],[20.7392956,37.8412913],[20.7397121,37.8416362],[20.740047,37.8417716],[20.7399992,37.8418243],[20.7396467,37.8418326],[20.7396321,37.8419042],[20.7402369,37.8421012],[20.7406128,37.8423368],[20.740935,37.8427602],[20.7409726,37.8428378],[20.7412262,37.8433719],[20.7416549,37.8436991],[20.7418984,37.8448771],[20.7418226,37.8453074],[20.7418739,37.8459485],[20.7419699,37.8463476],[20.7421182,37.846622],[20.7422115,37.8467958],[20.7422407,37.8470894],[20.7421971,37.8473044],[20.7417709,37.8474367],[20.7417598,37.8475063],[20.7413505,37.847567],[20.7412455,37.8476272],[20.7412042,37.8477679],[20.7410531,37.8480745],[20.7409683,37.8482456],[20.7412804,37.8484885],[20.7415015,37.8484699],[20.7416608,37.8484653],[20.7420516,37.8486202],[20.742358,37.8486287],[20.7425183,37.84873],[20.7427084,37.8495732],[20.7429434,37.849913],[20.7428616,37.8501698]]}],{"extent":[20.6251,37.65481,20.98676,37.93195],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"redirect"},"sort":{"type":"none"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":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_Zakynthos_Bochali_1":{"url":null,"color":"#06df26","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Bochali_3":{"url":null,"color":"#2f64ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Bochali_4":{"url":null,"color":"#fffc2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Bochali_5":{"url":null,"color":"#ff2fe9","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Bochali_5a":{"url":null,"color":"#2fff34","width":7,"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_zakynthos = new getPoiCollection("zakynthos",[{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039d\u03b1\u03c5\u03ac\u03b3\u03b9\u03bf","owner":"anadigit","x":20.62474,"y":37.860163,"photo":"Zakinthos_navagio","type":0,"zoom_level":10,"id":51,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039d\u03b1\u03c5\u03ac\u03b3\u03b9\u03bf \u03ad\u03c7\u03b5\u03b9 \u03c0\u03ac\u03c1\u03b5\u03b9 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c4\u03b7\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ba\u03bf\u03c5\u03c6\u03ac\u03c1\u03b9 \u03c4\u03bf\u03c5 \u03c0\u03bb\u03bf\u03af\u03bf\u03c5 \"\u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ce\u03c4\u03b7\u03c2\" \u03c0\u03bf\u03c5 \u03bd\u03b1\u03c5\u03ac\u03b3\u03b7\u03c3\u03b5 \u03c4\u03bf 1982 \u03bc\u03b5\u03c4\u03b1\u03c6\u03ad\u03c1\u03bf\u03bd\u03c4\u03b1\u03c2 \u03bb\u03b1\u03b8\u03c1\u03b1\u03af\u03b1 \u03c4\u03c3\u03b9\u03b3\u03ac\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03be\u03b5\u03b2\u03c1\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b1\u03ba\u03c4\u03ae (\u03b7 \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c4\u03cc\u03c4\u03b5 \u03bb\u03b5\u03b3\u03cc\u03c4\u03b1\u03bd \u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2). \u039f\u03b9 \u03c8\u03b1\u03c1\u03ac\u03b4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03c3\u03c0\u03b5\u03c5\u03c3\u03b1\u03bd \u03b8\u03c5\u03bc\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c7\u03b9\u03bb\u03b9\u03ac\u03b4\u03b5\u03c2 \u03ba\u03bf\u03cd\u03c4\u03b5\u03c2 \u03c4\u03c3\u03b9\u03b3\u03ac\u03c1\u03c9\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03c5\u03bd \u03c3\u03c4\u03bf \u03bd\u03b5\u03c1\u03cc \u03ba\u03b1\u03b9 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03c4\u03b1 \u03bc\u03ad\u03bb\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03bb\u03b7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03bd\u03b1 \u03ba\u03bf\u03bb\u03c5\u03bc\u03c0\u03bf\u03cd\u03bd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03c6\u03cd\u03b3\u03bf\u03c5\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03ba\u03c4\u03bf\u03c6\u03c5\u03bb\u03b1\u03ba\u03ae.","height":1200,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f\u03b9 \u0393\u03b1\u03bb\u03ac\u03b6\u03b9\u03b5\u03c2 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ad\u03c2","owner":"A. Bonetti","x":20.70515,"y":37.931404,"photo":"Zakynthos - Blue caves 02","type":0,"zoom_level":12,"id":257,"hlink_GR":"","hlink_EN":"","description":"","height":342,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0393\u03b5\u03bd\u03b9\u03ba\u03ae \u03ac\u03c0\u03bf\u03c8\u03b7 \u03c4\u03c9\u03bd \u0391\u03bb\u03c5\u03ba\u03ce\u03bd","owner":"AnaDigit","x":20.761763572695,"y":37.842151271199,"photo":"Zakinthos_Alykes","type":0,"zoom_level":13,"id":267,"hlink_GR":"","hlink_EN":"","description":"","height":262,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03bd\u03b4\u03c1\u03ad\u03b1\u03c2
\u03a0\u03b1\u03bb\u03b9\u03ac \u039b\u03b1\u03b3\u03ba\u03b1\u03b4\u03ac\u03ba\u03b9\u03b1","owner":"AnaDigit","x":20.796267509462,"y":37.766536933921,"photo":"AgiosAndreas_Palia_Lagadakia3","type":9,"zoom_level":15,"id":268,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":340},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1
\u03a0\u03b1\u03bb\u03b9\u03ac \u039a\u03b1\u03bb\u03bb\u03b9\u03b8\u03ad\u03b1","owner":"AnaDigit","x":20.763648,"y":37.807131,"photo":"AgMarina_Palia_Kallithea1","type":9,"zoom_level":15,"id":269,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":340},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039b\u03b1\u03b3\u03b1\u03bd\u03ac\u03c2","owner":"AnaDigit","x":20.924776,"y":37.741946,"photo":"Zakinthos_Skopos_peninsula","type":0,"zoom_level":12,"id":270,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c0\u03b5\u03b4\u03b9\u03ac\u03b4\u03b1 \u03c4\u03bf\u03c5 \u039b\u03b1\u03b3\u03b1\u03bd\u03ac \u03bc\u03b5 \u03c4\u03b7 \u03c7\u03b5\u03c1\u03c3\u03cc\u03bd\u03b7\u03c3\u03bf \u03c4\u03bf\u03c5 \u03a3\u03ba\u03bf\u03c0\u03bf\u03cd \u03c3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2","height":309,"width":412},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03ba\u03b1\u03bc\u03c0\u03b1\u03bd\u03b1\u03c1\u03b9\u03cc \u03c4\u03bf\u03c5 \u0391\u03b3. \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5 \u03c3\u03c4\u03bf\u03bd \u039a\u03bf\u03b9\u03bb\u03b9\u03c9\u03bc\u03ad\u03bd\u03bf","owner":"AnaDigit","x":20.773791779098,"y":37.747431058549,"photo":"Zakinthos_AgNikolaos_Koiliomeno","type":9,"zoom_level":14,"id":271,"hlink_GR":"","hlink_EN":"","description":"","height":340,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039c\u03c5\u03ba\u03b7\u03bd\u03b1\u03ca\u03ba\u03cc \u03bd\u03b5\u03ba\u03c1\u03bf\u03c4\u03b1\u03c6\u03b5\u03af\u03bf
\u03c3\u03c4\u03bf \u039a\u03b1\u03bc\u03c0\u03af","owner":"AnaDigit","x":20.68031024933,"y":37.779427359919,"photo":"Zakinthos_mcenean_tombs_Kambi","type":10,"zoom_level":14,"id":272,"hlink_GR":"","hlink_EN":"","description":"","height":340,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 \u0391\u03bd\u03b1\u03c6\u03c9\u03bd\u03ae\u03c4\u03c1\u03b9\u03b1\u03c2","owner":"AnaDigit","x":20.64657878876,"y":37.843845772461,"photo":"Zakinthos_Anafonitria_tower","type":10,"zoom_level":13,"id":273,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":381},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039d\u03b1\u03cc\u03c2 \u039a\u03c5\u03c1\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u0391\u03b3\u03b3\u03ad\u03bb\u03c9\u03bd","owner":"AnaDigit","x":20.899795413017,"y":37.789352304269,"photo":"Zakinthos_Kyria_ton_Agelon","type":10,"zoom_level":15,"id":274,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bc\u03bd\u03b7\u03bc\u03b5\u03b9\u03b1\u03ba\u03ae \u03c0\u03c1\u03cc\u03c3\u03bf\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03bd\u03b1\u03bf\u03cd \u03c4\u03b7\u03c2 \u039a\u03c5\u03c1\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u0391\u03b3\u03b3\u03ad\u03bb\u03c9\u03bd","height":340,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f\u03c1\u03b5\u03b9\u03bd\u03ae \u03ba\u03b1\u03bb\u03cd\u03b2\u03b1","owner":"AnaDigit","x":20.718118667604,"y":37.814525411771,"photo":"Zakinthos_Koumos","type":9,"zoom_level":14,"id":275,"hlink_GR":"","hlink_EN":"","description":"\u039a\u03b1\u03bb\u03cd\u03b2\u03b1 \u03bc\u03b5 \u03b5\u03ba\u03c6\u03bf\u03c1\u03b9\u03ba\u03ae \u03c3\u03c4\u03ad\u03b3\u03b7, \u03c4\u03b5\u03c7\u03bd\u03b9\u03ba\u03ae \u03c3\u03c5\u03bd\u03ae\u03b8\u03b7\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03ba\u03c1\u03b7\u03c4\u03b9\u03ba\u03bf\u03cd\u03c2 \u03ba\u03bf\u03cd\u03bc\u03bf\u03c5\u03c2","height":340,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039c. \u0391\u03b3. \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5 \u039a\u03c1\u03b7\u03bc\u03bd\u03ce\u03bd
\u03b1\u03bc\u03c5\u03bd\u03c4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2","owner":"AnaDigit","x":20.63636493683,"y":37.859331709758,"photo":"Zakinthos_AgGeorgios_Krimnon","type":10,"zoom_level":14,"id":276,"hlink_GR":"http:\/\/zantemonastery.com\/wordpress\/?p=234","hlink_EN":"","description":"","height":512,"width":340},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039a\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bb\u03b9\u03ac \u039a\u03b1\u03bb\u03bb\u03b9\u03b8\u03ad\u03b1","owner":"AnaDigit","x":20.76458,"y":37.806161,"photo":"Zakinthos_Krini_ palia_Kallithea","type":9,"zoom_level":14,"id":277,"hlink_GR":"","hlink_EN":"","description":"","height":244,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0392\u03b1\u03c1\u03b4\u03b9\u03cc\u03bb\u03b1
\u03c4\u03b7\u03c2 \u039a\u03c5\u03c8\u03ad\u03bb\u03b7\u03c2","owner":"AnaDigit","x":20.834719657897,"y":37.832119026289,"photo":"Zakinthos_Vardiola_tis_Kipselis1","type":9,"zoom_level":13,"id":281,"hlink_GR":"","hlink_EN":"","description":"\u039b\u03b9\u03b8\u03b1\u03bd\u03ac\u03b3\u03bb\u03c5\u03c6\u03bf \u03ad\u03bc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03b2\u03b1\u03c1\u03b4\u03b9\u03cc\u03bb\u03b1 \u03c4\u03b7\u03c2 \u039a\u03c5\u03c8\u03ad\u03bb\u03b7\u03c2","height":340,"width":512},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0392\u03b1\u03c1\u03b4\u03b9\u03cc\u03bb\u03b1
\u03c4\u03bf\u03c5 \u03a4\u03c3\u03b9\u03bb\u03b9\u03b2\u03af","owner":"AnaDigit","x":20.866434097289,"y":37.820593818135,"photo":"Zakinthos_Vardiola_Tsilivi","type":9,"zoom_level":14,"id":282,"hlink_GR":"","hlink_EN":"","description":"\u039b\u03b9\u03b8\u03b1\u03bd\u03ac\u03b3\u03bb\u03c5\u03c6\u03bf \u03ad\u03bc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c3\u03c4\u03b7 \u03b2\u03b1\u03c1\u03b4\u03b9\u03cc\u03bb\u03b1 \u03c4\u03bf\u03c5 \u03a4\u03c3\u03b9\u03bb\u03b9\u03b2\u03af","height":512,"width":340},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f\u03b9 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ad\u03c2 \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03af","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":20.838936090469,"y":37.64830682543,"photo":"Zakinthos_Keri_caves_Rousos","type":0,"zoom_level":14,"id":654,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f\u03b9 \u03c3\u03c0\u03b7\u03bb\u03b9\u03ad\u03c2 \u03c3\u03c4\u03bf \u039c\u03b1\u03c1\u03b1\u03b8\u03bf\u03bd\u03ae\u03c3\u03b9","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":20.870006799699,"y":37.683496785238,"photo":"Zakinthos_Marathonisi_caves_Rousos","type":0,"zoom_level":13,"id":655,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":600},{"name":"\u03a0\u0391\u039d\u0399\u0394\u0391
\u0398\u03b1\u03bb\u03ac\u03c3\u03c3\u03b9\u03b1 \u03c7\u03b5\u03bb\u03ce\u03bd\u03b1 C. caretta","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":20.891538,"y":37.726006,"photo":"Zakinthos_Caretta_Rousos","type":8,"zoom_level":12,"id":656,"hlink_GR":"","hlink_EN":"","description":"","height":378,"width":600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u0391\u03c1\u03b3\u03ac\u03c3\u03b9","owner":"AnaDigit","x":20.919032267083,"y":37.755252184062,"photo":"Zakynthos_Argasi_AgAthanasios_11","type":9,"zoom_level":15,"id":3796,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03ac \u03ba\u03c1\u03ae\u03bd\u03b7 \u03c3\u03c4\u03bf \u03cc\u03c1\u03bf\u03c2 \u03a3\u03ba\u03bf\u03c0\u03cc\u03c2","owner":"AnaDigit","x":20.93401,"y":37.745768,"photo":"DSC076641","type":1001,"zoom_level":16,"id":3797,"hlink_GR":"","hlink_EN":"","description":"","height":611,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a3\u03ba\u03bf\u03c0\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","owner":"AnaDigit","x":20.933515,"y":37.743536,"photo":"DSC076681","type":9,"zoom_level":14,"id":3798,"hlink_GR":"","hlink_EN":"","description":"","height":502,"width":1600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bd\u03bf\u03c1\u03b1\u03bc\u03b9\u03ba\u03ae \u03b8\u03ad\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a3\u03ba\u03bf\u03c0\u03cc","owner":"AnaDigit","x":20.931518,"y":37.74297,"photo":"zakynthos_pano11","type":0,"zoom_level":14,"id":3799,"hlink_GR":"","hlink_EN":"","description":"","height":277,"width":1600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03c0\u03cc\u03bb\u03b7 \u03c4\u03b7\u03c2 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a3\u03ba\u03bf\u03c0\u03cc","owner":"AnaDigit","x":20.8978182881,"y":37.782591255348,"photo":"Zakynthos_town_01","type":0,"zoom_level":13,"id":3800,"hlink_GR":"","hlink_EN":"","description":"","height":659,"width":1400},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0395\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03b7 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03bf \u0391\u03c1\u03b3\u03ac\u03c3\u03b9","owner":"AnaDigit","x":20.913988,"y":37.75496,"photo":"Zakynthos_Argasi_chu_11","type":9,"zoom_level":15,"id":3801,"hlink_GR":"","hlink_EN":"","description":"","height":585,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03c1\u03bf\u03c4\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5 \u039a\u03bf\u03c5\u03bc\u03c6\u03bf\u03cd\u03ba\u03b9\u03bf\u03c5 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.897456,"y":37.781993,"photo":"DSC076871","type":9,"zoom_level":17,"id":3802,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":567},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03ac\u03b3\u03b1\u03bb\u03bc\u03b1 \u03c4\u03bf\u03c5 \u0394\u03b9\u03bf\u03bd\u03cd\u03c3\u03b9\u03bf\u03c5 \u03a3\u03bf\u03bb\u03c9\u03bc\u03bf\u03cd","owner":"AnaDigit","x":20.89997780323,"y":37.786834097718,"photo":"Zakynthos_Solomos_11","type":9,"zoom_level":16,"id":3804,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":510},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039c\u03ce\u03bb\u03bf\u03c5","owner":"AnaDigit","x":20.900592,"y":37.786979,"photo":"Zakynthos_AgNikolaos_Molou1","type":9,"zoom_level":16,"id":3805,"hlink_GR":"","hlink_EN":"","description":"","height":575,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03a4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b7\u03c2 \u03c3\u03c4\u03b9\u03c2 \u0395\u03bb\u03b9\u03ad\u03c2","owner":"AnaDigit","x":20.667368,"y":37.904353,"photo":"Zakynthos_Elies_Taxiarxes_11","type":9,"zoom_level":15,"id":3806,"hlink_GR":"","hlink_EN":"","description":"","height":818,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u0395\u03c5\u03b1\u03b3\u03b3\u03bb\u03af\u03c3\u03c4\u03c1\u03b9\u03b1 \u03c3\u03c4\u03bf \u0393\u03b5\u03c1\u03b1\u03ba\u03ac\u03c1\u03b9","owner":"AnaDigit","x":20.806201699736,"y":37.81407390445,"photo":"Zakynthos_Gerakari_Evagelistria_51","type":9,"zoom_level":15,"id":3807,"hlink_GR":"","hlink_EN":"","description":"","height":481,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03b4\u03b9\u03c0\u03bb\u03cc \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03c4\u03bf\u03c5 \u0394\u03b1\u03bc\u03b9\u03b1\u03bd\u03bf\u03cd \u03c3\u03c4\u03bf\u03bd \u0391\u03b3\u03b1\u03bb\u03ac","owner":"AnaDigit","x":20.772255997349,"y":37.705733758029,"photo":"Zakynthos_Agalas_Damianos_11","type":73,"zoom_level":15,"id":3808,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03b1 \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u0391\u03bd\u03b4\u03c1\u03c9\u03bd\u03b9\u03bf\u03cd \u03c3\u03c4\u03bf\u03bd \u0391\u03b3\u03b1\u03bb\u03ac","owner":"AnaDigit","x":20.776215,"y":37.696621,"photo":"Zakynthos_Agalas_Andronios_31","type":1001,"zoom_level":14,"id":3809,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf\u03bd \u03c4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b7, \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b9\u03c2 \u0395\u03bb\u03b9\u03ad\u03c2","owner":"AnaDigit","x":20.667626,"y":37.904175,"photo":"Zakynthos_Elies_Taxiarxis_well1","type":1001,"zoom_level":15,"id":3810,"hlink_GR":"","hlink_EN":"","description":"","height":645,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03b1\u03bd\u03c4\u03bb\u03b7\u03c4\u03b9\u03ba\u03cc \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1 \u03c3\u03c4\u03b9\u03c2 \u0391\u03bb\u03c5\u03ba\u03ad\u03c2","owner":"AnaDigit","x":20.76451,"y":37.842605,"photo":"Zakynthos_Alykes_pumping_11","type":9,"zoom_level":15,"id":3811,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03b1\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03b7 \u039b\u03bf\u03cd\u03c7\u03b1","owner":"AnaDigit","x":20.724795,"y":37.789461,"photo":"Zakynthos_Loucha_windmill_11","type":9,"zoom_level":15,"id":3812,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.743903,"y":37.849708,"photo":"Zakynthos_simansi_11","type":450,"zoom_level":16,"id":3813,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.810296,"y":37.655628,"photo":"Zakynthos_simansi_21","type":450,"zoom_level":16,"id":3814,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.83183,"y":37.68678,"photo":"Zakynthos_simansi_31","type":450,"zoom_level":15,"id":3815,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.774498,"y":37.744215,"photo":"Zakynthos_simansi_41","type":450,"zoom_level":16,"id":3816,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.95915,"y":37.735143,"photo":"Zakynthos_simansi_51","type":450,"zoom_level":17,"id":3817,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.682308,"y":37.903831,"photo":"Zakynthos_simansi_61","type":450,"zoom_level":17,"id":3818,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0395\u03bd\u03b5\u03c4\u03b9\u03ba\u03ae \u03ba\u03c1\u03ae\u03bd\u03b7 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03bf \u0391\u03ba\u03c1\u03c9\u03c4\u03ae\u03c1\u03b9","owner":"AnaDigit","x":20.904215,"y":37.803038,"photo":"Zakynthos_venetian_fountain_12","type":1001,"zoom_level":15,"id":3819,"hlink_GR":"","hlink_EN":"","description":"","height":705,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03c1\u03c5\u03bf\u03bd\u03b5\u03c1\u03af\u03c4\u03b9\u03c3\u03c3\u03b1","owner":"AnaDigit","x":20.904650211333,"y":37.804752194968,"photo":"Zakynthos_Panagia_Kryoneritisa_11","type":9,"zoom_level":15,"id":3820,"hlink_GR":"","hlink_EN":"","description":"","height":567,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039c\u03bf\u03bd\u03ae \u03a3\u03c0\u03b7\u03bb\u03b9\u03ac\u03c2","owner":"AnaDigit","x":20.844303,"y":37.808511,"photo":"Zakynthos_moni_Spilias_11","type":9,"zoom_level":15,"id":3821,"hlink_GR":"\u039f \u03c7\u03ce\u03c1\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03bf \u03bd\u03b1\u03cc\u03c2 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03c4\u03b7\u03bd \u03bf\u03b9\u03ba\u03bf\u03b3\u03ad\u03bd\u03b5\u03b9\u03b1 \u0392\u03bf\u03cd\u03bb\u03c4\u03c3\u03bf\u03c5 (\u03ba\u03b9\u03bd. 6939318267)","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1 \u03c4\u03c9\u03bd \u0394\u03c1\u03b1\u03b3\u03c9\u03bd\u03b1\u03af\u03c9\u03bd","owner":"AnaDigit","x":20.838691,"y":37.801266,"photo":"Zakynthos_Agmarina_ton_Dhraghoneon_21","type":9,"zoom_level":15,"id":3822,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u039c\u03b5\u03b3\u03b1\u03bb\u03bf\u03bc\u03ac\u03c4\u03b7\u03c2 (10-12\u03bf\u03c2 \u03b1\u03b9.)","owner":"AnaDigit","x":20.934902,"y":37.747631,"photo":"Zakynthos_Argasi_AgNikolaos_11","type":9,"zoom_level":14,"id":3823,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1\u03c2 \u03c3\u03c4\u03b9\u03c2 \u0391\u03bb\u03c5\u03ba\u03ad\u03c2","owner":"AnaDigit","x":20.757978,"y":37.846455,"photo":"Zakynthos_Alykes_eleonas_11","type":1,"zoom_level":16,"id":3824,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03b9\u03c2 \u0391\u03bb\u03c5\u03ba\u03ad\u03c2","owner":"AnaDigit","x":20.75462,"y":37.849148,"photo":"Zakynthos_chu_Alykes1","type":9,"zoom_level":16,"id":3825,"hlink_GR":"","hlink_EN":"","description":"","height":701,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03a6\u03c4\u03b5\u03c1\u03af\u03bd\u03b1","owner":"AnaDigit","x":20.737760542331,"y":37.838733413862,"photo":"Zakynthos_Fterina1","type":0,"zoom_level":15,"id":3826,"hlink_GR":"","hlink_EN":"","description":"","height":489,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03bc\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03bf\u03c5 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7 \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5","owner":"AnaDigit","x":20.742776120376,"y":37.84794900362,"photo":"Zakynthos_mon_AgIoanis_51","type":9,"zoom_level":14,"id":3827,"hlink_GR":"","hlink_EN":"","description":"","height":666,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03b1 \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u0391\u03b3. \u0399\u03c9\u03ac\u03bd\u03bd\u03b7 \u03a0\u03c1\u03bf\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5","owner":"AnaDigit","x":20.74171,"y":37.848215,"photo":"Zakynthos_mon_AgIoanis_wells_21","type":1001,"zoom_level":16,"id":3828,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03b1 \u03bd\u03b7\u03c3\u03ac\u03ba\u03b9\u03b1 \u039c\u03c5\u03b6\u03ae\u03b8\u03c1\u03b5\u03c2","owner":"AnaDigit","x":20.815839870436,"y":37.648780085297,"photo":"Zakynthos_Myzythres_11","type":0,"zoom_level":14,"id":3829,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5 \u03c3\u03c4\u03bf\u03bd \u039a\u03bf\u03b9\u03bb\u03b9\u03c9\u03bc\u03ad\u03bd\u03bf","owner":"AnaDigit","x":20.774242390213,"y":37.747422575075,"photo":"Zakynthos_Kiliomenos_AgNikolaos_11","type":9,"zoom_level":15,"id":3830,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.752591,"y":37.819045,"photo":"Zakynthos_simansi_71","type":450,"zoom_level":16,"id":3831,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.755038,"y":37.819986,"photo":"Zakynthos_simansi_81","type":450,"zoom_level":16,"id":3832,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.753123,"y":37.819316,"photo":"Zakynthos_simansi_91","type":450,"zoom_level":16,"id":3833,"hlink_GR":"","hlink_EN":"","description":"","height":721,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03c4\u03b1 \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039b\u03af\u03bc\u03bd\u03b7\u03c2 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.829156,"y":37.684743,"photo":"Zakynthos_limni_Keriou_11","type":2,"zoom_level":15,"id":3834,"hlink_GR":"","hlink_EN":"","description":"","height":606,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03c4\u03b1 \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039b\u03af\u03bc\u03bd\u03b7\u03c2 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.831473710335,"y":37.683367650305,"photo":"Zakynthos_limni_Keriou_31","type":8,"zoom_level":16,"id":3835,"hlink_GR":"","hlink_EN":"","description":"","height":580,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.6873,"y":37.792365,"photo":"DSC078671","type":450,"zoom_level":16,"id":3836,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.81329,"y":37.675295,"photo":"Zakynthos_simansi_101","type":450,"zoom_level":16,"id":3837,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.726045,"y":37.78893,"photo":"Zakynthos_simansi_121","type":450,"zoom_level":16,"id":3838,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.752076,"y":37.776923,"photo":"Zakynthos_simansi_111","type":450,"zoom_level":17,"id":3839,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u0396\u03ac\u03ba\u03c5\u03bd\u03b8\u03bf","owner":"AnaDigit","x":20.749961,"y":37.793293,"photo":"Zakynthos_simansi_131","type":450,"zoom_level":17,"id":3840,"hlink_GR":"","hlink_EN":"","description":"","height":621,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0398\u03ad\u03b1 \u03c3\u03c4\u03bf\u03bd \u039a\u03cc\u03bb\u03c0\u03bf \u03c4\u03bf\u03c5 \u039b\u03b1\u03b3\u03b1\u03bd\u03ac","owner":"AnaDigit","x":20.923453570107,"y":37.735920326724,"photo":"zakynthos_pano31","type":0,"zoom_level":15,"id":3841,"hlink_GR":"","hlink_EN":"","description":"","height":494,"width":1600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u03ba\u03b1\u03b9 \u03b7 \u03c7\u03b5\u03c1\u03c3\u03cc\u03bd\u03b7\u03c3\u03bf\u03c2 \u0393\u03ad\u03c1\u03b1\u03ba\u03b1\u03c2","owner":"AnaDigit","x":20.989687638915,"y":37.703590201223,"photo":"Zakynthos_Gerakas_21","type":0,"zoom_level":14,"id":3842,"hlink_GR":"","hlink_EN":"","description":"","height":490,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03c0\u03b5\u03c4\u03c1\u03cc\u03c3\u03c4\u03c1\u03c9\u03c4\u03bf\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03c4\u03c9\u03bd \u03b9\u03c4\u03b1\u03bb\u03b9\u03ba\u03ce\u03bd \u03c0\u03c5\u03c1\u03bf\u03b2\u03bf\u03bb\u03b5\u03af\u03c9\u03bd","owner":"AnaDigit","x":20.978246,"y":37.710665,"photo":"Zakynthos_Gerakas_31","type":9,"zoom_level":16,"id":3843,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03c0\u03b7\u03b3\u03ae \u0392\u03c1\u03c5\u03c3\u03bf\u03cd\u03bb\u03b1","owner":"AnaDigit","x":20.977211,"y":37.712143,"photo":"Zakynthos_Gerakas_Vrisoula1","type":1001,"zoom_level":16,"id":3844,"hlink_GR":"","hlink_EN":"","description":"","height":789,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc \u03c4\u03b1 \u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac \u03c0\u03c5\u03c1\u03bf\u03b2\u03bf\u03bb\u03b5\u03af\u03b1","owner":"AnaDigit","x":20.9763,"y":37.710093,"photo":"Zakynthos_Gerakas_WW21","type":9,"zoom_level":14,"id":3845,"hlink_GR":"","hlink_EN":"","description":"","height":602,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0393\u03ba\u03bf\u03c1\u03c4\u03c3\u03b9\u03ac (Pyrus amygdaliformis)","owner":"AnaDigit","x":20.975236,"y":37.711535,"photo":"Gortsia_21","type":1,"zoom_level":16,"id":3846,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":875},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03c4\u03b9\u03ba\u03cc \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf \u0393\u03ad\u03c1\u03b1\u03ba\u03b1","owner":"AnaDigit","x":20.98672962037,"y":37.708171303177,"photo":"Zakynthos_Gerakas_101","type":9,"zoom_level":15,"id":3847,"hlink_GR":"","hlink_EN":"","description":"","height":460,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u0393\u03ad\u03c1\u03b1\u03ba\u03b1","owner":"AnaDigit","x":20.986800909042,"y":37.707169593725,"photo":"Zakynthos_Gerakas_121","type":301,"zoom_level":14,"id":3848,"hlink_GR":"","hlink_EN":"","description":"","height":496,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03c1\u03b3\u03b9\u03bb\u03b9\u03ba\u03ad\u03c2 \u03b3\u03b5\u03c9\u03bc\u03bf\u03c1\u03c6\u03ad\u03c2 \u0393\u03ad\u03c1\u03b1\u03ba\u03b1","owner":"AnaDigit","x":20.983065252645,"y":37.708853089112,"photo":"Zakynthos_Gerakas_151","type":71,"zoom_level":15,"id":3849,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f\u03c1\u03c5\u03ba\u03c4\u03ac \u03a3\u03ba\u03bf\u03c0\u03bf\u03cd","owner":"AnaDigit","x":20.925313949583,"y":37.737279205353,"photo":"Zakynthos_Skopos_mines_11","type":71,"zoom_level":16,"id":3850,"hlink_GR":"","hlink_EN":"","description":"","height":491,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039c\u03bf\u03bd\u03ac\u03b4\u03b1 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u03bf\u03c1\u03c5\u03c7\u03b5\u03af\u03c9\u03bd \u03a3\u03ba\u03bf\u03c0\u03bf\u03cd","owner":"AnaDigit","x":20.926591,"y":37.740088,"photo":"Zakynthos_Skopos_mines_21","type":9,"zoom_level":16,"id":3851,"hlink_GR":"","hlink_EN":"","description":"","height":522,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039c\u03b5\u03bb\u03b9\u03c3\u03c3\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","owner":"AnaDigit","x":20.778791582015,"y":37.738498498085,"photo":"Zakynthos_Panagia_Melisiotisa_31","type":9,"zoom_level":15,"id":3852,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03b5\u03c1\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1","owner":"AnaDigit","x":20.814726,"y":37.66307,"photo":"Zakynthos_Panagia_Keriotisa_22","type":9,"zoom_level":15,"id":3853,"hlink_GR":"","hlink_EN":"","description":"","height":464,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03b3\u03af\u03b1 \u0392\u03b1\u03c1\u03b2\u03ac\u03c1\u03b1, \u03a0\u03b7\u03b3\u03b1\u03b4\u03ac\u03ba\u03b9\u03b1","owner":"AnaDigit","x":20.765244,"y":37.815581,"photo":"Zakynthos_Pigadakia_chu1","type":9,"zoom_level":16,"id":3854,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03bf\u03cd\u03bb\u03b1, \u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c1\u03b9","owner":"AnaDigit","x":20.753281,"y":37.82248,"photo":"Zakynthos_Katastari_Panagoula_21","type":9,"zoom_level":15,"id":3855,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a5\u03c0\u03b1\u03c0\u03b1\u03bd\u03c4\u03ae \u03c4\u03bf\u03c5 \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd, \u0391\u03b3\u03b1\u03bb\u03ac\u03c2","owner":"AnaDigit","x":20.807348,"y":37.684636,"photo":"Zakynthos_Agalas_Ypapanti_11","type":9,"zoom_level":15,"id":3856,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03c6\u03ac\u03c1\u03bf\u03c2 \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03af","owner":"AnaDigit","x":20.808003,"y":37.654743,"photo":"Zakynthos_Faros_Keri_11","type":9,"zoom_level":15,"id":3857,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039b\u03b1\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03bc\u03bf\u03c5\u03c3\u03b5\u03af\u03bf \u0391\u03b3\u03b1\u03bb\u03ac","owner":"AnaDigit","x":20.774564,"y":37.708729,"photo":"Zakynthos_Agalas_Giatras_31","type":9,"zoom_level":15,"id":3858,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039a\u03c5\u03c1\u03af\u03b1 \u03c4\u03c9\u03bd \u0391\u03b3\u03b3\u03ad\u03bb\u03c9\u03bd, \u0391\u03b3\u03b1\u03bb\u03ac\u03c2","owner":"AnaDigit","x":20.775516,"y":37.709179,"photo":"Zakynthos_Agalas_Kyra_Agelon1","type":9,"zoom_level":15,"id":3859,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2, \u0391\u03b3\u03b1\u03bb\u03ac\u03c2","owner":"AnaDigit","x":20.773635,"y":37.707089,"photo":"Zakynthos_Agalas_windmill_11","type":9,"zoom_level":15,"id":3860,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2, \u0391\u03b3\u03b1\u03bb\u03ac\u03c2","owner":"AnaDigit","x":20.771146,"y":37.707704,"photo":"Zakynthos_Agalas_windmill_31","type":9,"zoom_level":17,"id":3861,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03b4\u03bf\u03bb\u03af\u03bd\u03b7 \u039b\u03ac\u03ba\u03ba\u03bf\u03c2","owner":"AnaDigit","x":20.661905611115,"y":37.808876902469,"photo":"Zakynthos_Exo_Chora_Lakkos_21","type":73,"zoom_level":14,"id":3862,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03cc \u03c0\u03b1\u03c1\u03b1\u03c4\u03b7\u03c1\u03b7\u03c4\u03ae\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 2\u03bf\u03c5 \u03a0\u03b1\u03b3\u03ba. \u03a0\u03bf\u03bb\u03ad\u03bc\u03bf\u03c5","owner":"AnaDigit","x":20.654608,"y":37.797483,"photo":"Zakynthos_Italian_observ_21","type":9,"zoom_level":14,"id":3863,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03ba\u03cc\u03bb\u03c0\u03bf\u03c2 \u03c4\u03c9\u03bd \u0391\u03bb\u03c5\u03ba\u03ce\u03bd","owner":"AnaDigit","x":20.770332164204,"y":37.841719270371,"photo":"Zakynthos_Alykes_211","type":0,"zoom_level":14,"id":3938,"hlink_GR":"","hlink_EN":"","description":"","height":505,"width":1600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f\u03b9 \u0391\u03bb\u03c5\u03ba\u03ad\u03c2","owner":"AnaDigit","x":20.745938,"y":37.831567,"photo":"Zakynthos_Alykes_221","type":0,"zoom_level":13,"id":3939,"hlink_GR":"","hlink_EN":"","description":"","height":449,"width":1600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u039c\u03b1\u03cd\u03c1\u03b7 \u03a3\u03c0\u03b7\u03bb\u03b9\u03ac","owner":"AnaDigit","x":20.75992,"y":37.805043,"photo":"Zakynthos_mavri_spilia_11","type":73,"zoom_level":15,"id":3940,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03bc\u03bf\u03bd\u03ae \u03a5\u03c0\u03b5\u03c1\u03b1\u03b3\u03ac\u03b8\u03bf\u03c5","owner":"AnaDigit","x":20.761874,"y":37.773457,"photo":"Zakynthos_moni_Yperagathou_21","type":9,"zoom_level":14,"id":3941,"hlink_GR":"","hlink_EN":"","description":"","height":625,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0395\u03c1\u03b5\u03af\u03c0\u03b9\u03bf \u03c3\u03b5 \u03bf\u03c7\u03c5\u03c1\u03ae \u03b8\u03ad\u03c3\u03b7","owner":"AnaDigit","x":20.745731,"y":37.829246,"photo":"DSC077381","type":9,"zoom_level":16,"id":3942,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03bc\u03c0\u03ad\u03bb\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03ba\u03b1\u03bb\u03bb\u03b9\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2","owner":"AnaDigit","x":20.776300275269,"y":37.81648855034,"photo":"Zakynthos_abelia_11","type":0,"zoom_level":15,"id":3943,"hlink_GR":"","hlink_EN":"","description":"","height":567,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u03c4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03ae\u03c2 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5","owner":"AnaDigit","x":20.822703151279,"y":37.803960614871,"photo":"Zakynthos_pano32","type":0,"zoom_level":14,"id":3944,"hlink_GR":"","hlink_EN":"","description":"","height":382,"width":2000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03b1 \u03a0\u03b7\u03b3\u03b1\u03b4\u03ac\u03ba\u03b9\u03b1","owner":"AnaDigit","x":20.76637899214,"y":37.814789445715,"photo":"Zakynthos_Pigadakia_21","type":0,"zoom_level":14,"id":3945,"hlink_GR":"","hlink_EN":"","description":"","height":550,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.835839153442,"y":37.683545033859,"photo":"Zakynthos_Paralia_Keriou_11","type":0,"zoom_level":14,"id":3946,"hlink_GR":"","hlink_EN":"","description":"","height":450,"width":1600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u039c\u03b1\u03c1\u03b1\u03b8\u03bf\u03bd\u03ae\u03c3\u03b9 \u03ba\u03b1\u03b9 \u03bf \u03ba\u03cc\u03bb\u03c0\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039b\u03b1\u03b3\u03b1\u03bd\u03ac","owner":"AnaDigit","x":20.870916553074,"y":37.684915119199,"photo":"DSC07800_stitch1","type":0,"zoom_level":13,"id":3947,"hlink_GR":"","hlink_EN":"","description":"","height":394,"width":1600},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039a\u03b5\u03c1\u03af-\u0391\u03b3\u03b1\u03bb\u03ac\u03c2","owner":"AnaDigit","x":20.787851,"y":37.681343,"photo":"Zakynthos_Apelati_11","type":0,"zoom_level":15,"id":3948,"hlink_GR":"","hlink_EN":"","description":"","height":633,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u039a\u03b5\u03c1\u03af-\u0391\u03b3\u03b1\u03bb\u03ac\u03c2","owner":"AnaDigit","x":20.809826,"y":37.66554,"photo":"Zakynthos_Apelati_21","type":0,"zoom_level":15,"id":3949,"hlink_GR":"","hlink_EN":"","description":"","height":735,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f\u03b9 \u03b1\u03c0\u03cc\u03ba\u03c1\u03b7\u03bc\u03bd\u03b5\u03c2 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b1\u03ba\u03c4\u03ad\u03c2","owner":"AnaDigit","x":20.80459398146,"y":37.660782643439,"photo":"Zakynthos_Faros_Keriou_shore1","type":0,"zoom_level":15,"id":3950,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03ba\u03bf\u03b9\u03bc\u03b7\u03c4\u03b7\u03c1\u03b9\u03b1\u03ba\u03cc\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03af","owner":"AnaDigit","x":20.816143,"y":37.665618,"photo":"Zakynthos_Keri_cemetery1","type":9,"zoom_level":17,"id":3951,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":640},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u039a\u03b5\u03c1\u03af","owner":"AnaDigit","x":20.815175415277,"y":37.661363687188,"photo":"Zakynthos_Keri_11","type":0,"zoom_level":13,"id":3952,"hlink_GR":"","hlink_EN":"","description":"","height":477,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03bb\u03b9\u03bc\u03ac\u03bd\u03b9 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5","owner":"AnaDigit","x":20.706536859775,"y":37.905723334142,"photo":"Zakynthos_AgNikolaos_11","type":0,"zoom_level":13,"id":3953,"hlink_GR":"","hlink_EN":"","description":"","height":404,"width":1400},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5 \u03c3\u03c4\u03bf \u03bf\u03bc\u03ce\u03bd\u03c5\u03bc\u03bf \u03bd\u03b7\u03c3\u03ac\u03ba\u03b9","owner":"AnaDigit","x":20.711061325412,"y":37.906402834836,"photo":"Zakynthos_AgNikolaos_21","type":9,"zoom_level":14,"id":3954,"hlink_GR":"","hlink_EN":"","description":"","height":999,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0395\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03bf \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03ac\u03ba\u03b9 \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03af","owner":"AnaDigit","x":20.825752288362,"y":37.667644574642,"photo":"Zakynthos_Keri_ruined_chu_31","type":9,"zoom_level":16,"id":3955,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03a3\u03c4\u03b1\u03c5\u03c1\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03bf\u03b9 \u03b1\u03c0\u03cc\u03ba\u03c1\u03b7\u03bc\u03bd\u03b5\u03c2 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03b1\u03ba\u03c4\u03ad\u03c2 \u03c3\u03c4\u03bf \u039a\u03b1\u03bc\u03c0\u03af","owner":"AnaDigit","x":20.676623,"y":37.778125,"photo":"Zakynthos_Kambi_Stavros_11","type":0,"zoom_level":14,"id":3956,"hlink_GR":"","hlink_EN":"","description":"","height":560,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03cc \u03b5\u03bb\u03b1\u03b9\u03bf\u03c4\u03c1\u03b9\u03b2\u03b5\u03af\u03bf \"\u03a4\u03bf \u03b2\u03bf\u03c5\u03bd\u03cc\"","owner":"AnaDigit","x":20.719981078042,"y":37.769224194246,"photo":"Zakynthos_eleotrivio_Vouno21","type":9,"zoom_level":16,"id":3957,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u0391\u03c1\u03b3\u03ac\u03c3\u03b9 \u03ba\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03b2\u03bb\u03bf\u03c3\u03c5\u03c1\u03cc \u03cc\u03b3\u03ba\u03bf \u03c4\u03bf\u03c5 \u03a3\u03ba\u03bf\u03c0\u03bf\u03cd","owner":"AnaDigit","x":20.925379555665,"y":37.763635563307,"photo":"Zakynthos_Argasi_31","type":0,"zoom_level":13,"id":3958,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03c6\u03ac\u03c1\u03bf\u03c2 \u03c3\u03c4\u03bf \u03a3\u03c7\u03b9\u03bd\u03ac\u03c1\u03b9","owner":"AnaDigit","x":20.702097,"y":37.93097,"photo":"Zakynthos_Schinari_lighthouse11","type":9,"zoom_level":13,"id":3959,"hlink_GR":"","hlink_EN":"","description":"","height":745,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03c0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03c6\u03ac\u03c1\u03bf\u03c2 \u03c3\u03c4\u03bf \u03a3\u03c7\u03b9\u03bd\u03ac\u03c1\u03b9","owner":"AnaDigit","x":20.699503,"y":37.933001,"photo":"Zakynthos_Schinari_old_lighthouse21","type":9,"zoom_level":15,"id":3960,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03b9\u03c2 \u0392\u03bf\u03bb\u03af\u03bc\u03b5\u03c2","owner":"AnaDigit","x":20.656635,"y":37.874572,"photo":"Zakynthos_Volimes_windmill1","type":9,"zoom_level":16,"id":3961,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03c4\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c4\u03b7\u03c2 \u0391\u03bd\u03b1\u03c6\u03c9\u03bd\u03ae\u03c4\u03c1\u03b9\u03b1\u03c2","owner":"AnaDigit","x":20.633068,"y":37.839823,"photo":"Zakynthos_Anafonitria_Panagia_31","type":9,"zoom_level":15,"id":3962,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03ac \u03b8\u03b5\u03c1\u03b9\u03b6\u03bf\u03b1\u03bb\u03c9\u03bd\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae \u03bc\u03b7\u03c7\u03b1\u03bd\u03ae","owner":"AnaDigit","x":20.724091,"y":37.8723,"photo":"Zakynthos_combina21","type":9,"zoom_level":16,"id":3963,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03cc \u03b5\u03c1\u03b5\u03b9\u03c0\u03c9\u03bc\u03ad\u03bd\u03bf \u03ba\u03c4\u03af\u03c1\u03b9\u03bf","owner":"AnaDigit","x":20.917356,"y":37.739534,"photo":"Zakynthos_ruin_Kanalos1","type":9,"zoom_level":16,"id":3964,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03bd\u03b4\u03c1\u03ad\u03b1\u03c2 \u03c3\u03c4\u03bf\u03bd \u039a\u03ac\u03bd\u03b1\u03bb\u03bf","owner":"AnaDigit","x":20.919448,"y":37.741191,"photo":"ZakynthosAgAndreas_Kanalos1","type":9,"zoom_level":14,"id":3965,"hlink_GR":"","hlink_EN":"","description":"","height":857,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u03a7\u03b1\u03c1\u03ac\u03bb\u03b1\u03bc\u03c0\u03bf\u03c2 \u03c4\u03b7\u03c2 \u0388\u03be\u03c9 \u03a7\u03ce\u03c1\u03b1\u03c2","owner":"AnaDigit","x":20.664568,"y":37.809336,"photo":"Zakynthos_AxoChora_AgCharalambos1","type":9,"zoom_level":15,"id":3966,"hlink_GR":"","hlink_EN":"","description":"","height":579,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03b3\u03c1\u03bf\u03b9\u03ba\u03af\u03b1 \u03c3\u03c4\u03b7 \u0392\u03c1\u03bf\u03cd\u03c3\u03ba\u03b1 \u03c4\u03b7\u03c2 \u0388\u03be\u03c9 \u03a7\u03ce\u03c1\u03b1\u03c2","owner":"AnaDigit","x":20.663036,"y":37.809195,"photo":"Zakynthos_AxoChora_Vrouska1","type":9,"zoom_level":16,"id":3967,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039c\u03bf\u03bd\u03ae \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1\u03c2 \u03a3\u03c0\u03b7\u03bb\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2","owner":"AnaDigit","x":20.702295,"y":37.857396,"photo":"Zakynthos_moni_Spileotisas_21","type":9,"zoom_level":13,"id":3968,"hlink_GR":"","hlink_EN":"","description":"","height":899,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7\u03c2 \u0398\u03b1\u03bb\u03ac\u03c3\u03c3\u03b9\u03bf\u03c5 \u03a0\u03ac\u03c1\u03ba\u03bf\u03c5 \u0396\u03b1\u03ba\u03cd\u03bd\u03b8\u03bf\u03c5","owner":"AnaDigit","x":20.945776,"y":37.729873,"photo":"Zakynthos_MarinePark_11","type":9,"zoom_level":14,"id":3969,"hlink_GR":"","hlink_EN":"","description":"","height":900,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0397 \u03c3\u03c0\u03b7\u03bb\u03b1\u03b9\u03bf\u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03b7\u03c2 \u03a3\u03c0\u03b7\u03bb\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2","owner":"AnaDigit","x":20.70096630225,"y":37.861375331724,"photo":"Zakynthos_Spiliotisa_chu21","type":9,"zoom_level":15,"id":4011,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":660},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0398\u03ad\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c0\u03b1\u03bd\u03cc\u03c1\u03b1\u03bc\u03b1 \u03c3\u03c4\u03bf \u039a\u03b1\u03bc\u03c0\u03af","owner":"AnaDigit","x":20.68027,"y":37.781813,"photo":"zakynthos_Kambi_121","type":0,"zoom_level":14,"id":4012,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf \u03a7\u03b1\u03b3\u03b9\u03ce\u03c4\u03b7","owner":"AnaDigit","x":20.76299,"y":37.795601,"photo":"zakynthosChagioti_cave12","type":73,"zoom_level":15,"id":4013,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03b9\u03c9\u03bd\u03cc\u03b2\u03b9\u03b5\u03c2 \u03b5\u03bb\u03b9\u03ad\u03c2 \u03c3\u03c4\u03bf\u03bd \u0391\u03b3\u03b1\u03bb\u03ac","owner":"AnaDigit","x":20.805723,"y":37.684788,"photo":"Zakynthos_441","type":1,"zoom_level":16,"id":4014,"hlink_GR":"","hlink_EN":"","description":"","height":626,"width":1400},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039f \u03cc\u03c1\u03bc\u03bf\u03c2 \u039a\u03c1\u03c5\u03c6\u03cc \u03c3\u03c4\u03bf \u039a\u03b5\u03c1\u03af","owner":"AnaDigit","x":20.807558,"y":37.656232,"photo":"Zakynthos_2131","type":0,"zoom_level":16,"id":4015,"hlink_GR":"","hlink_EN":"","description":"","height":798,"width":1200},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03b9\u03c9\u03bd\u03cc\u03b2\u03b9\u03b5\u03c2 \u03b5\u03bb\u03b9\u03ad\u03c2 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03c1\u03b1\u03bb\u03ac\u03b9 \u039a\u03b5\u03c1\u03af\u03bf\u03c5","owner":"AnaDigit","x":20.828305,"y":37.68935,"photo":"Zakynthos_Keri_992","type":1,"zoom_level":15,"id":4016,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":665},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03b1 \u039a\u03bf\u03ba\u03ba\u03b9\u03bd\u03bf\u03c3\u03c0\u03ae\u03bb\u03b9\u03b1","owner":"AnaDigit","x":20.752894,"y":37.81792,"photo":"Zakynthos_Kokinospilia_11","type":73,"zoom_level":15,"id":4017,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039a\u03b1\u03bb\u03bb\u03b9\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1 \u03c4\u03bf\u03bc\u03ac\u03c4\u03b1\u03c2","owner":"AnaDigit","x":20.753151,"y":37.776008,"photo":"Zakynthos_tomato_11","type":0,"zoom_level":16,"id":4018,"hlink_GR":"","hlink_EN":"","description":"","height":858,"width":800},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u039a\u03b1\u03c4\u03b5\u03b2\u03b1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03bf \u03a0\u03cc\u03c1\u03c4\u03bf \u0392\u03c1\u03ce\u03bc\u03b7","owner":"AnaDigit","x":20.631383,"y":37.830056,"photo":"Zakynthos_western_shore21","type":0,"zoom_level":15,"id":4019,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a4\u03bf \u03bc\u03b9\u03ba\u03c1\u03cc \u03bd\u03b5\u03ba\u03c1\u03bf\u03c4\u03b1\u03c6\u03b5\u03af\u03bf \u03c3\u03c4\u03bf \u0393\u03cd\u03c1\u03b9","owner":"AnaDigit","x":20.74127,"y":37.79897,"photo":"Zakynthos_Gyri_cemetery1","type":9,"zoom_level":16,"id":4020,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u03a3\u03c4\u03ad\u03b3\u03bd\u03c9\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c4\u03b1\u03c6\u03af\u03b4\u03b1\u03c2","owner":"AnaDigit","x":20.77944222507,"y":37.739021038884,"photo":"Zakynthos_stafida_21","type":0,"zoom_level":16,"id":4021,"hlink_GR":"","hlink_EN":"","description":"","height":723,"width":1000},{"name":"\u0396\u0391\u039a\u03a5\u039d\u0398\u039f\u03a3
\u0391\u03bd\u03b1\u03ba\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03c1\u03bf\u03c3\u03b5\u03b9\u03c3\u03bc\u03b9\u03ba\u03ae \u03b1\u03b3\u03c1\u03bf\u03b9\u03ba\u03af\u03b1","owner":"AnaDigit","x":20.752491,"y":37.756751,"photo":"Zakynthos_old_farmhouse_11","type":9,"zoom_level":16,"id":4022,"hlink_GR":"","hlink_EN":"","description":"","height":666,"width":1000}],{});function createAdventureListWidgetContext(){};console.log('sort type: none');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathListDivId'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathListDivId').innerHTML="
Κυκλική διαδρομή στην Αγία Μαρίνα
Κυκλική διαδρομή στους Άγιους Πάντες
Μπόχαλη, Διαδρομή 1
Μπόχαλη, Διαδρομή 2
Μπόχαλη, Διαδρομή 3
Μπόχαλη, Διαδρομή 4
Μπόχαλη, Διαδρομή 5
Μπόχαλη, Διαδρομή 5a
Κερί-Φάρος Κερίου
Κερί-Παραλία Κερίου
Κερί-Παραλία Κερίου
Περίπατοι στη Λούχα, Διαδρομή 1
Περίπατοι στη Λούχα, Διαδρομή 2
Περίπατοι στη Λούχα, Διαδρομή 3
Περίπατοι στη Λούχα, Διαδρομή 4
Αγαλάς-ανεμόμυλοι-σπήλαιο Δαμιανού
Λίμνη Κερίου
Βολίμα - μονή Αγίου Ανδρέα
Σπήλαιο Αγίου Γερασίμου
Έξω Χώρα-Καμπί
Κλίμα-Φάρος Σχινάρι
Σπηλιά Σπηλιώτισσας
Πολιτιστική διαδρομή στη Ρίζα
Καλλιθέα-Λαγοπόδο
Κοιλιωμένο-Παντοκράτορας
Αργάσι-Σκοπιώτισσα
Γέρακας και Ιταλικά πυροβολεία
Καλαμάκι-Σκοπιώτισσα
Κερί-Αγαλάς
Αγαλάς-Κοιλιωμένος
Κοιλιωμένος-Μ. Υπεραγάθου
Μ. Υπεραγάθου-Λούχα
Λούχα-Καλλιθέα
Καλλιθέα-Μ. Προδρόμου
";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["zakynthos"],pc:["zakynthos"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_zakynthos.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); }