jQuery(document).ready(function($) { // Grundeinstellungen var kommentarseitenurl = 'https://www.prignitz-erleben.de/wikimap-ajax/'; var detailseitenurl = 'https://www.prignitz-erleben.de/wikimap/'; var verortungseitenurl = $('.wikimap').attr('data-verortungsurl'); // Verortungs-Button $("form#formneueintrag").on('submit',function(e) { e.preventDefault(); $('#formresult').fadeIn(); $('form#formneueintrag .submit').html( 'Speichern...' ); $('form#formneueintrag .submit').attr( 'disabled', 'disabled' ); if ( $('#koords').hasClass('stark_nein') ) var artwert = $('input[name=art]').val(); else var artwert = $('input[name=art]:checked').val(); var Abfrage = { el_do: 'geosave' , geocode: $("#geocode").val() , art: artwert , anmerkung: $("#anmerkung").val() //, nokoords: $("#nokoords").val() }; //alert ( kommentarseitenurl + "?el_do=geosave&geocode=" + $("#geocode").val() + '&art=' + artwert + '&anmerkung=' + $("#anmerkung").val() ); $.post( kommentarseitenurl, Abfrage , function( data ){ if ( data.result == "OK") { //$('#formresult').html( data.content ); $('#formresult').html( '' ); $('form#formneueintrag').remove(); $('.wikimap > p').remove(); $('.wikimap').append( data.content ); $('.wikimap').append( '

Übersicht aller Orte

' ); $('html, body').animate({ scrollTop: parseInt ($('.wikimap').offset().top - 125 ) }, 500); } else if ( data.result == "ERROR") { $('#formresult').html( data.content ); $('form#formneueintrag .submit').html( 'Ort eintragen' ); $('form#formneueintrag .submit').removeAttr( 'disabled' ); } else { $('#formresult').html( '
Es sind leider Fehler aufgetreten.
' ); $('form#formneueintrag .submit').html( 'Ort eintragen' ); $('form#formneueintrag .submit').removeAttr( 'disabled' ); //alert ("FEHLER BEI: " + Abfrage); } }, "json").fail(function() { $('#formresult').html( '
Es ist leider ein technisches Problem aufgetreten [F].
' ); $('form#formneueintrag .submit').html( 'Ort eintragen' ); $('form#formneueintrag .submit').removeAttr( 'disabled' ); //alert ( kommentarseitenurl + Abfrage ); }); //alert ( form_data ); //alert ( kommentarseitenurl ); function newsbackRemove() { $('#formresult').fadeOut(); } //$('#news-result').html( '
Es ist leider ein technisches Problem bei AJAX aufgetreten.
' ); setTimeout(newsbackRemove, 5000); }); // Kommentar-Button $('.kommentare h3').show(); $('form#newcomment').show(); $("form#newcomment").on('submit',function(e) { e.preventDefault(); $('#news-result').fadeIn(); $('form#newcomment .submit').html( 'Speichern...' ); $('form#newcomment .submit').attr( 'disabled', 'disabled' ); var Abfrage = { el_do: 'newcomment' , text: $("#nachricht").val() , newsid: $("#postid").val() }; $.post( kommentarseitenurl, Abfrage , function( data ){ if ( data.result == "OK") { $('#news-result').html( '
Vielen Dank für diese Anmerkung! Ein Moderator wird diese noch prüfen und freigeben.
' ); $("form#newcomment input.resetval").val(''); $("form#newcomment textarea").val(''); $("form#newcomment select").val(''); $('#commentstart').prepend( data.content ); $('form#newcomment .submit').html( 'Senden' ); $('form#newcomment .submit').removeAttr( 'disabled' ); //$("form#newcomment").remove(); //$('form#newcomment').resetForm(); $('form#newcomment')[0].reset(); } else if ( data.result == "NO") { $('#news-result').html( '
Es sind leider nicht alle Angaben korrekt.
' ); $('form#newcomment .submit').html( 'Senden' ); $('form#newcomment .submit').removeAttr( 'disabled' ); } else if ( data.result == "DOUBLE") { $('#news-result').html( '
Diese Anmerkung gibt es bereits!
' ); $('form#newcomment .submit').html( 'Senden' ); $('form#newcomment .submit').removeAttr( 'disabled' ); } else { $('#news-result').html( '
Es sind leider Fehler aufgetreten.
' ); $('form#newcomment .submit').html( 'Senden' ); $('form#newcomment .submit').removeAttr( 'disabled' ); //alert ("FEHLER BEI: " + Abfrage); } }, "json").fail(function() { $('#news-result').html( '
Es ist leider ein technisches Problem aufgetreten [F].
' ); $('form#newcomment .submit').html( 'Senden' ); $('form#newcomment .submit').removeAttr( 'disabled' ); alert ( kommentarseitenurl + Abfrage ); }); //alert ( form_data ); //alert ( kommentarseitenurl ); function newsbackRemove() { $('#news-result').fadeOut(); } //$('#news-result').html( '
Es ist leider ein technisches Problem bei AJAX aufgetreten.
' ); setTimeout(newsbackRemove, 5000); }); // Bewertungen $('.bewertung .like, .bewertung .dislike').click(function(e) { e.preventDefault(); if ($(this).parent().hasClass('choosen')) {} else if ($(this).hasClass('disabled')) {} else { var wertrating = 0; if ( $(this).hasClass('like') ) var wertrating = 1; if ( $(this).hasClass('dislike') ) var wertrating = 2; var Abfrage = { el_do: 'vote' , newsarea: $(this).attr('data-area') , newsid: $(this).attr('data-id') , wertung: wertrating }; var meinwert = parseInt( $(this).find('.label').attr('data-value') ); $(this).find('.label').html( meinwert + 1 ); $(this).find('.label').attr('data-value', meinwert + 1 ); $(this).addClass('choosen'); $(this).parent().addClass('choosen'); $.post( kommentarseitenurl, Abfrage , function( data ){ if ( data.result == "OK") { //alert ( 'Gespeichert!' ); $('.wikimap').append( data.content ); } else { //alert ("FEHLER BEI: " + Abfrage); alert ( 'Es sind leider Fehler beim Speichern aufgetreten.' ); } }, "json").fail(function() { alert ( 'Leider konnte Ihre Wertung nicht gespeichert werden.' ); }); } }); // Kartenfunktionen $('#kartenlegende .xx a').click(function(e) { e.preventDefault(); if ( $(this).parent().parent().parent().hasClass('eingeklappt') ) { $(this).parent().parent().parent().removeClass('eingeklappt'); } else $(this).parent().parent().parent().addClass('eingeklappt'); }); // Content-Hoehe anpassen $(window).on('resize', function() { // Section anpassen var inhaltheight = parseInt( viewportSize.getHeight() ); var realscreenwidth = viewportSize.getWidth(); // caused problems with scrollbars $('#map_canvas9999.full').css('height', parseInt( inhaltheight/3*2 ) + 'px'); $('#map_canvas9999.half').css('height', parseInt( inhaltheight/4*2 ) + 'px'); $('#map_canvas9999.verortung').css('height', parseInt( inhaltheight/4*1.3 ) + 'px'); if ( realscreenwidth > 979 ) { $('body' ).removeClass('tablet'); $('body' ).removeClass('mobil'); } else if ( realscreenwidth > 767 ) { $('body' ).addClass('tablet'); $('body' ).removeClass('mobil'); } else { $('body' ).removeClass('tablet'); $('body' ).addClass('mobil'); } }).trigger('resize'); // Neueintrag $("#map_canvas9999").goMap({ latitude: 53.173119, longitude: 12.089081, zoom: 9, scaleControl: true, maptype: 'ROADMAP', mapTypeControl: true, mapTypeControlOptions: { position: 'TOP_LEFT', style: 'HORIZONTAL_BAR' } , markers: [ { latitude: 52.959852, longitude: 11.949601, title: '', group: 'group_2', id: 'pin_2', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Nahrungs- und Genussmittel

Bewertungen 0 3
', popup: false, } }, { latitude: 52.998005, longitude: 11.759223, title: '', group: 'group_|2|', id: 'pin_3', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 4
', popup: false, } }, { latitude: 53.002385, longitude: 11.759445, title: '', group: 'group_|2|', id: 'pin_12', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.141584, longitude: 12.342662, title: '', group: 'group_|2|', id: 'pin_13', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.08191, longitude: 11.873024, title: '', group: 'group_|2|1|', id: 'pin_14', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 2
', popup: false, } }, { latitude: 53.206683, longitude: 12.204424, title: '', group: 'group_|2|', id: 'pin_15', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 3
', popup: false, } }, { latitude: 53.103394, longitude: 11.834982, title: '', group: 'group_|2|', id: 'pin_16', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 52.79088, longitude: 12.362535, title: '', group: 'group_|2|', id: 'pin_17', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.286442, longitude: 12.350551, title: '', group: 'group_|2|', id: 'pin_18', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.849531, longitude: 12.538847, title: '', group: 'group_|2|', id: 'pin_19', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.166588, longitude: 12.064826, title: '', group: 'group_|2|', id: 'pin_20', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 4 3
', popup: false, } }, { latitude: 53.308545, longitude: 12.305785, title: '', group: 'group_|2|1|', id: 'pin_21', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.002741, longitude: 11.755266, title: '', group: 'group_|2|', id: 'pin_22', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 4
', popup: false, } }, { latitude: 53.003615, longitude: 11.786208, title: '', group: 'group_|1|', id: 'pin_23', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 1
', popup: false, } }, { latitude: 53.209804, longitude: 12.292706, title: '', group: 'group_|2|', id: 'pin_25', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 0
', popup: false, } }, { latitude: 53.104048, longitude: 11.833182, title: '', group: 'group_|2|', id: 'pin_26', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 4 1
', popup: false, } }, { latitude: 52.938171, longitude: 11.790865, title: '', group: 'group_|2|1|', id: 'pin_27', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.227381, longitude: 11.867471, title: '', group: 'group_|2|', id: 'pin_28', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 6
', popup: false, } }, { latitude: 53.153533, longitude: 12.16915, title: '', group: 'group_|2|', id: 'pin_39', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 3 4
', popup: false, } }, { latitude: 52.887865, longitude: 12.796597, title: '', group: 'group_|2|', id: 'pin_40', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.206698, longitude: 12.204279, title: '', group: 'group_|2|', id: 'pin_42', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.926534, longitude: 12.806236, title: '', group: 'group_|2|', id: 'pin_43', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.994211, longitude: 11.742134, title: '', group: 'group_|1|', id: 'pin_44', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.118187, longitude: 12.055931, title: '', group: 'group_|1|', id: 'pin_45', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.959952, longitude: 11.947656, title: '', group: 'group_|1|', id: 'pin_46', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.071804, longitude: 11.599269, title: '', group: 'group_1', id: 'pin_47', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Sonstige regionale Produkte (Kunsthandwerk, Textilien, Kosmetik, Pflanzen)

Bewertungen 0 0
', popup: false, } }, { latitude: 52.918949, longitude: 11.870821, title: '', group: 'group_|1|', id: 'pin_48', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.241011, longitude: 11.215558, title: '', group: 'group_|2|1|', id: 'pin_49', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.203022, longitude: 11.767986, title: '', group: 'group_|1|', id: 'pin_50', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.997863, longitude: 11.754499, title: '', group: 'group_|2|', id: 'pin_51', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.178675, longitude: 12.190986, title: '', group: 'group_|2|', id: 'pin_52', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.148611, longitude: 12.158907, title: '', group: 'group_|2|', id: 'pin_53', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 3
', popup: false, } }, { latitude: 53.15109, longitude: 12.185987, title: '', group: 'group_|2|', id: 'pin_54', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 3
', popup: false, } }, { latitude: 53.08002, longitude: 11.859191, title: '', group: 'group_|2|', id: 'pin_55', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

1 Kommentar anzeigen »
Bewertungen 0 0
', popup: false, } }, { latitude: 52.994089, longitude: 11.721702, title: '', group: 'group_|2|', id: 'pin_56', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.99942, longitude: 11.741407, title: '', group: 'group_|2|', id: 'pin_57', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.920573, longitude: 12.786752, title: '', group: 'group_|2|', id: 'pin_58', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.156022, longitude: 12.482169, title: '', group: 'group_|2|', id: 'pin_59', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.02288, longitude: 11.784003, title: '', group: 'group_|2|', id: 'pin_60', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 0
', popup: false, } }, { latitude: 53.32009, longitude: 12.241403, title: '', group: 'group_|2|', id: 'pin_61', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.994718, longitude: 12.132967, title: '', group: 'group_|2|', id: 'pin_62', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 6 0
', popup: false, } }, { latitude: 53.212211, longitude: 12.728951, title: '', group: 'group_|2|', id: 'pin_63', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.317182, longitude: 12.007174, title: '', group: 'group_|2|', id: 'pin_64', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.099369, longitude: 12.005904, title: '', group: 'group_|2|', id: 'pin_65', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.393613, longitude: 13.313934, title: '', group: 'group_|2|', id: 'pin_66', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.851496, longitude: 12.604048, title: '', group: 'group_|2|1|', id: 'pin_67', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.988083, longitude: 12.654695, title: '', group: 'group_|2|', id: 'pin_69', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 52.719051, longitude: 12.851119, title: '', group: 'group_|2|', id: 'pin_70', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.779647, longitude: 12.834413, title: '', group: 'group_|2|', id: 'pin_71', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.943647, longitude: 12.200789, title: '', group: 'group_|2|', id: 'pin_73', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.278742, longitude: 12.05197, title: '', group: 'group_|2|', id: 'pin_74', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.21866, longitude: 11.899507, title: '', group: 'group_|2|', id: 'pin_75', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.159051, longitude: 11.739492, title: '', group: 'group_|2|', id: 'pin_76', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.133249, longitude: 11.670289, title: '', group: 'group_|2|', id: 'pin_77', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.99859, longitude: 12.060236, title: '', group: 'group_|2|', id: 'pin_78', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.01589, longitude: 12.646495, title: '', group: 'group_|2|', id: 'pin_79', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.246336, longitude: 11.929567, title: '', group: 'group_|2|', id: 'pin_80', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.24338, longitude: 12.193808, title: '', group: 'group_|2|', id: 'pin_81', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 52.922876, longitude: 11.870478, title: '', group: 'group_|2|', id: 'pin_82', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.08492, longitude: 11.860755, title: '', group: 'group_|2|', id: 'pin_84', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.358874, longitude: 12.091492, title: '', group: 'group_|2|', id: 'pin_85', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.926915, longitude: 12.811563, title: '', group: 'group_|2|', id: 'pin_86', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.950681, longitude: 12.395901, title: '', group: 'group_|2|', id: 'pin_87', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.992965, longitude: 12.969867, title: '', group: 'group_|2|', id: 'pin_88', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.15822, longitude: 12.767849, title: '', group: 'group_|2|1|', id: 'pin_89', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.058281, longitude: 12.019856, title: '', group: 'group_|2|', id: 'pin_91', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 2
', popup: false, } }, { latitude: 53.168196, longitude: 12.486185, title: '', group: 'group_|2|', id: 'pin_92', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.934229, longitude: 11.608598, title: '', group: 'group_|2|', id: 'pin_93', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 52.922552, longitude: 12.794719, title: '', group: 'group_|2|', id: 'pin_94', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.950936, longitude: 12.395907, title: '', group: 'group_|2|', id: 'pin_95', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.137066, longitude: 12.782633, title: '', group: 'group_|2|', id: 'pin_96', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.999244, longitude: 11.743223, title: '', group: 'group_|2|', id: 'pin_97', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.010155, longitude: 11.74317, title: '', group: 'group_|2|', id: 'pin_98', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.88904, longitude: 12.276666, title: '', group: 'group_|2|', id: 'pin_99', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.08114, longitude: 11.860801, title: '', group: 'group_|2|', id: 'pin_100', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.14707, longitude: 12.180574, title: '', group: 'group_|2|', id: 'pin_101', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.852929, longitude: 12.603891, title: '', group: 'group_|2|', id: 'pin_102', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.07578, longitude: 11.863464, title: '', group: 'group_|2|1|', id: 'pin_103', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.148764, longitude: 12.092922, title: '', group: 'group_|2|', id: 'pin_104', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.07364, longitude: 11.605199, title: '', group: 'group_|2|', id: 'pin_105', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.243732, longitude: 12.35669, title: '', group: 'group_|2|', id: 'pin_106', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.101637, longitude: 11.830977, title: '', group: 'group_|2|', id: 'pin_107', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.055139, longitude: 11.453141, title: '', group: 'group_|2|', id: 'pin_108', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.866323, longitude: 12.458766, title: '', group: 'group_|2|1|', id: 'pin_109', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.924129, longitude: 12.811229, title: '', group: 'group_|2|', id: 'pin_110', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.945621, longitude: 12.661995, title: '', group: 'group_|1|', id: 'pin_111', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.754773, longitude: 13.034153, title: '', group: 'group_|2|', id: 'pin_112', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.889728, longitude: 12.461425, title: '', group: 'group_|2|', id: 'pin_113', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.187868, longitude: 12.267593, title: '', group: 'group_', id: 'pin_114', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.920801, longitude: 12.798922, title: '', group: 'group_|2|', id: 'pin_115', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.853148, longitude: 12.599811, title: '', group: 'group_|2|', id: 'pin_116', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.758855, longitude: 12.875446, title: '', group: 'group_|2|', id: 'pin_117', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.101752, longitude: 11.475004, title: '', group: 'group_|2|', id: 'pin_118', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.09074, longitude: 12.911699, title: '', group: 'group_|2|', id: 'pin_119', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.086893, longitude: 11.860433, title: '', group: 'group_|2|', id: 'pin_120', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

1 Kommentar anzeigen »
Bewertungen 0 0
', popup: false, } }, { latitude: 53.219289, longitude: 12.026709, title: '', group: 'group_|2|', id: 'pin_121', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.070123, longitude: 11.875282, title: '', group: 'group_|2|', id: 'pin_122', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.158806, longitude: 12.184922, title: '', group: 'group_|2|', id: 'pin_123', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.081126, longitude: 11.842784, title: '', group: 'group_|2|', id: 'pin_124', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.205707, longitude: 12.217805, title: '', group: 'group_|2|', id: 'pin_125', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.766704, longitude: 12.874453, title: '', group: 'group_|2|', id: 'pin_126', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.147218, longitude: 11.612268, title: '', group: 'group_|2|', id: 'pin_127', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.958428, longitude: 13.016611, title: '', group: 'group_|2|', id: 'pin_128', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.098568, longitude: 12.892488, title: '', group: 'group_|2|', id: 'pin_129', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.120156, longitude: 12.229956, title: '', group: 'group_|2|', id: 'pin_130', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.121349, longitude: 12.046574, title: '', group: 'group_|2|', id: 'pin_131', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.758995, longitude: 12.877929, title: '', group: 'group_|2|1|', id: 'pin_132', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.852105, longitude: 12.604843, title: '', group: 'group_|2|1|', id: 'pin_133', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.880234, longitude: 12.571122, title: '', group: 'group_|2|', id: 'pin_134', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.208049, longitude: 11.877305, title: '', group: 'group_', id: 'pin_136', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.199344, longitude: 11.576908, title: '', group: 'group_', id: 'pin_137', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.712201, longitude: 12.86775, title: '', group: 'group_|2|', id: 'pin_138', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.997671, longitude: 11.759224, title: '', group: 'group_|2|', id: 'pin_139', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 3
', popup: false, } }, { latitude: 52.92466, longitude: 12.804395, title: '', group: 'group_|2|', id: 'pin_140', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.159552, longitude: 12.763271, title: '', group: 'group_|2|', id: 'pin_141', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.222539, longitude: 12.282695, title: '', group: 'group_', id: 'pin_142', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.101963, longitude: 12.467696, title: '', group: 'group_|2|', id: 'pin_143', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.784703, longitude: 11.95073, title: '', group: 'group_|2|', id: 'pin_144', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.892794, longitude: 11.98849, title: '', group: 'group_|2|', id: 'pin_145', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.923911, longitude: 12.899931, title: '', group: 'group_|2|', id: 'pin_146', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.920861, longitude: 12.808591, title: '', group: 'group_|2|', id: 'pin_147', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.922947, longitude: 12.811359, title: '', group: 'group_|2|', id: 'pin_148', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.925489, longitude: 12.804557, title: '', group: 'group_|2|1|', id: 'pin_149', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.880928, longitude: 12.882355, title: '', group: 'group_|2|', id: 'pin_150', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.957361, longitude: 12.506918, title: '', group: 'group_', id: 'pin_151', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.852884, longitude: 12.934266, title: '', group: 'group_|2|', id: 'pin_152', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.216069, longitude: 11.771582, title: '', group: 'group_|2|', id: 'pin_153', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.162636, longitude: 11.739272, title: '', group: 'group_|2|', id: 'pin_154', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.925738, longitude: 12.80688, title: '', group: 'group_|2|', id: 'pin_155', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.156138, longitude: 12.257628, title: '', group: 'group_|2|', id: 'pin_156', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.939451, longitude: 11.788767, title: '', group: 'group_|2|', id: 'pin_157', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.04925, longitude: 12.834338, title: '', group: 'group_|2|1|', id: 'pin_158', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.1847, longitude: 12.158381, title: '', group: 'group_|2|', id: 'pin_159', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.776221, longitude: 12.840456, title: '', group: 'group_|2|', id: 'pin_160', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.101358, longitude: 12.891182, title: '', group: 'group_|2|', id: 'pin_161', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.10873, longitude: 11.420945, title: '', group: 'group_|2|', id: 'pin_162', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.133075, longitude: 11.794762, title: '', group: 'group_', id: 'pin_163', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.989719, longitude: 11.780962, title: '', group: 'group_|2|', id: 'pin_164', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.206341, longitude: 12.736459, title: '', group: 'group_|2|1|', id: 'pin_165', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 3
', popup: false, } }, { latitude: 52.758724, longitude: 12.879182, title: '', group: 'group_|2|', id: 'pin_166', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.092062, longitude: 11.47276, title: '', group: 'group_|2|', id: 'pin_167', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.080497, longitude: 12.148819, title: '', group: 'group_|2|', id: 'pin_168', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 2
', popup: false, } }, { latitude: 53.109052, longitude: 11.991837, title: '', group: 'group_|2|', id: 'pin_169', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.993081, longitude: 12.898215, title: '', group: 'group_|2|', id: 'pin_170', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 52.890982, longitude: 11.755535, title: '', group: 'group_|2|', id: 'pin_171', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.824141, longitude: 12.570081, title: '', group: 'group_|2|', id: 'pin_172', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.12018, longitude: 12.048381, title: '', group: 'group_|2|', id: 'pin_173', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.906751, longitude: 12.674406, title: '', group: 'group_|2|', id: 'pin_174', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.203244, longitude: 12.023785, title: '', group: 'group_|2|', id: 'pin_175', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.809056, longitude: 12.311895, title: '', group: 'group_|2|', id: 'pin_176', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.856962, longitude: 11.702234, title: '', group: 'group_|2|', id: 'pin_177', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.079138, longitude: 11.507969, title: '', group: 'group_|2|', id: 'pin_181', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.900068, longitude: 11.918369, title: '', group: 'group_|2|', id: 'pin_182', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.151259, longitude: 12.201393, title: '', group: 'group_|1|', id: 'pin_183', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.994812, longitude: 11.725493, title: '', group: 'group_|1|', id: 'pin_184', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.843253, longitude: 12.863973, title: '', group: 'group_|1|', id: 'pin_185', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.990666, longitude: 11.75974, title: '', group: 'group_|2|', id: 'pin_186', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 4
', popup: false, } }, { latitude: 53.003635, longitude: 11.786109, title: '', group: 'group_|1|', id: 'pin_187', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.108614, longitude: 11.381112, title: '', group: 'group_|1|', id: 'pin_188', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.108431, longitude: 11.381144, title: '', group: 'group_|1|', id: 'pin_189', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.108543, longitude: 11.379417, title: '', group: 'group_|1|', id: 'pin_190', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.079938, longitude: 11.409988, title: '', group: 'group_|1|', id: 'pin_191', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.103088, longitude: 11.44799, title: '', group: 'group_|1|', id: 'pin_192', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.827264, longitude: 12.078094, title: '', group: 'group_|1|', id: 'pin_193', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.224989, longitude: 11.697049, title: '', group: 'group_|1|', id: 'pin_194', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.07374, longitude: 11.604293, title: '', group: 'group_|2|', id: 'pin_195', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.086868, longitude: 11.847987, title: '', group: 'group_|2|1|', id: 'pin_196', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.988136, longitude: 12.654858, title: '', group: 'group_|2|', id: 'pin_198', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.934928, longitude: 12.451732, title: '', group: 'group_|2|', id: 'pin_199', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.090506, longitude: 11.287663, title: '', group: 'group_|2|', id: 'pin_200', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.010495, longitude: 12.160916, title: '', group: 'group_2', id: 'pin_201', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Nahrungs- und Genussmittel

Bewertungen 0 3
', popup: false, } }, { latitude: 53.027605, longitude: 12.238008, title: '', group: 'group_|2|1|', id: 'pin_202', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 2
', popup: false, } }, { latitude: 53.067475, longitude: 12.53323, title: '', group: 'group_|2|', id: 'pin_203', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.070621, longitude: 12.083038, title: '', group: 'group_|1|', id: 'pin_204', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.151934, longitude: 12.050406, title: '', group: 'group_|1|', id: 'pin_205', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.281682, longitude: 12.111939, title: '', group: 'group_|1|', id: 'pin_206', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.308785, longitude: 12.039607, title: '', group: 'group_|1|', id: 'pin_207', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 52.985857, longitude: 12.266072, title: '', group: 'group_|1|', id: 'pin_208', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.108624, longitude: 11.38076, title: '', group: 'group_|1|', id: 'pin_209', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.072204, longitude: 11.847357, title: '', group: 'group_|1|', id: 'pin_210', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.922312, longitude: 12.808267, title: '', group: 'group_|2|', id: 'pin_211', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.12965, longitude: 12.010784, title: '', group: 'group_|1|', id: 'pin_214', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 0
', popup: false, } }, { latitude: 53.131047, longitude: 11.666448, title: '', group: 'group_|1|', id: 'pin_215', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.955325, longitude: 11.9451, title: '', group: 'group_|1|', id: 'pin_216', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.355217, longitude: 10.830878, title: '', group: 'group_|1|', id: 'pin_217', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.19046, longitude: 11.781657, title: '', group: 'group_|1|', id: 'pin_218', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.864972, longitude: 12.310706, title: '', group: 'group_|1|', id: 'pin_219', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.037284, longitude: 12.37185, title: '', group: 'group_|1|', id: 'pin_220', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.149669, longitude: 12.15921, title: '', group: 'group_|1|', id: 'pin_221', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.285287, longitude: 11.475681, title: '', group: 'group_|1|', id: 'pin_222', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.100035, longitude: 11.693015, title: '', group: 'group_|1|', id: 'pin_223', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.034697, longitude: 11.661403, title: '', group: 'group_|1|', id: 'pin_224', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.078539, longitude: 11.861452, title: '', group: 'group_|1|', id: 'pin_225', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.324328, longitude: 10.659045, title: '', group: 'group_|1|', id: 'pin_226', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.164244, longitude: 11.963379, title: '', group: 'group_|1|', id: 'pin_227', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.077051, longitude: 11.390038, title: '', group: 'group_|2|', id: 'pin_228', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.287234, longitude: 11.865441, title: '', group: 'group_|2|', id: 'pin_229', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.937359, longitude: 12.436531, title: '', group: 'group_|2|', id: 'pin_230', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.849693, longitude: 12.538037, title: '', group: 'group_|2|1|', id: 'pin_231', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.120389, longitude: 12.225179, title: '', group: 'group_|2|', id: 'pin_232', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.998989, longitude: 11.75708, title: '', group: 'group_|2|', id: 'pin_233', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.21621, longitude: 12.219565, title: '', group: 'group_|2|', id: 'pin_234', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.939044, longitude: 12.451069, title: '', group: 'group_|2|', id: 'pin_235', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.101027, longitude: 11.83186, title: '', group: 'group_|2|', id: 'pin_236', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 0
', popup: false, } }, { latitude: 52.96066, longitude: 11.949764, title: '', group: 'group_|2|', id: 'pin_237', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 52.832374, longitude: 12.524967, title: '', group: 'group_|2|1|', id: 'pin_238', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.166829, longitude: 12.495288, title: '', group: 'group_|2|', id: 'pin_239', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.919386, longitude: 11.871159, title: '', group: 'group_|2|', id: 'pin_240', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.94281, longitude: 12.399125, title: '', group: 'group_|2|', id: 'pin_241', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.149077, longitude: 12.174018, title: '', group: 'group_|2|', id: 'pin_242', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.866435, longitude: 12.457842, title: '', group: 'group_|2|', id: 'pin_243', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.148948, longitude: 12.009631, title: '', group: 'group_|2|', id: 'pin_244', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.958897, longitude: 12.033291, title: '', group: 'group_|2|', id: 'pin_245', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 2
', popup: false, } }, { latitude: 53.149492, longitude: 12.178634, title: '', group: 'group_|2|', id: 'pin_247', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.924713, longitude: 12.805282, title: '', group: 'group_|2|', id: 'pin_248', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.997288, longitude: 11.757895, title: '', group: 'group_|1|', id: 'pin_249', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 0
', popup: false, } }, { latitude: 53.162488, longitude: 12.483843, title: '', group: 'group_|2|', id: 'pin_250', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.224596, longitude: 12.15755, title: '', group: 'group_|2|', id: 'pin_251', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.148868, longitude: 11.581146, title: '', group: 'group_|2|', id: 'pin_252', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.152548, longitude: 11.885351, title: '', group: 'group_|2|1|', id: 'pin_253', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.996375, longitude: 12.00162, title: '', group: 'group_|2|', id: 'pin_254', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.071275, longitude: 11.328852, title: '', group: 'group_|2|', id: 'pin_255', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.099123, longitude: 11.566793, title: '', group: 'group_|2|', id: 'pin_257', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.120138, longitude: 12.18214, title: '', group: 'group_2', id: 'pin_258', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Nahrungs- und Genussmittel

Bewertungen 0 0
', popup: false, } }, { latitude: 53.169891, longitude: 12.441689, title: '', group: 'group_|2|', id: 'pin_259', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.132405, longitude: 11.667094, title: '', group: 'group_|2|', id: 'pin_260', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.089952, longitude: 11.474369, title: '', group: 'group_|2|', id: 'pin_261', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.094063, longitude: 11.473071, title: '', group: 'group_|2|', id: 'pin_262', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.084475, longitude: 11.857837, title: '', group: 'group_|2|', id: 'pin_263', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.123605, longitude: 12.109932, title: '', group: 'group_|2|', id: 'pin_265', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.240598, longitude: 12.021963, title: '', group: 'group_|1|', id: 'pin_266', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.925198, longitude: 12.803109, title: '', group: 'group_|2|', id: 'pin_268', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.990843, longitude: 11.746354, title: '', group: 'group_', id: 'pin_269', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.995409, longitude: 11.755191, title: '', group: 'group_|2|', id: 'pin_270', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 2 0
', popup: false, } }, { latitude: 53.017062, longitude: 11.756012, title: '', group: 'group_|2|', id: 'pin_271', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.990824, longitude: 11.777057, title: '', group: 'group_|2|', id: 'pin_272', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 0
', popup: false, } }, { latitude: 53.001178, longitude: 11.730097, title: '', group: 'group_|2|', id: 'pin_273', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 1 0
', popup: false, } }, { latitude: 52.936532, longitude: 12.446847, title: '', group: 'group_|2|', id: 'pin_274', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.153726, longitude: 12.178476, title: '', group: 'group_|2|', id: 'pin_275', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.958269, longitude: 11.946835, title: '', group: 'group_|2|', id: 'pin_276', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.163047, longitude: 12.128726, title: '', group: 'group_|2|', id: 'pin_277', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.958272, longitude: 12.031269, title: '', group: 'group_|2|', id: 'pin_278', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.152272, longitude: 12.179345, title: '', group: 'group_|2|', id: 'pin_279', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.082526, longitude: 12.150914, title: '', group: 'group_|2|', id: 'pin_280', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.998621, longitude: 12.004648, title: '', group: 'group_|2|', id: 'pin_281', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.898729, longitude: 12.453735, title: '', group: 'group_|2|', id: 'pin_282', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.089814, longitude: 11.477019, title: '', group: 'group_|2|', id: 'pin_283', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.058913, longitude: 11.624707, title: '', group: 'group_|2|', id: 'pin_284', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.99567, longitude: 11.755792, title: '', group: 'group_|2|', id: 'pin_285', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.132805, longitude: 11.667847, title: '', group: 'group_|2|1|', id: 'pin_286', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.108695, longitude: 11.379625, title: '', group: 'group_|2|1|', id: 'pin_287', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.074846, longitude: 11.864971, title: '', group: 'group_|2|', id: 'pin_288', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.075223, longitude: 11.864597, title: '', group: 'group_|2|', id: 'pin_289', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.916873, longitude: 12.432599, title: '', group: 'group_|2|', id: 'pin_290', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.942765, longitude: 12.398244, title: '', group: 'group_|2|', id: 'pin_291', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.091602, longitude: 11.47453, title: '', group: 'group_|2|', id: 'pin_292', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.085268, longitude: 11.826472, title: '', group: 'group_|2|', id: 'pin_294', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.091331, longitude: 11.871495, title: '', group: 'group_|2|', id: 'pin_295', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.099165, longitude: 11.56672, title: '', group: 'group_|2|', id: 'pin_296', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.942115, longitude: 12.399258, title: '', group: 'group_|2|', id: 'pin_297', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.051459, longitude: 11.771244, title: '', group: 'group_|2|', id: 'pin_298', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.037378, longitude: 12.803544, title: '', group: 'group_|2|', id: 'pin_299', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.099004, longitude: 12.893435, title: '', group: 'group_|2|', id: 'pin_300', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.980005, longitude: 12.249126, title: '', group: 'group_|2|', id: 'pin_302', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.011156, longitude: 12.325855, title: '', group: 'group_|2|', id: 'pin_303', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.160963, longitude: 12.470971, title: '', group: 'group_|2|', id: 'pin_304', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.951527, longitude: 11.948412, title: '', group: 'group_|2|', id: 'pin_305', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.996342, longitude: 12.13423, title: '', group: 'group_|2|', id: 'pin_306', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.066144, longitude: 11.901635, title: '', group: 'group_|2|', id: 'pin_307', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.059787, longitude: 11.858186, title: '', group: 'group_|2|', id: 'pin_309', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.073428, longitude: 11.856378, title: '', group: 'group_|2|', id: 'pin_310', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 1
', popup: false, } }, { latitude: 53.12017, longitude: 12.182135, title: '', group: 'group_|1|', id: 'pin_311', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 53.248185, longitude: 12.678719, title: '', group: 'group_|2|', id: 'pin_312', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.940156, longitude: 11.860034, title: '', group: 'group_|2|', id: 'pin_313', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, { latitude: 52.996373, longitude: 12.001528, title: '', group: 'group_|2|', id: 'pin_315', icon: 'https://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=||', html: { content: '

Bewertungen 0 0
', popup: false, } }, ], disableDoubleClickZoom: true }); // Alle einblenden am Anfang $("#kartenlegende .felder .legitem input").prop('checked', true); for (var i in $.goMap.markers) { $.goMap.showHideMarker($.goMap.markers[i], true); }; // Legende ein- und ausblenden $("#kartenlegende .felder .legitem input").change(function() { //$.goMap.fitBounds('markers',['ot01', 'ot02', 'ot03']); var group = $(this).val(); if ( this.checked ) { $.goMap.showHideMarkerByGroup(group, true); } else { $.goMap.showHideMarkerByGroup(group, false); } }); // Alle einblenden am Anfang $("#kartenlegende .felder .legitem input").prop('checked', true); for (var i in $.goMap.markers) { $.goMap.showHideMarker($.goMap.markers[i], true); }; // Legende ein- und ausblenden $("#kartenlegende .felder .legitem input").change(function() { var group = $(this).val(); if ( this.checked ) { $.goMap.showHideMarkerByGroup(group, true); } else { $.goMap.showHideMarkerByGroup(group, false); } }); });