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_kythnos = new getAdventureCollection("kythnos",[{"id":16473,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b5\u03c2 \u0391\u03c0\u03cc\u03ba\u03c1\u03bf\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u039a\u03bf\u03bb\u03ce\u03bd\u03b1","description_GR":"\u039f \u03c3\u03c5\u03bd\u03c4\u03bf\u03bc\u03cc\u03c4\u03b5\u03c1\u03bf\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b9\u03c2 \u03b4\u03cd\u03bf \u03b4\u03b7\u03bc\u03bf\u03c6\u03b9\u03bb\u03b5\u03af\u03c2 \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b5\u03c2","path":"Islands\/Islands_Kythnos_Apokrousi_Kolona","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2418,"name_EN":"Kythnos Isl: Beaches Apokrousi and Kolona","description_EN":"The shortest way between the 2 popular beaches","ascent_time":50,"descent_time":55,"marker":"No_marks","level":12,"ascent":97,"descent":104,"maxelev":70,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.37851 37.4123,24.39787 37.41758)","views":26,"millestones":"0,24.3977376,37.4122990#1,24.3899038,37.4155500#2.4,24.3784902,37.4134753","x":24.3884851,"y":37.4168479,"coor":[[24.3977376,37.412299],[24.3978711,37.4122985],[24.3977744,37.4132385],[24.3978518,37.4138489],[24.3970458,37.4143654],[24.3964485,37.4146694],[24.3961664,37.4147447],[24.3959409,37.4147117],[24.3957468,37.4144734],[24.3955769,37.4143906],[24.3940275,37.4141502],[24.3936548,37.414192],[24.3929934,37.4148184],[24.3924403,37.4146557],[24.3920661,37.414684],[24.3918858,37.414795],[24.3915366,37.4150012],[24.3909854,37.4152149],[24.3905478,37.4154101],[24.3896786,37.4155978],[24.3893229,37.4159144],[24.389224,37.4161807],[24.3890822,37.4164831],[24.3887889,37.4165945],[24.3884851,37.4168479],[24.3884271,37.4171094],[24.3882268,37.4171709],[24.3879232,37.4174536],[24.3877095,37.4175152],[24.3872364,37.4175505],[24.3868166,37.417491],[24.3860655,37.4164727],[24.3858384,37.4162684],[24.3854314,37.4159542],[24.3846821,37.415551],[24.3841839,37.4153611],[24.3840138,37.415382],[24.3833828,37.4157468],[24.3822204,37.4160593],[24.3819716,37.4160128],[24.3812216,37.4154811],[24.3806221,37.4153591],[24.3803622,37.41536],[24.380147,37.4152773],[24.3799358,37.4152644],[24.3798438,37.4152309],[24.3795605,37.4150673],[24.3792197,37.4147192],[24.3784902,37.4134753]]},{"id":16474,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u03a7\u03ce\u03c1\u03b1-\u0394\u03c1\u03c5\u03bf\u03c0\u03af\u03b4\u03b1","description_GR":"\u039f \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b4\u03cd\u03bf \u03ba\u03cd\u03c1\u03b9\u03bf\u03c5\u03c2 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2","path":"Islands\/Islands_Kythnos_Chora_Dryopida","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5325,"name_EN":"Kythnos Isl: Chora-Dryopida","description_EN":"The best way between the 2 major villages","ascent_time":125,"descent_time":120,"marker":"No_marks","level":12,"ascent":276,"descent":237,"maxelev":206,"minelev":96,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.42622 37.38317,24.43528 37.41281)","views":38,"millestones":"0,24.4298025,37.4127907#1,24.4287063,37.4067806#2,24.4323247,37.4013003#3,24.4339492,37.3957633#4,24.4277751,37.3916122#5.3,24.4306348,37.3832182","x":24.4353664,"y":37.4004554,"coor":[[24.4298025,37.4127907],[24.4297044,37.4127933],[24.4291958,37.4127771],[24.4288488,37.4127468],[24.4289263,37.4124671],[24.4289506,37.4123994],[24.4286608,37.4123441],[24.428671,37.4121638],[24.4286088,37.4121528],[24.4279078,37.4120832],[24.4277947,37.4120656],[24.4277382,37.4120613],[24.4271451,37.4118426],[24.4273158,37.411673],[24.427485,37.4116183],[24.4276614,37.4114689],[24.4280887,37.4110978],[24.428122,37.4111225],[24.4286047,37.4105529],[24.4286931,37.41021],[24.4288386,37.4102208],[24.4288643,37.4101328],[24.429155,37.409841],[24.4293104,37.4093537],[24.4297033,37.4089016],[24.4297474,37.4087122],[24.4295542,37.4085146],[24.4290462,37.4082257],[24.4288859,37.4078477],[24.4288671,37.4075256],[24.4288655,37.4072461],[24.4287046,37.406778],[24.4280907,37.4061222],[24.428191,37.4058785],[24.4281291,37.405908],[24.4280596,37.405746],[24.4280598,37.4056536],[24.4283292,37.4053372],[24.428248,37.4049769],[24.4279763,37.4048698],[24.4281905,37.4047969],[24.4282916,37.4046974],[24.4283013,37.4043999],[24.4282099,37.4042379],[24.428288,37.4040506],[24.4285356,37.4038875],[24.4285567,37.403617],[24.4287352,37.4032288],[24.4287455,37.4030485],[24.4289475,37.4028043],[24.4293807,37.4014958],[24.4297628,37.4011339],[24.4299868,37.4007905],[24.4302275,37.4009068],[24.4307018,37.400869],[24.4314834,37.4012177],[24.4318562,37.4011983],[24.4322183,37.4013052],[24.4326589,37.4012855],[24.4330886,37.4013471],[24.4336559,37.4016334],[24.4337451,37.4014348],[24.4340161,37.4014158],[24.4339022,37.4012449],[24.4343429,37.4012523],[24.4347033,37.4010617],[24.4353804,37.400924],[24.4353664,37.4004554],[24.4347195,37.399953],[24.4346394,37.399773],[24.4346913,37.3997165],[24.4344567,37.3994447],[24.4344219,37.3992825],[24.4346091,37.3985698],[24.4347572,37.3980509],[24.4348749,37.3976404],[24.4348993,37.3975772],[24.4351291,37.3969026],[24.4350031,37.3966056],[24.4349109,37.3962995],[24.4347403,37.3961018],[24.4342758,37.3958781],[24.434061,37.3958429],[24.4338454,37.3956904],[24.4338109,37.3955734],[24.4338756,37.3950503],[24.4345712,37.3942095],[24.4345144,37.3941556],[24.4339492,37.3940856],[24.4333808,37.3934748],[24.4331654,37.3933494],[24.4330637,37.3933497],[24.432985,37.3934131],[24.4329642,37.3937197],[24.4327046,37.3937567],[24.4324329,37.3936675],[24.4321607,37.3934882],[24.4314938,37.3934096],[24.4312786,37.3933202],[24.431108,37.3931135],[24.430588,37.3930703],[24.4298662,37.3932803],[24.4296063,37.3932632],[24.4291314,37.3932018],[24.4286664,37.39287],[24.4283436,37.3924926],[24.427632,37.3913887],[24.427551,37.3910555],[24.4275826,37.3906408],[24.4274884,37.3899651],[24.4273628,37.3897312],[24.4269539,37.3893451],[24.4266452,37.3890713],[24.4263262,37.3885857],[24.4261745,37.3877389],[24.4263652,37.3874949],[24.426125,37.3869729],[24.4262545,37.386657],[24.4260722,37.3863692],[24.4262292,37.3861794],[24.4269041,37.3856631],[24.4275125,37.3853905],[24.4276696,37.3852097],[24.4281856,37.3851808],[24.4286771,37.3850844],[24.4296752,37.3848058],[24.4302341,37.384272],[24.430401,37.3840708],[24.4306352,37.383786],[24.4310578,37.383611],[24.4310631,37.3835591],[24.4309291,37.3835821],[24.4307688,37.3831929],[24.4306348,37.3832182]]},{"id":16475,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u03a7\u03ce\u03c1\u03b1, \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c2","description_GR":"\u039c\u03b9\u03ba\u03c1\u03ae \u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03b3\u03cd\u03c1\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03a7\u03ce\u03c1\u03b1","path":"Islands\/Islands_Kythnos_Chora_loop1","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":5,"length":3367,"name_EN":"Kythnos Isl: Chora, short loop","description_EN":"Short loop trail around Chora","ascent_time":65,"descent_time":60,"marker":"No_marks","level":13,"ascent":106,"descent":106,"maxelev":180,"minelev":110,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.42316 37.40528,24.43398 37.41294)","views":21,"millestones":"0,24.4298025,37.4127907#1,24.4333307,37.4078711#2,24.4250347,37.4065446#3.4,24.4298039,37.4127907","x":24.4261596,"y":37.405309,"coor":[[24.4298025,37.4127907],[24.4300093,37.4127561],[24.4303993,37.4126736],[24.4313613,37.4124267],[24.431546,37.4123697],[24.4316592,37.4124053],[24.4319071,37.4122782],[24.4320795,37.4124173],[24.4322884,37.4125135],[24.4326934,37.4126877],[24.4330217,37.4127947],[24.4334967,37.4128561],[24.4334843,37.4126668],[24.4336428,37.4124769],[24.4337792,37.4123705],[24.4340124,37.4116576],[24.4339129,37.4115498],[24.4333578,37.4113175],[24.4331811,37.4111604],[24.4331461,37.4109802],[24.4332689,37.4107184],[24.4335386,37.410447],[24.4334004,37.4100058],[24.4336931,37.4098065],[24.43367,37.4095947],[24.4334205,37.4094514],[24.433177,37.4087402],[24.4331963,37.4081543],[24.4334886,37.4075312],[24.4333126,37.4071466],[24.4332436,37.4069305],[24.4327557,37.4068309],[24.4314526,37.4061776],[24.4308356,37.4061055],[24.4299543,37.4061087],[24.4289242,37.4057699],[24.428191,37.4058785],[24.4281291,37.405908],[24.4280596,37.405746],[24.4273582,37.4054579],[24.4267359,37.4053249],[24.4261596,37.405309],[24.4261494,37.4055073],[24.4260819,37.4055616],[24.4257655,37.4055538],[24.4252219,37.4057044],[24.4252333,37.4058441],[24.425043,37.4061693],[24.4250676,37.4065207],[24.4241785,37.4071549],[24.4238209,37.4078502],[24.4238675,37.4081024],[24.4237774,37.4081569],[24.423736,37.4084545],[24.4233773,37.4089605],[24.4231391,37.4096825],[24.4242019,37.4097958],[24.4241702,37.4101925],[24.4240285,37.4104815],[24.4240547,37.4104994],[24.4239075,37.4106937],[24.423909,37.4109641],[24.4237206,37.411109],[24.4237329,37.4112983],[24.4238239,37.4113881],[24.4253764,37.4121757],[24.4260579,37.4122995],[24.4262875,37.4120508],[24.4266709,37.4119142],[24.4269779,37.411877],[24.42708,37.4119397],[24.4271451,37.4118426],[24.4277382,37.4120613],[24.4277947,37.4120656],[24.4279406,37.4122544],[24.4279315,37.4123964],[24.4280913,37.4126842],[24.4282686,37.4129269],[24.4284536,37.4128001],[24.4288495,37.4127468],[24.4291965,37.4127771],[24.4297051,37.4127933],[24.4298039,37.4127907]]},{"id":16476,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u03a7\u03ce\u03c1\u03b1-\u039b\u03bf\u03c5\u03c4\u03c1\u03ac","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03a7\u03ce\u03c1\u03b1-\u039b\u03bf\u03c5\u03c4\u03c1\u03ac","path":"Islands\/Islands_Kythnos_Chora_loop2","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":5,"length":9695,"name_EN":"Kythnos Isl: Chora-Loutra","description_EN":"Long loop trail Chora-Loutra","ascent_time":235,"descent_time":230,"marker":"No_marks","level":13,"ascent":224,"descent":224,"maxelev":151,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.42408 37.4124,24.43983 37.44127)","views":23,"millestones":"0,24.4298025,37.4127907#1,24.4302141,37.4190991#2,24.4327387,37.4220933#3,24.4380832,37.4295840#4,24.4370631,37.4371698#5,24.4296609,37.4377380#6,24.4245452,37.4386368#7,24.4263700,37.4309577#8,24.4264315,37.4226074#9,24.4245537,37.4160335#9.7,24.4298039,37.4127907","x":24.4301257,"y":37.4390396,"coor":[[24.4298025,37.4127907],[24.4300093,37.4127561],[24.4303993,37.4126736],[24.4313613,37.4124267],[24.4314683,37.4126224],[24.431231,37.4126232],[24.4310063,37.4128404],[24.4305621,37.4129749],[24.4306534,37.4131369],[24.4309856,37.4141565],[24.4309402,37.4144901],[24.4307153,37.4146892],[24.4308068,37.4148872],[24.4308213,37.415446],[24.431003,37.4155896],[24.4311536,37.416238],[24.4314157,37.4166246],[24.4314391,37.4167688],[24.4312293,37.4176168],[24.4310503,37.417933],[24.4301856,37.4188916],[24.430221,37.4191528],[24.430462,37.4196702],[24.4312173,37.4194647],[24.4316781,37.4190303],[24.4318474,37.4189846],[24.4322432,37.4190373],[24.4325139,37.4189462],[24.4334375,37.4184019],[24.4339979,37.4179582],[24.4342596,37.4182637],[24.4345432,37.418461],[24.4345685,37.4189319],[24.434378,37.419212],[24.4343007,37.4195187],[24.434326,37.4199873],[24.4344164,37.419978],[24.4344053,37.4200231],[24.4339672,37.4204844],[24.4338795,37.4209535],[24.4335419,37.4211981],[24.4330795,37.421371],[24.4329461,37.4217501],[24.4325991,37.4223282],[24.4326119,37.4225896],[24.4328518,37.4230394],[24.433158,37.4232275],[24.4346475,37.4247634],[24.4352827,37.4251577],[24.4354323,37.4256258],[24.436274,37.4265511],[24.4364797,37.426929],[24.4371841,37.4275663],[24.4374238,37.427962],[24.4374158,37.4285299],[24.4375425,37.4289441],[24.4380311,37.429393],[24.4381004,37.4296451],[24.4384032,37.4300811],[24.438861,37.4302191],[24.4392497,37.4309568],[24.4399431,37.4316303],[24.4394225,37.4323646],[24.4393568,37.4327254],[24.4395417,37.4334187],[24.4395214,37.4338244],[24.4391456,37.435277],[24.4387312,37.4359275],[24.4383712,37.4362263],[24.4375032,37.4366442],[24.4367616,37.4375167],[24.4368567,37.437602],[24.4366314,37.437729],[24.4358527,37.4379482],[24.4353341,37.4381935],[24.4348834,37.4384475],[24.434589,37.4387258],[24.4344747,37.4385009],[24.4341728,37.4383533],[24.4338442,37.4382102],[24.4330783,37.4386998],[24.4325821,37.4388999],[24.43195,37.4390555],[24.4316918,37.4390091],[24.4312172,37.4381793],[24.431239,37.438035],[24.4315875,37.4376912],[24.431564,37.4375471],[24.4314503,37.4374303],[24.4311898,37.4373411],[24.4304328,37.437398],[24.4299463,37.4373276],[24.4298109,37.4373642],[24.4295433,37.4380141],[24.4300325,37.4385532],[24.4301469,37.4388051],[24.4301257,37.4390396],[24.4297996,37.4393382],[24.4291232,37.4396652],[24.4289996,37.4397918],[24.4288435,37.4401799],[24.4286337,37.441046],[24.4285441,37.4411996],[24.4284314,37.4412541],[24.4272444,37.4412584],[24.4270746,37.4412139],[24.4265335,37.4411145],[24.4260243,37.4410171],[24.4258309,37.4408105],[24.4252483,37.4404791],[24.4251344,37.4403263],[24.4247505,37.440037],[24.4246573,37.4399179],[24.4246328,37.4398301],[24.4246146,37.4396093],[24.4244871,37.4378116],[24.4244812,37.4377598],[24.4244375,37.4360293],[24.4242304,37.435381],[24.4242841,37.4348761],[24.424321,37.4346596],[24.4244555,37.4344608],[24.4244549,37.4343527],[24.4240333,37.4337593],[24.4240426,37.4333987],[24.4240876,37.4333625],[24.4243138,37.4333797],[24.4244046,37.4334515],[24.4245282,37.4333249],[24.4246306,37.4334327],[24.4248004,37.4334861],[24.4248105,37.4332788],[24.4249893,37.4329176],[24.4256289,37.432086],[24.4256396,37.4319688],[24.4260878,37.4312822],[24.4267167,37.4305588],[24.4269631,37.4301613],[24.4269164,37.4299001],[24.4269925,37.429368],[24.427259,37.4285378],[24.4272064,37.42724],[24.4272276,37.4269785],[24.4273726,37.4266535],[24.4273432,37.4261939],[24.4272154,37.4255815],[24.427067,37.4253296],[24.4265457,37.4250881],[24.4262955,37.4248006],[24.4262713,37.4245303],[24.4265366,37.4234837],[24.4265129,37.4232855],[24.4262633,37.4231061],[24.4262623,37.4229439],[24.4264103,37.4226234],[24.4266016,37.4224785],[24.4264157,37.422078],[24.4275665,37.4217404],[24.4280294,37.4216666],[24.4279021,37.4211352],[24.4276249,37.4209469],[24.4275556,37.4206858],[24.4270327,37.4201649],[24.4269181,37.4198769],[24.4266678,37.4195803],[24.4265976,37.4191569],[24.4263019,37.4188335],[24.4260069,37.4186273],[24.4257988,37.4185559],[24.4250153,37.4185046],[24.4249498,37.4181624],[24.4251459,37.4180084],[24.4250436,37.4171457],[24.4248571,37.4167701],[24.4246632,37.416568],[24.4245333,37.4164535],[24.4244982,37.4162463],[24.4246642,37.4156328],[24.4246951,37.4151009],[24.4250227,37.414818],[24.4258682,37.4142201],[24.4261371,37.4138045],[24.4266623,37.4137598],[24.4267863,37.4137052],[24.4273059,37.4136695],[24.4276282,37.4135782],[24.4282686,37.4129269],[24.4284536,37.4128001],[24.4288495,37.4127446],[24.4291964,37.4127749],[24.4297051,37.412791],[24.4298039,37.4127907]]},{"id":16478,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03c1\u03c5\u03bf\u03c0\u03af\u03b4\u03b1-\u0391\u03b3. \u039a\u03c9\u03bd\u03c3\u03c4\u03b1\u03bd\u03c4\u03af\u03bd\u03bf\u03c2-\u039a\u03b1\u03bd\u03ac\u03bb\u03b1","description_GR":"\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2 \u03a7\u03ce\u03c1\u03b1-\u039a\u03b1\u03bb\u03cc \u039b\u03b9\u03b2\u03ac\u03b4\u03b9-\u039a\u03b1\u03bd\u03ac\u03bb\u03b1","path":"Islands\/Islands_Kythnos_Dryopis_Kanala2","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":3,"length":7880,"name_EN":"Kythnos Isl: Dryopida-Ag. Konstandinos-Kanala","description_EN":"Return route for the trail Chora-Kalo Livadi-Kanala","ascent_time":140,"descent_time":150,"marker":"No_marks","level":12,"ascent":235,"descent":391,"maxelev":304,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.41633 37.34473,24.43632 37.38327)","views":29,"millestones":"0,24.4306326,37.3832182#1,24.4257423,37.3782437#2,24.4247987,37.3743199#3,24.4267800,37.3688580#4,24.4194383,37.3628513#5,24.4170065,37.3549569#6,24.4209240,37.3478368#7,24.4303988,37.3454335#7.9,24.4351353,37.3474982","x":24.4222356,"y":37.366084,"coor":[[24.4306326,37.3832182],[24.4307666,37.3831929],[24.4308077,37.3829606],[24.4306124,37.3828937],[24.430477,37.3829123],[24.4302711,37.3829558],[24.4299758,37.3829186],[24.4296048,37.3829808],[24.4288818,37.3829654],[24.4283178,37.3831162],[24.4279617,37.3829304],[24.4274867,37.382824],[24.4273167,37.3827254],[24.4271671,37.3822482],[24.4262857,37.3818075],[24.4261936,37.3815014],[24.4264056,37.3810499],[24.42636,37.3809689],[24.4262278,37.3809401],[24.4251897,37.3802588],[24.4249052,37.3798813],[24.4249472,37.3793223],[24.4250682,37.3787449],[24.4255075,37.378518],[24.4257431,37.3782468],[24.4256854,37.3780306],[24.4255377,37.3778689],[24.4257165,37.3775258],[24.4256121,37.3770484],[24.4253757,37.3771935],[24.424507,37.3773679],[24.4241697,37.3776395],[24.4240002,37.3776221],[24.4237394,37.3774427],[24.4231062,37.3773188],[24.4225649,37.377474],[24.4221822,37.3777187],[24.4224996,37.3771655],[24.4222836,37.3769139],[24.4223036,37.3768214],[24.4221325,37.3765246],[24.4222324,37.3762177],[24.4236976,37.3756717],[24.424099,37.3751114],[24.424482,37.3749387],[24.4246394,37.374803],[24.4248171,37.3742705],[24.4249183,37.374189],[24.4267918,37.3739569],[24.4276839,37.3739267],[24.4279094,37.3738538],[24.4280649,37.3736346],[24.4285445,37.3735653],[24.429119,37.3733108],[24.4293898,37.3732557],[24.4292741,37.3724066],[24.4286946,37.3717868],[24.4284538,37.3712693],[24.4281913,37.3707836],[24.4275452,37.3703713],[24.4271705,37.3700211],[24.4268595,37.3689586],[24.4267003,37.3687608],[24.4265144,37.3687164],[24.4258035,37.3688272],[24.4253062,37.3687478],[24.425021,37.3686159],[24.4247034,37.3683737],[24.4231817,37.3668919],[24.4227015,37.3665871],[24.4222356,37.366084],[24.4220682,37.3659269],[24.4209236,37.3652279],[24.420175,37.3646446],[24.4199909,37.3644109],[24.4195924,37.3638174],[24.4194401,37.3628355],[24.4192335,37.3622413],[24.4188476,37.3618821],[24.4176808,37.3612192],[24.4174548,37.3609428],[24.417022,37.3602773],[24.4166496,37.3599361],[24.4164924,37.3597226],[24.4162861,37.3591735],[24.4161915,37.3583986],[24.4162455,37.3579478],[24.4164793,37.357343],[24.4167813,37.3568192],[24.4171289,37.3563763],[24.4172065,37.3561236],[24.4171683,37.3553485],[24.4166992,37.3542235],[24.4164493,37.353963],[24.4168104,37.3525127],[24.4168761,37.3522781],[24.417236,37.3520245],[24.4177312,37.3513467],[24.418099,37.3504801],[24.4181146,37.3499843],[24.4186243,37.3501379],[24.4188834,37.3500469],[24.4191485,37.349744],[24.4201137,37.348695],[24.4204364,37.3478465],[24.4208542,37.3478631],[24.4215527,37.3475992],[24.4223836,37.3467669],[24.4233502,37.3459973],[24.4235306,37.3459516],[24.4237009,37.3461132],[24.4246484,37.3459566],[24.4248745,37.3460099],[24.4250772,37.345928],[24.425864,37.3452942],[24.4261365,37.3451896],[24.4270711,37.3447693],[24.4277724,37.3450012],[24.4281,37.345018],[24.4284171,37.3452061],[24.4293664,37.3453559],[24.4296041,37.3454632],[24.4300796,37.345457],[24.4304972,37.3454284],[24.4305541,37.3455094],[24.4308531,37.3454677],[24.4308745,37.345515],[24.4309557,37.3458932],[24.4314432,37.346252],[24.4318168,37.3464309],[24.4326763,37.3466802],[24.4332753,37.3467771],[24.4340414,37.3464949],[24.4341994,37.3464943],[24.4344372,37.3466106],[24.434776,37.3468685],[24.4350747,37.3467773],[24.43571,37.346455],[24.4363299,37.3461462],[24.4354548,37.3471139],[24.4351353,37.3474982]]},{"id":16479,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03c1\u03c5\u03bf\u03c0\u03af\u03b4\u03b1-\u0396\u03bf\u03b3\u03ba\u03ac\u03ba\u03b9","description_GR":"\u0394\u03c1\u03c5\u03cc\u03c0\u03b9\u03b4\u03b1-\u039a\u03bf\u03c5\u03c1\u03ae-\u0396\u03bf\u03b3\u03ba\u03ac\u03ba\u03b9","path":"Islands\/Islands_Kythnos_Dryopis_Zogaki","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3666,"name_EN":"Kythnos Isl: Dryopida-Zogaki","description_EN":"Dryopida-Kouri-Zogaki","ascent_time":80,"descent_time":90,"marker":"No_marks","level":12,"ascent":80,"descent":234,"maxelev":223,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.43067 37.38082,24.45397 37.38973)","views":16,"millestones":"0,24.4306326,37.3832182#1,24.4387236,37.3865760#2,24.4459658,37.3886993#3,24.4530362,37.3858159#3.7,24.4531794,37.3808219","x":24.4426145,"y":37.3894317,"coor":[[24.4306326,37.3832182],[24.4307666,37.3831929],[24.430927,37.3835821],[24.4310617,37.3835591],[24.4310564,37.383611],[24.4313253,37.38361],[24.4314289,37.3839431],[24.431528,37.3839833],[24.4324046,37.3843181],[24.4328784,37.3842082],[24.433762,37.3846377],[24.4347348,37.3848684],[24.4351345,37.3848895],[24.4358119,37.3848329],[24.4361968,37.3849667],[24.4362656,37.3851467],[24.4361996,37.3854625],[24.4363025,37.3856604],[24.4371575,37.3861507],[24.4381327,37.3867961],[24.4382761,37.3862097],[24.4390507,37.3868355],[24.4390744,37.3870157],[24.4389624,37.3871874],[24.4393263,37.3873618],[24.4396432,37.3878181],[24.4393263,37.3873618],[24.4397934,37.3880361],[24.4406444,37.3886819],[24.4408041,37.3889337],[24.441,37.3896],[24.4415767,37.389688],[24.4419041,37.3896507],[24.4426145,37.3894317],[24.4432107,37.3893641],[24.4442514,37.3892453],[24.4449503,37.3889903],[24.4455152,37.3890062],[24.4456844,37.3889695],[24.4460439,37.3886256],[24.4466403,37.3882358],[24.4471359,37.3879995],[24.4485398,37.3866151],[24.4493558,37.3861275],[24.4503632,37.3855266],[24.4508139,37.3853265],[24.4513102,37.3852075],[24.4512318,37.3853272],[24.4513116,37.3861449],[24.4527621,37.3850307],[24.4528639,37.3850573],[24.4530494,37.3858498],[24.4531401,37.3859035],[24.45351,37.3850706],[24.4536625,37.3843715],[24.4539094,37.3841001],[24.453987,37.3838654],[24.453929,37.3836043],[24.4536339,37.383371],[24.4534191,37.3831105],[24.4534281,37.3823713],[24.4538298,37.381901],[24.4537714,37.3815858],[24.4535887,37.381262],[24.4533266,37.3808844],[24.4531794,37.3808219]]},{"id":16480,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03c9\u03bd \u039a\u03b1\u03ba\u03cc\u03b2\u03bf\u03bb\u03bf\u03c5","description_GR":"\u039c\u03b9\u03b1 \u03c3\u03c5\u03b3\u03ba\u03bb\u03bf\u03bd\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c4\u03c9\u03bd \u03c0\u03b1\u03bb\u03b9\u03ce\u03bd \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03c9\u03bd","path":"Islands\/Islands_Kythnos_Kakovolo_mines","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10613,"name_EN":"Kythnos Isl: Crossing the Kakovolos mining area","description_EN":"A stunning rtail along the old mining area","ascent_time":255,"descent_time":255,"marker":"No_marks","level":12,"ascent":346,"descent":465,"maxelev":336,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39702 37.42611,24.4306 37.46014)","views":25,"millestones":"0,24.4213204,37.4265468#1,24.4114868,37.4274599#2,24.4037860,37.4311010#3,24.4004064,37.4389305#4,24.3978867,37.4451130#5,24.4013453,37.4512272#6,24.4086666,37.4556829#7,24.4139715,37.4593928#8,24.4211124,37.4553735#9,24.4275556,37.4489676#10,24.4263999,37.4450131#10.6,24.4246100,37.4410493","x":24.4081097,"y":37.453918,"coor":[[24.4213204,37.4265468],[24.4205875,37.4272457],[24.4200001,37.4273019],[24.4189582,37.426927],[24.4179826,37.4262815],[24.4174076,37.4261618],[24.4153769,37.426827],[24.4147328,37.4268473],[24.4141105,37.4267233],[24.4131724,37.4267265],[24.4125051,37.4266477],[24.4119644,37.4272378],[24.4113444,37.4275284],[24.4107154,37.4282516],[24.4105124,37.4283335],[24.4101282,37.4283438],[24.4090759,37.4281402],[24.4086224,37.4278803],[24.4082489,37.4277915],[24.4065425,37.4278334],[24.4062821,37.4278839],[24.405176,37.4281761],[24.4049394,37.4283031],[24.4040611,37.4289191],[24.4037838,37.4295149],[24.4036953,37.4301259],[24.4038028,37.4312072],[24.4042922,37.4318274],[24.4044866,37.4322594],[24.4043755,37.4326023],[24.403994,37.4331264],[24.4041549,37.4336306],[24.4041562,37.433865],[24.40371,37.4349662],[24.4023854,37.4366923],[24.4023313,37.4371522],[24.4019043,37.4376314],[24.4007992,37.4385162],[24.4004409,37.4389095],[24.4003057,37.4389911],[24.3995266,37.439147],[24.3992785,37.439274],[24.3991116,37.4397613],[24.3990808,37.4403563],[24.3989907,37.4404107],[24.3987081,37.4404206],[24.3985821,37.4405135],[24.3972871,37.4414552],[24.3969188,37.4418283],[24.3970553,37.441972],[24.3971027,37.4423955],[24.3976024,37.4428265],[24.3980121,37.4433389],[24.3983667,37.4441219],[24.3985511,37.4447883],[24.3987451,37.4451302],[24.3987459,37.4452744],[24.398328,37.4453479],[24.3980902,37.4452856],[24.397795,37.4450342],[24.3977045,37.4450345],[24.3971977,37.4453968],[24.3972433,37.4454687],[24.3971086,37.4456494],[24.3971545,37.4457845],[24.3973922,37.4458288],[24.3977001,37.4463415],[24.3976125,37.4468646],[24.3982475,37.447223],[24.3987797,37.4473835],[24.3988933,37.4474912],[24.3993121,37.44758],[24.3997417,37.4475785],[24.4000014,37.4475145],[24.4002176,37.4477932],[24.4004104,37.4479007],[24.400614,37.4479091],[24.4006711,37.448026],[24.4008294,37.4480255],[24.4008075,37.4481698],[24.4008982,37.4482055],[24.4010806,37.4484934],[24.4013666,37.4491143],[24.4010079,37.4496924],[24.4009425,37.4501614],[24.4010355,37.4506388],[24.4012744,37.4509174],[24.4011964,37.4511249],[24.4014021,37.451264],[24.4013686,37.4513542],[24.4015956,37.4515157],[24.4015622,37.4516059],[24.4014268,37.4516695],[24.4014386,37.4517506],[24.4016199,37.4518311],[24.4019252,37.45183],[24.4019825,37.4519741],[24.4023911,37.4522701],[24.4027082,37.4523682],[24.4029456,37.4523674],[24.4030934,37.4525201],[24.403365,37.4525643],[24.4041361,37.4529853],[24.4055504,37.4531787],[24.4056752,37.4532504],[24.4056758,37.4533766],[24.4061273,37.4532218],[24.4064782,37.4533107],[24.4067392,37.4534811],[24.4071015,37.45357],[24.4072266,37.4537138],[24.4074757,37.453767],[24.4075215,37.453884],[24.4081097,37.453918],[24.4082451,37.4538725],[24.4082798,37.4540166],[24.4083931,37.4540703],[24.4084048,37.4541424],[24.4087004,37.4544298],[24.4086453,37.4547004],[24.408716,37.4552319],[24.4086732,37.4556738],[24.408561,37.4558274],[24.4085512,37.4561068],[24.4083145,37.4562519],[24.4082705,37.4564774],[24.407763,37.4567135],[24.4077408,37.4567947],[24.4073458,37.4569222],[24.4073823,37.4573998],[24.4072385,37.4579862],[24.4073765,37.4584094],[24.4076028,37.4584356],[24.407705,37.4585254],[24.408021,37.4584162],[24.4089709,37.4584309],[24.4094695,37.4586275],[24.4098429,37.4586803],[24.4101376,37.4588054],[24.4108394,37.4589472],[24.4111558,37.45891],[24.4117566,37.4591874],[24.412787,37.4594542],[24.4129801,37.4596158],[24.4134321,37.4595601],[24.4135794,37.4596137],[24.4140134,37.4593733],[24.4144899,37.4600454],[24.4147161,37.4600536],[24.4148271,37.4600555],[24.4149628,37.460073],[24.4150746,37.4598383],[24.4152325,37.4597656],[24.4157532,37.4598719],[24.4159603,37.4600064],[24.4160851,37.4598257],[24.4164198,37.4590043],[24.4170159,37.4584253],[24.4170244,37.4579205],[24.4171679,37.4572891],[24.417765,37.4569084],[24.4181624,37.456952],[24.4185124,37.4568607],[24.4198766,37.4561618],[24.4205067,37.4556007],[24.4210035,37.4554817],[24.4212958,37.4551923],[24.4218036,37.4550012],[24.4221411,37.4547115],[24.4225333,37.4540792],[24.4232699,37.453378],[24.4234688,37.4528004],[24.4244283,37.4521547],[24.4250153,37.4519904],[24.4250141,37.4517831],[24.4252059,37.4517193],[24.4254534,37.4514931],[24.4259288,37.4515905],[24.4264019,37.4512823],[24.4267537,37.4511504],[24.4268096,37.451024],[24.4270574,37.4508698],[24.4271907,37.4504547],[24.4272919,37.4503462],[24.4272792,37.4501119],[24.4275357,37.449489],[24.4275661,37.448867],[24.4280844,37.4485586],[24.4289304,37.4482311],[24.4289891,37.4481092],[24.4288101,37.4479363],[24.4288315,37.4477379],[24.4289442,37.4476654],[24.4295882,37.447591],[24.4300838,37.4472737],[24.4305576,37.4470917],[24.4307147,37.4468838],[24.430611,37.4465597],[24.4306752,37.4456739],[24.4305722,37.4454489],[24.4304138,37.4454315],[24.4300983,37.4456129],[24.4298838,37.4456677],[24.4296801,37.4456234],[24.4293058,37.4454084],[24.4289775,37.4453375],[24.4285254,37.4453572],[24.4280321,37.4454604],[24.4274998,37.445291],[24.4269696,37.4454913],[24.4264232,37.4452003],[24.4264133,37.4450719],[24.4263322,37.4447297],[24.4267128,37.4440703],[24.4267458,37.4439079],[24.426632,37.4437641],[24.4260458,37.4433178],[24.4258418,37.4432284],[24.4256849,37.4432154],[24.4255195,37.4432025],[24.4253942,37.4431579],[24.4251028,37.4428638],[24.4250651,37.4425732],[24.4251854,37.442095],[24.4253134,37.4418692],[24.42461,37.4410493]]},{"id":16481,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u03a7\u03ce\u03c1\u03b1-\u03a0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u039a\u03bf\u03bb\u03ce\u03bd\u03b1","description_GR":"\u039c\u03b9\u03b1 \u03bc\u03b1\u03ba\u03c1\u03b9\u03ac \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03ae \u03b8\u03ad\u03b1","path":"ISLANDS\/Islands_Kythnos_Kolona","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9209,"name_EN":"Kythnos Isl: From Chora to the beach Kolona","description_EN":"A long trail with impressive view","ascent_time":225,"descent_time":225,"marker":"No_marks","level":12,"ascent":254,"descent":396,"maxelev":281,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.37242 37.41274,24.4298 37.43343)","views":39,"millestones":"0,24.4298025,37.4127907#1,24.4250842,37.4188168#2,24.4212840,37.4264302#3,24.4116151,37.4273996#4,24.4024187,37.4303787#5,24.3935654,37.4316575#6,24.3835149,37.4294103#7,24.3764477,37.4243142#8,24.3735761,37.4196721#9.2,24.3784902,37.4134708","x":24.3925237,"y":37.4313127,"coor":[[24.4298025,37.4127907],[24.4297044,37.4127933],[24.4291958,37.4127771],[24.4288488,37.4127468],[24.4284522,37.4128001],[24.4282679,37.4129269],[24.4276275,37.4135782],[24.4273045,37.4136696],[24.4267849,37.4137052],[24.4266609,37.4137598],[24.4261357,37.4138045],[24.4258668,37.4142201],[24.4250213,37.414818],[24.4246944,37.4151009],[24.4246635,37.4156328],[24.4244975,37.4162463],[24.4245326,37.4164535],[24.4246618,37.416568],[24.4248564,37.4167701],[24.4250429,37.417148],[24.4251445,37.4180107],[24.4249491,37.4181646],[24.4250139,37.4185069],[24.4251254,37.4189932],[24.4253092,37.4195334],[24.4254076,37.4201955],[24.4253183,37.4203761],[24.4250477,37.4205033],[24.424754,37.4205224],[24.4244721,37.4206316],[24.4236607,37.4210401],[24.4234328,37.4212167],[24.4231189,37.4216685],[24.4224105,37.422302],[24.4222895,37.4228883],[24.4220042,37.4236645],[24.4217678,37.4242062],[24.4215647,37.4245156],[24.4211424,37.4258061],[24.4213182,37.4265491],[24.4205854,37.4272457],[24.419998,37.4273019],[24.4189561,37.426927],[24.4179805,37.4262815],[24.4174055,37.4261618],[24.4153748,37.426827],[24.4147307,37.4268473],[24.4141083,37.4267233],[24.4131703,37.4267265],[24.412503,37.4266477],[24.411963,37.4272378],[24.411343,37.4275284],[24.410714,37.4282517],[24.410511,37.4283335],[24.4101268,37.4283438],[24.4090745,37.4281402],[24.408621,37.4278803],[24.4082475,37.4277915],[24.4065411,37.4278334],[24.40628,37.4278839],[24.4051739,37.4281761],[24.4049372,37.4283031],[24.404059,37.4289191],[24.4037817,37.4295149],[24.4028916,37.4297726],[24.4025994,37.43008],[24.4023641,37.4304774],[24.4017318,37.4306058],[24.401405,37.4307872],[24.4014169,37.4308953],[24.4012585,37.4308598],[24.4012589,37.4309319],[24.4011683,37.4309142],[24.4012025,37.4309681],[24.4008189,37.4310866],[24.4008419,37.4311586],[24.4006399,37.4314297],[24.4005494,37.431421],[24.3998627,37.4319552],[24.3993555,37.4322183],[24.3989958,37.4325981],[24.3986349,37.4327435],[24.3982077,37.4331776],[24.3978807,37.4333409],[24.3977449,37.4333053],[24.3973017,37.4328652],[24.3968367,37.4325603],[24.3953987,37.4320783],[24.3948669,37.43199],[24.393056,37.4315273],[24.3925237,37.4313127],[24.391911,37.4308731],[24.3910962,37.4306775],[24.3898948,37.4300505],[24.3885923,37.429532],[24.3883563,37.4293908],[24.3877449,37.4295979],[24.3869445,37.4299881],[24.3861361,37.4302274],[24.3852529,37.4299057],[24.3847214,37.4298624],[24.3836231,37.4294874],[24.3825794,37.4287336],[24.3822492,37.428257],[24.3821663,37.4275181],[24.3819502,37.4272484],[24.3819039,37.4270322],[24.381337,37.4266825],[24.38119,37.426665],[24.3808945,37.4263324],[24.3807019,37.4262429],[24.3807687,37.4260444],[24.3809377,37.4259357],[24.3809033,37.4258547],[24.381004,37.425647],[24.3808674,37.4254492],[24.380064,37.4252625],[24.3789688,37.4254913],[24.3788325,37.4253475],[24.3785838,37.4253483],[24.3781308,37.4251515],[24.3778132,37.4249362],[24.3776994,37.4247743],[24.3769911,37.4245242],[24.3766963,37.4243448],[24.3758594,37.4242393],[24.3749079,37.4238007],[24.3747828,37.4236569],[24.3747586,37.4233324],[24.3745785,37.4234772],[24.3744763,37.4233694],[24.374361,37.4229281],[24.3744048,37.4226305],[24.3743478,37.4225405],[24.3738618,37.4225331],[24.3730716,37.4227158],[24.3723649,37.4225153],[24.3724881,37.4222895],[24.3729728,37.4220266],[24.3728934,37.4219728],[24.3729834,37.4218914],[24.3728133,37.4217657],[24.372926,37.4216932],[24.3727106,37.4215677],[24.3726759,37.4214056],[24.3725397,37.4212888],[24.3727203,37.4212522],[24.3725156,37.4209825],[24.3728774,37.4210264],[24.3731363,37.4208092],[24.3733385,37.4205562],[24.3731804,37.4205838],[24.3732704,37.4204933],[24.373292,37.420295],[24.3734714,37.420015],[24.373629,37.4198883],[24.3734816,37.4197986],[24.3735827,37.4196631],[24.3732078,37.4192677],[24.3731372,37.418709],[24.3730462,37.4185922],[24.3732366,37.418391],[24.3739483,37.4183347],[24.3743544,37.4181801],[24.3750662,37.4181599],[24.3754359,37.4179243],[24.3755687,37.4173651],[24.3757141,37.4170671],[24.3762222,37.4169844],[24.3764361,37.4168215],[24.3774622,37.4163495],[24.3780838,37.4163655],[24.3783,37.4161035],[24.3785465,37.415688],[24.3788053,37.4154709],[24.3793469,37.4152979],[24.3798438,37.4152242],[24.3795604,37.4150628],[24.3792196,37.4147124],[24.3784902,37.4134708]]},{"id":16482,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 6a","description_GR":"\u03a7\u03ce\u03c1\u03b1-\u0392\u03c1\u03c5\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf-\u0391\u03c0\u03cc\u03ba\u03c1\u03b9\u03c3\u03b7-\u039a\u03bf\u03bb\u03ce\u03bd\u03b1","path":"ISLANDS\/Islands_Kythnos_Trail_6a","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1361,"name_EN":"Kythnos Isl: Trail 6a","description_EN":"Chora-Vryokastro-Apokrisi-Kolona","ascent_time":30,"descent_time":30,"marker":"No_marks","level":12,"ascent":13,"descent":82,"maxelev":78,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39698 37.40331,24.40411 37.4123)","views":13,"millestones":"0,24.4041078,37.4033110#1.4,24.3978718,37.4123008","x":24.3993001,"y":37.406757,"coor":[[24.4041078,37.403311],[24.4039836,37.4033204],[24.4038922,37.4033996],[24.4036529,37.4038015],[24.4030456,37.4043354],[24.4026321,37.4051841],[24.4023172,37.4054736],[24.4019115,37.4056733],[24.401567,37.4059471],[24.4012289,37.4061105],[24.4008902,37.4061658],[24.4004609,37.4061762],[24.400178,37.4061051],[24.3996596,37.4063592],[24.3993001,37.406757],[24.3989527,37.407299],[24.3980178,37.4082554],[24.3973419,37.4086543],[24.3970731,37.4090968],[24.3970422,37.4096648],[24.3971354,37.4101963],[24.3969679,37.4105844],[24.3975001,37.410781],[24.3976936,37.4110507],[24.3977509,37.41133],[24.3977241,37.4118821],[24.3977376,37.4122967],[24.3978718,37.4123008]]},{"id":16483,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 4","description_GR":"\u03a7\u03ce\u03c1\u03b1-\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03c4\u03bf\u03c5 \u039d\u03af\u03ba\u03bf\u03c5\u03c2-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","path":"ISLANDS\/Islands_Kythnos_Trail_4","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":5756,"name_EN":"Kythnos Isl: Trail 4","description_EN":"Chora-Panagia tou Nikous-Aghios Ioanis","ascent_time":135,"descent_time":130,"marker":"Red_dots","level":12,"ascent":240,"descent":363,"maxelev":258,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.4298 37.3978,24.47077 37.4129)","views":27,"millestones":"0,24.4298025,37.4127907#1,24.4389295,37.4109758#2,24.4489088,37.4106806#3,24.4579104,37.4124044#4,24.4627987,37.4064527#5,24.4673204,37.4017137#5.8,24.4700993,37.3977985","x":24.4577311,"y":37.412118,"coor":[[24.4298025,37.4127907],[24.4300093,37.4127561],[24.4303993,37.4126736],[24.4313613,37.4124267],[24.431546,37.4123697],[24.4316592,37.4124053],[24.4319071,37.4122782],[24.4320795,37.4124173],[24.4322884,37.4125135],[24.4326934,37.4126877],[24.4330217,37.4127947],[24.4334967,37.4128561],[24.4334843,37.4126668],[24.4336428,37.4124769],[24.4337792,37.4123705],[24.4340124,37.4116576],[24.4343656,37.4116833],[24.4346926,37.411556],[24.4346012,37.411376],[24.4346338,37.4111596],[24.4353108,37.4109768],[24.4358755,37.4109297],[24.4363607,37.4108197],[24.4370544,37.4107202],[24.4376533,37.410727],[24.4390788,37.4110102],[24.4399406,37.4115298],[24.4401556,37.4115831],[24.4405509,37.4115365],[24.4409126,37.4115622],[24.4422218,37.4121207],[24.4424699,37.4121648],[24.4425032,37.4120655],[24.4428283,37.4122266],[24.443209,37.4118556],[24.4436266,37.4117819],[24.4440788,37.4118163],[24.4444513,37.4117428],[24.4449601,37.4117949],[24.4451734,37.4115598],[24.4454553,37.4114596],[24.4463601,37.4115913],[24.4475343,37.4114247],[24.4489085,37.4106803],[24.4491442,37.4108845],[24.449396,37.4114244],[24.449759,37.4116573],[24.4501668,37.411827],[24.4514607,37.4120655],[24.4521283,37.4122162],[24.4533376,37.4122476],[24.4535303,37.412355],[24.4537582,37.4126606],[24.4539865,37.412813],[24.4541451,37.412765],[24.4544035,37.4125117],[24.4548306,37.4122419],[24.4554363,37.4119646],[24.455595,37.4120451],[24.456205,37.4120067],[24.4564544,37.41215],[24.4566935,37.4124465],[24.4569205,37.4126079],[24.4577571,37.4126767],[24.4580392,37.4126035],[24.4577311,37.412118],[24.457649,37.4117375],[24.4576819,37.4115661],[24.4574538,37.4112245],[24.4572004,37.4104322],[24.457694,37.4098354],[24.4576701,37.4096372],[24.4574654,37.4094127],[24.4574527,37.4091784],[24.4575307,37.4089978],[24.4580381,37.4088336],[24.4585112,37.4085793],[24.4586341,37.4083535],[24.4594332,37.4078366],[24.4598809,37.4071409],[24.4609537,37.4070285],[24.4614149,37.4066842],[24.4619779,37.4063755],[24.462905,37.406462],[24.4631647,37.406434],[24.4635041,37.4065048],[24.4639584,37.4068725],[24.4640598,37.4068361],[24.4643208,37.4070063],[24.4643996,37.40697],[24.4646945,37.4071491],[24.4647507,37.4071038],[24.4647963,37.4071667],[24.464898,37.4071663],[24.4649969,37.4067152],[24.4653658,37.4060738],[24.4653801,37.4052986],[24.4651501,37.4046505],[24.4648999,37.4043811],[24.4649443,37.4042547],[24.4648642,37.4040928],[24.4649302,37.4038041],[24.4653225,37.4032978],[24.4654135,37.4030473],[24.4654472,37.4030111],[24.4656622,37.4030643],[24.4658649,37.4029554],[24.4659864,37.4025042],[24.4660878,37.4024677],[24.4659969,37.402378],[24.4662674,37.4022687],[24.4664692,37.4020246],[24.46708,37.4021303],[24.4674266,37.4015431],[24.4676743,37.4014069],[24.4677873,37.4014064],[24.467899,37.4011897],[24.4687416,37.4004202],[24.4689896,37.400329],[24.4691252,37.4003375],[24.469398,37.4005978],[24.4694773,37.4006336],[24.4695915,37.4006061],[24.4695513,37.3998175],[24.4700808,37.3995811],[24.4704957,37.3990837],[24.4707741,37.3991028],[24.4706033,37.3988872],[24.4705663,37.3984006],[24.4700667,37.398006],[24.4700993,37.3977985]]},{"id":16484,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 5","description_GR":"\u03a7\u03ce\u03c1\u03b1-\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03c4\u03ad\u03c6\u03b1\u03bd\u03bf\u03c2","path":"ISLANDS\/Islands_Kythnos_Trail_5","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":3981,"name_EN":"Kythnos Isl: Trail 5","description_EN":"Chora-Aghios \u03a3\u03c4\u03b5\u03c6\u03b1\u03bd\u03bf\u03c2","ascent_time":70,"descent_time":75,"marker":"Red_dots","level":12,"ascent":140,"descent":274,"maxelev":220,"minelev":1,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.4298 37.39669,24.45646 37.41287)","views":37,"millestones":"0,24.4298025,37.4127907#1,24.4363258,37.4090480#2,24.4418013,37.4026202#3,24.4496239,37.4002473#4.0,24.4564637,37.3966847","x":24.4422996,"y":37.4024104,"coor":[[24.4298025,37.4127907],[24.4300093,37.4127561],[24.4303993,37.4126736],[24.4313613,37.4124267],[24.431546,37.4123697],[24.4316592,37.4124053],[24.4319071,37.4122782],[24.4320795,37.4124173],[24.4322884,37.4125135],[24.4326934,37.4126877],[24.4330217,37.4127947],[24.4334967,37.4128561],[24.4334843,37.4126668],[24.4336428,37.4124769],[24.4337792,37.4123705],[24.4340124,37.4116576],[24.4343656,37.4116833],[24.4346926,37.411556],[24.4346012,37.411376],[24.4346338,37.4111596],[24.4353108,37.4109768],[24.4358755,37.4109297],[24.4363607,37.4108197],[24.4368112,37.4103133],[24.4369553,37.409826],[24.4369657,37.4096817],[24.4368859,37.4095558],[24.4363408,37.4090891],[24.4362834,37.4089361],[24.4364849,37.4086109],[24.4367439,37.4084567],[24.4369563,37.4080503],[24.4367831,37.40742],[24.4368714,37.4070591],[24.4370063,37.4069414],[24.4370169,37.4068152],[24.437244,37.4066431],[24.4376048,37.406635],[24.4377399,37.4065534],[24.4381469,37.4065789],[24.4384217,37.4064742],[24.4382576,37.4061999],[24.4388313,37.4057471],[24.4391037,37.4056041],[24.4391933,37.4054596],[24.4394183,37.4052965],[24.4400273,37.4050959],[24.4401146,37.4045638],[24.4404526,37.4042809],[24.440811,37.4037387],[24.4409221,37.4034138],[24.4408859,37.4030263],[24.4411734,37.4030456],[24.4416121,37.4027014],[24.4422996,37.4024104],[24.442489,37.4022024],[24.44269,37.401805],[24.4428821,37.4018043],[24.4429382,37.401732],[24.4430513,37.4017586],[24.4431188,37.4017042],[24.4440442,37.4015205],[24.4442239,37.4013305],[24.4442583,37.4014205],[24.4443932,37.4013119],[24.4444949,37.4013115],[24.4444843,37.4014377],[24.4448336,37.4012742],[24.4448904,37.401319],[24.4453401,37.4009478],[24.4456108,37.4008566],[24.4457229,37.400721],[24.445814,37.4008288],[24.4458817,37.4008195],[24.4459263,37.4007112],[24.4461077,37.4008187],[24.4462419,37.4005928],[24.4463099,37.4006286],[24.446603,37.4005194],[24.4467952,37.4005457],[24.4468415,37.4004869],[24.4470125,37.4007386],[24.4468682,37.4011718],[24.4470162,37.4013606],[24.4471973,37.401423],[24.4474217,37.4011607],[24.4476932,37.4010876],[24.4481888,37.4008424],[24.4490124,37.4006319],[24.4494287,37.4003419],[24.4498342,37.4001421],[24.4501965,37.4002579],[24.450299,37.4004017],[24.4509905,37.4007776],[24.4515222,37.4009018],[24.4520417,37.4008637],[24.4528428,37.4006714],[24.452932,37.4004818],[24.4529207,37.4000041],[24.4531807,37.3999129],[24.4537385,37.3997846],[24.4542221,37.3994222],[24.454795,37.3991158],[24.4556147,37.3982744],[24.4556337,37.3976794],[24.4554959,37.3973104],[24.4555738,37.3971208],[24.4564637,37.3966847]]},{"id":16485,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 4a","description_GR":"\u03a7\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03c4\u03ad\u03c6\u03b1\u03bd\u03bf\u03c2-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","path":"ISLANDS\/Islands_Kythnos_Trail_4a","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":1846,"name_EN":"Kythnos Isl: Trail 4a","description_EN":"Aghios Stefanos-Aghios Ioanis","ascent_time":45,"descent_time":45,"marker":"Red_dots","level":12,"ascent":76,"descent":75,"maxelev":79,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.45648 37.39603,24.46953 37.39989)","views":18,"millestones":"0,24.4564644,37.3966869#1,24.4631293,37.3979659#1.8,24.4695534,37.3998175","x":24.4640079,"y":37.3991093,"coor":[[24.4564644,37.3966869],[24.4573399,37.3970193],[24.4581541,37.3971333],[24.4586624,37.3971224],[24.4592037,37.396958],[24.459572,37.3962174],[24.4600011,37.3960648],[24.4603648,37.3964239],[24.4606141,37.3965492],[24.4608048,37.3970149],[24.4608865,37.3974382],[24.4606738,37.3977635],[24.4608116,37.3981235],[24.4606445,37.3985118],[24.4612125,37.3990233],[24.461552,37.3991031],[24.4617419,37.398992],[24.4623977,37.3981511],[24.4628824,37.39796],[24.4631762,37.3979678],[24.4635396,37.3982729],[24.4636777,37.398687],[24.4640079,37.3991093],[24.4642392,37.3991715],[24.4643635,37.399162],[24.4643404,37.39909],[24.4646117,37.3991069],[24.464769,37.3989711],[24.4650062,37.3989612],[24.4651187,37.3988886],[24.4653903,37.3989506],[24.4653994,37.3985991],[24.4657263,37.3984716],[24.4660098,37.3986507],[24.4660308,37.3983893],[24.4661097,37.3983619],[24.4666758,37.398558],[24.4672174,37.3984387],[24.4676709,37.3986893],[24.468259,37.3987861],[24.4684298,37.3990017],[24.4686714,37.3997038],[24.4691694,37.3998371],[24.4695534,37.3998175]]},{"id":16486,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 9","description_GR":"\u03a7\u03ce\u03c1\u03b1-\u0391\u03c0\u03cc\u03ba\u03c1\u03b9\u03c3\u03b7","path":"ISLANDS\/Islands_Kythnos_Trail_9","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":493,"name_EN":"Kythnos Isl: Trail 9","description_EN":"Chora-Apokrisi","ascent_time":80,"descent_time":85,"marker":"Red_dots","level":12,"ascent":86,"descent":224,"maxelev":143,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39699 37.40322,24.42975 37.41391)","views":23,"millestones":"0,24.4298025,37.4127907#1,24.4204915,37.4136923#2,24.4112625,37.4106390#3,24.4061233,37.4043320#4,24.3984097,37.4078642#0.5,24.3978754,37.4123030","x":24.4084107,"y":37.4081568,"coor":[[24.4298025,37.4127907],[24.4297044,37.4127933],[24.4291958,37.4127771],[24.4288488,37.4127468],[24.4289263,37.4124671],[24.4289506,37.4123994],[24.4286608,37.4123441],[24.4285856,37.4124233],[24.4283607,37.4123678],[24.4282006,37.4122805],[24.4279406,37.4122544],[24.4277947,37.4120656],[24.4277382,37.4120613],[24.4271451,37.4118426],[24.42708,37.4119397],[24.4269779,37.411877],[24.4266709,37.4119142],[24.4262875,37.4120508],[24.4260579,37.4122995],[24.4258801,37.4128229],[24.4256095,37.4129365],[24.425594,37.4129276],[24.4237654,37.4132947],[24.4228504,37.4133521],[24.4220969,37.4136252],[24.4217667,37.4135632],[24.4215582,37.4134085],[24.421276,37.4134546],[24.420713,37.4136977],[24.4200236,37.4136821],[24.4190747,37.4137396],[24.4185424,37.4135341],[24.4182249,37.413328],[24.4172999,37.4136287],[24.4167579,37.4137027],[24.4164577,37.4135618],[24.4157441,37.4136364],[24.4154062,37.4138449],[24.4145444,37.4132981],[24.4131467,37.4118969],[24.4127608,37.4115917],[24.4120629,37.411308],[24.4116354,37.411003],[24.4111355,37.410518],[24.4089564,37.4087589],[24.4084107,37.4081568],[24.407787,37.4077444],[24.4069267,37.4074589],[24.4063352,37.4067218],[24.4060385,37.406191],[24.4056404,37.4057056],[24.4056603,37.4055974],[24.4059752,37.4053169],[24.4060991,37.4052444],[24.4065171,37.4052249],[24.4067416,37.4049537],[24.4068765,37.4048293],[24.406287,37.4044708],[24.4058898,37.4041387],[24.4047933,37.4040613],[24.4044418,37.4038191],[24.4042808,37.403556],[24.404122,37.4034484],[24.4041114,37.4033132],[24.4039872,37.4033227],[24.4038958,37.4034018],[24.4036564,37.4038038],[24.4030491,37.4043377],[24.4026356,37.4051864],[24.4023208,37.4054759],[24.4019151,37.4056755],[24.4015705,37.4059494],[24.4012324,37.4061128],[24.4008937,37.406168],[24.4004644,37.4061785],[24.4001816,37.4061073],[24.3996631,37.4063615],[24.3993037,37.4067593],[24.3989563,37.4073013],[24.3980214,37.4082576],[24.3973455,37.4086565],[24.3970766,37.4090991],[24.3970457,37.409667],[24.3971389,37.4101985],[24.3969715,37.4105867],[24.3975036,37.4107832],[24.3976971,37.411053],[24.3977544,37.4113322],[24.3977277,37.4118844],[24.3977412,37.412299],[24.3978754,37.412303]]},{"id":16487,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 1b","description_GR":"\u039b\u03bf\u03c5\u03c4\u03c1\u03ac-\u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u03a9\u03c1\u03b9\u03ac\u03c2","path":"ISLANDS\/Islands_Kythnos_Trail_1b","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":3567,"name_EN":"Kythnos Isl: Trail 1b","description_EN":"Loutra-Kastro Orias","ascent_time":70,"descent_time":65,"marker":"Red_dots","level":12,"ascent":260,"descent":49,"maxelev":230,"minelev":10,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.40973 37.44105,24.42461 37.4633)","views":19,"millestones":"0,24.4246093,37.4410493#1,24.4205977,37.4473895#2,24.4179149,37.4547695#3,24.4131236,37.4611770#3.6,24.4100314,37.4633013","x":24.4180006,"y":37.4542936,"coor":[[24.4246093,37.4410493],[24.4243827,37.4412101],[24.4242775,37.4411],[24.4240976,37.4412629],[24.4243938,37.4416765],[24.4243969,37.4418477],[24.424511,37.4420276],[24.4244666,37.442172],[24.4242874,37.4423529],[24.424017,37.4425161],[24.4233088,37.4432307],[24.4228129,37.4434849],[24.4225194,37.4435581],[24.4223146,37.443703],[24.4217857,37.4441466],[24.4218188,37.4439932],[24.421636,37.4436513],[24.4210704,37.4446088],[24.4210267,37.4448794],[24.4210972,37.4453478],[24.4209936,37.4460242],[24.4205791,37.4467017],[24.4206279,37.4473505],[24.420134,37.4479832],[24.4203523,37.4485954],[24.4203331,37.4492174],[24.4206749,37.4496714],[24.4205719,37.4502216],[24.4201017,37.4510435],[24.4200031,37.45149],[24.4199029,37.4525179],[24.4199158,37.4528063],[24.4200766,37.4532564],[24.4200657,37.4535742],[24.4191945,37.4534781],[24.4189007,37.4535062],[24.4183712,37.4538326],[24.4180006,37.4542936],[24.4178893,37.4546095],[24.4180534,37.4556455],[24.4178641,37.4561689],[24.4177657,37.4569106],[24.4171686,37.4572913],[24.4170251,37.4579228],[24.4170166,37.4584276],[24.4164205,37.4590065],[24.4160859,37.459828],[24.415961,37.4600064],[24.4157532,37.4598719],[24.4152325,37.4597656],[24.4150746,37.4598383],[24.4149628,37.460073],[24.4148271,37.4600555],[24.4144338,37.4606337],[24.4144471,37.4610032],[24.4141534,37.4610583],[24.4135427,37.4610334],[24.4130687,37.4611973],[24.4126618,37.4612348],[24.4122899,37.4614524],[24.4117162,37.4619953],[24.4117453,37.4620312],[24.4113278,37.4625667],[24.4108652,37.4627666],[24.4109116,37.4629648],[24.410719,37.4629024],[24.4106628,37.4629747],[24.4105379,37.4628669],[24.4101192,37.4628143],[24.4098031,37.4629055],[24.4097246,37.463032],[24.4100407,37.4629317],[24.4104145,37.4630566],[24.4100314,37.4633013]]},{"id":16488,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 1c","description_GR":"\u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u03a9\u03c1\u03b9\u03ac\u03c2-\u03a0\u03c1\u03bf\u03b9\u03c3\u03c4\u03bf\u03c4\u03b9\u03ba\u03cc\u03c2 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u039c\u03b1\u03c1\u03bf\u03c5\u03bb\u03ac-\u039b\u03bf\u03c5\u03c4\u03c1\u03ac","path":"ISLANDS\/Islands_Kythnos_Trail_1c","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":4231,"name_EN":"Kythnos Isl: Trail 1c","description_EN":"Kastro Orias-Maroulas Prehistoric settl.-Loutra","ascent_time":75,"descent_time":80,"marker":"Red_dots","level":12,"ascent":57,"descent":274,"maxelev":230,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.40973 37.44103,24.43068 37.4633)","views":13,"millestones":"0,24.4100300,37.4633013#1,24.4163390,37.4591940#2,24.4234060,37.4529892#3,24.4301294,37.4472585#4.2,24.4246079,37.4410515","x":24.4254527,"y":37.4514931,"coor":[[24.41003,37.4633013],[24.4104131,37.4630566],[24.4100393,37.4629318],[24.4097232,37.463032],[24.4098017,37.4629055],[24.4101178,37.4628143],[24.4105364,37.4628669],[24.4106614,37.4629747],[24.4107176,37.4629024],[24.4109101,37.4629648],[24.4108638,37.4627666],[24.4113263,37.4625667],[24.4117439,37.4620312],[24.4117147,37.4619953],[24.4122885,37.4614525],[24.4126604,37.4612348],[24.4130673,37.4611974],[24.4135413,37.4610334],[24.414152,37.4610584],[24.4144457,37.4610032],[24.4144324,37.4606337],[24.4148256,37.4600555],[24.4149614,37.460073],[24.4150732,37.4598383],[24.4152311,37.4597656],[24.4157518,37.4598719],[24.4159596,37.4600064],[24.4160844,37.459828],[24.4164191,37.4590065],[24.4170152,37.4584276],[24.4170237,37.4579228],[24.4171672,37.4572913],[24.4177643,37.4569106],[24.418161,37.456952],[24.418511,37.4568607],[24.4198752,37.4561618],[24.4205052,37.4556007],[24.4210021,37.4554818],[24.4212944,37.4551923],[24.4218021,37.4550012],[24.4221397,37.4547115],[24.4225319,37.4540792],[24.4232685,37.453378],[24.4234681,37.4528004],[24.4244276,37.4521547],[24.4250146,37.4519904],[24.4250134,37.4517831],[24.4252052,37.4517193],[24.4254527,37.4514931],[24.4259281,37.4515905],[24.4264012,37.4512823],[24.426753,37.4511504],[24.4268089,37.451024],[24.4270567,37.4508698],[24.42719,37.4504547],[24.4272912,37.4503462],[24.4272785,37.4501119],[24.427535,37.449489],[24.4275654,37.448867],[24.4280837,37.4485586],[24.4289297,37.4482311],[24.4289877,37.4481092],[24.4288094,37.4479386],[24.4288308,37.4477402],[24.4289435,37.4476677],[24.4295875,37.4475932],[24.4300831,37.4472759],[24.4305569,37.4470939],[24.430714,37.4468861],[24.4306104,37.4465619],[24.4306745,37.4456761],[24.4305715,37.4454512],[24.4304131,37.4454337],[24.4300976,37.4456151],[24.4298831,37.44567],[24.4296794,37.4456257],[24.4293051,37.4454107],[24.4289768,37.4453398],[24.4285247,37.4453594],[24.4280307,37.4454626],[24.4274984,37.4452933],[24.4269682,37.4454935],[24.4264218,37.4452026],[24.4264119,37.4450741],[24.4263308,37.4447319],[24.4267114,37.4440725],[24.4267444,37.4439102],[24.4266306,37.4437664],[24.4260451,37.4433201],[24.4258411,37.4432307],[24.4255174,37.4432048],[24.4253921,37.4431602],[24.4251007,37.4428638],[24.425063,37.4425755],[24.4251833,37.4420973],[24.4253113,37.4418715],[24.4246079,37.4410515]]},{"id":16489,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 6c","description_GR":"\u0392\u03c1\u03c5\u03cc\u03ba\u03b1\u03c3\u03c4\u03c1\u03bf","path":"ISLANDS\/Islands_Kythnos_Trail_6c","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1148,"name_EN":"Kythnos Isl: Trail 6c","description_EN":"Vryokastro","ascent_time":30,"descent_time":25,"marker":"No_marks","level":12,"ascent":68,"descent":23,"maxelev":143,"minelev":74,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39486 37.40331,24.40411 37.40847)","views":18,"millestones":"0,24.4041078,37.4033110#1.1,24.3948628,37.4084710","x":24.3977752,"y":37.4057752,"coor":[[24.4041078,37.403311],[24.4039836,37.4033204],[24.4038922,37.4033996],[24.4030894,37.4036728],[24.4026012,37.403893],[24.4023537,37.4041012],[24.4021744,37.4043722],[24.4012955,37.4048349],[24.4007535,37.4049088],[24.4002673,37.4048384],[24.398879,37.4051225],[24.3986989,37.4052493],[24.3983154,37.4053768],[24.3980456,37.40563],[24.3977752,37.4057752],[24.3974588,37.4057762],[24.3975735,37.4061003],[24.3973381,37.4064617],[24.396639,37.4067254],[24.3959048,37.406773],[24.3958263,37.4068904],[24.3956004,37.4069092],[24.3950846,37.407659],[24.3950755,37.4080827],[24.3949398,37.4080561],[24.3949062,37.4081193],[24.3949982,37.4084255],[24.3948628,37.408471]]},{"id":16490,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 6b","description_GR":"\u03a7\u03ce\u03c1\u03b1-\u0386\u03b3\u03b9\u03bf\u03c2 \u03a4\u03c1\u03cd\u03c6\u03c9\u03bd-\u0395\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae","path":"ISLANDS\/Islands_Kythnos_Trail_6b","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":2564,"name_EN":"Kythnos Isl: Trail 6b","description_EN":"Chora-Aghios Tryfon-Episkopi","ascent_time":65,"descent_time":60,"marker":"Red_dots","level":12,"ascent":111,"descent":164,"maxelev":131,"minelev":13,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39024 37.40331,24.40411 37.41063)","views":15,"millestones":"0,24.4041078,37.4033110#1,24.3948064,37.4051369#2,24.3910950,37.4099061#2.6,24.3969672,37.4105845","x":24.3943853,"y":37.4046733,"coor":[[24.4041078,37.403311],[24.4039836,37.4033204],[24.4038922,37.4033996],[24.4030894,37.4036728],[24.402717,37.4037642],[24.4023341,37.4039998],[24.4022209,37.4039551],[24.4021516,37.403685],[24.4020836,37.4036401],[24.4019371,37.4037217],[24.4017916,37.4039656],[24.4015082,37.4037953],[24.4013386,37.4037779],[24.4010565,37.4038419],[24.4007524,37.4040232],[24.3998469,37.4037378],[24.3998492,37.4037626],[24.3997588,37.4037719],[24.3993965,37.403629],[24.3991598,37.4037379],[24.3988562,37.4040094],[24.3986997,37.4043254],[24.3984858,37.4044703],[24.3982259,37.4044712],[24.3980456,37.4045619],[24.3978215,37.4049142],[24.3976856,37.4048696],[24.3973247,37.404997],[24.3971664,37.4049615],[24.3964436,37.405027],[24.3951666,37.4049952],[24.3947269,37.405168],[24.3945342,37.4050514],[24.3946574,37.4048527],[24.3943853,37.4046733],[24.3939679,37.4047919],[24.3938447,37.4049996],[24.3938015,37.4053964],[24.393657,37.4058475],[24.3931391,37.4062098],[24.3929938,37.4064987],[24.3929502,37.4068234],[24.3929166,37.4068686],[24.3928483,37.4067696],[24.392792,37.4068149],[24.3926131,37.407167],[24.3924663,37.4071945],[24.3924433,37.4071225],[24.3921941,37.4070062],[24.3916734,37.4068276],[24.3916057,37.4068278],[24.3915638,37.4069204],[24.3914635,37.4071911],[24.3915999,37.4073529],[24.391556,37.4076054],[24.391084,37.4080937],[24.3907733,37.4091944],[24.390593,37.4092852],[24.3902309,37.4091872],[24.3902539,37.4092593],[24.3906402,37.4096726],[24.39115,37.4099323],[24.3929471,37.4099985],[24.3938193,37.4104192],[24.3943681,37.4105571],[24.3952491,37.410482],[24.3963006,37.4106047],[24.3969672,37.4105845]]},{"id":16491,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 6","description_GR":"\u03a7\u03ce\u03c1\u03b1-\u0386\u03b3\u03b9\u03bf\u03c2 \u03a4\u03c1\u03cd\u03c6\u03c9\u03bd-\u0395\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae","path":"ISLANDS\/Islands_Kythnos_Trail_6","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":5046,"name_EN":"Kythnos Isl: Trail 6","description_EN":"Chora-Aghios Tryfon-Episkopi","ascent_time":110,"descent_time":115,"marker":"Red_dots","level":12,"ascent":147,"descent":274,"maxelev":179,"minelev":3,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39909 37.39849,24.42972 37.4129)","views":17,"millestones":"0,24.4298025,37.4127907#1,24.4287063,37.4067806#2,24.4233312,37.4015168#3,24.4151744,37.4023708#4,24.4046558,37.4032771#5,24.3990457,37.3985937","x":24.4222474,"y":37.4007914,"coor":[[24.4298025,37.4127907],[24.4297044,37.4127933],[24.4291958,37.4127771],[24.4288488,37.4127468],[24.4289263,37.4124671],[24.4289506,37.4123994],[24.4286608,37.4123441],[24.428671,37.4121638],[24.4286088,37.4121528],[24.4279078,37.4120832],[24.4277947,37.4120656],[24.4277382,37.4120613],[24.4271451,37.4118426],[24.4273158,37.411673],[24.427485,37.4116183],[24.4276614,37.4114689],[24.4280887,37.4110978],[24.428122,37.4111225],[24.4286047,37.4105529],[24.4286931,37.41021],[24.4288386,37.4102208],[24.4288643,37.4101328],[24.429155,37.409841],[24.4293104,37.4093537],[24.4297033,37.4089016],[24.4297474,37.4087122],[24.4295542,37.4085146],[24.4290462,37.4082257],[24.4288859,37.4078477],[24.4288671,37.4075256],[24.4288655,37.4072461],[24.4287046,37.406778],[24.4280907,37.4061222],[24.428191,37.4058785],[24.4281291,37.405908],[24.4280596,37.405746],[24.4273582,37.4054579],[24.4267359,37.4053249],[24.4261596,37.405309],[24.4261494,37.4055073],[24.4260819,37.4055616],[24.4257655,37.4055538],[24.4252219,37.4057044],[24.4246879,37.4051926],[24.4246419,37.4050485],[24.4247311,37.4048229],[24.4246392,37.4045618],[24.4244464,37.4044453],[24.4243663,37.4042653],[24.4240155,37.4041584],[24.424083,37.4041131],[24.4239359,37.4040776],[24.4237201,37.403871],[24.42338,37.4036649],[24.422982,37.4032157],[24.4230586,37.4027827],[24.4233718,37.4022228],[24.4233455,37.4015559],[24.4231755,37.4010945],[24.4222474,37.4007914],[24.4213207,37.4007586],[24.4210149,37.4006245],[24.4206418,37.4005808],[24.4193434,37.4007476],[24.4182464,37.4005532],[24.4173874,37.4005022],[24.4167765,37.4003601],[24.4160317,37.4005159],[24.4158438,37.4007577],[24.4158443,37.4013571],[24.415875,37.4015553],[24.4161947,37.4021491],[24.4161278,37.4023116],[24.4159589,37.4024113],[24.4157217,37.4024302],[24.4145911,37.402308],[24.4132243,37.4023578],[24.412852,37.4024583],[24.4126495,37.4026302],[24.4122884,37.4027126],[24.4119941,37.4028736],[24.4119277,37.4028671],[24.4116296,37.4028501],[24.4112901,37.4027522],[24.410647,37.4029166],[24.4100593,37.4028916],[24.4091544,37.4027055],[24.4084858,37.4023382],[24.4080114,37.4023669],[24.4069959,37.4026228],[24.4064201,37.4026969],[24.4063981,37.4028051],[24.4061267,37.40277],[24.4051687,37.403206],[24.4047958,37.4031982],[24.4044466,37.4033977],[24.4042091,37.4033535],[24.4043231,37.403157],[24.4041078,37.403311],[24.4039836,37.4033204],[24.4024747,37.402965],[24.401299,37.4028428],[24.4010159,37.4027266],[24.4000409,37.402099],[24.3994077,37.402011],[24.3992595,37.4020227],[24.3994123,37.4018149],[24.3995074,37.4016411],[24.3992362,37.4014955],[24.3993032,37.4013511],[24.3995738,37.401242],[24.3996157,37.4010255],[24.3999067,37.4005017],[24.3999266,37.3999879],[24.3996183,37.399376],[24.3990507,37.3988731],[24.3990159,37.398702],[24.3990457,37.3985937]]},{"id":16492,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 7","description_GR":"\u0394\u03c1\u03c5\u03bf\u03c0\u03af\u03b4\u03b1-\u0395\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae","path":"ISLANDS\/Islands_Kythnos_Trail_7","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":3838,"name_EN":"Kythnos Isl: Trail 7","description_EN":"Dryopida-Episkopi","ascent_time":70,"descent_time":75,"marker":"Red_dots","level":12,"ascent":106,"descent":268,"maxelev":211,"minelev":11,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39905 37.38319,24.43106 37.39859)","views":22,"millestones":"0,24.4306326,37.3832182#1,24.4220282,37.3863392#2,24.4151284,37.3917589#3,24.4064000,37.3954645#3.8,24.3990450,37.3985915","x":24.417898,"y":37.3893098,"coor":[[24.4306326,37.3832182],[24.4307666,37.3831929],[24.430927,37.3835821],[24.4310617,37.3835591],[24.4310564,37.383611],[24.4306338,37.383786],[24.4303989,37.3840708],[24.430232,37.3842697],[24.4296738,37.3848036],[24.4286757,37.3850821],[24.4281834,37.3851785],[24.4276675,37.3852074],[24.427122,37.3852455],[24.4264227,37.3854283],[24.4256452,37.3857826],[24.4249492,37.3856792],[24.4247919,37.385824],[24.4245553,37.385933],[24.4245784,37.386023],[24.4243523,37.3859878],[24.4242512,37.3860963],[24.4239916,37.3861243],[24.423135,37.3864789],[24.4227058,37.3864804],[24.4221288,37.3863203],[24.4218354,37.3863754],[24.4217356,37.3867092],[24.4214998,37.3869625],[24.4214116,37.3873504],[24.4206897,37.3875422],[24.4201157,37.3879319],[24.4200716,37.3881123],[24.420257,37.3889589],[24.4201908,37.3892296],[24.4199424,37.3892575],[24.4193203,37.3891155],[24.4190605,37.3891164],[24.4182927,37.3891912],[24.417898,37.3893098],[24.417381,37.3897894],[24.4169309,37.3901064],[24.4165167,37.3907929],[24.4161782,37.3911186],[24.4157838,37.3913003],[24.4152402,37.3917033],[24.4151724,37.3916945],[24.4151727,37.3917486],[24.4150147,37.3917852],[24.4150489,37.3918392],[24.4149588,37.3918846],[24.4144168,37.3919406],[24.4138982,37.3921226],[24.413223,37.3926117],[24.4128524,37.3930096],[24.4126603,37.3930013],[24.4114817,37.3923204],[24.4109847,37.3923491],[24.4105573,37.393074],[24.410152,37.3933278],[24.4096783,37.3934826],[24.4095102,37.3937356],[24.4091617,37.3940433],[24.4087226,37.3943152],[24.4083829,37.3944403],[24.4068848,37.3952567],[24.4061183,37.3955838],[24.4042688,37.3962031],[24.4026199,37.3963169],[24.4021245,37.3966341],[24.4020348,37.3967606],[24.4019476,37.3968172],[24.4019043,37.3971689],[24.4017479,37.3975029],[24.4010737,37.3981993],[24.4002169,37.3985537],[24.399045,37.3985915]]},{"id":16493,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 2","description_GR":"\u0394\u03c1\u03c5\u03c0\u03af\u03b9\u03b4\u03b1-\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039c\u03b1\u03b8\u03b9\u03ac-\u039b\u03b5\u03cd\u03ba\u03b5\u03c2","path":"ISLANDS\/Islands_Kythnos_Trail_2","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":2879,"name_EN":"Kythnos Isl: Trail 2","description_EN":"Dryopida-Panagia Mathia-Lefkes","ascent_time":50,"descent_time":55,"marker":"Red_dots","level":12,"ascent":64,"descent":238,"maxelev":233,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.43063 37.37387,24.45208 37.38322)","views":17,"millestones":"0,24.4306326,37.3832182#1,24.4373986,37.3787216#2,24.4457641,37.3779381#2.9,24.4519480,37.3745440","x":24.4383981,"y":37.380481,"coor":[[24.4306326,37.3832182],[24.4307666,37.3831929],[24.4308077,37.3829606],[24.4308719,37.3828387],[24.4309224,37.3827709],[24.431058,37.3827885],[24.4312042,37.3826708],[24.4314716,37.3827734],[24.4314839,37.3825796],[24.4316997,37.3824121],[24.4319588,37.3822939],[24.4321266,37.3819959],[24.4320561,37.381888],[24.4319195,37.3818299],[24.4319106,37.3817623],[24.431854,37.3817355],[24.4319989,37.3815163],[24.4322316,37.3807403],[24.4322921,37.380828],[24.4324908,37.3808791],[24.4327955,37.3808329],[24.4334369,37.3804069],[24.4338487,37.3793418],[24.4348981,37.3791576],[24.4356064,37.3785872],[24.436164,37.3789344],[24.4366016,37.3789193],[24.4374856,37.3787042],[24.4377577,37.3788834],[24.437984,37.3792026],[24.4378949,37.3794102],[24.437852,37.379807],[24.4381709,37.3802655],[24.4381475,37.3804774],[24.4383981,37.380481],[24.4390069,37.3802895],[24.4400002,37.3801686],[24.4402142,37.3800596],[24.4413648,37.379803],[24.4420068,37.3794941],[24.4423345,37.3795199],[24.4425369,37.3793569],[24.4426948,37.3793203],[24.4430015,37.3790171],[24.4430902,37.3787284],[24.4437107,37.3785999],[24.4439247,37.3784999],[24.4443089,37.3785255],[24.4450873,37.3783693],[24.4455713,37.3780881],[24.4461222,37.3776534],[24.4464025,37.3773008],[24.446468,37.3769219],[24.4467141,37.3765154],[24.4468026,37.3761996],[24.4471395,37.3758738],[24.4470135,37.3755858],[24.447273,37.3755308],[24.4474186,37.3753229],[24.4481857,37.3751668],[24.4493689,37.3747116],[24.4498295,37.3742952],[24.4504971,37.3739186],[24.4506324,37.3738775],[24.4507003,37.3738908],[24.4515405,37.3742797],[24.4520823,37.3743407],[24.451948,37.374544]]},{"id":16494,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 3","description_GR":"\u0394\u03c5\u03bf\u03c0\u03af\u03b4\u03b1-\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039c\u03b1\u03b8\u03b9\u03ac-\u039a\u03b1\u03bb\u03cc \u039b\u03b9\u03b2\u03ac\u03b4\u03b9","path":"ISLANDS\/Islands_Kythnos_Trail_3","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":7202,"name_EN":"Kythnos Isl: Trail 3","description_EN":"Dryopida-Panagia Mathia-Kalo Livadhi","ascent_time":130,"descent_time":135,"marker":"Red_dots","level":12,"ascent":249,"descent":401,"maxelev":233,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.43063 37.34592,24.44438 37.38322)","views":20,"millestones":"0,24.4306326,37.3832182#1,24.4373986,37.3787216#2,24.4421898,37.3726377#3,24.4409543,37.3644609#4,24.4438019,37.3567972#5,24.4353569,37.3548695#6,24.4341712,37.3518439#7.2,24.4351388,37.3475004","x":24.444169,"y":37.3587521,"coor":[[24.4306326,37.3832182],[24.4307666,37.3831929],[24.4308077,37.3829606],[24.4308719,37.3828387],[24.4309224,37.3827709],[24.431058,37.3827885],[24.4312042,37.3826708],[24.4314716,37.3827734],[24.4314839,37.3825796],[24.4316997,37.3824121],[24.4319588,37.3822939],[24.4321266,37.3819959],[24.4320561,37.381888],[24.4319195,37.3818299],[24.4319106,37.3817623],[24.431854,37.3817355],[24.4319989,37.3815163],[24.4322316,37.3807403],[24.4322921,37.380828],[24.4324908,37.3808791],[24.4327955,37.3808329],[24.4334369,37.3804069],[24.4338487,37.3793418],[24.4348981,37.3791576],[24.4356064,37.3785872],[24.436164,37.3789344],[24.4366016,37.3789193],[24.4374856,37.3787042],[24.4377577,37.3788834],[24.437984,37.3792026],[24.4395703,37.3778672],[24.4396517,37.3776731],[24.4393106,37.3772777],[24.43949,37.3770607],[24.4395448,37.3767721],[24.439668,37.3765914],[24.4395068,37.3760692],[24.439506,37.375934],[24.4396631,37.3757531],[24.4395722,37.3756633],[24.4396838,37.3753114],[24.4398748,37.3751304],[24.4402351,37.3749397],[24.4406298,37.3748301],[24.4414296,37.3744846],[24.4416213,37.3741864],[24.4415741,37.3738351],[24.4416178,37.3735915],[24.4420213,37.3730582],[24.4424667,37.3719749],[24.4430049,37.3713149],[24.4430168,37.3710534],[24.4425704,37.3703971],[24.4426357,37.3699822],[24.4425442,37.3697933],[24.4428005,37.3694408],[24.4427767,37.3692336],[24.4424372,37.3691086],[24.4421986,37.3688662],[24.4419591,37.3684705],[24.4417629,37.3677501],[24.4415924,37.3675704],[24.4418245,37.367191],[24.4416431,37.3669483],[24.4415728,37.3665159],[24.4414703,37.3663631],[24.4414449,37.3658764],[24.4411244,37.3651475],[24.4409859,37.3646342],[24.440937,37.3643595],[24.4407662,37.3641258],[24.4405508,37.3639823],[24.4405162,37.3638653],[24.4409163,37.362523],[24.4411525,37.3623599],[24.4414798,37.3623316],[24.4416148,37.362241],[24.4419399,37.3618341],[24.4420837,37.3613198],[24.4435089,37.3598002],[24.444169,37.3587521],[24.4442777,37.358639],[24.4442303,37.3585017],[24.4442957,37.3580959],[24.4444514,37.3576897],[24.4444167,37.3575546],[24.444326,37.3574918],[24.4441964,37.3571678],[24.4439497,37.356984],[24.4437676,37.3567503],[24.4434391,37.3565713],[24.4432021,37.3565992],[24.4429643,37.3564739],[24.4422724,37.356197],[24.441781,37.3559104],[24.4415681,37.3557084],[24.4413873,37.3556821],[24.4410718,37.3558094],[24.4407279,37.3558783],[24.4403661,37.3558075],[24.4401391,37.3556101],[24.4400478,37.3554482],[24.4395826,37.3550533],[24.4390164,37.354776],[24.4382116,37.3542381],[24.438187,37.3539047],[24.4378789,37.353347],[24.4368546,37.3540088],[24.4364942,37.3541724],[24.4354376,37.3548771],[24.4349631,37.3548338],[24.4340962,37.3552786],[24.433287,37.3559486],[24.4325107,37.3564292],[24.4322738,37.3564751],[24.4320954,37.3563834],[24.4320355,37.3562687],[24.4318545,37.3562153],[24.4316502,37.3560357],[24.4311838,37.3554245],[24.4311592,37.3550821],[24.4313721,37.3547928],[24.4314834,37.354513],[24.4314807,37.3540263],[24.4319654,37.3536347],[24.4321221,37.3534087],[24.4328078,37.3528744],[24.4332568,37.3524041],[24.4337921,37.3519852],[24.4340289,37.3519212],[24.4344003,37.3517216],[24.4345793,37.3514325],[24.4351187,37.3509798],[24.4356223,37.3502028],[24.4356196,37.3497431],[24.4355281,37.3495451],[24.4356616,37.3492021],[24.4357963,37.3490574],[24.4359545,37.3490748],[24.4361,37.348867],[24.4362133,37.3489206],[24.4363709,37.3488389],[24.4365049,37.3485951],[24.4365543,37.3482298],[24.4366549,37.3480402],[24.4373069,37.347551],[24.4378813,37.3473055],[24.4379674,37.3471858],[24.4381133,37.347041],[24.4377605,37.3465556],[24.4379373,37.346271],[24.4377909,37.3463256],[24.4375532,37.3462183],[24.4372319,37.3460595],[24.4369885,37.3459432],[24.4368748,37.3461757],[24.4363834,37.3467297],[24.4361024,37.346947],[24.4356519,37.347156],[24.4353826,37.3474364],[24.4351388,37.3475004]]},{"id":16495,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 8","description_GR":"\u0386\u03b3\u03b9\u03bf\u03c2 \u039a\u03c9\u03bd\u03c3\u03c4\u03b1\u03bd\u03c4\u03af\u03bd\u03bf\u03c2-\u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9\u03b1-\u039c\u03ad\u03c1\u03b9\u03c7\u03b1\u03c2","path":"ISLANDS\/Islands_Kythnos_Trail_8","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6100,"name_EN":"Kythnos Isl: Trail 8","description_EN":"Aghios Konstandinos-Flabouria-Merichas","ascent_time":140,"descent_time":145,"marker":"Red_dots","level":12,"ascent":154,"descent":412,"maxelev":268,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.39675 37.35955,24.41665 37.38829)","views":24,"millestones":"0,24.4166517,37.3599339#1,24.4065014,37.3608994#2,24.4010480,37.3601181#3,24.3998300,37.3675759#4,24.4037618,37.3729567#5,24.4008207,37.3802631#6.1,24.3967459,37.3882875","x":24.4002142,"y":37.3646868,"coor":[[24.4166517,37.3599339],[24.4158403,37.3598488],[24.4148812,37.3599874],[24.4143386,37.3598812],[24.4140352,37.3601526],[24.4137648,37.3602617],[24.4136519,37.3602621],[24.4134025,37.3600917],[24.4127929,37.3601209],[24.412027,37.3604841],[24.4114622,37.3604501],[24.411135,37.3605053],[24.4109428,37.3604699],[24.4103109,37.3605532],[24.4098824,37.3606719],[24.4093872,37.360962],[24.4092401,37.3609084],[24.4088335,37.3609008],[24.4080532,37.3606872],[24.4069822,37.3610334],[24.4068237,37.3609438],[24.4067112,37.3610343],[24.4067213,37.360809],[24.4064283,37.3609272],[24.4063152,37.3608915],[24.4062372,37.361081],[24.4061464,37.3610002],[24.4061243,37.3610814],[24.4060329,37.3608925],[24.4058754,37.3610012],[24.4058746,37.3608569],[24.4057284,37.3609656],[24.4057391,37.3608574],[24.405694,37.3608576],[24.4054127,37.3610568],[24.4053777,37.3608406],[24.4052885,37.3610573],[24.4052093,37.3610215],[24.4051418,37.3610758],[24.4050621,37.3609589],[24.4049272,37.3610765],[24.4049149,37.3608873],[24.4048356,37.3608245],[24.4046213,37.3608793],[24.4043853,37.3610964],[24.4044856,37.3608437],[24.4050138,37.3603641],[24.4055184,37.3597044],[24.4055291,37.3595962],[24.4054726,37.3595874],[24.4054054,37.3596958],[24.4049775,37.3599226],[24.4049771,37.3598415],[24.404925,37.359747],[24.4046657,37.359811],[24.4035589,37.3597967],[24.4026109,37.3598991],[24.4019334,37.3599014],[24.401494,37.3600922],[24.4010537,37.3601117],[24.4005598,37.3606542],[24.4004034,37.3609883],[24.4006512,37.3611226],[24.400166,37.3618657],[24.3992903,37.3628331],[24.398885,37.3630688],[24.3993343,37.3634008],[24.3993683,37.3634277],[24.3996102,37.3636613],[24.4002142,37.3646868],[24.4003074,37.3655],[24.4003434,37.3658965],[24.4001937,37.3668096],[24.4001487,37.3668548],[24.4002166,37.3668817],[24.4001153,37.3669361],[24.400172,37.366981],[24.3996431,37.3673433],[24.3998578,37.3673606],[24.399825,37.367559],[24.3999284,37.3679012],[24.4000643,37.3679728],[24.3999403,37.3680183],[24.4006295,37.3680611],[24.4013769,37.3684371],[24.4016142,37.3684633],[24.4016936,37.3685442],[24.4019985,37.3685341],[24.4019653,37.3686605],[24.4021008,37.368651],[24.4020787,37.3687412],[24.4023157,37.3687224],[24.4023275,37.3688125],[24.4026105,37.3689377],[24.4040339,37.369014],[24.4043392,37.369076],[24.404351,37.3691661],[24.4042273,37.3692657],[24.4040378,37.369726],[24.4042093,37.3701311],[24.4045733,37.3706075],[24.4045782,37.3715269],[24.404761,37.3719049],[24.4047153,37.3720741],[24.4043229,37.3726162],[24.4030507,37.3733777],[24.4027247,37.3736583],[24.4023441,37.3742905],[24.4015239,37.3752397],[24.4011579,37.3756939],[24.4011603,37.3761536],[24.4009814,37.3764877],[24.4011306,37.3769379],[24.4010472,37.3782362],[24.4010952,37.3783757],[24.4013214,37.378429],[24.4021484,37.3788859],[24.4021939,37.3789579],[24.4013858,37.3795195],[24.400825,37.3802605],[24.3994739,37.3810944],[24.3992496,37.3813836],[24.3992151,37.3816811],[24.3992249,37.3821859],[24.3991274,37.3823034],[24.3989038,37.3827368],[24.3984313,37.383117],[24.3983195,37.3833337],[24.3983574,37.3840817],[24.3979571,37.3852909],[24.3980151,37.3855791],[24.3983105,37.3859026],[24.3978828,37.3867333],[24.3972257,37.3874386],[24.3971135,37.3875742],[24.3969862,37.387809],[24.3968576,37.3880618],[24.3967459,37.3882875]]},{"id":16496,"author":"AnaDigit","name_GR":"\u039a\u03cd\u03b8\u03bd\u03bf\u03c2: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 1a","description_GR":"\u03a7\u03ce\u03c1\u03b1-\u039b\u03bf\u03c5\u03c4\u03c1\u03ac","path":"ISLANDS\/Islands_Kythnos_Trail_1a","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":3747,"name_EN":"Kythnos Isl: Trail 1a","description_EN":"Chora-Loutra","ascent_time":65,"descent_time":70,"marker":"Red_dots","level":12,"ascent":22,"descent":152,"maxelev":144,"minelev":12,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(24.42123 37.41274,24.4298 37.44106)","views":28,"millestones":"0,24.4298025,37.4127907#1,24.4250842,37.4188168#2,24.4212840,37.4264302#3,24.4232639,37.4351701#3.7,24.4246079,37.4410493","x":24.4224105,"y":37.422302,"coor":[[24.4298025,37.4127907],[24.4297044,37.4127933],[24.4291958,37.4127771],[24.4288488,37.4127468],[24.4284522,37.4128001],[24.4282679,37.4129269],[24.4276275,37.4135782],[24.4273045,37.4136696],[24.4267849,37.4137052],[24.4266609,37.4137598],[24.4261357,37.4138045],[24.4258668,37.4142201],[24.4250213,37.414818],[24.4246944,37.4151009],[24.4246635,37.4156328],[24.4244975,37.4162463],[24.4245326,37.4164535],[24.4246618,37.416568],[24.4248564,37.4167701],[24.4250429,37.417148],[24.4251445,37.4180107],[24.4249491,37.4181646],[24.4250139,37.4185069],[24.4251254,37.4189932],[24.4253092,37.4195334],[24.4254076,37.4201955],[24.4253183,37.4203761],[24.4250477,37.4205033],[24.424754,37.4205224],[24.4244721,37.4206316],[24.4236607,37.4210401],[24.4234328,37.4212167],[24.4231189,37.4216685],[24.4224105,37.422302],[24.4222895,37.4228883],[24.4220042,37.4236645],[24.4217678,37.4242062],[24.4215647,37.4245156],[24.4211424,37.4258061],[24.4213182,37.4265491],[24.421525,37.4271342],[24.4217953,37.428981],[24.4220164,37.4298636],[24.4221886,37.4303317],[24.4221935,37.431206],[24.4221826,37.4312782],[24.4226443,37.4322229],[24.4230893,37.4334765],[24.4233982,37.4341424],[24.4234677,37.4344396],[24.4232446,37.4349632],[24.4232931,37.4355489],[24.423578,37.4359445],[24.4240141,37.4371237],[24.4241266,37.4375244],[24.4241731,37.4377406],[24.4244812,37.4377575],[24.4244871,37.4378093],[24.4246146,37.4396071],[24.4246328,37.4398278],[24.4246573,37.4399179],[24.4247505,37.4400347],[24.4251344,37.440324],[24.4252483,37.4404769],[24.4250465,37.4407841],[24.4246079,37.4410493]]}],{"extent":[24.37242,37.34473,24.47077,37.4633],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":5,"action":{"type":"redirect"},"sort":{"type":"byname"}},"PELOPONNESE\/Pelop_Abeliona_Trail_1":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_2":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1c":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1a":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"PELOPONNESE\/Pelop_Abeliona_Trail_1b":{"url":null,"color":"#ff612f","width":3,"exclude":false,"useStyle":false},"Car_touring\/CAR_Rodos_Attavyros_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Attavyros_summit":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_36km_Lindos_Loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MTB_ROADBIKE\/MTB_Rodos_Kattavia_Skiadeni_loop":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"Car_touring\/CAR_Rodos_Lindos_Sport":{"url":null,"color":"#ff612f","width":3,"exclude":true,"useStyle":false},"MACEDONIA\/Makedonia_Falakro_refuge_Chionotripa":{"url":null,"color":"#bb0707","width":6,"exclude":false,"useStyle":true},"MACEDONIA\/Makedonia_Falakro_refuge_ProfitisIlias":{"url":null,"color":"#b11f0b","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":"Menalon_Trail_Lousios.php","color":"#ffee2f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#248036","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#108b1a","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#fbfb00","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#e70404","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"ISLANDS\/Islands_Santorini_Path_1":{"url":null,"color":"#ec0a0a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_9":{"url":null,"color":"#f60606","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_10":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_11":{"url":null,"color":"#2fb4ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_12":{"url":null,"color":"#069f24","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_13":{"url":null,"color":"#f60404","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Merovigli_Skaros":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Oia_Amoudi":{"url":null,"color":"#2fffff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_2":{"url":null,"color":"#06b12f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_3":{"url":null,"color":"#2fd5ff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_4":{"url":null,"color":"#f4ff00","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_5":{"url":null,"color":"#04b427","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_6":{"url":null,"color":"#ff2fd5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_7":{"url":null,"color":"#2abc0e","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Santorini_Path_8":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Koukouli_Dilofo":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Vikos_Elafotopos":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_AnoPedina_Monodendri":{"url":null,"color":"#0dcb15","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_AKlidonia_Papigo":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_AstrakaRef_Gamila":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Astraka_Drakolimni":{"url":null,"color":"#2facff","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Konitsa_Astraka":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Konitsa_Stomio_Ast":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_O31_Astraka_Vrisoc":{"url":null,"color":"#ff0909","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_O31_Papigo_Astraka":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Voidomatis_bridges":{"url":null,"color":"#0ba611","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Stouros":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Vradeto_Beloi":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Kapesovo_Kipi":{"url":null,"color":"#2ffff7","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_KKlidonia_AKlidonia":{"url":null,"color":"#f3e907","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Monodentri_Vitsa":{"url":null,"color":"#2fffee","width":6,"exclude":false,"useStyle":true},"IPIROS\/Ipiros_Zagori_Elafotopos_AnoPedina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"IPIROS\/Ipiros_Zagori_Skala_Vradetou":{"url":null,"color":"#e91c13","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Vradeto_Astraka":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Vitsa_Koukouli":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Ipiros\/Ipiros_Zagori_Tsepelovo_Astraka":{"url":null,"color":"#fbf100","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Papigo_Vikos":{"url":null,"color":"#2fffb4","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Papigo_Loop":{"url":null,"color":"#f50000","width":6,"exclude":false,"useStyle":true},"Ipiros\/Ipiros_Zagori_Monodendri_Vikos":{"url":null,"color":"#2f37ff","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Pelop_Lagadia_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4X4\/SUV_Pelop_Lagadia_Arvitsa":{"url":null,"color":"#0bbd13","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_2":{"url":null,"color":"#ffee2f","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_1":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Servou_loop_3":{"url":null,"color":"#2fff8b","width":6,"exclude":false,"useStyle":true},"SUV_4X4\/SUV_Pelop_Lagadia_Keresova":{"url":null,"color":"#f40404","width":6,"exclude":false,"useStyle":true},"ATTIKI\/Attiki_Imittos_Sfittia_Odos":{"url":null,"color":"#34bb0a","width":3,"exclude":false,"useStyle":true},"ATTIKI\/Attiki_Imittos_Papagou_Trail_2":{"url":null,"color":"#0a820a","width":6,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Trail10":{"url":null,"color":"#2f40ff","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Katechaki_GlykaNera":{"url":null,"color":"#ffd82f","width":3,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Ilioupoli_Sfittos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Attiki\/Attiki_Imittos_Kareas_Michailidis":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Katechaki_Summit":{"url":null,"color":"#ffd82f","width":4,"exclude":false,"useStyle":true},"Attiki\/Attiki_Imittos_Taxiarches_sum_road":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Anthousa_tower":{"url":null,"color":"#2f3dff","width":6,"exclude":false,"useStyle":true},"MTB_Roadbike\/MTB_Imittos_Liondari_cave":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_Roadbike\/MTB_Imittos_Megalos_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Quarries":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Korakovouni_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Papagou_Asteriou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop1":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop2":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop3":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_OmvriosZefs":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kesariani_Kalopoula":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Sfittos_roman_quarry":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_PrfIlias_Terpsithea":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_Kareas":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kareas_loop4":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_PrfIlias":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Ilioupoli_Mnimeio_Michailidi":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Gyros_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Mikros_Kiklos":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Kalopoula_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MTB_ROADBIKE\/MTB_Imittos_Kesariani_Hard_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Anthousa_training":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"MOUNTAIN_RUNNING\/MountRun_Imittos_Oreinos_Agonas_Imittou":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Trail10_short_version":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ATTIKI\/Attiki_Imittos_Koutalas_loop":{"url":null,"color":"#ff612f","width":4,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kythnos_Trail_1":{"url":null,"color":"#1d7a10","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_2":{"url":null,"color":"#2f50ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_3":{"url":null,"color":"#eb0707","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_4":{"url":null,"color":"#f72fff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_5":{"url":null,"color":"#13930e","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6a":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6b":{"url":null,"color":"#2ff7ff","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_7":{"url":null,"color":"#ffff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_8":{"url":null,"color":"#e110d0","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_9":{"url":null,"color":"#51be14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Chora_loop1":{"url":null,"color":"#2fcdff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Chora_loop2":{"url":null,"color":"#ffc52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Zogaki":{"url":null,"color":"#11a2b6","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala":{"url":null,"color":"#ffad00","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Dryopis_Kanala2":{"url":null,"color":"#22d112","width":5,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kythnos_Trail_6c":{"url":null,"color":"#3d2fff","width":6,"exclude":false,"useStyle":true}}}); function getPoiCollection(key,data,meta){ this.key = key; this.data = data; this.item = []; //this.meta = meta; this.gsMap = null; this.features = [] ; //this.lineFeatures = [] ; var self = this; //console.log(data); this.source = new ol.source.Vector({wrapX: false, noWrap: true}); this.layer = new ol.layer.Vector({ source: this.source, //clusterSource visible:true }); this.registerMap = function(gsMap){ this.gsMap = gsMap; this.gsMap.map.addLayer(this.layer); this.createFeatures(); } this.createFeatures = function(){ this.features=[]; for(var i in this.data){ //console.log(this.data[i]); var newItem = this.getItem(this.data[i]); newItem.style = this.getIconStyle(newItem); var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem)); //var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, ""); f.setStyle(newItem.style); f.show = function () { var div = document.getElementById("myModal"); div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); } newItem.feature = f; this.item.push(newItem); this.features.push(f); } this.source.addFeatures(this.features); this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();}); this.refresh(); } this.zoomTo = function(){ this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize()); } this.pointMsp = function(item){ return { width:item.width, height:item.height, photoPath:item.photoPath, name:item.name, description:item.description, parent:this, click:[function(s,f,l){ var div = document.getElementById("myModal"); var self = f.get('msp'); //#34b0ff div.innerHTML = ''; setTimeout(function () { $('#myModal').modal('show'); }, 200); }]}; } this.poiIconPointStyle = function(activity_type,difficulty){ var iconpath = 'https://anadigit.fr/TopoMedia/Icons/activity_adv_loc/activity_' + activity_type + '_' + difficulty + '_adv_loc.png'; return new ol.style.Style({ image: new ol.style.Icon({ src: iconpath, //size: [liconsize, liconsize] scale:0.5 })/*, stroke: new ol.style.Stroke({ color: (s_color ) ,width: 1+is301 + (map3.getZoom()-8) }) */}) } this.getIconStyle = function(myItem) { var icon_size = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) var icon_size_set = this.pop_info_adjust_size(myItem.type, this.gsMap.getZoom() - myItem.zoom_level) * icon_size / 100; var is = (icon_size > 0) ? icon_size : 9; var icon_index = myItem.icon_index; if (wpt_icon.anch_fraction_x[icon_index] >= 0) { var anch_x = wpt_icon.anch_fraction_x[icon_index]; var anch_y = wpt_icon.anch_fraction_y[icon_index]; } else { var anch_x = 0.5; var anch_y = 0.5; } if (wpt_icon.scale[icon_index] >= 0) { var scale = wpt_icon.scale[icon_index]; } else { if (icon_size_set > 0) { var scale = icon_size_set; } else { var scale = 0.3; } } scale = 0.2; var MarkerIcon = wpt_icon.url_s[icon_index]; var iconStyle = new ol.style.Style({ image: new ol.style.Icon(({ anchor: [anch_x, anch_y], anchorXUnits: 'fraction', anchorYUnits: 'fraction', //anchorYUnits: 'pixels', opacity: 0.95, src: MarkerIcon, scale: scale })) }); return iconStyle; } this.getItem = function (dat){ var type = dat.type * 1;//[3]*1; var icon = map_point_collection.get(type); var icon_index = icon.iconindex; var img_path = icon.path; return { image: dat.photo, name: dat.name, description: dat.description, link_en: dat.hlink_EN, type: dat.type * 1, dbid: dat.id, hlink: dat.hlink_GR, zoom_level: dat.zoom_level, width: dat.width * 1, height: dat.height * 1, owner: dat.owner, icon_index: icon_index, photoPath: img_path + dat.photo + '.jpg', thumb_path: img_path + 'thumbs/' + dat.photo + '.jpg', //tmpim:add_image(pop_info_tmp, fp.attributes.thumb_path,-230,3,-1,-1,null), path: (dat.type * 1 == 1) ? img_path + dat.photo + '.jpg' : "" } } this.pop_info_adjust_size = function(type, dl) { if (dl < 0) dl = 0; var new_size = 9 + (1.5 * dl); return new_size * 0.2; } this.refresh = function () { try { this.source.clear(); } catch (err) { } var zoom = this.gsMap.getZoom(); for (var i = 0; i < this.item.length; i++) { if (zoom >= this.item[i].zoom_level) this.source.addFeatures([this.item[i].feature]); } } this.getImagetItem = function(path,width,height){ /* PARADOXES - OLES OI EIKONES PIANOYN TO MEGISTO PLATOS - AN TO YPSOS EINEI MEGALYTERO TOY DIAUESIMOY H EIKONA KOVETAI KATV */ var minAvailableWidth =568; //APO BOOTSTRAP, http://www.topoguide.gr/css/bootstrap.css, 5489, var maxAvailableHeight = browser.size()[1]-250; var style = "",divStyle = ""; if(height>maxAvailableHeight){ var ratio = width/height; var renderWidth = maxAvailableHeight*ratio; var renderHeight = maxAvailableHeight; if(minAvailableWidth/ratio>maxAvailableHeight) divStyle += "height:" + renderHeight + "px;"; divStyle += "width:100%;"; style += "width:100%;"; } else{ if(width'; } } var img_path = 'https://anadigit.fr/TopoMedia/map_points/img'; var map_point_collection = { 0 :{iconindex:14,path:img_path + "/Landscape/"}, 1 :{iconindex:17,path:img_path + "/Flora/"}, 2 :{iconindex:18,path:img_path + "/Animals/"}, 3 :{iconindex:19,path:img_path + "/Books/"}, 4 :{iconindex:20,path:img_path + "/Maps/"}, 5 :{iconindex:21,path:img_path + "/Apps/"}, 6 :{iconindex:22,path:img_path + "/Mushrooms/"}, 7 :{iconindex:23,path:img_path + "/Animals/"}, 8 :{iconindex:24,path:img_path + "/Animals/"}, 9 :{iconindex:25,path:img_path + "/Architecture/"}, 10:{iconindex:26,path:img_path + "/Monuments/"}, 447:{iconindex:38,path:img_path + "/Refuges/"}, 450:{iconindex:41,path:img_path + "/Signposts/"}, 71:{iconindex:36,path:img_path + "/Geology/"}, 72:{iconindex:34,path:img_path + "/Geology/"}, 73:{iconindex:35,path:img_path + "/Geology/"}, 204:{iconindex:27,path:img_path + "/logos/"}, 206:{iconindex:28,path:img_path + "/logos/"}, 200:{iconindex:29,path:img_path + "/logos/"}, 201:{iconindex:30,path:img_path + "/logos/"}, 205:{iconindex:31,path:img_path + "/logos/"}, 202:{iconindex:32,path:img_path + "/logos/"}, 203:{iconindex:33,path:img_path + "/logos/"}, 301:{iconindex:42,path:img_path + "/Beach/"}, 1001:{iconindex:42,path:img_path + "/Water/"}, default: {iconindex:28,path:""} } map_point_collection.get = function(key){ return this[key] || this.default; } function wpt_icon_class(){ this.count=0; this.url = new Array(); this.url_s = new Array(); this.cx = new Array(); this.cy = new Array(); this.scx = new Array(); this.scy = new Array(); this.ix = new Array(); this.iy = new Array(); this.anch_fraction_x = new Array(); this.anch_fraction_y = new Array(); this.scale = new Array(); this.inwptwindow = new Array(); this.add = function(url,url_s,cx,cy,ix,iy,scx,scy,anch_fraction_x, anch_fraction_y,scale,inwptwindow){ this.count+=1; this.url[this.count]="https://anadigit.fr/TopoMedia/" + url; this.url_s[this.count]="https://anadigit.fr/TopoMedia/" + url_s; this.cx[this.count]=cx; this.cy[this.count]=cy; this.scx[this.count]=scx; //kentro simeiou gia xarti this.scy[this.count]=scy; this.ix[this.count]=ix; //offset sto icon list this.iy[this.count]=iy; this.anch_fraction_x[this.count]=anch_fraction_x; //offset sto icon list this.anch_fraction_y[this.count]=anch_fraction_y; this.scale[this.count]=scale; this.inwptwindow[this.count]=inwptwindow; } } var wpt_icon = new wpt_icon_class(); wpt_icon.add("Icons/WPT/pin_blue.png","Icons/WPT/pin_blue_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_green.png","Icons/WPT/pin_green_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/pin_red.png","Icons/WPT/pin_red_s.png",28,35,-15,10,1,18,0.0,1.0,1.0,true); wpt_icon.add("Icons/WPT/star_blue.png","Icons/WPT/star_blue_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_green.png","Icons/WPT/star_green_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/star_red.png","Icons/WPT/star_red_s.png",24,24,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/lmk_red.png","Icons/WPT/lmk_red_s.png",32,32,-3,0,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/house_blue.png","Icons/WPT/house_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true);; wpt_icon.add("Icons/WPT/house_red.png","Icons/WPT/house_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/monastery_red.png","Icons/WPT/monastery_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/church_red.png","Icons/WPT/church_red_s.png",32,32,5,8,11,16,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_blue.png","Icons/WPT/anchor_blue_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); wpt_icon.add("Icons/WPT/anchor_red.png","Icons/WPT/anchor_red_s.png",32,32,5,8,11,11,0.5,0.5,1.0,true); //photo_points wpt_icon.add("Icons/WPT/landscape.png","Icons/WPT/landscape.png",28,28,5,8,16,16); wpt_icon.add("img/NAV_START.png","img/NAV_START.png",32*1.5,42,-5,-48,11,11,0.5,1.0,0.6,true); wpt_icon.add("img/NAV_END.png","img/NAV_END.png",32*1.5,162,-5,-28,11,11,0.5,1.0,0.6,true); wpt_icon.add("Icons/WPT/flora.png","Icons/WPT/flora.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/bird.png","Icons/WPT/bird.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/book.png","Icons/WPT/book.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/map.png","Icons/WPT/map.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/iphone.png","Icons/WPT/iphone.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mushroom.png","Icons/WPT/mushroom.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/mammal.png","Icons/WPT/mammal.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/turtle.png","Icons/WPT/turtle.png",30,30,5,8,16,16); wpt_icon.add("Icons/WPT/architecture.png","Icons/WPT/architecture.png",28,28,5,8,16,16); wpt_icon.add("Icons/WPT/monument.png","Icons/WPT/monument.png",28,28,5,8,16,16); // pop_info wpt_icon.add("pop_info/Icons/pop_info_1.png","pop_info/Icons/pop_info_1.png",32,32,5,8,32,32,0.5,1); // iconindex= 27 wpt_icon.add("pop_info/Icons/pop_info_2.png","pop_info/Icons/pop_info_2.png",32,32,5,8,32,32,0.5,1); // iconindex= 28 wpt_icon.add("pop_info/Icons/pop_info_3.png","pop_info/Icons/pop_info_3.png",32,32,5,8,32,32); // iconindex= 29 wpt_icon.add("pop_info/Icons/pop_info_4.png","pop_info/Icons/pop_info_4.png",32,32,5,8,32,32,0.5,1); // iconindex= 30 wpt_icon.add("pop_info/Icons/pop_info_5.png","pop_info/Icons/pop_info_5.png",32,32,5,8,32,32); // iconindex= 31 wpt_icon.add("pop_info/Icons/pop_info_6.png","pop_info/Icons/pop_info_6.png",32,32,5,8,32,32); // iconindex= 32 wpt_icon.add("pop_info/Icons/pop_info_7.png","pop_info/Icons/pop_info_7.png",32,32,5,8,32,32); // iconindex= 33 wpt_icon.add("pop_info/Icons/pop_info_101.png","pop_info/Icons/pop_info_101.png",32,32,5,8,32,32,0.5,0.5); // iconindex= 34 wpt_icon.add("pop_info/Icons/pop_info_102.png","pop_info/Icons/pop_info_102.png",32,32,5,8,32,32); // iconindex= 35 wpt_icon.add("pop_info/Icons/pop_info_103.png","pop_info/Icons/pop_info_103.png",32,32,5,8,32,32); // iconindex= 36 wpt_icon.add("Icons/WPT/POI_446_icon.png","Icons/WPT/POI_446_icon.png",32,32,5,8,32,32); // iconindex= 37 wpt_icon.add("Icons/WPT/POI_447_icon.png","Icons/WPT/POI_447_icon.png",32,32,5,8,32,32); // iconindex= 38 wpt_icon.add("Icons/WPT/POI_448_icon.png","Icons/WPT/POI_448_icon.png",32,32,5,8,32,32); // iconindex= 39 wpt_icon.add("Icons/WPT/POI_449_icon.png","Icons/WPT/POI_449_icon.png",32,32,5,8,32,32); // iconindex= 40 wpt_icon.add("Icons/WPT/POI_450_icon.png","Icons/WPT/POI_450_icon.png",32,32,5,8,32,32); // iconindex= 41 wpt_icon.add("Icons/WPT/Fountain_blue.png","Icons/WPT/Fountain_blue.png",32,32,5,8,32,32); // iconindex= 42 console.log('poi signature up to date');var poiCollection_kythnos = new getPoiCollection("kythnos",[{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b1 \u03c3\u03c4\u03bf \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf","owner":"AnaDigit","x":24.411413192749,"y":37.462931509502,"photo":"Kythnos_Kastro_detail","type":10,"zoom_level":16,"id":344,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":328},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b1 \u03c3\u03b5 \u03c0\u03ad\u03c4\u03c1\u03b9\u03bd\u03b7 \u03ba\u03b1\u03bb\u03cd\u03b2\u03b1","owner":"AnaDigit","x":24.374033927917,"y":37.423509160278,"photo":"Kythnos_Stani_pano_apo_Kolona","type":9,"zoom_level":14,"id":345,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":343},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03bf \u03b4\u03c1\u03cc\u03bc\u03bf \u03c0\u03c1\u03bf\u03c2
\u03c4\u03bf\u03bd \u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7 \u0397\u03bb\u03af\u03b1","owner":"AnaDigit","x":24.452697753907,"y":37.416862898944,"photo":"Kythnos_Sto_dromo_pros_Prf_Ilia","type":0,"zoom_level":13,"id":346,"hlink_GR":"","hlink_EN":"","description":"","height":512,"width":403},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.421778,"y":37.443928,"photo":"20170609_0706431","type":450,"zoom_level":15,"id":4280,"hlink_GR":"","hlink_EN":"","description":"","height":511,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.421061,"y":37.445347,"photo":"20170609_0714391","type":450,"zoom_level":17,"id":4281,"hlink_GR":"","hlink_EN":"","description":"","height":837,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.415878,"y":37.45998,"photo":"20170609_0756011","type":450,"zoom_level":15,"id":4282,"hlink_GR":"","hlink_EN":"","description":"","height":695,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.429827,"y":37.412785,"photo":"20170610_0707441","type":450,"zoom_level":16,"id":4283,"hlink_GR":"","hlink_EN":"","description":"","height":962,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.43261,"y":37.412491,"photo":"20170610_0748501","type":450,"zoom_level":17,"id":4284,"hlink_GR":"","hlink_EN":"","description":"","height":574,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.436455,"y":37.410778,"photo":"20170610_0921521","type":450,"zoom_level":16,"id":4285,"hlink_GR":"","hlink_EN":"","description":"","height":618,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.43734,"y":37.406651,"photo":"20170610_0937031","type":450,"zoom_level":16,"id":4286,"hlink_GR":"","hlink_EN":"","description":"","height":590,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.438446,"y":37.406448,"photo":"20170610_0940061","type":450,"zoom_level":17,"id":4287,"hlink_GR":"","hlink_EN":"","description":"","height":629,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.454117,"y":37.399525,"photo":"20170610_1037181","type":450,"zoom_level":16,"id":4288,"hlink_GR":"","hlink_EN":"","description":"","height":867,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.437985,"y":37.402158,"photo":"DSC005491","type":450,"zoom_level":15,"id":4289,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.440068,"y":37.370638,"photo":"DSC005251","type":0,"zoom_level":15,"id":4290,"hlink_GR":"","hlink_EN":"","description":"","height":641,"width":1400},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.447176,"y":37.401424,"photo":"20170610_1018071","type":0,"zoom_level":16,"id":4291,"hlink_GR":"","hlink_EN":"","description":"","height":648,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.46101,"y":37.39613,"photo":"20170610_1119381","type":0,"zoom_level":15,"id":4292,"hlink_GR":"","hlink_EN":"","description":"","height":548,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03b8\u03bd\u03bf\u03c5","owner":"AnaDigit","x":24.4671,"y":37.402122,"photo":"20170610_1302461","type":0,"zoom_level":14,"id":4293,"hlink_GR":"","hlink_EN":"","description":"","height":609,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u0391\u03bb\u03ce\u03bd\u03b9 \u03c3\u03c4\u03bf\u03bd \u039a\u03b1\u03c4\u03b1\u03ba\u03ad\u03c6\u03b1\u03bb\u03bf","owner":"AnaDigit","x":24.417315,"y":37.457676,"photo":"20170609_0908241","type":9,"zoom_level":16,"id":4294,"hlink_GR":"","hlink_EN":"","description":"","height":563,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a0\u03b5\u03c1\u03b9\u03c3\u03c4\u03b5\u03b5\u03c1\u03b9\u03ce\u03bd\u03b1\u03c2 \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7 \u03a7\u03ce\u03c1\u03b1","owner":"AnaDigit","x":24.438220966933,"y":37.40739644486,"photo":"20170610_0939221","type":9,"zoom_level":15,"id":4295,"hlink_GR":"","hlink_EN":"","description":"","height":539,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03ac \u03b1\u03b3\u03c1\u03bf\u03b9\u03ba\u03af\u03b1 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u03a3\u03c4\u03ad\u03c6\u03b1\u03bd\u03bf","owner":"AnaDigit","x":24.460835,"y":37.397991,"photo":"20170610_1124151","type":9,"zoom_level":16,"id":4296,"hlink_GR":"","hlink_EN":"","description":"","height":435,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u0391\u03bb\u03ce\u03bd\u03b9 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0398\u03b5\u03cc\u03b4\u03c9\u03c1\u03bf","owner":"AnaDigit","x":24.398501,"y":37.440298,"photo":"DSC004651","type":9,"zoom_level":16,"id":4297,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 \u039a\u03b1\u03ba\u03bf\u03b2\u03bf\u03bb\u03bf\u03c5","owner":"AnaDigit","x":24.396936,"y":37.445421,"photo":"DSC004701","type":9,"zoom_level":16,"id":4298,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 \u039a\u03b1\u03ba\u03bf\u03b2\u03bf\u03bb\u03bf\u03c5","owner":"AnaDigit","x":24.398658,"y":37.448606,"photo":"DSC004711","type":0,"zoom_level":17,"id":4299,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 \u039a\u03b1\u03ba\u03bf\u03b2\u03bf\u03bb\u03bf\u03c5","owner":"AnaDigit","x":24.399986,"y":37.449511,"photo":"DSC004761","type":9,"zoom_level":14,"id":4300,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 \u039a\u03b1\u03ba\u03bf\u03b2\u03bf\u03bb\u03bf\u03c5","owner":"AnaDigit","x":24.405435,"y":37.453155,"photo":"DSC004841","type":0,"zoom_level":16,"id":4301,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a3\u03c4\u03b1 \u03c0\u03b1\u03bb\u03b9\u03ac \u03bc\u03b5\u03c4\u03b1\u03bb\u03bb\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 \u039a\u03b1\u03ba\u03bf\u03b2\u03bf\u03bb\u03bf\u03c5","owner":"AnaDigit","x":24.400863,"y":37.448076,"photo":"DSC004981","type":0,"zoom_level":16,"id":4302,"hlink_GR":"","hlink_EN":"","description":"","height":1000,"width":750},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a4\u03bf \u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u03c4\u03b7\u03c2 \u03a9\u03c1\u03b9\u03ac\u03c2 \u03ba\u03b1\u03b9 \u03bf \u03ba\u03ac\u03bc\u03c0\u03bf\u03c2 \u03c4\u03bf\u03c5 \u039a\u03b1\u03c4\u03b1\u03ba\u03ad\u03c6\u03b1\u03bb\u03bf\u03c5 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03bd\u03cc\u03c4\u03b9\u03b1","owner":"AnaDigit","x":24.410873,"y":37.458975,"photo":"DSC004902","type":0,"zoom_level":14,"id":4303,"hlink_GR":"","hlink_EN":"","description":"","height":407,"width":1600},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u039a\u03b1\u03c4\u03b5\u03b2\u03b1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03a6\u03bb\u03b1\u03bc\u03c0\u03bf\u03cd\u03c1\u03b9\u03b1","owner":"AnaDigit","x":24.406426,"y":37.360821,"photo":"DSC005061","type":0,"zoom_level":16,"id":4304,"hlink_GR":"","hlink_EN":"","description":"","height":519,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u0394\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae \u03c3\u03b5 \u03c3\u03c4\u03ac\u03bd\u03b7 \u03c3\u03c4\u03bf\u03bd \u039a\u03b1\u03c4\u03b1\u03ba\u03ad\u03c6\u03b1\u03bb\u03bf","owner":"AnaDigit","x":24.417315,"y":37.457676,"photo":"20170609_0908041","type":1001,"zoom_level":15,"id":4305,"hlink_GR":"","hlink_EN":"","description":"","height":584,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf \u03c1\u03ad\u03bc\u03b1 \u03c4\u03b7\u03c2 \u0395\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae\u03c2","owner":"AnaDigit","x":24.410577,"y":37.396085,"photo":"DSC004442","type":1001,"zoom_level":16,"id":4306,"hlink_GR":"","hlink_EN":"","description":"","height":750,"width":1000},{"name":"\u039a\u03a5\u0398\u039d\u039f\u03a3
\u039a\u03b1\u03c4\u03b5\u03b2\u03b1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03bb\u03af\u03b1 \u0391\u03bd\u03c4\u03ce\u03bd\u03b7\u03b4\u03b5\u03c2","owner":"AnaDigit","x":24.43637,"y":37.348796,"photo":"K3II84891","type":0,"zoom_level":16,"id":4307,"hlink_GR":"","hlink_EN":"","description":"","height":995,"width":1000}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="
Παραλίες Απόκρουση και Κολώνα
Χώρα-Δρυοπίδα
Χώρα, μικρός κύκλος
Χώρα-Λουτρά
Δρυοπίδα-Αγ. Κωνσταντίνος-Κανάλα
Δρυοπίδα-Ζογκάκι
Διάσχιση των μεταλλείων Κακόβολου
Χώρα-Παραλία Κολώνα
Διαδρομή 1a
Διαδρομή 1b
Διαδρομή 1c
Διαδρομή 2
Διαδρομή 3
Διαδρομή 4
Διαδρομή 4a
Διαδρομή 5
Διαδρομή 6
Διαδρομή 6a
Διαδρομή 6b
Διαδρομή 6c
Διαδρομή 7
Διαδρομή 8
Διαδρομή 9
";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["kythnos"],pc:["kythnos"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1}; var overrideAfterLoad = function(map){ adventureCollection_kythnos.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); }