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_chios = new getAdventureCollection("chios",[{"id":16350,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0386\u03b3\u03b9\u03bf \u0393\u03ac\u03bb\u03b1\u03c2-\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","description_GR":"","path":"Islands\/Islands_Chios_AgGhalas_AgIoanis","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":1858,"name_EN":"Chios: Aghio Ghalas-Aghios Ioanis","description_EN":"","ascent_time":35,"descent_time":30,"marker":"Red_dots","level":12,"ascent":193,"descent":32,"maxelev":406,"minelev":224,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.86049 38.55817,25.87542 38.56516)","views":31,"millestones":"0,25.8605168,38.5643590#1,25.8695088,38.5619050#1.9,25.8754209,38.5581739","x":25.8689448,"y":38.5623504,"coor":[[25.8605168,38.564359],[25.8604721,38.5644904],[25.8607918,38.5645664],[25.8610435,38.5645354],[25.8615085,38.5647622],[25.8617543,38.5649476],[25.8619153,38.564963],[25.8621368,38.5650947],[25.8623213,38.5651278],[25.8626695,38.5648339],[25.8627723,38.5648142],[25.8630839,38.5648813],[25.8633812,38.5648406],[25.8635262,38.5646761],[25.8637299,38.5645647],[25.8639593,38.564561],[25.8642375,38.5646647],[25.8645021,38.5645254],[25.8646733,38.5644866],[25.8649849,38.5645537],[25.8652895,38.5643506],[25.8657213,38.5641815],[25.8660011,38.5639067],[25.8664696,38.5638272],[25.8666838,38.5636796],[25.8668049,38.5634794],[25.8672036,38.5633649],[25.8674555,38.5633429],[25.8675213,38.5632247],[25.8675066,38.5630988],[25.8675869,38.5630975],[25.8680854,38.5628462],[25.8683703,38.5627696],[25.8685613,38.5624737],[25.8688115,38.5625238],[25.8689448,38.5623504],[25.8695521,38.5618722],[25.8697127,38.5618696],[25.8699789,38.5619555],[25.8701397,38.5619619],[25.8706132,38.5616299],[25.8710252,38.5615873],[25.8711228,38.5613695],[25.8712802,38.5612408],[25.8714848,38.5611655],[25.8716931,38.5611216],[25.8721277,38.5611732],[25.872289,38.5611436],[25.8724606,38.5611228],[25.872808,38.5612434],[25.873524,38.5605291],[25.873775,38.560471],[25.8739953,38.5605576],[25.8740924,38.5603218],[25.8741098,38.5601052],[25.8741772,38.5600501],[25.8742827,38.5600799],[25.8745988,38.5599352],[25.8746185,38.5598087],[25.8745314,38.5595488],[25.8745862,38.5594488],[25.874905,38.5593536],[25.8749376,38.559281],[25.8748292,38.5590845],[25.8748259,38.5589584],[25.8750965,38.5587738],[25.8751066,38.5587196],[25.8749877,38.5585593],[25.8749849,38.5584512],[25.8754209,38.5581739]]},{"id":16351,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u03a6\u03b1\u03c1\u03ac\u03b3\u03b3\u03b9 \u039a\u03b1\u03bc\u03c0\u03b9\u03ce\u03bd","description_GR":"\u039a\u03b1\u03bc\u03c0\u03b9\u03ac- \u03a0\u03b1\u03c1\u03b1\u03bb\u03ac\u03b9 \u039a\u03b1\u03bc\u03c0\u03b9\u03ce\u03bd","path":"Islands\/Islands_Chios_Kambia_beach","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":3576,"name_EN":"Chios: Kambia gorge","description_EN":" Kambia-Kambia beach","ascent_time":90,"descent_time":95,"marker":"No_marks","level":12,"ascent":36,"descent":385,"maxelev":362,"minelev":8,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.97462 38.57203,25.98577 38.59511)","views":21,"millestones":"0,25.9857957,38.5729149#1,25.9802479,38.5764273#2,25.9775128,38.5842024#3,25.9749175,38.5908810#3.6,25.9762776,38.5950848","x":25.9795801,"y":38.580382,"coor":[[25.9857957,38.5729149],[25.9854755,38.5727762],[25.9847852,38.5727158],[25.9842096,38.572239],[25.9838031,38.5720656],[25.9836884,38.5720676],[25.9833716,38.5722351],[25.9829157,38.572351],[25.9826219,38.5725182],[25.9825653,38.5725732],[25.9826124,38.5726175],[25.9824892,38.5727277],[25.9822724,38.5727764],[25.9822986,38.5728931],[25.9822325,38.5729933],[25.9821058,38.5729775],[25.9822145,38.5731739],[25.9820893,38.573212],[25.982114,38.5732747],[25.9822648,38.5733352],[25.9821748,38.5733998],[25.982496,38.5733944],[25.9824576,38.5736653],[25.9822016,38.573958],[25.9821871,38.5742646],[25.9823434,38.5745233],[25.9823229,38.5746137],[25.9820047,38.5747273],[25.9819547,38.5749984],[25.9817161,38.5752953],[25.9816551,38.5753729],[25.9810071,38.5756002],[25.9807835,38.5758202],[25.9807396,38.575893],[25.9808134,38.576072],[25.9806727,38.5763808],[25.9806771,38.5765429],[25.9805968,38.5765442],[25.9806447,38.5766155],[25.9802484,38.5763969],[25.9802401,38.5769287],[25.9800255,38.5770585],[25.9801881,38.5771278],[25.9801672,38.5772003],[25.9797742,38.5775223],[25.9797423,38.577613],[25.9798125,38.5780803],[25.9797222,38.5781359],[25.9797685,38.5785677],[25.979697,38.5793077],[25.9795549,38.5794633],[25.9796911,38.5800062],[25.9796967,38.5800286],[25.9795801,38.580382],[25.9795894,38.5811387],[25.9794961,38.5815008],[25.979013,38.5823019],[25.9788415,38.5827463],[25.9783367,38.5831783],[25.9777008,38.5834324],[25.9774429,38.583653],[25.9773316,38.5839387],[25.9771954,38.5839951],[25.9777331,38.5843464],[25.9776919,38.5845183],[25.9777508,38.5845714],[25.9778875,38.584533],[25.9779822,38.5846396],[25.9780965,38.5846196],[25.9783995,38.5847857],[25.9784218,38.5848394],[25.9784364,38.5848752],[25.9786676,38.5849343],[25.9789175,38.5852545],[25.9788761,38.5854174],[25.9787196,38.5855732],[25.9786033,38.5859356],[25.9783712,38.5862639],[25.9781911,38.5863931],[25.9782307,38.5865817],[25.9780301,38.5868013],[25.9776486,38.5868123],[25.977031,38.5868948],[25.9766228,38.5870819],[25.9761184,38.5879465],[25.9751433,38.5888099],[25.9750292,38.5888389],[25.9749217,38.589102],[25.9749241,38.5891921],[25.9749268,38.5892912],[25.9750664,38.5897754],[25.9748882,38.5900532],[25.9750128,38.5904116],[25.9750077,38.5906459],[25.9749004,38.5909181],[25.9749058,38.5911162],[25.9746088,38.5915898],[25.9745403,38.5920234],[25.9748371,38.5923789],[25.974944,38.5924582],[25.9751651,38.5926166],[25.9754284,38.5930086],[25.9756921,38.5938332],[25.9758946,38.5941001],[25.9760562,38.5945479],[25.9760885,38.5948897],[25.9762776,38.5950848]]},{"id":16352,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf\u03c5 \u0391\u03c0\u03bf\u03bb\u03af\u03c7\u03bd\u03c9\u03bd","description_GR":"","path":"Islands\/Islands_Chios_Kastro_Apolichnon","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2376,"name_EN":"Chios: Apolichnon castle crossing","description_EN":"","ascent_time":55,"descent_time":50,"marker":"No_marks","level":13,"ascent":139,"descent":138,"maxelev":228,"minelev":79,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.0183 38.26138,26.03171 38.25463)","views":43,"millestones":"0,26.0182375,38.2590454#1,26.0229799,38.2579443#2,26.0288962,38.2566161#2.4,26.0317092,38.2546272","x":26.0248158,"y":38.2598873,"coor":[[26.0182375,38.2590454],[26.0187855,38.2592568],[26.0188798,38.2593633],[26.0188045,38.2611848],[26.0188519,38.2613733],[26.0189741,38.261245],[26.0192198,38.260628],[26.0196871,38.2601694],[26.0205713,38.2599064],[26.0212582,38.2603631],[26.0221056,38.2604206],[26.0226821,38.2601944],[26.0231193,38.259475],[26.0231794,38.2591676],[26.0229626,38.2579458],[26.0234757,38.2579009],[26.0237347,38.2579956],[26.0238479,38.2579576],[26.0239187,38.2580374],[26.0240553,38.2580171],[26.0240171,38.2582881],[26.0240889,38.258404],[26.024089,38.2588185],[26.024193,38.2588617],[26.024382,38.2590837],[26.024318,38.2592471],[26.0244159,38.2594797],[26.0243543,38.259733],[26.0244577,38.2597493],[26.0244817,38.2597939],[26.0246648,38.2597998],[26.0248158,38.2598873],[26.0249615,38.2597856],[26.0250425,38.2598203],[26.0253131,38.2596894],[26.025453,38.2597862],[26.0254664,38.259858],[26.0256151,38.2598645],[26.0257596,38.2597178],[26.0258629,38.259734],[26.0260412,38.2595687],[26.0260996,38.2596128],[26.0261388,38.2597923],[26.0263361,38.2597709],[26.0265854,38.2596945],[26.0267351,38.2593225],[26.0272855,38.2589795],[26.027576,38.2587402],[26.0276083,38.2586676],[26.0274744,38.2583725],[26.0274892,38.2580839],[26.0275294,38.257885],[26.027729,38.2576653],[26.0277806,38.2574661],[26.0286039,38.2570734],[26.0289544,38.2565267],[26.0293259,38.256322],[26.0295138,38.2560935],[26.0298599,38.2557992],[26.0309677,38.2553655],[26.0313289,38.2549222],[26.0317092,38.2546272]]},{"id":16353,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u039b\u03b9\u03b8\u03af - \u03a6\u03b1","description_GR":"","path":"Islands\/Islands_Chios_Lithi_Fa","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":4193,"name_EN":"Chios: Lithi-Fa","description_EN":"","ascent_time":75,"descent_time":80,"marker":"Red_dots","level":12,"ascent":19,"descent":308,"maxelev":398,"minelev":99,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.99926 38.33274,26.0287 38.3453)","views":32,"millestones":"0,26.0289965,38.3447894#1,26.0209689,38.3419747#2,26.0103826,38.3420253#3,26.0059134,38.3395279#4.2,25.9989493,38.3341003","x":26.0066815,"y":38.3397984,"coor":[[26.0289965,38.3447894],[26.0290343,38.344604],[26.0289385,38.3444525],[26.0285447,38.3442791],[26.0284829,38.3441179],[26.0280901,38.3439806],[26.0278775,38.3437409],[26.0268093,38.3431827],[26.0263264,38.3431009],[26.0253505,38.3425681],[26.0249236,38.3424403],[26.0247483,38.3423082],[26.0245181,38.3422581],[26.0243433,38.342144],[26.024106,38.3418417],[26.0239179,38.3412502],[26.0237658,38.3411267],[26.0226878,38.3410372],[26.0220607,38.3407056],[26.0219613,38.3408334],[26.0219738,38.3412838],[26.0215722,38.3416512],[26.0208281,38.3420515],[26.0203061,38.3422046],[26.0201221,38.3421718],[26.0197124,38.3422509],[26.0195162,38.3421912],[26.0191056,38.3422343],[26.0187714,38.34215],[26.0185894,38.3421891],[26.0182105,38.3421416],[26.0173563,38.341868],[26.0171616,38.3418623],[26.0157564,38.341526],[26.0153248,38.3412271],[26.014937,38.3412698],[26.0141887,38.3411024],[26.013779,38.3411815],[26.0136094,38.3412565],[26.0133531,38.3415042],[26.0131145,38.3415624],[26.0120802,38.3413999],[26.0114891,38.3415362],[26.011016,38.3418057],[26.0105521,38.3419939],[26.0099942,38.3420935],[26.0087362,38.3421151],[26.0081542,38.3417556],[26.0075824,38.3417654],[26.0069733,38.3416677],[26.0065825,38.3411878],[26.0062464,38.3410314],[26.0061936,38.3409331],[26.006174,38.3408974],[26.0062126,38.3402209],[26.0066815,38.3397984],[26.0067003,38.3396539],[26.0066501,38.3394926],[26.0064776,38.3394595],[26.0062867,38.3391744],[26.0059118,38.3388564],[26.0055876,38.3387178],[26.0054044,38.3387119],[26.0052871,38.3386058],[26.004907,38.3385132],[26.0047471,38.3385249],[26.0053616,38.3388208],[26.0057519,38.3392827],[26.0059145,38.33937],[26.0059861,38.3394769],[26.0059451,38.3396488],[26.005919,38.3395321],[26.0057788,38.3394264],[26.0053862,38.3392979],[26.0050949,38.3391047],[26.0046569,38.338986],[26.0044736,38.3389801],[26.0043155,38.3390549],[26.0039794,38.3388985],[26.0038845,38.3387739],[26.0033763,38.3386024],[26.0030392,38.3384099],[26.0027186,38.3379829],[26.0025458,38.3379408],[26.0024506,38.3378072],[26.0019512,38.3375364],[26.001889,38.3373572],[26.0017304,38.337414],[26.0015465,38.3373811],[26.0013392,38.3373306],[26.0012216,38.3372155],[26.0011826,38.3370719],[26.0011197,38.3368387],[26.0013141,38.3364209],[26.0011508,38.3363065],[26.0010772,38.3361276],[26.0011499,38.335856],[26.0010002,38.335408],[26.0008379,38.3353297],[26.0008225,38.3351858],[26.0006833,38.3351161],[26.0007186,38.334737],[26.000494,38.3344705],[26.000536,38.3343346],[26.0004475,38.3340297],[26.0000778,38.3338468],[25.9997192,38.3332852],[25.9996014,38.3332422],[25.999248,38.3332843],[25.9989493,38.3341003]]},{"id":16354,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u039c\u03b1\u03b3\u03ba\u03bf\u03cd\u03c3\u03b7","description_GR":"\u03a3\u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7 \u0397\u03bb\u03af\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u039c\u03b1\u03b3\u03ba\u03bf\u03cd\u03c3\u03b7\u03c2","path":"Islands\/Islands_Chios_Magousis","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":3,"length":851,"name_EN":"Chios: Ascent to Magousis","description_EN":"Ascent to Profitis Ilias and Magousis peak","ascent_time":45,"descent_time":40,"marker":"Blue_dots","level":13,"ascent":201,"descent":29,"maxelev":233,"minelev":37,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.02418 38.23401,26.03834 38.23916)","views":29,"millestones":"0,26.0384644,38.2383170#1,26.0285169,38.2374747#0.9,26.0240528,38.2344484","x":26.0265945,"y":38.2373197,"coor":[[26.0384644,38.238317],[26.0382522,38.2384919],[26.0378457,38.2386612],[26.036916,38.2389206],[26.0360362,38.2389179],[26.0354091,38.2389648],[26.0350674,38.2389527],[26.0348591,38.2388572],[26.0347104,38.2386976],[26.0345049,38.2387012],[26.034119,38.2387935],[26.0336061,38.2388384],[26.0333539,38.2388067],[26.0331953,38.2387284],[26.0330183,38.2385016],[26.0323358,38.2383017],[26.031947,38.2382904],[26.031453,38.2381908],[26.0311932,38.237889],[26.0310544,38.2378283],[26.0300495,38.2378457],[26.0298807,38.2379387],[26.0298155,38.238111],[26.0294779,38.2378826],[26.0289992,38.2379269],[26.0287808,38.2378766],[26.0285766,38.2375197],[26.0282732,38.2372907],[26.0277412,38.2382911],[26.027551,38.2384386],[26.027404,38.2380807],[26.0270479,38.2376002],[26.0269789,38.2375834],[26.0269114,38.2376206],[26.0267574,38.237425],[26.0265945,38.2373197],[26.0264977,38.2371231],[26.0263343,38.2369998],[26.0262424,38.2369833],[26.0255887,38.236481],[26.0253876,38.2362321],[26.0251089,38.2356602],[26.025164,38.2355872],[26.0250091,38.2353556],[26.024942,38.2352802],[26.0249117,38.2351906],[26.0248225,38.2351696],[26.0247319,38.2351711],[26.0246815,38.2351315],[26.0246524,38.2350599],[26.0246716,38.2349784],[26.0247216,38.234928],[26.0248017,38.2348816],[26.0248121,38.2347913],[26.0248217,38.234701],[26.0248116,38.2346201],[26.0248112,38.23453],[26.0248414,38.2344574],[26.0248014,38.2344085],[26.024741,38.2343915],[26.024671,38.2343387],[26.0246008,38.2342813],[26.0245215,38.2342511],[26.0244213,38.2342709],[26.0243617,38.2343079],[26.0243116,38.2343584],[26.0242215,38.2343509],[26.0241017,38.2343575],[26.024062,38.2344213],[26.0240528,38.2344484]]},{"id":16355,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u039a\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03bc\u03b1\u03bb\u03b1\u03b3\u03ba\u03b9\u03ce\u03c4\u03b7","description_GR":"\u0397 \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03c9\u03bd \u03bd\u03b5\u03c1\u03cc\u03bc\u03c5\u03bb\u03c9\u03bd","path":"Islands\/Islands_Chios_Malagiotis_valley","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":8520,"name_EN":"Chios: Malagiotis valley","description_EN":"The valley of watermills","ascent_time":160,"descent_time":150,"marker":"Red_dots","level":12,"ascent":368,"descent":56,"maxelev":352,"minelev":16,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.93832 38.4757,25.99533 38.50729)","views":26,"millestones":"0,25.9375590,38.4789472#1,25.9473624,38.4771471#2,25.9547233,38.4832672#3,25.9622826,38.4888901#4,25.9711819,38.4942721#5,25.9775847,38.5009342#6,25.9827590,38.5042662#7,25.9888791,38.5015422#8,25.9937071,38.5041310#8.5,25.9943411,38.5063511","x":25.9811319,"y":38.5037369,"coor":[[25.937559,38.4789472],[25.9393018,38.4781073],[25.939633,38.4776333],[25.9400158,38.4773746],[25.9404488,38.4772774],[25.9410453,38.4772945],[25.9413693,38.4774063],[25.9417528,38.4776567],[25.9419713,38.4776801],[25.942386,38.4773308],[25.9432004,38.4769208],[25.9434071,38.4769354],[25.9436282,38.4770579],[25.9437657,38.4770556],[25.9441184,38.4769597],[25.9449442,38.4765495],[25.9469951,38.4769389],[25.9483104,38.477683],[25.9489893,38.4782033],[25.9497223,38.4786056],[25.9507766,38.4790206],[25.9511921,38.4791218],[25.95194,38.4792265],[25.9522174,38.4797355],[25.9533285,38.4809785],[25.9538185,38.4812947],[25.9544309,38.4818972],[25.9543801,38.4825649],[25.9544586,38.482924],[25.9549933,38.4836179],[25.9555045,38.4847177],[25.9560428,38.4855468],[25.9561449,38.4856126],[25.9568509,38.4858621],[25.9581,38.4875353],[25.9588619,38.4881533],[25.9594281,38.4887386],[25.9613806,38.4888681],[25.9624244,38.4888866],[25.9632373,38.4892695],[25.9640342,38.4899049],[25.9647836,38.4909016],[25.9656007,38.4914375],[25.9668657,38.492002],[25.9686248,38.4926032],[25.9698995,38.4935189],[25.9712159,38.4942807],[25.9724304,38.4950892],[25.9724993,38.4959351],[25.9727707,38.4961107],[25.9729156,38.4963786],[25.9744021,38.4974889],[25.9748076,38.4976443],[25.9757297,38.4978179],[25.9759506,38.4979314],[25.9768241,38.4988447],[25.9771786,38.4996497],[25.9773445,38.4998452],[25.9774727,38.5003386],[25.9777005,38.5007042],[25.9776813,38.5008397],[25.9775696,38.5009497],[25.9775492,38.5010401],[25.9777672,38.5018835],[25.9777422,38.5022263],[25.9778739,38.5024313],[25.9782763,38.5024696],[25.9787158,38.5026063],[25.9791135,38.5024735],[25.9792281,38.5024715],[25.979323,38.5025871],[25.9792387,38.5028588],[25.979358,38.503028],[25.9805668,38.5036203],[25.9811319,38.5037369],[25.981576,38.5036213],[25.9821017,38.5035583],[25.982326,38.5033743],[25.9824172,38.5033547],[25.9827531,38.5034752],[25.9831437,38.5035046],[25.9835088,38.5034353],[25.9838816,38.5032308],[25.9841008,38.5032811],[25.9841163,38.503425],[25.9838645,38.5038618],[25.9836856,38.5040271],[25.983231,38.5041789],[25.9826719,38.5042785],[25.9824805,38.5044079],[25.9825086,38.5045967],[25.9827602,38.5049889],[25.9828885,38.5050678],[25.9832931,38.5051871],[25.9835919,38.5052091],[25.9839342,38.5051492],[25.9842267,38.5053605],[25.9843887,38.5054118],[25.9850744,38.5053281],[25.9853685,38.505179],[25.9864367,38.5039894],[25.9868394,38.5036222],[25.986954,38.5036202],[25.9873721,38.5038114],[25.9880032,38.5038277],[25.9880476,38.5037729],[25.987768,38.5036154],[25.9876968,38.5035265],[25.9876724,38.5030584],[25.987828,38.5028755],[25.9882344,38.5026433],[25.9884136,38.5024871],[25.9884829,38.5020894],[25.9885806,38.5018896],[25.9887276,38.501815],[25.9889671,38.5017658],[25.9890219,38.5016748],[25.9877863,38.5005244],[25.9876413,38.5002565],[25.98772,38.5002011],[25.9880798,38.5003572],[25.9885861,38.5004207],[25.9887536,38.5004674],[25.989859,38.5008676],[25.9901799,38.5008622],[25.9905661,38.5007295],[25.9906588,38.5007639],[25.9909084,38.5010841],[25.9910484,38.5011718],[25.9918442,38.5013385],[25.9924063,38.5017614],[25.9927287,38.50181],[25.992895,38.5017847],[25.9929548,38.5018737],[25.9934116,38.5030554],[25.9933824,38.5032451],[25.993197,38.5035907],[25.9932249,38.5037704],[25.9933694,38.5040203],[25.993567,38.504116],[25.9951657,38.504287],[25.9959505,38.5044719],[25.9961264,38.5046131],[25.9960273,38.5047589],[25.995264,38.5049432],[25.9947373,38.5053846],[25.9944741,38.5058217],[25.9943411,38.5063511]]},{"id":16356,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u039d\u03ad\u03b1 \u039c\u03bf\u03bd\u03ae - \u03a6\u03b1","description_GR":"","path":"Islands\/Islands_Chios_NeaMoni_Fa","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6023,"name_EN":"Chios: Nea Moni-Fa","description_EN":"","ascent_time":135,"descent_time":140,"marker":"Red_dots","level":12,"ascent":291,"descent":327,"maxelev":662,"minelev":393,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.02984 38.34412,26.05497 38.37518)","views":37,"millestones":"0,26.0558279,38.3744996#1,26.0491262,38.3713815#2,26.0468616,38.3684773#3,26.0484930,38.3622544#4,26.0435991,38.3544895#5,26.0372056,38.3474161#6,26.0289965,38.3447894","x":26.0483005,"y":38.3667919,"coor":[[26.0558279,38.3744996],[26.0546158,38.3747461],[26.0547722,38.3746082],[26.0547587,38.3745364],[26.054688,38.3744655],[26.0541213,38.3742592],[26.0539339,38.3741093],[26.05382,38.3741293],[26.0537613,38.3740763],[26.0536858,38.3738343],[26.0537285,38.3737254],[26.0536039,38.3733671],[26.0530804,38.3730699],[26.0529657,38.3730629],[26.0529726,38.3729006],[26.0527013,38.372617],[26.0521959,38.3725538],[26.0519594,38.3722876],[26.0518852,38.3720907],[26.0515827,38.3719157],[26.051408,38.3714052],[26.0512857,38.3715335],[26.0511314,38.3713379],[26.0509788,38.3716109],[26.0507325,38.371399],[26.0504783,38.3713133],[26.0504475,38.37144],[26.0497151,38.3710383],[26.0496141,38.3711122],[26.0497326,38.3712543],[26.0494779,38.3711506],[26.0493754,38.3711704],[26.0495307,38.371402],[26.0492089,38.3713535],[26.0490388,38.3714106],[26.0491318,38.371463],[26.0492422,38.3717224],[26.0492986,38.3720999],[26.0494885,38.3723399],[26.0496848,38.372805],[26.0500166,38.3732047],[26.050042,38.3732943],[26.0499655,38.3734218],[26.0498544,38.3731354],[26.049608,38.3729235],[26.0492826,38.3723435],[26.048809,38.371784],[26.0476373,38.3716874],[26.0470747,38.3716251],[26.0469333,38.3714834],[26.0470106,38.3711802],[26.0471602,38.3705964],[26.0474281,38.3703574],[26.0475598,38.3701569],[26.0476219,38.3699215],[26.04757,38.3697061],[26.0469696,38.3687074],[26.0465311,38.3677689],[26.0460255,38.3672912],[26.0462103,38.3669455],[26.0464579,38.366797],[26.0466077,38.3668304],[26.0472628,38.3673326],[26.0475388,38.3673819],[26.0478353,38.3673406],[26.0479591,38.3672664],[26.0483005,38.3667919],[26.0484469,38.3663027],[26.0480501,38.3656248],[26.0480217,38.3654271],[26.0489956,38.3646531],[26.0491377,38.3644164],[26.0491649,38.3641636],[26.0488494,38.3631238],[26.0485843,38.3626509],[26.0482343,38.3611972],[26.0479082,38.3605902],[26.0478884,38.3602931],[26.047591,38.3598928],[26.0466297,38.3590806],[26.0465515,38.359046],[26.0459278,38.3584126],[26.0455841,38.3580671],[26.0455701,38.3575718],[26.0456873,38.3572633],[26.0450951,38.3565528],[26.0447602,38.3556305],[26.0441178,38.3549389],[26.0433551,38.3542673],[26.0428333,38.3540241],[26.0425271,38.3537141],[26.0420381,38.3534162],[26.041836,38.3531494],[26.0414848,38.3528672],[26.0410594,38.352388],[26.0406502,38.3520797],[26.0404368,38.3518131],[26.0403565,38.3517559],[26.0394439,38.3510915],[26.0387817,38.3503281],[26.0387258,38.3499686],[26.0383452,38.3494526],[26.0383468,38.3491011],[26.0379462,38.3488423],[26.0373452,38.3482219],[26.0372472,38.3479894],[26.037203,38.3473323],[26.0365082,38.347038],[26.0362953,38.3467894],[26.0363164,38.346726],[26.036202,38.346728],[26.0361306,38.3466301],[26.0361505,38.3465216],[26.0358456,38.3462566],[26.0358008,38.3462934],[26.03575,38.346114],[26.0356098,38.3460084],[26.0346192,38.3457732],[26.0341449,38.3459977],[26.0340135,38.3458513],[26.033826,38.3456428],[26.0336768,38.3456274],[26.0334296,38.3453794],[26.0329438,38.3451896],[26.0326705,38.3452394],[26.0317903,38.3448581],[26.0314253,38.3449005],[26.0310912,38.3448162],[26.0300591,38.3447349],[26.0300083,38.3445556],[26.0295202,38.3451047],[26.0290742,38.3451124],[26.0289965,38.3447894]]},{"id":16357,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u039f\u03bb\u03cd\u03bc\u03c0\u03bf\u03b9-\u039c\u03b5\u03c3\u03c4\u03ac","description_GR":"\u039f \u03c0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03c4\u03c9\u03bd \u03b4\u03cd\u03bf \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03ce\u03bd \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03ce\u03bd","path":"Islands\/Islands_Chios_Olymboi_Mesta","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":2881,"name_EN":"Chios: Olymbi-Mesta","description_EN":"The old road between the two medieval villages","ascent_time":65,"descent_time":65,"marker":"Red_dots","level":12,"ascent":97,"descent":104,"maxelev":224,"minelev":122,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.92265 38.24555,25.94365 38.25928)","views":29,"millestones":"0,25.9436524,38.2455490#1,25.9378278,38.2516493#2,25.9313507,38.2578342#2.9,25.9226432,38.2589300","x":25.9337006,"y":38.2544904,"coor":[[25.9436524,38.245549],[25.9434491,38.246066],[25.9431554,38.2463547],[25.9435328,38.2467134],[25.9434669,38.2468137],[25.9429658,38.2472275],[25.9423663,38.247724],[25.942106,38.2478995],[25.9421324,38.2480613],[25.9420161,38.2482524],[25.9415674,38.2486474],[25.9410756,38.249061],[25.9405429,38.249223],[25.940007,38.2492679],[25.9395675,38.2495005],[25.9393828,38.2496432],[25.9393057,38.2497526],[25.9392786,38.2500234],[25.939124,38.2502242],[25.9391261,38.2503053],[25.9392556,38.2504473],[25.9392849,38.2506901],[25.9394879,38.2510202],[25.9394118,38.2511656],[25.9392688,38.2512401],[25.9387948,38.2514642],[25.9384801,38.2515009],[25.9380018,38.2515629],[25.9370657,38.2520289],[25.9367066,38.2522781],[25.9361085,38.2529909],[25.9358741,38.2532831],[25.9354939,38.2535958],[25.9337006,38.2544904],[25.9334026,38.2548918],[25.9328049,38.25519],[25.9323784,38.2554854],[25.9321038,38.2559045],[25.9315117,38.2559863],[25.9319311,38.2562858],[25.9320763,38.2570223],[25.9319566,38.2572496],[25.9316018,38.2576609],[25.9310744,38.25803],[25.9309523,38.2581672],[25.930891,38.2584386],[25.9307791,38.2585305],[25.9306063,38.2584793],[25.9303488,38.2582492],[25.9300116,38.258462],[25.9293143,38.2584555],[25.9289168,38.2585521],[25.9285168,38.2585497],[25.9280165,38.258648],[25.9271352,38.2585994],[25.9267187,38.2588406],[25.9263213,38.2589372],[25.9261209,38.2591388],[25.9257235,38.2592354],[25.9250238,38.2591387],[25.9247624,38.2591971],[25.9245196,38.2592236],[25.9241064,38.2591583],[25.9236171,38.2592384],[25.9230421,38.2591037],[25.9228777,38.2590162],[25.9226432,38.25893]]},{"id":16358,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03b5\u03bb\u03b9\u03bd\u03b1\u03af\u03bf \u03b1\u03c0\u03cc \u03c4\u03b7 \u03a1\u03ac\u03c7\u03b7 \u03c4\u03bf\u03c5 \u0388\u03b4\u03b5\u03bb\u03bf\u03c5","description_GR":"","path":"Islands\/Islands_Chios_Pelineo_Edhelos","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":2867,"name_EN":"Chios: Ascent to Pelineo Mt via Edhelos ridge","description_EN":"","ascent_time":190,"descent_time":165,"marker":"No_marks","level":13,"ascent":876,"descent":161,"maxelev":1283,"minelev":553,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.00343 38.52756,26.02318 38.55692)","views":35,"millestones":"0,26.0026732,38.5296910#1,26.0133418,38.5294638#2,26.0166312,38.5290542#3,26.0228853,38.5343875#4,26.0158061,38.5396236#5,26.0103341,38.5446332#6,26.0069170,38.5526806#2.9,26.0046848,38.5569006","x":26.0197641,"y":38.5327223,"coor":[[26.0026732,38.529691],[26.0034566,38.5295244],[26.0042617,38.5296007],[26.0044967,38.5298039],[26.0045765,38.5297846],[26.0050705,38.5293976],[26.0053033,38.5291053],[26.0054396,38.5290579],[26.0055891,38.5290734],[26.0059491,38.5292294],[26.0063758,38.5293122],[26.0072378,38.5293695],[26.0077647,38.5293424],[26.0081687,38.5294346],[26.0085102,38.5293387],[26.0088686,38.5294406],[26.0100775,38.5296001],[26.0113338,38.5293983],[26.0118886,38.529551],[26.0126653,38.5294295],[26.0131942,38.5294745],[26.0138582,38.529427],[26.0141005,38.5294769],[26.0142368,38.5294295],[26.014162,38.5292145],[26.0136879,38.5290785],[26.0136635,38.5290249],[26.0137497,38.5288251],[26.0137347,38.5286992],[26.0131833,38.5286727],[26.012443,38.5284511],[26.0120561,38.5281514],[26.0116368,38.5279243],[26.0114926,38.5277646],[26.011851,38.5278666],[26.0122357,38.5280853],[26.0125004,38.5281168],[26.0125674,38.5280525],[26.0127401,38.5280766],[26.0128915,38.5281551],[26.0130398,38.5281255],[26.0133077,38.5282741],[26.0134184,38.528128],[26.0137484,38.5280322],[26.0138824,38.5279038],[26.0139141,38.5278041],[26.014114,38.5279809],[26.0142037,38.5279072],[26.0143184,38.5279053],[26.0146412,38.5279628],[26.0148009,38.527933],[26.0148562,38.52786],[26.0151917,38.5279623],[26.0154852,38.5282006],[26.0155998,38.5281986],[26.0157172,38.5282957],[26.0157437,38.5284214],[26.0160341,38.5285515],[26.0161673,38.5288015],[26.0163552,38.5289605],[26.0166215,38.529046],[26.0167272,38.5291343],[26.0171321,38.529668],[26.01749,38.5297519],[26.0175644,38.5299489],[26.0176466,38.5300195],[26.0179717,38.5301581],[26.0183004,38.5308373],[26.0184268,38.5308441],[26.018535,38.5310224],[26.018719,38.5310373],[26.0187918,38.5311802],[26.0191174,38.5313368],[26.0192261,38.5315331],[26.0191613,38.5316784],[26.0192696,38.5318568],[26.0195727,38.5320318],[26.0195982,38.5321214],[26.0195074,38.532159],[26.019421,38.5323498],[26.0193423,38.5324052],[26.0194021,38.5324943],[26.0195178,38.5325283],[26.0197641,38.5327223],[26.0199959,38.5328084],[26.0201335,38.532806],[26.0202442,38.5326599],[26.0202075,38.5325795],[26.0202738,38.5324882],[26.0205166,38.5325561],[26.0209998,38.5330163],[26.0217451,38.5330035],[26.0218503,38.5330737],[26.0220796,38.5330698],[26.0220803,38.5332455],[26.0220161,38.533616],[26.0221721,38.5339648],[26.0227803,38.5342516],[26.0233862,38.5350206],[26.0231719,38.5354613],[26.0226517,38.5356775],[26.0224638,38.5359331],[26.0216599,38.5359515],[26.0211088,38.5362448],[26.0208316,38.5371011],[26.0200211,38.5376017],[26.019831,38.5381141],[26.0192448,38.5382278],[26.0185053,38.538628],[26.0178644,38.5386841],[26.0167458,38.5393252],[26.016183,38.5393033],[26.0156604,38.5397448],[26.0149987,38.5396977],[26.0148417,38.539804],[26.0140244,38.5395748],[26.0137382,38.539805],[26.0131526,38.5395312],[26.0126524,38.5396164],[26.0128092,38.5396587],[26.0126256,38.5395312],[26.0123024,38.5397441],[26.0123976,38.5399181],[26.0123043,38.5399648],[26.0125065,38.5400694],[26.0124269,38.5404267],[26.0125492,38.5410329],[26.0118957,38.5416163],[26.0117895,38.5420776],[26.0115588,38.5422889],[26.0112818,38.5429784],[26.0109307,38.5431692],[26.0100467,38.5453109],[26.0101252,38.546481],[26.0103757,38.5473147],[26.0102899,38.5478117],[26.0100261,38.5480235],[26.0095831,38.5490088],[26.0087803,38.5495632],[26.0082926,38.5501032],[26.0080892,38.5501112],[26.0079761,38.5504826],[26.0075744,38.5509175],[26.0071247,38.5522543],[26.0070388,38.5524675],[26.0069284,38.5526226],[26.0068277,38.5531289],[26.0066865,38.5530052],[26.0064658,38.5541443],[26.0063137,38.5544533],[26.0063192,38.5546514],[26.006227,38.554635],[26.006217,38.5546892],[26.0061579,38.5546272],[26.0061624,38.5547893],[26.0059185,38.5546854],[26.0058143,38.5550656],[26.0056922,38.5552119],[26.0056832,38.5553021],[26.0053855,38.5557397],[26.0050405,38.5560745],[26.0049895,38.5563007],[26.0047905,38.5565744],[26.0048157,38.5566551],[26.0046813,38.5567745],[26.0046349,38.5567573],[26.0046848,38.5569006]]},{"id":16359,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u03a0\u03b9\u03c4\u03c5\u03cc\u03c2-\u03c0\u03b7\u03b3\u03ad\u03c2 \u0391\u03bc\u03c5\u03b8\u03bf\u03cd\u03bd\u03c4\u03b1\u03c2","description_GR":"","path":"Islands\/Islands_Chios_Pitios_Amithounda","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6734,"name_EN":"Chios: Pitios-Amithounda springs","description_EN":"","ascent_time":165,"descent_time":150,"marker":"No_marks","level":12,"ascent":475,"descent":138,"maxelev":977,"minelev":540,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.02515 38.47535,26.03744 38.51556)","views":22,"millestones":"0,26.0373488,38.4753523#1,26.0338452,38.4768147#2,26.0341113,38.4803949#3,26.0324001,38.4865426#4,26.0297296,38.4941159#5,26.0278851,38.5025012#6,26.0253385,38.5098673#6.7,26.0264353,38.5155361","x":26.0323014,"y":38.4908485,"coor":[[26.0373488,38.4753523],[26.0373284,38.4754427],[26.0374483,38.4756299],[26.0374394,38.4757201],[26.037129,38.476095],[26.0369013,38.476153],[26.0364639,38.4760885],[26.0354924,38.475781],[26.0350749,38.4756081],[26.0345324,38.4754733],[26.034511,38.4755277],[26.0347582,38.4757577],[26.0354595,38.4766466],[26.0358369,38.477433],[26.0357924,38.4774788],[26.0356299,38.4774096],[26.0353352,38.4771174],[26.0342802,38.4762887],[26.0337087,38.4759382],[26.0333281,38.4758547],[26.0332843,38.4759275],[26.0336122,38.4761741],[26.0338036,38.4764591],[26.0338808,38.4771697],[26.0339801,38.4774383],[26.0340631,38.4774864],[26.0343834,38.4778683],[26.0343271,38.4779053],[26.034269,38.4778793],[26.0338716,38.4776068],[26.0336985,38.4775648],[26.0335501,38.4775854],[26.0333942,38.4777503],[26.0333456,38.4780575],[26.0332027,38.4782762],[26.0336106,38.478107],[26.0337605,38.4781404],[26.0339006,38.4782281],[26.0345535,38.4790277],[26.0349751,38.4793448],[26.0352345,38.4796016],[26.0356199,38.4802617],[26.0359649,38.4807062],[26.0358945,38.4814644],[26.0358502,38.4815192],[26.0357692,38.4814936],[26.0356944,38.4812786],[26.0355164,38.4810654],[26.0350256,38.4807316],[26.0343547,38.480518],[26.0339127,38.4802913],[26.0336367,38.4802601],[26.0333986,38.4803543],[26.03302,38.4807484],[26.0328223,38.4810582],[26.0321027,38.4827827],[26.0318366,38.4843282],[26.031911,38.4853451],[26.0316492,38.4858182],[26.0313243,38.4869052],[26.0312771,38.4872664],[26.0314816,38.4871998],[26.0317291,38.4870333],[26.0318952,38.4868232],[26.0324822,38.4864976],[26.0322241,38.486876],[26.0321899,38.4872911],[26.0322266,38.4873716],[26.032034,38.4878615],[26.0319091,38.4883142],[26.0319053,38.4885846],[26.0318087,38.4888206],[26.0318685,38.4889096],[26.0318911,38.4893057],[26.0317854,38.4896229],[26.0320077,38.4897813],[26.0320685,38.4899064],[26.0322315,38.4899936],[26.0322844,38.490245],[26.0324491,38.4903954],[26.0323014,38.4908485],[26.0322811,38.4913534],[26.0322065,38.4915529],[26.0322915,38.4917227],[26.0322378,38.4918498],[26.0322733,38.4922997],[26.0320362,38.49243],[26.0319142,38.4925762],[26.0304898,38.4932948],[26.0302651,38.4934609],[26.0298102,38.4940004],[26.0294686,38.4944929],[26.0292549,38.4946408],[26.0291005,38.4948597],[26.0291708,38.4949126],[26.0291728,38.4949846],[26.02877,38.4957485],[26.0286874,38.4960743],[26.0283944,38.4966651],[26.0284447,38.4972319],[26.0287664,38.4980734],[26.0286596,38.49876],[26.0286247,38.4987426],[26.0284313,38.4992055],[26.0282861,38.4993432],[26.0281462,38.49967],[26.0280336,38.499744],[26.0280797,38.4997522],[26.0280863,38.4999864],[26.0283032,38.5003611],[26.0282987,38.501019],[26.0279253,38.5020166],[26.027839,38.5030273],[26.0277868,38.5032085],[26.0276433,38.5034092],[26.0271173,38.5038688],[26.0270326,38.5041226],[26.0268204,38.5043245],[26.0266646,38.5044939],[26.0265596,38.5048381],[26.0265353,38.505199],[26.0264049,38.5054535],[26.0257804,38.5060861],[26.0254082,38.5063088],[26.0252862,38.5064551],[26.0253256,38.5066346],[26.0252963,38.5068153],[26.0250135,38.5069554],[26.0249498,38.5071367],[26.0250007,38.507316],[26.0249551,38.5073258],[26.0249182,38.5072364],[26.0249332,38.5073623],[26.0251605,38.5077007],[26.0252171,38.5076727],[26.0252584,38.5075098],[26.0252836,38.5075905],[26.0253633,38.5075711],[26.0253674,38.5077152],[26.025515,38.5080731],[26.0254793,38.5084341],[26.0256009,38.5086843],[26.0256175,38.5088642],[26.0254891,38.5096053],[26.0254257,38.5097957],[26.0253136,38.5098877],[26.0255183,38.5102356],[26.025563,38.5106043],[26.0253981,38.5108594],[26.0252439,38.5114928],[26.0252519,38.511781],[26.0251041,38.5122341],[26.0251172,38.5127025],[26.0252419,38.5130608],[26.0252215,38.5131512],[26.0253513,38.5136896],[26.0256484,38.5144684],[26.0256417,38.5146397],[26.0261269,38.515172],[26.0262712,38.5154128],[26.0264353,38.5155361]]},{"id":16360,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u03a0\u03b9\u03c4\u03c5\u03cc\u03c2-\u038c\u03c1\u03bf\u03c2","description_GR":"","path":"Islands\/Islands_Chios_Pitios_Oros","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":409,"name_EN":"Chios: Pitios-Oros","description_EN":"","ascent_time":145,"descent_time":115,"marker":"No_marks","level":12,"ascent":770,"descent":34,"maxelev":1180,"minelev":442,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.02992 38.48756,26.05479 38.50824)","views":23,"millestones":"0,26.0547891,38.4875635#1,26.0467254,38.4916870#2,26.0375374,38.4947521#3,26.0304312,38.4988691#4,26.0336941,38.5040849#0.4,26.0421543,38.5079822","x":26.0298466,"y":38.5029565,"coor":[[26.0547891,38.4875635],[26.0547244,38.4877088],[26.0542037,38.4879432],[26.0536532,38.4879349],[26.0534143,38.4880021],[26.0531943,38.4879249],[26.0530239,38.4879819],[26.0526639,38.4882225],[26.052369,38.4883358],[26.0521302,38.4884527],[26.051765,38.4885131],[26.0515504,38.488625],[26.0513265,38.4888182],[26.0513029,38.4890709],[26.0512344,38.4890811],[26.0510824,38.4889756],[26.0510746,38.4890298],[26.0509959,38.4890853],[26.0506873,38.4891177],[26.0508291,38.4892684],[26.0506501,38.4894247],[26.0506751,38.4894964],[26.0505829,38.48948],[26.0505055,38.4895804],[26.0504019,38.4895642],[26.0504151,38.4896271],[26.0500629,38.4897414],[26.0502842,38.4898636],[26.0502853,38.4898997],[26.0502045,38.4898831],[26.0502071,38.4899731],[26.0497831,38.4899805],[26.0493976,38.4901315],[26.048872,38.4901947],[26.0480525,38.4904073],[26.0476288,38.4908292],[26.0474103,38.4912115],[26.0468924,38.4915449],[26.0465789,38.4918117],[26.0460485,38.4921093],[26.0459346,38.4921384],[26.0456341,38.4920535],[26.04568,38.4920527],[26.0447225,38.4922496],[26.0439603,38.4924612],[26.0433939,38.4927054],[26.0429386,38.4932269],[26.0428703,38.4932461],[26.0428341,38.4935892],[26.042743,38.4936088],[26.0424578,38.4932533],[26.042251,38.4932389],[26.04195,38.493136],[26.0412644,38.4932201],[26.0411628,38.4932759],[26.0408544,38.4933173],[26.0402651,38.4935619],[26.0401082,38.4936908],[26.039891,38.4941181],[26.0394163,38.4943606],[26.0388443,38.4944066],[26.0386398,38.4944732],[26.0385051,38.4945747],[26.0382061,38.4945439],[26.0377069,38.4947328],[26.0372269,38.4947862],[26.0373909,38.4949095],[26.0373224,38.4949197],[26.0369062,38.4948008],[26.0367048,38.49457],[26.0365189,38.4944831],[26.0364402,38.4945386],[26.0365683,38.4946084],[26.0360024,38.4948706],[26.035774,38.4949016],[26.0357179,38.4949476],[26.0358109,38.494991],[26.0355873,38.4951932],[26.0351508,38.4951647],[26.0349682,38.4951949],[26.0348337,38.4953054],[26.0345502,38.4954184],[26.034044,38.4953551],[26.0339668,38.4954646],[26.0330153,38.4958776],[26.0326686,38.49619],[26.0325665,38.4962278],[26.0325117,38.4963189],[26.0320902,38.4964163],[26.0316883,38.4968017],[26.0313261,38.4969702],[26.0314422,38.4970223],[26.0309761,38.4971655],[26.0307007,38.4975668],[26.0306707,38.4977205],[26.0307862,38.49816],[26.0307434,38.4982689],[26.0306527,38.4983065],[26.0306665,38.4983873],[26.0304578,38.4987153],[26.0303291,38.4994384],[26.0302101,38.4996928],[26.0300409,38.4997949],[26.0300457,38.5003715],[26.0299935,38.5007598],[26.0300496,38.5010742],[26.0300692,38.5010829],[26.0301901,38.501252],[26.030162,38.5014012],[26.0301361,38.5014242],[26.0301943,38.5016079],[26.0301548,38.5017572],[26.0300074,38.5018679],[26.0301251,38.5019244],[26.0301671,38.5021445],[26.0302714,38.5022328],[26.0302754,38.5023273],[26.0301161,38.5025734],[26.0299925,38.5026656],[26.0299708,38.5027066],[26.0299854,38.5027423],[26.0298027,38.5028987],[26.0298466,38.5029565],[26.0298427,38.5030196],[26.0297865,38.5030612],[26.0297743,38.5031875],[26.0299144,38.5033293],[26.0298991,38.5033971],[26.0300031,38.5034494],[26.0302761,38.5032194],[26.0304021,38.5031631],[26.0304799,38.5030491],[26.030634,38.5030239],[26.0306949,38.5029463],[26.0307587,38.5029993],[26.0309463,38.5029149],[26.0311072,38.5027995],[26.031298,38.5027827],[26.0314282,38.5027218],[26.0314681,38.5027392],[26.0315485,38.5027423],[26.031645,38.5028352],[26.0317506,38.5028964],[26.032009,38.5029866],[26.0320861,38.5029492],[26.0321799,38.5030242],[26.0323556,38.5032824],[26.0323534,38.503332],[26.03281,38.5034863],[26.0330295,38.5035951],[26.0331853,38.503633],[26.0332726,38.5037531],[26.033292,38.5038338],[26.0333503,38.5039184],[26.0333409,38.5039411],[26.0334401,38.5039529],[26.0336515,38.5040529],[26.0339034,38.5042422],[26.0341248,38.5044952],[26.0342436,38.5045652],[26.0342918,38.50465],[26.0342771,38.5047629],[26.0344676,38.5047055],[26.0345767,38.5048658],[26.0345492,38.5049834],[26.0345618,38.5051003],[26.0346471,38.5052025],[26.0347641,38.5052094],[26.0348771,38.5053021],[26.0348666,38.505514],[26.0350154,38.5057322],[26.0349866,38.5058318],[26.0350456,38.5058894],[26.0350595,38.5059252],[26.0351456,38.5059282],[26.0352159,38.5058549],[26.0353393,38.5058347],[26.0353865,38.5058564],[26.03544,38.5058465],[26.0355166,38.5058677],[26.0356073,38.50583],[26.0356666,38.5058245],[26.0356903,38.5058782],[26.0357899,38.5058764],[26.035878,38.5059245],[26.0360564,38.5061016],[26.0361287,38.5062265],[26.0362964,38.5063542],[26.0363524,38.5063037],[26.0363963,38.5063119],[26.0364574,38.5062928],[26.0365526,38.5062101],[26.0366376,38.5061771],[26.0366863,38.5062258],[26.0367293,38.506225],[26.0368008,38.5062688],[26.0368654,38.5062722],[26.0369205,38.5062442],[26.0370876,38.5062729],[26.0372479,38.506216],[26.0372743,38.506184],[26.0374618,38.5061762],[26.0375392,38.5060983],[26.0377978,38.5061974],[26.038003,38.5062029],[26.0381192,38.5061828],[26.0381234,38.5062548],[26.0382774,38.5063287],[26.0383208,38.5064181],[26.0386097,38.5065708],[26.0389489,38.5066054],[26.039035,38.506658],[26.0393607,38.5067199],[26.0394612,38.5068037],[26.039505,38.5068795],[26.0397228,38.507083],[26.0398069,38.5072167],[26.0399766,38.5073399],[26.04015,38.5075666],[26.0401997,38.5075748],[26.0402383,38.5075966],[26.0402968,38.5075596],[26.0404492,38.5075524],[26.040571,38.5075233],[26.0407463,38.5075653],[26.0408434,38.5075501],[26.0408631,38.5075903],[26.040849,38.5076491],[26.0408331,38.5076674],[26.0409019,38.5076932],[26.0409138,38.5077606],[26.0409584,38.5077913],[26.0409566,38.5078049],[26.0410151,38.5078174],[26.0411687,38.5078012],[26.0413516,38.5077034],[26.0416248,38.5077076],[26.0419598,38.5077964],[26.0420328,38.5077906],[26.0421416,38.5078383],[26.0421729,38.5078783],[26.0421604,38.5079686],[26.0421854,38.5079907],[26.0420817,38.5080241],[26.0421543,38.5079822]]},{"id":16361,"author":"AnaDigit","name_GR":"\u03a8\u03b1\u03c1\u03ac: \u039b\u03b9\u03bc\u03ac\u03bd\u03b9-\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03c9\u03bd \u03a8\u03b1\u03c1\u03ce\u03bd","path":"Islands\/Islands_Chios_Psara_ProfitisIlias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8327,"name_EN":"Psara: Port-Profitis Ilias","description_EN":"Ascent to the highest peak of Psara","ascent_time":215,"descent_time":185,"marker":"No_marks","level":12,"ascent":576,"descent":54,"maxelev":525,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.56474 38.53853,25.58635 38.59136)","views":14,"millestones":"0,25.5641235,38.5388278#1,25.5689031,38.5456081#2,25.5680439,38.5536773#3,25.5702781,38.5617364#4,25.5741323,38.5697238#5,25.5749164,38.5780242#6,25.5782612,38.5857732#7,25.5855720,38.5865880#8.3,25.5870333,38.5904375","x":25.5741849,"y":38.5710838,"coor":[[25.5641235,38.5388278],[25.5638543,38.5394397],[25.5638525,38.5398903],[25.5636274,38.5400915],[25.5636344,38.5402491],[25.5636506,38.5404021],[25.5636984,38.5405547],[25.5638635,38.5407958],[25.564144,38.5409993],[25.5643565,38.5412082],[25.56442,38.541293],[25.5646193,38.5415877],[25.5645259,38.5419764],[25.5644672,38.5421439],[25.5644691,38.542234],[25.5648895,38.5425708],[25.5650868,38.5426763],[25.565317,38.5427093],[25.5659909,38.5426011],[25.566337,38.5426866],[25.5665437,38.542828],[25.5668029,38.5431715],[25.5668673,38.5432968],[25.5676575,38.5442864],[25.5676692,38.5442953],[25.568257,38.5448461],[25.5687467,38.5453036],[25.5690811,38.545939],[25.5688706,38.5462842],[25.5676729,38.54767],[25.5676196,38.5478599],[25.5677459,38.5483899],[25.567639,38.5487518],[25.5673703,38.5490617],[25.5667472,38.5494305],[25.5666255,38.5496394],[25.5673447,38.5505895],[25.5674674,38.5510564],[25.5675805,38.5521002],[25.5679477,38.5536182],[25.5682734,38.5538211],[25.5687059,38.5539865],[25.5690939,38.5544139],[25.569332,38.5548072],[25.5694921,38.5553096],[25.569631,38.5558259],[25.5700581,38.556469],[25.5701676,38.5567559],[25.5697288,38.5578521],[25.5696694,38.5584522],[25.569363,38.5590375],[25.5695148,38.5596843],[25.5696223,38.5598811],[25.5701809,38.5601665],[25.5702999,38.5603631],[25.5703172,38.5611559],[25.5702739,38.5618053],[25.5701771,38.5621039],[25.5702417,38.5624365],[25.5709918,38.563679],[25.5716802,38.5641924],[25.5720848,38.5648538],[25.5724903,38.5650286],[25.5725388,38.565145],[25.5724751,38.5653802],[25.5726329,38.5657746],[25.572706,38.5664314],[25.5727289,38.5671835],[25.5726568,38.5676621],[25.5730219,38.5680897],[25.5735476,38.5690378],[25.5739437,38.5693029],[25.574062,38.5694635],[25.5741496,38.5697957],[25.574506,38.5703496],[25.5744026,38.5705087],[25.5741712,38.5709849],[25.5741849,38.5710838],[25.5742446,38.5711912],[25.5745815,38.5713759],[25.5745736,38.5715382],[25.574728,38.5717794],[25.5748522,38.5722103],[25.5742629,38.5730833],[25.5741394,38.5740627],[25.573703,38.5751048],[25.5737239,38.5755371],[25.5737731,38.5756896],[25.5747507,38.5770236],[25.5749468,38.5778545],[25.5748549,38.5783784],[25.5750484,38.5788264],[25.5750113,38.5792324],[25.5748605,38.5796849],[25.5748692,38.5800813],[25.5747797,38.5801907],[25.5748233,38.5811363],[25.5751438,38.5816185],[25.5754667,38.5816863],[25.5758266,38.5818707],[25.5761885,38.5826678],[25.5766301,38.5829142],[25.5767971,38.5832003],[25.5769825,38.5832789],[25.5772645,38.5835724],[25.5773737,38.5838413],[25.5772992,38.5841126],[25.5775172,38.585155],[25.5778268,38.5852995],[25.577856,38.5855875],[25.5780868,38.5856384],[25.5782383,38.5857445],[25.5786633,38.5862795],[25.5787666,38.586242],[25.5795288,38.5869707],[25.579897,38.5875334],[25.5801911,38.5878538],[25.5809066,38.5890697],[25.5812069,38.5881014],[25.5817772,38.5874089],[25.5823309,38.5870049],[25.583244,38.5867582],[25.5847095,38.5865762],[25.5855363,38.586583],[25.5866532,38.5867301],[25.586908,38.5868348],[25.587271,38.5871542],[25.5871804,38.5872095],[25.5867448,38.5872425],[25.5859256,38.587578],[25.5855191,38.5878899],[25.5852057,38.5882546],[25.5850212,38.5887437],[25.5850391,38.5895544],[25.5852544,38.5904707],[25.5856112,38.5910335],[25.585727,38.591077],[25.5856735,38.5907353],[25.5857238,38.5904102],[25.5859306,38.5898938],[25.586155,38.5896565],[25.5863703,38.5895274],[25.5866327,38.5894517],[25.5870344,38.5894463],[25.5874298,38.5896752],[25.5874775,38.5897557],[25.5869495,38.5897628],[25.5867101,38.5898382],[25.5866203,38.5899295],[25.5865376,38.5903451],[25.5867642,38.5907295],[25.586985,38.5908527],[25.5870408,38.5907799],[25.5870333,38.5904375]]},{"id":16362,"author":"AnaDigit","name_GR":"\u03a8\u03b1\u03c1\u03ac: \u039b\u03b9\u03bc\u03ac\u03bd\u03b9-\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2","description_GR":"\u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c4\u03c9\u03bd \u03a8\u03b1\u03c1\u03ce\u03bd","path":"Islands\/Islands_Chios_Psara_Profitisiias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":8327,"name_EN":"Psara: Port-Profitis Ilias","description_EN":"Ascent to the highest peak of Psara","ascent_time":215,"descent_time":185,"marker":"No_marks","level":12,"ascent":576,"descent":54,"maxelev":525,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.56474 38.59136,25.58635 38.53853)","views":13,"millestones":"0,25.5641235,38.5388278#1,25.5689029,38.5456091#2,25.5680435,38.5536780#3,25.5702774,38.5617374#4,25.5741311,38.5697247#5,25.5749147,38.5780254#6,25.5782605,38.5857742#7,25.5855720,38.5865882#8.3,25.5870319,38.5904376","x":25.5741834,"y":38.5710839,"coor":[[25.5641235,38.5388278],[25.563855,38.5394397],[25.5638533,38.5398903],[25.5636281,38.5400915],[25.5636351,38.5402491],[25.5636506,38.5404021],[25.5636991,38.5405547],[25.5638643,38.5407958],[25.5641448,38.5409993],[25.5643572,38.5412082],[25.5644215,38.5412929],[25.56462,38.5415877],[25.5645266,38.5419764],[25.5644679,38.5421439],[25.5644698,38.542234],[25.5648902,38.5425708],[25.5650875,38.5426763],[25.5653177,38.5427092],[25.5659909,38.5426011],[25.566337,38.5426866],[25.5665437,38.542828],[25.5668021,38.5431715],[25.5668673,38.5432968],[25.5676575,38.5442864],[25.5676692,38.5442953],[25.568257,38.5448461],[25.568746,38.5453036],[25.5690796,38.545939],[25.5688691,38.5462842],[25.5676714,38.54767],[25.5676182,38.5478599],[25.5677445,38.5483899],[25.5676376,38.5487518],[25.5673689,38.5490618],[25.5667458,38.5494306],[25.5666241,38.5496394],[25.567344,38.5505895],[25.567466,38.5510565],[25.567579,38.5521002],[25.5679462,38.5536182],[25.568272,38.5538211],[25.5687052,38.5539865],[25.5690932,38.5544139],[25.5693312,38.5548072],[25.5694913,38.5553096],[25.5696295,38.5558259],[25.5700567,38.556469],[25.5701662,38.5567559],[25.5697274,38.5578522],[25.569668,38.5584522],[25.5693623,38.5590375],[25.569514,38.5596843],[25.5696216,38.5598811],[25.5701801,38.5601665],[25.5702992,38.5603631],[25.5703164,38.5611559],[25.5702732,38.5618053],[25.5701764,38.5621039],[25.570241,38.5624365],[25.5709911,38.563679],[25.5716795,38.5641924],[25.5720841,38.5648538],[25.5724896,38.5650286],[25.5725381,38.5651451],[25.5724743,38.5653802],[25.5726321,38.5657746],[25.5727053,38.5664314],[25.5727281,38.5671835],[25.5726554,38.5676621],[25.5730205,38.5680897],[25.5735462,38.5690379],[25.5739422,38.5693029],[25.5740605,38.5694635],[25.5741481,38.5697957],[25.5745046,38.5703496],[25.5744011,38.5705087],[25.5741698,38.5709849],[25.5741834,38.5710839],[25.5742432,38.5711912],[25.5745801,38.5713759],[25.5745721,38.5715382],[25.5747266,38.5717794],[25.5748508,38.5722103],[25.5742615,38.5730833],[25.5741387,38.5740627],[25.5737022,38.5751048],[25.5737232,38.5755371],[25.5737724,38.5756896],[25.5747493,38.5770236],[25.5749454,38.5778545],[25.5748535,38.5783784],[25.5750469,38.5788264],[25.5750099,38.5792324],[25.5748591,38.579685],[25.5748677,38.5800813],[25.5747783,38.5801907],[25.5748219,38.5811363],[25.5751424,38.5816186],[25.5754653,38.5816863],[25.5758252,38.5818707],[25.576187,38.5826678],[25.5766287,38.5829142],[25.5767957,38.5832003],[25.5769811,38.5832789],[25.577263,38.5835725],[25.5773722,38.5838413],[25.5772978,38.5841127],[25.5775158,38.585155],[25.5778253,38.5852995],[25.5778546,38.5855875],[25.5780853,38.5856385],[25.5782369,38.5857445],[25.5786619,38.5862795],[25.5787651,38.586242],[25.5795274,38.5869707],[25.5798956,38.5875334],[25.5801897,38.5878538],[25.5809052,38.5890697],[25.5812054,38.5881014],[25.5817758,38.5874089],[25.5823295,38.5870049],[25.5832425,38.5867583],[25.5847081,38.5865762],[25.5855348,38.586583],[25.5866517,38.5867301],[25.5869066,38.5868348],[25.5872696,38.5871543],[25.5871789,38.5872096],[25.5867434,38.5872425],[25.5859241,38.587578],[25.5855177,38.5878899],[25.5852042,38.5882546],[25.5850198,38.5887437],[25.5850376,38.5895545],[25.585253,38.5904707],[25.5856098,38.5910336],[25.5857256,38.591077],[25.5856721,38.5907353],[25.5857224,38.5904103],[25.5859292,38.5898938],[25.5861536,38.5896565],[25.5863689,38.5895274],[25.5866313,38.5894518],[25.587033,38.5894463],[25.5874284,38.5896752],[25.5874761,38.5897557],[25.5869481,38.5897629],[25.5867087,38.5898382],[25.5866188,38.5899295],[25.5865361,38.5903452],[25.5867627,38.5907296],[25.5869836,38.5908527],[25.5870394,38.5907799],[25.5870319,38.5904376]]},{"id":16363,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03b5\u03bb\u03b9\u03bd\u03b1\u03af\u03bf \u03b1\u03c0\u03cc \u03c4\u03b7 \u03a3\u03c0\u03b1\u03c1\u03c4\u03bf\u03cd\u03bd\u03c4\u03b1","description_GR":"","path":"Islands\/Islands_Chios_Spartounda_Pelineo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":5426,"name_EN":"Chios: Ascent to Pelineo Mt from Spartounda","description_EN":"","ascent_time":150,"descent_time":125,"marker":"Red_dots","level":12,"ascent":753,"descent":10,"maxelev":1284,"minelev":527,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.99031 38.5457,26.00437 38.56084)","views":36,"millestones":"0,25.9909426,38.5461556#1,25.9932772,38.5498773#2,25.9906006,38.5559877#3,25.9946663,38.5575252#4,25.9984472,38.5586610#5,26.0005015,38.5578244#5.4,26.0046848,38.5569006","x":25.9943222,"y":38.5581409,"coor":[[25.9909426,38.5461556],[25.9909575,38.546696],[25.9911676,38.5468276],[25.9913147,38.546753],[25.9914292,38.5463275],[25.9916652,38.5459135],[25.9917804,38.5459296],[25.9918641,38.5460543],[25.9918888,38.5465314],[25.9917536,38.5470383],[25.9918493,38.5471809],[25.9928668,38.5466319],[25.9932002,38.5462388],[25.993279,38.5461834],[25.9933603,38.546218],[25.9932989,38.5469039],[25.9933654,38.5476507],[25.9935005,38.5479728],[25.9937972,38.5483281],[25.9933816,38.5486506],[25.9932404,38.5489413],[25.993372,38.5491373],[25.9936879,38.5493572],[25.9937403,38.5495906],[25.993641,38.5497365],[25.9926649,38.5501225],[25.9925638,38.5502549],[25.9926242,38.550362],[25.9930542,38.5504043],[25.9930844,38.5504083],[25.9932138,38.5505232],[25.9930791,38.5510481],[25.9929255,38.551303],[25.9922229,38.5520358],[25.9919256,38.5524914],[25.9917012,38.5526755],[25.9917473,38.5530982],[25.9915351,38.5533091],[25.9910523,38.5541102],[25.990872,38.5546449],[25.9909428,38.5547158],[25.991057,38.5546958],[25.9913946,38.5544558],[25.9915791,38.5544887],[25.9916385,38.5545598],[25.9913801,38.5547624],[25.9911327,38.5553614],[25.9908302,38.5556278],[25.9903879,38.5558156],[25.9901744,38.5559814],[25.9902796,38.5560517],[25.9910441,38.5558945],[25.9916521,38.5558842],[25.992526,38.5555359],[25.9933584,38.5553415],[25.9933494,38.5554317],[25.9927624,38.5557842],[25.9925849,38.5560034],[25.9925724,38.5563821],[25.9930593,38.556563],[25.9930827,38.5569952],[25.9930523,38.5571398],[25.9927735,38.5574329],[25.9925778,38.5578237],[25.9926376,38.5579128],[25.9927408,38.5579111],[25.9935099,38.5575015],[25.9936595,38.557517],[25.9936544,38.5585803],[25.9937372,38.558669],[25.9938168,38.5586406],[25.994216,38.5581382],[25.9943222,38.5581409],[25.9945944,38.5577128],[25.9949159,38.5568873],[25.9949827,38.5563996],[25.9948521,38.5562396],[25.9949316,38.5562113],[25.9953046,38.5564212],[25.9961718,38.5574877],[25.9966521,38.5582544],[25.9970094,38.5591404],[25.9973271,38.5594233],[25.9973331,38.5588104],[25.9975091,38.5581226],[25.9974859,38.557285],[25.9975537,38.5572478],[25.9976236,38.5572827],[25.998417,38.5585847],[25.9985651,38.5589606],[25.998827,38.5592985],[25.9989078,38.5593152],[25.9988773,38.5590454],[25.9989776,38.5585211],[25.9988958,38.5576394],[25.9989631,38.5575842],[25.9997825,38.5585794],[25.9999902,38.5590354],[26.000465,38.559604],[26.001078,38.5606027],[26.0011942,38.5606548],[26.0009209,38.559488],[26.000655,38.559006],[26.0006186,38.55852],[26.0004819,38.5581439],[26.0005208,38.5574765],[26.0004432,38.5571624],[26.0000532,38.5567546],[25.9996558,38.5560766],[25.999455,38.5558727],[25.9999045,38.5556308],[26.0007373,38.5554544],[26.0005169,38.5555753],[26.0003742,38.555812],[26.0003795,38.5560011],[26.0005241,38.5562509],[26.0006049,38.5562676],[26.0005515,38.5559982],[26.0007525,38.5557965],[26.0008108,38.5558315],[26.0008665,38.556182],[26.0009764,38.5560089],[26.0013624,38.5558582],[26.0013669,38.5560203],[26.0015395,38.5560353],[26.001813,38.5559676],[26.0018384,38.5560573],[26.0019651,38.5560731],[26.0019561,38.5561634],[26.0022304,38.5561226],[26.002302,38.5562205],[26.0027289,38.5563033],[26.0027877,38.5563564],[26.0028785,38.5563188],[26.0028815,38.5564269],[26.0033158,38.5563654],[26.0033398,38.556401],[26.0035457,38.5563795],[26.00364,38.556468],[26.0038674,38.556392],[26.0038691,38.556455],[26.0040746,38.5564155],[26.0043679,38.5566447],[26.0045115,38.5568585],[26.0046848,38.5569006]]},{"id":16364,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03a7\u03af\u03bf\u03c5, \u03c3\u03ba\u03ad\u03bb\u03bf\u03c2 1\u03bf","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u03a3\u03b9\u03b4\u03b7\u03c1\u03bf\u03cd\u03bd\u03c4\u03b1 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0399\u03c3\u03af\u03b4\u03c9\u03c1\u03bf","path":"Islands\/Islands_Chios_Traverse1","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":9797,"name_EN":"Chios: Chios crossing, section 1","description_EN":"From Sidhirounda to Aghios Isidhoros","ascent_time":245,"descent_time":230,"marker":"No_marks","level":12,"ascent":599,"descent":282,"maxelev":566,"minelev":137,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(25.96756 38.43525,26.02714 38.46245)","views":24,"millestones":"0,25.9668561,38.4365669#1,25.9760801,38.4365766#2,25.9801024,38.4398258#3,25.9865055,38.4450773#4,25.9934476,38.4496401#5,25.9962621,38.4557141#6,26.0001141,38.4561453#7,26.0061933,38.4552570#8,26.0143963,38.4529555#9,26.0218006,38.4589554#9.8,26.0278720,38.4612841","x":25.9968924,"y":38.4524766,"coor":[[25.9668561,38.4365669],[25.9672662,38.4368529],[25.967968,38.4373818],[25.9684568,38.4376619],[25.9688276,38.4378179],[25.969368,38.4378899],[25.9705273,38.437546],[25.9707534,38.4374341],[25.9708859,38.4372516],[25.9710948,38.4365092],[25.9712388,38.4363266],[25.971442,38.436215],[25.9715675,38.4361949],[25.9722122,38.4363102],[25.9729524,38.436568],[25.9731741,38.4367175],[25.9734334,38.4369835],[25.9736308,38.4370793],[25.9738593,38.4370574],[25.9743936,38.4369042],[25.9750475,38.4368571],[25.9757323,38.4366834],[25.9760366,38.4365791],[25.9762425,38.4365666],[25.9765215,38.4367151],[25.9767018,38.4368923],[25.9772765,38.4366483],[25.9772432,38.4366849],[25.9773029,38.436774],[25.9773334,38.4370529],[25.9775233,38.4372929],[25.9777204,38.4373797],[25.9777009,38.4375062],[25.9778018,38.4374234],[25.9777151,38.4376051],[25.9776799,38.4379932],[25.9777844,38.4380455],[25.9778346,38.4382068],[25.9778964,38.4379535],[25.9780523,38.4377886],[25.978258,38.4377671],[25.9783966,38.4378098],[25.9784785,38.4378715],[25.9783781,38.4379724],[25.9784147,38.4380528],[25.9782227,38.4381552],[25.9784737,38.4381149],[25.9784311,38.4382328],[25.9790659,38.4388258],[25.9796833,38.4387793],[25.979393,38.4390545],[25.9792855,38.4397322],[25.9793318,38.4397494],[25.9794652,38.439603],[25.9796014,38.4395556],[25.9797554,38.4393187],[25.9797822,38.4394625],[25.9798489,38.4393893],[25.9799065,38.4393973],[25.9798242,38.4397411],[25.9801068,38.4396012],[25.980289,38.439562],[25.9803816,38.4395965],[25.9800679,38.4398541],[25.9799364,38.4400726],[25.9800499,38.4400346],[25.980142,38.4400511],[25.979763,38.440436],[25.9795259,38.4405661],[25.9796534,38.440618],[25.9796135,38.440835],[25.9799022,38.4409202],[25.980314,38.4408952],[25.9810379,38.4409731],[25.981478,38.4411459],[25.9815263,38.4412352],[25.9818051,38.4413746],[25.9821516,38.4414228],[25.9822432,38.4414213],[25.9822919,38.4415286],[25.9824679,38.4416788],[25.9827004,38.441801],[25.9827616,38.4419441],[25.9828659,38.4419874],[25.9830468,38.4423178],[25.9834077,38.4425279],[25.9835384,38.4426969],[25.9837246,38.4428019],[25.9838485,38.4431422],[25.9843384,38.4434583],[25.9848816,38.4436293],[25.985012,38.4437893],[25.9852315,38.4438577],[25.9855058,38.4442495],[25.9855999,38.444338],[25.9858319,38.4444422],[25.9858799,38.4445225],[25.9863883,38.4446761],[25.9865078,38.4448543],[25.9865022,38.4450706],[25.9866356,38.4453387],[25.98689,38.4454245],[25.9871776,38.4454647],[25.9873404,38.445552],[25.9875819,38.445584],[25.9879929,38.4459464],[25.9882712,38.4460679],[25.9893353,38.4460138],[25.9895583,38.4462082],[25.9896544,38.4463688],[25.9896703,38.4465307],[25.989869,38.4466715],[25.9899063,38.446779],[25.9898644,38.4469239],[25.9897724,38.4469885],[25.9897564,38.4472411],[25.989944,38.4482291],[25.9903804,38.4491769],[25.9905158,38.4491025],[25.9905022,38.4490216],[25.9907278,38.4488916],[25.9908423,38.4488897],[25.9910106,38.4487607],[25.9917317,38.4487304],[25.9923819,38.4490437],[25.992477,38.4491682],[25.9928719,38.4493598],[25.9929431,38.4494487],[25.9936146,38.4496986],[25.9943495,38.4501726],[25.9947663,38.4503277],[25.9948395,38.4504887],[25.9949784,38.4505404],[25.995182,38.4508613],[25.9955289,38.4509725],[25.9956693,38.4510783],[25.9958067,38.4510759],[25.9960846,38.4511793],[25.9964986,38.4512353],[25.9965689,38.4512882],[25.9969142,38.4513454],[25.9971891,38.4513407],[25.9972986,38.4514154],[25.9972308,38.4518671],[25.9971118,38.4521215],[25.9968668,38.452378],[25.9968924,38.4524766],[25.9964666,38.4532408],[25.9961129,38.4537154],[25.996106,38.4538777],[25.9957262,38.4542356],[25.995765,38.4543972],[25.9967605,38.4551732],[25.996879,38.4553153],[25.9968929,38.4554052],[25.9967594,38.4555516],[25.9964069,38.4556478],[25.996124,38.4557787],[25.9960358,38.4559064],[25.9960951,38.4559775],[25.9961115,38.4561574],[25.9959773,38.4562768],[25.9951809,38.4564886],[25.9949,38.4566917],[25.9948014,38.4568555],[25.9948029,38.4573241],[25.9947286,38.4575416],[25.9948467,38.4576657],[25.994809,38.4579637],[25.9949365,38.4580156],[25.9950309,38.4576986],[25.9951958,38.4574435],[25.9956943,38.4572368],[25.9959628,38.4569979],[25.9964747,38.4568631],[25.9965978,38.4567528],[25.9969382,38.4566299],[25.9970149,38.4565024],[25.9975507,38.4564032],[25.9978717,38.4559922],[25.9980186,38.4559176],[25.9985573,38.4553498],[25.9990911,38.455201],[25.9997415,38.4555143],[25.9998032,38.4556754],[26.0000497,38.4558875],[26.0001105,38.4560126],[26.0001222,38.4564359],[26.0002369,38.4568574],[26.0008007,38.4565234],[26.0010741,38.4564647],[26.0013077,38.4562084],[26.0016284,38.4562029],[26.0019753,38.4563141],[26.0021879,38.4565448],[26.0023622,38.4566319],[26.0026451,38.4565009],[26.0028059,38.4565162],[26.0032462,38.4566889],[26.003553,38.457008],[26.0039476,38.4571905],[26.0042395,38.4569692],[26.0044762,38.4564155],[26.0046461,38.4563405],[26.0048507,38.456283],[26.0050569,38.4562794],[26.0055731,38.4562976],[26.0057922,38.4563479],[26.0059869,38.4563446],[26.0061797,38.4562692],[26.0065148,38.4563716],[26.0071682,38.4563784],[26.0072586,38.4563318],[26.0073119,38.4561867],[26.007228,38.456053],[26.0070758,38.4559385],[26.0070026,38.4557775],[26.0061878,38.4553229],[26.0062132,38.4549981],[26.0065234,38.4546143],[26.0067159,38.4545299],[26.0068693,38.454275],[26.0076262,38.4534691],[26.0077556,38.4531785],[26.0079015,38.4530679],[26.0080778,38.4528125],[26.0084597,38.4525357],[26.0086295,38.4524607],[26.0088461,38.4524209],[26.0092249,38.4524415],[26.0096123,38.4523627],[26.0100744,38.4520845],[26.0102454,38.4520545],[26.010357,38.4519444],[26.0106637,38.4518491],[26.0108893,38.451719],[26.0111064,38.4516973],[26.0115713,38.4519326],[26.0119373,38.4519083],[26.0120904,38.4520589],[26.0120715,38.4522034],[26.0122244,38.4523449],[26.0124874,38.4527369],[26.0126279,38.4528426],[26.0129939,38.4528183],[26.0134672,38.4529453],[26.0139453,38.4528289],[26.0142774,38.4528232],[26.0145204,38.4530894],[26.0146897,38.453073],[26.0150207,38.4531033],[26.0153116,38.4532605],[26.0156564,38.4532996],[26.0158198,38.4534049],[26.016109,38.4539136],[26.016554,38.4542573],[26.0171367,38.4546077],[26.0176127,38.4552393],[26.0181982,38.4556888],[26.0187571,38.456418],[26.0190032,38.456612],[26.0194488,38.4568206],[26.0196355,38.4569435],[26.01979,38.4571391],[26.0198289,38.4573006],[26.0197877,38.4578781],[26.019894,38.4579934],[26.0201963,38.4581503],[26.0204091,38.458381],[26.0207652,38.4584109],[26.021446,38.4585793],[26.021704,38.4587911],[26.0218002,38.4589517],[26.0218311,38.4592395],[26.0219372,38.4593458],[26.0222391,38.4594847],[26.0223681,38.4595906],[26.0232617,38.4599897],[26.0236083,38.4600918],[26.0239006,38.4598886],[26.0242397,38.4597205],[26.0244302,38.459564],[26.0252719,38.4600541],[26.0253429,38.460134],[26.0254232,38.4605471],[26.0256339,38.4607056],[26.0262152,38.4610019],[26.026545,38.4613206],[26.0270067,38.4614388],[26.0272689,38.4613892],[26.0274756,38.4614036],[26.027872,38.4612841]]},{"id":16365,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03a7\u03af\u03bf\u03c5, \u03c3\u03ba\u03ad\u03bb\u03bf\u03c2 2\u03bf","description_GR":"\u0391\u03c0\u03cc \u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0399\u03c3\u03af\u03b4\u03c9\u03c1\u03bf \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u0391\u03c1\u03b2\u03b1\u03bd\u03af\u03c4\u03b9\u03c3\u03c3\u03b1","path":"Islands\/Islands_Chios_Traverse2","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":10289,"name_EN":"Chios: Chios crossing, section 2","description_EN":"From Aghios Isidhoros to Panaghia Arvanitissa","ascent_time":245,"descent_time":240,"marker":"No_marks","level":12,"ascent":395,"descent":238,"maxelev":810,"minelev":483,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.02788 38.40337,26.0696 38.46168)","views":16,"millestones":"0,26.0278734,38.4612841#1,26.0377018,38.4609171#2,26.0460041,38.4577534#3,26.0501736,38.4538047#4,26.0509031,38.4464905#5,26.0474380,38.4389187#6,26.0554144,38.4327306#7,26.0596955,38.4268522#8,26.0658625,38.4202725#9,26.0698314,38.4123706#10.3,26.0679923,38.4033953","x":26.0547045,"y":38.4332208,"coor":[[26.0278734,38.4612841],[26.0282765,38.461151],[26.0284968,38.4608318],[26.0292054,38.4607654],[26.0296252,38.460614],[26.030453,38.4607078],[26.0309226,38.4606996],[26.0311413,38.4607319],[26.0312752,38.4606034],[26.0312839,38.4605041],[26.0314058,38.4603578],[26.0318505,38.460278],[26.0324263,38.4603762],[26.0327424,38.460614],[26.033211,38.4605698],[26.0334417,38.4606199],[26.0336987,38.4607956],[26.033971,38.4611063],[26.0340756,38.4611585],[26.0342798,38.4610829],[26.0343549,38.4609014],[26.0344998,38.4607547],[26.0353105,38.4606505],[26.0355078,38.4607372],[26.0357544,38.4609491],[26.0365493,38.4610975],[26.0372376,38.4611216],[26.0377585,38.4608963],[26.0378735,38.4609123],[26.0383324,38.4613368],[26.0387608,38.4614916],[26.0388866,38.4614804],[26.0390658,38.4613331],[26.0391063,38.4611431],[26.0393497,38.4608325],[26.0397328,38.4606006],[26.0400062,38.4605418],[26.0406693,38.4600797],[26.0407627,38.4597356],[26.0407095,38.4594752],[26.0407521,38.4593573],[26.0408854,38.4596163],[26.0411201,38.4598105],[26.0413382,38.4598247],[26.0417829,38.4597449],[26.042124,38.4596488],[26.042711,38.4593322],[26.0431651,38.4591801],[26.0432305,38.4590618],[26.0441293,38.4588299],[26.0442429,38.4587919],[26.0442864,38.45871],[26.0445835,38.4586282],[26.0453517,38.4582364],[26.0466984,38.4572307],[26.0476145,38.4568001],[26.0482966,38.456608],[26.0491867,38.4564753],[26.0508445,38.4563381],[26.0509223,38.4554447],[26.0510552,38.4552802],[26.0513374,38.4551311],[26.0516975,38.4548725],[26.0526468,38.4544053],[26.0526776,38.4542786],[26.0525855,38.4542622],[26.0520711,38.4543072],[26.0514506,38.454246],[26.0500848,38.4537653],[26.048449,38.4534606],[26.0482741,38.4533555],[26.0482492,38.4532838],[26.0487124,38.4522395],[26.0488488,38.4513901],[26.0494791,38.4501806],[26.0496349,38.4500157],[26.0502202,38.449645],[26.0503981,38.4494527],[26.0505946,38.4491068],[26.0507765,38.4482476],[26.0510002,38.447649],[26.0510304,38.4466933],[26.0508864,38.4464615],[26.050385,38.4461549],[26.0488107,38.4447768],[26.0479444,38.4441251],[26.0471992,38.4437056],[26.0470333,38.4435103],[26.0469198,38.4431428],[26.0469572,38.4416284],[26.0467903,38.4401805],[26.0472193,38.4391458],[26.0473516,38.4389633],[26.048142,38.438553],[26.0485352,38.4382758],[26.0491779,38.4375076],[26.050095,38.4367166],[26.0508818,38.4361802],[26.0517433,38.4358588],[26.0519657,38.4356206],[26.0522726,38.4351286],[26.0525965,38.4348346],[26.0530252,38.4346018],[26.05366,38.4343654],[26.0540208,38.4341609],[26.0547045,38.4332208],[26.0554912,38.4326843],[26.0564493,38.4317304],[26.0567431,38.4315901],[26.0574759,38.4315772],[26.0576925,38.4315373],[26.0578611,38.4314262],[26.0580382,38.4312069],[26.0585541,38.4308194],[26.058573,38.4306749],[26.0584554,38.4305688],[26.0568109,38.4300931],[26.0568936,38.4297762],[26.0575593,38.4286112],[26.0593075,38.4272468],[26.0601317,38.4264214],[26.0602731,38.4257521],[26.0604828,38.4250726],[26.0605119,38.4246576],[26.0605759,38.4244942],[26.0605312,38.4245311],[26.0605703,38.4242961],[26.0605337,38.4242156],[26.0606003,38.4241424],[26.0606802,38.424132],[26.0608911,38.423894],[26.0609595,38.4238838],[26.0609315,38.423704],[26.0612942,38.4235715],[26.0614117,38.4232721],[26.0617116,38.4229424],[26.0619037,38.4228489],[26.0620263,38.4227296],[26.0627721,38.4223741],[26.0635587,38.4222431],[26.064429,38.4218313],[26.0646169,38.4215937],[26.06491,38.4214263],[26.0654347,38.4209485],[26.0658101,38.4204553],[26.0658935,38.4201655],[26.0661048,38.4199455],[26.0660872,38.4197295],[26.0662517,38.4194743],[26.0663132,38.4192209],[26.0665741,38.4187298],[26.0665752,38.4187658],[26.0667412,38.4185646],[26.0668681,38.4181929],[26.0669472,38.4181555],[26.0669326,38.4180476],[26.0670825,38.418081],[26.0673305,38.4179415],[26.0676454,38.4177377],[26.0677992,38.4175097],[26.068117,38.416603],[26.0684762,38.4159479],[26.0688461,38.41486],[26.0689559,38.4146959],[26.0689591,38.4144075],[26.0690224,38.4142172],[26.069443,38.4137051],[26.0696475,38.4136474],[26.069823,38.413374],[26.0698522,38.4123913],[26.0697814,38.4123205],[26.069705,38.4120515],[26.0696818,38.4116374],[26.0696019,38.4116478],[26.069498,38.4112172],[26.0690507,38.4107925],[26.0687163,38.4103118],[26.0684614,38.4102082],[26.068354,38.4100569],[26.0681793,38.4099519],[26.0678224,38.4098861],[26.0674235,38.4099562],[26.0673533,38.4099034],[26.0672523,38.4095718],[26.0675001,38.4090267],[26.0675174,38.4088282],[26.067799,38.4082646],[26.0679911,38.4081711],[26.068063,38.4078814],[26.0681301,38.4078262],[26.068127,38.4077181],[26.0683898,38.4076955],[26.0684653,38.4075319],[26.0683197,38.4072461],[26.0680009,38.4069094],[26.0677464,38.4064183],[26.0680223,38.4060529],[26.0682575,38.4058686],[26.0684048,38.4058119],[26.0684368,38.4057303],[26.0684522,38.4054687],[26.0683509,38.405128],[26.0682082,38.4049413],[26.0683508,38.4047226],[26.0684887,38.4047381],[26.0683337,38.4045246],[26.0682188,38.4045086],[26.0680488,38.4041692],[26.0680609,38.4037905],[26.0679923,38.4033953]]},{"id":16366,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0394\u03b9\u03ac\u03c3\u03c7\u03b9\u03c3\u03b7 \u03a7\u03af\u03bf\u03c5, \u03c3\u03ba\u03ad\u03bb\u03bf\u03c2 3\u03bf","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u0391\u03c1\u03b2\u03b1\u03bd\u03af\u03c4\u03b9\u03c3\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd \u03c0\u03cc\u03bb\u03b7 \u03c4\u03b7\u03c2 \u03a7\u03af\u03bf\u03c5","path":"Islands\/Islands_Chios_Traverse3","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":12305,"name_EN":"Chios: Chios crossing, section 3","description_EN":"From Panaghia Arvanitissa to Chios town","ascent_time":280,"descent_time":295,"marker":"No_marks","level":12,"ascent":231,"descent":868,"maxelev":718,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.06748 38.4034,26.13757 38.37088)","views":14,"millestones":"0,26.0679916,38.4033953#1,26.0705761,38.3979570#2,26.0785859,38.3944162#3,26.0885579,38.3978093#4,26.0938103,38.3984502#5,26.0991101,38.3971359#6,26.1013856,38.3951501#7,26.1058491,38.3932907#8,26.1133961,38.3916443#9,26.1221835,38.3911451#10,26.1309371,38.3872258#11,26.1341669,38.3796656#12.3,26.1375708,38.3710683","x":26.1008122,"y":38.3950035,"coor":[[26.0679916,38.4033953],[26.0678865,38.4028204],[26.0679066,38.402721],[26.0681967,38.4024545],[26.0686595,38.4022211],[26.0687808,38.4020567],[26.0688217,38.4018848],[26.0686777,38.4016531],[26.0684681,38.4015306],[26.0680285,38.4013762],[26.0675115,38.4013132],[26.0674185,38.4012653],[26.0690211,38.401246],[26.069161,38.4013337],[26.0696694,38.4014959],[26.069899,38.4011134],[26.0703907,38.4006902],[26.0707319,38.4002066],[26.0707278,38.4000625],[26.0706217,38.3999562],[26.0707404,38.3997018],[26.0706755,38.3994327],[26.0707059,38.399297],[26.0706437,38.3987214],[26.0708202,38.398484],[26.0707255,38.3983775],[26.0705747,38.3983081],[26.0705248,38.3981648],[26.0705204,38.3980117],[26.0706318,38.3979016],[26.0706734,38.3977567],[26.0708082,38.3976642],[26.0708616,38.3975281],[26.0714939,38.396814],[26.0716515,38.3967211],[26.071881,38.3963386],[26.0721854,38.3961711],[26.0723265,38.3958982],[26.0724841,38.3958053],[26.0726603,38.3955589],[26.0727555,38.3952869],[26.0729137,38.395212],[26.0731369,38.3950098],[26.0734242,38.3946443],[26.074267,38.3940888],[26.0743781,38.3939696],[26.0744083,38.3938249],[26.074579,38.3937859],[26.075269,38.3937421],[26.0753991,38.3937894],[26.0755078,38.3939857],[26.0755239,38.3941251],[26.0760222,38.3943325],[26.0762458,38.3945448],[26.0765688,38.3946292],[26.0775286,38.3945581],[26.078189,38.3944293],[26.0784298,38.394443],[26.0789084,38.3943624],[26.079814,38.3944004],[26.0815219,38.3948657],[26.0822116,38.3949616],[26.0828264,38.395239],[26.0832641,38.3953303],[26.0845426,38.3959924],[26.0851887,38.3961611],[26.0854295,38.3961749],[26.085718,38.3962508],[26.0866688,38.39627],[26.0868886,38.3963471],[26.087118,38.3963611],[26.0874837,38.396733],[26.0880093,38.3970931],[26.0882615,38.3975031],[26.0886272,38.397875],[26.0889016,38.3982576],[26.0892886,38.3985751],[26.0898306,38.3987096],[26.0899331,38.3986898],[26.0906858,38.3987845],[26.090871,38.3988803],[26.0910781,38.3989126],[26.0912789,38.3991253],[26.0916994,38.3994152],[26.0919733,38.3993832],[26.0921466,38.3994342],[26.0919325,38.3991587],[26.0919408,38.3990504],[26.0919965,38.3990449],[26.091856,38.3988627],[26.0916123,38.3987499],[26.0914926,38.3985718],[26.0911936,38.3977301],[26.091191,38.3976401],[26.0915624,38.3978137],[26.0914131,38.3974018],[26.0915364,38.3973095],[26.0917713,38.3975126],[26.0917895,38.3973501],[26.0918787,38.3972674],[26.0923682,38.397565],[26.0929009,38.3977718],[26.0931953,38.3980548],[26.0935105,38.3982655],[26.0936039,38.3983269],[26.0937066,38.398316],[26.0938255,38.3984671],[26.0939061,38.3984837],[26.093955,38.3985909],[26.094206,38.3985594],[26.0943829,38.3987365],[26.0947184,38.3988566],[26.0947839,38.3987473],[26.0947345,38.398622],[26.0948287,38.398314],[26.0945103,38.3975988],[26.0944903,38.3973018],[26.0946183,38.3969751],[26.0946833,38.3960549],[26.0948355,38.3957728],[26.0951361,38.3954791],[26.095249,38.395423],[26.0957126,38.3953426],[26.0960024,38.3954681],[26.0961239,38.3957092],[26.0964724,38.3958832],[26.0964745,38.3959553],[26.0969344,38.3964156],[26.097286,38.3970941],[26.0974522,38.3972984],[26.0976234,38.3972773],[26.0981212,38.3974666],[26.0983706,38.3973811],[26.0988539,38.3974625],[26.0989402,38.3972808],[26.0993647,38.3969127],[26.0996123,38.3963676],[26.0995784,38.3959898],[26.099356,38.3954261],[26.0995141,38.3953512],[26.0996476,38.3956101],[26.1004346,38.3961231],[26.100496,38.3962662],[26.1004741,38.3963026],[26.1006682,38.3966776],[26.1007025,38.3970735],[26.1013684,38.3975301],[26.1015172,38.3974779],[26.1015598,38.397369],[26.1017038,38.3964112],[26.1016281,38.3961693],[26.1014174,38.3958622],[26.1010507,38.3954543],[26.1006509,38.395092],[26.1004236,38.394632],[26.1006608,38.3949161],[26.1008122,38.3950035],[26.1009977,38.3950813],[26.1016882,38.3952041],[26.101862,38.395273],[26.1023832,38.3958764],[26.1024961,38.3958203],[26.1024867,38.3950996],[26.1023915,38.3949752],[26.1018681,38.3946962],[26.1016569,38.3945198],[26.1017121,38.3944467],[26.1021407,38.3946193],[26.1032273,38.3945817],[26.1034575,38.3946227],[26.1047767,38.3951036],[26.1050868,38.395134],[26.1057141,38.3950507],[26.1059278,38.3949207],[26.106428,38.3947946],[26.1066183,38.394647],[26.1067572,38.3943021],[26.1066942,38.394105],[26.1067651,38.3937883],[26.1067131,38.393573],[26.1067682,38.3935495],[26.1062736,38.3934682],[26.1058904,38.3932859],[26.1056964,38.3933074],[26.1051058,38.3934712],[26.1048878,38.3934571],[26.1048514,38.3933857],[26.1049065,38.3933126],[26.105267,38.3931079],[26.1056862,38.3925597],[26.1056596,38.392434],[26.1055309,38.3923372],[26.1055173,38.3922654],[26.1056518,38.3921638],[26.1060955,38.3920657],[26.1070137,38.3917519],[26.1074252,38.3917265],[26.1081312,38.3918669],[26.1087409,38.3919641],[26.1090488,38.3919225],[26.1093978,38.391718],[26.1098053,38.3915575],[26.1100728,38.3913094],[26.1102088,38.3912619],[26.1103475,38.3913044],[26.1105368,38.3915173],[26.1107792,38.391585],[26.1115475,38.3916252],[26.1123017,38.3915756],[26.113095,38.3916874],[26.1136421,38.3916055],[26.1144947,38.3917883],[26.1147699,38.3918014],[26.1149753,38.3917797],[26.1153804,38.3916102],[26.1155588,38.3914447],[26.1158218,38.3910435],[26.1161093,38.3908401],[26.1162918,38.3907422],[26.1165888,38.3907188],[26.1170654,38.390575],[26.1175126,38.3902065],[26.1176939,38.3901401],[26.1182863,38.3900393],[26.1184543,38.3900588],[26.1185857,38.3900249],[26.1188351,38.3899393],[26.1189396,38.3899915],[26.1192206,38.3902027],[26.1194253,38.3904513],[26.119504,38.390621],[26.1196833,38.3911269],[26.1198004,38.3912149],[26.1202285,38.3913693],[26.120311,38.3914489],[26.1203982,38.3916907],[26.1206557,38.3918842],[26.1208508,38.3918987],[26.1209718,38.391829],[26.1214578,38.3916129],[26.1219399,38.3912618],[26.1224142,38.3910369],[26.1225978,38.3910516],[26.1231467,38.3914201],[26.1232677,38.391472],[26.1241489,38.3910686],[26.1247059,38.3909323],[26.1250601,38.3909079],[26.1251501,38.3909017],[26.1257217,38.3908733],[26.1265617,38.3906238],[26.1271224,38.3906136],[26.1278294,38.3905197],[26.1283266,38.3902944],[26.1286526,38.3900903],[26.1287716,38.3898538],[26.1297607,38.3888356],[26.1300808,38.3884063],[26.1304929,38.3876239],[26.1306915,38.387368],[26.1310144,38.3871819],[26.1313219,38.3870997],[26.1323385,38.3868514],[26.1325908,38.3862837],[26.1326867,38.3860161],[26.1329428,38.3854528],[26.1333652,38.3848278],[26.133546,38.3845272],[26.1338938,38.3838991],[26.1344331,38.3837947],[26.1344483,38.3835331],[26.134282,38.382599],[26.1342594,38.3825093],[26.1341632,38.3817947],[26.1342082,38.3813523],[26.1342928,38.3811165],[26.134361,38.3809756],[26.1344545,38.3805549],[26.1342782,38.3800085],[26.1341597,38.3796547],[26.1341802,38.3791587],[26.1342584,38.3787293],[26.1343894,38.3785106],[26.1342606,38.3781931],[26.1342259,38.378036],[26.1339596,38.3771038],[26.1339351,38.3769285],[26.1339707,38.3767026],[26.1340001,38.3765128],[26.1340287,38.3763411],[26.1341422,38.3758209],[26.1341759,38.3753112],[26.134098,38.3744881],[26.1340912,38.3744251],[26.134049,38.3740114],[26.1340456,38.3735069],[26.1341353,38.3734422],[26.1342577,38.373494],[26.1341952,38.3733149],[26.1342226,38.3730801],[26.1345527,38.3723352],[26.1345986,38.3722398],[26.1346401,38.3720949],[26.1349034,38.3719279],[26.1350726,38.3718167],[26.1354009,38.3716215],[26.1360356,38.3712359],[26.136148,38.3711663],[26.1363238,38.371064],[26.1363904,38.3710177],[26.1366185,38.3708919],[26.1371387,38.3709951],[26.1375708,38.3710683]]},{"id":16367,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03a0\u03b5\u03bb\u03b9\u03bd\u03b1\u03af\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf \u0392\u03af\u03ba\u03b9","description_GR":"","path":"Islands\/Islands_Chios_Viki_Pelineo","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":6211,"name_EN":"Chios: Ascent to Pelineo Mt from Viki","description_EN":"","ascent_time":160,"descent_time":130,"marker":"Red_dots","level":12,"ascent":909,"descent":44,"maxelev":1275,"minelev":398,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.00521 38.55243,26.01848 38.57759)","views":40,"millestones":"0,26.0191556,38.5765340#1,26.0152717,38.5741654#2,26.0166060,38.5687315#3,26.0113206,38.5665696#4,26.0152650,38.5605036#5,26.0107506,38.5536411#6.2,26.0046841,38.5569006","x":26.0141145,"y":38.5638527,"coor":[[26.0191556,38.576534],[26.0187857,38.5764412],[26.0184241,38.5766457],[26.0183259,38.576751],[26.0181214,38.5768267],[26.0176689,38.5766542],[26.0174971,38.5766662],[26.0172143,38.5768153],[26.0166993,38.5772837],[26.0162664,38.5773993],[26.016128,38.5773746],[26.0159139,38.577108],[26.0158046,38.5768936],[26.0158249,38.5767491],[26.0159619,38.5766972],[26.0162582,38.57662],[26.0168765,38.5757443],[26.0171251,38.5755508],[26.0172473,38.5754045],[26.0174844,38.5752653],[26.0179895,38.5744456],[26.0179201,38.5744288],[26.0175792,38.5745518],[26.0167802,38.5747097],[26.0164051,38.5748423],[26.0161412,38.5748469],[26.0159322,38.5747604],[26.0156004,38.5743877],[26.0148869,38.5739134],[26.0140546,38.5737024],[26.0133198,38.5732826],[26.013201,38.5731404],[26.0131508,38.5729881],[26.0129154,38.5727759],[26.0128665,38.5726686],[26.0128724,38.5724703],[26.0129622,38.5723966],[26.0133094,38.5724988],[26.0134814,38.5724958],[26.0136179,38.5724484],[26.0138182,38.5721476],[26.0139548,38.5716948],[26.014068,38.5716387],[26.0143992,38.571579],[26.0145229,38.5714867],[26.0146665,38.571286],[26.0146402,38.5707549],[26.0147029,38.5705375],[26.0151688,38.5703673],[26.0154151,38.5701468],[26.0154565,38.5699839],[26.0156213,38.5697197],[26.0155299,38.5693248],[26.0156161,38.5691251],[26.0157643,38.5690865],[26.0162486,38.5691683],[26.0165501,38.5692802],[26.0167566,38.5692767],[26.0168688,38.5691846],[26.0168396,38.5689599],[26.0167443,38.5688354],[26.0162753,38.568483],[26.0157421,38.568294],[26.0148506,38.5684265],[26.0143299,38.5686877],[26.0141109,38.5686555],[26.0140638,38.5686112],[26.0140722,38.5685029],[26.0143413,38.568273],[26.0148984,38.5680832],[26.015215,38.5679156],[26.0157627,38.567798],[26.015841,38.5677246],[26.0153658,38.5675616],[26.0141812,38.5674738],[26.0140358,38.567197],[26.0135013,38.5669629],[26.0132778,38.5667685],[26.0130697,38.5663035],[26.0129315,38.5662879],[26.0126478,38.5664009],[26.0125094,38.5663763],[26.0118052,38.5658207],[26.011692,38.5658767],[26.0116469,38.5661343],[26.0116228,38.5662744],[26.0114677,38.5664753],[26.0113099,38.5665771],[26.0113121,38.5664779],[26.0114392,38.5660973],[26.0113634,38.5660265],[26.0112548,38.5654247],[26.0113166,38.5651713],[26.0115041,38.5648978],[26.0119095,38.5646205],[26.0119623,38.5644574],[26.0120641,38.5644016],[26.0124188,38.5639539],[26.0125385,38.5637176],[26.0127863,38.5635511],[26.0132307,38.5634354],[26.0134609,38.5634584],[26.0137743,38.5635882],[26.0141145,38.5638527],[26.0143215,38.5638671],[26.0144447,38.5637569],[26.0148292,38.563552],[26.0148413,38.5631644],[26.0145896,38.5627812],[26.0144843,38.5622965],[26.0144004,38.5621718],[26.0145794,38.5620065],[26.0144223,38.5617208],[26.014511,38.5616112],[26.0148618,38.5614339],[26.0151027,38.5614298],[26.0152224,38.5611935],[26.0152069,38.5610496],[26.0153091,38.5610117],[26.0153502,38.5608398],[26.0152466,38.5604181],[26.0150413,38.5600522],[26.014553,38.5598263],[26.0143749,38.5596131],[26.0142393,38.5596876],[26.0140315,38.5596461],[26.0138909,38.5595404],[26.0139116,38.5594589],[26.0138163,38.5593344],[26.0138008,38.5591905],[26.0138411,38.5589916],[26.0139194,38.5589181],[26.0134428,38.5587011],[26.01314,38.5581296],[26.0131704,38.5579849],[26.0130534,38.5579058],[26.0130883,38.5579232],[26.0130549,38.5579599],[26.0129622,38.5579254],[26.0126569,38.5576784],[26.0124948,38.5576271],[26.0122889,38.5576487],[26.0120437,38.5574997],[26.0117681,38.5570809],[26.0116688,38.5568123],[26.0115032,38.5566349],[26.0115074,38.5563736],[26.0114151,38.5563571],[26.0111907,38.5561267],[26.0111171,38.5559568],[26.0109759,38.555833],[26.0108905,38.5552398],[26.0110645,38.5548944],[26.0110822,38.5547049],[26.0108971,38.5542395],[26.0108681,38.5540237],[26.0109264,38.5536443],[26.0107893,38.5536646],[26.0107309,38.5536296],[26.0105315,38.5538853],[26.0103811,38.5538429],[26.0102629,38.5537187],[26.0101248,38.5537031],[26.0099899,38.5538045],[26.0099321,38.5537875],[26.0097775,38.5540064],[26.0096623,38.5539904],[26.0094401,38.553841],[26.0091865,38.5538003],[26.0091616,38.5537286],[26.0090644,38.5539466],[26.0090898,38.5540362],[26.0088485,38.5540224],[26.0087313,38.5539343],[26.0085473,38.5539194],[26.0084884,38.5538663],[26.0082705,38.5538701],[26.0080595,38.5537115],[26.0073848,38.5537952],[26.007314,38.5537243],[26.0072342,38.5537437],[26.0071529,38.553709],[26.0071124,38.5526645],[26.0070885,38.5526289],[26.0070244,38.5528012],[26.0069276,38.5526226],[26.006827,38.5531289],[26.0066858,38.5530052],[26.0064651,38.5541443],[26.006313,38.5544533],[26.0063185,38.5546515],[26.0062262,38.554635],[26.0062163,38.5546893],[26.0061572,38.5546272],[26.0061617,38.5547893],[26.0059178,38.5546854],[26.0058136,38.5550656],[26.0056915,38.5552119],[26.0056825,38.5553021],[26.0053848,38.5557397],[26.0050398,38.5560745],[26.0049887,38.5563007],[26.0047898,38.5565744],[26.004815,38.5566551],[26.0046806,38.5567745],[26.0046342,38.5567573],[26.0046841,38.5569006]]},{"id":16944,"author":"AnaDigit","name_GR":"\u03a7\u03af\u03bf\u03c2: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u03c4\u03b7\u03c2 \u0393\u03c1\u03b9\u03ac\u03c2","description_GR":"","path":"ISLANDS\/Islands_Chios_Kastro_Grias","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":4,"length":1356,"name_EN":"Chios: Ascent to Kastro Grias","description_EN":"","ascent_time":35,"descent_time":30,"marker":"Red_dots","level":13,"ascent":161,"descent":11,"maxelev":438,"minelev":276,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(26.0906 38.51044,26.09227 38.51936)","views":12,"millestones":"0,26.0922690,38.5104403#1,26.0906526,38.5168831#1.4,26.0908591,38.5193590","x":26.0914573,"y":38.5154557,"coor":[[26.092269,38.5104403],[26.0919876,38.5106255],[26.0918454,38.5108624],[26.0913291,38.51125],[26.091154,38.5115415],[26.0916505,38.5114831],[26.0918823,38.511569],[26.092059,38.5117281],[26.0914567,38.5123155],[26.0913582,38.5124795],[26.091043,38.5126833],[26.0910836,38.5128493],[26.0909943,38.512932],[26.0912407,38.5131258],[26.0912543,38.5131977],[26.0907249,38.5135315],[26.0906298,38.5138125],[26.090931,38.5143118],[26.0908672,38.5144841],[26.0909516,38.5146268],[26.090899,38.5147899],[26.091,38.5151125],[26.0914807,38.5150769],[26.0916683,38.5152177],[26.0914573,38.5154557],[26.0909615,38.5157619],[26.090987,38.5158516],[26.0907849,38.5159994],[26.0908583,38.5161603],[26.0906833,38.5164517],[26.0906629,38.5165422],[26.0907567,38.5166126],[26.0906338,38.5167229],[26.0906374,38.516849],[26.0906741,38.5169295],[26.0908474,38.5169714],[26.0908766,38.5171872],[26.0910876,38.5173456],[26.0911131,38.5174352],[26.0909855,38.5177799],[26.0905613,38.518184],[26.0907609,38.5183426],[26.0907567,38.518595],[26.0908271,38.5186478],[26.0907716,38.5187118],[26.0908805,38.5189081],[26.0910561,38.5190311],[26.0908315,38.5191973],[26.0908591,38.519359]]}],{"extent":[25.56474,38.23401,26.13757,38.59511],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"redirect"},"sort":{"type":"byname"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":true},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Volima_AgAndreas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Vassilikos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Prodromos_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Klima_Schinari":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kiliomeno_Yperaghathos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Argasi_Skopiotisa":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Agalas_Kiliomenos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Skopelos_monasteries_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Klima":{"url":null,"color":"#1ab933","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Skopelos_Loutraki_Faros_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Taxiarches":{"url":null,"color":"#2f7aff","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Chios_AgGhalas_AgIoanis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true}}});
function getPoiCollection(key,data,meta){
this.key = key;
this.data = data;
this.item = [];
//this.meta = meta;
this.gsMap = null;
this.features = [] ;
//this.lineFeatures = [] ;
var self = this;
//console.log(data);
this.source = new ol.source.Vector({wrapX: false, noWrap: true});
this.layer = new ol.layer.Vector({
source: this.source, //clusterSource
visible:true
});
this.registerMap = function(gsMap){
this.gsMap = gsMap;
this.gsMap.map.addLayer(this.layer);
this.createFeatures();
}
this.createFeatures = function(){
this.features=[];
for(var i in this.data){
//console.log(this.data[i]);
var newItem = this.getItem(this.data[i]);
newItem.style = this.getIconStyle(newItem);
var f = this.gsMap.feature_from_coor(this.data[i].x,this.data[i].y,this.pointMsp(newItem));
//var s = this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 1, 5, "");//this.adventureIconPointStyle(this.data[i].activity_type,this.data[i].difficulty);//this.gsMap.pointStyle("#ff0000", [0, 0, 0, 0.5], 0, 5, "");
f.setStyle(newItem.style);
f.show = function () {
var div = document.getElementById("myModal");
div.innerHTML =
'';
setTimeout(function () {
$('#myModal').modal('show');
}, 200);
}
newItem.feature = f;
this.item.push(newItem);
this.features.push(f);
}
this.source.addFeatures(this.features);
this.gsMap.registerOnZoomChangedFunction(function(){self.refresh();});
this.refresh();
}
this.zoomTo = function(){
this.gsMap.map.getView().fit( this.gsMap.ll2xy(this.meta.extent), this.gsMap.map.getSize());
}
this.pointMsp = function(item){
return {
width:item.width,
height:item.height,
photoPath:item.photoPath,
name:item.name,
description:item.description,
parent:this,
click:[function(s,f,l){
var div = document.getElementById("myModal");
var self = f.get('msp');
//#34b0ff
div.innerHTML =
''
+ '
'+ 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_chios = new getPoiCollection("chios",[{"name":"\u03a7\u0399\u039f\u03a3
\u03a3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf
\u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03ac\u03bb\u03b1\u03ba\u03c4\u03bf\u03c2","owner":"Regina Koutsi","x":25.859527,"y":38.56192,"photo":"Cave_AghioGalas","type":73,"zoom_level":13,"id":791,"hlink_GR":"http:\/\/www.chioslife.gr\/el\/\u03b1\u03be\u03b9\u03bf\u03b8\u03ad\u03b1\u03c4\u03b1\/\u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03bf-\u03b1\u03b3\u03af\u03bf\u03c5-\u03b3\u03ac\u03bb\u03b1\u03ba\u03c4\u03bf\u03c2","hlink_EN":"http:\/\/www.chioslife.gr\/en\/sightseeing\/cave-agio-galas","description":"\u03a0\u03c1\u03cc\u03ba\u03b5\u03b9\u03c4\u03b1\u03b9 \u03bf\u03c5\u03c3\u03b9\u03b1\u03c3\u03c4\u03b9\u03ba\u03ac \u03b3\u03b9\u03b1 \u03b4\u03cd\u03bf \u03c3\u03c0\u03ae\u03bb\u03b1\u03b9\u03b1, \u03c4\u03bf \u03ad\u03bd\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ac\u03bb\u03bb\u03bf. \u03a4\u03bf \u03ba\u03b1\u03c4\u03ce\u03c4\u03b5\u03c1\u03bf \u03b5\u03ba\u03c4\u03b5\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03cc \u03bb\u03b9\u03b8\u03c9\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03b4\u03b9\u03ac\u03ba\u03bf\u03c3\u03bc\u03bf. \u03a4\u03bf \u03b1\u03bd\u03ce\u03c4\u03b5\u03c1\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03b2\u03b1\u03b8\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c3\u03c4\u03cc\u03bc\u03b9\u03cc \u03c4\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03c4\u03bf \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03ac\u03ba\u03b9 \u03c4\u03b7\u03c2 \u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ac\u03c2 \u0391\u03b3\u03b9\u03bf\u03b3\u03b1\u03bb\u03bf\u03cd\u03c3\u03b1\u03b9\u03bd\u03b1\u03c2. \u03a3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5 \u03c3\u03c0\u03b7\u03bb\u03b1\u03af\u03bf\u03c5, \u03ba\u03b1\u03c4\u03ac \u03bc\u03ae\u03ba\u03bf\u03c2 \u03b5\u03bd\u03cc\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03cc\u03bc\u03bf\u03c5 220\u03bc, \u03bf \u03b5\u03c0\u03b9\u03c3\u03ba\u03ad\u03c0\u03c4\u03b7\u03c2 \u03b8\u03b1 \u03c3\u03c5\u03bd\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03b9 \u03b8\u03ac\u03bb\u03b1\u03bc\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03b4\u03b9\u03b1\u03bc\u03b5\u03c1\u03af\u03c3\u03bc\u03b1\u03c4\u03b1, \u03c3\u03c4\u03bf\u03bb\u03b9\u03c3\u03bc\u03ad\u03bd\u03b1 \u03bc\u03b5 \u03b5\u03bd\u03c4\u03c5\u03c0\u03c9\u03c3\u03b9\u03b1\u03ba\u03ac \u03c3\u03c4\u03b1\u03bb\u03b1\u03ba\u03c4\u03b9\u03ba\u03ac \u03c3\u03c5\u03bc\u03c0\u03bb\u03ad\u03b3\u03bc\u03b1\u03c4\u03b1. \u0397 \u03b1\u03bd\u03b1\u03c3\u03ba\u03b1\u03c6\u03b9\u03ba\u03ae \u03ad\u03c1\u03b5\u03c5\u03bd\u03b1 \u03ad\u03c6\u03b5\u03c1\u03b5 \u03c3\u03c4\u03bf \u03c6\u03c9\u03c2 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ac \u03b5\u03c5\u03c1\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03bf\u03bd\u03bf\u03bb\u03bf\u03b3\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u039c\u03ad\u03c3\u03b7 \u03ba\u03b1\u03b9 \u039d\u03b5\u03cc\u03c4\u03b5\u03c1\u03b7 \u039d\u03b5\u03bf\u03bb\u03b9\u03b8\u03b9\u03ba\u03ae \u03c0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf (6\u03b7 \u03ba\u03b1\u03b9 5\u03b7 \u03c7\u03b9\u03bb\u03b9\u03b5\u03c4\u03af\u03b1 \u03c0.\u03a7.). \u0391\u03be\u03af\u03b6\u03b5\u03b9 \u03bd\u03b1 \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03b8\u03b5\u03af \u03ba\u03b1\u03b9 \u03b7 \u03b1\u03bd\u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03bf\u03c3\u03c4\u03ce\u03bd \u03b1\u03c0\u03cc \u03b1\u03c1\u03ba\u03bf\u03cd\u03b4\u03b5\u03c2, \u03bb\u03b5\u03bf\u03c0\u03b1\u03c1\u03b4\u03ac\u03bb\u03b5\u03b9\u03c2, \u03b1\u03b3\u03c1\u03b9\u03cc\u03c7\u03bf\u03b9\u03c1\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03b6\u03b1\u03c1\u03ba\u03ac\u03b4\u03b9\u03b1, \u03b6\u03ce\u03b1 \u03c0\u03bf\u03c5 \u03b4\u03b5\u03bd \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c0\u03bb\u03ad\u03bf\u03bd \u03c3\u03c4\u03b7 \u03bd\u03b7\u03c3\u03b9\u03c9\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03bd\u03af\u03b4\u03b1.","height":100,"width":180},{"name":"\u03a7\u0399\u039f\u03a3
\u0391\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03bf \u0398\u03bf\u03bb\u03bf\u03c0\u03bf\u03c4\u03ac\u03bc\u03b9","owner":"anadigit","x":26.087794,"y":38.299817,"photo":"Chios_Windmill_Tholopotami1","type":9,"zoom_level":13,"id":854,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u0394\u03b1\u03c3\u03ba\u03b1\u03bb\u03cc\u03c0\u03b5\u03c4\u03c1\u03b1","owner":"AnaDigit","x":26.134202,"y":38.42223,"photo":"Chios_Daskalopetra","type":10,"zoom_level":14,"id":857,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u03a7\u0399\u039f\u03a3
\u03a3\u03c0\u03ae\u03bb\u03b9\u03b1
\u039a\u03b1\u03c1\u03b4\u03ac\u03bc\u03c5\u03bb\u03b1","owner":"AnaDigit","x":26.090497,"y":38.529178,"photo":"Chios_Kardamyla_Spilia","type":9,"zoom_level":13,"id":858,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u039c\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc \u03bf\u03c7\u03c5\u03c1\u03cc
\u03c3\u03c4\u03b1 \u039a\u03bf\u03af\u03bb\u03b1","owner":"AnaDigit","x":26.088116,"y":38.487251,"photo":"Chios_Koila_oxirosi","type":10,"zoom_level":13,"id":859,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u039b\u03b1\u03b3\u03ba\u03ac\u03b4\u03b1","owner":"AnaDigit","x":26.126182,"y":38.476366,"photo":"Chios_Lagada","type":9,"zoom_level":13,"id":860,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u039c\u03b5\u03c3\u03c4\u03ac
\u03c0\u03cd\u03c1\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03bf\u03c7\u03c5\u03c1\u03ae\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5","owner":"AnaDigit","x":25.920628,"y":38.261034,"photo":"Chios_Mesta_exoterikos_pirgos","type":9,"zoom_level":13,"id":861,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u039c\u03b5\u03c3\u03c4\u03ac
\u03c0\u03b5\u03c1\u03b9\u03bc\u03b5\u03c4\u03c1\u03b9\u03ba\u03ae \u03bf\u03c7\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd","owner":"AnaDigit","x":25.922688,"y":38.261135,"photo":"Chios_Mesta_exoterikos_pirgos2","type":9,"zoom_level":15,"id":862,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u03a7\u0399\u039f\u03a3
\u03a3\u03c4\u03b7\u03bd \u03b1\u03b3\u03bf\u03c1\u03ac \u03c4\u03b7\u03c2 \u03c0\u03cc\u03bb\u03b7\u03c2","owner":"AnaDigit","x":26.13661,"y":38.369979,"photo":"Chios_Agora1","type":9,"zoom_level":16,"id":864,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0395\u03a1\u03a0\u0395\u03a4\u0391
\u039a\u03c1\u03bf\u03ba\u03bf\u03b4\u03b5\u03b9\u03bb\u03ac\u03ba\u03b9
Agama stelio","owner":"AnaDigit","x":26.084404,"y":38.249491,"photo":"Agama_stelio1","type":8,"zoom_level":13,"id":865,"hlink_GR":"","hlink_EN":"","description":"\u0386\u03c6\u03b8\u03bf\u03bd\u03bf \u03c3\u03b5 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03bd\u03b7\u03c3\u03b9\u03ac \u03c4\u03bf\u03c5 \u0391\u03b9\u03b3\u03b1\u03af\u03bf\u03c5, \u03c4\u03bf Agama stelio \u03b8\u03c5\u03bc\u03af\u03b6\u03b5\u03b9 \u03b9\u03b3\u03ba\u03bf\u03c5\u03ac\u03bd\u03b1 \u03c3\u03b5 \u03c3\u03bc\u03af\u03ba\u03c1\u03c5\u03bd\u03c3\u03b7. \u0398\u03b1 \u03c4\u03bf \u03b2\u03c1\u03b5\u03af\u03c4\u03b5 \u03c4\u03b1 \u03c0\u03c1\u03c9\u03ca\u03bd\u03ac \u03bd\u03b1 \u03be\u03b5\u03bc\u03c5\u03c4\u03af\u03b6\u03b5\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03be\u03b5\u03c1\u03bf\u03bb\u03b9\u03b8\u03b9\u03ad\u03c2, \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03bb\u03b1\u03b2\u03c5\u03c1\u03af\u03bd\u03b8\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u03bf\u03c0\u03bf\u03af\u03c9\u03bd \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03c0\u03b1\u03c1\u03b1\u03bc\u03b9\u03ba\u03c1\u03cc \u03ba\u03af\u03bd\u03b4\u03c5\u03bd\u03bf. \u0395\u03b4\u03ce \u03ad\u03bd\u03b1 \u03b6\u03b5\u03c5\u03b3\u03ac\u03c1\u03b9, \u03b1\u03c1\u03c7\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03c7\u03b9\u03ce\u03c4\u03b9\u03ba\u03b7\u03c2 \u03ac\u03bd\u03bf\u03b9\u03be\u03b7\u03c2.","height":328,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u0393\u03ba\u03b9\u03ac\u03b6\u03bf\u03c5","owner":"anadigit","x":26.118757,"y":38.317387,"photo":"Chios_AgGeorgios_Ghiazou0_","type":9,"zoom_level":14,"id":866,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03bf\u03ba\u03bf\u03c1\u03bf\u03b2\u03b9\u03bb\u03b9\u03ac
\u03b2\u03bf\u03c4\u03c3\u03b1\u03bb\u03c9\u03c4\u03ae \u03b1\u03c5\u03bb\u03ae","owner":"anadigit","x":26.119620919228,"y":38.316103166479,"photo":"Chios_Panagia_Kokorovilia_avli2","type":9,"zoom_level":15,"id":867,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2
\u03bf \u039c\u03b5\u03bb\u03b1\u03b3\u03c7\u03c1\u03bf\u03b9\u03bd\u03cc\u03c2","owner":"anadigit","x":26.119186,"y":38.329347,"photo":"Chios_AgGeorgios_Melaxrinos_pano1","type":9,"zoom_level":14,"id":868,"hlink_GR":"","hlink_EN":"","description":"","height":811,"width":800},{"name":"\u03a7\u0399\u039f\u03a3
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2
\u03a4' \u0391\u03bc\u03ad\u03c1\u03b7","owner":"anadigit","x":26.10526,"y":38.315998,"photo":"Chios_AgGeorgios_TAmeri","type":9,"zoom_level":14,"id":869,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u039a\u03b1\u03c1\u03c5\u03ad\u03c2","owner":"anadigit","x":26.098845,"y":38.381863,"photo":"Chios_AgRafail_Karyes_pano","type":0,"zoom_level":14,"id":870,"hlink_GR":"","hlink_EN":"","description":"\u0393\u03b5\u03bd\u03b9\u03ba\u03ae \u03ac\u03c0\u03bf\u03c8\u03b7 \u03c4\u03b7\u03c2 \u03bd\u03cc\u03c4\u03b9\u03b1\u03c2 \u03c0\u03bb\u03b5\u03c5\u03c1\u03ac\u03c2 \u03c4\u03bf\u03c5 \u0391\u03af\u03c0\u03bf\u03c5\u03c2, \u03bc\u03b5 \u03c4\u03b9\u03c2 \u039a\u03b1\u03c1\u03c5\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03ba\u03bf\u03b9\u03bb\u03ac\u03b4\u03b1 \u03c4\u03b7\u03c2 \u039d\u03ad\u03b1\u03c2 \u039c\u03bf\u03bd\u03ae\u03c2. \u03a3\u03c4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf \u03c0\u03bb\u03ac\u03bd\u03bf \u03bf \u0386\u03b3\u03b9\u03bf\u03c2 \u03a1\u03b1\u03c6\u03b1\u03ae\u03bb.","height":554,"width":1000},{"name":"\u03a7\u0399\u039f\u03a3
\u0391\u03bd\u03ac\u03b2\u03b1\u03c4\u03bf\u03c2","owner":"anadigit","x":26.020352,"y":38.401809,"photo":"Chios_Anavatos_pano","type":10,"zoom_level":12,"id":871,"hlink_GR":"http:\/\/www.archaiologia.gr\/blog\/2012\/11\/26\/%CE%B1%CE%BD%CE%AC%CE%B2%CE%B1%CF%84%CE%BF%CF%82-%CF%87%CE%AF%CE%BF%CF%85\/","hlink_EN":"","description":"","height":520,"width":1600},{"name":"\u03a7\u0399\u039f\u03a3
\u0397 \u03bf\u03b4\u03cc\u03c2 \u0391\u03c0\u03bb\u03c9\u03c4\u03b1\u03c1\u03b9\u03ac\u03c2","owner":"anadigit","x":26.135355,"y":38.369221,"photo":"Chios_aplotaria_pano","type":9,"zoom_level":15,"id":872,"hlink_GR":"","hlink_EN":"","description":"\u039f \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03cc\u03c2 \u03b5\u03bc\u03c0\u03bf\u03c1\u03b9\u03ba\u03cc\u03c2 \u03b4\u03c1\u03cc\u03bc\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03a7\u03af\u03bf\u03c5","height":382,"width":1000},{"name":"\u03a7\u0399\u039f\u03a3
\u0391\u03b9\u03c9\u03bd\u03cc\u03b2\u03b9\u03b1 \u03b5\u03bb\u03b9\u03ac
\u039b\u03b9\u03b2\u03b9\u03b5\u03c1\u03ac\u03bd\u03b9","owner":"anadigit","x":26.087499,"y":38.284765,"photo":"Chios_Centenarian_Olive_tree","type":1,"zoom_level":14,"id":873,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u03a7\u0399\u039f\u03a3
\u03a7\u03b1\u03bb\u03ba\u03b9\u03cc\u03c2
\u03a4\u03bf \u03ba\u03b1\u03bc\u03c0\u03b1\u03bd\u03b1\u03c1\u03b9\u03cc
\u03c4\u03bf\u03c5 \u03b5\u03bd\u03bf\u03c1\u03b9\u03b1\u03ba\u03bf\u03cd \u03bd\u03b1\u03bf\u03cd","owner":"anadigit","x":26.10017,"y":38.332718,"photo":"Chios_Chalkios_pano","type":9,"zoom_level":15,"id":874,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":283},{"name":"\u03a7\u0399\u039f\u03a3
\u039f \u03ba\u03cc\u03bb\u03c0\u03bf\u03c2 \u03c4\u03b7\u03c2 \u0395\u03bb\u03af\u03bd\u03c4\u03b1\u03c2","owner":"anadigit","x":25.989899,"y":38.391126,"photo":"Chios_Elinda","type":0,"zoom_level":14,"id":875,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03ae \u03c6\u03bf\u03c5\u03bd\u03c4\u03ac\u03bd\u03b1
\u03bc\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03b1\u03bd\u03b1\u03ba\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae","owner":"anadigit","x":26.135124,"y":38.33781,"photo":"Chios_Kambos_pigadi","type":9,"zoom_level":15,"id":877,"hlink_GR":"","hlink_EN":"","description":"","height":435,"width":800},{"name":"\u03a7\u0399\u039f\u03a3
\u039c\u03ad\u03c3\u03b1 \u0394\u03b9\u03b4\u03cd\u03bc\u03b1
\u0395\u03c5\u03b1\u03b3\u03b3\u03b5\u03bb\u03af\u03c3\u03c4\u03c1\u03b9\u03b1","owner":"anadigit","x":26.084033,"y":38.279754,"photo":"Chios_Mesa_Didima_Evagelistria2","type":9,"zoom_level":14,"id":879,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":498},{"name":"\u03a7\u0399\u039f\u03a3
\u03a5\u03b4\u03c1\u03b1\u03b3\u03c9\u03b3\u03b5\u03af\u03bf
\u039d\u03ad\u03b1\u03c2 \u039c\u03bf\u03bd\u03ae\u03c2","owner":"anadigit","x":26.055441,"y":38.374996,"photo":"Chios_NeaMoni_ydragogeio_pano","type":9,"zoom_level":15,"id":880,"hlink_GR":"","hlink_EN":"","description":"\u03a5\u03b4\u03c1\u03b1\u03b3\u03c9\u03b3\u03b5\u03af\u03bf \u03ba\u03b1\u03b9 \u03b2\u03bf\u03b7\u03b8\u03b7\u03c4\u03b9\u03ba\u03ac \u03ba\u03c4\u03af\u03c3\u03bc\u03b1\u03c4\u03b1 \u039d\u03ad\u03b1\u03c2 \u039c\u03bf\u03bd\u03ae\u03c2","height":212,"width":1000},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03cc\u03c2 \u039a\u03b1\u03c4\u03b1\u03c1\u03c1\u03ac\u03ba\u03c4\u03b7\u03c2
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","owner":"anadigit","x":26.086522,"y":38.250835,"photo":"Chios_Palios_Kataraktis_AgGeorgios_pano","type":9,"zoom_level":15,"id":881,"hlink_GR":"","hlink_EN":"","description":"","height":487,"width":800},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039a\u03c1\u03ae\u03bd\u03b1","owner":"anadigit","x":26.080986,"y":38.315935,"photo":"Chios_Panagia_Krina_pano","type":10,"zoom_level":12,"id":882,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":764},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a3\u03b9\u03ba\u03b5\u03bb\u03b9\u03ac","owner":"anadigit","x":26.061052,"y":38.268628,"photo":"Chios_Panagia_Sikelia_pano","type":10,"zoom_level":14,"id":883,"hlink_GR":"","hlink_EN":"","description":"","height":668,"width":800},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03ac \u03c6\u03bf\u03c5\u03bd\u03c4\u03ac\u03bd\u03b1","owner":"anadigit","x":26.088046,"y":38.327971,"photo":"Chios_Pigadi_pano","type":9,"zoom_level":15,"id":885,"hlink_GR":"","hlink_EN":"","description":"","height":394,"width":1000},{"name":"\u03a7\u0399\u039f\u03a3
\u03a7\u03b1\u03bb\u03ba\u03b9\u03cc\u03c2
\u03a0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03b1\u03bd\u03c4\u03bb\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2
\u03bc\u03b7\u03c7\u03b1\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2","owner":"anadigit","x":26.134995,"y":38.347293,"photo":"Chios_Pigadi2_Kambos","type":9,"zoom_level":15,"id":886,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03ac \u03c0\u03cc\u03c1\u03c4\u03b1
\u03b1\u03c0\u03cc \u03b8\u03c5\u03bc\u03b9\u03b1\u03bd\u03bf\u03cd\u03c3\u03b9\u03ba\u03b7 \u03c0\u03ad\u03c4\u03c1\u03b1","owner":"anadigit","x":26.134695,"y":38.350625,"photo":"Chios_Porta_Kambos","type":9,"zoom_level":15,"id":887,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u03a7\u0399\u039f\u03a3
\u0398\u03bf\u03bb\u03bf\u03c0\u03bf\u03c4\u03ac\u03bc\u03b9
\u0395\u03bc\u03c6\u03b1\u03bd\u03ad\u03c2 \u03b3\u03b5\u03c9\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03c1\u03ae\u03b3\u03bc\u03b1","owner":"anadigit","x":26.072682,"y":38.300832,"photo":"Chios_Rigma_Tholopotami_pano","type":71,"zoom_level":14,"id":889,"hlink_GR":"","hlink_EN":"","description":"","height":174,"width":800},{"name":"\u03a7\u0399\u039f\u03a3
\u0392\u03b1\u03b2\u03af\u03bb\u03bf\u03b9","owner":"anadigit","x":26.099075,"y":38.315278,"photo":"Chios_Vaviloi1","type":0,"zoom_level":14,"id":890,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u0397 \u0392\u03af\u03b3\u03bb\u03b1 \u03c4\u03bf\u03c5 \u03a0\u03b1\u03c7\u03cd","owner":"anadigit","x":25.961692,"y":38.404403,"photo":"Chios_Vigla_Pachi2","type":10,"zoom_level":13,"id":891,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":421},{"name":"\u03a7\u0399\u039f\u03a3
\u0392\u03bf\u03bb\u03b9\u03c3\u03c3\u03cc\u03c2
\u039f \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf","owner":"anadigit","x":25.92383,"y":38.483845,"photo":"Chios_Volissos_pano","type":9,"zoom_level":13,"id":892,"hlink_GR":"","hlink_EN":"","description":"","height":212,"width":800},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03cc\u03c2 \u039a\u03b1\u03c4\u03b1\u03c1\u03c1\u03ac\u03ba\u03c4\u03b7\u03c2
\u039c\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03cc \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf","owner":"anadigit","x":26.087316,"y":38.254197,"photo":"Chios_Palios_Katarraktis_Pirgos","type":10,"zoom_level":13,"id":894,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u039b\u03a9\u03a1\u0399\u0394\u0391
\u03a0\u03b1\u03c0\u03b1\u03c1\u03bf\u03cd\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03b8\u03ac\u03bb\u03b1\u03c3\u03c3\u03b1\u03c2
Glaucium flavum","owner":"anadigit","x":25.886258,"y":38.243817,"photo":"Glaucium_flavum","type":1,"zoom_level":13,"id":895,"hlink_GR":"","hlink_EN":"","description":"","height":408,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u03a4\u03bf \u03c0\u03ac\u03c1\u03ba\u03bf \u03c3\u03c4\u03b7\u03bd \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae
\u03c0\u03bb\u03b1\u03c4\u03b5\u03af\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03cc\u03bb\u03b7\u03c2","owner":"anadigit","x":26.134454,"y":38.371673,"photo":"Chios_centralSquare","type":9,"zoom_level":15,"id":896,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u03a7\u0399\u039f\u03a3
\u03a0\u03b1\u03bb\u03b9\u03ac \u03ba\u03c1\u03ae\u03bd\u03b7
\u03c3\u03c4\u03b7\u03bd \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u03c0\u03bb\u03b1\u03c4\u03b5\u03af\u03b1","owner":"anadigit","x":26.135966,"y":38.370837,"photo":"Chios_centralSquare_fountain","type":9,"zoom_level":15,"id":897,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":399},{"name":"\u03a7\u0399\u039f\u03a3
\u03a4\u03bc\u03ae\u03bc\u03b1 \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03bf\u03cd \u03c5\u03b4\u03c1\u03b1\u03b3\u03c9\u03b3\u03b5\u03af\u03bf\u03c5","owner":"anadigit","x":26.108678,"y":38.374521,"photo":"Chios_Koris_Gefyri","type":9,"zoom_level":15,"id":904,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u03a7\u0399\u039f\u03a3
\u03a4\u03bc\u03ae\u03bc\u03b1 \u03bc\u03b5\u03c3\u03b1\u03b9\u03c9\u03bd\u03b9\u03ba\u03bf\u03cd \u03c5\u03b4\u03c1\u03b1\u03b3\u03c9\u03b3\u03b5\u03af\u03bf\u03c5","owner":"anadigit","x":26.115029,"y":38.373394,"photo":"Chios_Ydragogeio","type":9,"zoom_level":16,"id":905,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u039f\u03b8\u03c9\u03bc\u03b1\u03bd\u03b9\u03ba\u03ae \u03ba\u03c1\u03ae\u03bd\u03b7","owner":"anadigit","x":26.134507,"y":38.3723,"photo":"Chios_ottoman_fountain1","type":9,"zoom_level":15,"id":906,"hlink_GR":"","hlink_EN":"","description":"","height":565,"width":600},{"name":"\u03a7\u0399\u039f\u03a3
\u03a8\u03b7\u03c6\u03b9\u03b4\u03c9\u03c4\u03ac \u03c4\u03b7\u03c2
\u039d\u03ad\u03b1\u03c2 \u039c\u03bf\u03bd\u03ae\u03c2","owner":"anadigit","x":26.055548,"y":38.373814,"photo":"Chios_NeaMoni_psifidota1","type":10,"zoom_level":16,"id":907,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u03a7\u0399\u039f\u03a3
\u039d\u03ad\u03b1 \u039c\u03bf\u03bd\u03ae
\u03c4\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc","owner":"anadigit","x":26.055645,"y":38.374369,"photo":"Chios_NeaMoni0","type":10,"zoom_level":11,"id":908,"hlink_GR":"http:\/\/odysseus.culture.gr\/h\/2\/gh251.jsp?obj_id=1044","hlink_EN":"","description":"","height":800,"width":618}],{});function createAdventureListWidgetContext(){};console.log('sort type: byname');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathListDivId'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathListDivId').innerHTML="";}else{console.log('adventure list widget activated but div missing. Requested id: pathListDivId');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["chios"],pc:["chios"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1};
var overrideAfterLoad = function(map){ adventureCollection_chios.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);
}