function initMap() { let data = {"api_url":"https:\/\/maps.googleapis.com\/maps\/api\/js?key= AIzaSyAcNwv0mfYFH9MnghUL9Fi1tUeC_S0A6nA&language=el&callback=initMap","markers":[{"title":"\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1 \u03a0\u03ac\u03c4\u03c1\u03b1\u03c2 - \u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03b7\u03bc\u03af\u03bf\u03c5","position":{"lat":38.268571,"lng":21.758208},"infowindow_content":"
Fotios Katraouras<\/p>
<\/span>\u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03b7\u03bc\u03af\u03bf\u03c5 240, \u03a0\u03ac\u03c4\u03c1\u03b1<\/p> <\/span>2610 439161<\/p> <\/span>info@katraouras.com<\/p> <\/span>\u03a9\u03c1\u03ac\u03c1\u03b9\u03bf \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2<\/p> Fotios Katraouras<\/p> <\/span>\u039a\u03bf\u03c1\u03af\u03bd\u03b8\u03bf\u03c5 305, \u03a0\u03ac\u03c4\u03c1\u03b1<\/p> <\/span>2610 220103<\/p> <\/span>info@katraouras.com<\/p> <\/span>\u03a9\u03c1\u03ac\u03c1\u03b9\u03bf \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2<\/p> Fotios Katraouras<\/p> <\/span>\u0399\u03bd\u03c4\u03b6\u03ad 2, \u039d\u03b1\u03cd\u03c0\u03b1\u03ba\u03c4\u03bf\u03c2<\/p> <\/span>26340 22655<\/p> <\/span>info@katraouras.com<\/p> <\/span>\u03a9\u03c1\u03ac\u03c1\u03b9\u03bf \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2<\/p>
09:00 - 14:00<\/em><\/li>
09:00 - 14:00, 17:00 - 21:00<\/em><\/li>
09:00 - 14:30<\/em><\/li><\/ul><\/div>"},{"title":"\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1 \u03a0\u03ac\u03c4\u03c1\u03b1\u03c2 - \u039a\u03bf\u03c1\u03af\u03bd\u03b8\u03bf\u03c5","position":{"lat":38.244924,"lng":21.734083},"infowindow_content":"
09:00 - 14:00<\/em><\/li>
09:00 - 14:00, 17:30 - 21:00<\/em><\/li>
09:00 - 14:30<\/em><\/li><\/ul><\/div>"},{"title":"\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1 \u039d\u03b1\u03c5\u03c0\u03ac\u03ba\u03c4\u03bf\u03c5","position":{"lat":38.394131,"lng":21.833558},"infowindow_content":"
09:00 - 14:00<\/em><\/li>
09:00 - 14:00, 17:30 - 21:00<\/em><\/li>
09:00 - 14:30<\/em><\/li><\/ul><\/div>"}]};
let mapOptions = {
zoom: 11,
center: new google.maps.LatLng(38.333324, 21.810769),
styles: [{"featureType":"water","elementType":"geometry.fill","stylers":[{"color":"#d3d3d3"}]},{"featureType":"transit","stylers":[{"color":"#808080"},{"visibility":"off"}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"visibility":"on"},{"color":"#b3b3b3"}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#ffffff"}]},{"featureType":"road.local","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"color":"#ffffff"},{"weight":1.8}]},{"featureType":"road.local","elementType":"geometry.stroke","stylers":[{"color":"#d7d7d7"}]},{"featureType":"poi","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"color":"#ebebeb"}]},{"featureType":"administrative","elementType":"geometry","stylers":[{"color":"#a7a7a7"}]},{"featureType":"road.arterial","elementType":"geometry.fill","stylers":[{"color":"#ffffff"}]},{"featureType":"road.arterial","elementType":"geometry.fill","stylers":[{"color":"#ffffff"}]},{"featureType":"landscape","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"color":"#efefef"}]},{"featureType":"road","elementType":"labels.text.fill","stylers":[{"color":"#696969"}]},{"featureType":"administrative","elementType":"labels.text.fill","stylers":[{"visibility":"on"},{"color":"#737373"}]},{"featureType":"poi","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"poi","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"road.arterial","elementType":"geometry.stroke","stylers":[{"color":"#d6d6d6"}]},{"featureType":"road","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{},{"featureType":"poi","elementType":"geometry.fill","stylers":[{"color":"#dadada"}]}]
};
let infoWindow = new google.maps.InfoWindow(), marker;
let map = new google.maps.Map(document.getElementById('map'), mapOptions);
// Place each marker on the map
data.markers.forEach(function(m) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(m.position),
map: map,
title: m.title
});
if (m.infowindow_content) {
google.maps.event.addListener(marker, 'click', (function (marker, content) {
return function() {
infoWindow.setContent(content);
infoWindow.open(map, marker);
}
})(marker, m.infowindow_content));
}
});
}
Κατάστημα Πάτρας - Πανεπιστημίου
Πανεπιστημίου 240, Πάτρα
2610 439161
info@katraouras.com
Ωράριο λειτουργίας
- Δευτέρα, Τετάρτη
09:00 - 14:00 - Τρίτη, Πέμπτη, Παρασκευή
09:00 - 14:00, 17:00 - 21:00 - Σάββατο
09:00 - 14:30
Κατάστημα Πάτρας - Κορίνθου
Κορίνθου 305, Πάτρα
2610 220103
info@katraouras.com
Ωράριο λειτουργίας
- Δευτέρα, Τετάρτη
09:00 - 14:00 - Τρίτη, Πέμπτη, Παρασκευή
09:00 - 14:00, 17:30 - 21:00 - Σάββατο
09:00 - 14:30
Κατάστημα Ναυπάκτου
Ιντζέ 2, Ναύπακτος
26340 22655
info@katraouras.com
Ωράριο λειτουργίας
- Δευτέρα, Τετάρτη
09:00 - 14:00 - Τρίτη, Πέμπτη, Παρασκευή
09:00 - 14:00, 17:30 - 21:00 - Σάββατο
09:00 - 14:30