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 =
'
'
+ '
' + f.get(clickEvent.title.key) + '
'
+ '
 + ')
'
+ '
' + f.get(clickEvent.text.key) + '
'
+ '
';
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_vardousia = new getAdventureCollection("vardousia",[{"id":16636,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2 \u0394\u03b9\u03ac\u03ba\u03bf\u03c2-\u039c\u03bf\u03c5\u03c3\u03bf\u03c5\u03bd\u03af\u03c4\u03c3\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\u03b1 \u03b4\u03cd\u03bf \u03b1\u03b4\u03b5\u03bb\u03c6\u03ac \u03c7\u03c9\u03c1\u03b9\u03ac","path":"STEREA\/Sterea_Vardousia_Diakos_Mousounitsa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":3286,"name_EN":"Vardousia: Athanasios Diakos-Mousounitsa","description_EN":"The shortest way between the two sister villages","ascent_time":80,"descent_time":85,"marker":"No_marks","level":11,"ascent":124,"descent":247,"maxelev":1118,"minelev":856,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.17607 38.68671,22.19179 38.69912)","views":39,"millestones":"0,22.1764783,38.6991265#1,22.1795024,38.6957980#2,22.1865219,38.6918663#3.3,22.1917735,38.6873437","x":22.1812302,"y":38.6958756,"coor":[[22.1764783,38.6991265],[22.1760798,38.6986202],[22.1763349,38.6985341],[22.1778345,38.6974401],[22.1777478,38.6976821],[22.1780263,38.6982226],[22.1782179,38.6979192],[22.1787204,38.6976026],[22.1787479,38.6974228],[22.1789992,38.696796],[22.1791277,38.6967169],[22.1796237,38.6966525],[22.1796941,38.6965996],[22.1796495,38.6965448],[22.1793527,38.6964591],[22.1790129,38.6962556],[22.178555,38.6961763],[22.1778483,38.695931],[22.1775554,38.6957508],[22.1785731,38.6959153],[22.1792436,38.6957726],[22.1798859,38.6958366],[22.1810959,38.6957293],[22.1812302,38.6958756],[22.1812483,38.6968896],[22.1825431,38.6951391],[22.1832317,38.6947353],[22.1839512,38.6940166],[22.186805,38.691646],[22.1872701,38.6909864],[22.1891266,38.6903124],[22.1895897,38.6892743],[22.1902501,38.6886177],[22.1897059,38.6883119],[22.188852,38.6875238],[22.1877307,38.6868576],[22.1874499,38.6868217],[22.1878102,38.6866651],[22.1882474,38.6866539],[22.1884405,38.686747],[22.188675,38.6870209],[22.189075,38.6871172],[22.1893131,38.6872471],[22.1894493,38.6874159],[22.1900125,38.6874246],[22.1910267,38.6873231],[22.1917735,38.6873437]]},{"id":16637,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: E4 \u0391\u03c1\u03c4\u03bf\u03c4\u03af\u03bd\u03b1-\u0391\u03b8\u03b1\u03bd. \u0394\u03b9\u03ac\u03ba\u03bf\u03c2","description_GR":"\u0388\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c9\u03c1\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03ba\u03bf\u03bc\u03bc\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03954","path":"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":18422,"name_EN":"Vardousia: E4 Artotina-Athanasios Diakos","description_EN":"A nice mountain crossing","ascent_time":675,"descent_time":615,"marker":"E4","level":11,"ascent":970,"descent":1088,"maxelev":1736,"minelev":973,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.03621 38.69833,22.1765 38.72259)","views":59,"millestones":"0,22.0368303,38.6998519#1,22.0445747,38.6978728#2,22.0472894,38.7043456#3,22.0566047,38.7059760#4,22.0640286,38.7099739#5,22.0741703,38.7099591#6,22.0833668,38.7119657#7,22.0916604,38.7166890#8,22.0982173,38.7230070#9,22.1071207,38.7212266#10,22.1104257,38.7137240#11,22.1159313,38.7073766#12,22.1237601,38.7031171#13,22.1292723,38.7026167#14,22.1375889,38.7004852#15,22.1458897,38.7000289#16,22.1554792,38.7012609#17,22.1657160,38.7005313#18.4,22.1764769,38.6991265","x":22.1077952,"y":38.7175296,"coor":[[22.0368303,38.6998519],[22.03726,38.6996969],[22.0375121,38.6993047],[22.0375985,38.6990899],[22.0375688,38.6984947],[22.0377222,38.6983486],[22.0380575,38.6982821],[22.0381659,38.698392],[22.0385972,38.6985975],[22.0388322,38.6985834],[22.0391245,38.6984081],[22.0392795,38.6982981],[22.0393358,38.6982495],[22.0403068,38.698482],[22.0404745,38.6982731],[22.0411615,38.6979602],[22.0415182,38.6979482],[22.0416847,38.6979194],[22.0419314,38.6977253],[22.0424655,38.697536],[22.042904,38.6974803],[22.0430103,38.6973739],[22.0430839,38.6976275],[22.0431394,38.6977005],[22.0432428,38.6977022],[22.0432499,38.6978645],[22.0433411,38.6978931],[22.0436128,38.6976273],[22.0437153,38.6976651],[22.0438219,38.6979732],[22.0440207,38.6978504],[22.0441351,38.6978703],[22.0441762,38.6980512],[22.0442671,38.6980888],[22.0443305,38.6978736],[22.044506,38.697854],[22.0447799,38.6979307],[22.044875,38.6980269],[22.0451939,38.6981403],[22.0451899,38.6982844],[22.0448808,38.6991984],[22.0450193,38.6993133],[22.0451046,38.6991345],[22.0452257,38.6993348],[22.0449955,38.6997634],[22.0446169,38.7001536],[22.0445521,38.7004228],[22.0447225,38.7004977],[22.0447061,38.7006777],[22.0448216,38.7006616],[22.0448069,38.7007785],[22.0451434,38.700667],[22.0452578,38.7006869],[22.0458902,38.701112],[22.046065,38.7014483],[22.0462592,38.7014966],[22.04646,38.7013017],[22.0465976,38.701313],[22.04678,38.7022171],[22.0469626,38.7031933],[22.0472027,38.7036659],[22.0472765,38.7043339],[22.047703,38.7047195],[22.0478505,38.704794],[22.0479521,38.7047822],[22.0482175,38.7047506],[22.0485359,38.7048821],[22.0486929,38.7048171],[22.048957,38.7048305],[22.0491729,38.7049242],[22.0492769,38.7049079],[22.0494187,38.7047661],[22.0495772,38.7048589],[22.0497635,38.7047719],[22.0498944,38.7046119],[22.0500093,38.7046138],[22.0500727,38.7043986],[22.0503744,38.7042955],[22.0503424,38.7042049],[22.0507887,38.7042844],[22.0509687,38.7044316],[22.0516684,38.7044973],[22.0517704,38.7045531],[22.0522316,38.7045067],[22.0532421,38.7041361],[22.0534827,38.7041671],[22.0535849,38.7042138],[22.053884,38.7046333],[22.05412,38.7048355],[22.0545634,38.7050231],[22.0549591,38.7052729],[22.0556084,38.7055],[22.0558449,38.7056841],[22.056327,38.7057192],[22.056519,38.7058485],[22.0567623,38.706204],[22.0568707,38.7068726],[22.0568282,38.7071692],[22.056634,38.7075444],[22.0566661,38.7076351],[22.0574005,38.7076923],[22.0581606,38.7076509],[22.0588332,38.7078693],[22.0591044,38.708045],[22.0596873,38.7081809],[22.0598563,38.7083098],[22.0600099,38.7085827],[22.0599368,38.7091581],[22.0600122,38.7093486],[22.0609682,38.7092924],[22.0616173,38.7095284],[22.0619531,38.7094439],[22.062206,38.7094481],[22.0625474,38.7095799],[22.0630105,38.7098939],[22.0630863,38.7100664],[22.0632128,38.7100685],[22.0633996,38.7099634],[22.0641123,38.7099752],[22.0645018,38.7096033],[22.0647219,38.7095438],[22.0648642,38.709384],[22.0659342,38.7093657],[22.0662925,38.7092995],[22.067115,38.7090788],[22.0677657,38.7088283],[22.0679086,38.708727],[22.0688984,38.7086983],[22.0701766,38.7090618],[22.0710617,38.7090764],[22.0713207,38.7092789],[22.071733,38.7097723],[22.0720999,38.7098144],[22.072426,38.7100901],[22.0728345,38.7102951],[22.0742355,38.7099397],[22.074715,38.7096413],[22.0749829,38.709943],[22.0760644,38.7099248],[22.0762579,38.7100001],[22.0766397,38.7099162],[22.076751,38.7100532],[22.0768802,38.7108122],[22.0770372,38.710959],[22.0772772,38.711017],[22.0774575,38.7111551],[22.0776701,38.7113749],[22.077888,38.711829],[22.0783167,38.7117099],[22.0786913,38.7114638],[22.0791755,38.7114177],[22.080046,38.7115491],[22.0803645,38.7116805],[22.0813404,38.7117415],[22.0823228,38.7119919],[22.0830115,38.7120393],[22.0834625,38.7119476],[22.0841611,38.7120581],[22.0846324,38.7120659],[22.0852388,38.7121839],[22.0853861,38.7122674],[22.0857084,38.7122547],[22.0856485,38.7123438],[22.0857105,38.7126061],[22.0859821,38.7127728],[22.0864146,38.712942],[22.08677,38.7129839],[22.0869151,38.7131485],[22.0870705,38.7137908],[22.0875107,38.7141043],[22.0878297,38.7142177],[22.0880072,38.7144639],[22.0885422,38.7146709],[22.0896103,38.7147244],[22.0896985,38.71487],[22.0901875,38.7150762],[22.0909417,38.7156922],[22.0910672,38.7161628],[22.0913464,38.7164738],[22.0917981,38.7167875],[22.0918044,38.7169858],[22.0920075,38.7175658],[22.0924843,38.7177989],[22.0928297,38.7177865],[22.0932623,38.7179557],[22.0933447,38.71875],[22.0935492,38.719276],[22.0934999,38.7198338],[22.0936153,38.7198177],[22.0937806,38.7200907],[22.0950137,38.7208677],[22.0952304,38.7209343],[22.0957176,38.7212126],[22.0964597,38.7214229],[22.0974279,38.7226461],[22.0979154,38.7229153],[22.0982692,38.7230202],[22.0996129,38.7230961],[22.1003389,38.7230448],[22.1006527,38.7229238],[22.101115,38.7228412],[22.1014062,38.7227018],[22.1016371,38.7226695],[22.1019801,38.7227471],[22.1022374,38.7230216],[22.1028653,38.7234598],[22.1030727,38.7234452],[22.1032888,38.7235388],[22.1037611,38.7235104],[22.1048941,38.723727],[22.1054939,38.7236646],[22.1059743,38.72333],[22.106768,38.7224598],[22.1069255,38.722156],[22.1069484,38.7217239],[22.107172,38.7210968],[22.1077326,38.7203399],[22.1079709,38.7191544],[22.1081427,38.7187427],[22.1080315,38.7181642],[22.1077952,38.7175296],[22.1079418,38.7167661],[22.1087146,38.7153729],[22.109207,38.7150205],[22.1091691,38.7147135],[22.1092519,38.7146247],[22.1096928,38.7144787],[22.1101859,38.7145317],[22.1106735,38.7143594],[22.110702,38.7141526],[22.1105613,38.7138169],[22.1101545,38.71354],[22.1103003,38.7131639],[22.1105388,38.7128434],[22.110743,38.7126485],[22.1109512,38.7121653],[22.1111655,38.7118894],[22.1114374,38.7111729],[22.1118252,38.7108548],[22.1118514,38.7102966],[22.1119347,38.7101898],[22.1123002,38.7102858],[22.1124056,38.7102154],[22.1126358,38.7097686],[22.113025,38.709838],[22.1132873,38.7098692],[22.1136531,38.7095147],[22.1141028,38.7094679],[22.1142103,38.7093164],[22.1140718,38.7088997],[22.1141555,38.7087749],[22.1144599,38.7085726],[22.1147471,38.7081447],[22.1154674,38.707868],[22.1157501,38.7076112],[22.1162619,38.7069527],[22.1164838,38.7068211],[22.1166596,38.7067924],[22.1169423,38.7069727],[22.1173971,38.7067322],[22.1176503,38.7067273],[22.117952,38.706624],[22.1186276,38.7062925],[22.118835,38.7062778],[22.1190428,38.7064253],[22.1193159,38.706317],[22.1195997,38.7064568],[22.1199455,38.7064263],[22.1199833,38.7063007],[22.1197945,38.7060454],[22.1196559,38.7056287],[22.119754,38.705396],[22.1201366,38.705276],[22.1207199,38.704961],[22.121533,38.7046497],[22.1220871,38.7045685],[22.122275,38.7044183],[22.122363,38.7041314],[22.122576,38.7039005],[22.123196,38.703496],[22.1233147,38.7033537],[22.1236844,38.7032876],[22.1238921,38.7028223],[22.1241424,38.7024839],[22.1242691,38.702477],[22.1242904,38.7030225],[22.124383,38.7034384],[22.1242066,38.7035888],[22.123952,38.7040893],[22.123564,38.7044165],[22.1236196,38.7044894],[22.1246494,38.7042447],[22.1249453,38.703925],[22.1256195,38.7036475],[22.125646,38.7035128],[22.1254361,38.703185],[22.1255304,38.7030964],[22.1260995,38.7028803],[22.1264338,38.7028496],[22.1269733,38.7028853],[22.1271898,38.7029608],[22.1274265,38.7031448],[22.1282292,38.7032298],[22.1283451,38.7031956],[22.1282841,38.7028882],[22.1283899,38.7027998],[22.129442,38.7025824],[22.1300922,38.702782],[22.1304621,38.7031484],[22.1309841,38.7029765],[22.1311159,38.7027713],[22.131407,38.7026318],[22.1314439,38.7025423],[22.131342,38.7020361],[22.1315105,38.7017504],[22.1314255,38.7014788],[22.1314532,38.701299],[22.1316639,38.7011582],[22.1320542,38.7010428],[22.1326465,38.700818],[22.1329805,38.7007963],[22.133707,38.7007178],[22.1341853,38.7004551],[22.1348266,38.7005554],[22.1352636,38.7005534],[22.1354726,38.7004756],[22.1357196,38.7002633],[22.1362849,38.7006327],[22.136798,38.7008031],[22.1369823,38.700788],[22.1371305,38.7007138],[22.137229,38.7004631],[22.1373219,38.7004285],[22.1387286,38.7007212],[22.1393263,38.7007307],[22.1394574,38.7005526],[22.1393178,38.7001719],[22.1393786,38.7000468],[22.1394726,38.6999672],[22.1398165,38.7000087],[22.1402499,38.6997002],[22.1406573,38.6995084],[22.141096,38.6994433],[22.1416157,38.6989109],[22.1416118,38.6986586],[22.1416148,38.6985415],[22.1417309,38.6984983],[22.1429465,38.6986257],[22.1438383,38.6988201],[22.14515,38.6987869],[22.145469,38.6989],[22.1456016,38.6991094],[22.1457101,38.6997103],[22.1458971,38.7000377],[22.1462356,38.7002863],[22.1467813,38.7005293],[22.1469671,38.7004601],[22.1476725,38.6998586],[22.147876,38.6995464],[22.148016,38.6994676],[22.1485553,38.6995121],[22.1490977,38.6998812],[22.1494639,38.69995],[22.1498965,38.7001191],[22.1503338,38.700108],[22.1509875,38.7001724],[22.1518063,38.7005277],[22.1524951,38.7010162],[22.1527468,38.7010652],[22.153151,38.7009995],[22.1533225,38.7010383],[22.1532029,38.7012166],[22.1539638,38.7011385],[22.1544351,38.7011459],[22.1548737,38.7010808],[22.1553952,38.7012467],[22.1560706,38.7013655],[22.1563092,38.7014774],[22.1563892,38.7014967],[22.1568713,38.7014862],[22.1570975,38.701269],[22.1573511,38.701246],[22.1576881,38.7011071],[22.1584935,38.7006423],[22.1596438,38.7001738],[22.1599441,38.7001245],[22.1604099,38.7002039],[22.160506,38.7000432],[22.1610536,38.6997635],[22.1618922,38.6997947],[22.1624552,38.6996413],[22.1628093,38.699737],[22.1631318,38.699715],[22.1638193,38.6998069],[22.1639589,38.6997461],[22.1641764,38.6997855],[22.1646874,38.7000368],[22.1649554,38.7003474],[22.1658926,38.7005694],[22.1669015,38.7006888],[22.1670842,38.7007367],[22.1676412,38.7007094],[22.1681791,38.7003574],[22.1683843,38.7001579],[22.1685446,38.7000027],[22.1688807,38.6998998],[22.169429,38.6995075],[22.1698448,38.6994329],[22.1700149,38.6995256],[22.1701204,38.6994912],[22.1701825,38.699312],[22.1708523,38.6991963],[22.1709227,38.6991434],[22.1711059,38.6991733],[22.1712594,38.6990135],[22.1713617,38.6990601],[22.1714458,38.6989173],[22.1715732,38.6988832],[22.1716479,38.6986591],[22.1717382,38.6987236],[22.1718417,38.6987252],[22.171901,38.6986541],[22.1719566,38.698727],[22.1720991,38.698549],[22.1722017,38.6985867],[22.1722492,38.6985244],[22.1724074,38.698635],[22.172663,38.6985308],[22.1726881,38.6984501],[22.1728587,38.6985249],[22.1731984,38.6982779],[22.1734793,38.6985346],[22.1737434,38.6985928],[22.1743201,38.6985207],[22.1747767,38.6986539],[22.1747009,38.6987924],[22.1747455,38.6988472],[22.1753555,38.6988252],[22.1755656,38.6987879],[22.1761417,38.6991934],[22.1764769,38.6991265]]},{"id":16638,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: E4 \u0391\u03b8\u03b1\u03bd\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2 \u0394\u03b9\u03ac\u03ba\u03bf\u03c2-\u03a3\u03c4\u03c1\u03cc\u03bc\u03b7","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf \u0394\u03b9\u03ac\u03ba\u03bf \u03c3\u03c4\u03b7 \u03a3\u03c4\u03c1\u03cc\u03bc\u03b7","path":"STEREA\/Sterea_Vardousia_E4_Diakos_Stromi","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":11109,"name_EN":"Vardousia: E4 Athanasios Diakos-Stromi","description_EN":"From Athanasios Diakos to Stromi","ascent_time":255,"descent_time":250,"marker":"E4","level":9,"ascent":482,"descent":597,"maxelev":1115,"minelev":640,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.1758 38.69063,22.25823 38.70965)","views":50,"millestones":"0,22.1764783,38.6991265#1,22.1795015,38.6957979#2,22.1853061,38.7009865#3,22.1908823,38.6972892#4,22.2009188,38.6940591#5,22.2111314,38.6926784#6,22.2174768,38.6919567#7,22.2261503,38.6963920#8,22.2360057,38.7002307#9,22.2420702,38.7057006#10,22.2509551,38.7104434#11.1,22.2574831,38.7065434","x":22.2105098,"y":38.6932142,"coor":[[22.1764783,38.6991265],[22.1760794,38.6986202],[22.1763345,38.6985341],[22.1778341,38.6974401],[22.1777475,38.6976821],[22.1780259,38.6982226],[22.1782176,38.6979192],[22.17872,38.6976026],[22.1787476,38.6974228],[22.1789992,38.696796],[22.1791277,38.6967169],[22.1796237,38.6966525],[22.1796941,38.6965996],[22.1796495,38.6965448],[22.1793527,38.6964591],[22.1790129,38.6962556],[22.178555,38.6961763],[22.1778483,38.695931],[22.177555,38.6957508],[22.1785731,38.6959153],[22.1792436,38.6957726],[22.1798859,38.6958366],[22.1810959,38.6957293],[22.1812302,38.6958756],[22.1812483,38.6968896],[22.181381,38.6970989],[22.1815838,38.6972642],[22.1831192,38.6979279],[22.1831731,38.6980729],[22.1829854,38.6984034],[22.1829937,38.6985296],[22.1830944,38.6986393],[22.1833565,38.6987335],[22.1836346,38.6986477],[22.1838245,38.6984164],[22.1840088,38.6984012],[22.1842125,38.6989856],[22.1848241,38.6993555],[22.1850978,38.6999004],[22.1851259,38.7001532],[22.1848878,38.7004739],[22.1849278,38.7007088],[22.185436,38.7010771],[22.185815,38.7015515],[22.1860987,38.7017001],[22.1866035,38.701744],[22.1873558,38.7020079],[22.188137,38.7020381],[22.1882758,38.7019456],[22.1882923,38.7017476],[22.1882099,38.7013679],[22.1884935,38.7010659],[22.1889278,38.7002617],[22.1888859,38.7000988],[22.1886044,38.6998602],[22.1885731,38.6997336],[22.1888685,38.6989632],[22.1887168,38.6981409],[22.1892477,38.6976085],[22.1894035,38.6973586],[22.1895547,38.6972888],[22.1902188,38.6973982],[22.1907723,38.6973347],[22.1911907,38.697161],[22.1916967,38.6967002],[22.1919178,38.6965955],[22.19252,38.6964246],[22.1942522,38.696127],[22.1944152,38.6960484],[22.1949276,38.69616],[22.1954878,38.6958307],[22.1958385,38.6956018],[22.1963023,38.6954468],[22.1966318,38.6951455],[22.1969247,38.6948437],[22.1974629,38.6944735],[22.1981446,38.6943398],[22.1987774,38.6943226],[22.1997814,38.6941758],[22.2002508,38.6942551],[22.2005551,38.6940436],[22.2012902,38.6940729],[22.2016857,38.6938898],[22.2029486,38.6935037],[22.2035688,38.6935312],[22.2038879,38.6936443],[22.2041412,38.6936301],[22.2046546,38.6933317],[22.2048863,38.6932631],[22.205074,38.6931128],[22.2056766,38.6929238],[22.2062729,38.6929871],[22.2063896,38.6929168],[22.2067572,38.6929314],[22.2068592,38.692987],[22.2070891,38.6929906],[22.2073839,38.6931573],[22.2078659,38.6931917],[22.2082116,38.693161],[22.2087113,38.6934119],[22.2093835,38.6931969],[22.2095329,38.6931992],[22.2097017,38.693346],[22.209806,38.6933115],[22.2101727,38.6933622],[22.2105098,38.6932142],[22.2107636,38.693182],[22.2110099,38.6929876],[22.2115136,38.6916887],[22.2124788,38.6912529],[22.2130565,38.6911356],[22.2135622,38.6911433],[22.2144282,38.6909944],[22.2148249,38.6912257],[22.2151828,38.6916276],[22.2153358,38.6914858],[22.2153031,38.6914132],[22.2156024,38.6907465],[22.2155097,38.6903576],[22.2151607,38.6900594],[22.2157868,38.6899924],[22.2166369,38.6907577],[22.2171428,38.6916846],[22.2177786,38.6921989],[22.2186258,38.6921127],[22.2190603,38.6922094],[22.2191736,38.6922742],[22.2194074,38.6925841],[22.2197018,38.6927688],[22.2211736,38.6933589],[22.2213799,38.6938486],[22.2218055,38.6943056],[22.2223014,38.6947096],[22.2226721,38.6955263],[22.2228918,38.6954755],[22.2234068,38.6955735],[22.2241221,38.6954762],[22.2246954,38.695539],[22.2260025,38.6961535],[22.2262456,38.6965537],[22.2266888,38.6967677],[22.228362,38.6969913],[22.2297699,38.6977154],[22.2301722,38.6977215],[22.2304963,38.6976363],[22.230801,38.6978662],[22.2315506,38.698247],[22.2329511,38.6988088],[22.2334652,38.6989427],[22.2344037,38.6995877],[22.234379,38.6996594],[22.2346842,38.6998713],[22.235327,38.699917],[22.2357943,38.7000863],[22.2364389,38.7005285],[22.2368748,38.7005711],[22.2372886,38.7015145],[22.2376025,38.7018436],[22.2379822,38.7018313],[22.2383014,38.7019442],[22.2389164,38.7026564],[22.2390404,38.7032259],[22.239388,38.7035916],[22.2395991,38.7034235],[22.2398699,38.7036349],[22.2398059,38.704134],[22.2397073,38.7044029],[22.2396892,38.7051415],[22.2398309,38.705459],[22.2401567,38.7057703],[22.2406148,38.7058492],[22.2417241,38.7056316],[22.2419876,38.7056717],[22.242877,38.7059824],[22.2432634,38.7061684],[22.2434549,38.7063335],[22.2440622,38.7073608],[22.244221,38.7074533],[22.244656,38.7075319],[22.2448608,38.7076251],[22.2456545,38.7085561],[22.2458376,38.7085949],[22.2461495,38.7085365],[22.246828,38.7085377],[22.2473889,38.7086452],[22.2477521,38.7088399],[22.2483027,38.7093708],[22.248994,38.7097866],[22.2501242,38.7101279],[22.2506688,38.7104334],[22.2508868,38.7104547],[22.2512794,38.7103885],[22.2517963,38.7104143],[22.2528014,38.7106996],[22.2535916,38.7108376],[22.2539365,38.7108427],[22.2547246,38.7105932],[22.2558344,38.7103574],[22.2561834,38.7101914],[22.2566054,38.7098643],[22.2569191,38.7097339],[22.2571085,38.7095114],[22.257431,38.7094892],[22.2577443,38.7092416],[22.2577827,38.7090799],[22.2572486,38.7081529],[22.2573328,38.7075234],[22.2571234,38.7071508],[22.2570389,38.7068432],[22.2571113,38.7067001],[22.2574831,38.7065434]]},{"id":16639,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: E4 \u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03b7 \u039f\u03be\u03b9\u03ac-\u0391\u03c1\u03c4\u03bf\u03c4\u03af\u03bd\u03b1","description_GR":"\u0388\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c9\u03c1\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03ba\u03bf\u03bc\u03bc\u03ac\u03c4\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03954","path":"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":7166,"name_EN":"Vardousia: E4 Grameni Oxia-Artotina","description_EN":"A nice mountain ride","ascent_time":210,"descent_time":205,"marker":"E4","level":11,"ascent":369,"descent":388,"maxelev":1169,"minelev":812,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.00706 38.69985,22.03683 38.7364)","views":61,"millestones":"0,22.0368303,38.6998519#1,22.0309156,38.7060563#2,22.0286265,38.7130644#3,22.0234512,38.7194449#4,22.0154166,38.7206673#5,22.0154202,38.7217212#6,22.0117406,38.7283397#7.2,22.0070592,38.7363950","x":22.0208298,"y":38.720401,"coor":[[22.0368303,38.6998519],[22.0364815,38.6999902],[22.0360702,38.6998932],[22.0358256,38.7000107],[22.0354103,38.7000578],[22.0348123,38.7004802],[22.034737,38.7007132],[22.0347092,38.7013075],[22.0344695,38.7016639],[22.0341747,38.7019292],[22.0340771,38.7021348],[22.034071,38.7027925],[22.0338142,38.7037703],[22.0333152,38.7043566],[22.0331168,38.7044614],[22.03275,38.7044192],[22.0326226,38.7044531],[22.0324051,38.7048369],[22.0317596,38.7053126],[22.0315297,38.7053358],[22.0313137,38.705242],[22.0311284,38.705293],[22.0310091,38.7058676],[22.0305946,38.7067257],[22.0307442,38.7075572],[22.0309208,38.7078665],[22.0311558,38.7081047],[22.0310904,38.708392],[22.0308896,38.7085868],[22.0304691,38.708823],[22.0301149,38.7091595],[22.0301307,38.709421],[22.0299374,38.7097602],[22.0297507,38.7098562],[22.02922,38.7099193],[22.029276,38.7102086],[22.0286591,38.7104775],[22.0282578,38.7104347],[22.0281763,38.7104694],[22.0284609,38.7109968],[22.0284469,38.7110866],[22.0281106,38.7111891],[22.0280327,38.7115122],[22.0281387,38.7118383],[22.0285272,38.7123495],[22.0284488,38.7126906],[22.0286473,38.7130003],[22.0286221,38.7130809],[22.0279487,38.7133129],[22.0277603,38.7134719],[22.02738,38.7135015],[22.0271571,38.7136599],[22.0268559,38.7141594],[22.0266199,38.7147952],[22.0260912,38.7152008],[22.0259708,38.715397],[22.0257628,38.7154295],[22.0255359,38.7153175],[22.0252067,38.7159968],[22.0246606,38.7162894],[22.0251188,38.7162656],[22.0251953,38.7164111],[22.0244309,38.7170199],[22.024299,38.7172159],[22.0240903,38.7181134],[22.0236343,38.718385],[22.0234272,38.7192195],[22.023464,38.7195535],[22.0230693,38.7200514],[22.0220115,38.7196731],[22.0213184,38.720202],[22.0207066,38.7202818],[22.0208298,38.720401],[22.0214236,38.7205552],[22.0214671,38.7206461],[22.0213267,38.7207338],[22.0199103,38.7203764],[22.0191126,38.7205251],[22.0187452,38.7205008],[22.0185065,38.7203977],[22.0181041,38.7199764],[22.0178872,38.7199186],[22.0177587,38.7199885],[22.0175313,38.720309],[22.0171325,38.7205906],[22.0159104,38.720696],[22.0151411,38.7206469],[22.0144438,38.7204909],[22.0136716,38.7201354],[22.0131772,38.7197125],[22.0126219,38.7198292],[22.0114748,38.7197196],[22.0104741,38.7193827],[22.0104714,38.7194818],[22.0112091,38.7198367],[22.0128976,38.720334],[22.0131371,38.7208246],[22.0136139,38.721049],[22.0139863,38.7213076],[22.015185,38.7216343],[22.0161245,38.7219747],[22.0165106,38.7221524],[22.0166121,38.7222532],[22.0167008,38.7223449],[22.0167086,38.7224802],[22.0163571,38.7235464],[22.0164183,38.7238538],[22.0165415,38.7239731],[22.0164236,38.7240792],[22.0164311,38.7242235],[22.0158898,38.7246648],[22.0154099,38.724963],[22.015014,38.7251365],[22.0143102,38.7256292],[22.0137638,38.7267327],[22.0130265,38.7271887],[22.0127006,38.7273273],[22.0122612,38.72741],[22.0118238,38.727799],[22.0117208,38.7281036],[22.0117553,38.7285187],[22.0115283,38.7288212],[22.0113681,38.7296204],[22.0111887,38.7298696],[22.0107802,38.7300789],[22.0105318,38.7303135],[22.009398,38.7309609],[22.0095415,38.7311796],[22.0095272,38.7312785],[22.0092918,38.7314727],[22.009266,38.7315714],[22.009341,38.7321854],[22.0091338,38.7326054],[22.009137,38.7333172],[22.0089838,38.7334498],[22.0089308,38.7337012],[22.0086721,38.733904],[22.0082159,38.7345901],[22.0078149,38.7353581],[22.0075774,38.7356244],[22.0075519,38.7357141],[22.0077401,38.7359786],[22.0077198,38.7361539],[22.0075392,38.736277],[22.0070592,38.736395]]},{"id":16640,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u039a\u03bf\u03bd\u03b9\u03ac\u03ba\u03bf\u03c2-\u039a\u03cc\u03c1\u03b1\u03ba\u03b1\u03c2","description_GR":"\u039c\u03b9\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c4\u03c9\u03bd \u0392\u03b1\u03c1\u03b4\u03bf\u03c5\u03c3\u03af\u03c9\u03bd","path":"STEREA\/Sterea_Vardousia_Southern_Ridge","activity_type":33,"assistance":1,"difficulty":4,"scenic_value":5,"length":1750,"name_EN":"Vardousia Mt: Koniakos-Korakas summit","description_EN":"A clasisic Haute Route along the range crestline","ascent_time":585,"descent_time":480,"marker":"No_marks","level":12,"ascent":2050,"descent":433,"maxelev":2466,"minelev":836,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.14021 38.61478,22.17883 38.68108)","views":96,"millestones":"0,22.1779396,38.6414711#1,22.1767576,38.6359759#2,22.1702498,38.6344162#3,22.1629983,38.6285144#4,22.1558077,38.6218125#5,22.1512171,38.6143673#6,22.1460105,38.6194087#7,22.1425997,38.6268325#8,22.1443810,38.6345823#9,22.1442184,38.6424060#10,22.1445375,38.6508184#11,22.1477984,38.6583356#12,22.1470326,38.6655917#1.8,22.1442040,38.6811108","x":22.1419378,"y":38.6262081,"coor":[[22.1779396,38.6414711],[22.1781636,38.6410601],[22.1780065,38.6409135],[22.1779814,38.6406293],[22.1777928,38.6394549],[22.1779082,38.639308],[22.1778141,38.6391669],[22.1775881,38.6390192],[22.1775478,38.6387933],[22.1773693,38.6385833],[22.176661,38.6384281],[22.1766623,38.638374],[22.1771423,38.6380211],[22.1771285,38.6376604],[22.1770389,38.6375689],[22.1766001,38.6372872],[22.1766247,38.6372246],[22.177203,38.6370714],[22.1773199,38.6369921],[22.1773929,38.636831],[22.1776134,38.6367444],[22.1779235,38.6367492],[22.178019,38.6366065],[22.178084,38.6363057],[22.1780398,38.6357823],[22.1778072,38.6358959],[22.1774065,38.6362951],[22.1772462,38.6362746],[22.1769696,38.6358558],[22.1766898,38.6360136],[22.1760114,38.6360391],[22.1759857,38.6361468],[22.1760858,38.6362745],[22.1760712,38.6364004],[22.1759565,38.6363896],[22.1759359,38.6362992],[22.1756758,38.636133],[22.1756216,38.636006],[22.1756841,38.6358087],[22.17593,38.6356233],[22.1759447,38.6354974],[22.1758549,38.6354149],[22.1755175,38.6355808],[22.1748942,38.6356973],[22.1748538,38.6359309],[22.174597,38.6360891],[22.1745809,38.6358185],[22.174393,38.6355272],[22.1742428,38.6355609],[22.1741096,38.6358292],[22.173784,38.6359863],[22.1736002,38.6359834],[22.1734716,38.635621],[22.1734554,38.6353504],[22.1731776,38.6354362],[22.1729047,38.6357743],[22.1727097,38.6357623],[22.1726445,38.6356171],[22.172667,38.6354102],[22.1726008,38.635301],[22.172294,38.6351701],[22.1712319,38.6349192],[22.1702452,38.6344172],[22.1696522,38.6342457],[22.1696196,38.6341731],[22.1699236,38.6339616],[22.1698014,38.6337975],[22.1692236,38.6334821],[22.168648,38.6330766],[22.1685148,38.6328943],[22.167982,38.6326156],[22.167332,38.6324252],[22.1670371,38.6322764],[22.1666639,38.6320453],[22.1664177,38.6317891],[22.165894,38.6316007],[22.165533,38.6313427],[22.1654127,38.6311066],[22.1655009,38.6308016],[22.1653327,38.6306368],[22.1649138,38.6299454],[22.1644063,38.629577],[22.1642662,38.6292143],[22.1636356,38.6287178],[22.1627696,38.6284429],[22.1625101,38.6282586],[22.1620306,38.628143],[22.1619041,38.6276995],[22.161352,38.6272763],[22.1607726,38.6265733],[22.1603779,38.6262878],[22.1600463,38.625778],[22.1597393,38.625656],[22.1593478,38.6252443],[22.1590307,38.6250682],[22.1585324,38.6243394],[22.1580415,38.623773],[22.1579407,38.6236723],[22.1577579,38.6236334],[22.1558202,38.6218413],[22.1556985,38.6215645],[22.1556178,38.6212659],[22.1548335,38.6204966],[22.1547732,38.6201622],[22.1544942,38.6198425],[22.1544922,38.6176798],[22.154122,38.61689],[22.1538493,38.6158765],[22.1527625,38.6148141],[22.1516832,38.6143555],[22.15085,38.6143784],[22.1504561,38.6149579],[22.1504652,38.6154987],[22.1504037,38.6156959],[22.1507273,38.6169626],[22.1506413,38.6171775],[22.1504287,38.6174084],[22.1497795,38.6176414],[22.1495044,38.6176191],[22.1490085,38.6172508],[22.1487009,38.6171558],[22.1478642,38.6170885],[22.1473351,38.6171162],[22.1471266,38.6171849],[22.14675,38.6175394],[22.1464254,38.6181019],[22.1459439,38.618288],[22.1461445,38.6185255],[22.1461508,38.6191744],[22.145851,38.6196652],[22.1455823,38.6198412],[22.1452727,38.6202688],[22.1449587,38.620417],[22.1450799,38.6215092],[22.1449865,38.6220124],[22.1445979,38.6223847],[22.1444775,38.622599],[22.1440432,38.6229616],[22.1435199,38.6236561],[22.1432061,38.6237953],[22.1431108,38.6239289],[22.1428899,38.6240336],[22.1426999,38.6242738],[22.1420343,38.6246958],[22.1417747,38.624962],[22.1416489,38.6253835],[22.1417219,38.625673],[22.1419317,38.6260007],[22.1419378,38.6262081],[22.142284,38.626592],[22.1428474,38.6270155],[22.1429079,38.6273408],[22.1432091,38.627688],[22.1428575,38.6284033],[22.1429778,38.6286395],[22.1428438,38.6289347],[22.1427746,38.6293932],[22.1428812,38.6297103],[22.1433437,38.630042],[22.1437509,38.6304675],[22.143998,38.6306876],[22.1444061,38.6313429],[22.1449705,38.6317303],[22.145058,38.6319029],[22.1448392,38.632368],[22.1446625,38.6325364],[22.144283,38.6327737],[22.1443799,38.6330275],[22.1442942,38.6332334],[22.144362,38.633721],[22.1446628,38.6340863],[22.1444243,38.6344249],[22.1443484,38.634694],[22.1446482,38.6350952],[22.1446445,38.6352393],[22.144407,38.6355419],[22.1441396,38.6356639],[22.1435055,38.6361944],[22.1435895,38.6365021],[22.1434365,38.6366439],[22.1433541,38.6371652],[22.1432353,38.6373165],[22.1435145,38.6376273],[22.1434832,38.6379512],[22.1433531,38.6380933],[22.1435763,38.6383492],[22.143607,38.6384938],[22.143766,38.6385684],[22.1437824,38.638821],[22.1436803,38.6392158],[22.1431531,38.639613],[22.1430551,38.6398457],[22.1435276,38.6406822],[22.1435313,38.6414301],[22.1439521,38.6420405],[22.1440598,38.6423216],[22.1443771,38.6424888],[22.1444426,38.642625],[22.1444365,38.6428592],[22.1443142,38.6431456],[22.1441814,38.6433958],[22.1438983,38.6436797],[22.1439739,38.6443116],[22.1443142,38.6449297],[22.1448056,38.6454782],[22.1448889,38.6458129],[22.1450863,38.6461765],[22.1450967,38.6466632],[22.14529,38.6471889],[22.1451471,38.6473849],[22.1451483,38.6477814],[22.144967,38.6481299],[22.1448139,38.6491637],[22.1445482,38.6496641],[22.1444077,38.6502116],[22.1443121,38.6503542],[22.1448686,38.6514984],[22.1449733,38.6518965],[22.1451726,38.652188],[22.1451654,38.6524673],[22.1453466,38.6525693],[22.1453539,38.6527316],[22.1455656,38.6529872],[22.1456501,38.6532769],[22.1455879,38.6539067],[22.146162,38.6548169],[22.1463302,38.6554233],[22.1467195,38.655925],[22.1468825,38.656288],[22.1468455,38.6563866],[22.1464372,38.6566234],[22.1464107,38.6567581],[22.1466482,38.6569061],[22.1475318,38.6569561],[22.1477684,38.6571401],[22.1479232,38.6573768],[22.1479805,38.6578282],[22.1477989,38.6581858],[22.1478024,38.6589428],[22.1477118,38.6593378],[22.1481325,38.6599572],[22.1480718,38.6600824],[22.1478407,38.6601328],[22.147433,38.6603426],[22.147626,38.6604358],[22.1479941,38.6604236],[22.1480837,38.6605151],[22.1480345,38.6606405],[22.1476475,38.6609407],[22.1474718,38.6615146],[22.1472241,38.661763],[22.1464092,38.6621646],[22.1460534,38.6625915],[22.146041,38.6635194],[22.1461172,38.6636828],[22.1461107,38.663935],[22.1463005,38.6641542],[22.1463753,38.6643717],[22.1463426,38.6647496],[22.1464767,38.6648959],[22.1465382,38.6651852],[22.1469687,38.6654263],[22.1470443,38.6656168],[22.1470313,38.6661212],[22.1469036,38.6666147],[22.1465786,38.6671863],[22.1464908,38.6674687],[22.145731,38.6688533],[22.1455452,38.669373],[22.1455039,38.6700842],[22.1456987,38.6709974],[22.145749,38.671719],[22.1456799,38.6721685],[22.145149,38.6727007],[22.1451311,38.672768],[22.1449454,38.6734634],[22.1447246,38.6740005],[22.1445246,38.6741776],[22.1439078,38.6744742],[22.1438713,38.6749962],[22.1432988,38.6757981],[22.1432647,38.6762301],[22.1436684,38.6770655],[22.1436543,38.6771644],[22.1434792,38.6772697],[22.1434145,38.677548],[22.1430398,38.6781188],[22.1430795,38.6783627],[22.1430073,38.6784877],[22.1431536,38.6794992],[22.1428701,38.6806841],[22.1431529,38.6808598],[22.1436084,38.6810292],[22.1439963,38.6811435],[22.1441126,38.6810913],[22.144204,38.6811108]]},{"id":17883,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0391\u03c1\u03c4\u03bf\u03c4\u03af\u03bd\u03b1-\u039c\u03bf\u03c5\u03c3\u03bf\u03c5\u03bd\u03b9\u03c4\u03c3\u03b9\u03ce\u03c4\u03b9\u03ba\u03b7 \u0394\u03b9\u03b1\u03c3\u03ad\u03bb\u03b1-\u0391\u03b8\u03b1\u03bd. \u0394\u03b9\u03ac\u03ba\u03bf\u03c2","description_GR":"\u0388\u03bd\u03b1\u03c2 \u03b5\u03ba\u03c0\u03bb\u03b7\u03ba\u03c4\u03b9\u03ba\u03cc\u03c2 \u03b4\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03c9\u03bd \u0392\u03b1\u03c1\u03b4\u03bf\u03c5\u03c3\u03af\u03c9\u03bd","path":"STEREA\/Sterea_Vardousia_Artotina_MousDiasela_Diakos","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":19215,"name_EN":"Vardousia: Artotina-Mousounitsiotiki Diasela-Athan. Diakos","description_EN":"An exceptional crossing of Mt. Vardousia","ascent_time":725,"descent_time":670,"marker":"No_marks","level":11,"ascent":1308,"descent":1425,"maxelev":1980,"minelev":973,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.03649 38.69116,22.17668 38.71216)","views":42,"millestones":"0,22.0368303,38.6998519#1,22.0445050,38.6977972#2,22.0513263,38.6949913#3,22.0576787,38.6902706#4,22.0666756,38.6901251#5,22.0777330,38.6899584#6,22.0850314,38.6905194#7,22.0923881,38.6927202#8,22.0960349,38.6969418#9,22.1009328,38.7024165#10,22.1065268,38.7081986#11,22.1116047,38.7110398#12,22.1190773,38.7064125#13,22.1236437,38.7044844#14,22.1314978,38.7017022#15,22.1403570,38.6996511#16,22.1488548,38.6997156#17,22.1589074,38.7004721#18,22.1691121,38.6997340#19.2,22.1764783,38.6991265","x":22.1029373,"y":38.7042593,"coor":[[22.0368303,38.6998519],[22.03726,38.6996969],[22.0375121,38.6993047],[22.0375985,38.6990899],[22.0375688,38.6984947],[22.0377219,38.6983485],[22.0380572,38.6982821],[22.0381652,38.698392],[22.0385965,38.6985975],[22.0388319,38.6985834],[22.0391241,38.6984081],[22.0392788,38.6982981],[22.0393351,38.6982495],[22.0403061,38.698482],[22.0404742,38.6982731],[22.0411611,38.6979602],[22.0415179,38.6979482],[22.0416843,38.6979194],[22.0419311,38.6977253],[22.0424651,38.697536],[22.0429036,38.6974803],[22.04301,38.6973739],[22.0430836,38.6976275],[22.0431391,38.6977005],[22.0432425,38.6977022],[22.0432496,38.6978645],[22.0433408,38.6978931],[22.0436125,38.6976273],[22.0437149,38.6976651],[22.0438215,38.6979732],[22.0440203,38.6978504],[22.0441348,38.6978703],[22.0441758,38.6980512],[22.0442668,38.6980888],[22.0443301,38.6978736],[22.044506,38.697854],[22.0444994,38.6975701],[22.0446638,38.6975503],[22.0448471,38.6974813],[22.0449779,38.6973213],[22.0450699,38.6973228],[22.0451662,38.6971622],[22.0460358,38.6973209],[22.0462906,38.6972531],[22.0463647,38.6970651],[22.0461412,38.6968271],[22.0462099,38.6964138],[22.0464237,38.696165],[22.0466812,38.6959981],[22.0466998,38.6957371],[22.0470563,38.6953106],[22.0471424,38.6951048],[22.0472463,38.6950885],[22.0474023,38.6948478],[22.0478293,38.6947919],[22.0484022,38.694441],[22.0489462,38.6943059],[22.0490171,38.694235],[22.0493005,38.6943839],[22.0496155,38.694218],[22.0496641,38.6941197],[22.0498466,38.6941768],[22.050003,38.6943416],[22.0500436,38.6945405],[22.0499255,38.6946557],[22.0500505,38.6947118],[22.0501603,38.6949029],[22.0509244,38.6947084],[22.0511657,38.6947124],[22.0511381,38.6948831],[22.0512051,38.6949563],[22.0516386,38.6950807],[22.0521468,38.6949991],[22.0524385,38.6948417],[22.0526434,38.6949172],[22.0527907,38.6948656],[22.0529019,38.6948449],[22.0530122,38.695018],[22.0532295,38.6950576],[22.0534046,38.6949614],[22.0536215,38.6950191],[22.0539038,38.6948526],[22.0540737,38.6949455],[22.0540943,38.695036],[22.0540119,38.6951067],[22.0546943,38.6949559],[22.054875,38.6946525],[22.0548312,38.6941472],[22.0549862,38.6939425],[22.0550994,38.693584],[22.0549096,38.6929501],[22.0557035,38.6920802],[22.0562644,38.6917472],[22.0566683,38.6912673],[22.0568294,38.691261],[22.0569257,38.6911004],[22.057334,38.6908819],[22.0574218,38.690613],[22.0573677,38.690486],[22.0575636,38.6904712],[22.057841,38.6899893],[22.0580978,38.6898494],[22.0585161,38.6901086],[22.0587015,38.6900576],[22.0595577,38.6903061],[22.0596221,38.6904784],[22.0598255,38.6906079],[22.0603087,38.6905979],[22.0607832,38.6904796],[22.0608321,38.6903723],[22.0607646,38.6903171],[22.060281,38.6903451],[22.060179,38.6902894],[22.060333,38.6901207],[22.0611079,38.6899534],[22.0617512,38.6899731],[22.0622817,38.6899098],[22.0640368,38.690056],[22.064405,38.6900441],[22.0647894,38.6902847],[22.0649833,38.690342],[22.0654938,38.6901702],[22.0672315,38.6901088],[22.0674992,38.6899871],[22.0680403,38.68996],[22.0690255,38.6900934],[22.0698309,38.6900707],[22.0706515,38.6903365],[22.0716283,38.6903527],[22.0724007,38.6902753],[22.0727843,38.6901194],[22.0731425,38.6900532],[22.0737065,38.6900265],[22.0741349,38.6899164],[22.0742881,38.6897748],[22.0751912,38.6895373],[22.0753952,38.6896488],[22.0761505,38.6897784],[22.0764038,38.6897645],[22.0776641,38.6899294],[22.0778688,38.6900139],[22.0779219,38.690177],[22.0782961,38.6903723],[22.0782807,38.6905163],[22.0784138,38.6906987],[22.0789405,38.6907794],[22.0791677,38.6908822],[22.079421,38.6908684],[22.0797526,38.6909369],[22.0798649,38.6911415],[22.0799406,38.6912824],[22.0806426,38.6912579],[22.0810979,38.6914276],[22.0821763,38.6910848],[22.0823085,38.6908707],[22.0820068,38.6909739],[22.0815122,38.6909838],[22.0814791,38.6909292],[22.081919,38.6908193],[22.0822805,38.690627],[22.0828255,38.6900232],[22.0830999,38.6900818],[22.0833546,38.6900139],[22.0836051,38.6896756],[22.0837535,38.689714],[22.0841835,38.6899734],[22.084505,38.6899877],[22.0852662,38.690748],[22.0855893,38.6907173],[22.0858792,38.6906229],[22.0868743,38.6899544],[22.0871415,38.6898506],[22.0876957,38.6897606],[22.0876904,38.6899587],[22.087581,38.6901822],[22.0877373,38.6907885],[22.0876056,38.691417],[22.0876453,38.691652],[22.0877928,38.6917265],[22.0880911,38.6917494],[22.0897297,38.6913887],[22.0902316,38.6915411],[22.0907343,38.6920899],[22.0913252,38.6923519],[22.0919178,38.6925508],[22.0920442,38.6925528],[22.0923131,38.692386],[22.0923752,38.6924005],[22.0923896,38.6927252],[22.0925577,38.6928901],[22.0930502,38.6929612],[22.0934002,38.6927687],[22.0939151,38.6925383],[22.0942795,38.6922379],[22.0944902,38.6925296],[22.0943537,38.6929059],[22.094406,38.693105],[22.0950376,38.6931333],[22.0954951,38.6932218],[22.0960755,38.693015],[22.0963398,38.6930193],[22.0965905,38.6931045],[22.0965886,38.6931766],[22.0962462,38.6935134],[22.0960286,38.6939153],[22.0963653,38.6942272],[22.0965516,38.6945726],[22.0962185,38.6947204],[22.0960873,38.6948984],[22.0960591,38.6950962],[22.0962995,38.6951362],[22.0961271,38.6959984],[22.0962435,38.6963787],[22.095871,38.6974179],[22.0956134,38.6977156],[22.0957013,38.6983027],[22.0957588,38.6983036],[22.0960102,38.6987943],[22.095949,38.6989375],[22.096005,38.6989925],[22.0958134,38.6992777],[22.0959945,38.6993888],[22.0960237,38.6995875],[22.0961504,38.6995805],[22.096193,38.6997074],[22.0963908,38.6996205],[22.0964665,38.6998019],[22.0966015,38.6999122],[22.0965857,38.7000742],[22.0967732,38.7003746],[22.0968135,38.7005915],[22.0970934,38.7008754],[22.0977266,38.7012822],[22.0984112,38.7014825],[22.0988293,38.7017596],[22.0993568,38.7018133],[22.0995092,38.7021401],[22.1000178,38.7020403],[22.1000431,38.7019506],[22.1005153,38.7019222],[22.1007989,38.702071],[22.1011672,38.702059],[22.1009155,38.7024423],[22.1011917,38.7028703],[22.101561,38.7032548],[22.1022394,38.7036893],[22.1022821,38.7038161],[22.1027332,38.7037153],[22.1027692,38.7040943],[22.1029373,38.7042593],[22.1032228,38.704336],[22.1034065,38.7047805],[22.1034135,38.7049518],[22.1032696,38.7051747],[22.1033793,38.7053748],[22.1033684,38.7057891],[22.1036165,38.7059733],[22.1036213,38.7062257],[22.1039414,38.7067355],[22.1043772,38.7067786],[22.1044888,38.7069065],[22.104429,38.7069957],[22.10461,38.7071067],[22.1042739,38.7072319],[22.1045714,38.7072908],[22.1049122,38.7074495],[22.104827,38.7076284],[22.105169,38.707742],[22.1053951,38.7078899],[22.1056135,38.7078934],[22.1056793,38.7080116],[22.106346,38.7080224],[22.1064933,38.7081059],[22.1065683,38.7083144],[22.1067619,38.7083896],[22.1071202,38.7087558],[22.107393,38.7088774],[22.1076682,38.7089089],[22.1081518,38.7093222],[22.1082218,38.7097198],[22.1081656,38.7101063],[22.1085333,38.7105538],[22.1085199,38.7106257],[22.1086531,38.710808],[22.1087856,38.7118915],[22.1091427,38.7123027],[22.1092247,38.7126825],[22.1096542,38.7129688],[22.1098277,38.713368],[22.1102497,38.7129829],[22.1105409,38.7128434],[22.1107451,38.7126485],[22.1109534,38.7121653],[22.1111677,38.7118894],[22.1114395,38.711173],[22.1118274,38.7108548],[22.1118536,38.7102966],[22.1119369,38.7101898],[22.1123024,38.7102858],[22.1124077,38.7102155],[22.112638,38.7097686],[22.1130272,38.709838],[22.1132894,38.7098693],[22.1136552,38.7095147],[22.114105,38.7094679],[22.1142125,38.7093165],[22.1140739,38.7088998],[22.1141577,38.708775],[22.114462,38.7085726],[22.1147492,38.7081447],[22.1154695,38.707868],[22.1157522,38.7076113],[22.116264,38.7069527],[22.116486,38.7068211],[22.1166621,38.7067924],[22.1169452,38.7069727],[22.1173997,38.7067322],[22.1176528,38.7067273],[22.1179545,38.706624],[22.1186301,38.7062925],[22.1188375,38.7062778],[22.119045,38.7064253],[22.119318,38.7063171],[22.1196019,38.7064568],[22.1199477,38.7064263],[22.1199854,38.7063008],[22.1197966,38.7060454],[22.1196581,38.7056287],[22.1197562,38.705396],[22.1201388,38.705276],[22.120722,38.704961],[22.1215351,38.7046497],[22.1220892,38.7045685],[22.1222771,38.7044183],[22.1223651,38.7041314],[22.1225782,38.7039005],[22.1231982,38.703496],[22.1233169,38.7033537],[22.1236866,38.7032876],[22.1238942,38.7028224],[22.1241446,38.702484],[22.1242712,38.702477],[22.1242929,38.7030225],[22.1243855,38.7034385],[22.1242091,38.7035888],[22.1239546,38.7040893],[22.1235665,38.7044165],[22.1236221,38.7044895],[22.124652,38.7042447],[22.1249478,38.7039251],[22.125622,38.7036475],[22.1256485,38.7035128],[22.1254386,38.703185],[22.1255329,38.7030965],[22.126102,38.7028803],[22.1264363,38.7028496],[22.1269758,38.7028853],[22.1271923,38.7029609],[22.127429,38.7031449],[22.1282317,38.7032298],[22.1283476,38.7031956],[22.1282866,38.7028883],[22.1283924,38.7027999],[22.1294445,38.7025824],[22.1300947,38.7027821],[22.1304647,38.7031484],[22.1309866,38.7029765],[22.1311184,38.7027714],[22.1314095,38.7026319],[22.1314464,38.7025424],[22.1313446,38.7020361],[22.131513,38.7017505],[22.1314281,38.7014788],[22.1314557,38.701299],[22.1316664,38.7011582],[22.1320567,38.7010428],[22.132649,38.700818],[22.1329831,38.7007963],[22.1337095,38.7007178],[22.1341878,38.7004551],[22.1348291,38.7005554],[22.1352661,38.7005534],[22.1354751,38.7004756],[22.1357221,38.7002633],[22.1362875,38.7006328],[22.1368005,38.7008031],[22.1369848,38.7007881],[22.1371327,38.7007138],[22.1372312,38.7004631],[22.137324,38.7004285],[22.1387308,38.7007213],[22.1393285,38.7007308],[22.1394596,38.7005526],[22.13932,38.700172],[22.1393807,38.7000468],[22.1394748,38.6999672],[22.1398186,38.7000087],[22.1402521,38.6997002],[22.1406595,38.6995085],[22.1410981,38.6994434],[22.1416178,38.698911],[22.141614,38.6986586],[22.141617,38.6985415],[22.1417331,38.6984983],[22.1429486,38.6986258],[22.1438405,38.6988201],[22.1451522,38.6987869],[22.1454712,38.6989001],[22.1456038,38.6991094],[22.1457126,38.6997104],[22.1458996,38.7000377],[22.1462381,38.7002864],[22.1467838,38.7005293],[22.1469696,38.7004602],[22.147675,38.6998586],[22.1478785,38.6995465],[22.1480186,38.6994676],[22.1485578,38.6995122],[22.1491003,38.6998812],[22.1494664,38.6999501],[22.149899,38.7001191],[22.1503363,38.700108],[22.15099,38.7001724],[22.1518088,38.7005278],[22.1524976,38.7010162],[22.1527494,38.7010653],[22.1531535,38.7009996],[22.153325,38.7010383],[22.1532054,38.7012166],[22.1539663,38.7011385],[22.1544376,38.701146],[22.1548762,38.7010808],[22.1553973,38.7012467],[22.1560727,38.7013655],[22.1563113,38.7014774],[22.1563913,38.7014967],[22.1568738,38.7014863],[22.1571004,38.7012691],[22.157354,38.7012461],[22.157691,38.7011072],[22.1584963,38.7006423],[22.1596467,38.7001738],[22.1599469,38.7001245],[22.1604131,38.7002039],[22.1605092,38.7000432],[22.1610568,38.6997635],[22.1618954,38.6997947],[22.1624581,38.6996414],[22.1628121,38.6997371],[22.1631347,38.6997151],[22.1638222,38.699807],[22.1639618,38.6997461],[22.1641792,38.6997856],[22.1646902,38.7000369],[22.1649583,38.7003474],[22.1658955,38.7005694],[22.166904,38.7006888],[22.1670867,38.7007368],[22.1676444,38.7007095],[22.1681823,38.7003575],[22.1682509,38.700291],[22.1685478,38.7000028],[22.1688839,38.6998999],[22.1694315,38.6995075],[22.1698473,38.6994329],[22.1700175,38.6995257],[22.1701233,38.6994913],[22.1701853,38.699312],[22.1708552,38.6991964],[22.1709255,38.6991434],[22.1711087,38.6991733],[22.1712623,38.6990135],[22.1713646,38.6990602],[22.1714487,38.6989173],[22.1715761,38.6988833],[22.1716508,38.6986592],[22.1717411,38.6987237],[22.1718446,38.6987253],[22.1719039,38.6986541],[22.1719595,38.6987271],[22.172102,38.6985491],[22.1722045,38.6985867],[22.1722521,38.6985244],[22.1724103,38.698635],[22.1726659,38.6985309],[22.172691,38.6984502],[22.1728615,38.6985249],[22.1732013,38.6982779],[22.1734822,38.6985346],[22.1737459,38.6985928],[22.1743227,38.6985207],[22.1747792,38.698654],[22.1747031,38.6987925],[22.1747477,38.6988472],[22.1753573,38.6988252],[22.175567,38.6987879],[22.1761432,38.6991934],[22.1764783,38.6991265]]},{"id":17884,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u039a\u03b1\u03c4. \u039f\u03be\u03c5\u03ac\u03c2-\u0391\u03b8\u03b1\u03bd. \u0394\u03b9\u03ac\u03ba\u03bf\u03c2","description_GR":"\u03a9\u03c1\u03b1\u03af\u03b1 \u03bf\u03c1\u03b5\u03b9\u03bd\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae","path":"STEREA\/Sterea_Vardousia_Oxia_AthDiakos","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":5390,"name_EN":"Vardousia: Oxia ref.-Athanasios Diakos","description_EN":"A nice crestline traverse","ascent_time":780,"descent_time":795,"marker":"No_marks","level":11,"ascent":1210,"descent":1854,"maxelev":1779,"minelev":997,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(21.98124 38.69833,22.17649 38.77382)","views":58,"millestones":"0,21.9813193,38.7708102#1,21.9901969,38.7736251#2,21.9993354,38.7705462#3,22.0095092,38.7687264#4,22.0200480,38.7670114#5,22.0299891,38.7687130#6,22.0367165,38.7617798#7,22.0466920,38.7590044#8,22.0573944,38.7566717#9,22.0637046,38.7512347#10,22.0710848,38.7463952#11,22.0767739,38.7415136#12,22.0867420,38.7401460#13,22.0964869,38.7379443#14,22.1064774,38.7397298#15,22.1125426,38.7330835#16,22.1176578,38.7263248#17,22.1174874,38.7183644#18,22.1161158,38.7106842#19,22.1215920,38.7046409#20,22.1267970,38.7028753#21,22.1350854,38.7005525#22,22.1439460,38.6988043#23,22.1527913,38.7010581#24,22.1630626,38.7001038#5.4,22.1764732,38.6991310","x":22.0984681,"y":38.7377243,"coor":[[21.9813193,38.7708102],[21.9819034,38.7709104],[21.9822834,38.7713134],[21.9828941,38.7712879],[21.9832805,38.7714658],[21.9838524,38.7715928],[21.9842234,38.7719055],[21.9843495,38.7719257],[21.9848162,38.7716995],[21.9851685,38.7718588],[21.9856448,38.7717048],[21.9857943,38.7717074],[21.9860094,38.7718372],[21.9858418,38.7721046],[21.9861526,38.7719884],[21.9864269,38.7720562],[21.9874754,38.7720202],[21.989141,38.7721389],[21.9892772,38.7722044],[21.9895657,38.7725878],[21.9898038,38.772718],[21.9900598,38.7730288],[21.9900793,38.7731552],[21.9901593,38.7731746],[21.9902019,38.773707],[21.9905632,38.7739565],[21.9908043,38.7739787],[21.991607,38.7736771],[21.9919617,38.7733408],[21.9923337,38.773212],[21.9925868,38.7732164],[21.9931884,38.773515],[21.9934295,38.7735372],[21.9937562,38.7733806],[21.9938587,38.7734184],[21.9945196,38.7732496],[21.9948122,38.7730744],[21.9949848,38.7730773],[21.9952424,38.7729196],[21.995462,38.7728873],[21.9956661,38.7729989],[21.9959577,38.7728598],[21.996107,38.7728713],[21.9966408,38.7727183],[21.9969692,38.7724987],[21.9973923,38.7717761],[21.9976124,38.7717258],[21.9980926,38.7714277],[21.9983817,38.7713786],[21.9990331,38.7707229],[21.9997937,38.7702764],[21.9999508,38.7700088],[22.000341,38.769637],[22.0006937,38.7693728],[22.0009248,38.7693407],[22.0011606,38.7691375],[22.0012647,38.7691212],[22.0013539,38.7692219],[22.001459,38.7691696],[22.0016735,38.7693174],[22.0018251,38.7692479],[22.0024021,38.7691947],[22.0028329,38.7694274],[22.0035082,38.7695651],[22.0052968,38.7693974],[22.0058348,38.7690912],[22.0060309,38.7690765],[22.0061214,38.7691321],[22.0068037,38.7690176],[22.007656,38.7689961],[22.0090555,38.7687497],[22.0095396,38.7687219],[22.0101814,38.7688229],[22.010508,38.7686663],[22.0109334,38.7685924],[22.0120242,38.7686831],[22.0132964,38.7684614],[22.0136531,38.7684675],[22.0141527,38.7682958],[22.0147184,38.7678188],[22.0149285,38.7677143],[22.0156927,38.767547],[22.0168598,38.7669632],[22.0178676,38.766728],[22.0179742,38.7666216],[22.0182362,38.7667162],[22.018257,38.7667976],[22.0195054,38.767017],[22.0205878,38.7669993],[22.0211735,38.7670453],[22.0220976,38.7673403],[22.0226489,38.7678001],[22.0228588,38.7679478],[22.0238014,38.7679908],[22.025415,38.7683245],[22.0258212,38.7686197],[22.0262209,38.7687345],[22.0266695,38.7687421],[22.0269867,38.7689277],[22.0271193,38.7691282],[22.0273239,38.7692217],[22.0276557,38.7692904],[22.0281419,38.7691905],[22.0284045,38.769267],[22.0286872,38.769452],[22.0289513,38.7694744],[22.0291378,38.7693875],[22.0292923,38.7692099],[22.0297075,38.7691808],[22.0300694,38.7685742],[22.0307623,38.7680723],[22.0310184,38.7679685],[22.0311384,38.7677903],[22.031265,38.767369],[22.0317633,38.7668277],[22.0321471,38.7663566],[22.0329483,38.7660998],[22.0332188,38.7658881],[22.033446,38.7655766],[22.0341028,38.7651281],[22.0345291,38.7646937],[22.0352341,38.764165],[22.0356716,38.7637398],[22.0363527,38.7628232],[22.036437,38.7622659],[22.0368716,38.7615254],[22.0372075,38.7614499],[22.0376459,38.7609887],[22.0382216,38.7605569],[22.0385376,38.760364],[22.0389212,38.7602262],[22.0393782,38.7599275],[22.0403263,38.7597632],[22.0412955,38.7596714],[22.0417865,38.7593912],[22.0426456,38.7591173],[22.0428691,38.7589408],[22.0435514,38.7588171],[22.0442255,38.7585761],[22.0447311,38.7586026],[22.0450597,38.7587883],[22.045825,38.7589993],[22.0465717,38.7590478],[22.0476178,38.7586689],[22.0479638,38.7586386],[22.0482428,38.7585351],[22.0491256,38.758658],[22.0503745,38.7584356],[22.0510752,38.7584833],[22.0516883,38.7583674],[22.0531682,38.7576892],[22.0536192,38.7576066],[22.0543539,38.7576729],[22.0547264,38.7575169],[22.0550367,38.7575311],[22.0559149,38.7574016],[22.0569263,38.7570219],[22.0572308,38.7568287],[22.0575499,38.7565187],[22.0578156,38.7560546],[22.0581026,38.7552304],[22.058258,38.7550167],[22.0580341,38.7547877],[22.0580275,38.7546074],[22.0584335,38.754488],[22.0584841,38.7543176],[22.0586473,38.7542392],[22.0587241,38.7539522],[22.0588428,38.753819],[22.0592625,38.7536187],[22.0593144,38.7534033],[22.0597463,38.7531762],[22.0598992,38.7530526],[22.0598906,38.7529443],[22.0599731,38.7528736],[22.0603101,38.7527531],[22.0601909,38.7524808],[22.0599882,38.7523152],[22.0599855,38.7519908],[22.0601618,38.7519757],[22.0605315,38.7519188],[22.060869,38.7517802],[22.0618505,38.7516523],[22.0623891,38.7513098],[22.0632402,38.7513239],[22.0644432,38.7510916],[22.0648183,38.7508365],[22.0650221,38.7505335],[22.0655455,38.7503259],[22.0658202,38.749952],[22.0660491,38.7491448],[22.0658288,38.7487808],[22.0657832,38.7483385],[22.0658415,38.7483124],[22.0664102,38.7485561],[22.0666738,38.7485965],[22.0671257,38.7484779],[22.067801,38.7481827],[22.0683663,38.7481289],[22.0689276,38.7477958],[22.069887,38.7476314],[22.0703311,38.7474315],[22.0709213,38.746743],[22.0711409,38.746278],[22.0713042,38.7467583],[22.0716311,38.7465835],[22.0717073,38.7463144],[22.0719106,38.7460294],[22.0719409,38.7457596],[22.0720874,38.7454467],[22.0720192,38.744986],[22.0723313,38.7445046],[22.0724925,38.7440747],[22.0723986,38.7437128],[22.0725789,38.7434274],[22.0725835,38.7432563],[22.0725054,38.7431649],[22.072648,38.742996],[22.0726624,38.7428881],[22.0728743,38.7427114],[22.0729405,38.7423881],[22.0732972,38.742385],[22.0737919,38.7419606],[22.074469,38.7415934],[22.0745299,38.7414682],[22.0749368,38.7413127],[22.0750787,38.7411709],[22.0755856,38.7411432],[22.0763379,38.7414079],[22.0778125,38.7417655],[22.0783004,38.7420168],[22.0786565,38.7420407],[22.0793149,38.7419434],[22.0799755,38.741765],[22.080147,38.7418039],[22.0803916,38.7416908],[22.080534,38.7415309],[22.0807074,38.7414977],[22.0809949,38.7415025],[22.0811579,38.7414331],[22.0813385,38.7415622],[22.0814219,38.7414554],[22.0814784,38.7414924],[22.0815609,38.7414216],[22.081707,38.7415502],[22.0821215,38.7411065],[22.082319,38.7410376],[22.0830722,38.7412662],[22.083962,38.7411186],[22.08501,38.7410818],[22.0853004,38.7409784],[22.0854001,38.7406917],[22.085576,38.7405684],[22.0865032,38.7403133],[22.0870892,38.7399084],[22.087578,38.7397001],[22.0879585,38.7396703],[22.0883128,38.7397572],[22.0887654,38.7396114],[22.0888765,38.7397574],[22.089015,38.7397417],[22.0894371,38.7398747],[22.0896231,38.7398057],[22.0898751,38.7398458],[22.0905819,38.7400916],[22.0912944,38.7401213],[22.0918485,38.7400493],[22.0920311,38.7401063],[22.0921931,38.7400729],[22.0923974,38.7401754],[22.0926957,38.7402073],[22.0933244,38.7399292],[22.0937254,38.7395573],[22.0937051,38.7394578],[22.0944238,38.7392533],[22.0952173,38.7388337],[22.0956471,38.7386785],[22.0960098,38.7384502],[22.0961368,38.7384342],[22.0962661,38.7383282],[22.0964489,38.7379437],[22.0968974,38.737951],[22.0977318,38.7377213],[22.0979611,38.7377521],[22.098274,38.7376671],[22.0984681,38.7377243],[22.0989906,38.7375436],[22.0994644,38.7374612],[22.0998156,38.7372326],[22.1000121,38.7371998],[22.100766,38.7374012],[22.1011408,38.7375875],[22.1014836,38.7376742],[22.1017026,38.7376597],[22.1018602,38.7377884],[22.1024856,38.7380689],[22.1032356,38.738856],[22.1038159,38.7390997],[22.1040289,38.7393104],[22.1052525,38.7395916],[22.1055984,38.7395611],[22.1059861,38.7396935],[22.1060414,38.7397755],[22.1064195,38.7398357],[22.1065283,38.7396393],[22.1068287,38.7395901],[22.1074501,38.7391496],[22.107742,38.7385506],[22.1075808,38.737683],[22.1079538,38.7374998],[22.1082376,38.737207],[22.1082903,38.7369556],[22.1082242,38.7368464],[22.108366,38.7367045],[22.1090889,38.7363378],[22.1091845,38.7362042],[22.1097229,38.7358524],[22.1099989,38.7358569],[22.1103353,38.7357542],[22.1103613,38.7356375],[22.1107235,38.7354271],[22.1111362,38.7350463],[22.1111973,38.7349121],[22.1114277,38.7348978],[22.111627,38.7347569],[22.1117309,38.734308],[22.1120379,38.7340066],[22.1125944,38.7329704],[22.1125616,38.7324653],[22.1124418,38.732211],[22.112631,38.7320159],[22.1126688,38.7318903],[22.1126914,38.7314672],[22.1125953,38.7311863],[22.1126551,38.7306646],[22.1128414,38.7305775],[22.1130189,38.7303912],[22.1135602,38.7303639],[22.1139543,38.7302531],[22.1142185,38.7293923],[22.1148244,38.7290958],[22.1153394,38.7287617],[22.1154227,38.7286549],[22.1156166,38.7282796],[22.115604,38.7278829],[22.1157015,38.7276772],[22.1163084,38.7273446],[22.1168998,38.7267234],[22.1170339,38.7264372],[22.1172207,38.7263321],[22.1174344,38.7264211],[22.1178997,38.7262214],[22.118138,38.7259098],[22.1181422,38.7257477],[22.1179806,38.7253306],[22.1187834,38.7249831],[22.1189261,38.7248052],[22.1189797,38.7245177],[22.1186278,38.7225838],[22.1189886,38.7215443],[22.1189971,38.7212201],[22.1188688,38.7208486],[22.1185732,38.7207177],[22.1185913,38.7204657],[22.1183075,38.7198844],[22.1176692,38.7192254],[22.1174079,38.7186625],[22.1174728,38.7183842],[22.1178783,38.7178321],[22.1179567,38.7174729],[22.1181257,38.7171693],[22.1187415,38.7164944],[22.1185503,38.7163291],[22.1184199,38.7160387],[22.117924,38.7156522],[22.1176733,38.7151256],[22.1175163,38.7149699],[22.1177021,38.7140267],[22.1166278,38.7128921],[22.1165221,38.7120975],[22.1163298,38.7119772],[22.1158151,38.7118698],[22.1157368,38.7117875],[22.1159305,38.7109796],[22.1161203,38.7106763],[22.1164667,38.7102269],[22.1166014,38.7099137],[22.116871,38.7097198],[22.1172873,38.7091948],[22.1177675,38.7088602],[22.1178877,38.7086639],[22.1181435,38.7083391],[22.1181651,38.707952],[22.1181102,38.707852],[22.1177122,38.7076834],[22.1176709,38.7075025],[22.1178002,38.7073965],[22.1183341,38.7072068],[22.1184566,38.7069204],[22.1188072,38.7067098],[22.1190494,38.7064209],[22.1193166,38.7063171],[22.1196004,38.7064568],[22.1199462,38.7064263],[22.119984,38.7063008],[22.1197952,38.7060454],[22.1196566,38.7056287],[22.1197547,38.705396],[22.1201373,38.705276],[22.1207206,38.704961],[22.1215337,38.7046497],[22.1220878,38.7045685],[22.1222757,38.7044183],[22.1223637,38.7041314],[22.1225767,38.7039005],[22.1231968,38.703496],[22.1233155,38.7033537],[22.1236852,38.7032876],[22.1238928,38.7028223],[22.1241431,38.702484],[22.1242698,38.702477],[22.1242911,38.7030225],[22.1243837,38.7034384],[22.1242073,38.7035888],[22.1239528,38.7040893],[22.1235647,38.7044165],[22.1236203,38.7044895],[22.1246502,38.7042447],[22.124946,38.703925],[22.1256202,38.7036475],[22.1256467,38.7035128],[22.1254368,38.703185],[22.1255311,38.7030964],[22.1261002,38.7028803],[22.1264345,38.7028496],[22.126974,38.7028853],[22.1271905,38.7029608],[22.1274272,38.7031448],[22.1282299,38.7032298],[22.1283458,38.7031956],[22.1282848,38.7028882],[22.1283906,38.7027998],[22.1294427,38.7025824],[22.1300929,38.702782],[22.1304629,38.7031484],[22.1309848,38.7029765],[22.1311166,38.7027714],[22.1314077,38.7026318],[22.1314446,38.7025423],[22.1313428,38.7020361],[22.1315112,38.7017504],[22.1314263,38.7014788],[22.1314539,38.701299],[22.1316646,38.7011582],[22.1320587,38.7010383],[22.1326472,38.700818],[22.1329813,38.7007963],[22.1337077,38.7007178],[22.134186,38.7004551],[22.1348273,38.7005554],[22.1352643,38.7005534],[22.1354733,38.7004756],[22.1357203,38.7002633],[22.1362857,38.7006327],[22.1367987,38.7008031],[22.136983,38.700788],[22.1371312,38.7007138],[22.1372297,38.7004631],[22.1373226,38.7004285],[22.1387294,38.7007212],[22.139327,38.7007307],[22.1394581,38.7005526],[22.1393185,38.7001719],[22.1393792,38.7000513],[22.139507,38.6999992],[22.1398865,38.6999963],[22.1405653,38.6995385],[22.1411092,38.699403],[22.1415351,38.6989412],[22.1415914,38.6985456],[22.1417539,38.6984851],[22.142935,38.698612],[22.1438728,38.6988071],[22.1451964,38.6987561],[22.1454585,38.6988503],[22.1456356,38.6991144],[22.1457111,38.6997103],[22.1458982,38.7000377],[22.1462367,38.7002864],[22.1467824,38.7005293],[22.1469681,38.7004601],[22.1476736,38.6998586],[22.1478771,38.6995464],[22.1480171,38.6994676],[22.1485564,38.6995122],[22.1490988,38.6998812],[22.1494688,38.6999276],[22.1498976,38.7001191],[22.1503348,38.700108],[22.1509886,38.7001724],[22.1518074,38.7005277],[22.1524962,38.7010162],[22.1527479,38.7010652],[22.1531521,38.7009995],[22.1533236,38.7010383],[22.153204,38.7012166],[22.1539649,38.7011385],[22.1544362,38.701146],[22.1548748,38.7010808],[22.1554113,38.7012334],[22.1560713,38.7013655],[22.156305,38.7014863],[22.1563944,38.7015012],[22.156872,38.7014862],[22.1570982,38.7012691],[22.1573518,38.701246],[22.1576888,38.7011072],[22.1584942,38.7006423],[22.1596446,38.7001738],[22.1599448,38.7001245],[22.160411,38.7002039],[22.1611204,38.7005079],[22.1615935,38.7004433],[22.162463,38.7001686],[22.1633508,38.7000744],[22.1638201,38.699807],[22.1639596,38.6997461],[22.1641771,38.6997855],[22.1646881,38.7000368],[22.1649561,38.7003474],[22.1658815,38.7005827],[22.1669034,38.7006843],[22.1670839,38.7007367],[22.1676408,38.7007094],[22.1685112,38.7003987],[22.1688803,38.6998998],[22.1694286,38.6995074],[22.1698445,38.6994329],[22.1700146,38.6995256],[22.17012,38.6994912],[22.1701821,38.699312],[22.170852,38.6991963],[22.1709223,38.6991434],[22.1711055,38.6991733],[22.1712591,38.6990135],[22.1713614,38.6990601],[22.1714455,38.6989173],[22.1715728,38.6988832],[22.1716475,38.6986591],[22.1717379,38.6987236],[22.1718413,38.6987252],[22.1719006,38.6986541],[22.1719563,38.698727],[22.1720988,38.698549],[22.1722013,38.6985867],[22.1722489,38.6985243],[22.1724071,38.6986349],[22.1726627,38.6985308],[22.1726877,38.6984501],[22.1728583,38.6985249],[22.173198,38.6982779],[22.173479,38.6985346],[22.173743,38.6985927],[22.1743198,38.6985207],[22.1747732,38.6986494],[22.1747006,38.6987924],[22.1747452,38.6988472],[22.1753553,38.6988207],[22.1755642,38.6987879],[22.1761403,38.6991933],[22.1764732,38.699131]]},{"id":17885,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0391\u03b8\u03b1\u03bd. \u0394\u03b9\u03ac\u03ba\u03bf\u03c2-\u039a\u03cc\u03c1\u03b1\u03ba\u03b1\u03c2","description_GR":"\u0397 \u03ba\u03bb\u03b1\u03c3\u03b9\u03ba\u03ae \u03b1\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03c9\u03bd \u0392\u03b1\u03c1\u03b4\u03bf\u03c5\u03c3\u03af\u03c9\u03bd","path":"STEREA\/Sterea_Vardousia_Korakas","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":8093,"name_EN":"Vardousia: Athan. Diakos-Korakas summit","description_EN":"The clasisic ascent to the range summit","ascent_time":345,"descent_time":250,"marker":"Red_dots","level":9,"ascent":1489,"descent":38,"maxelev":2466,"minelev":997,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.13051 38.68122,22.17693 38.70108)","views":108,"millestones":"0,22.1764783,38.6991265#1,22.1676709,38.7006955#2,22.1572684,38.7012539#3,22.1474225,38.7000762#4,22.1387712,38.6997840#5,22.1337233,38.6929171#6,22.1318871,38.6852124#7,22.1404423,38.6850492#8.1,22.1442055,38.6811108","x":22.1363427,"y":38.6984621,"coor":[[22.1764783,38.6991265],[22.1761432,38.6991934],[22.175567,38.6987879],[22.175357,38.6988252],[22.174747,38.6988472],[22.1747024,38.6987925],[22.1747781,38.698654],[22.1743216,38.6985207],[22.1737448,38.6985928],[22.1734808,38.6985346],[22.1731998,38.6982779],[22.1728601,38.6985249],[22.1726895,38.6984501],[22.1726645,38.6985308],[22.1724088,38.698635],[22.1722507,38.6985244],[22.1722031,38.6985867],[22.1721006,38.6985491],[22.1719581,38.698727],[22.1719024,38.6986541],[22.1718431,38.6987252],[22.1717397,38.6987236],[22.1716493,38.6986591],[22.1715746,38.6988832],[22.1714473,38.6989173],[22.1713632,38.6990602],[22.1712609,38.6990135],[22.1711073,38.6991733],[22.1709241,38.6991434],[22.1708538,38.6991964],[22.1701839,38.699312],[22.1701218,38.6994913],[22.1700164,38.6995257],[22.1698463,38.6994329],[22.1694304,38.6995075],[22.1688821,38.6998999],[22.168546,38.7000027],[22.1681849,38.700371],[22.1676426,38.7007094],[22.1670853,38.7007367],[22.1669025,38.7006888],[22.1658937,38.7005694],[22.1649565,38.7003474],[22.1646884,38.7000368],[22.1641774,38.6997855],[22.16396,38.6997461],[22.1638204,38.699807],[22.1633493,38.7000744],[22.1624615,38.7001686],[22.1623151,38.7002158],[22.1615921,38.7004432],[22.161119,38.7005079],[22.1604113,38.7002039],[22.1599455,38.7001245],[22.1596453,38.7001738],[22.1584949,38.7006423],[22.1576895,38.7011072],[22.1573525,38.701246],[22.1570989,38.7012691],[22.1568724,38.7014863],[22.1563906,38.7014967],[22.1563106,38.7014774],[22.156072,38.7013655],[22.1553966,38.7012467],[22.1548752,38.7010808],[22.1544365,38.701146],[22.1539653,38.7011385],[22.1532043,38.7012166],[22.1533239,38.7010383],[22.1531524,38.7009995],[22.1527483,38.7010652],[22.1524966,38.7010162],[22.1518077,38.7005277],[22.150989,38.7001724],[22.1503352,38.700108],[22.149898,38.7001191],[22.1494654,38.69995],[22.1490992,38.6998812],[22.1485568,38.6995122],[22.1480175,38.6994676],[22.1478775,38.6995465],[22.1476739,38.6998586],[22.1469685,38.7004602],[22.1467827,38.7005293],[22.1462371,38.7002864],[22.1458985,38.7000377],[22.1457115,38.6997104],[22.1456031,38.6991094],[22.1454705,38.6989001],[22.1451514,38.6987869],[22.1438398,38.6988201],[22.1429479,38.6986257],[22.1417324,38.6984983],[22.1416163,38.6985415],[22.1416132,38.6986586],[22.1416168,38.698911],[22.1410971,38.6994433],[22.1406584,38.6995084],[22.140251,38.6997002],[22.1398176,38.7000087],[22.1394737,38.6999672],[22.1393796,38.7000468],[22.1391664,38.6998451],[22.1387655,38.6997847],[22.1380167,38.6993943],[22.1376491,38.6989379],[22.1373167,38.6988966],[22.137171,38.6987501],[22.1363427,38.6984621],[22.1360253,38.6983309],[22.1359155,38.6981309],[22.1357222,38.6980467],[22.1355554,38.6978278],[22.1356265,38.6977478],[22.1355467,38.6977195],[22.1355854,38.6975579],[22.1354397,38.6974114],[22.1353773,38.6971581],[22.1352068,38.6970833],[22.1351655,38.6969025],[22.1348401,38.6965909],[22.1348216,38.6964194],[22.134743,38.6963461],[22.1345486,38.6963069],[22.1344704,38.6953325],[22.1343909,38.6952952],[22.1342504,38.6949506],[22.1342665,38.6947706],[22.1342224,38.6946978],[22.1341178,38.6947412],[22.1338793,38.6946293],[22.1339091,38.6943684],[22.1336304,38.693589],[22.1337391,38.6931673],[22.1337076,38.6926081],[22.1336794,38.6921436],[22.1333067,38.6918854],[22.1329509,38.6914201],[22.132365,38.6909602],[22.1323608,38.6906808],[22.1321187,38.6902625],[22.132126,38.6899833],[22.1319921,38.6898279],[22.131621,38.6890651],[22.1316984,38.688742],[22.1315406,38.6886223],[22.1312974,38.688249],[22.1313356,38.6881054],[22.1312502,38.6878517],[22.1310994,38.6879034],[22.1309964,38.6878837],[22.1308881,38.6876297],[22.1308796,38.6870709],[22.1311575,38.6865527],[22.1310766,38.6864478],[22.1309526,38.6862566],[22.1311081,38.6860248],[22.1312836,38.6858654],[22.131444,38.6854445],[22.1316679,38.6852318],[22.131849,38.6852031],[22.132009,38.6852417],[22.1322435,38.6850653],[22.1325317,38.6850338],[22.1327601,38.6850915],[22.1335113,38.6849413],[22.1346618,38.6850859],[22.1348942,38.6849905],[22.1352481,38.6850862],[22.1354332,38.6850441],[22.1361837,38.6853624],[22.1365345,38.6855753],[22.136808,38.6856697],[22.1369234,38.6856536],[22.1373368,38.685935],[22.1374404,38.6859276],[22.1377129,38.6860581],[22.137886,38.6860338],[22.1378881,38.6859528],[22.1380586,38.6860276],[22.1382092,38.6859849],[22.1382765,38.6860491],[22.1382807,38.6858869],[22.1386672,38.6860553],[22.1387955,38.6859852],[22.1387993,38.6862826],[22.1390151,38.6863852],[22.1390573,38.68653],[22.1392203,38.6864515],[22.1393561,38.6865348],[22.1395761,38.6864752],[22.1396567,38.686026],[22.1398944,38.6857234],[22.1399111,38.6855254],[22.1404408,38.6850473],[22.1406431,38.6847802],[22.1405917,38.6845451],[22.1397239,38.6834319],[22.139683,38.6832331],[22.1398096,38.6827845],[22.1400312,38.6826619],[22.1409294,38.6826041],[22.1413916,38.6825123],[22.1418338,38.6823031],[22.1419694,38.6822692],[22.1421176,38.6818751],[22.1419637,38.6816023],[22.1420136,38.6814499],[22.1423782,38.6811314],[22.1425275,38.6806922],[22.1428715,38.6806841],[22.1431544,38.6808598],[22.1436098,38.6810293],[22.1439977,38.6811436],[22.144114,38.6810913],[22.1442055,38.6811108]]},{"id":17886,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0391\u03b8\u03b1\u03bd. \u0394\u03b9\u03ac\u03ba\u03bf\u03c2-\u039a\u03bf\u03c0\u03c1\u03b9\u03c3\u03b9\u03ad\u03c2-\u039a\u03cc\u03c1\u03b1\u03ba\u03b1\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u039a\u03cc\u03c1\u03b1\u03ba\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03c9\u03bd \u039a\u03bf\u03c0\u03c1\u03b9\u03c3\u03b9\u03ce\u03bd","path":"STEREA\/Sterea_Vardousia_Koprisies","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":2880,"name_EN":"Vardousia: Ascent to Korakas via Koprisies","description_EN":"To the summit via the Koprisies valley","ascent_time":265,"descent_time":190,"marker":"No_marks","level":12,"ascent":1499,"descent":41,"maxelev":2466,"minelev":997,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.14126 38.68122,22.17693 38.70126)","views":68,"millestones":"0,22.1764764,38.6991310#1,22.1677125,38.7006899#2,22.1573131,38.7012500#3,22.1474610,38.7000455#4,22.1483523,38.6944093#5,22.1491547,38.6889948#2.9,22.1442080,38.6811108","x":22.1463952,"y":38.6966395,"coor":[[22.1764764,38.699131],[22.1761435,38.6991934],[22.1755674,38.6987879],[22.1753585,38.6988207],[22.1747484,38.6988472],[22.1747038,38.6987925],[22.1747764,38.6986494],[22.1743234,38.6985207],[22.1737466,38.6985928],[22.1734826,38.6985346],[22.1732016,38.6982779],[22.1728619,38.6985249],[22.1726913,38.6984502],[22.1726663,38.6985309],[22.1724106,38.698635],[22.1722525,38.6985244],[22.1722049,38.6985867],[22.1721024,38.6985491],[22.1719599,38.6987271],[22.1719042,38.6986541],[22.1718449,38.6987253],[22.1717415,38.6987237],[22.1716511,38.6986592],[22.1715764,38.6988833],[22.1714491,38.6989173],[22.171365,38.6990602],[22.1712627,38.6990135],[22.1711091,38.6991733],[22.1709259,38.6991434],[22.1708555,38.6991964],[22.1701857,38.699312],[22.1701236,38.6994913],[22.1700178,38.6995257],[22.1698477,38.6994329],[22.1694319,38.6995075],[22.1688839,38.6998999],[22.1685147,38.7003987],[22.1676444,38.7007095],[22.1670871,38.7007368],[22.1669066,38.7006844],[22.1658847,38.7005827],[22.1649593,38.7003475],[22.1646913,38.7000369],[22.1641803,38.6997856],[22.1639628,38.6997461],[22.1638233,38.699807],[22.1633508,38.7000744],[22.162463,38.7001686],[22.1615935,38.7004433],[22.1611204,38.7005079],[22.1604142,38.7002039],[22.1599484,38.7001245],[22.1596482,38.7001739],[22.1584978,38.7006423],[22.1576924,38.7011072],[22.1573554,38.7012461],[22.1571018,38.7012691],[22.1568753,38.7014863],[22.1563977,38.7015013],[22.1563086,38.7014864],[22.1560745,38.7013655],[22.1554146,38.7012335],[22.154878,38.7010808],[22.1544394,38.701146],[22.1539681,38.7011386],[22.1532072,38.7012167],[22.1533268,38.7010383],[22.1531553,38.7009996],[22.1527512,38.7010653],[22.1524994,38.7010162],[22.1518106,38.7005278],[22.1509918,38.7001724],[22.1503381,38.700108],[22.1499008,38.7001191],[22.1494724,38.6999276],[22.1491021,38.6998812],[22.1485596,38.6995122],[22.1480204,38.6994676],[22.1478803,38.6995465],[22.1476768,38.6998586],[22.1469714,38.7004602],[22.1467856,38.7005293],[22.1462399,38.7002864],[22.1459014,38.7000378],[22.1457144,38.6997104],[22.1456389,38.6991145],[22.1460145,38.6989132],[22.1461179,38.6984733],[22.146248,38.6983312],[22.1468757,38.6980708],[22.1472219,38.6980223],[22.1465682,38.6975073],[22.1464621,38.6971632],[22.1463952,38.6966395],[22.1464622,38.6962711],[22.146838,38.6955202],[22.1471767,38.6953183],[22.1473835,38.6953216],[22.1477776,38.6952017],[22.1477105,38.6951285],[22.1477942,38.6950037],[22.1477756,38.6948322],[22.147966,38.6945829],[22.1481529,38.6944688],[22.1490798,38.6941951],[22.149204,38.6938366],[22.1498954,38.6937755],[22.1501122,38.693842],[22.1504354,38.693793],[22.1504398,38.6936219],[22.1506025,38.6935524],[22.1506637,38.6934092],[22.1505665,38.6931644],[22.1505645,38.6927949],[22.1506342,38.692769],[22.150591,38.6926601],[22.1504442,38.6925587],[22.1504714,38.6919464],[22.1503318,38.6915657],[22.1501865,38.6914013],[22.1498992,38.6913967],[22.1496942,38.6913214],[22.1494598,38.6910473],[22.1492778,38.6909724],[22.1491744,38.6909707],[22.1491146,38.6910599],[22.1491859,38.6909709],[22.1488673,38.6908397],[22.1488129,38.6907217],[22.1484842,38.6905363],[22.1485206,38.6904648],[22.1487054,38.6904317],[22.1489226,38.6904802],[22.149488,38.690399],[22.1495998,38.6900764],[22.1495001,38.6899307],[22.1492956,38.6898373],[22.1492202,38.6896379],[22.1494087,38.6894606],[22.1493697,38.6891897],[22.1490664,38.6889146],[22.1489573,38.6886876],[22.1487518,38.6886303],[22.1484131,38.6883906],[22.148392,38.6883182],[22.1485437,38.6882305],[22.1485823,38.6880689],[22.1483619,38.6872545],[22.1480115,38.6870236],[22.1479003,38.6868777],[22.1474103,38.6867078],[22.1470484,38.6864767],[22.146905,38.6862402],[22.146711,38.6861831],[22.1460493,38.6855418],[22.1455052,38.6852448],[22.1452992,38.6852055],[22.1450775,38.6848866],[22.1448153,38.6848014],[22.1446364,38.6846093],[22.1445559,38.684608],[22.1440601,38.6842217],[22.1436695,38.683765],[22.1434976,38.6837442],[22.1432938,38.6836239],[22.1432056,38.6834783],[22.1430227,38.6834393],[22.1428495,38.6830221],[22.1427245,38.682966],[22.1422949,38.6831304],[22.1421028,38.6830012],[22.1418505,38.6829792],[22.1418209,38.6827895],[22.1417418,38.6827342],[22.1418215,38.6823209],[22.1419723,38.6822693],[22.1421204,38.6818751],[22.1419666,38.6816024],[22.1420165,38.68145],[22.1423811,38.6811314],[22.1425304,38.6806922],[22.142874,38.6806842],[22.1431569,38.6808599],[22.1436123,38.6810293],[22.1440002,38.6811436],[22.1441165,38.6810914],[22.144208,38.6811108]]},{"id":17887,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0391\u03ba\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u039a\u03b1\u03bb\u03bb\u03af\u03c0\u03bf\u03bb\u03b7\u03c2","description_GR":"\u0395\u03cd\u03ba\u03bf\u03bb\u03b7 \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03be\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03b8\u03ad\u03c3\u03b7","path":"STEREA\/Sterea_Vardousia_Kallipoli_acropolis","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":1121,"name_EN":"Vardousia Mt: Acropolis of Kallipolis","description_EN":"An easy ascent to the prominent site","ascent_time":20,"descent_time":20,"marker":"No_marks","level":12,"ascent":136,"descent":21,"maxelev":597,"minelev":480,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(22.15863 38.54654,22.16103 38.55213)","views":18,"millestones":"0,22.1587761,38.5521344#1.1,22.1602438,38.5485486","x":22.1598598,"y":38.5474387,"coor":[[22.1587761,38.5521344],[22.1588844,38.5519379],[22.1597069,38.5516354],[22.1600732,38.5512177],[22.1604105,38.5510428],[22.1604004,38.5509885],[22.1601379,38.5509303],[22.1598255,38.550583],[22.1589813,38.549939],[22.1587964,38.5495396],[22.1587065,38.5490155],[22.1590575,38.5487507],[22.1594379,38.5482341],[22.1595629,38.5478305],[22.1598598,38.5474387],[22.159935,38.5471876],[22.1601116,38.5470102],[22.1601878,38.546723],[22.1603764,38.5465277],[22.1607544,38.5465517],[22.1610274,38.5466461],[22.1609207,38.5467796],[22.1606904,38.546812],[22.160756,38.5469392],[22.1608147,38.5469717],[22.1603554,38.5478836],[22.1603642,38.5479918],[22.1602438,38.5485486]]},{"id":17888,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u039c\u03bf\u03c5\u03c3\u03bf\u03c5\u03bd\u03af\u03c4\u03c3\u03b1-\u039a\u03cc\u03c1\u03b1\u03ba\u03b1\u03c2 \u03bc\u03ad\u03c3\u03c9 \u0391\u03c3\u03b1\u03bd\u03c3\u03ad\u03c1","description_GR":"\u039c\u03b9\u03b1 \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03ae \u03b1\u03bb\u03c0\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1","path":"STEREA\/Sterea_Vardousia_Mousounitsa_Ascenseur","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":9516,"name_EN":"Vardousia: Mousounitsa- Korakas summit via the Ascenseur","description_EN":"An alpine hike in a wild scenery","ascent_time":420,"descent_time":315,"marker":"No_marks","level":11,"ascent":1620,"descent":30,"maxelev":2466,"minelev":838,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.14272 38.67551,22.19207 38.68668)","views":57,"millestones":"0,22.1917735,38.6873437#1,22.1819699,38.6841859#2,22.1798897,38.6804010#3,22.1765218,38.6764057#4,22.1731612,38.6774117#5,22.1712299,38.6785037#6,22.1641586,38.6797534#7,22.1580368,38.6814107#8,22.1508332,38.6751756#9,22.1431544,38.6794396#9.5,22.1442055,38.6811108","x":22.1717791,"y":38.6784905,"coor":[[22.1917735,38.6873437],[22.1910267,38.6873231],[22.1900125,38.6874246],[22.1894493,38.6874159],[22.1893131,38.6872471],[22.189075,38.6871172],[22.188675,38.6870209],[22.1884405,38.686747],[22.1882474,38.6866539],[22.1878102,38.6866651],[22.1874499,38.6868217],[22.1869498,38.6868635],[22.18606,38.6865884],[22.1856315,38.6862574],[22.1852416,38.6857647],[22.1843127,38.6852187],[22.1835949,38.6849642],[22.1829543,38.6848371],[22.1820842,38.6842379],[22.1818797,38.6841446],[22.1812839,38.6840633],[22.1808104,38.6836955],[22.1804459,38.6835637],[22.179732,38.6836066],[22.1787259,38.6838432],[22.1780695,38.6838871],[22.177722,38.6839898],[22.1773901,38.6839306],[22.1771422,38.6836744],[22.1777163,38.6832508],[22.1778836,38.6830011],[22.1779019,38.6822805],[22.1775672,38.6818789],[22.1780949,38.6819231],[22.1788776,38.6818813],[22.1792536,38.6815627],[22.1797802,38.6807419],[22.1799545,38.680213],[22.1796363,38.6791628],[22.1797162,38.6787315],[22.1804877,38.6777704],[22.1800924,38.6774939],[22.1795463,38.6772691],[22.1792792,38.6769226],[22.1784849,38.6765137],[22.178222,38.6764556],[22.1773947,38.6764427],[22.1771329,38.6763395],[22.1769532,38.6761745],[22.1763492,38.6759668],[22.1754856,38.6760254],[22.1750957,38.6759923],[22.1750711,38.676055],[22.1751616,38.6761105],[22.176125,38.6761976],[22.1763759,38.6762736],[22.1772521,38.6770802],[22.1775233,38.6772646],[22.1780923,38.6774898],[22.178159,38.6775809],[22.1780664,38.6776065],[22.1777593,38.6774756],[22.1772101,38.6773769],[22.1759474,38.6768526],[22.1753853,38.6768078],[22.1746251,38.676868],[22.1735241,38.6767697],[22.1734545,38.6767957],[22.1734871,38.6768683],[22.1740474,38.6769851],[22.1746399,38.6771926],[22.1753042,38.6772841],[22.1753488,38.6773389],[22.1746121,38.6773814],[22.1739461,38.677353],[22.1732433,38.6774141],[22.1726461,38.6773958],[22.1721549,38.677271],[22.1721533,38.677334],[22.1723225,38.6774628],[22.1733835,38.6777767],[22.1733702,38.6778486],[22.1731861,38.6778548],[22.1720656,38.677621],[22.1717031,38.6774081],[22.1710863,38.6768037],[22.1709043,38.6767288],[22.1705706,38.6767416],[22.1699442,38.6769661],[22.1699538,38.6770383],[22.1704029,38.6770093],[22.1707784,38.6771593],[22.1710854,38.6777408],[22.1714977,38.6782519],[22.1717791,38.6784905],[22.1723922,38.6787885],[22.1721854,38.6787852],[22.1715001,38.6786123],[22.1711018,38.6784529],[22.1705029,38.6780471],[22.1703195,38.6780262],[22.170168,38.6781049],[22.1696482,38.6786554],[22.1690787,38.6792683],[22.1686076,38.6794727],[22.1684138,38.6794921],[22.1678062,38.67937],[22.1675918,38.6792134],[22.1673036,38.6787944],[22.1671455,38.6795849],[22.1669561,38.6797982],[22.1668408,38.6798144],[22.1667732,38.6797593],[22.1665392,38.6799178],[22.1663889,38.680402],[22.1657873,38.6805548],[22.1651998,38.6805996],[22.1646267,38.6805366],[22.1645019,38.6804715],[22.1645001,38.6800931],[22.1646648,38.6799425],[22.1645927,38.6796169],[22.1641524,38.6797542],[22.1636688,38.6797827],[22.1637456,38.6794775],[22.1636155,38.6791691],[22.1625915,38.6796576],[22.162568,38.6792247],[22.1624056,38.6788347],[22.1621243,38.6790465],[22.1619505,38.6790979],[22.161957,38.6788457],[22.1618042,38.6785279],[22.1617095,38.6786345],[22.1615413,38.6784697],[22.1612099,38.6788429],[22.1611577,38.6786349],[22.1608164,38.6789449],[22.1606537,38.6790144],[22.1604933,38.6789939],[22.160212,38.6792057],[22.1598075,38.6792894],[22.1595374,38.6795104],[22.1592345,38.6801184],[22.1593193,38.6803991],[22.1591763,38.6805951],[22.1586012,38.6810546],[22.1584684,38.6813048],[22.158153,38.6814981],[22.1580395,38.6814422],[22.1580216,38.6812437],[22.1578198,38.6810423],[22.1574005,38.6808104],[22.1561746,38.6806469],[22.1556874,38.6803689],[22.1556112,38.6802055],[22.1551541,38.6800992],[22.1547143,38.6797678],[22.1542392,38.6795801],[22.1540394,38.6791895],[22.1537035,38.6788418],[22.1529539,38.6771449],[22.1526964,38.6768796],[22.1516445,38.6762142],[22.1510595,38.6757183],[22.1508461,38.6751878],[22.15049,38.6748578],[22.1498562,38.6749199],[22.1494355,38.6750213],[22.1475183,38.67582],[22.1463384,38.6761076],[22.1462322,38.6762141],[22.1462025,38.6764749],[22.1460204,38.6768505],[22.1457721,38.6771169],[22.1454338,38.6773097],[22.1446808,38.6775321],[22.1438434,38.6774647],[22.143416,38.677548],[22.1430413,38.6781188],[22.143081,38.6783627],[22.1430087,38.6784877],[22.143155,38.6794992],[22.1428715,38.6806841],[22.1431544,38.6808598],[22.1436098,38.6810293],[22.1439977,38.6811436],[22.144114,38.6810913],[22.1442055,38.6811108]]},{"id":17889,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0394\u03ac\u03c6\u03bd\u03b7-\u03a3\u03c4\u03b1\u03c5\u03c1\u03cc\u03c2","description_GR":"\u0394\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u0392\u03bf\u03c5\u03bd\u03bf\u03cd \u03c4\u03b7\u03c2 \u03a7\u03c9\u03bc\u03ae\u03c1\u03b9\u03b1\u03bd\u03b7\u03c2","path":"STEREA\/Sterea_Vardousia_Dafni_Stavros","activity_type":33,"assistance":1,"difficulty":2,"scenic_value":4,"length":11497,"name_EN":"Vardousia: Dafni-Stavros","description_EN":"Crossing of the Vouno tis Chomirianis","ascent_time":465,"descent_time":375,"marker":"No_marks","level":13,"ascent":1167,"descent":548,"maxelev":2244,"minelev":1104,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.13016 38.70147,22.15887 38.75662)","views":14,"millestones":"0,22.1575512,38.7527679#1,22.1508424,38.7569169#2,22.1513675,38.7500597#3,22.1478852,38.7449969#4,22.1437902,38.7394358#5,22.1481289,38.7340886#6,22.1538144,38.7323168#7,22.1452755,38.7296414#8,22.1428342,38.7221774#9,22.1364300,38.7153122#10,22.1351879,38.7096200#11.5,22.1320576,38.7010383","x":22.1549832,"y":38.7332598,"coor":[[22.1575512,38.7527679],[22.1574938,38.752357],[22.1571562,38.7520633],[22.1566655,38.7519024],[22.1564296,38.7519032],[22.1556626,38.7521974],[22.15506,38.7524583],[22.1551226,38.752653],[22.155186,38.7528702],[22.1551317,38.7531938],[22.1549114,38.7537039],[22.1547715,38.7537738],[22.1543238,38.7537306],[22.1542063,38.7538279],[22.1540644,38.7544204],[22.1541343,38.754836],[22.1540141,38.7550323],[22.1536632,38.755252],[22.1532569,38.7553898],[22.1529596,38.7557635],[22.1527026,38.7559126],[22.1517646,38.7561411],[22.1515883,38.7562825],[22.1513607,38.7566303],[22.1508759,38.756911],[22.1506909,38.7569441],[22.1505078,38.7569051],[22.1501347,38.7566469],[22.1500856,38.7563218],[22.150164,38.7557914],[22.1502042,38.7554721],[22.1499766,38.7549279],[22.1501364,38.754534],[22.1503249,38.7543657],[22.1509668,38.7539299],[22.1511957,38.7537578],[22.1512464,38.7537],[22.1515855,38.7533675],[22.1517551,38.7530368],[22.1521872,38.7527913],[22.1523711,38.7523527],[22.1522596,38.7522158],[22.1513818,38.7518955],[22.1511067,38.7518551],[22.150971,38.7517629],[22.1509787,38.7514656],[22.1507544,38.7512368],[22.1506901,38.7510556],[22.1507634,38.750444],[22.1508467,38.7503372],[22.151241,38.7502173],[22.1514074,38.7500127],[22.1511871,38.7496308],[22.1509026,38.7495091],[22.1504094,38.7494473],[22.1501743,38.7491912],[22.1501029,38.7488387],[22.1504814,38.7481193],[22.1506322,38.7476261],[22.1504965,38.7475339],[22.1501273,38.7475731],[22.1499152,38.747768],[22.1496708,38.7478722],[22.1489359,38.7478155],[22.1487535,38.7477496],[22.1486894,38.7475593],[22.1488372,38.7471832],[22.148714,38.7466046],[22.1487362,38.7461904],[22.1485792,38.7460348],[22.1480759,38.7459187],[22.1476611,38.7454976],[22.1472632,38.7453111],[22.1473688,38.7452317],[22.1479892,38.7452685],[22.148164,38.7451812],[22.1482025,38.7450286],[22.1481348,38.7449735],[22.1478234,38.7450046],[22.1477095,38.7449577],[22.1478421,38.7447256],[22.1478099,38.7446349],[22.1470762,38.7445332],[22.1461889,38.7441407],[22.1460886,38.7440129],[22.1461482,38.7439328],[22.1465904,38.7437416],[22.1467934,38.7434564],[22.1467842,38.7433662],[22.146648,38.7432919],[22.1460512,38.7432374],[22.145915,38.7431632],[22.1459169,38.7430911],[22.146485,38.7424784],[22.146521,38.7419744],[22.1463854,38.7418821],[22.1457127,38.7420877],[22.1451656,38.7418898],[22.144559,38.7413215],[22.1438026,38.7403183],[22.143642,38.7396355],[22.1440118,38.7391277],[22.1446426,38.7387593],[22.1448202,38.738663],[22.145167,38.7385964],[22.1454261,38.7383663],[22.1456531,38.7375949],[22.1455515,38.7372014],[22.1450941,38.737095],[22.1446927,38.736602],[22.144633,38.7362407],[22.1443332,38.7358214],[22.1442592,38.7355679],[22.1440813,38.7353308],[22.1441399,38.7348452],[22.145409,38.7347031],[22.1457989,38.7347544],[22.146076,38.7347137],[22.1471677,38.7343165],[22.149321,38.733792],[22.1496094,38.7337605],[22.1504341,38.7338997],[22.1514479,38.7338437],[22.1519797,38.733744],[22.1529101,38.7333532],[22.1534857,38.7333352],[22.1538926,38.7331705],[22.1544064,38.7333228],[22.1547964,38.733365],[22.1549832,38.7332598],[22.155141,38.7329379],[22.1553423,38.7327158],[22.156156,38.7323862],[22.1561225,38.7323497],[22.1554781,38.7323575],[22.154607,38.7326772],[22.1538799,38.7323233],[22.1534209,38.73228],[22.1525446,38.7323562],[22.1518464,38.732219],[22.1514937,38.7320693],[22.1506672,38.7315516],[22.1500545,38.7316681],[22.1495026,38.7316593],[22.1487694,38.7315396],[22.1483015,38.731397],[22.1476076,38.7315392],[22.1470814,38.7314227],[22.1464257,38.7314214],[22.1459911,38.7313244],[22.1459217,38.7308502],[22.1460144,38.7308246],[22.1461924,38.7310617],[22.1462175,38.730981],[22.1461401,38.7304121],[22.1461051,38.730308],[22.1456007,38.7297954],[22.1452144,38.729609],[22.1450571,38.7294623],[22.1450832,38.7293456],[22.1447076,38.728745],[22.1440257,38.7279772],[22.1439844,38.7277964],[22.1441963,38.7276105],[22.1440036,38.7274993],[22.1439273,38.7273359],[22.1439679,38.7271023],[22.1438645,38.7266501],[22.1440168,38.7265444],[22.1440785,38.7263832],[22.1439558,38.7262371],[22.1434057,38.7261562],[22.1436759,38.7254937],[22.1436175,38.7241953],[22.1434755,38.7239047],[22.1434074,38.7238675],[22.1431986,38.7239363],[22.1429154,38.7237696],[22.1431459,38.7233047],[22.1431079,38.7229978],[22.1432977,38.7227755],[22.1431219,38.7224573],[22.1427628,38.7221092],[22.1425645,38.7217727],[22.1416596,38.7211816],[22.1412468,38.7206885],[22.1410418,38.7206131],[22.1405103,38.7202623],[22.1403906,38.7199991],[22.1404436,38.7197296],[22.1403841,38.7193592],[22.1400695,38.7190749],[22.1401795,38.7188243],[22.1401382,38.7186434],[22.139291,38.7176027],[22.1387894,38.7174326],[22.1384266,38.7172285],[22.137913,38.7170762],[22.1375315,38.7167097],[22.1371898,38.7161366],[22.1362616,38.7151216],[22.1357855,38.7148527],[22.1353939,38.7144319],[22.135076,38.7142737],[22.1347095,38.7142138],[22.1346544,38.7141228],[22.134459,38.7141197],[22.1343501,38.7138837],[22.1342344,38.7139088],[22.1341901,38.7138451],[22.134264,38.713657],[22.1338956,38.7136692],[22.1339146,38.7133811],[22.1335904,38.713466],[22.1336922,38.7130892],[22.1332535,38.7131543],[22.1331735,38.713135],[22.1331786,38.7129368],[22.1330527,38.7129168],[22.1340736,38.7118563],[22.1341588,38.7116775],[22.1339774,38.7111339],[22.1347882,38.7109126],[22.1347206,38.7108575],[22.1348255,38.7108051],[22.1347307,38.7104702],[22.1348259,38.7103455],[22.13474,38.7101099],[22.1352158,38.7099463],[22.1351806,38.7095312],[22.1354358,38.7094452],[22.1352455,38.7092439],[22.1353159,38.709191],[22.1352598,38.709136],[22.133867,38.7083028],[22.1333661,38.7081056],[22.1333905,38.7080519],[22.1330853,38.7078488],[22.1330872,38.7077768],[22.1327365,38.7075549],[22.1318924,38.7072891],[22.1318823,38.7072349],[22.1314849,38.7070393],[22.1315245,38.7068417],[22.131457,38.7067866],[22.1318417,38.7061439],[22.131856,38.705153],[22.1319414,38.7049651],[22.1325956,38.7041286],[22.1327912,38.7036812],[22.1328405,38.7031143],[22.132357,38.7026921],[22.1323847,38.7025123],[22.1321297,38.7021478],[22.1321083,38.7016428],[22.1321705,38.7014636],[22.1320159,38.7012179],[22.1320576,38.7010383]]},{"id":17890,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u039a\u03bb\u03ae\u03bc\u03b1-\u039a\u03ac\u03bb\u03bb\u03b9\u03bf \u03bc\u03ad\u03c3\u03c9 \u03a0\u03c1\u03c6. \u0397\u03bb\u03af\u03b1","description_GR":"\u0388\u03bd\u03b1\u03c2 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03b4\u03b9\u03b1\u03c3\u03ba\u03b5\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2 \u03bc\u03b5 \u03c9\u03c1\u03b1\u03af\u03b1 \u03b8\u03ad\u03b1","path":"STEREA\/Sterea_Vardousia_Klima_Kalio","activity_type":33,"assistance":1,"difficulty":3,"scenic_value":5,"length":8195,"name_EN":"Vardousia: From Klima to Kalio via Profitis Ilias","description_EN":"A short crossing offering a great view","ascent_time":350,"descent_time":345,"marker":"No_marks","level":13,"ascent":490,"descent":806,"maxelev":1249,"minelev":452,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.14379 38.55308,22.17464 38.58231)","views":70,"millestones":"0,22.1464214,38.5733539#1,22.1487150,38.5766032#2,22.1506775,38.5809882#3,22.1585215,38.5765346#4,22.1663757,38.5729823#5,22.1715106,38.5731597#6,22.1727074,38.5656020#7,22.1738010,38.5583816#8.2,22.1706774,38.5534564","x":22.1655237,"y":38.5736774,"coor":[[22.1464214,38.5733539],[22.1462025,38.5733864],[22.1453271,38.5739493],[22.1447468,38.5745618],[22.1445778,38.57487],[22.144416,38.5749125],[22.1440385,38.5748615],[22.1439793,38.5749326],[22.144077,38.5751504],[22.1445228,38.5752206],[22.144624,38.5753033],[22.1448876,38.575767],[22.1449672,38.5757953],[22.1453009,38.5757645],[22.1452142,38.5755649],[22.1452509,38.5754754],[22.1457715,38.5748709],[22.1458385,38.5749441],[22.1457536,38.5751229],[22.1458623,38.5753589],[22.146598,38.5753165],[22.1471516,38.5752172],[22.1473838,38.5751127],[22.1474747,38.5751502],[22.1475829,38.5754042],[22.147968,38.5756086],[22.1481795,38.5758642],[22.1486118,38.5760152],[22.148792,38.5770453],[22.14878,38.5775137],[22.148557,38.5781499],[22.1487235,38.5788194],[22.1485546,38.5800332],[22.1484518,38.5806263],[22.148695,38.5809906],[22.1487173,38.58191],[22.1486223,38.5820347],[22.1482982,38.5821377],[22.1479135,38.5823659],[22.1483468,38.5823817],[22.1485892,38.5823315],[22.1490266,38.5822844],[22.149639,38.5821318],[22.1498873,38.5818474],[22.1503326,38.581494],[22.1508335,38.5807631],[22.1509991,38.5801259],[22.152016,38.5789705],[22.1522088,38.5786132],[22.1525893,38.5785471],[22.1530226,38.578662],[22.1533342,38.5785949],[22.1535559,38.5784542],[22.1539959,38.578308],[22.1556552,38.5771627],[22.1558627,38.5771299],[22.1562156,38.5772436],[22.1562239,38.5773699],[22.1564754,38.5774099],[22.1565654,38.5774834],[22.1566246,38.5776781],[22.1567152,38.5777246],[22.157306,38.5775176],[22.1589347,38.5762186],[22.1594116,38.5759738],[22.1597049,38.5757261],[22.1599922,38.5752621],[22.1600909,38.5745428],[22.1603305,38.5741501],[22.1611941,38.5735959],[22.1615984,38.5734942],[22.1618311,38.5733717],[22.1620785,38.5731232],[22.162332,38.5729695],[22.1633794,38.5731392],[22.1637473,38.5731179],[22.1642588,38.5737657],[22.1644013,38.5735787],[22.1646464,38.5734204],[22.1648743,38.573487],[22.1650432,38.5736158],[22.1655237,38.5736774],[22.1656513,38.5736253],[22.1658638,38.5733944],[22.1663665,38.5730328],[22.1664195,38.5727543],[22.1670715,38.5728456],[22.1672592,38.5731369],[22.167474,38.5732664],[22.1675506,38.5734118],[22.1678357,38.5734884],[22.1683607,38.5731542],[22.1685915,38.5731037],[22.1687558,38.5729621],[22.1690438,38.5729216],[22.1695307,38.5727309],[22.170489,38.5720611],[22.1712744,38.5718661],[22.1710785,38.5723496],[22.170205,38.5733002],[22.171457,38.5728151],[22.171502,38.5728519],[22.1708687,38.5733826],[22.1727211,38.5727538],[22.1731078,38.5724444],[22.1732791,38.5720236],[22.1731317,38.5714986],[22.1727631,38.5710964],[22.172367,38.5704234],[22.1719394,38.5700833],[22.1720197,38.569634],[22.1726417,38.5677334],[22.1726738,38.5673735],[22.1725576,38.5669752],[22.1720486,38.5662283],[22.1725176,38.5658392],[22.1728731,38.5653942],[22.1730438,38.5650004],[22.172996,38.5646212],[22.1727266,38.5643827],[22.1729624,38.5641341],[22.1729881,38.5635758],[22.1731179,38.5634336],[22.1733349,38.5625539],[22.1734279,38.5625103],[22.1734801,38.5622588],[22.1737673,38.5617948],[22.1737796,38.5613084],[22.1739881,38.56078],[22.1738035,38.559912],[22.1738662,38.5592462],[22.1739997,38.5589599],[22.1744704,38.5584987],[22.1745176,38.5579948],[22.1743827,38.5578846],[22.1741868,38.5579176],[22.1736184,38.5586116],[22.1732811,38.5587865],[22.1731336,38.5587211],[22.1731356,38.5586401],[22.1733836,38.5583646],[22.1735331,38.5578984],[22.1735617,38.557223],[22.1736803,38.5570717],[22.1736133,38.5569985],[22.1734635,38.5570232],[22.1730373,38.5575392],[22.1728184,38.5575718],[22.1727968,38.5575174],[22.1729498,38.5573666],[22.1728702,38.5568878],[22.1729807,38.5566012],[22.1727659,38.5561067],[22.1725355,38.5556886],[22.1723539,38.5551541],[22.1720093,38.5547162],[22.17185,38.5542091],[22.1715966,38.5538898],[22.1712414,38.5534157],[22.1711995,38.5530771],[22.171132,38.553022],[22.1706774,38.5534564]]},{"id":17896,"author":"AnaDigit","name_GR":"\u0392\u03b1\u03c1\u03b4\u03bf\u03cd\u03c3\u03b9\u03b1: \u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03bd\u03b7 \u039f\u03be\u03b9\u03ac-\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03bf\u03c7\u03ce\u03c1\u03b9","description_GR":"\u039c\u03b9\u03b1 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b1 \u03b3\u03bd\u03c9\u03c3\u03c4\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae","path":"STEREA\/Sterea_Vardousia_Grameni_Kyriakochori","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":16646,"name_EN":"Vardousia: Grameni Oxia-Kyriakochori","description_EN":"A nice mountain ride","ascent_time":385,"descent_time":390,"marker":"No_marks","level":9,"ascent":748,"descent":939,"maxelev":1634,"minelev":923,"link_logo":"vardousia_128","link_ref":"https:\/\/play.google.com\/store\/apps\/details?id=anadigit.adventures.vardousia","pdf_link":"","bbox":"LINESTRING(22.00445 38.73481,22.02621 38.82376)","views":32,"millestones":"0,22.0070592,38.7363950#1,22.0091942,38.7434463#2,22.0134648,38.7433709#3,22.0197690,38.7394083#4,22.0254841,38.7358537#5,22.0258205,38.7406751#6,22.0233950,38.7466609#7,22.0177137,38.7533079#8,22.0118359,38.7605382#9,22.0107750,38.7684434#10,22.0110929,38.7753751#11,22.0115073,38.7841266#12,22.0140168,38.7923709#13,22.0167714,38.7995843#14,22.0130870,38.8066182#15,22.0102114,38.8148556#16,22.0094583,38.8209238#16.6,22.0132416,38.8239063","x":22.016462,"y":38.7548733,"coor":[[22.0070592,38.736395],[22.0070434,38.7367281],[22.0069327,38.7369875],[22.006859,38.7372205],[22.0070705,38.7374764],[22.0071232,38.738063],[22.0072347,38.738164],[22.0075422,38.7382774],[22.0080059,38.7385646],[22.0081613,38.7385718],[22.0090713,38.7389477],[22.0093815,38.7391963],[22.009445,38.7393956],[22.0094075,38.7395031],[22.008968,38.7400002],[22.0085147,38.7401637],[22.0084782,38.7402351],[22.0085977,38.7404894],[22.0085317,38.7407947],[22.008597,38.7409309],[22.0090822,38.7412726],[22.0093497,38.7415835],[22.0094767,38.7423966],[22.0093787,38.7426112],[22.0090609,38.7428671],[22.0088697,38.7431251],[22.0091074,38.7432644],[22.0091944,38.743446],[22.0087424,38.743979],[22.0073118,38.7449457],[22.0069158,38.7455337],[22.0069568,38.7457146],[22.0070588,38.7457704],[22.0072318,38.7457553],[22.0076533,38.7454922],[22.0081058,38.7453557],[22.0089584,38.7453162],[22.0094589,38.745523],[22.0104549,38.7452876],[22.0115039,38.7448009],[22.0129534,38.7435641],[22.0138954,38.7432017],[22.0147169,38.7430354],[22.0150449,38.7428247],[22.0157231,38.7428453],[22.0158186,38.7427207],[22.0155106,38.7422109],[22.0155258,38.742076],[22.0162217,38.7410426],[22.0166102,38.7407248],[22.0168857,38.7407475],[22.0173502,38.7414222],[22.0176762,38.741698],[22.0178252,38.7417186],[22.0179085,38.7416209],[22.0179512,38.7413242],[22.0182917,38.7410777],[22.0185949,38.7409297],[22.0190454,38.7408652],[22.0190711,38.7407666],[22.0188606,38.7404747],[22.0188885,38.7402949],[22.019271,38.7397788],[22.0197179,38.7394259],[22.0199154,38.7393572],[22.0203504,38.7394367],[22.0207663,38.7393716],[22.0212943,38.7394166],[22.0214223,38.7393647],[22.0214598,38.7392572],[22.0209677,38.7387443],[22.021402,38.7375983],[22.021531,38.7375104],[22.0232938,38.7369996],[22.0238062,38.736774],[22.0241885,38.7362578],[22.0247562,38.7348618],[22.0248502,38.7347913],[22.0256787,38.7352017],[22.0257672,38.7353294],[22.0256903,38.7356164],[22.0251914,38.7361847],[22.0252292,38.7364827],[22.0241492,38.7372663],[22.0230994,38.7377892],[22.022967,38.7380032],[22.0230782,38.7381403],[22.0232832,38.7382158],[22.0238917,38.7382622],[22.0241997,38.7383575],[22.0246806,38.7392757],[22.0246047,38.7395267],[22.0246482,38.7396175],[22.0247982,38.739602],[22.0251026,38.7394089],[22.025391,38.7389633],[22.0257564,38.7386451],[22.0260191,38.7387802],[22.0260939,38.7389887],[22.0257194,38.7413071],[22.0255142,38.741655],[22.0253878,38.7420674],[22.0251061,38.7422698],[22.0249587,38.7426098],[22.0254042,38.7427254],[22.0256618,38.7429821],[22.0259238,38.744329],[22.0257294,38.7447042],[22.0253924,38.7448247],[22.0253444,38.7448959],[22.0255991,38.7456751],[22.0251338,38.7466945],[22.0250278,38.7467828],[22.0248558,38.7467619],[22.0238846,38.7460967],[22.0235988,38.7460288],[22.0236021,38.7463262],[22.0233757,38.7466107],[22.0234187,38.7467195],[22.0236457,38.7468315],[22.0237342,38.7469592],[22.0235544,38.7476409],[22.0236224,38.7480926],[22.023291,38.7484294],[22.0232373,38.7487078],[22.0230143,38.7488662],[22.0220762,38.7490846],[22.0208205,38.7495589],[22.020423,38.7497865],[22.0200925,38.7500872],[22.019889,38.7503721],[22.0198993,38.7508318],[22.0193174,38.7519032],[22.0183863,38.7526984],[22.0179065,38.7529876],[22.0170631,38.7543609],[22.016462,38.7548733],[22.0162373,38.7555093],[22.0152754,38.7560245],[22.0144156,38.7567398],[22.0135854,38.7572122],[22.0134164,38.7574977],[22.0134884,38.7582198],[22.0133114,38.7587934],[22.0130839,38.7591139],[22.0120972,38.759836],[22.0117736,38.7607135],[22.011256,38.7615337],[22.011404,38.7624192],[22.0113242,38.7628053],[22.011153,38.7631718],[22.0106848,38.7638667],[22.009653,38.7649664],[22.0093046,38.7654921],[22.0092489,38.7658426],[22.0094724,38.7660806],[22.0101441,38.7663444],[22.010648,38.7668485],[22.0108181,38.767356],[22.0107275,38.7681294],[22.0107761,38.7684546],[22.0109334,38.7685924],[22.0117056,38.768966],[22.0122488,38.7692996],[22.0131256,38.7696389],[22.0134648,38.7698609],[22.0136744,38.7701889],[22.0137036,38.7703786],[22.0135836,38.7709712],[22.013189,38.7715051],[22.011453,38.772674],[22.0111339,38.7729749],[22.0108938,38.7733313],[22.0107677,38.7737256],[22.0107452,38.7741217],[22.0110528,38.775064],[22.0111001,38.7754342],[22.0107292,38.7767705],[22.0108686,38.7776423],[22.0114193,38.7786294],[22.0115238,38.7790096],[22.0114668,38.7794051],[22.0111916,38.7801933],[22.0112634,38.7807171],[22.0117092,38.7815942],[22.011767,38.7823386],[22.0116524,38.7836792],[22.0111476,38.7852744],[22.011098,38.7866432],[22.0113944,38.7871618],[22.0121164,38.7876967],[22.0129089,38.7881788],[22.0132986,38.7886539],[22.013507,38.7894414],[22.0140268,38.7925408],[22.014391,38.793421],[22.0145298,38.7935811],[22.0147889,38.7937837],[22.0152438,38.7939896],[22.0154774,38.794282],[22.0159308,38.7945419],[22.0159588,38.7947767],[22.0156462,38.7950597],[22.015277,38.795504],[22.0152585,38.7957559],[22.0148649,38.7962448],[22.0147408,38.7965671],[22.0153949,38.7987227],[22.0158195,38.7991894],[22.0168178,38.7993145],[22.0169304,38.7994065],[22.0168934,38.799496],[22.0164118,38.7998392],[22.0163507,38.7999644],[22.0163782,38.8002171],[22.0162527,38.8005934],[22.0163177,38.8007387],[22.0167576,38.8010705],[22.0169342,38.8013439],[22.0176941,38.8017622],[22.0177254,38.8018799],[22.017534,38.8021379],[22.0170547,38.8024001],[22.016557,38.8029053],[22.0162988,38.8030811],[22.0154076,38.8040751],[22.0149042,38.8043729],[22.0140194,38.8051328],[22.0136351,38.8057029],[22.0132485,38.8062009],[22.0131416,38.806564],[22.0128386,38.8068607],[22.0128306,38.8071489],[22.0127085,38.8073991],[22.0128031,38.8081396],[22.0131098,38.8087035],[22.0130778,38.8098562],[22.0124077,38.8111784],[22.0122755,38.8117889],[22.0118359,38.8122769],[22.0115916,38.8127774],[22.0115676,38.8132275],[22.011313,38.813516],[22.0111672,38.813545],[22.0110045,38.8140108],[22.0107167,38.8144204],[22.0101268,38.8149239],[22.0097066,38.8155385],[22.0093873,38.8162539],[22.0086805,38.817233],[22.0090379,38.817221],[22.0098152,38.8166036],[22.010141,38.816483],[22.0103242,38.8165221],[22.0105279,38.8166518],[22.0105579,38.8168145],[22.0104593,38.817047],[22.0100348,38.8178823],[22.0098831,38.8183663],[22.0101843,38.8195427],[22.0101858,38.8199032],[22.0100622,38.8202074],[22.0094803,38.8208373],[22.0094287,38.8210346],[22.0094818,38.8211977],[22.0097423,38.8213553],[22.0106345,38.8215778],[22.0115611,38.8223099],[22.012389,38.8227745],[22.0126318,38.823157],[22.0129684,38.8234781],[22.0132005,38.8237254],[22.0132416,38.8239063]]}],{"extent":[21.98124,38.54654,22.25823,38.82376],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"redirect"},"sort":{"type":"none"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":true},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Volima_AgAndreas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Vassilikos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Prodromos_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Klima_Schinari":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kiliomeno_Yperaghathos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Argasi_Skopiotisa":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Agalas_Kiliomenos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Skopelos_monasteries_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Klima":{"url":null,"color":"#1ab933","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Skopelos_Loutraki_Faros_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Taxiarches":{"url":null,"color":"#2f7aff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Foukalida":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Damoulianata_AgThekli":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Vilatoria_Petani":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Kefalonia_Gerogombos":{"url":null,"color":"#f029e0","width":6,"exclude":false,"useStyle":true},"Geology\/GEO_Kefalonia_4_karst_formations":{"url":null,"color":"#fff741","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Ainos":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Anavasi_AgDinati":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Fiskardo_Battery":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Gyro_apo_Zoodocho_Pigi":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Sami_Poros":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4x4\/SUV_Kefalonia_Ainos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"SUV_4x4\/SUV_Kefalonia_Livadi-AgEleni_beach":{"url":null,"color":"#f72fff","width":6,"exclude":false,"useStyle":true},"GEOLOGY\/GEO_Kefalonia_Mntzavinata_formations":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Antisamos_Fanentes":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Proni_acropolis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_traverse":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Assos_castle":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_AgDinati_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Atros_ascent":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_ridge":{"url":null,"color":"#e99429","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Koutavos_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Sami_Fanentes":{"url":null,"color":"#3ee373","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Kalymnos_Vathys_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Palionisos":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Eborios":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_1":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_12":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_8a":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_10":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_9":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_5":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_16":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_14":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_4":{"url":"http:\/\/www.alternetgreece.com\/en\/activities\/hiking","color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_17":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_6":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_3":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Kokkinoplos_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Litochoro_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Karya_Skolio":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Krania_Rapsani":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Rapsani_Tembi":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Dion_Petrostrouga":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Gortsia_Apostolidis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_Litochoro_Livadaki_Mouses":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Vrondou_Barbalas":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Ascent_Pyramida":{"url":null,"color":"#0f4a96","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Sykia_Pyramida":{"url":null,"color":"#960f65","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Viniani_Reka_Giona_ref":{"url":null,"color":"#f7f70d","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Kaloskopi_51":{"url":null,"color":"#0f962a","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Stromi_Kaloskopi":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Vardousia_Koprisies":{"url":null,"color":"#178e12","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Diakos_Stromi":{"url":null,"color":"#502fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Southern_Ridge":{"url":null,"color":"#eff900","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos":{"url":"Vardousia_E4_Artotina_Diakos","color":"#ff2fe6","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina":{"url":null,"color":"#c52fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Oxia_AthDiakos":{"url":null,"color":"#40ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Diakos_Mousounitsa":{"url":"","color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Vardousia_Korakas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false}}});
function getPoiCollection(key,data,meta){
this.key = key;
this.data = data;
this.item = [];
//this.meta = meta;
this.gsMap = null;
this.features = [] ;
//this.lineFeatures = [] ;
var self = this;
//console.log(data);
this.source = new ol.source.Vector({wrapX: false, noWrap: true});
this.layer = new ol.layer.Vector({
source: this.source, //clusterSource
visible:true
});
this.registerMap = function(gsMap){
this.gsMap = gsMap;
this.gsMap.map.addLayer(this.layer);
this.createFeatures();
}
this.createFeatures = function(){
this.features=[];
for(var i in this.data){
//console.log(this.data[i]);
var newItem = this.getItem(this.data[i]);
newItem.style = this.getIconStyle(newItem);
var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem));
//var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, "");
f.setStyle(newItem.style);
f.show = function () {
var div = document.getElementById("myModal");
div.innerHTML =
'';
setTimeout(function () {
$('#myModal').modal('show');
}, 200);
}
newItem.feature = f;
this.item.push(newItem);
this.features.push(f);
}
this.source.addFeatures(this.features);
this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();});
this.refresh();
}
this.zoomTo = function(){
this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize());
}
this.pointMsp = function(item){
return {
width:item.width,
height:item.height,
photoPath:item.photoPath,
name:item.name,
description:item.description,
parent:this,
click:[function(s,f,l){
var div = document.getElementById("myModal");
var self = f.get('msp');
//#34b0ff
div.innerHTML =
''
+ '
'+ self.name.replace("
",": ") +'
'
+ self.parent.getImagetItem(self.photoPath,self.width,self.height)
+ '
'+ self.description +'
'
+ '
';
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_vardousia = new getPoiCollection("vardousia",[{"name":"\u0392\u0391\u03a1\u0394\u039f\u03a5\u03a3\u0399\u0391
\u03a4\u03bf \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03b1\u03c0\u03bf \u03c4\u03b1 \u03b4\u03c5\u03c4\u03b9\u03ba\u03ac","owner":"AnaDigit","x":22.106601715088,"y":38.684399209886,"photo":"Vardousia1","type":0,"zoom_level":12,"id":339,"hlink_GR":"","hlink_EN":"","description":"","height":240,"width":512},{"name":"\u039c\u0391\u039d\u0399\u03a4\u0391\u03a1\u0399\u0391
Amanita muscaria","owner":"\u0393. \u03a1\u03bf\u03cd\u03c3\u03c3\u03bf\u03c2","x":22.180723,"y":38.7650868,"photo":"Amanita_Muscaria","type":6,"zoom_level":14,"id":706,"hlink_GR":"","hlink_EN":"","description":"","height":491,"width":522}],{});function createAdventureListWidgetContext(){};console.log('sort type: none');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathListDivId'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathListDivId').innerHTML="";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["vardousia"],pc:["vardousia"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1};
var overrideAfterLoad = function(map){ adventureCollection_vardousia.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);
}