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_aegina = new getAdventureCollection("aegina",[{"id":15942,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u039c\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c2 \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","description_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1-\u03a3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1-\u0391\u03c6\u03b1\u03af\u03b1-\u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1-\u0391\u03bd\u03b9\u03c4\u03c3\u03b1\u03af\u03bf\u03c5-\u03a0\u03b1\u03c7\u03b5\u03b9\u03ac \u03a1\u03ac\u03c7\u03b7","path":"Car_touring\/CAR_Aegina_Megalos_Gyros","activity_type":11,"assistance":2,"difficulty":1,"scenic_value":5,"length":9815,"name_EN":"Aegina Isl: A long tour around Aegina","description_EN":"Aegina-Souvala-Temple of Afea-Aghia Marina-Anitseou","ascent_time":0,"descent_time":0,"marker":"No_marks","level":12,"ascent":870,"descent":870,"maxelev":262,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.41833 37.77252,23.53935 37.70427)","views":31,"millestones":"0,23.4259768,37.7450969#1,23.4243146,37.7534523#2,23.4184776,37.7605252#3,23.4251544,37.7664468#4,23.4342979,37.7650513#5,23.4449010,37.7662399#6,23.4550793,37.7696882#7,23.4659610,37.7716482#8,23.4738807,37.7701798#9,23.4843105,37.7716685#10,23.4931970,37.7701383#11,23.4921170,37.7619017#12,23.4905792,37.7559543#13,23.4889400,37.7527568#14,23.4864518,37.7467374#15,23.4942786,37.7462343#16,23.5034475,37.7495080#17,23.5138589,37.7520912#18,23.5238115,37.7558301#19,23.5348902,37.7559762#20,23.5370047,37.7530585#21,23.5373581,37.7445840#22,23.5326752,37.7392955#23,23.5391162,37.7333153#24,23.5367646,37.7303614#25,23.5343437,37.7295832#26,23.5261901,37.7262336#27,23.5208718,37.7197290#28,23.5257463,37.7175101#29,23.5202795,37.7134482#30,23.5159049,37.7070149#31,23.5097689,37.7066752#32,23.5070881,37.7068999#33,23.4988903,37.7108092#34,23.4899717,37.7157028#35,23.4810861,37.7201633#36,23.4753812,37.7248018#37,23.4679155,37.7308260#38,23.4586766,37.7323731#39,23.4538815,37.7348136#40,23.4430277,37.7370127#41,23.4343336,37.7415676#9.8,23.4259768,37.7450924","x":23.5375506,"y":37.7488638,"coor":[[23.4259768,37.7450969],[23.4264696,37.7459466],[23.4256883,37.7471776],[23.4257103,37.7472678],[23.4259137,37.747386],[23.4258071,37.7478248],[23.4256773,37.7484551],[23.4253886,37.7491027],[23.4250654,37.7497973],[23.4241456,37.7508474],[23.4242472,37.7515081],[23.4242198,37.7521209],[23.4243366,37.7532954],[23.4241883,37.7544033],[23.4235278,37.7554005],[23.4219807,37.7558165],[23.4202135,37.7572455],[23.419801,37.7577301],[23.4193876,37.7584762],[23.4184336,37.7599767],[23.4185039,37.7608648],[23.4184203,37.7615314],[23.4186467,37.7622107],[23.4186781,37.7625444],[23.4189936,37.7628524],[23.4202072,37.7630116],[23.4208792,37.7631433],[23.4212638,37.7633255],[23.4220267,37.7637663],[23.4224585,37.7640298],[23.4229541,37.764537],[23.423521,37.764506],[23.4240533,37.764815],[23.4243784,37.7653484],[23.4245111,37.7657997],[23.42494,37.7661353],[23.4253508,37.7667321],[23.4256532,37.7672744],[23.4264256,37.7672331],[23.4266079,37.7671438],[23.4271243,37.7664343],[23.4273664,37.7658249],[23.4277663,37.7657727],[23.4289697,37.7657786],[23.4297117,37.765861],[23.4308089,37.7657987],[23.4311135,37.7657731],[23.4315878,37.765647],[23.4321319,37.7651562],[23.432464,37.7649685],[23.4330211,37.764863],[23.4338153,37.7649389],[23.4349146,37.7652011],[23.436547,37.7655334],[23.4369103,37.7655351],[23.4373767,37.7654111],[23.4378412,37.7652218],[23.439605,37.7646827],[23.4401496,37.7647303],[23.4409228,37.764912],[23.4410588,37.7649487],[23.4422977,37.7653219],[23.4436545,37.7660854],[23.4440968,37.7661415],[23.4445307,37.7661481],[23.44546,37.7663778],[23.4461756,37.7663361],[23.4472971,37.7663391],[23.4476067,37.7664037],[23.4485685,37.7668498],[23.4493282,37.7669795],[23.4504359,37.7675165],[23.4517274,37.767892],[23.4522363,37.7681738],[23.452727,37.76846],[23.4553938,37.7698604],[23.4565444,37.7702623],[23.4571571,37.7703192],[23.4578444,37.770275],[23.4588553,37.7702256],[23.4611801,37.7706238],[23.4623416,37.7707936],[23.4631402,37.7710473],[23.4649299,37.7716504],[23.4659291,37.7716549],[23.4663523,37.7715667],[23.4668406,37.7715599],[23.4676892,37.7719783],[23.4680746,37.7720702],[23.4710281,37.7718942],[23.4713586,37.7717154],[23.4714051,37.7715714],[23.4709483,37.7703346],[23.4709735,37.7699922],[23.4712036,37.7695606],[23.4714025,37.7695389],[23.4717897,37.7696691],[23.4723778,37.7700052],[23.474193,37.7702116],[23.4753401,37.7701627],[23.4762474,37.7703199],[23.4776606,37.7703825],[23.4779963,37.7704178],[23.4785124,37.7704922],[23.478961,37.7704852],[23.4790828,37.77047],[23.4797916,37.7703875],[23.4802532,37.7703399],[23.4805132,37.7703005],[23.4811088,37.7702265],[23.481564,37.7702285],[23.4816197,37.770231],[23.4818296,37.7702455],[23.4821399,37.7702266],[23.4825134,37.7702462],[23.4833954,37.7705678],[23.4834804,37.7707845],[23.4840208,37.7714538],[23.4842929,37.7716601],[23.4845249,37.7717737],[23.4848495,37.7719351],[23.485335,37.7723338],[23.485977,37.7727783],[23.4860651,37.7728147],[23.4865078,37.7728347],[23.4876024,37.7725375],[23.4880346,37.7724312],[23.4884773,37.7724512],[23.4890927,37.7725868],[23.4891728,37.772506],[23.4891877,37.7719833],[23.4892719,37.7716615],[23.4900304,37.7716242],[23.4907913,37.7716095],[23.4911404,37.7715614],[23.4916081,37.771248],[23.4916855,37.7711942],[23.4921957,37.7708269],[23.4926284,37.7706485],[23.4931111,37.7704793],[23.4933081,37.769687],[23.4932405,37.7696146],[23.4934334,37.7686465],[23.4934542,37.7672586],[23.493442,37.7667042],[23.4934383,37.7664068],[23.4936699,37.7661081],[23.4939333,37.7657847],[23.4941067,37.7653326],[23.4941413,37.7652516],[23.4943641,37.7646735],[23.4943195,37.7645539],[23.4936084,37.7639402],[23.4930358,37.7630003],[23.4923475,37.7623755],[23.4921902,37.7621404],[23.4918905,37.7611477],[23.4911887,37.7608382],[23.4910535,37.7606934],[23.4911473,37.759948],[23.4908264,37.7587299],[23.490512,37.7582238],[23.4902806,37.757513],[23.4900569,37.7568608],[23.4889586,37.7564505],[23.4887665,37.7563144],[23.4887128,37.7558816],[23.4889652,37.7556393],[23.489124,37.755667],[23.4893937,37.7560558],[23.4902462,37.7559062],[23.4906204,37.7559619],[23.4915016,37.7565967],[23.4917846,37.756706],[23.4926126,37.7568087],[23.4930411,37.7572432],[23.4932566,37.7572712],[23.4932893,37.7571496],[23.4929405,37.7566975],[23.4920915,37.7563333],[23.4918656,37.7561701],[23.4913942,37.7553839],[23.490571,37.754585],[23.4905169,37.7541972],[23.4906798,37.753621],[23.4906358,37.7534135],[23.4903883,37.753079],[23.4901285,37.7528976],[23.4898568,37.7527883],[23.4893236,37.7527319],[23.4882039,37.7528104],[23.4880412,37.752839],[23.4871582,37.7526458],[23.4864321,37.7522799],[23.4858686,37.751998],[23.4856995,37.7518261],[23.4856223,37.7515012],[23.4850068,37.7507347],[23.4847357,37.7505442],[23.484601,37.7503273],[23.4843464,37.7493979],[23.4844226,37.7488935],[23.4845151,37.7486505],[23.4844847,37.7481186],[23.4845997,37.7479118],[23.4854665,37.7473027],[23.4862612,37.7469276],[23.4864212,37.7467661],[23.486859,37.7463511],[23.4869782,37.7463449],[23.4875796,37.7463745],[23.4878051,37.7465918],[23.4877577,37.74688],[23.4873694,37.7472299],[23.4873908,37.7474192],[23.4876297,37.7474946],[23.4882894,37.7472902],[23.4892024,37.7467398],[23.4894193,37.7465605],[23.489604,37.7461107],[23.4902553,37.7454826],[23.4905962,37.7454209],[23.4921058,37.7454275],[23.4924686,37.7454831],[23.4932599,37.7459552],[23.4937482,37.7459302],[23.4941334,37.7460401],[23.4947632,37.74689],[23.4954906,37.7469652],[23.496213,37.7473559],[23.4965805,37.7475647],[23.4968628,37.7477823],[23.4969938,37.7485399],[23.4972418,37.7487934],[23.4977408,37.7488676],[23.4991486,37.7488285],[23.5001361,37.7488282],[23.5004291,37.7489939],[23.501084,37.7495105],[23.5016253,37.7495691],[23.502273,37.7494546],[23.5030107,37.7494758],[23.5035142,37.749514],[23.503888,37.7496237],[23.5039799,37.7496736],[23.504529,37.7500478],[23.5056491,37.7506023],[23.5072324,37.7509627],[23.5073901,37.7509904],[23.5080113,37.7511304],[23.5083509,37.751276],[23.5090625,37.7518108],[23.5102769,37.7518519],[23.5111039,37.7517224],[23.5120002,37.7517982],[23.5129575,37.7517616],[23.5134558,37.7519439],[23.5137332,37.7520419],[23.5144353,37.7523152],[23.5160062,37.7537007],[23.5164237,37.754099],[23.5181302,37.7545679],[23.518722,37.7547168],[23.5188693,37.7547534],[23.5211465,37.7553013],[23.5227335,37.7556592],[23.524066,37.7558629],[23.5265778,37.7559],[23.5285978,37.7560163],[23.5300025,37.7564906],[23.5305016,37.7565467],[23.5312778,37.7566106],[23.5330492,37.7565275],[23.5335107,37.7564347],[23.5357858,37.7556775],[23.537956,37.7553796],[23.5382585,37.755507],[23.5383352,37.7559489],[23.5383679,37.7561654],[23.538572,37.7562022],[23.5387932,37.7553198],[23.5387621,37.754851],[23.5386389,37.7545801],[23.53821,37.7541728],[23.537972,37.7541178],[23.5376193,37.7542426],[23.5372085,37.7545835],[23.5369925,37.7546277],[23.536793,37.7545391],[23.5367484,37.7544037],[23.5373108,37.7534145],[23.5373314,37.7530766],[23.5371979,37.7531481],[23.5368244,37.7529754],[23.5369509,37.7528745],[23.5369864,37.7526583],[23.5369099,37.7521713],[23.5369584,37.7516848],[23.5368222,37.7513373],[23.5374401,37.7505375],[23.5376156,37.749709],[23.5375605,37.7494384],[23.5375506,37.7488638],[23.5375984,37.7486431],[23.537761,37.7483959],[23.5377678,37.7482179],[23.5378412,37.7477721],[23.5377881,37.747177],[23.5375437,37.746669],[23.5374553,37.7462811],[23.5374753,37.7459792],[23.5374877,37.745799],[23.5375961,37.7449635],[23.5376206,37.744905],[23.5376615,37.7447136],[23.536937,37.7444043],[23.5365868,37.7441506],[23.5363139,37.7439873],[23.5362588,37.7439645],[23.5361739,37.7439259],[23.5355622,37.7437252],[23.5352312,37.743627],[23.534415,37.7434615],[23.5338962,37.743331],[23.5322996,37.7427208],[23.5317352,37.7424054],[23.5307325,37.7412139],[23.5309509,37.7407822],[23.5311908,37.7405398],[23.5312557,37.7404882],[23.5320077,37.7401892],[23.532293,37.739938],[23.5327862,37.7391198],[23.5329315,37.7389626],[23.5332377,37.7388444],[23.5355115,37.7382112],[23.5367492,37.7381169],[23.5371591,37.7379022],[23.5376611,37.7374805],[23.5381649,37.7367795],[23.5381488,37.7357069],[23.5391451,37.7342777],[23.5391721,37.7335747],[23.5390508,37.7329974],[23.5389722,37.7328709],[23.5385535,37.732671],[23.5378613,37.7326683],[23.5372231,37.7330984],[23.5368224,37.7336557],[23.5365032,37.7338888],[23.535605,37.7341556],[23.5351169,37.7341717],[23.5349832,37.7341013],[23.5347136,37.7336586],[23.5343912,37.7325938],[23.5344236,37.7322942],[23.5345347,37.732155],[23.5349022,37.7314669],[23.5354161,37.7309552],[23.5364064,37.7304634],[23.5372705,37.7302144],[23.5377262,37.7299277],[23.5381054,37.7296791],[23.5381976,37.7294451],[23.5379664,37.7292144],[23.536242,37.7291445],[23.5351885,37.7288339],[23.5349513,37.7286617],[23.5347716,37.7283546],[23.5342529,37.7278298],[23.5343108,37.7274807],[23.5342562,37.727307],[23.5340632,37.7273153],[23.5339245,37.7277203],[23.5344843,37.7289393],[23.5348438,37.7295176],[23.5347745,37.7297156],[23.5345586,37.7297508],[23.5343779,37.7296239],[23.5333303,37.7283759],[23.5331213,37.7278906],[23.5331679,37.7273636],[23.5331707,37.7270842],[23.5329669,37.7270022],[23.5324653,37.7273788],[23.5321355,37.7274857],[23.5301945,37.7279016],[23.5298317,37.727855],[23.5292447,37.7275327],[23.5287135,37.7271881],[23.5268915,37.7264057],[23.5262458,37.7262408],[23.5249759,37.7260735],[23.5243308,37.7258095],[23.5235631,37.7251935],[23.5232713,37.7245163],[23.5222277,37.7226915],[23.5205281,37.7205574],[23.5203938,37.7202685],[23.5203075,37.7197363],[23.520467,37.7196378],[23.5207165,37.7196569],[23.5214971,37.7200206],[23.5224141,37.7203398],[23.5232844,37.720866],[23.5237565,37.7210662],[23.524391,37.721213],[23.5257968,37.7213989],[23.5261942,37.7213645],[23.5265022,37.7211134],[23.5267141,37.7198974],[23.5270683,37.7195113],[23.5271035,37.7193312],[23.5270848,37.7192004],[23.5268706,37.7188165],[23.5258117,37.7176135],[23.5251154,37.716493],[23.5248334,37.7162395],[23.5247692,37.7161919],[23.5235128,37.7157182],[23.5225153,37.7155632],[23.5218574,37.7155335],[23.520574,37.7157446],[23.5196218,37.7156055],[23.5192263,37.7153515],[23.5192728,37.7151805],[23.5203856,37.7150498],[23.5206707,37.7148256],[23.5206299,37.7141134],[23.5200808,37.7130476],[23.5200601,37.7127411],[23.5201977,37.7125073],[23.5204142,37.712364],[23.5211634,37.7123129],[23.5212351,37.7122389],[23.5212338,37.7121059],[23.5212422,37.7116801],[23.5204563,37.710397],[23.5203661,37.7103155],[23.5194052,37.7094441],[23.518815,37.7087747],[23.5180155,37.7078521],[23.5175753,37.7075078],[23.5171896,37.7073327],[23.515709,37.7069751],[23.5127951,37.7067107],[23.5123777,37.7063485],[23.5127238,37.7054666],[23.5130642,37.7047627],[23.513033,37.70433],[23.5128979,37.7041672],[23.5121788,37.7048492],[23.5114273,37.7052697],[23.510415,37.7056711],[23.5097531,37.7062542],[23.5097728,37.706714],[23.510097,37.7074364],[23.5103555,37.707816],[23.5110998,37.7084951],[23.5111105,37.7085853],[23.5102527,37.7083023],[23.5090087,37.7077023],[23.5077238,37.706426],[23.5076772,37.7066061],[23.5081239,37.7076896],[23.5081101,37.70805],[23.5080075,37.7081307],[23.5078573,37.7080039],[23.5076004,37.7073989],[23.5071044,37.7069102],[23.5067316,37.7066743],[23.5056902,37.7063274],[23.5046082,37.7064941],[23.5036308,37.7067514],[23.5033233,37.7069303],[23.5023834,37.7083775],[23.5015837,37.709841],[23.5012637,37.7101822],[23.500695,37.7103961],[23.4997992,37.7103382],[23.4992878,37.7104622],[23.4987628,37.7109197],[23.4983012,37.7119182],[23.4980592,37.712476],[23.4972983,37.7129617],[23.4950479,37.7138489],[23.4898954,37.7157375],[23.4870276,37.7168247],[23.484366,37.7177685],[23.4829372,37.7184652],[23.4824938,37.7185985],[23.4818147,37.7186586],[23.4815876,37.7186846],[23.4812757,37.7188117],[23.4811203,37.7189823],[23.4810644,37.7204872],[23.4805004,37.7216384],[23.4803721,37.7221426],[23.4807351,37.7237846],[23.4806882,37.7240007],[23.4804615,37.7241146],[23.4802345,37.7241136],[23.4776389,37.7237056],[23.4770715,37.7237031],[23.4756287,37.723949],[23.4752967,37.7243622],[23.475406,37.7249575],[23.4753045,37.7252185],[23.4741884,37.7257903],[23.4738929,37.7258521],[23.4731443,37.7258127],[23.4727992,37.7259599],[23.4723063,37.7266607],[23.4721467,37.7269146],[23.4713184,37.7277063],[23.4701024,37.7295485],[23.4695939,37.7300352],[23.4679087,37.7308298],[23.4677239,37.7312796],[23.4675869,37.7313962],[23.4672125,37.7313765],[23.4666819,37.7309955],[23.4663418,37.7309489],[23.4652119,37.7312457],[23.4650738,37.7315065],[23.4652071,37.7319127],[23.4651913,37.732192],[23.4648721,37.7323889],[23.46336,37.7324699],[23.4604446,37.7326075],[23.4594796,37.7326482],[23.4584835,37.7323011],[23.4572,37.7324484],[23.4566306,37.7327162],[23.4565504,37.732824],[23.4567982,37.7330775],[23.4572392,37.7332958],[23.4572157,37.7334129],[23.45608,37.7335248],[23.4555242,37.7334862],[23.4554963,37.7335695],[23.4559965,37.7339346],[23.457062,37.7341017],[23.4574427,37.7343333],[23.45748,37.7345182],[23.4573401,37.7345852],[23.4569429,37.7345834],[23.4553523,37.7348284],[23.4542177,37.7347871],[23.4533206,37.734855],[23.4527813,37.7350328],[23.4520864,37.7353901],[23.451935,37.7354322],[23.4509012,37.7355716],[23.4495535,37.7356622],[23.4482351,37.7359174],[23.448168,37.7359306],[23.4462132,37.7363],[23.44501,37.7363304],[23.4442266,37.7365115],[23.4441924,37.7365294],[23.4431224,37.7369547],[23.4427223,37.7371984],[23.4422788,37.7374599],[23.4406487,37.7379772],[23.4393625,37.7384759],[23.4384957,37.7390305],[23.4383927,37.7391472],[23.4384127,37.7394988],[23.4372728,37.7395542],[23.4363785,37.7393832],[23.4347799,37.7411196],[23.4341369,37.74177],[23.4340822,37.741826],[23.4336079,37.7423939],[23.4324132,37.7417076],[23.431235,37.7416028],[23.4310225,37.7416175],[23.4305454,37.7416603],[23.4305909,37.7417957],[23.4306462,37.7427266],[23.4302319,37.7434637],[23.4301189,37.7435803],[23.4298561,37.7438134],[23.4296456,37.7444388],[23.4295515,37.7448619],[23.4294513,37.7452084],[23.4292442,37.745568],[23.4291126,37.7457115],[23.4289439,37.7458301],[23.4288469,37.7458973],[23.4286095,37.7460471],[23.428119,37.746225],[23.4277347,37.7462952],[23.4275451,37.7463191],[23.4274006,37.7463387],[23.4271354,37.7463193],[23.4268403,37.7463179],[23.4265882,37.7466231],[23.4264585,37.7467915],[23.4259137,37.7473815],[23.4257103,37.7472633],[23.4256883,37.7471731],[23.4264697,37.7459421],[23.4259768,37.7450924]]},{"id":15943,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u03a0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7 \u0391\u03af\u03b3\u03b9\u03bd\u03b1-\u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9","description_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1-\u039c\u03b1\u03c1\u03b1\u03b8\u03ce\u03bd\u03b1\u03c2-\u0391\u03b9\u03b3\u03b7\u03bd\u03af\u03c4\u03b9\u03c3\u03c3\u03b1-\u03a0\u03ad\u03c1\u03b4\u03b9\u03ba\u03b1-\u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9","path":"Car_touring\/CAR_Aegina_Sfendouri","activity_type":11,"assistance":1,"difficulty":1,"scenic_value":4,"length":16004,"name_EN":"Aegina Isl: A tour from Aegina to Sfendouri","description_EN":"Aegina-Marathonas-Aeghinitisa-Perdhika-Sfendouri","ascent_time":0,"descent_time":0,"marker":"No_marks","level":13,"ascent":406,"descent":176,"maxelev":266,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.42569 37.74738,23.4876 37.68702)","views":16,"millestones":"0,23.4259768,37.7450969#1,23.4305725,37.7428685#2,23.4374190,37.7382596#3,23.4431437,37.7305364#4,23.4487967,37.7246006#5,23.4585240,37.7202299#6,23.4630244,37.7128710#7,23.4660173,37.7048109#8,23.4678045,37.6972846#9,23.4642836,37.6937245#10,23.4552920,37.6898020#11,23.4542930,37.6897590#12,23.4593189,37.6888358#13,23.4638754,37.6910362#14,23.4747774,37.6909909#15,23.4783866,37.6871150#16.0,23.4875997,37.6874350","x":23.4619492,"y":37.6933912,"coor":[[23.4259768,37.7450969],[23.4264696,37.7459466],[23.4256883,37.7471776],[23.4257103,37.7472678],[23.4259137,37.747386],[23.4260258,37.7471139],[23.4263398,37.7467301],[23.4267517,37.7463085],[23.4271491,37.7462834],[23.4274054,37.7463049],[23.4277226,37.7462568],[23.4280976,37.7461933],[23.4285757,37.7460154],[23.4291589,37.7455968],[23.4294003,37.7452014],[23.4294972,37.7448617],[23.4296968,37.7439974],[23.4298546,37.7438179],[23.4301175,37.7435848],[23.4302308,37.7434682],[23.4306451,37.7427311],[23.4305898,37.7418002],[23.4305443,37.7416648],[23.4310214,37.741622],[23.4312336,37.7416073],[23.4324121,37.7417121],[23.4336068,37.7423984],[23.4340807,37.7418305],[23.4341358,37.7417745],[23.4347784,37.7411241],[23.4363774,37.7393877],[23.436804,37.7389233],[23.4378224,37.7378286],[23.4381656,37.7374674],[23.4390571,37.7366425],[23.4395958,37.735942],[23.4400134,37.7349278],[23.4402268,37.7346133],[23.4404183,37.7343348],[23.4406352,37.7340181],[23.4406514,37.7339957],[23.4407661,37.733834],[23.4411091,37.7333512],[23.4415576,37.7327021],[23.4429329,37.730764],[23.4436881,37.7299384],[23.4437543,37.7298598],[23.4439322,37.729597],[23.4442207,37.7289494],[23.4447686,37.7270052],[23.4449009,37.7263298],[23.4444763,37.7254535],[23.4453614,37.7252571],[23.4479165,37.7249987],[23.4493169,37.7243654],[23.4504766,37.7240643],[23.4519535,37.7238278],[23.4526146,37.7234163],[23.4542082,37.7227387],[23.4559337,37.7217169],[23.456413,37.7213451],[23.4568236,37.7210585],[23.4578933,37.7206308],[23.4600202,37.7192976],[23.4607693,37.7186859],[23.4609635,37.7184975],[23.4616901,37.7178068],[23.4623539,37.7173096],[23.4629228,37.7167985],[23.4629633,37.7158973],[23.4635228,37.7150616],[23.4635863,37.7147622],[23.463219,37.7137781],[23.4630105,37.7127947],[23.462913,37.7121634],[23.4629523,37.7114245],[23.4631247,37.7111278],[23.4636843,37.7106166],[23.4648595,37.7096846],[23.4654861,37.7093269],[23.4652367,37.7077214],[23.4658403,37.7061604],[23.4659047,37.705879],[23.4660882,37.7051024],[23.4660212,37.7048182],[23.4655165,37.7038628],[23.4654508,37.7033239],[23.4656032,37.7029889],[23.4660833,37.7024773],[23.4673504,37.7016786],[23.4675716,37.7015309],[23.4682843,37.7010068],[23.4686693,37.700461],[23.4690858,37.6999582],[23.4691696,37.6996498],[23.4689811,37.6990361],[23.4680388,37.6975537],[23.4676159,37.6970605],[23.4672612,37.6970409],[23.4662499,37.6972887],[23.4651722,37.6973018],[23.4647192,37.6972006],[23.4642785,37.6969733],[23.4640418,37.6967559],[23.4640106,37.6965102],[23.4641714,37.6962405],[23.4647876,37.6957296],[23.4662571,37.6948529],[23.4668053,37.6943236],[23.4668183,37.6940983],[23.4665582,37.693989],[23.4623311,37.6934741],[23.4619492,37.6933912],[23.4586826,37.691826],[23.4581221,37.6915463],[23.4573762,37.6911823],[23.4571388,37.6910708],[23.4574252,37.6906846],[23.457231,37.6904268],[23.4567075,37.6904785],[23.4565689,37.6900497],[23.4562157,37.6899759],[23.4548338,37.6897172],[23.4541756,37.6897682],[23.4540504,37.6898217],[23.4539104,37.689731],[23.4530426,37.6894655],[23.4521818,37.6892993],[23.4517519,37.6891441],[23.4503356,37.6889482],[23.4498728,37.6886486],[23.4497048,37.6883594],[23.4498728,37.6886486],[23.4503356,37.6889482],[23.4517519,37.6891441],[23.4521818,37.6892993],[23.4530426,37.6894655],[23.4539104,37.689731],[23.4540504,37.6898217],[23.4541756,37.6897682],[23.4548338,37.6897172],[23.4562157,37.6899759],[23.4565689,37.6900497],[23.4567075,37.6904785],[23.457231,37.6904268],[23.4582081,37.6901969],[23.4585641,37.6900363],[23.4588145,37.6899113],[23.4589973,37.6897319],[23.4589779,37.6896236],[23.4589345,37.689353],[23.458974,37.689182],[23.4594164,37.6887378],[23.4596204,37.6884188],[23.459636,37.687833],[23.4600953,37.6873935],[23.4602666,37.687232],[23.4600953,37.6873935],[23.459636,37.687833],[23.4596204,37.6884188],[23.4594164,37.6887378],[23.458974,37.689182],[23.4589345,37.689353],[23.4589779,37.6896236],[23.4589973,37.6897319],[23.4588145,37.6899113],[23.4585641,37.6900363],[23.4582081,37.6901969],[23.457231,37.6904268],[23.4574252,37.6906846],[23.4571388,37.6910708],[23.4573762,37.6911823],[23.4581221,37.6915463],[23.4586826,37.691826],[23.4594029,37.6916716],[23.4607543,37.6914344],[23.4619848,37.6913161],[23.4632832,37.6912116],[23.4637898,37.691099],[23.4642344,37.6907765],[23.4658575,37.6906216],[23.4680719,37.6904018],[23.4689905,37.690406],[23.4703992,37.6908922],[23.4718683,37.6911985],[23.4719815,37.6912351],[23.4732122,37.691369],[23.4744842,37.6911404],[23.4756793,37.6905418],[23.4774424,37.6898286],[23.4778531,37.6894879],[23.4778224,37.68901],[23.4778966,37.6882893],[23.477615,37.6880086],[23.4765647,37.6873731],[23.4764101,37.687084],[23.4764448,37.686976],[23.4767206,37.6869749],[23.4769065,37.687147],[23.4770642,37.6873099],[23.4783753,37.6879467],[23.478136,37.6874499],[23.4781846,37.6869994],[23.4783309,37.6870091],[23.4785884,37.6874879],[23.4791743,37.6880403],[23.4792653,37.6879957],[23.4792349,37.6874818],[23.4796451,37.6872132],[23.4798821,37.6872187],[23.4802429,37.6875268],[23.4810778,37.6878009],[23.4811673,37.6878305],[23.4817455,37.6878601],[23.4831071,37.687776],[23.4832235,37.6878644],[23.4835643,37.6877847],[23.4836994,37.6879295],[23.4843986,37.6881399],[23.4851168,37.6882737],[23.4856972,37.6881478],[23.486608,37.6876471],[23.48704,37.6875047],[23.4875997,37.687435]]},{"id":16266,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0391\u03bd\u03b9\u03c4\u03c3\u03b1\u03af\u03bf\u03c5-\u03a0\u03b1\u03c1\u03b1\u03c4\u03b7\u03c1\u03b7\u03c4\u03ae\u03c1\u03b9\u03bf \u0391\u03b3. \u0391\u03bd\u03c4\u03c9\u03bd\u03af\u03bf\u03c5","description_GR":"\u039c\u03b9\u03b1 \u03ba\u03bf\u03c1\u03c5\u03c6\u03ae \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c0\u03ad\u03bb\u03b1\u03b3\u03bf\u03c2","path":"Islands\/Islands_Aegina_AgAntonios","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":1514,"name_EN":"Aegina Isl: Anitseou-Ag. Antonios watch post","description_EN":"A summit hovering above the sea","ascent_time":35,"descent_time":35,"marker":"Red_dots","level":13,"ascent":141,"descent":73,"maxelev":306,"minelev":159,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.5095 37.69418,23.51878 37.69947)","views":8,"millestones":"0,23.5095002,37.6992364#1,23.5168248,37.6967078#1.5,23.5187825,37.6941754","x":23.51599,"y":37.6969671,"coor":[[23.5095002,37.6992364],[23.5102338,37.699476],[23.5104154,37.6994587],[23.5103741,37.6989966],[23.5106318,37.6984659],[23.5110809,37.6974403],[23.5116281,37.6970279],[23.5118321,37.6970558],[23.5123948,37.6977432],[23.513088,37.6975387],[23.5133944,37.697522],[23.5135568,37.6974663],[23.5140898,37.6974865],[23.5141016,37.6974145],[23.5143175,37.6973613],[23.5147938,37.6973722],[23.5149003,37.6970798],[23.5150136,37.6970982],[23.5150936,37.6969994],[23.5159203,37.6972101],[23.5159321,37.6971471],[23.5160227,37.6971655],[23.51599,37.6969671],[23.5160699,37.6968773],[23.5162844,37.6970404],[23.5165793,37.6970416],[23.5170485,37.6964036],[23.5175148,37.6962252],[23.517855,37.6962266],[23.5179462,37.6961639],[23.517307,37.6956768],[23.5171728,37.6953878],[23.5173087,37.6954244],[23.5173094,37.6953163],[23.5174912,37.695272],[23.5175501,37.6949297],[23.517712,37.694829],[23.5181664,37.6947317],[23.5182463,37.6946509],[23.5182019,37.6945065],[23.5183153,37.6944979],[23.518271,37.6943355],[23.5184862,37.6943905],[23.5187825,37.6941754]]},{"id":16267,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0391\u03bd\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u038c\u03c1\u03bf\u03c2","description_GR":"","path":"Islands\/Islands_Aegina_Anitseo_Oros","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":2947,"name_EN":"Aegina Isl: Ascent to Oros Mt","description_EN":"","ascent_time":60,"descent_time":50,"marker":"ELLET_Aegina_01","level":13,"ascent":311,"descent":17,"maxelev":525,"minelev":226,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.49278 37.70029,23.50584 37.70726)","views":76,"millestones":"0,23.5046060,37.7064963#1,23.4999770,37.7064059#2,23.4937907,37.7037651#2.9,23.4957928,37.7007266","x":23.4952214,"y":37.7063597,"coor":[[23.504606,37.7064963],[23.5043749,37.7061213],[23.5041054,37.7057056],[23.5041438,37.7055232],[23.5048673,37.7052762],[23.5050172,37.705225],[23.5053819,37.7049831],[23.5058138,37.7045365],[23.505624,37.7043983],[23.5051473,37.7044323],[23.5050495,37.7043215],[23.5028464,37.7044452],[23.5026767,37.7043814],[23.5023239,37.7045421],[23.5018015,37.7046301],[23.5011996,37.7045644],[23.5006574,37.7047469],[23.5004293,37.7049262],[23.5001909,37.7049612],[23.5002082,37.7057635],[23.499978,37.7062582],[23.4999766,37.7064565],[23.4998856,37.7065012],[23.4999303,37.7066005],[23.4996235,37.7066713],[23.4993381,37.7069405],[23.4987593,37.7069651],[23.4984535,37.7068917],[23.498013,37.7066104],[23.4975712,37.7065184],[23.4975359,37.7066985],[23.4973413,37.7069501],[23.4974047,37.7072793],[23.4968844,37.7070518],[23.4958419,37.7068761],[23.4951627,37.7066478],[23.4952214,37.7063597],[23.4955871,37.7059646],[23.4954396,37.705964],[23.4953275,37.7057742],[23.4950219,37.7056738],[23.4940727,37.7051199],[23.4941413,37.7050391],[23.4937018,37.7046046],[23.4939984,37.7043715],[23.4937869,37.7037667],[23.4941126,37.7036239],[23.4941707,37.7034259],[23.4946596,37.7032657],[23.4949565,37.7029786],[23.4949177,37.7028432],[23.4940374,37.7021724],[23.493531,37.7015754],[23.493023,37.7012127],[23.4928229,37.700617],[23.4928812,37.7003738],[23.4932427,37.7002334],[23.4933547,37.7004412],[23.4936281,37.7002802],[23.4938863,37.7006688],[23.4940678,37.7006696],[23.494203,37.7008054],[23.4943615,37.7008602],[23.4945563,37.7005636],[23.4950202,37.7007458],[23.4950537,37.7008271],[23.4953711,37.70086],[23.4953039,37.7007335],[23.4955778,37.7004913],[23.4955084,37.7006893],[23.4957241,37.7006632],[23.4957928,37.7007266]]},{"id":16268,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u03a0\u03b5\u03c1\u03af\u03c0\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c0\u03cc\u03bb\u03b7","description_GR":"\u0391\u03c1\u03c7\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03be\u03b9\u03bf\u03b8\u03ad\u03b1\u03c4\u03b1","path":"Islands\/Islands_Aegina_CITY_WALK_crossing","activity_type":31,"assistance":1,"difficulty":1,"scenic_value":5,"length":3320,"name_EN":"Aegina Isl: A walk across the town","description_EN":"Antiquities and sight-seeing","ascent_time":60,"descent_time":60,"marker":"No_marks","level":13,"ascent":32,"descent":37,"maxelev":18,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.42229 37.74162,23.43361 37.7507)","views":291,"millestones":"0,23.4247782,37.7495864#1,23.4263355,37.7471330#2,23.4325510,37.7437676#3,23.4287259,37.7459761#3.3,23.4259098,37.7473859","x":23.4302909,"y":37.7474252,"coor":[[23.4247782,37.7495864],[23.4242909,37.7494939],[23.4241808,37.7496488],[23.4238506,37.7497734],[23.4238154,37.7499174],[23.4236905,37.7499258],[23.4236901,37.7499799],[23.4238602,37.7499988],[23.4238516,37.7502421],[23.4234912,37.7502921],[23.4235241,37.7504365],[23.4236572,37.7504214],[23.423462,37.7507089],[23.4227145,37.7504889],[23.4223645,37.750388],[23.4223123,37.7502188],[23.4222914,37.7499843],[23.4235754,37.7495354],[23.4241096,37.7494479],[23.4242909,37.7494939],[23.4247782,37.7495864],[23.4248607,37.749197],[23.4249164,37.7490575],[23.4253893,37.7491027],[23.4256781,37.7484551],[23.4258078,37.7478248],[23.4259144,37.747386],[23.4260209,37.747418],[23.4261913,37.7472611],[23.4262998,37.747176],[23.4265519,37.7468708],[23.42669,37.7467656],[23.4268228,37.7467392],[23.4269419,37.7467533],[23.4270284,37.7467605],[23.4273656,37.7467351],[23.4275975,37.7467024],[23.4278496,37.7466698],[23.4279048,37.7468661],[23.42797,37.7471053],[23.4280129,37.7472948],[23.4285289,37.7472139],[23.4285948,37.7471782],[23.4286629,37.747183],[23.4291653,37.747253],[23.4293251,37.7472741],[23.4298353,37.7473487],[23.4300724,37.7473859],[23.4301436,37.7473952],[23.4302909,37.7474252],[23.4308127,37.7474773],[23.4307368,37.7473282],[23.4306505,37.7470146],[23.430642,37.746787],[23.4307557,37.746623],[23.4307513,37.7461836],[23.4307299,37.7460123],[23.4307135,37.7459243],[23.4306547,37.7455973],[23.4305811,37.7451103],[23.430654,37.7450768],[23.4308934,37.7449428],[23.4311898,37.744782],[23.4315307,37.7447295],[23.4317341,37.7447125],[23.4318668,37.7446973],[23.4319608,37.7442877],[23.4322488,37.7441944],[23.4327113,37.7435477],[23.4328005,37.7434242],[23.4331456,37.742964],[23.4336039,37.7423983],[23.4324096,37.7417121],[23.4312311,37.7416073],[23.4310189,37.741622],[23.4305418,37.7416648],[23.4305873,37.7418002],[23.4306426,37.7427311],[23.4302283,37.7434682],[23.430115,37.743587],[23.4298521,37.7438201],[23.429642,37.7444455],[23.4295479,37.7448687],[23.4294477,37.7452152],[23.4292406,37.7455747],[23.429109,37.7457183],[23.42894,37.7458346],[23.428843,37.7459018],[23.4286059,37.7460538],[23.4281151,37.7462295],[23.4277311,37.7462997],[23.4275411,37.7463236],[23.427397,37.7463431],[23.4271315,37.7463238],[23.4268363,37.7463224],[23.4265843,37.7466276],[23.4264549,37.746796],[23.4259098,37.7473859]]},{"id":16269,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 1","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u0391\u03bd\u03b9\u03c4\u03c3\u03b1\u03af\u03bf\u03c5, \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9, \u03be\u03b5\u03bd\u03ce\u03bd\u03b1\u03c2 \u0395\u03bb\u03bb\u03b1\u03bd\u03af\u03bf\u03c5 \u0394\u03b9\u03cc\u03c2","path":"Islands\/Islands_Aegina_ELLET_1","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":5,"length":9629,"name_EN":"Aegina Isl: Trail1","description_EN":"Paths of Culture: Anitseou, Sfendouri, Elanios Zeus","ascent_time":225,"descent_time":225,"marker":"ELLET_Aegina_01","level":13,"ascent":428,"descent":428,"maxelev":454,"minelev":181,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.48049 37.68731,23.50603 37.70737)","views":73,"millestones":"0,23.5046060,37.7064963#1,23.4999770,37.7064080#2,23.4939196,37.7041511#3,23.4916506,37.6965978#4,23.4830100,37.6932974#5,23.4860332,37.6879615#6,23.4949919,37.6905855#7,23.4997857,37.6969834#8,23.5052312,37.7000696#9,23.5032909,37.7044248#9.6,23.5046096,37.7064986","x":23.4853736,"y":37.68841,"coor":[[23.504606,37.7064963],[23.5043749,37.7061213],[23.5041054,37.7057056],[23.5041438,37.7055232],[23.5050172,37.705225],[23.5051746,37.705122],[23.5053819,37.7049831],[23.5058138,37.7045365],[23.505624,37.7043983],[23.5051473,37.7044323],[23.5050495,37.7043215],[23.5028464,37.7044474],[23.5026767,37.7043836],[23.5023239,37.7045444],[23.5018015,37.7046323],[23.5011996,37.7045667],[23.5006574,37.7047492],[23.5004293,37.7049284],[23.5001909,37.7049635],[23.5002082,37.7057657],[23.4999779,37.7062605],[23.4999766,37.7064588],[23.4998856,37.7065035],[23.4999303,37.7066028],[23.4996235,37.7066736],[23.4993381,37.7069428],[23.4987593,37.7069674],[23.4984535,37.706894],[23.498013,37.7066127],[23.4975711,37.7065207],[23.4975359,37.7067008],[23.4973413,37.7069523],[23.4974047,37.7072816],[23.4974407,37.7073583],[23.4973412,37.7074458],[23.4974407,37.7073583],[23.4974047,37.7072816],[23.4968844,37.707054],[23.4958418,37.7068783],[23.4951627,37.7066501],[23.4952214,37.7063619],[23.4955871,37.7059669],[23.4954396,37.7059663],[23.4953275,37.7057765],[23.4950218,37.705676],[23.4940727,37.7051222],[23.4941413,37.7050413],[23.4937018,37.7046068],[23.4939983,37.7043738],[23.4937869,37.703769],[23.4941126,37.7036261],[23.4941707,37.7034281],[23.4946596,37.703268],[23.4949565,37.7029808],[23.4949177,37.7028454],[23.4940374,37.7021747],[23.493531,37.7015776],[23.493023,37.7012149],[23.4928228,37.7006192],[23.4928812,37.7003761],[23.4927557,37.7001232],[23.492896,37.6995109],[23.4928433,37.6989248],[23.4926159,37.6985272],[23.4925939,37.6982207],[23.4924497,37.6977424],[23.4922051,37.6970203],[23.4918997,37.6968838],[23.4914945,37.6964223],[23.4910319,37.6960598],[23.4909184,37.6960773],[23.4905363,37.6955529],[23.4903749,37.6954598],[23.4901475,37.69554],[23.4901243,37.695621],[23.4889962,37.6963642],[23.4886575,37.6964551],[23.4882399,37.6961469],[23.4876963,37.6960183],[23.4869618,37.6956185],[23.4868264,37.6955098],[23.4862204,37.6945608],[23.4849716,37.6939064],[23.4841529,37.693727],[23.4825465,37.6931251],[23.4814584,37.6930122],[23.4809947,37.6928119],[23.4809045,37.6927394],[23.4808984,37.6925996],[23.4808774,37.6923472],[23.4806857,37.6921841],[23.4807675,37.6920537],[23.4805978,37.6919899],[23.4807871,37.6916775],[23.4809017,37.6915068],[23.4810869,37.6907663],[23.4818432,37.6898683],[23.4820063,37.6897067],[23.4827742,37.6893676],[23.4832414,37.6890632],[23.4843014,37.6886713],[23.4853736,37.68841],[23.4856924,37.6882312],[23.4856944,37.6881478],[23.4866052,37.687647],[23.4870371,37.6875047],[23.4875966,37.687435],[23.4878798,37.6874813],[23.4884591,37.6873577],[23.4886053,37.6875273],[23.4887844,37.6875731],[23.4891136,37.6875295],[23.4893754,37.6873864],[23.4897383,37.687388],[23.4900941,37.6872386],[23.4904167,37.6878551],[23.4907207,37.6881809],[23.4909449,37.6885694],[23.4911594,37.6887123],[23.4915553,37.6888763],[23.4918148,37.6890757],[23.4923932,37.6890782],[23.4928122,37.6891701],[23.493646,37.6899759],[23.4942225,37.6902758],[23.4947431,37.6904402],[23.4959406,37.6911394],[23.4963845,37.6912292],[23.4966,37.6912301],[23.4968391,37.6910959],[23.49702,37.6911778],[23.4971252,37.6913968],[23.4967706,37.691846],[23.4969842,37.6921173],[23.4974922,37.69248],[23.4975251,37.6926423],[23.4978636,37.6929142],[23.498191,37.6932941],[23.4984689,37.6941335],[23.4983421,37.6944395],[23.4984547,37.6945661],[23.4984288,37.6950347],[23.4985965,37.695405],[23.4984596,37.6955125],[23.4984574,37.695846],[23.4985252,37.6958824],[23.4984214,37.6961433],[23.4988034,37.6966857],[23.4990632,37.6968491],[23.4995505,37.6969142],[23.5006259,37.6972342],[23.5009855,37.6977405],[23.5012118,37.6978226],[23.5013582,37.6979854],[23.5026966,37.6980091],[23.5029102,37.6982984],[23.5029189,37.6986951],[23.5030541,37.6988218],[23.5035312,37.6987337],[23.5039616,37.6988256],[23.5041536,37.6989436],[23.5045516,37.6988011],[23.5056338,37.6981206],[23.5059611,37.6980454],[23.5057063,37.6988375],[23.5057511,37.6989188],[23.5055576,37.6990261],[23.5050315,37.6996639],[23.5047236,37.6999059],[23.5048135,37.7000325],[23.5050512,37.7001236],[23.5056422,37.6999458],[23.5056478,37.6999571],[23.5056646,37.699991],[23.5051948,37.7007011],[23.5051817,37.7009624],[23.5043465,37.7020224],[23.5044019,37.702221],[23.5043305,37.7027344],[23.5044544,37.7035529],[23.5040672,37.7037856],[23.5037375,37.7038924],[23.5023082,37.7038773],[23.5021036,37.7039306],[23.5019095,37.704128],[23.5011353,37.7045394],[23.5012032,37.7045667],[23.501805,37.7046323],[23.5023275,37.7045444],[23.5026802,37.7043837],[23.50285,37.7044475],[23.5050526,37.7043238],[23.5051508,37.7044346],[23.5056275,37.7044006],[23.505817,37.7045365],[23.5053854,37.7049854],[23.5050208,37.7052272],[23.5047408,37.7053229],[23.5041474,37.7055255],[23.5041086,37.7057079],[23.5043781,37.7061236],[23.5046096,37.7064986]]},{"id":16270,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 2","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9, \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1\u03c2","path":"Islands\/Islands_Aegina_ELLET_2","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":4,"length":2742,"name_EN":"Aegina Isl: Trail 2","description_EN":"Paths of Culture: Sfendouri, Eleonas","ascent_time":50,"descent_time":50,"marker":"ELLET_Aegina_02","level":13,"ascent":64,"descent":156,"maxelev":270,"minelev":112,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.48034 37.68782,23.48501 37.70776)","views":38,"millestones":"0,23.4811648,37.6878283#1,23.4845191,37.6938069#2,23.4828865,37.7017804#2.7,23.4806664,37.7077611","x":23.4845125,"y":37.6946254,"coor":[[23.4811648,37.6878283],[23.4810754,37.6877986],[23.4811854,37.6882768],[23.4807066,37.6886352],[23.480908,37.6890327],[23.4807966,37.6890885],[23.4807249,37.6892595],[23.4804592,37.6899613],[23.4805692,37.6904395],[23.4805003,37.6905654],[23.4805884,37.6906379],[23.4806701,37.690618],[23.4808741,37.6906369],[23.4810866,37.6907663],[23.480901,37.6915068],[23.4807864,37.6916775],[23.4805971,37.6919899],[23.4807668,37.6920537],[23.4806854,37.6921841],[23.4808771,37.6923472],[23.480898,37.6925996],[23.4809038,37.6927393],[23.480994,37.6928119],[23.4814576,37.6930122],[23.4825457,37.6931251],[23.4841522,37.693727],[23.4849712,37.6939064],[23.4849473,37.6940865],[23.4845125,37.6946254],[23.4845088,37.6951572],[23.4843375,37.6953367],[23.4841863,37.6958768],[23.4843298,37.6964363],[23.4844761,37.6966082],[23.4843168,37.6966796],[23.4843043,37.6968418],[23.4844363,37.6974372],[23.4845597,37.697636],[23.4847804,37.6978714],[23.4840373,37.6987063],[23.4840697,37.6989408],[23.4838637,37.6991923],[23.4839308,37.6993368],[23.4832529,37.7005867],[23.4828932,37.7017388],[23.4828491,37.7020157],[23.482936,37.7025749],[23.4826073,37.7031864],[23.4826533,37.703768],[23.4825581,37.7043985],[23.4822586,37.7050641],[23.4820415,37.7052795],[23.4818574,37.7056572],[23.4817175,37.7061974],[23.4817138,37.7067202],[23.4812037,37.7073353],[23.4806664,37.7077611]]},{"id":16271,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 3","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u039c\u03b1\u03c1\u03b1\u03b8\u03ce\u03bd\u03b1\u03c2, \u03a0\u03b1\u03c7\u03b5\u03b9\u03ac \u03a1\u03ac\u03c7\u03b7, \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1\u03c2","path":"Islands\/Islands_Aegina_ELLET_3","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":4,"length":5761,"name_EN":"Aegina Isl: Trail 3","description_EN":"Paths of Culture: Marathonas, Pachia Rachi, Eleonas","ascent_time":135,"descent_time":130,"marker":"ELLET_Aegina_03","level":13,"ascent":221,"descent":221,"maxelev":222,"minelev":2,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.46233 37.70776,23.48115 37.72062)","views":61,"millestones":"0,23.4623507,37.7173096#1,23.4700125,37.7185132#2,23.4798883,37.7175959#3,23.4793858,37.7104793#4,23.4761874,37.7109674#5,23.4680007,37.7142760#5.8,23.4623564,37.7173074","x":23.4783504,"y":37.7123994,"coor":[[23.4623507,37.7173096],[23.4627024,37.7174622],[23.4629739,37.7175806],[23.4633479,37.7176274],[23.4641343,37.7182821],[23.464406,37.7183645],[23.4646559,37.7183206],[23.4646958,37.7184492],[23.4648021,37.7187967],[23.4649044,37.7187791],[23.4650948,37.7191315],[23.4651931,37.7196547],[23.4653953,37.719935],[23.4654899,37.7203478],[23.4656243,37.7205918],[23.4657374,37.7206373],[23.4660752,37.7203662],[23.4662992,37.7203289],[23.4668022,37.7202433],[23.4673491,37.7199303],[23.4675439,37.7196608],[23.4675788,37.7195438],[23.4679312,37.7193111],[23.4681932,37.719159],[23.4688525,37.7189907],[23.4691262,37.7188027],[23.469478,37.7187953],[23.469739,37.7186365],[23.4699443,37.7184932],[23.4700858,37.7185344],[23.4708466,37.7184476],[23.4718109,37.71847],[23.4727567,37.7178974],[23.4729953,37.7178534],[23.4734825,37.7179547],[23.4743937,37.7174631],[23.474507,37.7174816],[23.4746643,37.7176986],[23.4750269,37.7177723],[23.4751729,37.7179893],[23.4752635,37.7180077],[23.4756173,37.7180161],[23.4758011,37.7181971],[23.4763014,37.7180529],[23.4763868,37.7180127],[23.4772079,37.7172592],[23.4787966,37.7173925],[23.4792264,37.7175746],[23.4796964,37.7175542],[23.4801156,37.7176462],[23.4805135,37.7178327],[23.4807783,37.7176446],[23.4808934,37.7170434],[23.4810878,37.716828],[23.4804601,37.7157256],[23.4800814,37.7147145],[23.4794728,37.7141349],[23.4789759,37.7138083],[23.4786307,37.7128694],[23.4783504,37.7123994],[23.4783979,37.7120932],[23.4786035,37.7118981],[23.4786805,37.7117857],[23.4786498,37.7113169],[23.4791745,37.7109136],[23.4791043,37.7107083],[23.4795401,37.7103497],[23.4797796,37.7100082],[23.4799755,37.7097297],[23.4803398,37.709551],[23.4804095,37.709317],[23.4802524,37.7090639],[23.4806748,37.7086872],[23.4806996,37.7083899],[23.4808266,37.7082756],[23.4808283,37.7080322],[23.4806714,37.7077611],[23.4803752,37.7080888],[23.4802817,37.708485],[23.480042,37.7086912],[23.4800208,37.7087767],[23.4792699,37.7090799],[23.4785521,37.7095274],[23.4780204,37.7101109],[23.4779296,37.7102682],[23.4778389,37.7102588],[23.4771591,37.7101251],[23.4768342,37.7098938],[23.4766276,37.7098929],[23.4766383,37.7099831],[23.4761561,37.7107831],[23.4761996,37.7110537],[23.4760601,37.7115398],[23.4756948,37.7118446],[23.4753306,37.7120142],[23.474656,37.7127503],[23.4744968,37.7128037],[23.4745163,37.7132544],[23.4746619,37.7135255],[23.4740063,37.7133783],[23.4735554,37.7129617],[23.4732824,37.7130597],[23.472579,37.7130565],[23.4712303,37.7134628],[23.4706943,37.713839],[23.469867,37.7137091],[23.469151,37.7138861],[23.4685795,37.714181],[23.4675345,37.7143475],[23.4663323,37.714279],[23.4660875,37.7144018],[23.4652204,37.7145804],[23.464231,37.7146074],[23.4639308,37.7145362],[23.4635888,37.71476],[23.4635253,37.7150571],[23.4629658,37.7158951],[23.4629253,37.7167962],[23.4623564,37.7173074]]},{"id":16272,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 4","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u03a0\u03b1\u03c7\u03b5\u03b9\u03ac \u03a1\u03ac\u03c7\u03b7, \u03bc\u03bf\u03bd\u03ae \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2, \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u039b\u03b5\u03bf\u03bd\u03c4\u03af\u03bf\u03c5","path":"Islands\/Islands_Aegina_ELLET_4","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":4,"length":6111,"name_EN":"Aegina Isl: Trail 4","description_EN":" Paths of Culture: Pachia Rachi, Chrysoleontissa monastery, Leontios plateau","ascent_time":145,"descent_time":145,"marker":"ELLET_Aegina_04","level":13,"ascent":191,"descent":191,"maxelev":375,"minelev":222,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.48153 37.71382,23.49755 37.72702)","views":40,"millestones":"0,23.4815861,37.7186891#1,23.4888478,37.7168558#2,23.4902199,37.7228361#3,23.4895945,37.7246513#4,23.4936062,37.7165576#5,23.4920878,37.7151615#6.1,23.4815872,37.7186869","x":23.4871252,"y":37.7266337,"coor":[[23.4815861,37.7186891],[23.4818133,37.7186631],[23.4824924,37.7186007],[23.4829358,37.7184675],[23.4843646,37.717773],[23.4870261,37.7168292],[23.4898939,37.7157398],[23.4899341,37.7158323],[23.4897356,37.7159689],[23.4896778,37.7161309],[23.489686,37.7162842],[23.488835,37.7165982],[23.4889819,37.7166799],[23.4888335,37.7168055],[23.4888557,37.7168867],[23.488252,37.7172266],[23.4879642,37.7178202],[23.4873596,37.7182953],[23.4871409,37.718745],[23.4873096,37.7187142],[23.4873451,37.7187549],[23.4870365,37.719087],[23.4869922,37.7193888],[23.4867422,37.7200096],[23.4865667,37.7204122],[23.4860756,37.7208787],[23.4869036,37.7209184],[23.4873107,37.721168],[23.4873948,37.7211616],[23.4878756,37.7214814],[23.4883513,37.7216097],[23.4892534,37.7224338],[23.4896374,37.7226878],[23.4900677,37.7228249],[23.4906007,37.7228632],[23.4907469,37.7230531],[23.4907647,37.7232042],[23.4906102,37.7238119],[23.4901758,37.7242787],[23.4890895,37.7249725],[23.4887026,37.7253291],[23.4881285,37.7259531],[23.4871252,37.7266337],[23.4868355,37.727038],[23.4871252,37.7266337],[23.4881285,37.7259531],[23.4887026,37.7253291],[23.4890895,37.7249725],[23.4901758,37.7242787],[23.4906102,37.7238119],[23.4907708,37.7231975],[23.4907469,37.7230531],[23.4907368,37.7228728],[23.490944,37.7224411],[23.4910204,37.7212337],[23.491193,37.7208739],[23.4913453,37.7201715],[23.4918066,37.7190919],[23.4923004,37.7187425],[23.4924722,37.7185179],[23.4926235,37.7179508],[23.4928958,37.7175373],[23.4929543,37.7173325],[23.4933055,37.7169352],[23.4938435,37.7162525],[23.4954599,37.7154663],[23.4956201,37.7152777],[23.496463,37.7147856],[23.4969206,37.7142287],[23.4975463,37.713819],[23.4964293,37.7139044],[23.4950476,37.7138489],[23.4950398,37.7139953],[23.4932535,37.7147448],[23.4929921,37.7147977],[23.4927187,37.7149588],[23.4924349,37.7149846],[23.4902033,37.7161287],[23.4899343,37.7159472],[23.4897371,37.7159667],[23.4899351,37.7158301],[23.489895,37.7157375],[23.4870272,37.7168269],[23.4843657,37.7177707],[23.4829369,37.7184652],[23.4824934,37.7185985],[23.4818143,37.7186609],[23.4815872,37.7186869]]},{"id":16273,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 5","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u0391\u03bd\u03b9\u03c4\u03c3\u03b1\u03af\u03bf\u03c5, \u039a\u03c5\u03bb\u03b9\u03bd\u03b4\u03c1\u03ac\u03c2, \u03a3\u03bf\u03c6\u03b9\u03ba\u03af\u03c4\u03b5\u03c2","path":"Islands\/Islands_Aegina_ELLET_5","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":4,"length":5777,"name_EN":"Aegina Isl: Trail 5","description_EN":"Paths of Culture: Anitseou, Kylindhras, Sofikites","ascent_time":135,"descent_time":135,"marker":"ELLET_Aegina_05","level":13,"ascent":222,"descent":222,"maxelev":237,"minelev":40,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.50397 37.70657,23.52148 37.71885)","views":40,"millestones":"0,23.5046060,37.7064963#1,23.5091252,37.7129846#2,23.5167910,37.7182725#3,23.5179005,37.7153561#4,23.5154413,37.7102012#5,23.5068938,37.7107175#5.8,23.5046071,37.7064963","x":23.5187007,"y":37.7159825,"coor":[[23.504606,37.7064963],[23.5045134,37.7067821],[23.5044271,37.7068043],[23.5040493,37.7073165],[23.5041958,37.7074613],[23.5043551,37.7073899],[23.5047877,37.7076395],[23.5047857,37.7077882],[23.5051182,37.7081119],[23.504911,37.7085617],[23.5048396,37.7090661],[23.5049409,37.7091927],[23.5051671,37.7092838],[23.5051741,37.7099508],[23.5054449,37.7101682],[23.5054769,37.7104748],[23.5060277,37.7112523],[23.506224,37.7114289],[23.5063944,37.7113935],[23.506745,37.7115572],[23.5073826,37.7120669],[23.5073662,37.7121479],[23.5074118,37.7121143],[23.5075502,37.7123042],[23.5081507,37.7124329],[23.5089076,37.7129137],[23.5095982,37.7131419],[23.5098902,37.7135938],[23.5104665,37.7139567],[23.5109965,37.7144456],[23.511427,37.7145376],[23.511551,37.7146643],[23.5117552,37.7146651],[23.512128,37.71491],[23.5130109,37.7152381],[23.5135486,37.7157518],[23.5137284,37.716014],[23.513705,37.716122],[23.5138575,37.7166094],[23.5141364,37.7166308],[23.5144186,37.7168573],[23.5147794,37.7166582],[23.5153048,37.7166627],[23.5156661,37.7169345],[23.516154,37.7170988],[23.5162432,37.7173515],[23.5162186,37.7176398],[23.5171197,37.718653],[23.5175959,37.718709],[23.5183974,37.7184644],[23.5188958,37.7184349],[23.5197029,37.7181949],[23.52027,37.7182422],[23.5204131,37.718369],[23.520514,37.7185587],[23.5209556,37.7187047],[23.5212038,37.718922],[23.5213984,37.7186614],[23.5212188,37.7183543],[23.5213113,37.7180842],[23.5211857,37.7180432],[23.5201817,37.7171378],[23.5201688,37.7170431],[23.5198636,37.7168706],[23.5197628,37.7166719],[23.5191974,37.7163721],[23.5191981,37.716255],[23.5187007,37.7159825],[23.5186334,37.7158651],[23.5183277,37.7157647],[23.5178879,37.7153483],[23.5172094,37.715003],[23.5171539,37.7148045],[23.517052,37.714768],[23.517155,37.7146333],[23.5176329,37.7144279],[23.518155,37.714403],[23.518429,37.7141337],[23.518441,37.7140256],[23.5181142,37.7136818],[23.5180369,37.713357],[23.5179549,37.7130502],[23.5179803,37.7126267],[23.5181812,37.7113927],[23.5182604,37.7112578],[23.5184539,37.7111595],[23.5185367,37.7111283],[23.5181622,37.7111538],[23.5178226,37.7114093],[23.5176872,37.7113005],[23.5175047,37.711444],[23.5171169,37.7115483],[23.5166986,37.7115376],[23.5163368,37.7113378],[23.5162584,37.7111933],[23.5161109,37.7111927],[23.5159423,37.7109486],[23.5158066,37.710885],[23.5154818,37.7102257],[23.5150863,37.7099897],[23.5150766,37.7097373],[23.5140486,37.7090571],[23.5138675,37.7090023],[23.5137285,37.709049],[23.512912,37.7090096],[23.5119148,37.7088252],[23.5111098,37.7085898],[23.5102516,37.7083045],[23.5101393,37.7083469],[23.5097429,37.7082371],[23.5091523,37.7083428],[23.5086647,37.7083047],[23.5085822,37.7084013],[23.5086137,37.7087799],[23.5080778,37.7091833],[23.5072545,37.7101623],[23.5068647,37.7107736],[23.5063289,37.7111589],[23.5060287,37.7112523],[23.505478,37.7104748],[23.505446,37.7101683],[23.5051751,37.7099508],[23.5051682,37.7092838],[23.5049419,37.7091927],[23.5048407,37.7090661],[23.5049121,37.7085617],[23.5051193,37.7081119],[23.5047868,37.7077882],[23.5047892,37.7076395],[23.5043562,37.7073899],[23.5041969,37.7074613],[23.5040504,37.7073165],[23.5044281,37.7068043],[23.5045144,37.7067821],[23.5046071,37.7064963]]},{"id":16274,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 6","description_GR":" \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u03a0\u03b1\u03b3\u03ce\u03bd\u03b9, \u03a3\u03ba\u03bf\u03c4\u03b5\u03b9\u03bd\u03ae, \u03a6\u03c1\u03b5\u03ac\u03c4\u03c3\u03b9, \u03a4\u03b6\u03af\u03ba\u03b7\u03b4\u03b5\u03c2, \u03bc\u03bf\u03bd\u03ae \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2","path":"Islands\/Islands_Aegina_ELLET_6","activity_type":32,"assistance":1,"difficulty":2,"scenic_value":5,"length":5733,"name_EN":"Aegina Isl: Trail 6","description_EN":"Paths of Culture: Paghoni, Freatsi, Tzikidhes, Chrysoleontissa monastery","ascent_time":135,"descent_time":125,"marker":"ELLET_Aegina_06","level":13,"ascent":306,"descent":38,"maxelev":356,"minelev":67,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.4572 37.72633,23.48684 37.73555)","views":33,"millestones":"0,23.4573248,37.7345896#1,23.4668446,37.7341305#2,23.4763523,37.7345687#3,23.4808784,37.7330564#4,23.4744323,37.7288185#5,23.4806666,37.7291448#5.7,23.4868338,37.7270380","x":23.4826923,"y":37.7333968,"coor":[[23.4573248,37.7345896],[23.4573116,37.7347541],[23.4574333,37.7351782],[23.4572619,37.7353397],[23.4572036,37.7355467],[23.4576924,37.7354408],[23.4579091,37.7352976],[23.4590794,37.7351047],[23.4594314,37.7350883],[23.4604282,37.7353542],[23.4621443,37.7350196],[23.4634339,37.7348181],[23.4642563,37.7348219],[23.4648782,37.7345949],[23.465719,37.7344635],[23.4665157,37.7341336],[23.4672421,37.7341279],[23.4679805,37.734023],[23.4683147,37.733957],[23.4687482,37.733995],[23.4696903,37.7339812],[23.4701107,37.7339019],[23.4703939,37.7339843],[23.4705095,37.7340299],[23.4707148,37.7338866],[23.4709517,37.734086],[23.4712191,37.7339925],[23.4716847,37.7339406],[23.4725116,37.7340637],[23.472875,37.7340383],[23.4733848,37.7341667],[23.4732819,37.7342654],[23.4729408,37.734354],[23.4728484,37.734588],[23.4729044,37.7346874],[23.4733932,37.7345724],[23.4741311,37.7345486],[23.4751764,37.734382],[23.4757437,37.7344026],[23.4763099,37.7345673],[23.4769113,37.734588],[23.477594,37.7343387],[23.4785935,37.7342169],[23.4790581,37.7343181],[23.479522,37.7345185],[23.4797685,37.7349702],[23.4801562,37.7347105],[23.480627,37.7346878],[23.4810379,37.7350164],[23.4812932,37.7351775],[23.4815657,37.7351606],[23.482696,37.7341922],[23.4826985,37.7341359],[23.4830523,37.733849],[23.483234,37.7338228],[23.4832349,37.7336966],[23.4830998,37.7335428],[23.4826923,37.7333968],[23.4819203,37.7334294],[23.4815139,37.7331302],[23.4806748,37.7330274],[23.4803811,37.7328278],[23.4798753,37.7321225],[23.4797167,37.7320948],[23.4793863,37.7322736],[23.4789998,37.732362],[23.4780015,37.7323125],[23.4758219,37.732402],[23.4754254,37.7323101],[23.4746123,37.7317387],[23.4749346,37.7302957],[23.47528,37.7295942],[23.4745773,37.7289624],[23.4743245,37.7287135],[23.4740497,37.7281579],[23.473651,37.7267681],[23.4736404,37.7266599],[23.4738126,37.7263722],[23.4739059,37.7262735],[23.4744153,37.7264561],[23.4754464,37.7265237],[23.4758091,37.7265794],[23.4760916,37.7267429],[23.4763863,37.7267983],[23.4767688,37.7272687],[23.477085,37.7274864],[23.4784646,37.7281685],[23.4790066,37.7285675],[23.4795155,37.7288131],[23.4805798,37.7291603],[23.4808298,37.7291163],[23.4810576,37.7289911],[23.4814317,37.7290469],[23.4815571,37.7289573],[23.4817494,37.728841],[23.4825906,37.7286374],[23.4829767,37.728603],[23.4834523,37.7287448],[23.4835668,37.7286957],[23.4837962,37.7283542],[23.4839901,37.7282109],[23.4846737,37.7280674],[23.4850369,37.72806],[23.4854729,37.7277802],[23.4854846,37.7277262],[23.4856895,37.7276459],[23.485673,37.7273575],[23.4855608,37.7271677],[23.4860507,37.7268904],[23.4861503,37.726848],[23.4862448,37.7268732],[23.4865968,37.7268477],[23.4867326,37.7269024],[23.4867091,37.7270105],[23.4868338,37.727038]]},{"id":16275,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 7","description_GR":" \u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u03a0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c7\u03c9\u03c1\u03b1","path":"Islands\/Islands_Aegina_ELLET_7","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":5,"length":1281,"name_EN":"Aegina Isl: Trail 7","description_EN":"Paths of Culture: Paleochora","ascent_time":25,"descent_time":20,"marker":"ELLET_Aegina_07","level":13,"ascent":81,"descent":81,"maxelev":292,"minelev":228,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.48762 37.74966,23.49051 37.75281)","views":44,"millestones":"0,23.4882021,37.7528104#1,23.4888035,37.7509213#1.3,23.4882032,37.7528081","x":23.4893429,"y":37.7508572,"coor":[[23.4882021,37.7528104],[23.4880717,37.7524831],[23.4880065,37.7520592],[23.4877128,37.7518506],[23.4876232,37.751679],[23.4879112,37.7510673],[23.4881786,37.750762],[23.4883877,37.7500779],[23.4886051,37.7498265],[23.4892419,37.749658],[23.489704,37.7498245],[23.4904327,37.7500169],[23.4905014,37.7502516],[23.4901678,37.7502231],[23.4900573,37.750297],[23.4898635,37.7502623],[23.4899602,37.7503777],[23.4898105,37.7506925],[23.4896973,37.750656],[23.4896787,37.7507257],[23.4894178,37.7507021],[23.4893429,37.7508572],[23.4894178,37.7507021],[23.4896787,37.7507257],[23.4896973,37.750656],[23.4898105,37.7506925],[23.4899602,37.7503777],[23.4898635,37.7502623],[23.4891143,37.7502591],[23.488995,37.7502856],[23.4888679,37.7506095],[23.4888018,37.7509337],[23.4886988,37.7510505],[23.4884818,37.7510946],[23.488378,37.7511752],[23.488398,37.7514097],[23.4883288,37.7515716],[23.4882037,37.7516071],[23.4882581,37.7519499],[23.4881893,37.7520487],[23.4880076,37.7520569],[23.4880728,37.7524808],[23.4882032,37.7528081]]},{"id":16276,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 9","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u039c\u03b5\u03c3\u03b1\u03b3\u03c1\u03cc\u03c2, \u03bd\u03b1\u03cc\u03c2 \u0391\u03c6\u03b1\u03af\u03b1\u03c2","path":"Islands\/Islands_Aegina_ELLET_9","activity_type":32,"assistance":1,"difficulty":1,"scenic_value":5,"length":2298,"name_EN":"Aegina Isl: Trail 9","description_EN":" Paths of Culture: Mesaghros, temple of Afea","ascent_time":45,"descent_time":40,"marker":"ELLET_Aegina_09","level":13,"ascent":130,"descent":32,"maxelev":183,"minelev":47,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.51814 37.75247,23.53458 37.75749)","views":46,"millestones":"0,23.5187191,37.7547213#1,23.5245580,37.7560187#2,23.5314299,37.7535889#2.3,23.5345683,37.7538769","x":23.524667,"y":37.7548063,"coor":[[23.5187191,37.7547213],[23.5185439,37.7550969],[23.5184928,37.7556465],[23.5181502,37.7559605],[23.5183416,37.7562137],[23.5189429,37.7562702],[23.5198128,37.7563706],[23.5205268,37.7565538],[23.5214687,37.7566027],[23.5222379,37.7570294],[23.5225673,37.7570128],[23.5229656,37.7568521],[23.5233951,37.7568111],[23.5239952,37.7570568],[23.5246827,37.757517],[23.5251797,37.7564577],[23.525102,37.756187],[23.5240642,37.7558674],[23.5243708,37.7549673],[23.524667,37.7548063],[23.5244884,37.7546658],[23.5256503,37.7540486],[23.525868,37.753725],[23.5264378,37.7533758],[23.5264862,37.7529073],[23.5263283,37.7527444],[23.5263408,37.7525755],[23.5277925,37.7524461],[23.5280754,37.7525824],[23.5289369,37.7527752],[23.5302529,37.7532311],[23.5311363,37.7535591],[23.5318851,37.7536341],[23.5321908,37.7537615],[23.5324631,37.7537806],[23.532703,37.7537095],[23.5339854,37.7537596],[23.5345683,37.7538769]]},{"id":16280,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u03a0\u03c1\u03c6. \u0397\u03bb\u03af\u03b1\u03c2 \u03a0\u03ad\u03c1\u03b4\u03b9\u03ba\u03b1\u03c2-\u0395\u03bb\u03bb\u03ac\u03bd\u03b9\u03bf\u03c2 \u0394\u03af\u03b1\u03c2","description_GR":"\u0391\u03c0\u03cc \u03c4\u03b7 \u03b8\u03ac\u03bb\u03b1\u03c3\u03c3\u03b1 \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b1\u03af\u03bf \u03b9\u03b5\u03c1\u03cc","path":"Islands\/Islands_Aegina_Perdika_Elanios","activity_type":32,"assistance":1,"difficulty":3,"scenic_value":4,"length":4816,"name_EN":"Aegina Isl: From Perdika to Zeus Elanios","description_EN":"Climb from the sea to the ancient temple","ascent_time":140,"descent_time":130,"marker":"No_marks","level":12,"ascent":244,"descent":53,"maxelev":306,"minelev":101,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.47183 37.69135,23.49769 37.71148)","views":48,"millestones":"0,23.4719783,37.6912328#1,23.4810749,37.6956137#2,23.4828859,37.7022609#3,23.4833943,37.7084846#4,23.4930951,37.7113617#4.8,23.4973437,37.7074435","x":23.4826923,"y":37.7085046,"coor":[[23.4719783,37.6912328],[23.4722315,37.6916643],[23.4726549,37.6917924],[23.4731978,37.6920021],[23.4736622,37.6920943],[23.4737017,37.692268],[23.474173,37.6921913],[23.4752145,37.6924753],[23.4765773,37.6938514],[23.4783516,37.6947696],[23.4786555,37.6951134],[23.479355,37.6951886],[23.4804645,37.6952949],[23.4811651,37.6956675],[23.4815027,37.6960656],[23.4823638,37.6961956],[23.482499,37.6963314],[23.4824726,37.6965656],[23.4825504,37.6967913],[23.4832493,37.6974253],[23.4835969,37.6974966],[23.4840176,37.6973453],[23.4843345,37.6974548],[23.4845601,37.6976361],[23.4847811,37.6978714],[23.484038,37.6987063],[23.4840704,37.6989408],[23.4838644,37.6991923],[23.4839315,37.6993368],[23.4832536,37.7005867],[23.4828939,37.7017388],[23.4828498,37.7020157],[23.4829367,37.702575],[23.482608,37.7031864],[23.482654,37.703768],[23.4825589,37.7043985],[23.4822593,37.7050641],[23.4820422,37.7052795],[23.4818581,37.7056572],[23.4817182,37.7061974],[23.4817146,37.7067202],[23.4812044,37.7073353],[23.4806668,37.7077611],[23.4808237,37.7080322],[23.480822,37.7082755],[23.4810556,37.7083351],[23.4811869,37.708365],[23.4815933,37.7086552],[23.4817974,37.7086741],[23.4823627,37.7082913],[23.4826923,37.7085046],[23.4828292,37.708397],[23.4831808,37.7084166],[23.4833049,37.7085073],[23.4834619,37.7084674],[23.4841579,37.7084119],[23.4844972,37.7085575],[23.484564,37.7087471],[23.4848584,37.7088295],[23.4848685,37.7090098],[23.4854234,37.7091565],[23.4854803,37.7091207],[23.4857405,37.709239],[23.4860355,37.7092222],[23.4865664,37.709567],[23.486906,37.7096677],[23.4870003,37.7097717],[23.4872727,37.7097549],[23.4876786,37.7101262],[23.4885046,37.7104543],[23.4886501,37.7107433],[23.4887864,37.7107078],[23.4889787,37.7107988],[23.4890358,37.710736],[23.4892965,37.7107822],[23.4896033,37.7107114],[23.4898517,37.7108837],[23.4912445,37.7112683],[23.4920605,37.711398],[23.4927978,37.7114192],[23.4932181,37.7113399],[23.4948729,37.7115813],[23.4953949,37.7115655],[23.495611,37.7114853],[23.4956917,37.7113054],[23.496259,37.7112898],[23.4965572,37.7108224],[23.4967749,37.7107152],[23.4968334,37.710454],[23.4969699,37.7103915],[23.4970618,37.7102297],[23.4972899,37.7100594],[23.4975612,37.7099907],[23.4975148,37.7098215],[23.4971642,37.7095113],[23.4971779,37.7093086],[23.4972964,37.70857],[23.4972543,37.7080831],[23.4972964,37.708045],[23.4974574,37.7077122],[23.4973437,37.7074435]]},{"id":16282,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0392\u03bb\u03ac\u03c7\u03b7\u03b4\u03b5\u03c2-\u039a\u03ae\u03c0\u03bf\u03b9","description_GR":"\u039a\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03bc\u03b9\u03ba\u03c1\u03cc \u03bb\u03b9\u03bc\u03b1\u03bd\u03ac\u03ba\u03b9","path":"Islands\/Islands_Aegina_Vlachides_Kipi","activity_type":32,"assistance":2,"difficulty":2,"scenic_value":4,"length":3326,"name_EN":"Aegina Isl: Vlachides-Kipi","description_EN":"A loop trail to the sea","ascent_time":80,"descent_time":75,"marker":"No_marks","level":13,"ascent":237,"descent":237,"maxelev":240,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.50594 37.68925,23.51253 37.69846)","views":12,"millestones":"0,23.5078777,37.6980083#1,23.5088002,37.6921052#2,23.5109612,37.6910947#3,23.5103488,37.6977860#3.3,23.5078787,37.6980083","x":23.5104376,"y":37.6892423,"coor":[[23.5078777,37.6980083],[23.5076294,37.6979735],[23.5070508,37.6979891],[23.5064064,37.698036],[23.5062026,37.697972],[23.5059593,37.6980431],[23.5061138,37.697681],[23.5059438,37.6976622],[23.5060472,37.6974644],[23.5059567,37.6974189],[23.5059806,37.6972388],[23.506176,37.696852],[23.5060626,37.6968515],[23.5063149,37.696429],[23.506339,37.6962218],[23.5065443,37.6960604],[23.5063292,37.6959964],[23.5066035,37.6956731],[23.5076965,37.6950557],[23.50796,37.6946693],[23.5079687,37.6942096],[23.5081068,37.6939128],[23.5080517,37.6936602],[23.5081889,37.6934985],[23.5080988,37.693408],[23.5083183,37.692796],[23.5085033,37.692425],[23.50881,37.6923541],[23.5087084,37.6922816],[23.5088455,37.692138],[23.508631,37.6919839],[23.5087565,37.6918672],[23.5086668,37.6917136],[23.5088607,37.6915522],[23.5087139,37.6914524],[23.5088394,37.6913448],[23.5086593,37.6911367],[23.5087391,37.691065],[23.5086041,37.6909022],[23.5087071,37.6907584],[23.5090168,37.6907191],[23.5087448,37.6906819],[23.5086774,37.6905825],[23.5084733,37.6905816],[23.5086561,37.6903841],[23.5085428,37.6903656],[23.5086485,37.6901813],[23.509207,37.689769],[23.5091396,37.6896786],[23.5088791,37.6896144],[23.5104376,37.6892423],[23.511405,37.6895979],[23.5122745,37.6896916],[23.5122731,37.6899102],[23.5125201,37.6902897],[23.5124739,37.6904157],[23.5121544,37.6907118],[23.5118929,37.6908009],[23.5115301,37.6907904],[23.5111319,37.690978],[23.5108812,37.6911482],[23.5106743,37.691571],[23.5104602,37.6916737],[23.5103552,37.692115],[23.5101155,37.6923483],[23.5101811,37.6927181],[23.5100112,37.6926814],[23.5098521,37.6927348],[23.5099082,37.6928251],[23.5097489,37.6929056],[23.5098051,37.692987],[23.5096912,37.6932208],[23.5099045,37.6935462],[23.5098584,37.6936632],[23.5096767,37.6936895],[23.5101383,37.6942141],[23.5098539,37.6943391],[23.5100327,37.6947545],[23.5099191,37.6947811],[23.5099639,37.6948714],[23.5098837,37.6949792],[23.5097019,37.6950325],[23.5097922,37.695105],[23.5095873,37.6952123],[23.5097563,37.6953843],[23.5095858,37.6954467],[23.5097552,37.6955555],[23.509442,37.6955813],[23.5101419,37.6960889],[23.5105694,37.6966315],[23.510546,37.6967395],[23.5103192,37.6967386],[23.5102826,37.697117],[23.5103919,37.6977484],[23.5102515,37.6978695],[23.5099725,37.6980215],[23.5097089,37.6984441],[23.5095091,37.6984748],[23.5092722,37.6982755],[23.5088425,37.6980754],[23.5078787,37.6980083]]},{"id":17066,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae 8","description_GR":"\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd: \u03a0\u03bf\u03b4\u03b7\u03bb\u03b1\u03c4\u03b9\u03ba\u03ae \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1-\u0392\u03b1\u03b3\u03af\u03b1","path":"MTB_ROADBIKE\/Islands_Aegina_ELLET_8","activity_type":41,"assistance":1,"difficulty":1,"scenic_value":4,"length":5086,"name_EN":"Aegina Isl: Trail 8","description_EN":"Paths of Culture: MTB ride Paliachora-Vaghia","ascent_time":15,"descent_time":20,"marker":"ELLET_Aegina_08","level":13,"ascent":32,"descent":203,"maxelev":236,"minelev":54,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.48809 37.75288,23.52461 37.76866)","views":26,"millestones":"0,23.4882021,37.7528104#1,23.4941853,37.7588874#2,23.5007282,37.7638988#3,23.5089190,37.7644046#4,23.5183886,37.7666458#5.1,23.5245236,37.7661870","x":23.504494,"y":37.7650973,"coor":[[23.4882021,37.7528104],[23.4893219,37.7527319],[23.489855,37.7527882],[23.4901267,37.7528976],[23.4903866,37.753079],[23.490634,37.7534135],[23.490678,37.753621],[23.4905151,37.7541971],[23.4905692,37.7545849],[23.4913924,37.7553839],[23.4918638,37.7561701],[23.4920898,37.7563333],[23.4929387,37.7566975],[23.4932875,37.7571496],[23.4932551,37.7572712],[23.4940676,37.7576307],[23.4939845,37.7581621],[23.4941049,37.7588206],[23.4947371,37.759337],[23.494881,37.7598875],[23.4953073,37.7609956],[23.4959421,37.7611426],[23.4971651,37.7615985],[23.4976756,37.7616637],[23.4985658,37.7622804],[23.4986834,37.762362],[23.4992389,37.7624906],[23.499984,37.7631066],[23.5011278,37.7635441],[23.5011496,37.7636704],[23.5005484,37.7635867],[23.5003324,37.7636309],[23.5002977,37.7637299],[23.5009092,37.7639668],[23.5013662,37.7642279],[23.5018188,37.7644641],[23.5035763,37.764796],[23.504494,37.7650973],[23.5049138,37.7651261],[23.5059269,37.7647338],[23.5064513,37.7644115],[23.5068513,37.7640166],[23.507426,37.7631177],[23.5074842,37.7627394],[23.5077674,37.7628397],[23.5078525,37.7630023],[23.5080532,37.763562],[23.5083796,37.7639869],[23.5088087,37.7643492],[23.5095668,37.764731],[23.5101107,37.7648955],[23.5105421,37.7649063],[23.511838,37.7646593],[23.5119228,37.765579],[23.5121511,37.7660982],[23.5128035,37.7663127],[23.5139837,37.7664077],[23.515186,37.7665929],[23.5177056,37.7667384],[23.5182526,37.7667564],[23.5192343,37.7659493],[23.5194111,37.7666891],[23.5193275,37.7673377],[23.5193928,37.7677706],[23.5195268,37.7681136],[23.5198088,37.7684032],[23.5201485,37.7685488],[23.5213504,37.768797],[23.5233262,37.768769],[23.5234972,37.7686705],[23.523569,37.768094],[23.5235101,37.7666516],[23.523979,37.7661308],[23.5242063,37.7660956],[23.5245236,37.766187]]},{"id":17067,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: MTB \u03b3\u03cd\u03c1\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03ba\u03b1\u03c1\u03b4\u03b9\u03ac \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","description_GR":"\u0395\u03cd\u03ba\u03bf\u03bb\u03bf\u03c2 \u03c7\u03c9\u03bc\u03ac\u03c4\u03b9\u03bd\u03bf\u03c2 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c2 \u03b3\u03cd\u03c1\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u039d\u03b5\u03ba\u03c4\u03ac\u03c1\u03b9\u03bf","path":"MTB_ROADBIKE\/MTB_Aegina_MTB_loop","activity_type":41,"assistance":2,"difficulty":2,"scenic_value":5,"length":14076,"name_EN":"Aegina Isl: MTB loop in the heart of Aegina","description_EN":"A dirt roads circuit from Aghios Nektarios monastery","ascent_time":55,"descent_time":55,"marker":"No_marks","level":13,"ascent":370,"descent":370,"maxelev":371,"minelev":77,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.48161 37.72365,23.51421 37.74958)","views":14,"millestones":"0,23.4851084,37.7463142#1,23.4833466,37.7403723#2,23.4883448,37.7344527#3,23.4870987,37.7266706#4,23.4900762,37.7314374#5,23.5000235,37.7286394#6,23.5074003,37.7239573#7,23.5084122,37.7260700#8,23.5130870,37.7283417#9,23.5083673,37.7341134#10,23.5002611,37.7385538#11,23.5027694,37.7428838#12,23.5026462,37.7494665#13,23.4936388,37.7459379#14.1,23.4851073,37.7463164","x":23.5055588,"y":37.728087,"coor":[[23.4851084,37.7463142],[23.4847907,37.7462925],[23.4845345,37.7455884],[23.4846545,37.7446515],[23.4848949,37.7443642],[23.4847638,37.7436335],[23.4847564,37.7435727],[23.484522,37.7430038],[23.4844925,37.7423367],[23.4845537,37.7417038],[23.4843179,37.7413332],[23.4838526,37.7411261],[23.4816748,37.7409183],[23.4817207,37.7408464],[23.4830511,37.7405007],[23.4834267,37.7403401],[23.4837236,37.7400891],[23.4840681,37.7395047],[23.4843747,37.7390283],[23.4844345,37.738578],[23.4845262,37.7384522],[23.4855387,37.7381141],[23.4863724,37.7373606],[23.4866567,37.7372807],[23.4872921,37.7372925],[23.4874845,37.7373835],[23.4877886,37.7377093],[23.4878805,37.7377029],[23.487691,37.7372154],[23.4877493,37.7369813],[23.487828,37.7369366],[23.4881922,37.7367849],[23.4883271,37.7366233],[23.4885019,37.7359571],[23.488473,37.7352088],[23.4883295,37.7346134],[23.4884156,37.7336493],[23.4883605,37.7334147],[23.4879005,37.7326466],[23.4877701,37.7317988],[23.4876977,37.731447],[23.4878711,37.7309971],[23.4881685,37.7306559],[23.4881472,37.7304485],[23.4882739,37.7301786],[23.4880698,37.7298352],[23.4882439,37.7294372],[23.4885505,37.7285845],[23.4884847,37.7282417],[23.4882826,37.7279344],[23.4883297,37.7276822],[23.4882526,37.7273484],[23.4879249,37.7271397],[23.4878239,37.726977],[23.487874,37.7266009],[23.4877269,37.7265462],[23.4871248,37.7266337],[23.4868352,37.727038],[23.4871248,37.7266337],[23.4877269,37.7265462],[23.487874,37.7266009],[23.4878239,37.726977],[23.4879249,37.7271397],[23.4882526,37.7273484],[23.4883297,37.7276822],[23.4882826,37.7279344],[23.4884847,37.7282417],[23.4885505,37.7285845],[23.4882439,37.7294372],[23.4880698,37.7298352],[23.4882739,37.7301786],[23.4881472,37.7304485],[23.4881685,37.7306559],[23.4878711,37.7309971],[23.4876977,37.731447],[23.4877701,37.7317988],[23.4886848,37.7314761],[23.4891727,37.7314962],[23.4926695,37.731277],[23.4932386,37.731036],[23.4949546,37.7306739],[23.4955931,37.730244],[23.4958106,37.7299655],[23.4960064,37.7298942],[23.4969139,37.7299522],[23.4979921,37.7299297],[23.499641,37.729432],[23.4998691,37.7292527],[23.5003308,37.7274137],[23.5005613,37.7268829],[23.5008656,37.7265079],[23.5015383,37.7260331],[23.5018134,37.7256196],[23.5023744,37.7254147],[23.5025787,37.7254065],[23.5028155,37.7256238],[23.502929,37.7256243],[23.5035364,37.7247256],[23.5039687,37.7245651],[23.5041825,37.7244624],[23.5052522,37.7240072],[23.5055724,37.72363],[23.5058449,37.7236131],[23.5061614,37.7237947],[23.5070002,37.7239334],[23.5075333,37.7239627],[23.5080106,37.7238475],[23.5081574,37.7239563],[23.5079976,37.7240998],[23.5075322,37.7241249],[23.5072933,37.7242231],[23.5067335,37.7247886],[23.5066064,37.7251305],[23.5062854,37.7273284],[23.5061825,37.7274542],[23.5054988,37.7278749],[23.5054115,37.7280503],[23.5055588,37.728087],[23.5061384,37.7279542],[23.5072316,37.7273729],[23.5080312,37.7265831],[23.5083293,37.7261247],[23.5086598,37.7259097],[23.5102613,37.725673],[23.5110669,37.7256944],[23.5119621,37.7258784],[23.5131084,37.7258471],[23.5131166,37.7260161],[23.5130138,37.7261148],[23.5116716,37.726596],[23.5115685,37.7267398],[23.5125518,37.7273477],[23.5127994,37.7276552],[23.5129582,37.7276739],[23.5134473,37.7274956],[23.5131755,37.7277401],[23.5124244,37.7280615],[23.5124691,37.7281698],[23.5133413,37.7284078],[23.5137363,37.7287429],[23.5139668,37.7299426],[23.5141686,37.730322],[23.5136822,37.7318072],[23.5133371,37.7325268],[23.5130512,37.7328591],[23.5125267,37.7332355],[23.511753,37.7335297],[23.5092771,37.7338259],[23.5076393,37.7343508],[23.5067854,37.7347709],[23.5055574,37.7351173],[23.5042832,37.7355806],[23.5038049,37.7358309],[23.5033706,37.7362888],[23.5031657,37.7363781],[23.5026888,37.7364121],[23.5019632,37.7363009],[23.501191,37.7363697],[23.5010393,37.736991],[23.501145,37.7381451],[23.5010533,37.7382799],[23.5006319,37.7385035],[23.5001083,37.7385756],[23.4986449,37.7384702],[23.4976232,37.738502],[23.4975433,37.7385647],[23.4979954,37.7388551],[23.4982764,37.7392528],[23.4984686,37.7393618],[23.499025,37.7393191],[23.5003859,37.7394781],[23.5007454,37.7400294],[23.5012198,37.7403739],[23.501729,37.7406014],[23.5021518,37.7411778],[23.5027047,37.7416759],[23.5027001,37.7423518],[23.5027671,37.7425143],[23.5028706,37.742641],[23.5026169,37.7432348],[23.5027961,37.7434361],[23.5029315,37.7439301],[23.5032236,37.744382],[23.5038446,37.7448623],[23.5037758,37.7449792],[23.503036,37.7452735],[23.5029099,37.7454532],[23.503168,37.745905],[23.5033625,37.7473659],[23.5037118,37.747764],[23.5038233,37.7480529],[23.5038428,37.7485307],[23.5042003,37.7493974],[23.5041354,37.7495549],[23.5038852,37.7496259],[23.5039771,37.7496759],[23.5038852,37.7496259],[23.5035113,37.7495162],[23.5030079,37.749478],[23.5022702,37.7494569],[23.5016224,37.7495713],[23.5010811,37.7495127],[23.5004262,37.7489962],[23.5001333,37.7488304],[23.4991457,37.7488308],[23.4977379,37.7488698],[23.497239,37.7487956],[23.496991,37.7485422],[23.4968599,37.7477845],[23.4965776,37.747567],[23.4962101,37.7473581],[23.4954877,37.7469675],[23.4947604,37.7468922],[23.4941305,37.7460423],[23.4937453,37.7459325],[23.4932571,37.7459574],[23.4924658,37.7454853],[23.4921029,37.7454297],[23.4905933,37.7454232],[23.4902524,37.7454848],[23.4896011,37.7461129],[23.4894164,37.7465628],[23.4891995,37.7467421],[23.4882866,37.7472924],[23.4876268,37.7474969],[23.4873879,37.7474215],[23.4873665,37.7472321],[23.4877549,37.7468823],[23.4878023,37.7465941],[23.4875767,37.7463768],[23.4869754,37.7463471],[23.4868561,37.7463534],[23.4860485,37.7464467],[23.4851073,37.7463164]]},{"id":17068,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u039f\u03c1\u03b5\u03b9\u03bd\u03cc\u03c2 \u03b3\u03cd\u03c1\u03bf\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","description_GR":"\u039c\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03b1\u03c3\u03c6\u03ac\u03bb\u03c4\u03b9\u03bd\u03bf\u03c2 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c2 \u03bc\u03ad\u03c3\u03c9 \u0391\u03bd\u03b9\u03c4\u03c3\u03b1\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u0391\u03b3. \u039d\u03b5\u03ba\u03c4\u03b1\u03c1\u03af\u03bf\u03c5","path":"MTB_ROADBIKE\/RoadBike_Aegina_Gyros_Nisiou","activity_type":42,"assistance":2,"difficulty":3,"scenic_value":5,"length":33711,"name_EN":"Aegina Isl: A high tour of Aegina","description_EN":"A great asphalt loop via Anitseou and Aghios Nektarios","ascent_time":105,"descent_time":105,"marker":"No_marks","level":12,"ascent":775,"descent":775,"maxelev":263,"minelev":0,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.42562 37.70428,23.53935 37.75615)","views":12,"millestones":"0,23.4259768,37.7450969#1,23.4305895,37.7428660#2,23.4381211,37.7395157#3,23.4479761,37.7359642#4,23.4562712,37.7339803#5,23.4637546,37.7324543#6,23.4711994,37.7278667#7,23.4795006,37.7239704#8,23.4843148,37.7177943#9,23.4946163,37.7140179#10,23.5023379,37.7084544#11,23.5083267,37.7070001#12,23.5130371,37.7043857#13,23.5194953,37.7095289#14,23.5205171,37.7157392#15,23.5265060,37.7210364#16,23.5222557,37.7227444#17,23.5305454,37.7278329#18,23.5344376,37.7280240#19,23.5346322,37.7333827#20,23.5380703,37.7369870#21,23.5316560,37.7423176#22,23.5377664,37.7482707#23,23.5327357,37.7533806#24,23.5380290,37.7554135#25,23.5270625,37.7559294#26,23.5161782,37.7538688#27,23.5062621,37.7507708#28,23.4967702,37.7477150#29,23.4877534,37.7474640#30,23.4787999,37.7454219#31,23.4689091,37.7450164#32,23.4587507,37.7480672#33,23.4486689,37.7456607#34,23.4382230,37.7481610#35,23.4283475,37.7467802#33.7,23.4259778,37.7451059","x":23.5349022,"y":37.7314714,"coor":[[23.4259768,37.7450969],[23.4264696,37.7459466],[23.4256883,37.7471776],[23.4257103,37.7472678],[23.4259137,37.747386],[23.4264585,37.746796],[23.4265882,37.7466276],[23.4268402,37.7463224],[23.4271354,37.7463238],[23.4274005,37.7463432],[23.427545,37.7463236],[23.4277346,37.7462997],[23.428119,37.7462295],[23.4286095,37.7460516],[23.4288469,37.7459018],[23.4289439,37.7458346],[23.4291126,37.745716],[23.4292442,37.7455725],[23.4294513,37.7452129],[23.4295515,37.7448664],[23.4296455,37.7444433],[23.429856,37.7438179],[23.4301189,37.7435848],[23.4302319,37.7434682],[23.4304939,37.7431089],[23.4306461,37.7427311],[23.4305908,37.7418002],[23.4305454,37.7416648],[23.4310224,37.741622],[23.431235,37.7416073],[23.4324132,37.7417121],[23.4336078,37.7423984],[23.4340821,37.7418306],[23.4341368,37.7417745],[23.4347799,37.7411241],[23.4363785,37.7393877],[23.4372727,37.7395587],[23.4384127,37.7395033],[23.4383927,37.7391517],[23.4384957,37.7390351],[23.4393625,37.7384804],[23.4406487,37.7379817],[23.4422787,37.7374644],[23.4427223,37.7372029],[23.4431224,37.7369592],[23.4441924,37.7365339],[23.4442266,37.736516],[23.4450192,37.7363259],[23.4457812,37.7363498],[23.4462132,37.7363045],[23.448168,37.7359351],[23.4482351,37.7359219],[23.4495535,37.7356667],[23.4509012,37.7355761],[23.4519349,37.7354367],[23.4520863,37.7353946],[23.4527813,37.7350373],[23.4529643,37.7349322],[23.4533206,37.7348595],[23.4542176,37.7347916],[23.4546878,37.7348501],[23.4553522,37.7348329],[23.4569429,37.7345879],[23.4573401,37.7345897],[23.4574799,37.7345227],[23.4574426,37.7343378],[23.457062,37.7341062],[23.4559964,37.7339391],[23.455715,37.73378],[23.4554962,37.733574],[23.4555241,37.7334907],[23.4556542,37.7334575],[23.4560799,37.7335293],[23.4572156,37.7334174],[23.4572392,37.7333003],[23.4567982,37.733082],[23.4565504,37.7328285],[23.4566306,37.7327207],[23.4572,37.7324529],[23.4584834,37.7323056],[23.4594796,37.7326527],[23.4604445,37.732612],[23.46336,37.7324744],[23.464872,37.7323934],[23.4651912,37.7321965],[23.4652071,37.7319172],[23.4650738,37.731511],[23.4652119,37.7312502],[23.4663417,37.7309534],[23.4666819,37.731],[23.4672125,37.731381],[23.4674037,37.7314269],[23.4675869,37.7314007],[23.4677239,37.7312841],[23.4677901,37.7309983],[23.4679087,37.7308343],[23.4695939,37.7300397],[23.4701023,37.7295531],[23.4713183,37.7277108],[23.4721467,37.7269191],[23.4723063,37.7266652],[23.4727992,37.7259644],[23.4731442,37.7258172],[23.4738929,37.7258566],[23.4741884,37.7257948],[23.4753045,37.725223],[23.4753991,37.7251265],[23.4754059,37.724962],[23.4752967,37.7243667],[23.4754103,37.7241486],[23.4756287,37.7239535],[23.4770715,37.7237076],[23.4776388,37.7237101],[23.4792405,37.7239177],[23.4802345,37.7241181],[23.4804614,37.7241191],[23.4806881,37.7240052],[23.480735,37.7237891],[23.480372,37.7221471],[23.4805004,37.7216429],[23.4810644,37.7204917],[23.4811203,37.7189868],[23.4812757,37.7188162],[23.4815876,37.7186891],[23.4818147,37.7186631],[23.4824938,37.718603],[23.4829372,37.7184697],[23.484366,37.717773],[23.4870276,37.7168292],[23.4898953,37.715742],[23.4950479,37.7138534],[23.4972982,37.7129662],[23.4977234,37.7127472],[23.4980592,37.7124805],[23.4983012,37.7119227],[23.4987628,37.7109242],[23.4992878,37.7104667],[23.4997991,37.7103427],[23.500695,37.7104006],[23.5010356,37.7103142],[23.5012637,37.7101867],[23.5015837,37.7098455],[23.5023834,37.708382],[23.5031308,37.7071458],[23.5033233,37.7069349],[23.5036308,37.7067559],[23.5046082,37.7064986],[23.5052282,37.7063435],[23.5056902,37.7063319],[23.5062953,37.7064944],[23.5067316,37.7066788],[23.5071044,37.7069147],[23.5076003,37.7074034],[23.5078573,37.7080084],[23.5080384,37.7081173],[23.5081293,37.7080411],[23.5081541,37.7076762],[23.5077061,37.7065859],[23.5077523,37.7063991],[23.5078287,37.7064287],[23.5086926,37.7074148],[23.5090086,37.7077068],[23.5096483,37.7080632],[23.5102526,37.7083068],[23.5111105,37.7085898],[23.5110997,37.7084996],[23.5103554,37.7078205],[23.510097,37.7074409],[23.5097728,37.7067185],[23.5097221,37.7064411],[23.5097531,37.7062587],[23.5104149,37.7056756],[23.5114272,37.7052742],[23.5121787,37.7048537],[23.5127891,37.7042253],[23.5128979,37.7041717],[23.5130007,37.7042262],[23.5130329,37.7043345],[23.5130641,37.7047672],[23.5127238,37.7054711],[23.5124294,37.7060963],[23.5123777,37.706353],[23.5124943,37.7065157],[23.5127951,37.7067152],[23.5157089,37.7069796],[23.5164175,37.7071087],[23.5171896,37.7073372],[23.5175752,37.7075123],[23.5180155,37.7078566],[23.518815,37.7087792],[23.5194052,37.7094486],[23.5203661,37.71032],[23.5204563,37.7104015],[23.5212422,37.7116846],[23.5212338,37.7121104],[23.5212351,37.7122434],[23.5211633,37.7123174],[23.5204142,37.7123685],[23.5201977,37.7125118],[23.52006,37.7127456],[23.5200808,37.7130521],[23.5204729,37.7137117],[23.5206298,37.7141179],[23.5207148,37.7146343],[23.5206706,37.7148301],[23.5203855,37.7150543],[23.5192728,37.715185],[23.5192263,37.715356],[23.5196218,37.71561],[23.5205739,37.7157491],[23.5210283,37.7157306],[23.5218574,37.715538],[23.5225153,37.7155677],[23.5235127,37.7157227],[23.5247691,37.7161964],[23.5248333,37.716244],[23.5251154,37.7164975],[23.5258117,37.717618],[23.5268706,37.718821],[23.5270848,37.7192049],[23.5271035,37.7193357],[23.5270683,37.7195158],[23.5267141,37.7199019],[23.5265021,37.7211179],[23.5263945,37.7212504],[23.5261942,37.721369],[23.5257968,37.7214035],[23.524391,37.7212175],[23.5237565,37.7210708],[23.5232844,37.7208706],[23.5224141,37.7203443],[23.521497,37.7200251],[23.5207164,37.7196614],[23.5204669,37.7196423],[23.5203075,37.7197408],[23.5202708,37.7198759],[23.5203937,37.720273],[23.520528,37.7205619],[23.5222277,37.722696],[23.5232713,37.7245208],[23.523563,37.725198],[23.52395,37.7255759],[23.5243307,37.725814],[23.5249759,37.726078],[23.5262457,37.7262453],[23.5268915,37.7264102],[23.5287135,37.7271926],[23.5292447,37.7275372],[23.5298317,37.7278595],[23.5301945,37.7279061],[23.5321355,37.7274902],[23.5324652,37.7273833],[23.5329669,37.7270067],[23.5331707,37.7270887],[23.5331678,37.7273681],[23.5331213,37.7278952],[23.5333303,37.7283804],[23.533661,37.728864],[23.5343778,37.7296284],[23.5345586,37.7297553],[23.5347745,37.7297201],[23.5348438,37.7295221],[23.5344843,37.7289438],[23.5339245,37.7277248],[23.5339721,37.7274321],[23.5340632,37.7273198],[23.5342562,37.7273115],[23.5343108,37.7274853],[23.5342529,37.7278343],[23.5347716,37.7283591],[23.5349513,37.7286663],[23.5351885,37.7288384],[23.5362419,37.729149],[23.5371854,37.7292316],[23.5379664,37.7292189],[23.5381976,37.7294496],[23.5381054,37.7296836],[23.5377261,37.7299323],[23.5372704,37.7302189],[23.5364064,37.7304679],[23.535416,37.7309597],[23.5349022,37.7314714],[23.5345347,37.7321595],[23.5344235,37.7322987],[23.5343912,37.7325983],[23.5347136,37.7336631],[23.5349832,37.7341058],[23.5351114,37.734192],[23.5356049,37.7341601],[23.5365032,37.7338933],[23.5368224,37.7336602],[23.5372231,37.7331029],[23.5378613,37.7326728],[23.5385574,37.7326755],[23.5389722,37.7328754],[23.5390508,37.7330019],[23.5391721,37.7335792],[23.539145,37.7342822],[23.5389601,37.7346465],[23.5381488,37.7357114],[23.5381648,37.736784],[23.5380477,37.7370292],[23.5376611,37.7374851],[23.5371591,37.7379067],[23.5367492,37.7381214],[23.5355115,37.7382157],[23.5332376,37.7388489],[23.5329315,37.7389671],[23.5327862,37.7391243],[23.532293,37.7399425],[23.5320077,37.7401937],[23.5312556,37.7404927],[23.5311907,37.7405443],[23.5309509,37.7407867],[23.5307325,37.7412184],[23.5317351,37.7424099],[23.5322996,37.7427253],[23.5338961,37.7433356],[23.534415,37.743466],[23.5352311,37.7436315],[23.5355622,37.7437297],[23.5361738,37.7439304],[23.5362587,37.743969],[23.5363139,37.7439918],[23.5365867,37.7441551],[23.536937,37.7444088],[23.5376615,37.7447181],[23.5376206,37.7449095],[23.5375961,37.744968],[23.5374877,37.7458035],[23.5374752,37.7459838],[23.5374553,37.7462856],[23.5375436,37.7466735],[23.5377881,37.7471815],[23.5378411,37.7477766],[23.5377678,37.7482224],[23.537761,37.7484004],[23.5375984,37.7486476],[23.5375506,37.7488683],[23.5375605,37.7494429],[23.5376155,37.7497135],[23.5374401,37.750542],[23.5368222,37.7513418],[23.5368077,37.7514994],[23.5369583,37.7516893],[23.5369099,37.7521758],[23.5369863,37.7526628],[23.5369509,37.752879],[23.5368244,37.7529799],[23.5371979,37.7531526],[23.5370357,37.7532804],[23.5368476,37.753291],[23.5359862,37.7530713],[23.5356798,37.7530701],[23.5353764,37.7531365],[23.5348292,37.7533394],[23.5338185,37.7533376],[23.5330604,37.7534],[23.5325561,37.7533732],[23.5323856,37.7534085],[23.5323054,37.7535344],[23.5324146,37.7536543],[23.5326923,37.7537095],[23.5339861,37.7537596],[23.534569,37.7538769],[23.5349793,37.7541128],[23.535716,37.754305],[23.5358842,37.7546482],[23.5360764,37.7547661],[23.5364623,37.7547766],[23.5369925,37.7546322],[23.5372085,37.754588],[23.5376193,37.7542471],[23.5379719,37.7541223],[23.53821,37.7541774],[23.5386388,37.7545846],[23.538762,37.7548555],[23.5387932,37.7553243],[23.538572,37.7562067],[23.5383679,37.7561699],[23.5383352,37.7559534],[23.5382585,37.7555115],[23.5379559,37.7553841],[23.5357858,37.755682],[23.5335106,37.7564392],[23.5330492,37.756532],[23.5312777,37.7566151],[23.5305016,37.7565512],[23.5300024,37.7564951],[23.5285978,37.7560208],[23.5265778,37.7559045],[23.5254387,37.7558436],[23.524066,37.7558674],[23.5227334,37.7556637],[23.5211464,37.7553058],[23.5188693,37.7547579],[23.5187219,37.7547213],[23.5181301,37.7545724],[23.5164236,37.7541035],[23.5160062,37.7537052],[23.5148573,37.7527609],[23.5144352,37.7523197],[23.5137332,37.7520464],[23.5134557,37.7519484],[23.5129575,37.7517661],[23.5120002,37.7518027],[23.5111039,37.7517269],[23.5102768,37.7518564],[23.5093687,37.7518639],[23.5090625,37.7518153],[23.5083509,37.7512805],[23.5080113,37.7511349],[23.50739,37.7509949],[23.5072324,37.7509672],[23.5059974,37.7507209],[23.5056491,37.7506068],[23.504529,37.7500523],[23.5039799,37.7496782],[23.503888,37.7496282],[23.5035142,37.7495185],[23.5030107,37.7494803],[23.502273,37.7494592],[23.5016252,37.7495736],[23.5013403,37.7495882],[23.501084,37.749515],[23.5004291,37.7489984],[23.5001361,37.7488327],[23.4991486,37.748833],[23.4977408,37.7488721],[23.4972418,37.7487979],[23.4969938,37.7485444],[23.4968627,37.7477868],[23.4965804,37.7475693],[23.4962129,37.7473604],[23.4954906,37.7469697],[23.4947632,37.7468945],[23.494304,37.746194],[23.4941333,37.7460446],[23.4937482,37.7459348],[23.4932599,37.7459597],[23.4928586,37.7457687],[23.4924686,37.7454876],[23.4921058,37.745432],[23.4905962,37.7454255],[23.4902552,37.7454871],[23.4896039,37.7461152],[23.4894192,37.746565],[23.4892023,37.7467444],[23.4882894,37.7472947],[23.4876297,37.7474991],[23.4873907,37.7474237],[23.4873694,37.7472344],[23.4877577,37.7468845],[23.4878051,37.7465963],[23.4875796,37.746379],[23.4869782,37.7463494],[23.486859,37.7463556],[23.4860513,37.746449],[23.4851101,37.7463187],[23.4847925,37.746297],[23.4838166,37.7465587],[23.482874,37.7466356],[23.4827526,37.7466374],[23.4822986,37.7466354],[23.4813924,37.746379],[23.4802576,37.746338],[23.4797705,37.7461916],[23.4792036,37.7459503],[23.4790365,37.7458053],[23.4788347,37.7454529],[23.4785075,37.745163],[23.4773739,37.7449597],[23.4772445,37.7448532],[23.477174,37.7446344],[23.4768927,37.7444934],[23.4758271,37.7442904],[23.4727337,37.7445109],[23.4719858,37.7443273],[23.4712086,37.7439385],[23.4709341,37.7439418],[23.4707064,37.7440399],[23.470312,37.7445722],[23.4700616,37.7446792],[23.4694294,37.7445953],[23.4691537,37.7446548],[23.4690766,37.7447221],[23.4688438,37.7451334],[23.4682272,37.7456444],[23.4658937,37.7465712],[23.4653584,37.7468301],[23.4644911,37.7474752],[23.4639903,37.7476531],[23.4624554,37.7478535],[23.4617468,37.7477466],[23.4595429,37.7478424],[23.4580732,37.7482502],[23.4555968,37.7485092],[23.4552679,37.7484717],[23.4548218,37.7481699],[23.454226,37.747374],[23.4535132,37.7470642],[23.4519726,37.7466335],[23.4512258,37.7463235],[23.4507402,37.7459788],[23.4495898,37.7457549],[23.4484797,37.7456438],[23.4476879,37.7455589],[23.4473183,37.7455121],[23.4471311,37.7454955],[23.4463939,37.7454199],[23.4450994,37.745495],[23.4445593,37.7456254],[23.4442294,37.7457139],[23.4436356,37.7458598],[23.4429418,37.7460549],[23.4423828,37.7464218],[23.4419427,37.7466946],[23.4413832,37.7468091],[23.44129,37.7468402],[23.4407347,37.7470629],[23.4388544,37.7480454],[23.4384109,37.7481514],[23.4376842,37.748184],[23.4374084,37.7482909],[23.4367568,37.7486258],[23.4359602,37.7488923],[23.4347764,37.7478321],[23.4343336,37.7475596],[23.4339848,37.7474453],[23.4334524,37.7472985],[23.433289,37.7472865],[23.4326421,37.7472653],[23.4321841,37.7473713],[23.432101,37.7473799],[23.4314763,37.7474309],[23.4308155,37.7474818],[23.4302937,37.7474297],[23.4301464,37.747402],[23.4300748,37.7473904],[23.4298378,37.7473532],[23.4293276,37.7472786],[23.4291678,37.7472576],[23.4286653,37.7471875],[23.4285972,37.7471827],[23.4285313,37.7472184],[23.4284217,37.7469993],[23.4283818,37.7468774],[23.4283374,37.746751],[23.428265,37.7465614],[23.4278509,37.7466743],[23.4275988,37.7467092],[23.427367,37.7467418],[23.4270283,37.7467717],[23.4269422,37.7467646],[23.4268242,37.746746],[23.4265892,37.7466367],[23.4264595,37.746805],[23.4259147,37.747395],[23.4257113,37.7472768],[23.4256893,37.7471866],[23.4264706,37.7459556],[23.4259778,37.7451059]]},{"id":18365,"author":"AnaDigit","name_GR":"\u0391\u03af\u03b3\u03b9\u03bd\u03b1: \u039a\u03c5\u03ba\u03bb\u03b9\u03ba\u03ae \u03c0\u03bf\u03c1\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf\u03c5\u03c2 \u039c\u03c0\u03b5\u03bd\u03ac\u03ba\u03b7\u03b4\u03b5\u03c2","description_GR":"\u0395\u03cd\u03ba\u03bf\u03bb\u03b7 \u03ba\u03b1\u03b9 \u03cc\u03bc\u03bf\u03c1\u03c6\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae","path":"ISLANDS\/Islands_Aegina_Benakides_loop","activity_type":32,"assistance":2,"difficulty":1,"scenic_value":4,"length":3062,"name_EN":"Aegina Isl: A loop trail at Benakides","description_EN":"An easy yet beautiful hike","ascent_time":60,"descent_time":60,"marker":"No_marks","level":13,"ascent":110,"descent":110,"maxelev":335,"minelev":231,"link_logo":"","link_ref":"","pdf_link":"","bbox":"LINESTRING(23.50497 37.72364,23.51314 37.73169)","views":14,"millestones":"0,23.5058449,37.7236131#1,23.5116143,37.7274465#2,23.5069919,37.7309600#3.1,23.5058438,37.7236131","x":23.5116616,"y":37.7293022,"coor":[[23.5058449,37.7236131],[23.5060934,37.7237764],[23.5066263,37.7238507],[23.5068062,37.7240926],[23.5070786,37.7240847],[23.5071916,37.7241573],[23.5073958,37.7241672],[23.5077166,37.7242406],[23.5081351,37.7244406],[23.5083393,37.7244505],[23.5090071,37.7246967],[23.5093812,37.7247523],[23.5095857,37.7247171],[23.5097668,37.724799],[23.5105151,37.7248922],[23.5111052,37.7248766],[23.5116948,37.7249512],[23.5119206,37.7251324],[23.5123962,37.7252785],[23.5126668,37.7255501],[23.5131084,37.7256961],[23.5131223,37.725784],[23.5131142,37.7258403],[23.5131151,37.7260161],[23.5130124,37.7261148],[23.5115905,37.7266407],[23.5115671,37.7267398],[23.5116799,37.7268484],[23.5117782,37.7271034],[23.5116868,37.7271932],[23.5116513,37.7274184],[23.5111609,37.7277949],[23.5106268,37.7279008],[23.510705,37.7280994],[23.5110112,37.7281277],[23.5111804,37.7282727],[23.5115541,37.7284004],[23.5116666,37.7285451],[23.5118814,37.7286631],[23.5120046,37.728916],[23.5120025,37.7292315],[23.5116616,37.7293022],[23.5116602,37.7295185],[23.511546,37.7296261],[23.5115219,37.7298424],[23.5114536,37.7298691],[23.511382,37.7304096],[23.5114942,37.7306084],[23.511402,37.7308153],[23.5109599,37.7307414],[23.5106865,37.7309115],[23.5104937,37.7308926],[23.5102187,37.7312881],[23.5098437,37.7313586],[23.5095603,37.7313124],[23.509002,37.7316526],[23.5086385,37.7317051],[23.5084913,37.7316504],[23.5082075,37.7316673],[23.5079475,37.731513],[23.5077773,37.7315123],[23.5075181,37.7312408],[23.5072348,37.7311765],[23.506885,37.7308686],[23.5066923,37.7306808],[23.506096,37.7299031],[23.5052384,37.7291785],[23.5050809,37.7289705],[23.5049924,37.7286276],[23.5050971,37.7282405],[23.5054059,37.7280345],[23.505509,37.7278907],[23.5061927,37.72747],[23.5062956,37.7273442],[23.5066747,37.7249393],[23.5069613,37.7245078],[23.5073947,37.7241672],[23.5071905,37.7241573],[23.5070775,37.7240847],[23.5068051,37.7240926],[23.5066252,37.7238507],[23.5060924,37.7237764],[23.5058438,37.7236131]]}],{"extent":[23.41833,37.68702,23.53935,37.77252],"advPath":"http:\/\/www.topoguide.gr\/adventure.php?l=el&ul=1&a=","style":{"default":{"color":"#ff612f","width":6,"action":{"type":"openurl"},"sort":{"type":"none"}},"Islands\/Islands_Zakynthos_Kalamaki_Skopiotisa":{"url":"http:\/\/www.topoguide.gr\/hiking_in_zakynthos.php#test","color":"#ff612f","width":5,"exclude":false,"useStyle":true},"Islands\/Islands_Zakynthos_Kiliomeno_Pandokratoras":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Yperaghathos_Loucha":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Volima_AgAndreas":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Vassilikos":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Prodromos_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Loucha_Kalithea":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Klima_Schinari":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Kiliomeno_Yperaghathos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou2":{"url":"#advlist","color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_ParaliaKeriou":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Faros":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Keri_Agalas":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Kalithea_Lagopodo":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Zakynthos_Argasi_Skopiotisa":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Zakynthos_Agalas_Kiliomenos":{"url":null,"color":"#1d950d","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_02_Chorio_Loop":{"url":null,"color":"#08bc25","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_01_Chorio_Alopronia":{"url":null,"color":"#ff2fc5","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_03_Kastro_Alopronia":{"url":null,"color":"#253bdd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_04_Kastro_Malta":{"url":null,"color":"#2feeff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_05_Kastro_Loop":{"url":null,"color":"#ffd52f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_06_Episkopi_AgMarina":{"url":null,"color":"#2fdddd","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Sikinos_07_Kastro_Alopronia":{"url":null,"color":"#2fff2f","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Skopelos_monasteries_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Klima":{"url":null,"color":"#1ab933","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Skopelos_Loutraki_Faros_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Skopelos_Loutraki_Taxiarches":{"url":null,"color":"#2f7aff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Foukalida":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Damoulianata_AgThekli":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Vilatoria_Petani":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Kefalonia_Gerogombos":{"url":null,"color":"#f029e0","width":6,"exclude":false,"useStyle":true},"Geology\/GEO_Kefalonia_4_karst_formations":{"url":null,"color":"#fff741","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Ainos":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Anavasi_AgDinati":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Fiskardo_Battery":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Gyro_apo_Zoodocho_Pigi":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Kefalonia_Sami_Poros":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"SUV_4x4\/SUV_Kefalonia_Ainos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"SUV_4x4\/SUV_Kefalonia_Livadi-AgEleni_beach":{"url":null,"color":"#f72fff","width":6,"exclude":false,"useStyle":true},"GEOLOGY\/GEO_Kefalonia_Mntzavinata_formations":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Antisamos_Fanentes":{"url":null,"color":"#02981a","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Proni_acropolis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_traverse":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Assos_castle":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_AgDinati_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Atros_ascent":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Ainos_ridge":{"url":null,"color":"#e99429","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kefalonia_Koutavos_loop":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kefalonia_Sami_Fanentes":{"url":null,"color":"#3ee373","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Kalymnos_Vathys_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_loop":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Palionisos":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/Roadbike_Kalymnos_Arginontas_Eborios":{"url":null,"color":"#e80fb4","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_1":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_12":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_8a":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_10":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_9":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_5":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_16":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_14":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_4":{"url":"http:\/\/www.alternetgreece.com\/en\/activities\/hiking","color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_17":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"ISLANDS\/Islands_Kalymnos_Trail_6":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"ISLANDS\/Islands_Kalymnos_Trail_3":{"url":null,"color":"#0f9f14","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Kokkinoplos_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_E4_Litochoro_Prionia":{"url":null,"color":"#23b10f","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Karya_Skolio":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Krania_Rapsani":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_O2_Rapsani_Tembi":{"url":null,"color":"#2f2fff","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Dion_Petrostrouga":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Gortsia_Apostolidis":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Thessalia\/Thessaly_Olymbos_Litochoro_Livadaki_Mouses":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Thessalia\/Thessaly_Olymbos_Vrondou_Barbalas":{"url":null,"color":"#d01919","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Ascent_Pyramida":{"url":null,"color":"#0f4a96","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Sykia_Pyramida":{"url":null,"color":"#960f65","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Giona_Viniani_Reka_Giona_ref":{"url":null,"color":"#f7f70d","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Kaloskopi_51":{"url":null,"color":"#0f962a","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Stromi_Kaloskopi":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Vardousia_Koprisies":{"url":null,"color":"#178e12","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_E4_Diakos_Stromi":{"url":null,"color":"#502fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Southern_Ridge":{"url":null,"color":"#eff900","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Artotina_Diakos":{"url":null,"color":"#ff2fe6","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_E4_Grameni_Artotina":{"url":null,"color":"#c52fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Vardousia_Oxia_AthDiakos":{"url":null,"color":"#40ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argirochori_Abelaki":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Argyrochori_Trapeza":{"url":null,"color":"#2f72ff","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Gersali":{"url":null,"color":"#59ff2f","width":6,"exclude":false,"useStyle":true},"Sterea\/Sterea_Oeta_Ypati_Trapeza":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"Sterea\/Sterea_Oiti_Ypati_Kapnochori":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":false},"STEREA\/Sterea_Oeta_Ypati_Kastania":{"url":null,"color":"#127a2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Pyrgos":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Trapeza_Greveno":{"url":null,"color":"#f7ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra_Pyrgos":{"url":null,"color":"#e62fff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Neochori_Pyrgos":{"url":null,"color":"#2fe6ff","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Oeta_Katavothra-Pyrgos":{"url":null,"color":"#69ff2f","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Eleftherochori_Gioza":{"url":null,"color":"#13a713","width":6,"exclude":false,"useStyle":true},"STEREA\/Sterea_Kallidromo_Tithronio_Gioza":{"url":null,"color":"#ff2f2f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Gortynia_Dimitsana_Radou":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Lasta_Valtesiniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Dimitsana_Zygovisti":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"PELOPONNESE\/Pelop_Magouliana_Short_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Magouliana_Kamari_valley":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Arkadia_Valtesiniko_Loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop1":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_loop2":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Skemna_loop":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"PELOPONNESE\/Pelop_Menalon_Stemnitsa_Elliniko":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Gortynia_Vytina_Lasta":{"url":null,"color":"#ff612f","width":6,"exclude":true,"useStyle":false},"Peloponnese\/Pelop_Menalon_Trail_Lousios":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Zygovisti_Elati":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Elati_Vytina":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Nymfasia_Magouliana":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Valtesiniko_Lagadia":{"url":null,"color":"#ff612f","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Vytina_Nymfasia":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"Peloponnese\/Pelop_Menalon_Trail_Magouliana_Valtesiniko":{"url":null,"color":"#9a2804","width":6,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/RoadBike_Aegina_Gyros_Nisiou":{"url":null,"color":"#ffcd55","width":5,"exclude":false,"useStyle":true},"MTB_ROADBIKE\/MTB_Aegina_MTB_loop":{"url":null,"color":"#ffcd55","width":6,"exclude":false,"useStyle":true},"Islands\/Islands_Aegina_Vlachides_Kipi":{"url":null,"color":"#ffcd55","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Aegina_Megalos_Gyros":{"url":null,"color":"#2fb7ff","width":6,"exclude":false,"useStyle":true},"Car_touring\/CAR_Aegina_Sfendouri":{"url":null,"color":"#2fb7ff","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_aegina = new getPoiCollection("aegina",[{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
Camera Obscura","owner":"AnaDigit","x":23.450152397154,"y":37.687924603713,"photo":"Aigina_Camera_obscura1","type":9,"zoom_level":13,"id":1198,"hlink_GR":"http:\/\/downlineaquatec.wordpress.com\/2013\/09\/03\/camera-obscura-\u03b1\u03af\u03b3\u03b9\u03bd\u03b1\/","hlink_EN":"http:\/\/gustavdeutsch.net\/index.php\/en\/architecture\/35-camera-obscura-gebaeude-aegina.html","description":"","height":365,"width":516},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03cd\u03c1\u03b3\u03bf\u03c2 \u039c\u03b1\u03c1\u03ba\u03ad\u03bb\u03bb\u03bf\u03c5","owner":"topoguide","x":23.42963081,"y":37.74722665,"photo":"Aigina_Pyrgos_Markelou","type":10,"zoom_level":14,"id":1254,"hlink_GR":"http:\/\/www.aegina.com.gr\/sightseings\/","hlink_EN":"","description":"","height":500,"width":376},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u03a8\u03b1\u03c7\u03bd\u03ae","owner":"topoguide","x":23.490685939789,"y":37.737644043842,"photo":"Aegina_Psachni","type":0,"zoom_level":13,"id":1257,"hlink_GR":"","hlink_EN":"","description":"","height":377,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2","owner":"topoguide","x":23.477929353714,"y":37.738331292854,"photo":"Aegina_AgNikolaos_VounoDentrou2","type":9,"zoom_level":15,"id":1258,"hlink_GR":"","hlink_EN":"","description":"","height":407,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2","owner":"topoguide","x":23.484377384186,"y":37.736965273122,"photo":"Aegina_AgAthanasios_VounoDentrou","type":9,"zoom_level":15,"id":1259,"hlink_GR":"","hlink_EN":"","description":"","height":393,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03b5\u03c4\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 \u03a3\u03c9\u03c4\u03ae\u03c1\u03b1","owner":"topoguide","x":23.488336324692,"y":37.736778610083,"photo":"Aegina_chu4_0","type":9,"zoom_level":15,"id":1260,"hlink_GR":"","hlink_EN":"","description":"","height":549,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2 \u039d\u03b7\u03c3\u03c4\u03b9\u03ba\u03cc\u03c2","owner":"topoguide","x":23.484463214875,"y":37.741903188055,"photo":"Aegina_chu3","type":9,"zoom_level":15,"id":1261,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03c0\u03cc\u03c3\u03c4\u03bf\u03bb\u03bf\u03b9","owner":"topoguide","x":23.477049589156,"y":37.744796211985,"photo":"Aegina_chu2","type":9,"zoom_level":16,"id":1262,"hlink_GR":"","hlink_EN":"","description":"","height":518,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae","owner":"topoguide","x":23.469614505769,"y":37.745144045955,"photo":"Aegina_chu1","type":9,"zoom_level":16,"id":1263,"hlink_GR":"","hlink_EN":"","description":"","height":441,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2
\u03bf \u0398\u03b1\u03bb\u03b1\u03c3\u03c3\u03b9\u03bd\u03cc\u03c2","owner":"topoguide","x":23.426518,"y":37.745064,"photo":"Aegina_AgNikolaos_Thalasinos2","type":9,"zoom_level":14,"id":1264,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":464},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03c1\u03cc\u03c3\u03b7\u03bc\u03bf \u0391\u03b3. \u039d\u03b5\u03ba\u03c4\u03b1\u03c1\u03af\u03bf\u03c5","owner":"topoguide","x":23.487735509873,"y":37.731738530133,"photo":"Aegina_AgNektarios_ico","type":9,"zoom_level":16,"id":1265,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b5\u03c1\u03b9\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03b5\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03ac\u03c3\u03b9 \u03c3\u03c4\u03bf \u03b4\u03b9\u03ac\u03c3\u03b5\u03bb\u03bf \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7 \u03bb\u03b5\u03ba\u03ac\u03bd\u03b7 \u03c4\u03b7\u03c2 \u03a7\u03c1\u03c5\u03c3\u03bf\u03c3\u03c0\u03bb\u03b7\u03bb\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2.","height":600,"width":430},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1","owner":"topoguide","x":23.484806537626,"y":37.738297354783,"photo":"Aegina_lithanaglyfo_Chrisoleondisas","type":9,"zoom_level":16,"id":1266,"hlink_GR":"","hlink_EN":"","description":"\u039b\u03b9\u03b8\u03b1\u03bd\u03ac\u03b3\u03bb\u03c5\u03c6\u03b7 \u03c0\u03b1\u03c1\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1\u03c2 \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1","height":554,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03b1\u03bb\u03ce\u03bd\u03b9
\u03c4\u03b7\u03c2 \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03b1\u03c2","owner":"topoguide","x":23.485825777054,"y":37.7272836284,"photo":"Aegina_aloni_Chrisoleondisas","type":9,"zoom_level":15,"id":1267,"hlink_GR":"","hlink_EN":"","description":"","height":320,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bf\u03bd\u03ae \u039a\u03bf\u03af\u03bc\u03b7\u03c3\u03b7\u03c2 \u0398\u03b5\u03bf\u03c4\u03cc\u03ba\u03bf\u03c5
\u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ac \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03b1","owner":"topoguide","x":23.48684501648,"y":37.727054511922,"photo":"Aegina_moni_Chrisoleondisas","type":9,"zoom_level":13,"id":1268,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bc\u03bf\u03bd\u03ae \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1\u03c2 \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc (\u03b1\u03c1\u03c7\u03ad\u03c2 19\u03bf\u03c5, \u03c3\u03c4\u03b7 \u03b8\u03ad\u03c3\u03b7 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7\u03c2 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1\u03c2), \u03c8\u03b7\u03bb\u03cc \u03c0\u03cd\u03c1\u03b3\u03bf \u03c4\u03bf\u03c5 16\u03bf\u03c5 \u03b1\u03b9., \u03c4\u03b1 \u03b4\u03b9\u03ce\u03c1\u03bf\u03c6\u03b1 \u03ba\u03b5\u03bb\u03b9\u03ac \u03c0\u03bf\u03c5 \u03ac\u03c1\u03c7\u03b9\u03c3\u03b1\u03bd \u03bd\u03b1 \u03c7\u03c4\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03bf\u03bd 17\u03bf \u03b1\u03b9. \u03ba\u03b1\u03b9 \u03b9\u03c3\u03c7\u03c5\u03c1\u03cc \u03c0\u03b5\u03c1\u03af\u03b2\u03bf\u03bb\u03bf \u03c6\u03c1\u03bf\u03c5\u03c1\u03b9\u03b1\u03ba\u03bf\u03cd \u03c4\u03cd\u03c0\u03bf\u03c5. \u0394\u03cd\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03b5\u03c2 \u03c3\u03c4\u03ad\u03c1\u03bd\u03b5\u03c2 \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03b6\u03bf\u03c5\u03bd \u03b5\u03c0\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c3\u03b5 \u03bd\u03b5\u03c1\u03cc. \u0397 \u03bc\u03bf\u03bd\u03ae \u03c5\u03c0\u03ae\u03c1\u03be\u03b5 \u03ad\u03bd\u03b1\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c5\u03c2 \u03b3\u03b1\u03b9\u03bf\u03ba\u03c4\u03ae\u03bc\u03bf\u03bd\u03b5\u03c2 \u03c3\u03c4\u03bf \u03bd\u03b7\u03c3\u03af. \u03a3\u03ae\u03bc\u03b5\u03c1\u03b1 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c9\u03c2 \u03b3\u03c5\u03bd\u03b1\u03b9\u03ba\u03b5\u03af\u03b1 \u03bc\u03bf\u03bd\u03ae \u03bc\u03b5 10 \u03bc\u03bf\u03bd\u03b1\u03c7\u03ad\u03c2.","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bf\u03bd\u03ae \u0391\u03b3. \u039d\u03b5\u03ba\u03c4\u03b1\u03c1\u03af\u03bf\u03c5","owner":"topoguide","x":23.483637094498,"y":37.747400685186,"photo":"Aegina_moni_AgNektarios","type":9,"zoom_level":13,"id":1269,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03bc\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b5\u03ba\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03ba\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03c3\u03c4\u03b1 1904-1910 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03b5\u03c0\u03af\u03c3\u03ba\u03bf\u03c0\u03bf \u03a0\u03b5\u03bd\u03c4\u03b1\u03c0\u03cc\u03bb\u03b5\u03c9\u03c2 \u039d\u03b5\u03ba\u03c4\u03ac\u03c1\u03b9\u03bf, \u03c0\u03bf\u03c5 \u03b1\u03bd\u03b1\u03ba\u03b7\u03c1\u03cd\u03c7\u03b8\u03b7\u03ba\u03b5 \u0386\u03b3\u03b9\u03bf\u03c2 \u03c4\u03bf 1961. \u0397 \u03bc\u03bf\u03bd\u03ae \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03b1\u03c0\u03cc \u03b3\u03c5\u03bd\u03b1\u03b9\u03ba\u03b5\u03af\u03b1 \u03ba\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bc\u03b5 14 \u03bc\u03bf\u03bd\u03b1\u03c7\u03ad\u03c2. \u0395\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 \u03b4\u03b7\u03bc\u03bf\u03c6\u03b7\u03bb\u03ad\u03c3\u03c4\u03b5\u03c1\u03b1 \u03bc\u03bf\u03bd\u03b1\u03c3\u03c4\u03ae\u03c1\u03b9\u03b1 \u03c3\u03c4\u03b7\u03bd \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03af \u03bc\u03b5\u03af\u03b6\u03bf\u03bd \u03c4\u03bf\u03c5\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2. \u0393\u03b9\u03bf\u03c1\u03c4\u03ac\u03b6\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 9 \u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5. \u03a4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf: 22970.53806","height":420,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1","owner":"topoguide","x":23.519106,"y":37.754777,"photo":"Aegina_Panagia_Mesagros","type":9,"zoom_level":16,"id":1270,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2
\u039c\u03b1\u03cd\u03c1\u03b9\u03ba\u03b1","owner":"topoguide","x":23.48752093315,"y":37.746094218229,"photo":"Aegina_AgNikolaos_Mavrika","type":9,"zoom_level":15,"id":1273,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5 \u03c4\u03bf\u03c5 \u039c\u03b1\u03cd\u03c1\u03b9\u03ba\u03b1 \u03c7\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c4\u03bf\u03bd 13\u03bf \u03b1\u03b9. \u039c\u03ad\u03c1\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03b3\u03b9\u03bf\u03b3\u03c1\u03ac\u03c6\u03b7\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03bd\u03b1\u03bf\u03cd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c0\u03bf \u03c4\u03bf\u03b9\u03c7\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03bf\u03bd\u03bf\u03bb\u03bf\u03b3\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf 1330.","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03c3\u03af\u03b1 \u039c\u03b1\u03bd\u03c4\u03c1\u03ce\u03bd\u03b1","owner":"topoguide","x":23.450982,"y":37.746031,"photo":"Aegina_AgMandrona_AgAsomatoi","type":9,"zoom_level":15,"id":1274,"hlink_GR":"","hlink_EN":"","description":"\u039d\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 1888","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9\u03b1-\u03c3\u03c4\u03ad\u03c1\u03bd\u03b5\u03c2","owner":"topoguide","x":23.501134,"y":37.704537,"photo":"Aegina_Anitseo_pigadia","type":9,"zoom_level":15,"id":1275,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":472},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b7\u03c2","owner":"topoguide","x":23.450059,"y":37.745641,"photo":"Aegina_chu_Taxiarchis_AgAsomatoi","type":9,"zoom_level":16,"id":1276,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":491},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03a6\u03b1\u03bd\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7
\u039a\u03b1\u03c4\u03b1\u03ba\u03cc\u03bc\u03b2\u03b5\u03c2","owner":"topoguide","x":23.439352,"y":37.742298,"photo":"Aegina_Faneromeni","type":9,"zoom_level":15,"id":1277,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03c1\u03c6\u03b1\u03bd\u03bf\u03c4\u03c1\u03bf\u03c6\u03b5\u03af\u03bf","owner":"topoguide","x":23.433185,"y":37.743061,"photo":"Aegina_Orfanotrofeio","type":9,"zoom_level":15,"id":1278,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03b1\u03bb\u03b9\u03ad\u03c2 \u03c6\u03c5\u03bb\u03b1\u03ba\u03ad\u03c2","height":331,"width":500},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1","owner":"topoguide","x":23.489596962927,"y":37.751031524178,"photo":"Aegina_Paliachora1","type":0,"zoom_level":13,"id":1279,"hlink_GR":"http:\/\/aeginahistory.blogspot.gr\/p\/blog-page_2887.html?spref=bl","hlink_EN":"","description":"\u039a\u03b1\u03c4\u03ac\u03c3\u03c0\u03b1\u03c1\u03c4\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c0\u03b1\u03bb\u03b9\u03ad\u03c2 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b5\u03c2, \u03bf \u03b1\u03c0\u03cc\u03c4\u03bf\u03bc\u03bf\u03c2 \u03bb\u03cc\u03c6\u03bf\u03c2 \u03ba\u03b1\u03c4\u03bf\u03b9\u03ba\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b1 \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ac \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u0391\u03b9\u03b3\u03b9\u03bd\u03af\u03c4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c4\u03c3\u03b1\u03bd \u03b1\u03c3\u03c6\u03b1\u03bb\u03ad\u03c2 \u03ba\u03b1\u03c4\u03c6\u03cd\u03b3\u03b9\u03bf \u03c3\u03c4\u03b7\u03bd \u03b5\u03bd\u03b4\u03bf\u03c7\u03ce\u03c1\u03b1 \u03c4\u03bf\u03c5 \u03bd\u03b7\u03c3\u03b9\u03bf\u03cd.","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03c5\u03c1\u03af\u03bf\u03c5
\u039c\u03b1\u03ba\u03c1\u03bf\u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1","owner":"topoguide","x":23.490095853802,"y":37.687211415912,"photo":"Aegina_Sfendouri_Makrosouvala3","type":0,"zoom_level":14,"id":1280,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b5\u03b3\u03ac\u03bb\u03c9\u03bd \u03b4\u03b9\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03bd \u03b1\u03bd\u03bf\u03b9\u03c7\u03c4\u03ae \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b2\u03c1\u03bf\u03c7\u03cc\u03bd\u03b5\u03c1\u03bf\u03c5. \u039c\u03ad\u03c7\u03c1\u03b9 \u03c4\u03b7\u03bd \u03ad\u03bb\u03b5\u03c5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b7\u03bc\u03bf\u03c4\u03b9\u03ba\u03ae\u03c2 \u03cd\u03b4\u03c1\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9 (\u03b4\u03b5\u03ba\u03b1\u03b5\u03c4\u03af\u03b1 \u03c4\u03bf\u03c5 50), \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03bf\u03cd\u03c3\u03b5 \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03ae \u03c0\u03b7\u03b3\u03ae \u03bd\u03b5\u03c1\u03bf\u03cd \u03b3\u03b9\u03b1 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c7\u03c1\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03bf \u03c7\u03c9\u03c1\u03b9\u03cc.","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039b\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b1\u03af\u03bf\u03c5 \u03bb\u03b9\u03bc\u03b5\u03bd\u03bf\u03b2\u03c1\u03b1\u03c7\u03af\u03bf\u03bd\u03b1","owner":"topoguide","x":23.424519,"y":37.748965,"photo":"Aegina_Kriptos_limin","type":10,"zoom_level":14,"id":1281,"hlink_GR":"","hlink_EN":"","description":"\u0392\u03c5\u03b8\u03b9\u03c3\u03bc\u03ad\u03bd\u03b1 \u03c4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03b2\u03c1\u03b1\u03c7\u03b9\u03cc\u03bd\u03c9\u03bd \u03c4\u03bf\u03c5 \u039a\u03c1\u03c5\u03c0\u03c4\u03bf\u03cd \u03bb\u03b9\u03bc\u03ad\u03bd\u03b1","height":433,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039b\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03bd\u03b1\u03bf\u03cd \u03c4\u03bf\u03c5 \u0391\u03c0\u03cc\u03bb\u03bb\u03c9\u03bd\u03b1","owner":"topoguide","x":23.42387,"y":37.750233,"photo":"Aegina_Kolona14","type":10,"zoom_level":13,"id":1282,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u039c\u03ac\u03bd\u03bd\u03b1 \u03c4\u03bf\u03c5 \u03a7. \u039a\u03b1\u03c0\u03c1\u03ac\u03bb\u03bf\u03c5","owner":"topoguide","x":23.424071,"y":37.76507,"photo":"Aegina_Manna_Kapralos","type":9,"zoom_level":14,"id":1285,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":429},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03b9\u03ba\u03af\u03b1 \u039a\u03b1\u03b6\u03b1\u03bd\u03c4\u03b6\u03ac\u03ba\u03b7","owner":"topoguide","x":23.426243,"y":37.76716,"photo":"Aegina_Oikia_Kazantzaki2","type":9,"zoom_level":15,"id":1286,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03c1\u03c7\u03b1\u03af\u03bf \u03bb\u03b1\u03c4\u03bf\u03bc\u03b5\u03af\u03bf","owner":"topoguide","x":23.430256,"y":37.766143,"photo":"Aegina_arxeo_latomeio_necrotafeio","type":10,"zoom_level":14,"id":1287,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":981},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03b9\u03ba\u03af\u03b1 \u03a0\u03ad\u03c1\u03bf\u03b3\u03bb\u03bf\u03c5","owner":"topoguide","x":23.431409,"y":37.739129,"photo":"Aegina_oikia_Peroglou","type":9,"zoom_level":15,"id":1289,"hlink_GR":"","hlink_EN":"","description":"","height":464,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03bd\u03ac\u03c1\u03b3\u03c5\u03c1\u03bf\u03b9","owner":"topoguide","x":23.435579,"y":37.765488,"photo":"Aegina_AgAnargyroi_Kypseli","type":9,"zoom_level":15,"id":1290,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":453},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2 \u039c\u03bf\u03cd\u03bb\u03bf\u03c2","owner":"topoguide","x":23.454503,"y":37.765901,"photo":"Aegina_AgNikolaos_Moulos1","type":9,"zoom_level":14,"id":1291,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b9\u03bf\u03bd\u03cd\u03c3\u03b9\u03bf\u03c2","owner":"topoguide","x":23.429965822788,"y":37.755638934281,"photo":"Aegina_AgDionysios_Kypseli","type":9,"zoom_level":15,"id":1292,"hlink_GR":"","hlink_EN":"","description":"","height":349,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b5\u03c2","owner":"topoguide","x":23.452003,"y":37.761541,"photo":"Aegina_Taxiarches_Kipseli","type":9,"zoom_level":16,"id":1293,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03c4\u03af\u03c1\u03b9\u03bf \u0392\u03bf\u03b3\u03b9\u03b1\u03c4\u03b6\u03ae","owner":"topoguide","x":23.426806,"y":37.746349,"photo":"Aegina_ktirio_Vogiatzi","type":9,"zoom_level":16,"id":1294,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1","owner":"topoguide","x":23.462342,"y":37.76786,"photo":"Aegina_AgMarina_livadi","type":9,"zoom_level":15,"id":1295,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039d\u03b1\u03cc\u03c2 \u03a3\u03cd\u03bd\u03b1\u03be\u03b7\u03c2
\u0391\u03b9\u03b3\u03b9\u03bd\u03b9\u03c9\u03c4\u03ce\u03bd \u0391\u03b3\u03af\u03c9\u03bd","owner":"topoguide","x":23.430427,"y":37.763115,"photo":"Aegina_Synaxis_Aiginioton_Agion","type":9,"zoom_level":16,"id":1296,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf\u03c2","owner":"topoguide","x":23.443854570389,"y":37.72534035875,"photo":"Aegina_AgEleftherios_Faros","type":9,"zoom_level":15,"id":1297,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03b3\u03af\u03b1 \u03a4\u03c1\u03b9\u03ac\u03b4\u03b1 \u03c3\u03c4\u03bf\u03bd \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1","owner":"topoguide","x":23.480693,"y":37.70839,"photo":"Aegina_Eleonas_AgTriada4","type":9,"zoom_level":14,"id":1298,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03b3\u03af\u03b1 \u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae \u03c3\u03c4\u03bf\u03bd \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1","owner":"topoguide","x":23.472404,"y":37.708647,"photo":"Aegina_AgKyriaki_Eleonas","type":9,"zoom_level":16,"id":1299,"hlink_GR":"","hlink_EN":"","description":"","height":359,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a7\u03b9\u03bb\u03b9\u03bf\u03c7\u03c1\u03bf\u03bd\u03af\u03c4\u03b9\u03ba\u03b5\u03c2 \u03b5\u03bb\u03b9\u03ad\u03c2
\u03c3\u03c4\u03bf\u03bd \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1","owner":"topoguide","x":23.47798,"y":37.706388,"photo":"Aegina_Eleonas5","type":0,"zoom_level":13,"id":1300,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf\u03c0\u03af\u03bf \u03c3\u03c4\u03bf\u03bd \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1","owner":"topoguide","x":23.480678,"y":37.70777,"photo":"Aegina_Eleonas_AgTriada","type":0,"zoom_level":14,"id":1301,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03bf\u03c1\u03c5\u03c6\u03ae \u038c\u03c1\u03bf\u03c5\u03c2
\u0391\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7","owner":"topoguide","x":23.49573922157,"y":37.700658945428,"photo":"Aegina_Oros_Analipsi2","type":0,"zoom_level":13,"id":1303,"hlink_GR":"","hlink_EN":"","description":"","height":429,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03be\u03b5\u03bd\u03ce\u03bd\u03b1\u03c2 \u03c4\u03bf\u03c5 \u03b9\u03b5\u03c1\u03bf\u03cd \u03c4\u03bf\u03c5 \u0395\u03bb\u03bb\u03b1\u03bd\u03af\u03bf\u03c5 \u0394\u03b9\u03cc\u03c2","owner":"topoguide","x":23.497251987458,"y":37.708079935412,"photo":"Aegina_Elanios_Dias3","type":10,"zoom_level":14,"id":1304,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b5\u03c2","owner":"topoguide","x":23.497477293015,"y":37.707723439299,"photo":"Aegina_Oros_Sotira","type":9,"zoom_level":14,"id":1305,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03c3\u03c4\u03b9\u03c2 \u03a3\u03c6\u03c5\u03c1\u03af\u03c7\u03c4\u03c1\u03b5\u03c2","owner":"topoguide","x":23.497466564177,"y":37.707305402985,"photo":"Aegina_Elanios_Dias_souvala_Sfyrixtres1","type":0,"zoom_level":15,"id":1306,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf\u03b9\u03c7\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1 \u03b1\u03c0\u03cc
\u03c4\u03bf \u03b9\u03b5\u03c1\u03cc \u03c4\u03b7\u03c2 \u0391\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7\u03c2","owner":"topoguide","x":23.495793,"y":37.700727,"photo":"Aegina_Oros_Analipsi3","type":9,"zoom_level":17,"id":1308,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03c3\u03c4\u03b1\u03cd\u03c1\u03c9\u03c3\u03b7
\u03c4\u03c9\u03bd \u03bc\u03bf\u03bd\u03bf\u03c0\u03b1\u03c4\u03b9\u03ce\u03bd","owner":"topoguide","x":23.492885351178,"y":37.700353346843,"photo":"Aegina_Oros_ascent2","type":0,"zoom_level":15,"id":1309,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0395\u039a\u03a0\u0391\u0396","owner":"topoguide","x":23.488711833955,"y":37.715402580287,"photo":"Aegina_Oros_EKPAZ","type":9,"zoom_level":14,"id":1310,"hlink_GR":"","hlink_EN":"","description":"\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03cc \u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u03a0\u03b5\u03c1\u03af\u03b8\u03b1\u03bb\u03c8\u03b7\u03c2 \u0391\u03b3\u03c1\u03af\u03c9\u03bd \u0396\u03ce\u03c9\u03bd","height":329,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03c4\u03b1 \u03a0\u03bb\u03b1\u03ba\u03c9\u03c4\u03ac","owner":"topoguide","x":23.485117673875,"y":37.692120810897,"photo":"Aegina_Sfendouri_Plakota1","type":9,"zoom_level":14,"id":1312,"hlink_GR":"","hlink_EN":"","description":"","height":425,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0395\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc \u03c4\u03bf\u03c5 \u03a0\u03bb\u03b1\u03ba\u03c9\u03c4\u03bf\u03cd","owner":"topoguide","x":23.484870910645,"y":37.691942524679,"photo":"Aegina_Sfendouri_Plakota5","type":9,"zoom_level":15,"id":1313,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":530},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u0384\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2
\u03c3\u03c4\u03bf \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9","owner":"topoguide","x":23.479442119596,"y":37.692882767407,"photo":"Aegina_Sfendouri_AgDimitrios1","type":9,"zoom_level":15,"id":1314,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":397},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u0384\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2","owner":"topoguide","x":23.480588,"y":37.690638,"photo":"Aegina_Sfendouri_AgNikolaos_","type":9,"zoom_level":15,"id":1315,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03ba\u03c1\u03cc\u03c2 \u03ba\u03bf\u03b9\u03bc\u03b7\u03c4\u03b7\u03c1\u03b9\u03b1\u03ba\u03cc\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c3\u03c4\u03bf \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03ac\u03ba\u03b9 \u03c4\u03bf\u03c5 \u03a3\u03c4\u03b1\u03c5\u03c1\u03bf\u03cd","owner":"topoguide","x":23.473696,"y":37.69227,"photo":"Aegina_Sfendouri_Stavros","type":9,"zoom_level":14,"id":1316,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0395\u03c1\u03b5\u03af\u03c0\u03b9\u03b1 \u03b1\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c5","owner":"topoguide","x":23.50024,"y":37.709241,"photo":"Aegina_Oros_windmill","type":9,"zoom_level":16,"id":1317,"hlink_GR":"","hlink_EN":"","description":"","height":397,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03bf\u03c0\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9","owner":"topoguide","x":23.479978561399,"y":37.691422520758,"photo":"Aegina_Sfendouri_Moni","type":0,"zoom_level":14,"id":1318,"hlink_GR":"","hlink_EN":"","description":"\u03a3\u03c4\u03bf \u03c0\u03af\u03c3\u03c9 \u03c0\u03bb\u03ac\u03bd\u03bf, \u03b7 \u03bd\u03ae\u03c3\u03bf\u03c2 \u039c\u03bf\u03bd\u03ae \u03ba\u03b1\u03b9 \u03c4\u03bf \u0391\u03b3\u03ba\u03af\u03c3\u03c4\u03c1\u03b9","height":500,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u039c\u03c5\u03c1\u03c4\u03b9\u03b4\u03b9\u03ce\u03c4\u03b9\u03c3\u03c3\u03b1
\u03c3\u03c4\u03b7\u03bd \u03c0\u03cc\u03bb\u03b7","owner":"topoguide","x":23.428036,"y":37.747049,"photo":"Aegina_town_Panagia_Myrtidiotisa","type":9,"zoom_level":17,"id":1320,"hlink_GR":"","hlink_EN":"","description":"\u039f\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03ae\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf 1903 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u039d\u03b9\u03ba\u03ae\u03c4\u03b1 \u0392\u03bf\u03b3\u03b9\u03b1\u03c4\u03b6\u03ae.","height":700,"width":464},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039d\u03b1\u03cc\u03c2 \u0391\u03c6\u03b1\u03af\u03b1\u03c2","owner":"topoguide","x":23.53364419937,"y":37.754144741907,"photo":"_Aegina_Afaia2","type":10,"zoom_level":11,"id":1321,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03b8\u03b1\u03bb\u03ac\u03c3\u03c3\u03b9\u03bf \u03bc\u03ad\u03c4\u03c9\u03c0\u03bf","owner":"topoguide","x":23.429982,"y":37.740546,"photo":"_Aegina_town3","type":0,"zoom_level":13,"id":1322,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":1162},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c9\u03c1\u03b1\u03af\u03b1 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1
\u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u03a6\u03b9\u03bb\u03bf\u03b8\u03ad\u03b7\u03c2","owner":"topoguide","x":23.419125,"y":37.76177,"photo":"_Aegina_Plakakia_AgFilothei","type":9,"zoom_level":15,"id":1324,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":566},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2","owner":"topoguide","x":23.4290887,"y":37.747459,"photo":"Aegina_AgNikolaos_town","type":9,"zoom_level":15,"id":1325,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":384},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bd\u03b7\u03bc\u03b5\u03af\u03bf \u03c0\u03b5\u03c3\u03cc\u03bd\u03c4\u03c9\u03bd","owner":"topoguide","x":23.426614,"y":37.747051,"photo":"Aegina_town_plateia_Eleftheria","type":9,"zoom_level":15,"id":1326,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":578},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03a4\u03af\u03bc\u03b9\u03bf\u03c2 \u03a3\u03c4\u03b1\u03c5\u03c1\u03cc\u03c2
\u03c3\u03c4\u03b7\u03bd \u03b5\u03af\u03c3\u03bf\u03b4\u03bf \u03c4\u03b7\u03c2 \u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1\u03c2","owner":"topoguide","x":23.488068,"y":37.752783,"photo":"Aegina_Paliachora_Stavros","type":9,"zoom_level":15,"id":1327,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391","owner":"topoguide","x":23.485525,"y":37.751697,"photo":"Aegina_Paliachora_naso_apenandi","type":9,"zoom_level":15,"id":1328,"hlink_GR":"","hlink_EN":"","description":"","height":673,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039a\u03c9\u03bd\u03c3\u03c4\u03b1\u03bd\u03c4\u03af\u03bd\u03bf\u03c2","owner":"topoguide","x":23.517894268035,"y":37.757096663883,"photo":"Aegina_Mesagros_AgKonstandinos","type":9,"zoom_level":15,"id":1329,"hlink_GR":"","hlink_EN":"","description":"","height":664,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039b\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c5","owner":"topoguide","x":23.491372585296,"y":37.75228276503,"photo":"Aegina_Paliachora_Milos_kastrou","type":9,"zoom_level":15,"id":1330,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":729},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","owner":"topoguide","x":23.527507305144,"y":37.738229478589,"photo":"Aegina_Alones_AgIoanis","type":9,"zoom_level":15,"id":1331,"hlink_GR":"","hlink_EN":"","description":"","height":387,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1
\u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ac \u03c4\u03bf\u03c5 \u0393\u03b9\u03ac\u03bd\u03bd\u03bf\u03c5\u03bb\u03b7","owner":"topoguide","x":23.488250494,"y":37.751951930524,"photo":"Aegina_Paliachora_Panagia_Gianouli","type":9,"zoom_level":17,"id":1332,"hlink_GR":"","hlink_EN":"http:\/\/www.aeginagreece.com\/magazine\/portfolio\/yannoulis-church-of-the-virgin\/","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03ac\u03c3\u03c4\u03c1\u03bf \u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1\u03c2
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2
\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2","owner":"topoguide","x":23.489409208296,"y":37.750692200976,"photo":"Aegina_Paliachora_AgDimitrios_AgGeorgios_kastrou0","type":9,"zoom_level":15,"id":1334,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03ba\u03ac\u03c3\u03c4\u03c1\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b2\u03bf\u03b7\u03b8\u03b7\u03c4\u03b9\u03ba\u03ac \u03ba\u03c4\u03af\u03c3\u03bc\u03b1\u03c4\u03b1 (\u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ad\u03c2, \u03c6\u03c5\u03bb\u03ac\u03ba\u03b9\u03b1 \u03ba\u03bb\u03c0) \u03c7\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b1\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u0395\u03bd\u03b5\u03c4\u03bf\u03cd\u03c2 \u03c4\u03bf 1654.","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b9\u03bf\u03bd\u03cd\u03c3\u03b9\u03bf\u03c2
\u0395\u03c0\u03b9\u03c3\u03ba\u03bf\u03c0\u03ae","owner":"topoguide","x":23.488513350486,"y":37.751112113208,"photo":"Aegina_Paliachora_AgDionysios_Episkopi","type":10,"zoom_level":16,"id":1335,"hlink_GR":"","hlink_EN":"http:\/\/www.aeginagreece.com\/magazine\/portfolio\/saint-dionysios-saint-episkopi\/","description":"\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b9\u03bf\u03bd\u03cd\u03c3\u03b9\u03bf\u03c2, \u03b1\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b5\u03c0\u03af\u03c3\u03ba\u03bf\u03c0\u03bf \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2 (\u03b1\u03c0\u03cc \u03c4\u03bf 1576 \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c4\u03bf 1579) \u0394\u03b9\u03bf\u03bd\u03cd\u03c3\u03b9\u03bf \u03c5\u03c0\u03ae\u03c1\u03be\u03b5 \u03bf \u03ba\u03b1\u03b8\u03b5\u03b4\u03c1\u03b9\u03ba\u03cc\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd. \u039f \u0394\u03b9\u03bf\u03bd\u03cd\u03c3\u03b9\u03bf\u03c2 \u03b1\u03c3\u03ba\u03ae\u03c4\u03b5\u03c8\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03bc\u03b9\u03ba\u03c1\u03cc \u03ba\u03b5\u03bb\u03af \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7 \u03b8\u03ad\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bd\u03b1\u03bf\u03cd \u03ba\u03b1\u03b9 \u03b1\u03bd\u03b1\u03ba\u03b7\u03c1\u03cd\u03c7\u03b8\u03b7\u03ba\u03b5 \u03ac\u03b3\u03b9\u03bf\u03c2.","height":800,"width":586},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0395\u03bb\u03b5\u03c5\u03b8\u03ad\u03c1\u03b9\u03bf\u03c2","owner":"topoguide","x":23.489809,"y":37.750692,"photo":"Aegina_Paliachora_AgEleftherios","type":9,"zoom_level":17,"id":1336,"hlink_GR":"","hlink_EN":"","description":"","height":534,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1
\u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03ba\u03c1\u03af\u03bd\u03b1","owner":"topoguide","x":23.489862,"y":37.750262,"photo":"Aegina_Paliachora_AgMakrina","type":9,"zoom_level":17,"id":1337,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":586},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03c0\u03c5\u03c1\u03af\u03b4\u03c9\u03bd","owner":"topoguide","x":23.490932,"y":37.749965,"photo":"Aegina_Paliachora_AgSpyridon","type":9,"zoom_level":16,"id":1338,"hlink_GR":"","hlink_EN":"","description":"","height":530,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1
\u0391\u03b3\u03af\u03b1 \u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae
\u0396\u03c9\u03bf\u03b4\u03cc\u03c7\u03bf\u03c2 \u03a0\u03b7\u03b3\u03ae","owner":"topoguide","x":23.490170955657,"y":37.750225629036,"photo":"Aegina_Paliachora_AgKyriaki_ZoodPigi","type":9,"zoom_level":16,"id":1339,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u0391\u03b3\u03af\u03b1 \u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae \u03ae\u03c4\u03b1\u03bd \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u03bf\u03bc\u03ce\u03bd\u03c5\u03bc\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03b5 \u03c4\u03bf \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf \u03c4\u03b7\u03c2 \u03a0\u03b1\u03bb\u03b1\u03b9\u03bf\u03c7\u03ce\u03c1\u03b1\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd 17\u03bf \u03b1\u03b9. \u03ba\u03b1\u03b9 \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c4\u03bf 1830. \u039f \u03bd\u03b1\u03cc\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03c3\u03b9\u03c0\u03cc\u03c3\u03c4\u03b1\u03c4\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b5\u03af \u03b5\u03bd\u03b4\u03b9\u03b1\u03c6\u03ad\u03c1\u03bf\u03c5\u03c3\u03b5\u03c2 \u03b1\u03b3\u03b9\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2.","height":800,"width":608},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b7\u03c2
\u0391\u03b3. \u0395\u03c5\u03b8\u03cd\u03bc\u03b9\u03bf\u03c2
\u039c\u03b5\u03c4\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7
\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","owner":"topoguide","x":23.488866,"y":37.750612,"photo":"Aegina_Paliachora_AgTaxiarchis_Metamorfosi_AgEfthimios_AgIoanis","type":9,"zoom_level":17,"id":1340,"hlink_GR":"","hlink_EN":"","description":"","height":611,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac\u03c7\u03c9\u03c1\u03b1
\u0386\u03b3. \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2 \u0398\u03b5\u03bf\u03bb\u03cc\u03b3\u03bf\u03c2","owner":"topoguide","x":23.490432,"y":37.750017,"photo":"Aegina_Paliachora_AgIoanis_Theologos","type":9,"zoom_level":17,"id":1341,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":655},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1","owner":"topoguide","x":23.481051445008,"y":37.716853867613,"photo":"Aegina_apo_PachiaRachi_Eleona1","type":0,"zoom_level":15,"id":1342,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":452},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03c4\u03bf \u03bc\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9 \u03c0\u03c1\u03bf\u03c2 \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1","owner":"topoguide","x":23.479012966157,"y":37.713781518144,"photo":"Aegina_apo_PachiaRachi_Eleona2","type":0,"zoom_level":15,"id":1343,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":1223},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03c5\u03b2\u03b5\u03c1\u03bd\u03b5\u03af\u03bf \u039a\u03b1\u03c0\u03bf\u03b4\u03af\u03c3\u03c4\u03c1\u03b9\u03b1","owner":"topoguide","x":23.430738,"y":37.747328,"photo":"Aegina_town_Kyverneio","type":9,"zoom_level":16,"id":1344,"hlink_GR":"http:\/\/odosaeginis.blogspot.gr\/2013\/01\/to.html","hlink_EN":"","description":"","height":183,"width":275},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0395\u03cb\u03bd\u03ac\u03c1\u03b4\u03b5\u03b9\u03bf \u03bc\u03ad\u03b3\u03b1\u03c1\u03bf","owner":"topoguide","x":23.430656,"y":37.745597,"photo":"Aegina_town_Eynardeion","type":9,"zoom_level":16,"id":1345,"hlink_GR":"http:\/\/aeginalight.gr\/article.php?id=32330#.VEeP1PmUfmI","hlink_EN":"","description":"","height":183,"width":276},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u03a7\u03b1\u03c1\u03ac\u03bb\u03b1\u03bc\u03c0\u03bf\u03c2","owner":"topoguide","x":23.486544609067,"y":37.752248833354,"photo":"Aegina_Paliachora_23_486556_37_752249","type":9,"zoom_level":16,"id":1475,"hlink_GR":"","hlink_EN":"http:\/\/www.aeginagreece.com\/magazine\/portfolio\/the-church-of-saint-charalambous\/","description":"","height":562,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1","owner":"topoguide","x":23.489919,"y":37.753831,"photo":"Aegina_Paliachora_23_489894_37_753814","type":9,"zoom_level":17,"id":1477,"hlink_GR":"","hlink_EN":"","description":"","height":361,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03b9 \u03a3\u03b1\u03c1\u03ac\u03bd\u03c4\u03b1","owner":"topoguide","x":23.489876,"y":37.752677,"photo":"Aegina_Paliochora_AgSaranda","type":9,"zoom_level":16,"id":1478,"hlink_GR":"","hlink_EN":"","description":"","height":571,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1","owner":"topoguide","x":23.489602,"y":37.753835,"photo":"Aegina_Paliachora_23_489628_37_753837","type":9,"zoom_level":16,"id":1479,"hlink_GR":"","hlink_EN":"","description":"","height":670,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03b8\u03b1\u03bd\u03ac\u03c3\u03b9\u03bf\u03c2","owner":"topoguide","x":23.488006,"y":37.75206,"photo":"Aegina_Paliachora_AgAthanasios","type":9,"zoom_level":17,"id":1480,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03c4\u03ad\u03c6\u03b1\u03bd\u03bf\u03c2","owner":"topoguide","x":23.487622,"y":37.75168,"photo":"Aegina_Paliachora_AgStefanos","type":9,"zoom_level":17,"id":1481,"hlink_GR":"","hlink_EN":"","description":"","height":514,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","owner":"topoguide","x":23.487805,"y":37.75129,"photo":"Aegina_Paliachora_AgGeorgios","type":9,"zoom_level":17,"id":1482,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2 \u03a0\u03c1\u03cc\u03b4\u03c1\u03bf\u03bc\u03bf\u03c2","owner":"topoguide","x":23.48791,"y":37.751069,"photo":"Aegina_Paliachora_AgIoanis_Prodromos1","type":9,"zoom_level":16,"id":1483,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":704},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0395\u03c5\u03b8\u03cd\u03bc\u03b9\u03bf\u03c2","owner":"topoguide","x":23.487838,"y":37.75077,"photo":"Aegina_Paliachora_AgEfthimios","type":9,"zoom_level":17,"id":1484,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u039c\u03b5\u03c4\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 \u03a3\u03c9\u03c4\u03ae\u03c1\u03bf\u03c2","owner":"topoguide","x":23.488178,"y":37.750763,"photo":"Aegina_Paliachora_Metamorfosi","type":9,"zoom_level":16,"id":1485,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":534},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u039a\u03bf\u03af\u03bc\u03b7\u03c3\u03b7 \u0398\u03b5\u03bf\u03c4\u03cc\u03ba\u03bf\u03c5","owner":"topoguide","x":23.488389968871,"y":37.7501068648,"photo":"Aegina_Paliachora_KimTheotokou","type":9,"zoom_level":17,"id":1486,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2","owner":"topoguide","x":23.488593816756,"y":37.749826919774,"photo":"Aegina_Paliachora_AgDimitrios2","type":9,"zoom_level":17,"id":1487,"hlink_GR":"","hlink_EN":"","description":"","height":684,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03bd\u03ac\u03c1\u03b3\u03c5\u03c1\u03bf\u03b9","owner":"topoguide","x":23.489241,"y":37.749659,"photo":"Aegina_Paliachora_AgAnargyroi","type":9,"zoom_level":16,"id":1488,"hlink_GR":"","hlink_EN":"","description":"","height":399,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03b1\u03c7\u03ce\u03c1\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2","owner":"topoguide","x":23.489703,"y":37.749825,"photo":"Aegina_Paliachora_AgNikolaos1","type":9,"zoom_level":16,"id":1489,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":465},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0392\u03bb\u03ac\u03c7\u03b7\u03b4\u03b5\u03c2
\u0391\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2","owner":"topoguide","x":23.510132,"y":37.699454,"photo":"Aegina_Vlachides_windmill1","type":9,"zoom_level":16,"id":1490,"hlink_GR":"","hlink_EN":"","description":"","height":446,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0392\u03bb\u03ac\u03c7\u03b7\u03b4\u03b5\u03c2
\u0391\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2","owner":"topoguide","x":23.509503,"y":37.698901,"photo":"Aegina_Vlachides_windmill2","type":9,"zoom_level":17,"id":1491,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0392\u03bb\u03ac\u03c7\u03b7\u03b4\u03b5\u03c2","owner":"topoguide","x":23.508372,"y":37.697988,"photo":"Aegina_Vlachides","type":9,"zoom_level":15,"id":1492,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u039a\u03bf\u03c1\u03c6\u03ae
\u03a0\u03b5\u03b6\u03bf\u03cd\u03bb\u03b5\u03c2","owner":"topoguide","x":23.511731,"y":37.697017,"photo":"Aegina_AgAntonios_pezoules","type":0,"zoom_level":15,"id":1493,"hlink_GR":"","hlink_EN":"","description":"","height":468,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u039a\u03bf\u03c1\u03c6\u03ae
\u0391\u03bb\u03ce\u03bd\u03b9","owner":"topoguide","x":23.514494,"y":37.697275,"photo":"Aegina_Aloni_AgAntonios","type":9,"zoom_level":17,"id":1494,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03bd\u03c4\u03ce\u03bd\u03b9\u03bf\u03c2","owner":"topoguide","x":23.518142,"y":37.69601,"photo":"Aegina_AgAntonios2","type":9,"zoom_level":14,"id":1495,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c0\u03c1\u03bf\u03ca\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2","owner":"topoguide","x":23.516988,"y":37.696448,"photo":"Aegina_AgAntonios_walls","type":10,"zoom_level":15,"id":1496,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03bd\u03af\u03c4\u03c3\u03b1\u03b9\u03bf
\u0391\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2","owner":"topoguide","x":23.506034,"y":37.707849,"photo":"Aegina_Anitseo_wmill3","type":9,"zoom_level":15,"id":1497,"hlink_GR":"","hlink_EN":"","description":"","height":684,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03bd\u03af\u03c4\u03c3\u03b1\u03b9\u03bf
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","owner":"topoguide","x":23.505551,"y":37.707857,"photo":"Aegina_Anitseo_AgGeorgios","type":9,"zoom_level":16,"id":1498,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03bf\u03b9\u03bc\u03b7\u03c4\u03ae\u03c1\u03b9\u03bf","owner":"topoguide","x":23.489635,"y":37.715844,"photo":"Aegina_Nec_23_489931_37_716134","type":9,"zoom_level":16,"id":1499,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03c7\u03b5\u03b9\u03ac \u03a1\u03ac\u03c7\u03b7
\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c4\u03c9\u03bd \u03a4\u03b1\u03be\u03b9\u03b1\u03c1\u03c7\u03ce\u03bd","owner":"topoguide","x":23.479903459549,"y":37.718050521741,"photo":"Aegina_Pachia_Rachi_chu2","type":9,"zoom_level":16,"id":1500,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03ba\u03c1\u03cc\u03c2 \u03bc\u03bf\u03bd\u03cc\u03c7\u03c9\u03c1\u03bf\u03c2 \u03bd\u03b1\u03cc\u03c2, \u03c0\u03b1\u03bb\u03b9\u03cc\u03c2 \u03b5\u03bd\u03bf\u03c1\u03b9\u03b1\u03ba\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03a0\u03b1\u03c7\u03b5\u03b9\u03ac\u03c2 \u03a1\u03ac\u03c7\u03b7\u03c2. \u039a\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c0\u03c1\u03b9\u03bd \u03c4\u03bf\u03bd 19\u03bf \u03b1\u03b9. \u03ba\u03b1\u03b9 \u03b1\u03bd\u03b1\u03ba\u03b1\u03b9\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1. \u039f \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b9\u03ba\u03cc\u03c2 \u03c7\u03ce\u03c1\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03bd\u03cc\u03c4\u03b9\u03bf \u03c4\u03bf\u03af\u03c7\u03bf \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03ac\u03c0\u03b7\u03ba\u03b5 \u03c3\u03b5 \u03bd\u03b1\u03cb\u03b4\u03c1\u03b9\u03bf \u03b1\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b1\u03b3\u03af\u03bf\u03c5\u03c2 \u0399\u03bf\u03cd\u03bb\u03b9\u03bf \u03ba\u03b1\u03b9 \u0399\u03bf\u03c5\u03bb\u03b9\u03b1\u03bd\u03cc, \u03c0\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03a0\u03b1\u03c7\u03b5\u03b9\u03ac \u03a1\u03ac\u03c7\u03b7.","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u0391\u03b3. \u039b\u03b5\u03bf\u03bd\u03c4\u03af\u03bf\u03c5
\u03a3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b5\u03c2","owner":"topoguide","x":23.490771770478,"y":37.723269744585,"photo":"Aegina_oropedio_AgLeondios_souvala","type":0,"zoom_level":16,"id":1501,"hlink_GR":"http:\/\/urbanspeleology.blogspot.gr\/2013\/09\/blog-post_23.html","hlink_EN":"","description":"\u039f\u03b9 \u03b4\u03cd\u03bf \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b5\u03c2 \u03c4\u03b7\u03c2 \u03c6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03b7 \u03c4\u03c1\u03af\u03c4\u03b7 \u03c0\u03bf\u03c5 \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03bb\u03af\u03b3\u03bf \u03bd\u03bf\u03c4\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03bf\u03cd\u03bd \u03bc\u03b5 \u03c5\u03c0\u03cc\u03b3\u03b5\u03b9\u03b1 \u03c3\u03ae\u03c1\u03b1\u03b3\u03b3\u03b1, \u03c0\u03bf\u03c5 \u03b1\u03c5\u03be\u03ac\u03bd\u03b5\u03b9 \u03c0\u03bf\u03bb\u03cd \u03c4\u03b7 \u03c7\u03c9\u03c1\u03b7\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c3\u03b5 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf \u03bd\u03b5\u03c1\u03cc. \u03a4\u03bf \u03bd\u03b5\u03c1\u03cc \u03c0\u03c1\u03bf\u03ad\u03c1\u03c7\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b9\u03c6\u03b1\u03bd\u03b5\u03b9\u03b1\u03ba\u03ad\u03c2 \u03b1\u03c0\u03bf\u03c1\u03c1\u03bf\u03ad\u03c2, \u03b1\u03bb\u03bb\u03ac \u03ba\u03c5\u03c1\u03af\u03c9\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03c1\u03ac\u03b3\u03b3\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c7\u03c9\u03bc\u03ac\u03c4\u03b9\u03bd\u03b7\u03c2 \u03bc\u03ac\u03b6\u03b1\u03c2 \u03c4\u03bf\u03c5 \u03bf\u03c1\u03bf\u03c0\u03b5\u03b4\u03af\u03bf\u03c5, \u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03c3\u03c5\u03b3\u03ba\u03c1\u03b1\u03c4\u03b5\u03af \u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03c4\u03bf\u03af\u03c7\u03bf\u03c2 \u03c0\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9. \u0395\u03af\u03bd\u03b1\u03b9 \u03c0\u03bf\u03bb\u03cd \u03c0\u03b9\u03b8\u03b1\u03bd\u03cc\u03bd (\u03ba\u03b1\u03b9 \u03c4\u03b5\u03c7\u03bd\u03b9\u03ba\u03ac \u03b5\u03c6\u03b9\u03ba\u03c4\u03cc), \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c4\u03bf \u03bd\u03b5\u03c1\u03cc \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03bf\u03c4\u03bf\u03cd\u03c3\u03b5, \u03ad\u03c3\u03c4\u03c9 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03c9\u03bc\u03b1\u03c4\u03b9\u03ba\u03ac, \u03c4\u03bf \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9 \u03c0\u03bf\u03c5 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bb\u03af\u03b3\u03b1 \u03bc\u03ad\u03c4\u03c1\u03b1 \u03b2\u03bf\u03c1\u03b5\u03b9\u03cc\u03c4\u03b5\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03b3\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03c0\u03ad\u03c4\u03c1\u03b9\u03bd\u03b5\u03c2 \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2 \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2 (\u03cc\u03c0\u03c9\u03c2 \u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c4\u03ce\u03c1\u03b1 \u03bc\u03b5 \u03c4\u03b1 \u03b4\u03cd\u03bf \u03c0\u03b1\u03c1\u03ac\u03bb\u03bb\u03b7\u03bb\u03b1 \u03b4\u03af\u03ba\u03c4\u03c5\u03b1 \u03c3\u03c9\u03bb\u03ae\u03bd\u03c9\u03bd). \u03a4\u03b7\u03bd \u03c5\u03c0\u03b5\u03c1\u03c0\u03ae\u03b4\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03bc\u03b9\u03ba\u03c1\u03ae\u03c2 \u03c5\u03c8. \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03ae (\u03c0\u03bf\u03c5 \u03c4\u03ce\u03c1\u03b1 \u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b1\u03bd\u03c4\u03bb\u03af\u03b1) \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1 \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03c3\u03b7 \u03bc\u03b9\u03ba\u03c1\u03cc \u03be\u03cd\u03bb\u03b9\u03bd\u03bf \u03b2\u03b1\u03b3\u03ad\u03bd\u03b9 (\u03b4\u03b9\u03b1\u03ba\u03c1\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03bb\u03af\u03b8\u03b9\u03bd\u03b7\u03c2 \u03ba\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c3\u03b5 \u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03b7 \u03b8\u03ad\u03c3\u03b7, \u03c0\u03b9\u03b8\u03b1\u03bd\u03cc \u03b2\u03ac\u03b8\u03c1\u03bf \u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2).","height":700,"width":465},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u039b\u03b5\u03cc\u03bd\u03c4\u03b9\u03bf\u03c2","owner":"topoguide","x":23.491254568101,"y":37.722964239234,"photo":"Aegina_AgLeondios1","type":9,"zoom_level":15,"id":1502,"hlink_GR":"","hlink_EN":"","description":"","height":627,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u0391\u03b3. \u039b\u03b5\u03bf\u03bd\u03c4\u03af\u03bf\u03c5
\u0391\u03c1\u03c7\u03b1\u03af\u03bf \u03ba\u03b1\u03bc\u03af\u03bd\u03b9 \u03ba\u03b5\u03c1\u03b1\u03bc\u03b9\u03ba\u03ce\u03bd","owner":"topoguide","x":23.490192413331,"y":37.7227775409,"photo":"Aegina_oropedio_AgLeondios_ceramic_oven","type":10,"zoom_level":16,"id":1503,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u0391\u03b3. \u039b\u03b5\u03bf\u03bd\u03c4\u03af\u03bf\u03c5
\u039f\u03c7\u03cd\u03c1\u03c9\u03c3\u03b7","owner":"topoguide","x":23.49160861969,"y":37.72290483527,"photo":"Aegina_oropedio_AgLeondios_tower2","type":9,"zoom_level":17,"id":1504,"hlink_GR":"","hlink_EN":"","description":"\u03a0\u03bf\u03bb\u03c5\u03b3\u03c9\u03bd\u03b9\u03ba\u03ae \u03c4\u03bf\u03b9\u03c7\u03bf\u03b4\u03bf\u03bc\u03af\u03b1 \u03c3\u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5, \u03b1\u03bc\u03b5\u03bb\u03ad\u03c2 \u03c7\u03c4\u03af\u03c3\u03b9\u03bc\u03bf \u03c3\u03c4\u03bf \u03c0\u03ac\u03bd\u03c9 \u03bc\u03ad\u03c1\u03bf\u03c2. \u03a0\u03b9\u03b8\u03b1\u03bd\u03cc\u03bd \u03c0\u03c1\u03cc\u03ba\u03b5\u03b9\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03bf\u03c7\u03cd\u03c1\u03c9\u03c3\u03b7 \u03bc\u03c5\u03ba\u03b7\u03bd\u03b1\u03ca\u03ba\u03ae\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5.","height":700,"width":465},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u0391\u03b3. \u039b\u03b5\u03bf\u03bd\u03c4\u03af\u03bf\u03c5","owner":"topoguide","x":23.491737365723,"y":37.719094395729,"photo":"Aegina_oropedio_AgLeondios","type":0,"zoom_level":14,"id":1505,"hlink_GR":"","hlink_EN":"","description":"\u03a9\u03c1\u03b1\u03af\u03bf \u03ba\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03bc\u03b5 \u03bb\u03b5\u03af\u03c8\u03b1\u03bd\u03b1 \u03b1\u03bd\u03b1\u03bb\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03ce\u03bd \u03c4\u03b5\u03af\u03c7\u03c9\u03bd \u03bc\u03c5\u03ba\u03b7\u03bd\u03b1\u03ca\u03ba\u03ae\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5. \u03a4\u03bf \u03bf\u03c1\u03bf\u03c0\u03ad\u03b4\u03b9\u03bf \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03bf\u03cd\u03c3\u03b5 \u03b1\u03be\u03b9\u03cc\u03bb\u03bf\u03b3\u03b7 \u03b3\u03b5\u03c9\u03c1\u03b3\u03b9\u03ba\u03ae \u03b6\u03ce\u03bd\u03b7 \u03ba\u03b1\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03af\u03c7\u03bd\u03b7 \u03ba\u03b1\u03c4\u03bf\u03af\u03ba\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03c9\u03bd \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03bf\u03c4\u03ae\u03c4\u03c9\u03bd. \u03a3\u03c4\u03bf \u03b2\u03cc\u03c1\u03b5\u03b9\u03bf \u03ac\u03ba\u03c1\u03bf \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03bd \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03b1\u03c0\u03cc 3 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b5\u03c2.","height":400,"width":1793},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0391\u03bd\u03b4\u03c1\u03ad\u03b1\u03c2","owner":"topoguide","x":23.482692956925,"y":37.729948116123,"photo":"Aegina_AgAndreas_Xrysoleondisa","type":9,"zoom_level":15,"id":1506,"hlink_GR":"","hlink_EN":"","description":"","height":544,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2","owner":"topoguide","x":23.498995,"y":37.763747,"photo":"Aegina_PrfIlias","type":9,"zoom_level":16,"id":1507,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a6\u03c5\u03c3\u03c4\u03b9\u03ba\u03b9\u03ad\u03c2 \u03c4\u03bf \u03c6\u03b8\u03b9\u03bd\u03cc\u03c0\u03c9\u03c1\u03bf","owner":"topoguide","x":23.468601,"y":37.747282,"photo":"Aegina_Fistikies","type":1,"zoom_level":15,"id":1508,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":1215},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","owner":"topoguide","x":23.467213,"y":37.748191,"photo":"Aegina_naos_23_467207_37_748181","type":9,"zoom_level":16,"id":1509,"hlink_GR":"","hlink_EN":"","description":"","height":490,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1\u03be\u03b9\u03ac\u03c1\u03c7\u03b7\u03c2","owner":"topoguide","x":23.484999656677,"y":37.737245266798,"photo":"Aegina_Taxiarchis_Xrysoleondisa","type":9,"zoom_level":16,"id":1511,"hlink_GR":"","hlink_EN":"","description":"\u039d\u03b5\u03ba\u03c1\u03bf\u03c4\u03b1\u03c6\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03bf\u03cd \u03a8\u03b1\u03c7\u03bd\u03ae","height":700,"width":560},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0392\u03bb\u03c5\u03c7\u03ac\u03b4\u03b1
\u0386\u03b3\u03b9\u03bf\u03c2 \u0398\u03b5\u03cc\u03b4\u03c9\u03c1\u03bf\u03c2","owner":"topoguide","x":23.537768,"y":37.73059,"photo":"Aegina_Vlichada_AgTheodoros2","type":9,"zoom_level":16,"id":1513,"hlink_GR":"","hlink_EN":"","description":"","height":528,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03bd\u03ac\u03c1\u03b3\u03c5\u03c1\u03bf\u03b9","owner":"topoguide","x":23.496115,"y":37.747604,"photo":"Aegina_AgAnargyroi_23_496068_37_74754","type":9,"zoom_level":16,"id":1514,"hlink_GR":"","hlink_EN":"","description":"","height":621,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0395\u03c5\u03c3\u03c4\u03ac\u03b8\u03b9\u03bf\u03c2","owner":"topoguide","x":23.501839,"y":37.740877,"photo":"Aegina_AgStathis","type":9,"zoom_level":15,"id":1515,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0393\u03b5\u03c9\u03bc\u03bf\u03c1\u03c6\u03ad\u03c2","owner":"topoguide","x":23.483916,"y":37.750938,"photo":"Aegina_geoforms2","type":71,"zoom_level":15,"id":1516,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":1144},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03ba\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc\u03c2 \u03b1\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2
\u03c3\u03c4\u03bf\u03c5\u03c2 \u03a0\u03b1\u03bb\u03b9\u03cc\u03bc\u03c5\u03bb\u03bf\u03c5\u03c2","owner":"topoguide","x":23.497091,"y":37.755879,"photo":"Aegina_windmill1","type":9,"zoom_level":15,"id":1517,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":562},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03b1\u03bd\u03b5\u03bc\u03cc\u03bc\u03c5\u03bb\u03bf\u03c2
\u03c3\u03c4\u03b7 \u03a3\u03b1\u03bb\u03b9\u03b1\u03c1\u03ae","owner":"topoguide","x":23.501623988154,"y":37.762673608762,"photo":"Aegina_windmill2","type":9,"zoom_level":15,"id":1518,"hlink_GR":"","hlink_EN":"","description":"","height":658,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03b5\u03c3\u03b1\u03b3\u03c1\u03cc\u03c2
\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03c0\u03cc\u03c3\u03c4\u03bf\u03bb\u03bf\u03b9","owner":"topoguide","x":23.50451,"y":37.752274,"photo":"Aegina_Mesagros_AgApostoloi","type":9,"zoom_level":15,"id":1519,"hlink_GR":"","hlink_EN":"","description":"","height":662,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bf\u03bd\u03ae \u0391\u03b3. \u0391\u03b9\u03ba\u03b1\u03c4\u03b5\u03c1\u03af\u03bd\u03b7\u03c2","owner":"topoguide","x":23.486668,"y":37.746998,"photo":"Aegina_moni_AgEkaterinis","type":9,"zoom_level":15,"id":1520,"hlink_GR":"","hlink_EN":"","description":"","height":468,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0393\u03b9\u03b1\u03bd\u03bd\u03ac\u03ba\u03b7\u03b4\u03b5\u03c2
\u0386\u03b3\u03b9\u03bf\u03b9 \u0391\u03bd\u03ac\u03c1\u03b3\u03c5\u03c1\u03bf\u03b9","owner":"topoguide","x":23.51626,"y":37.726824,"photo":"Aegina_Gianakides_AgAnargyroi","type":9,"zoom_level":16,"id":1521,"hlink_GR":"","hlink_EN":"","description":"","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0393\u03b9\u03b1\u03bd\u03bd\u03ac\u03ba\u03b7\u03b4\u03b5\u03c2","owner":"topoguide","x":23.515826,"y":37.726548,"photo":"Aegina_Gianakides","type":9,"zoom_level":15,"id":1522,"hlink_GR":"","hlink_EN":"","description":"","height":400,"width":922},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c. \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2
\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03bd\u03b5\u03c1\u03bf\u03cd","owner":"topoguide","x":23.486748456955,"y":37.7272242279,"photo":"Aegina_Xrysoleontisa_aquaduc2","type":9,"zoom_level":17,"id":1523,"hlink_GR":"","hlink_EN":"","description":"\u0388\u03bd\u03b1 \u03bc\u03ad\u03c1\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03bd\u03b5\u03c1\u03bf\u03cd \u03c0\u03bf\u03c5 \u03ad\u03c6\u03c4\u03b1\u03bd\u03b5 \u03b1\u03c0\u03cc \u03c4\u03bf \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1 \u03c5\u03b4\u03b1\u03c4\u03bf\u03c3\u03c5\u03bb\u03bb\u03b5\u03ba\u03c4\u03ce\u03bd, \u03bf\u03b4\u03b7\u03b3\u03b5\u03af\u03c4\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1 \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03ba\u03b1\u03bb\u03bf\u03c7\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9, \u03ba\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03bc\u03ac\u03bd\u03c4\u03c1\u03b1 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03bd\u03ae\u03c2, \u03c3\u03b5 \u03bc\u03af\u03b1 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b4\u03af\u03b4\u03c5\u03bc\u03b7 \u03c3\u03c4\u03ad\u03c1\u03bd\u03b1.","height":700,"width":465},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c. \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2
\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03bd\u03b5\u03c1\u03bf\u03cd","owner":"topoguide","x":23.486501693726,"y":37.726986625423,"photo":"Aegina_Xrysoleontisa_aquaduc11","type":9,"zoom_level":16,"id":1524,"hlink_GR":"","hlink_EN":"","description":"\u0388\u03bd\u03b1 \u03bc\u03b1\u03ba\u03c1\u03cd \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9 \u03c0\u03bf\u03c5 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03b1\u03c0\u03bf\u03c1\u03c1\u03bf\u03bf\u03ad\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03bb\u03b1\u03b3\u03b9\u03ac\u03c2, \u03c0\u03b5\u03c1\u03bd\u03ac \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03b1\u03c0\u03bb\u03cc \u03c6\u03c1\u03b5\u03ac\u03c4\u03b9\u03bf \u03ba\u03b1\u03b8\u03af\u03b6\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03bf\u03b9\u03c1\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03cd\u03bf: \u03bf \u03ad\u03bd\u03b1\u03c2 \u03ba\u03bb\u03ac\u03b4\u03bf\u03c2 \u03bf\u03b4\u03b7\u03b3\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03b4\u03af\u03b4\u03c5\u03bc\u03b7 \u03c3\u03c4\u03ad\u03c1\u03bd\u03b1 \u03ad\u03be\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03bf\u03bd\u03b1\u03c3\u03c4\u03ae\u03c1\u03b9, \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03bf\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf \u03bc\u03b9\u03ba\u03c1\u03cc \u03c3\u03c4\u03b1\u03cd\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c4\u03bf \u03c5\u03c0\u03b1\u03af\u03b8\u03c1\u03b9\u03bf \u03c0\u03bb\u03c5\u03c3\u03c4\u03b1\u03c1\u03b9\u03cc.","height":700,"width":465},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03c5\u03bb\u03b9\u03bd\u03b4\u03c1\u03ac\u03c2
\u03a0\u03c1\u03c6. \u0397\u03bb\u03af\u03b1\u03c2","owner":"topoguide","x":23.517727,"y":37.71779,"photo":"Aegina_Kylindras_PrfIlias","type":9,"zoom_level":15,"id":1525,"hlink_GR":"","hlink_EN":"","description":"","height":673,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03c5\u03bb\u03b9\u03bd\u03b4\u03c1\u03ac\u03c2
\u03a3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03a4\u03b6\u03b9\u03ce\u03ba\u03b1","owner":"topoguide","x":23.515737771987,"y":37.717150911222,"photo":"Aegina_Kylindras_souvala1","type":0,"zoom_level":15,"id":1526,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b5\u03b3\u03ac\u03bb\u03b7 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03c0\u03bf\u03c5 \u03ba\u03c1\u03b1\u03c4\u03ac\u03b5\u03b9 \u03bd\u03b5\u03c1\u03cc \u03cc\u03bb\u03bf \u03c4\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf.","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c. \u03a7\u03c1\u03c5\u03c3\u03bf\u03bb\u03b5\u03cc\u03bd\u03c4\u03b9\u03c3\u03c3\u03b1\u03c2
\u039f \u03c0\u03cd\u03c1\u03b3\u03bf\u03c2","owner":"topoguide","x":23.486694812775,"y":37.727546687186,"photo":"Aegina_Xrysoleontisa_tower","type":9,"zoom_level":17,"id":1527,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":325},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03bd\u03b5\u03c1\u03bf\u03cd
\u03a5\u03b4\u03c1\u03bf\u03bd\u03bf\u03bc\u03b5\u03af\u03bf","owner":"topoguide","x":23.434134,"y":37.750056,"photo":"Aegina_Ydronomeio_1923","type":9,"zoom_level":17,"id":1528,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03c5\u03b4\u03c1\u03bf\u03bd\u03bf\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 1923","height":1053,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae","owner":"topoguide","x":23.434622,"y":37.750162,"photo":"Aegina_AgParaskevi","type":9,"zoom_level":16,"id":1529,"hlink_GR":"","hlink_EN":"","description":"","height":606,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u038c\u03bc\u03bf\u03c1\u03c6\u03b7 \u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1","owner":"topoguide","x":23.445538997651,"y":37.750450432246,"photo":"Aegina_Omorfi_Ekklisia2","type":10,"zoom_level":15,"id":1530,"hlink_GR":"","hlink_EN":"http:\/\/www.aeginagreece.com\/magazine\/portfolio\/omorfi-ekklisia-byzantine-church\/","description":"\u0391\u03c6\u03b9\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u03c3\u03c4\u03bf\u03c5\u03c2 \u0391\u03b3\u03af\u03bf\u03c5\u03c2 \u0398\u03b5\u03bf\u03b4\u03ce\u03c1\u03bf\u03c5\u03c2, \u03b7 \u038c\u03bc\u03bf\u03c1\u03c6\u03b7 \u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c7\u03c1\u03bf\u03bd\u03bf\u03bb\u03bf\u03b3\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03cd\u03c3\u03c4\u03b5\u03c1\u03bf 12\u03bf \u03b1\u03b9. (\u03b1\u03bd\u03b1\u03ba\u03b1\u03b9\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c4\u03bf 1282). \u0395\u03af\u03bd\u03b1\u03b9 \u03bc\u03bf\u03bd\u03cc\u03ba\u03bb\u03b9\u03c4\u03b7 \u03b2\u03b1\u03c3\u03b9\u03bb\u03b9\u03ba\u03ae \u03c7\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03bc\u03b5 \u03ba\u03b1\u03bb\u03ac \u03bb\u03b1\u03be\u03b5\u03bc\u03ad\u03bd\u03bf \u03bd\u03c4\u03cc\u03c0\u03b9\u03bf \u03c0\u03bf\u03c1\u03cc\u03bb\u03b9\u03b8\u03bf. \u03a3\u03c4\u03bf \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc \u03c4\u03b7\u03c2 \u03c3\u03ce\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03ba\u03b1\u03bb\u03ac \u03b4\u03b9\u03b1\u03c4\u03b7\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c4\u03bf\u03b9\u03c7\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2, \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03c5\u03bd 14 \u03c0\u03b1\u03c1\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc \u03ba\u03cd\u03ba\u03bb\u03bf. \u0399\u03b4\u03b9\u03b1\u03af\u03c4\u03b5\u03c1\u03b7 \u03b5\u03bd\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03ba\u03b1\u03bb\u03b5\u03af \u03b7 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03c4\u03b7\u03c2 \u0393\u03ad\u03bd\u03bd\u03b7\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u039a\u03c5\u03c1\u03af\u03bf\u03c5 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03b1 \u03c3\u03c4\u03b7 \u03c3\u03c4\u03ac\u03c3\u03b7 \u03c4\u03b7\u03c2 \u0393\u03b1\u03bb\u03b1\u03ba\u03c4\u03bf\u03c4\u03c1\u03bf\u03c6\u03bf\u03cd\u03c3\u03b1\u03c2. \u0398\u03b5\u03c9\u03c1\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03b5\u03bc\u03b5\u03bb\u03b9\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u039b\u03ad\u03bf\u03bd\u03c4\u03b1 \u0396\u03c5\u03b3\u03bf\u03bc\u03b1\u03bb\u03ac, \u03bc\u03ad\u03bb\u03bf\u03c2 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7\u03c2 \u03b2\u03c5\u03b6\u03b1\u03bd\u03c4\u03b9\u03bd\u03ae\u03c2 \u03bf\u03b9\u03ba\u03bf\u03b3\u03ad\u03bd\u03b5\u03b9\u03b1\u03c2.","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03bf\u03bd\u03c4\u03cc\u03c2
\u0396\u03c9\u03ae\u03bb\u03b1\u03c4\u03b7 \u03b1\u03bd\u03c4\u03bb\u03af\u03b1 \u03bd\u03b5\u03c1\u03bf\u03cd","owner":"topoguide","x":23.480782,"y":37.744912,"photo":"Aegina_Kondos_Maganopigado","type":9,"zoom_level":16,"id":1531,"hlink_GR":"","hlink_EN":"","description":"\u0396\u03c9\u03ae\u03bb\u03b1\u03c4\u03bf\u03c2 \u03bc\u03b7\u03c7\u03b1\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b1\u03bd\u03cd\u03c8\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03bd\u03b5\u03c1\u03bf\u03cd \u03bc\u03b5 \u03ba\u03bf\u03c5\u03b2\u03ac\u03b4\u03b5\u03c2, \u03c4\u03b7\u03c2 \u03c0\u03b9\u03cc \u03c3\u03c5\u03bd\u03b7\u03b8\u03b9\u03c3\u03bc\u03ad\u03c3\u03bd\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03c0\u03bf\u03c5 \u03b4\u03b9\u03b1\u03b4\u03cc\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf\u03bd \u03cd\u03c3\u03c4\u03b5\u03c1\u03bf 19\u03bf \u03ba\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf \u03bc\u03b9\u03c3\u03cc \u03c4\u03bf\u03c5 20\u03bf\u03c5 \u03b1\u03b9. \u039a\u03cd\u03c1\u03b9\u03bf\u03c2 \u03c4\u03cc\u03c0\u03bf\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03ae\u03c2 \u03c4\u03bf\u03c5\u03c2, \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03bb\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03b1 \u03c4\u03b7\u03c2 \u0395\u03c1\u03bc\u03bf\u03cd\u03c0\u03bf\u03bb\u03b7\u03c2, \u03c3\u03c4\u03b7 \u03a3\u03cd\u03c1\u03bf.","height":465,"width":700},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03bd\u03b9\u03c4\u03c3\u03ad\u03bf","owner":"topoguide","x":23.504633,"y":37.706533,"photo":"Aigina_Anitseou","type":0,"zoom_level":13,"id":2236,"hlink_GR":"","hlink_EN":"","description":"","height":468,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0391\u03b9\u03c9\u03bd\u03cc\u03b2\u03b9\u03bf \u03ba\u03ad\u03b4\u03c1\u03bf","owner":"topoguide","x":23.487889,"y":37.726173,"photo":"Aigina_Chrisospiliotisa_kedros","type":1,"zoom_level":15,"id":2237,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c4\u03bf\u03c5 \u03be\u03b5\u03bd\u03ce\u03bd\u03b1 \u03c4\u03bf\u03c5 \u0395\u03bb\u03bb\u03b1\u03bd\u03af\u03bf\u03c5 \u0394\u03b9\u03cc\u03c2","owner":"topoguide","x":23.497177,"y":37.709334,"photo":"Aigina_Ellanios_Dias1","type":0,"zoom_level":13,"id":2238,"hlink_GR":"","hlink_EN":"","description":"","height":384,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1 \u03c8\u03b1\u03c1\u03bf\u03ba\u03ac\u03ca\u03ba\u03b1","owner":"topoguide","x":23.428995,"y":37.745751,"photo":"Aigina_Limani1","type":0,"zoom_level":15,"id":2239,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03ba\u03bf\u03b9\u03bd\u03cc \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03cc \u03ba\u03b1\u03b2\u03bf\u03cd\u03c1\u03b9","owner":"topoguide","x":23.430497,"y":37.767182,"photo":"Aigina_Limani2","type":8,"zoom_level":15,"id":2240,"hlink_GR":"","hlink_EN":"","description":"","height":618,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03a0\u03b1\u03bd\u03b1\u03b3\u03af\u03c4\u03c3\u03b1
\u039c\u03b7\u03c4\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7 \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","owner":"topoguide","x":23.429773,"y":37.74413,"photo":"Aigina_mitropoli","type":9,"zoom_level":15,"id":2241,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1 \u03bb\u03b1\u03c4\u03bf\u03bc\u03b5\u03af\u03b1 \u03c0\u03ad\u03c4\u03c1\u03b1\u03c2 \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","owner":"topoguide","x":23.457856,"y":37.735523,"photo":"Aigina_Skoteini_latomeia_petras","type":9,"zoom_level":15,"id":2242,"hlink_GR":"","hlink_EN":"","description":"\u039b\u03b1\u03c4\u03bf\u03bc\u03b5\u03af\u03b1 \u03c0\u03ad\u03c4\u03c1\u03b1\u03c2 \u03c3\u03c4\u03b7 \u03a3\u03ba\u03bf\u03c4\u03b5\u03b9\u03bd\u03ae, \u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03c4\u03b7\u03bd \u03c0\u03cc\u03bb\u03b7 \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2, \u03c0\u03bf\u03c5 \u03bb\u03b5\u03b9\u03c4\u03bf\u03cd\u03c1\u03b3\u03b7\u03c3\u03b1\u03bd \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5\u03c2. \u039f\u03b9 \u03c3\u03c9\u03c1\u03bf\u03af \u03c4\u03b7\u03c2 \u03bb\u03b1\u03c4\u03cd\u03c0\u03b7\u03c2 \u03bc\u03b1\u03c1\u03c4\u03c5\u03c1\u03bf\u03cd\u03bd \u03cc\u03c4\u03b9 \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b4\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03bf\u03c1\u03b3\u03b1\u03bd\u03c9\u03bc\u03ad\u03bd\u03b7, \u03ba\u03b1\u03b8\u03cc\u03c4\u03b9 \u03bf\u03b9 \u03c0\u03b5\u03c4\u03c1\u03ac\u03b4\u03b5\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03c7\u03b1\u03bd \u03c4\u03c1\u03cc\u03c0\u03bf \u03bd\u03b1 \u03b1\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03cd\u03bd\u03bf\u03c5\u03bd \u03c4\u03b1 \u03c5\u03bb\u03b9\u03ba\u03ac \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2.","height":400,"width":1194},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03c3\u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0391\u03bd\u03b4\u03c1\u03ad\u03b1","owner":"topoguide","x":23.48164,"y":37.729629,"photo":"Aigina_souvala_AgAndreas","type":0,"zoom_level":15,"id":2243,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03a3\u03bf\u03c6\u03b9\u03ba\u03af\u03c4\u03b7-\u039a\u03bf\u03c5\u03c4\u03c3\u03bf\u03cd\u03ba\u03bf\u03c5","owner":"topoguide","x":23.517999,"y":37.718578,"photo":"Aigina_Kylindras_souvala_Sofikiti_Koutsoukou1","type":0,"zoom_level":16,"id":2244,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03a3\u03bf\u03c6\u03b9\u03ba\u03af\u03c4\u03b7-\u039a\u03bf\u03c5\u03c4\u03c3\u03bf\u03cd\u03ba\u03bf\u03c5","owner":"topoguide","x":23.518162,"y":37.718543,"photo":"Aigina_Kylindras_souvala_Sofikiti_Koutsoukou2","type":0,"zoom_level":17,"id":2245,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2","owner":"topoguide","x":23.480322,"y":37.695022,"photo":"Aigina_Sfendouri_AgGeorgios","type":0,"zoom_level":15,"id":2248,"hlink_GR":"","hlink_EN":"","description":"","height":580,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9
\u0397 \u03c0\u03b7\u03b3\u03ae \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf","owner":"topoguide","x":23.480156,"y":37.695009,"photo":"Aigina_Sfendouri_AgGeorgios_nero21","type":0,"zoom_level":16,"id":2249,"hlink_GR":"","hlink_EN":"","description":"\u0397 \u03c3\u03c4\u03b1\u03b3\u03bf\u03bd\u03bf\u03c1\u03c1\u03bf\u03ae \u03c0\u03bf\u03c5 \u03b1\u03c0\u03bf\u03c3\u03c4\u03c1\u03b1\u03b3\u03b3\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf \u03c5\u03b3\u03c1\u03cc \u03b5\u03b4\u03b1\u03c6\u03b9\u03ba\u03cc \u03c3\u03c4\u03c1\u03ce\u03bc\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03bd\u03c4\u03c1\u03ce\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7 \u03bc\u03b9\u03ba\u03c1\u03ae \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3\u03af\u03bf\u03c5 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03bf\u03c5. \u03a4\u03bf \u03c6\u03b1\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03cc\u03c3\u03bf \u03c3\u03c0\u03ac\u03bd\u03b9\u03bf \u03c3\u03c4\u03b7\u03bd \u0391\u03af\u03b3\u03b9\u03bd\u03b1, \u03c0\u03bf\u03c5 \u03bf\u03b9 \u03bd\u03c4\u03cc\u03c0\u03b9\u03bf\u03b9 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03bf\u03c5\u03bd \u03c4\u03b7 \u03bc\u03b9\u03ba\u03c1\u03ae \u03b1\u03c5\u03c4\u03ae \u03b1\u03bd\u03ac\u03b2\u03bb\u03c5\u03c3\u03b7 \u03c9\u03c2 \"\u03a0\u03b7\u03b3\u03ae \u03c4\u03bf\u03c5 \u039a\u03b1\u03bb\u03cc\u03b3\u03b5\u03c1\u03bf\u03c5\".","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u0391\u03c7\u03bb\u03ac\u03b4\u03b1","owner":"topoguide","x":23.484957,"y":37.693912,"photo":"Aigina_souvala_Achlada1","type":0,"zoom_level":13,"id":2250,"hlink_GR":"","hlink_EN":"","description":"\u039c\u03b9\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b5\u03c2 \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2, \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c4\u03bf\u03c5 \u038c\u03c1\u03bf\u03c5\u03c2.","height":400,"width":1047},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03b5\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03bf \u03bb\u03b9\u03bc\u03b1\u03bd\u03ac\u03ba\u03b9 \u03c3\u03c4\u03bf\u03c5\u03c2 \u039a\u03ae\u03c0\u03bf\u03c5\u03c2","owner":"topoguide","x":23.512498,"y":37.689517,"photo":"Aigina_Kipoi1","type":0,"zoom_level":14,"id":2358,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03cc \u03b5\u03bb\u03b1\u03b9\u03bf\u03c4\u03c1\u03b9\u03b2\u03b5\u03af\u03bf \u03c3\u03c4\u03bf\u03c5\u03c2 \u039a\u03ae\u03c0\u03bf\u03c5\u03c2","owner":"topoguide","x":23.508285,"y":37.688821,"photo":"Aigina_Kipoi_eleotrivio","type":9,"zoom_level":15,"id":2359,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":532},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0394\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ae \u03bc\u03b5 \u03bf\u03bc\u03b2\u03c1\u03bf\u03c3\u03c5\u03bb\u03bb\u03ad\u03ba\u03c4\u03b7 \u03c3\u03c4\u03bf\u03c5\u03c2 \u0392\u03bb\u03ac\u03c7\u03b7\u03b4\u03b5\u03c2","owner":"topoguide","x":23.509160995484,"y":37.698299012537,"photo":"Aigina_Vlachidhes_ydrosylektis","type":9,"zoom_level":15,"id":2360,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u039b\u03b9\u03b3\u03bf\u03bd\u03ad\u03b1, \u03b1\u03bd\u03ac\u03bc\u03b5\u03c3\u03b1 \u03a3\u03c6\u03b5\u03bd\u03c4\u03bf\u03cd\u03c1\u03b9 \u03ba\u03b1\u03b9 \u0392\u03bb\u03ac\u03c7\u03b7\u03b4\u03b5\u03c2","owner":"topoguide","x":23.497799,"y":37.692968,"photo":"Aigina_Sfedouri_Lighonea","type":0,"zoom_level":15,"id":2361,"hlink_GR":"","hlink_EN":"","description":"","height":665,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03a0\u03c1\u03bf\u03c6\u03ae\u03c4\u03b7\u03c2 \u0397\u03bb\u03af\u03b1\u03c2 \u0392\u03b1\u03b3\u03af\u03b1\u03c2","owner":"topoguide","x":23.538537,"y":37.766333,"photo":"Aigina_Vaghia_PrfIlias","type":9,"zoom_level":15,"id":2362,"hlink_GR":"","hlink_EN":"","description":"","height":572,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03b5\u03b3\u03ac\u03bb\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03c0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c3\u03c4\u03bf \u039c\u03b5\u03c3\u03b1\u03b3\u03c1\u03cc","owner":"topoguide","x":23.521224,"y":37.756584,"photo":"Aigina_Mesagros_megalo_pigadi1","type":9,"zoom_level":15,"id":2363,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u0391\u03b3\u03af\u03b1 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03c3\u03c4\u03bf\u03bd \u03a4\u03bf\u03cd\u03c1\u03bb\u03bf","owner":"topoguide","x":23.537351,"y":37.769917,"photo":"Aigina_Vaghia_AgParaskevi","type":9,"zoom_level":16,"id":2366,"hlink_GR":"","hlink_EN":"","description":"","height":532,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a1\u03b7\u03c4\u03b9\u03bd\u03bf\u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03bc\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03cc \u03c4\u03c1\u03cc\u03c0\u03bf","owner":"topoguide","x":23.524482,"y":37.754635,"photo":"Aigina_Mesagros_retsini1","type":1,"zoom_level":16,"id":2367,"hlink_GR":"","hlink_EN":"","description":"","height":700,"width":593},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03c0\u03af\u03c4\u03b9 \u03c3\u03c4\u03b7\u03bd \u0391\u03af\u03b3\u03b9\u03bd\u03b1","owner":"AnaDigit","x":23.425167,"y":37.751377,"photo":"Aegina_architecture_11","type":9,"zoom_level":16,"id":2903,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03a7\u03b1\u03bb\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03b2\u03bf\u03c5\u03bd\u03cc, \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae \u03b7\u03c6\u03b1\u03b9\u03c3\u03c4\u03b5\u03b9\u03bf\u03b3\u03b5\u03bd\u03ae\u03c2 \u03bc\u03bf\u03c1\u03bf\u03c6\u03bf\u03bb\u03bf\u03b3\u03af\u03b1","owner":"AnaDigit","x":23.492316,"y":37.749002,"photo":"Aegina_Paleochora_ChalasmenoVouno_21","type":71,"zoom_level":14,"id":2905,"hlink_GR":"","hlink_EN":"","description":"","height":487,"width":1200},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf\u03c0\u03af\u03b1 \u03c4\u03b7\u03c2 \u03b8\u03ac\u03bb\u03b1\u03c3\u03c3\u03b1\u03c2","owner":"AnaDigit","x":23.424378,"y":37.766052,"photo":"Aegina_seascapes_11","type":0,"zoom_level":14,"id":2906,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":779},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03b8\u03b5\u03c1\u03bc\u03ac \u039b\u03bf\u03c5\u03c4\u03c1\u03ac \u03a3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1\u03c2","owner":"AnaDigit","x":23.491722,"y":37.771959,"photo":"Aegina_Souvala_therma_loutra1","type":72,"zoom_level":14,"id":2907,"hlink_GR":"","hlink_EN":"","description":"\u03a4\u03bf \u03bd\u03b5\u03c1\u03cc \u03ad\u03c7\u03b5\u03b9 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03c7\u03b1\u03bc\u03b7\u03bb\u03ae \u03b8\u03b5\u03c1\u03bc\u03bf\u03ba\u03c1\u03b1\u03c3\u03af\u03b1, \u03c0\u03bf\u03c5 \u03b4\u03b5\u03bd \u03be\u03b5\u03c0\u03b5\u03c1\u03bd\u03ac \u03c4\u03bf\u03c5\u03c2 25 \u03b2\u03b1\u03b8\u03bc\u03bf\u03cd\u03c2 C.","height":467,"width":1200},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd-\u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u03c0\u03b9\u03bd\u03b1\u03ba\u03af\u03b4\u03b1","owner":"AnaDigit","x":23.426622,"y":37.746144,"photo":"Aegina_Monopatia_Politismou_Simansi_11","type":450,"zoom_level":14,"id":2908,"hlink_GR":"","hlink_EN":"","description":"","height":853,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd-\u03c0\u03b9\u03bd\u03b1\u03ba\u03af\u03b4\u03b1 \u03c0\u03c1\u03bf\u03c3\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03c3\u03bc\u03bf\u03cd","owner":"AnaDigit","x":23.480575,"y":37.717798,"photo":"Aegina_Monopatia_Politismou_Simansi_21","type":450,"zoom_level":16,"id":2909,"hlink_GR":"","hlink_EN":"","description":"","height":416,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bf\u03bd\u03bf\u03c0\u03ac\u03c4\u03b9\u03b1 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd-\u03c0\u03b9\u03bd\u03b1\u03ba\u03af\u03b4\u03b1 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2 3","owner":"AnaDigit","x":23.463439,"y":37.714742,"photo":"Aegina_Monopatia_Politismou_Simansi_31","type":450,"zoom_level":15,"id":2910,"hlink_GR":"","hlink_EN":"","description":"","height":719,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03b5\u03c3\u03b1\u03b3\u03c1\u03cc\u03c2, \u03c4\u03bf \u03c3\u03c0\u03af\u03c4\u03b9 \u03c4\u03bf\u03c5 \u03a1\u03bf\u03b4\u03ac\u03ba\u03b7","owner":"AnaDigit","x":23.513485,"y":37.74577,"photo":"Aegina_Spiti_tou_Rodaki_122","type":9,"zoom_level":13,"id":2911,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039c\u03bf\u03bd\u03ae \u0391\u03b3\u03af\u03bf\u03c5 \u039c\u03b7\u03bd\u03ac","owner":"AnaDigit","x":23.530226,"y":37.750324,"photo":"Aegina_moni_AgMina1","type":9,"zoom_level":13,"id":2912,"hlink_GR":"","hlink_EN":"","description":"","height":656,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039d\u03b1\u03cc\u03c2 \u0391\u03b3\u03af\u03bf\u03c5 \u039d\u03b9\u03ba\u03bf\u03bb\u03ac\u03bf\u03c5, \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u0391\u03b3\u03af\u03b1 \u039c\u03b1\u03c1\u03af\u03bd\u03b1","owner":"AnaDigit","x":23.529706,"y":37.74486,"photo":"Aegina_AgNikolaos_se_AgMarina1","type":9,"zoom_level":16,"id":2913,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":758},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0395\u03bd\u03bf\u03c1\u03b9\u03b1\u03ba\u03cc\u03c2 \u03bd\u03b1\u03cc\u03c2 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u039c\u03b1\u03c1\u03af\u03bd\u03b1\u03c2","owner":"AnaDigit","x":23.534027,"y":37.744655,"photo":"Aegina_AgMarina_31","type":9,"zoom_level":16,"id":2914,"hlink_GR":"","hlink_EN":"","description":"","height":606,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03cc\u03c1\u03bc\u03bf\u03c2 \u03c4\u03b7\u03c2 \u0391\u03b3\u03af\u03b1\u03c2 \u039c\u03b1\u03c1\u03af\u03bd\u03b1\u03c2","owner":"AnaDigit","x":23.536482,"y":37.744036,"photo":"Aegina_AgMarina_21","type":0,"zoom_level":13,"id":2915,"hlink_GR":"","hlink_EN":"","description":"","height":463,"width":1200},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03bb\u03b5\u03bb\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c2 \u03bf\u03b9\u03ba\u03b9\u03c3\u03bc\u03cc\u03c2 \u039a\u03b1\u03bd\u03ac\u03ba\u03b7\u03b4\u03b5\u03c2","owner":"AnaDigit","x":23.518064,"y":37.702909,"photo":"Aegina_Kanakides_21","type":9,"zoom_level":13,"id":2916,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03c0\u03b1\u03bb\u03b9\u03cc \u03c0\u03b1\u03c1\u03b1\u03c4\u03b7\u03c1\u03b7\u03c4\u03ae\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 \u0391\u03b3. \u0391\u03bd\u03c4\u03c9\u03bd\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.518861,"y":37.694179,"photo":"Aegina_AgAntonios_31","type":9,"zoom_level":13,"id":2917,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03b9 \u03b4\u03b5\u03be\u03b1\u03bc\u03b5\u03bd\u03ad\u03c2 \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03c4\u03b7\u03c1\u03b7\u03c4\u03ae\u03c1\u03b9\u03bf \u03c4\u03bf\u03c5 \u0391\u03b3. \u0391\u03bd\u03c4\u03c9\u03bd\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.518521,"y":37.69413,"photo":"Aegina_AgAntonios_51","type":9,"zoom_level":15,"id":2918,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":650},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c3\u03bf\u03c5\u03b2\u03ac\u03bb\u03b1 \u03c4\u03bf\u03c5 \u0391\u03b3. \u0391\u03bd\u03c4\u03c9\u03bd\u03af\u03bf\u03c5","owner":"AnaDigit","x":23.51727,"y":37.69518,"photo":"Aegina_AgAntonios_61","type":0,"zoom_level":15,"id":2919,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03ba\u03cc\u03bb\u03c0\u03bf\u03c2 \u03c4\u03b7\u03c2 \u0392\u03bb\u03c5\u03c7\u03ac\u03b4\u03b1\u03c2","owner":"AnaDigit","x":23.539243,"y":37.732004,"photo":"Aegina_Vlichada01","type":0,"zoom_level":14,"id":2920,"hlink_GR":"","hlink_EN":"","description":"","height":486,"width":1000},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf\u03c2 \u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc\u03c2","owner":"topoguide","x":23.488535,"y":37.751492,"photo":"Aegina_Paliachora_AgGeorgios_Katholikos0","type":9,"zoom_level":16,"id":2921,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":656},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b1\u03b9\u03bf\u03c7\u03ce\u03c1\u03b1, \u0391\u03b3\u03af\u03b1 \u0392\u03b1\u03c1\u03b2\u03ac\u03c1\u03b1","owner":"AnaDigit","x":23.488407,"y":37.751512,"photo":"Aegina_Paleochora_AgVarvara_11","type":9,"zoom_level":16,"id":2922,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b9\u03bf\u03bd\u03cd\u03c3\u03b9\u03bf\u03c2","owner":"AnaDigit","x":23.4325015,"y":37.747042,"photo":"Aegina_AgDionysios1","type":9,"zoom_level":16,"id":2923,"hlink_GR":"","hlink_EN":"","description":"","height":675,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03be\u03b5\u03bd\u03bf\u03b4\u03bf\u03c7\u03b5\u03af\u03bf \"\u0391\u03b9\u03b3\u03b9\u03bd\u03ae\u03c4\u03b9\u03ba\u03bf \u0391\u03c1\u03c7\u03bf\u03bd\u03c4\u03b9\u03ba\u03cc\" \u03ba\u03b1\u03b9 \u03bf \u0386\u03b3\u03b9\u03bf\u03c2 \u039d\u03b9\u03ba\u03cc\u03bb\u03b1\u03bf\u03c2","owner":"AnaDigit","x":23.42946451,"y":37.74737936,"photo":"Aegina_AgNikolaos_ArchodikoHotel1","type":9,"zoom_level":17,"id":2924,"hlink_GR":"","hlink_EN":"","description":"","height":757,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03ba\u03b9\u03bd\u03b7\u03bc\u03b1\u03c4\u03bf\u03b3\u03c1\u03ac\u03c6\u03bf\u03c2 \"\u03a4\u03b9\u03c4\u03af\u03bd\u03b1\"","owner":"AnaDigit","x":23.42926603,"y":37.74705274,"photo":"Aegina_architectrure_21","type":9,"zoom_level":17,"id":2925,"hlink_GR":"","hlink_EN":"","description":"","height":458,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bc\u03ae\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c4\u03b5\u03af\u03c7\u03bf\u03c5\u03c2 \u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b1\u03af\u03b1\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","owner":"AnaDigit","x":23.43223791,"y":37.74611759,"photo":"Aegina_archaelogical_21","type":10,"zoom_level":16,"id":2926,"hlink_GR":"","hlink_EN":"","description":"","height":693,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03b1\u03bc\u03b9\u03b1\u03bc\u03af\u03b4\u03b9 (Hemidactylus turcicus)","owner":"AnaDigit","x":23.48292315,"y":37.70170928,"photo":"Hemidactylus turcicus51","type":8,"zoom_level":14,"id":2927,"hlink_GR":"","hlink_EN":"","description":"","height":606,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0397 \u03c8\u03b1\u03c1\u03b1\u03b3\u03bf\u03c1\u03ac \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","owner":"AnaDigit","x":23.429465,"y":37.745523,"photo":"Aegina_Psaragora_11","type":9,"zoom_level":16,"id":2928,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03ac \u03ba\u03b1\u03ca\u03ba\u03b9\u03b1-\u03bc\u03b1\u03bd\u03ac\u03b2\u03b9\u03ba\u03b1 \u03c4\u03b7\u03c2 \u0391\u03af\u03b3\u03b9\u03bd\u03b1\u03c2","owner":"AnaDigit","x":23.429358,"y":37.745145,"photo":"Aegina_kaiki_manaviko_11","type":9,"zoom_level":16,"id":2929,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2","owner":"AnaDigit","x":23.468715,"y":37.750331,"photo":"Aegina_AgDimitrios1","type":9,"zoom_level":15,"id":2930,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0386\u03b3\u03b9\u03bf\u03c2 \u0399\u03c9\u03ac\u03bd\u03bd\u03b7\u03c2","owner":"AnaDigit","x":23.513918,"y":37.709182,"photo":"Aegina_Anitseou_AgIoanis1","type":9,"zoom_level":15,"id":2931,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a3\u03c0\u03af\u03c4\u03b9 \u03c3\u03c4\u03bf\u03bd \u0386\u03b3\u03b9\u03bf \u0393\u03b5\u03ce\u03c1\u03b3\u03b9\u03bf","owner":"AnaDigit","x":23.464696,"y":37.74977,"photo":"Aegina_architecture_51","type":9,"zoom_level":15,"id":2932,"hlink_GR":"","hlink_EN":"","description":"","height":597,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b1\u03bb\u03b9\u03ac \u03b1\u03b3\u03c1\u03bf\u03b9\u03ba\u03af\u03b1 \u03c3\u03c4\u03bf\u03c5\u03c2 \u0391\u03b3\u03af\u03bf\u03c5\u03c2 \u0391\u03c3\u03c9\u03bc\u03ac\u03c4\u03bf\u03c5\u03c2","owner":"AnaDigit","x":23.452265,"y":37.750735,"photo":"Aegina_architecture_61","type":9,"zoom_level":15,"id":2933,"hlink_GR":"","hlink_EN":"","description":"","height":647,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039d\u03b5\u03bf-\u03ba\u03bb\u03b1\u03c3\u03b9\u03ba\u03ae \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ae \u03c3\u03c4\u03b7\u03bd \u03c0\u03cc\u03bb\u03b7","owner":"AnaDigit","x":23.427698,"y":37.746391,"photo":"Aegina_arcitecture_41","type":9,"zoom_level":17,"id":2934,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":567},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u0395\u03ba\u03ba\u03bb\u03b7\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u039a\u03c5\u03c8\u03ad\u03bb\u03b7","owner":"AnaDigit","x":23.464728,"y":37.752702,"photo":"Aegina_chu_x1","type":9,"zoom_level":16,"id":2935,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a0\u03b7\u03b3\u03ac\u03b4\u03b9 \u03c0\u03ac\u03bd\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u0395\u03bb\u03b1\u03b9\u03ce\u03bd\u03b1","owner":"AnaDigit","x":23.478008,"y":37.712361,"photo":"Aegina_Eleonas_pigadi1","type":0,"zoom_level":16,"id":2936,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":625},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039a\u03bf\u03af\u03bc\u03b7\u03c3\u03b7 \u0398\u03b5\u03bf\u03c4\u03cc\u03ba\u03bf\u03c5","owner":"AnaDigit","x":23.431255,"y":37.745918,"photo":"Aegina_Kimisi_Theotokou1","type":9,"zoom_level":16,"id":2937,"hlink_GR":"","hlink_EN":"","description":"","height":574,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u0395\u03bb\u03b5\u03c5\u03b8\u03ad\u03c1\u03b9\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03bf 2\u03bf \u03c0\u03bb\u03ac\u03bd\u03bf \u03bf \u0386\u03b3\u03b9\u03bf\u03c2 \u0394\u03b7\u03bc\u03ae\u03c4\u03c1\u03b9\u03bf\u03c2","owner":"AnaDigit","x":23.489711,"y":37.750783,"photo":"Aegina_Paleochora_AgEleftherios_AgDimitrios1","type":9,"zoom_level":15,"id":2938,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u039a\u03ae\u03c1\u03c5\u03ba\u03bf\u03c2","owner":"AnaDigit","x":23.48883,"y":37.75191,"photo":"Aegina_Paleochora_AgKyrikos1","type":9,"zoom_level":16,"id":2939,"hlink_GR":"","hlink_EN":"","description":"","height":554,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u0386\u03b3\u03b9\u03bf\u03c2 \u03a3\u03c4\u03c5\u03bb\u03b9\u03b1\u03bd\u03cc\u03c2","owner":"AnaDigit","x":23.489237,"y":37.751572,"photo":"Aegina_Paleochora_AgStylianos1","type":9,"zoom_level":16,"id":2940,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
Agaricus sp.","owner":"AnaDigit","x":23.523211,"y":37.744466,"photo":"Aegina_agaricus1","type":6,"zoom_level":15,"id":2941,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u03a4\u03bf \u03c4\u03bf\u03c0\u03af\u03bf \u03b3\u03cd\u03c1\u03c9 \u03b1\u03c0\u03bf \u03c4\u03bf\u03c5\u03c2 \u039a\u03b1\u03bd\u03ac\u03ba\u03b7\u03b4\u03b5\u03c2","owner":"AnaDigit","x":23.513756,"y":37.697786,"photo":"Aegina_Kanakides_151","type":0,"zoom_level":14,"id":2942,"hlink_GR":"","hlink_EN":"","description":"","height":425,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03cc\u03c1\u03bc\u03bf\u03c2 \u039b\u03b1\u03c6\u03bf\u03ba\u03bb\u03b5\u03af\u03c3\u03c4\u03b7\u03c2","owner":"AnaDigit","x":23.538445,"y":37.726625,"photo":"Aegina_Lafoklistis_11","type":0,"zoom_level":13,"id":2943,"hlink_GR":"","hlink_EN":"","description":"","height":611,"width":1200},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f\u03b9 \u03a0\u03cc\u03c1\u03c4\u03b5\u03c2","owner":"AnaDigit","x":23.50676,"y":37.700906,"photo":"Aegina_Portes1","type":0,"zoom_level":13,"id":2944,"hlink_GR":"","hlink_EN":"","description":"","height":464,"width":800},{"name":"\u0391\u0399\u0393\u0399\u039d\u0391
\u039f \u03ba\u03c1\u03c5\u03c6\u03cc\u03c2 \u03ba\u03bf\u03bb\u03c0\u03af\u03c3\u03ba\u03bf\u03c2","owner":"AnaDigit","x":23.526661,"y":37.720666,"photo":"Aegina_xx1","type":0,"zoom_level":14,"id":2945,"hlink_GR":"","hlink_EN":"","description":"","height":600,"width":800},{"name":"\u03a7\u039b\u03a9\u03a1\u0394\u0391
\u0398\u03b1\u03bc\u03bd\u03bf\u03ba\u03c5\u03c0\u03ac\u03c1\u03b9\u03c3\u03c3\u03bf (Juniperus phoenicea)","owner":"AnaDigit","x":23.537278,"y":37.738011,"photo":"Juniperus_phoetidissima_Aegina1","type":1,"zoom_level":14,"id":2946,"hlink_GR":"","hlink_EN":"","description":"","height":800,"width":600}],{});function createAdventureListWidgetContext(){};console.log('sort type: none');function createAdventureListWidgetContext(){var divHere = (document.getElementById('pathList'))?true:false;var style = document.createElement('style');style.type = 'text/css';style.innerHTML = '.advListItemWidgetStyleMona{background:#f5f5f5;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyle{background:#fdfdfd;overflow:hidden;position:relative;width:100%;height:45px;border-bottom:1px solid #fff;margin:0px;} .advListItemWidgetStyleMona:hover{background:#dcdcbc;} .advListItemWidgetStyle:hover{background:#dcdcbc;}';if(divHere) document.getElementsByTagName('head')[0].appendChild(style);if(divHere) {document.getElementById('pathList').innerHTML="";}else{console.log('adventure list widget activated but div missing. Requested id: pathList');};}; var overrideUserOptions = {lng:23,lat:38,zoom:7,ac:["aegina"],pc:["aegina"],url: 'https://m1.anadigit.fr/tms/1.0.0/ntn_combo/{z}/{x}/{-y}.png',showLogo: 1,showZoomTool: 1};
var overrideAfterLoad = function(map){ adventureCollection_aegina.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);
}