WP Google Maps - Version 8.0.14

Version Description

:- 2020-01-13 :- Medium priority = * Added Gesture Handling (Ctrl + Zoom and Two-finger pan) for OpenLayers * "No Google Maps API key entered" message will no longer obscure map for new users

Download this release

Release Info

Developer perryrylance
Plugin Icon 128x128 WP Google Maps
Version 8.0.14
Comparing to
See all releases

Code changes from version 8.0.13 to 8.0.14

css/common.css CHANGED
@@ -541,4 +541,18 @@ input[name='wpgmza_developer_mode'] + .notice-warning
541
  input[name='wpgmza_developer_mode']:checked + .notice-warning
542
  {
543
  display: block;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
544
  }
541
  input[name='wpgmza_developer_mode']:checked + .notice-warning
542
  {
543
  display: block;
544
+ }
545
+
546
+ .wpgmza-gesture-overlay
547
+ {
548
+ color: white;
549
+ background: rgba(0,0,0,0.5);
550
+ position: absolute;
551
+ top: 0px;
552
+ left: 0px;
553
+ width: 100%;
554
+ height: 100%;
555
+ z-index: 999;
556
+ text-align: center;
557
+ line-height: 400px;
558
  }
includes/class.marker-filter.php CHANGED
@@ -99,7 +99,7 @@ class MarkerFilter extends Factory
99
 
100
  $query->{$context}['radius'] = "
101
  (
102
- 6381 *
103
 
104
  2 *
105
 
99
 
100
  $query->{$context}['radius'] = "
101
  (
102
+ 6371 *
103
 
104
  2 *
105
 
includes/class.strings.php CHANGED
@@ -71,7 +71,10 @@ class Strings
71
  'requires_gold_v5' => __('Requires WP Google Maps - Gold add-on 5.0.0 or above', 'wp-google-maps'),
72
 
73
  'confirm_remove_duplicates' => __('This operation is not reversable. We recommend you take a backup before proceeding. Would you like to continue?', 'wp-google-maps'),
74
- 'invalid_theme_Data' => __('Invalid theme data', 'wp-google-maps')
 
 
 
75
  ));
76
  }
77
 
71
  'requires_gold_v5' => __('Requires WP Google Maps - Gold add-on 5.0.0 or above', 'wp-google-maps'),
72
 
73
  'confirm_remove_duplicates' => __('This operation is not reversable. We recommend you take a backup before proceeding. Would you like to continue?', 'wp-google-maps'),
74
+ 'invalid_theme_Data' => __('Invalid theme data', 'wp-google-maps'),
75
+
76
+ 'use_two_fingers' => __('Usee two fingers to move the map', 'wp-google-maps'),
77
+ 'use_ctrl_scroll_to_zoom' => __('Use ctrl + scroll to zoom the map')
78
  ));
79
  }
80
 
js/v8/google-api-error-handler.js CHANGED
@@ -47,7 +47,13 @@ jQuery(function($) {
47
  }
48
 
49
  // Check for no API key
50
- if(WPGMZA.settings.engine == "google-maps" && (!WPGMZA.settings.wpgmza_google_maps_api_key || !WPGMZA.settings.wpgmza_google_maps_api_key.length))
 
 
 
 
 
 
51
  this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key, ["https://www.wpgmaps.com/get-a-google-maps-api-key/"]);
52
  }
53
 
47
  }
48
 
49
  // Check for no API key
50
+ if(
51
+ WPGMZA.settings.engine == "google-maps"
52
+ &&
53
+ (!WPGMZA.settings.wpgmza_google_maps_api_key || !WPGMZA.settings.wpgmza_google_maps_api_key.length)
54
+ &&
55
+ WPGMZA.getCurrentPage() != WPGMZA.PAGE_MAP_EDIT
56
+ )
57
  this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key, ["https://www.wpgmaps.com/get-a-google-maps-api-key/"]);
58
  }
59
 
js/v8/open-layers/ol-map.js CHANGED
@@ -42,6 +42,56 @@ jQuery(function($) {
42
 
43
  }, this);
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  // Controls
46
  this.olMap.getControls().forEach(function(control) {
47
 
@@ -495,6 +545,26 @@ jQuery(function($) {
495
  }
496
  }
497
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  WPGMZA.OLMap.prototype.onElementResized = function(event)
499
  {
500
  this.olMap.updateSize();
42
 
43
  }, this);
44
 
45
+ // Cooperative gesture handling
46
+ if(!(this.wpgmza_force_greedy_gestures == "greedy" || this.wpgmza_force_greedy_gestures == "yes"))
47
+ {
48
+ this.gestureOverlay = $("<div class='wpgmza-gesture-overlay'></div>")
49
+ this.gestureOverlayTimeoutID = null;
50
+
51
+ if(WPGMZA.isTouchDevice())
52
+ {
53
+ // On touch devices, require two fingers to drag and pan
54
+ this.olMap.getInteractions().forEach(function(interaction) {
55
+
56
+ if(interaction instanceof ol.interaction.DragPan)
57
+ self.olMap.removeInteraction(interaction);
58
+
59
+ });
60
+
61
+ this.olMap.addInteraction(new ol.interaction.DragPan({
62
+
63
+ condition: function(olBrowserEvent) {
64
+
65
+ var allowed = olBrowserEvent.originalEvent.touches.length == 2;
66
+
67
+ if(!allowed)
68
+ self.showGestureOverlay();
69
+
70
+ return allowed;
71
+ }
72
+
73
+ }));
74
+
75
+ this.gestureOverlay.text(WPGMZA.localized_strings.use_two_fingers);
76
+ }
77
+ else
78
+ {
79
+ // On desktops, require Ctrl + zoom to zoom, show an overlay if that condition is not met
80
+ this.olMap.on("wheel", function(event) {
81
+
82
+ if(!ol.events.condition.platformModifierKeyOnly(event))
83
+ {
84
+ self.showGestureOverlay();
85
+ event.originalEvent.preventDefault();
86
+ return false;
87
+ }
88
+
89
+ });
90
+
91
+ this.gestureOverlay.text(WPGMZA.localized_strings.use_ctrl_scroll_to_zoom);
92
+ }
93
+ }
94
+
95
  // Controls
96
  this.olMap.getControls().forEach(function(control) {
97
 
545
  }
546
  }
547
 
548
+ WPGMZA.OLMap.prototype.showGestureOverlay = function()
549
+ {
550
+ var self = this;
551
+
552
+ clearTimeout(this.gestureOverlayTimeoutID);
553
+
554
+ $(this.gestureOverlay).stop().animate({opacity: "100"});
555
+ $(this.element).append(this.gestureOverlay);
556
+
557
+ $(this.gestureOverlay).css({
558
+ "line-height": $(this.element).height() + "px",
559
+ "opacity": "1.0"
560
+ });
561
+ $(this.gestureOverlay).show();
562
+
563
+ this.gestureOverlayTimeoutID = setTimeout(function() {
564
+ self.gestureOverlay.fadeOut(2000);
565
+ }, 2000);
566
+ }
567
+
568
  WPGMZA.OLMap.prototype.onElementResized = function(event)
569
  {
570
  this.olMap.updateSize();
js/v8/wp-google-maps.combined.js CHANGED
@@ -1910,7 +1910,13 @@ jQuery(function($) {
1910
  }
1911
 
1912
  // Check for no API key
1913
- if(WPGMZA.settings.engine == "google-maps" && (!WPGMZA.settings.wpgmza_google_maps_api_key || !WPGMZA.settings.wpgmza_google_maps_api_key.length))
 
 
 
 
 
 
1914
  this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key, ["https://www.wpgmaps.com/get-a-google-maps-api-key/"]);
1915
  }
1916
 
@@ -9522,6 +9528,56 @@ jQuery(function($) {
9522
 
9523
  }, this);
9524
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9525
  // Controls
9526
  this.olMap.getControls().forEach(function(control) {
9527
 
@@ -9975,6 +10031,26 @@ jQuery(function($) {
9975
  }
9976
  }
9977
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9978
  WPGMZA.OLMap.prototype.onElementResized = function(event)
9979
  {
9980
  this.olMap.updateSize();
1910
  }
1911
 
1912
  // Check for no API key
1913
+ if(
1914
+ WPGMZA.settings.engine == "google-maps"
1915
+ &&
1916
+ (!WPGMZA.settings.wpgmza_google_maps_api_key || !WPGMZA.settings.wpgmza_google_maps_api_key.length)
1917
+ &&
1918
+ WPGMZA.getCurrentPage() != WPGMZA.PAGE_MAP_EDIT
1919
+ )
1920
  this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key, ["https://www.wpgmaps.com/get-a-google-maps-api-key/"]);
1921
  }
1922
 
9528
 
9529
  }, this);
9530
 
9531
+ // Cooperative gesture handling
9532
+ if(!(this.wpgmza_force_greedy_gestures == "greedy" || this.wpgmza_force_greedy_gestures == "yes"))
9533
+ {
9534
+ this.gestureOverlay = $("<div class='wpgmza-gesture-overlay'></div>")
9535
+ this.gestureOverlayTimeoutID = null;
9536
+
9537
+ if(WPGMZA.isTouchDevice())
9538
+ {
9539
+ // On touch devices, require two fingers to drag and pan
9540
+ this.olMap.getInteractions().forEach(function(interaction) {
9541
+
9542
+ if(interaction instanceof ol.interaction.DragPan)
9543
+ self.olMap.removeInteraction(interaction);
9544
+
9545
+ });
9546
+
9547
+ this.olMap.addInteraction(new ol.interaction.DragPan({
9548
+
9549
+ condition: function(olBrowserEvent) {
9550
+
9551
+ var allowed = olBrowserEvent.originalEvent.touches.length == 2;
9552
+
9553
+ if(!allowed)
9554
+ self.showGestureOverlay();
9555
+
9556
+ return allowed;
9557
+ }
9558
+
9559
+ }));
9560
+
9561
+ this.gestureOverlay.text(WPGMZA.localized_strings.use_two_fingers);
9562
+ }
9563
+ else
9564
+ {
9565
+ // On desktops, require Ctrl + zoom to zoom, show an overlay if that condition is not met
9566
+ this.olMap.on("wheel", function(event) {
9567
+
9568
+ if(!ol.events.condition.platformModifierKeyOnly(event))
9569
+ {
9570
+ self.showGestureOverlay();
9571
+ event.originalEvent.preventDefault();
9572
+ return false;
9573
+ }
9574
+
9575
+ });
9576
+
9577
+ this.gestureOverlay.text(WPGMZA.localized_strings.use_ctrl_scroll_to_zoom);
9578
+ }
9579
+ }
9580
+
9581
  // Controls
9582
  this.olMap.getControls().forEach(function(control) {
9583
 
10031
  }
10032
  }
10033
 
10034
+ WPGMZA.OLMap.prototype.showGestureOverlay = function()
10035
+ {
10036
+ var self = this;
10037
+
10038
+ clearTimeout(this.gestureOverlayTimeoutID);
10039
+
10040
+ $(this.gestureOverlay).stop().animate({opacity: "100"});
10041
+ $(this.element).append(this.gestureOverlay);
10042
+
10043
+ $(this.gestureOverlay).css({
10044
+ "line-height": $(this.element).height() + "px",
10045
+ "opacity": "1.0"
10046
+ });
10047
+ $(this.gestureOverlay).show();
10048
+
10049
+ this.gestureOverlayTimeoutID = setTimeout(function() {
10050
+ self.gestureOverlay.fadeOut(2000);
10051
+ }, 2000);
10052
+ }
10053
+
10054
  WPGMZA.OLMap.prototype.onElementResized = function(event)
10055
  {
10056
  this.olMap.updateSize();
js/v8/wp-google-maps.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function($){function onScroll(event){$(".wpgmza_map").each(function(index,el){var isInView=WPGMZA.isElementInView(el);el.wpgmzaScrollIntoViewTriggerFlag?isInView||(el.wpgmzaScrollIntoViewTriggerFlag=!1):isInView&&($(el).trigger("mapscrolledintoview.wpgmza"),el.wpgmzaScrollIntoViewTriggerFlag=!0)})}var core={MARKER_PULL_DATABASE:"0",MARKER_PULL_XML:"1",PAGE_MAP_LIST:"map-list",PAGE_MAP_EDIT:"map-edit",PAGE_SETTINGS:"map-settings",PAGE_SUPPORT:"map-support",PAGE_CATEGORIES:"categories",PAGE_ADVANCED:"advanced",PAGE_CUSTOM_FIELDS:"custom-fields",maps:[],events:null,settings:null,restAPI:null,localized_strings:null,loadingHTML:'<div class="wpgmza-preloader"><div class="wpgmza-loader">...</div></div>',getCurrentPage:function(){switch(WPGMZA.getQueryParamValue("page")){case"wp-google-maps-menu":return window.location.href.match(/action=edit/)&&window.location.href.match(/map_id=\d+/)?WPGMZA.PAGE_MAP_EDIT:WPGMZA.PAGE_MAP_LIST;case"wp-google-maps-menu-settings":return WPGMZA.PAGE_SETTINGS;case"wp-google-maps-menu-support":return WPGMZA.PAGE_SUPPORT;case"wp-google-maps-menu-categories":return WPGMZA.PAGE_CATEGORIES;case"wp-google-maps-menu-advanced":return WPGMZA.PAGE_ADVANCED;case"wp-google-maps-menu-custom-fields":return WPGMZA.PAGE_CUSTOM_FIELDS;default:return null}},getScrollAnimationOffset:function(){return(WPGMZA.settings.scroll_animation_offset||0)+$("#wpadminbar").height()},getScrollAnimationDuration:function(){return WPGMZA.settings.scroll_animation_milliseconds?WPGMZA.settings.scroll_animation_milliseconds:500},animateScroll:function(element,milliseconds){var offset=WPGMZA.getScrollAnimationOffset();milliseconds||(milliseconds=WPGMZA.getScrollAnimationDuration()),$("html, body").animate({scrollTop:$(element).offset().top-offset},milliseconds)},extend:function(child,parent){var constructor=child;child.prototype=Object.create(parent.prototype),child.prototype.constructor=constructor},guid:function(){var d=(new Date).getTime();return"undefined"!=typeof performance&&"function"==typeof performance.now&&(d+=performance.now()),"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(c){var r=(d+16*Math.random())%16|0;return d=Math.floor(d/16),("x"===c?r:3&r|8).toString(16)})},hexOpacityToRGBA:function(colour,opacity){var hex=parseInt(colour.replace(/^#/,""),16);return[(16711680&hex)>>16,(65280&hex)>>8,255&hex,parseFloat(opacity)]},hexToRgba:function(hex){var c;return/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)?(3==(c=hex.substring(1).split("")).length&&(c=[c[0],c[0],c[1],c[1],c[2],c[2]]),c="0x"+c.join(""),{r:c>>16&255,g:c>>8&255,b:255&c,a:1}):0},rgbaToString:function(rgba){return"rgba("+rgba.r+", "+rgba.g+", "+rgba.b+", "+rgba.a+")"},latLngRegexp:/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,isLatLngString:function(str){if("string"!=typeof str)return null;str.match(/^\(.+\)$/)&&(str=str.replace(/^\(|\)$/,""));var m=str.match(WPGMZA.latLngRegexp);return m?new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])}):null},stringToLatLng:function(str){var result=WPGMZA.isLatLngString(str);if(!result)throw new Error("Not a valid latLng");return result},isHexColorString:function(str){return"string"==typeof str&&!!str.match(/#[0-9A-F]{6}/i)},imageDimensionsCache:{},getImageDimensions:function(src,callback){if(WPGMZA.imageDimensionsCache[src])callback(WPGMZA.imageDimensionsCache[src]);else{var img=document.createElement("img");img.onload=function(event){var result={width:img.width,height:img.height};WPGMZA.imageDimensionsCache[src]=result,callback(result)},img.src=src}},decodeEntities:function(input){return input.replace(/&(nbsp|amp|quot|lt|gt);/g,function(m,e){return m[e]}).replace(/&#(\d+);/gi,function(m,e){return String.fromCharCode(parseInt(e,10))})},isDeveloperMode:function(){return this.settings.developer_mode||window.Cookies&&window.Cookies.get("wpgmza-developer-mode")},isProVersion:function(){return"1"==this._isProVersion},openMediaDialog:function(callback){var file_frame;if(file_frame)return file_frame.uploader.uploader.param("post_id",set_to_post_id),void file_frame.open();(file_frame=wp.media.frames.file_frame=wp.media({title:"Select a image to upload",button:{text:"Use this image"},multiple:!1})).on("select",function(){attachment=file_frame.state().get("selection").first().toJSON(),callback(attachment.id,attachment.url)}),file_frame.open()},getCurrentPosition:function(callback,error,watch){var nativeFunction="getCurrentPosition";if(WPGMZA.userLocationDenied)error&&error({code:1,message:"Location unavailable"});else if(watch&&("userlocationupdated",nativeFunction="watchPosition",WPGMZA.getCurrentPosition(callback,!1)),navigator.geolocation){var options={enableHighAccuracy:!0};navigator.geolocation[nativeFunction]?navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){options.enableHighAccuracy=!1,navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){console.warn(err.code,err.message),1==err.code&&(WPGMZA.userLocationDenied=!0),error&&error(err)},options)},options):console.warn(nativeFunction+" is not available")}else console.warn("No geolocation available on this device")},watchPosition:function(callback,error){return WPGMZA.getCurrentPosition(callback,error,!0)},runCatchableTask:function(callback,friendlyErrorContainer){if(WPGMZA.isDeveloperMode())callback();else try{callback()}catch(e){var friendlyError=new WPGMZA.FriendlyError(e);$(friendlyErrorContainer).html(""),$(friendlyErrorContainer).append(friendlyError.element),$(friendlyErrorContainer).show()}},assertInstanceOf:function(instance,instanceName){var engine,fullInstanceName,pro=WPGMZA.isProVersion()?"Pro":"";switch(WPGMZA.settings.engine){case"open-layers":engine="OL";break;default:engine="Google"}if(fullInstanceName=WPGMZA[engine+pro+instanceName]?engine+pro+instanceName:WPGMZA[pro+instanceName]?pro+instanceName:WPGMZA[engine+instanceName]?engine+instanceName:instanceName,!(instance instanceof WPGMZA[fullInstanceName]))throw new Error("Object must be an instance of "+fullInstanceName+" (did you call a constructor directly, rather than createInstance?)")},getMapByID:function(id){return!WPGMZA.isProVersion()||MYMAP.map instanceof WPGMZA.Map?MYMAP.map:MYMAP[id].map},isGoogleAutocompleteSupported:function(){return"object"==typeof google&&"object"==typeof google.maps&&"object"==typeof google.maps.places&&"function"==typeof google.maps.places.Autocomplete},googleAPIStatus:window.wpgmza_google_api_status,isSafari:function(){var ua=navigator.userAgent.toLowerCase();return ua.match(/safari/i)&&!ua.match(/chrome/i)},isTouchDevice:function(){return"ontouchstart"in window},isDeviceiOS:function(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||!!navigator.platform&&/iPad|iPhone|iPod/.test(navigator.platform)},isModernComponentStyleAllowed:function(){return!WPGMZA.settings.user_interface_style||"legacy"==WPGMZA.settings.user_interface_style||"modern"==WPGMZA.settings.user_interface_style},isElementInView:function(element){var pageTop=$(window).scrollTop(),pageBottom=pageTop+$(window).height(),elementTop=$(element).offset().top,elementBottom=elementTop+$(element).height();return elementTop<pageTop&&elementBottom>pageBottom||(elementTop>=pageTop&&elementTop<=pageBottom||elementBottom>=pageTop&&elementBottom<=pageBottom)},getQueryParamValue:function(name){var m,regex=new RegExp(name+"=([^&#]*)");return(m=window.location.href.match(regex))?m[1]:null},notification:function(text,time){switch(arguments.length){case 0:text="",time=4e3;break;case 1:time=4e3}var html='<div class="wpgmza-popup-notification">'+text+"</div>";jQuery("body").append(html),setTimeout(function(){jQuery("body").find(".wpgmza-popup-notification").remove()},time)}};window.WPGMZA?window.WPGMZA=$.extend(window.WPGMZA,core):window.WPGMZA=core;for(var key in WPGMZA_localized_data){var value=WPGMZA_localized_data[key];WPGMZA[key]=value}WPGMZA.settings.useLegacyGlobals=!0,jQuery(function($){$(window).trigger("ready.wpgmza"),$("script[src*='wp-google-maps.combined.js'], script[src*='wp-google-maps-pro.combined.js']").length&&console.warn("Minified script is out of date, using combined script instead.");var elements=$("script").filter(function(){return this.src.match(/(^|\/)jquery\.(min\.)?js(\?|$)/i)});elements.length>1&&console.warn("Multiple jQuery versions detected: ",elements),WPGMZA.restAPI=WPGMZA.RestAPI.createInstance(),$(document).on("click",".wpgmza_edit_btn",function(){WPGMZA.animateScroll("#wpgmaps_tabs_markers")})}),$(window).on("load",function(event){for(var key in[]){console.warn("The Array object has been extended incorrectly by your theme or another plugin. This can cause issues with functionality.");break}if("https:"!=window.location.protocol){var warning='<div class="notice notice-warning"><p>'+WPGMZA.localized_strings.unsecure_geolocation+"</p></div>";$(".wpgmza-geolocation-setting").each(function(index,el){$(el).after($(warning))})}}),$(window).on("scroll",onScroll),$(window).on("load",onScroll),WPGMZA.refreshOnLoad&&window.location.reload()}),jQuery(function($){WPGMZA.Compatibility=function(){this.preventDocumentWriteGoogleMapsAPI()},WPGMZA.Compatibility.prototype.preventDocumentWriteGoogleMapsAPI=function(){var old=document.write;document.write=function(content){content.match&&content.match(/maps\.google/)||old.call(document,content)}},WPGMZA.compatiblityModule=new WPGMZA.Compatibility}),function(root,factory){"object"==typeof exports?module.exports=factory(root):"function"==typeof define&&define.amd?define([],factory.bind(root,root)):factory(root)}("undefined"!=typeof global?global:this,function(root){if(root.CSS&&root.CSS.escape)return root.CSS.escape;var cssEscape=function(value){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var codeUnit,string=String(value),length=string.length,index=-1,result="",firstCodeUnit=string.charCodeAt(0);++index<length;)0!=(codeUnit=string.charCodeAt(index))?result+=codeUnit>=1&&codeUnit<=31||127==codeUnit||0==index&&codeUnit>=48&&codeUnit<=57||1==index&&codeUnit>=48&&codeUnit<=57&&45==firstCodeUnit?"\\"+codeUnit.toString(16)+" ":(0!=index||1!=length||45!=codeUnit)&&(codeUnit>=128||45==codeUnit||95==codeUnit||codeUnit>=48&&codeUnit<=57||codeUnit>=65&&codeUnit<=90||codeUnit>=97&&codeUnit<=122)?string.charAt(index):"\\"+string.charAt(index):result+="�";return result};return root.CSS||(root.CSS={}),root.CSS.escape=cssEscape,cssEscape}),jQuery(function($){function deg2rad(deg){return deg*(Math.PI/180)}Math.PI;WPGMZA.Distance={MILES:!0,KILOMETERS:!1,MILES_PER_KILOMETER:.621371,KILOMETERS_PER_MILE:1.60934,uiToMeters:function(uiDistance){return parseFloat(uiDistance)/(WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?WPGMZA.Distance.MILES_PER_KILOMETER:1)*1e3},uiToKilometers:function(uiDistance){return.001*WPGMZA.Distance.uiToMeters(uiDistance)},uiToMiles:function(uiDistance){return WPGMZA.Distance.uiToKilometers(uiDistance)*WPGMZA.Distance.MILES_PER_KILOMETER},kilometersToUI:function(km){return WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?km*WPGMZA.Distance.MILES_PER_KILOMETER:km},between:function(a,b){if(!(a instanceof WPGMZA.LatLng))throw new Error("First argument must be an instance of WPGMZA.LatLng");if(!(b instanceof WPGMZA.LatLng))throw new Error("Second argument must be an instance of WPGMZA.LatLng");if(a===b)return 0;var lat1=a.lat,lon1=a.lng,lat2=b.lat,lon2=b.lng,dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1),a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}}),jQuery(function($){WPGMZA.EliasFano=function(){if(!WPGMZA.EliasFano.isSupported)throw new Error("Elias Fano encoding is not supported on browsers without Uint8Array");WPGMZA.EliasFano.decodingTablesInitialised||WPGMZA.EliasFano.createDecodingTable()},WPGMZA.EliasFano.isSupported="Uint8Array"in window,WPGMZA.EliasFano.decodingTableHighBits=[],WPGMZA.EliasFano.decodingTableDocIDNumber=null,WPGMZA.EliasFano.decodingTableHighBitsCarryover=null,WPGMZA.EliasFano.createDecodingTable=function(){WPGMZA.EliasFano.decodingTableDocIDNumber=new Uint8Array(256),WPGMZA.EliasFano.decodingTableHighBitsCarryover=new Uint8Array(256);for(var decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,i=0;i<256;i++){var zeroCount=0;decodingTableHighBits[i]=[];for(var j=7;j>=0;j--)(i&1<<j)>0?(decodingTableHighBits[i][decodingTableDocIDNumber[i]]=zeroCount,decodingTableDocIDNumber[i]++,zeroCount=0):zeroCount=(zeroCount+1)%255;decodingTableHighBitsCarryover[i]=zeroCount}WPGMZA.EliasFano.decodingTablesInitialised=!0},WPGMZA.EliasFano.prototype.encode=function(list){function toByte(n){return 255&n}var lastDocID=0,buffer1=0,bufferLength1=0,buffer2=0,bufferLength2=0;if(0==list.length)return result;var compressedBufferPointer1=0,compressedBufferPointer2=0,averageDelta=list[list.length-1]/list.length,averageDeltaLog=Math.log2(averageDelta),lowBitsLength=Math.floor(averageDeltaLog),lowBitsMask=(1<<lowBitsLength)-1,prev=null,maxCompressedSize=Math.floor((2+Math.ceil(Math.log2(averageDelta)))*list.length/8)+6,compressedBuffer=new Uint8Array(maxCompressedSize);lowBitsLength<0&&(lowBitsLength=0),compressedBufferPointer2=Math.floor(lowBitsLength*list.length/8+6),compressedBuffer[compressedBufferPointer1++]=toByte(list.length),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>8),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>16),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>24),compressedBuffer[compressedBufferPointer1++]=toByte(lowBitsLength),list.forEach(function(docID){var docIDDelta=docID-lastDocID-1;if(!$.isNumeric(docID))throw new Error("Value is not numeric");if(docID=parseInt(docID),null!==prev&&docID<=prev)throw new Error("Elias Fano encoding can only be used on a sorted, ascending list of unique integers.");for(prev=docID,buffer1<<=lowBitsLength,buffer1|=docIDDelta&lowBitsMask,bufferLength1+=lowBitsLength;bufferLength1>7;)bufferLength1-=8,compressedBuffer[compressedBufferPointer1++]=toByte(buffer1>>bufferLength1);var unaryCodeLength=1+(docIDDelta>>lowBitsLength);for(buffer2<<=unaryCodeLength,buffer2|=1,bufferLength2+=unaryCodeLength;bufferLength2>7;)bufferLength2-=8,compressedBuffer[compressedBufferPointer2++]=toByte(buffer2>>bufferLength2);lastDocID=docID}),bufferLength1>0&&(compressedBuffer[compressedBufferPointer1++]=toByte(buffer1<<8-bufferLength1)),bufferLength2>0&&(compressedBuffer[compressedBufferPointer2++]=toByte(buffer2<<8-bufferLength2));var result=new Uint8Array(compressedBuffer);return result.pointer=compressedBufferPointer2,result},WPGMZA.EliasFano.prototype.decode=function(compressedBuffer){var resultPointer=0,list=[],decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,lowBitsPointer=0,lastDocID=0,docID=0,docIDNumber=0,listCount=compressedBuffer[lowBitsPointer++];listCount|=compressedBuffer[lowBitsPointer++]<<8,listCount|=compressedBuffer[lowBitsPointer++]<<16,listCount|=compressedBuffer[lowBitsPointer++]<<24;var highBitsPointer,lowBitsLength=compressedBuffer[lowBitsPointer++],lowBitsCount=0,lowBits=0,cb=1;for(highBitsPointer=Math.floor(lowBitsLength*listCount/8+6);highBitsPointer<compressedBuffer.pointer;highBitsPointer++){docID+=decodingTableHighBitsCarryover[cb],docIDNumber=decodingTableDocIDNumber[cb=compressedBuffer[highBitsPointer]];for(var i=0;i<docIDNumber;i++){for(docID<<=lowBitsCount,docID|=lowBits&(1<<lowBitsCount)-1;lowBitsCount<lowBitsLength;)docID<<=8,docID|=lowBits=compressedBuffer[lowBitsPointer++],lowBitsCount+=8;docID>>=lowBitsCount-=lowBitsLength,docID+=(decodingTableHighBits[cb][i]<<lowBitsLength)+lastDocID+1,list[resultPointer++]=docID,lastDocID=docID,docID=0}}return list}}),jQuery(function($){WPGMZA.EventDispatcher=function(){WPGMZA.assertInstanceOf(this,"EventDispatcher"),this._listenersByType={}},WPGMZA.EventDispatcher.prototype.addEventListener=function(type,listener,thisObject,useCapture){var types=type.split(/\s+/);if(types.length>1)for(var i=0;i<types.length;i++)this.addEventListener(types[i],listener,thisObject,useCapture);else{if(!(listener instanceof Function))throw new Error("Listener must be a function");var target;target=this._listenersByType.hasOwnProperty(type)?this._listenersByType[type]:this._listenersByType[type]=[];var obj={listener:listener,thisObject:thisObject||this,useCapture:!!useCapture};target.push(obj)}},WPGMZA.EventDispatcher.prototype.on=WPGMZA.EventDispatcher.prototype.addEventListener,WPGMZA.EventDispatcher.prototype.removeEventListener=function(type,listener,thisObject,useCapture){var arr,obj;if(arr=this._listenersByType[type]){thisObject||(thisObject=this),useCapture=!!useCapture;for(var i=0;i<arr.length;i++)if(obj=arr[i],(1==arguments.length||obj.listener==listener)&&obj.thisObject==thisObject&&obj.useCapture==useCapture)return void arr.splice(i,1)}},WPGMZA.EventDispatcher.prototype.off=WPGMZA.EventDispatcher.prototype.removeEventListener,WPGMZA.EventDispatcher.prototype.hasEventListener=function(type){return!!_listenersByType[type]},WPGMZA.EventDispatcher.prototype.dispatchEvent=function(event){if(!(event instanceof WPGMZA.Event))if("string"==typeof event)event=new WPGMZA.Event(event);else{var src=event;event=new WPGMZA.Event;for(var name in src)event[name]=src[name]}event.target=this;for(var path=[],obj=this.parent;null!=obj;obj=obj.parent)path.unshift(obj);event.phase=WPGMZA.Event.CAPTURING_PHASE;for(var i=0;i<path.length&&!event._cancelled;i++)path[i]._triggerListeners(event);if(!event._cancelled){for(event.phase=WPGMZA.Event.AT_TARGET,this._triggerListeners(event),event.phase=WPGMZA.Event.BUBBLING_PHASE,i=path.length-1;i>=0&&!event._cancelled;i--)path[i]._triggerListeners(event);for(var topMostElement=this.element,obj=this.parent;null!=obj;obj=obj.parent)obj.element&&(topMostElement=obj.element);if(topMostElement){var customEvent={};for(var key in event){var value=event[key];"type"==key&&(value+=".wpgmza"),customEvent[key]=value}$(topMostElement).trigger(customEvent)}}},WPGMZA.EventDispatcher.prototype.trigger=WPGMZA.EventDispatcher.prototype.dispatchEvent,WPGMZA.EventDispatcher.prototype._triggerListeners=function(event){var arr,obj;if(arr=this._listenersByType[event.type])for(var i=0;i<arr.length;i++)obj=arr[i],(event.phase!=WPGMZA.Event.CAPTURING_PHASE||obj.useCapture)&&obj.listener.call(arr[i].thisObject,event)},WPGMZA.events=new WPGMZA.EventDispatcher}),jQuery(function($){WPGMZA.Event=function(options){if("string"==typeof options&&(this.type=options),this.bubbles=!0,this.cancelable=!0,this.phase=WPGMZA.Event.PHASE_CAPTURE,this.target=null,this._cancelled=!1,"object"==typeof options)for(var name in options)this[name]=options[name]},WPGMZA.Event.CAPTURING_PHASE=0,WPGMZA.Event.AT_TARGET=1,WPGMZA.Event.BUBBLING_PHASE=2,WPGMZA.Event.prototype.stopPropagation=function(){this._cancelled=!0}}),jQuery(function($){WPGMZA.FancyControls={formatToggleSwitch:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-round-flat"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)},formatToggleButton:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-yes-no"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(label).attr("data-on",WPGMZA.localized_strings.yes),$(label).attr("data-off",WPGMZA.localized_strings.no),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)}},$(".wpgmza-fancy-toggle-switch").each(function(index,el){WPGMZA.FancyControls.formatToggleSwitch(el)}),$(".wpgmza-fancy-toggle-button").each(function(index,el){WPGMZA.FancyControls.formatToggleButton(el)})}),jQuery(function($){WPGMZA.FriendlyError=function(){}}),jQuery(function($){WPGMZA.Geocoder=function(){WPGMZA.assertInstanceOf(this,"Geocoder")},WPGMZA.Geocoder.SUCCESS="success",WPGMZA.Geocoder.ZERO_RESULTS="zero-results",WPGMZA.Geocoder.FAIL="fail",WPGMZA.Geocoder.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLGeocoder;default:return WPGMZA.GoogleGeocoder}},WPGMZA.Geocoder.createInstance=function(){return new(WPGMZA.Geocoder.getConstructor())},WPGMZA.Geocoder.prototype.getLatLngFromAddress=function(options,callback){if(WPGMZA.isLatLngString(options.address)){var parts=options.address.split(/,\s*/),latLng=new WPGMZA.LatLng({lat:parseFloat(parts[0]),lng:parseFloat(parts[1])});latLng.latLng=latLng,callback([latLng],WPGMZA.Geocoder.SUCCESS)}},WPGMZA.Geocoder.prototype.getAddressFromLatLng=function(options,callback){callback([new WPGMZA.LatLng(options.latLng).toString()],WPGMZA.Geocoder.SUCCESS)},WPGMZA.Geocoder.prototype.geocode=function(options,callback){if("address"in options)return this.getLatLngFromAddress(options,callback);if("latLng"in options)return this.getAddressFromLatLng(options,callback);throw new Error("You must supply either a latLng or address")}}),jQuery(function($){WPGMZA.GoogleAPIErrorHandler=function(){var self=this;if("google-maps"==WPGMZA.settings.engine&&("map-edit"==WPGMZA.currentPage||0==WPGMZA.is_admin&&1==WPGMZA.userCanAdministrator)){this.element=$(WPGMZA.html.googleMapsAPIErrorDialog),1==WPGMZA.is_admin&&this.element.find(".wpgmza-front-end-only").remove(),this.errorMessageList=this.element.find(".wpgmza-google-api-error-list"),this.templateListItem=this.element.find("li.template").remove(),this.messagesAlreadyDisplayed={};var _error=console.error;console.error=function(message){self.onErrorMessage(message),_error.apply(this,arguments)},"google-maps"!=WPGMZA.settings.engine||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key,["https://www.wpgmaps.com/get-a-google-maps-api-key/"])}},WPGMZA.GoogleAPIErrorHandler.prototype.onErrorMessage=function(message){var m;if(message)if((m=message.match(/You have exceeded your (daily )?request quota for this API/))||(m=message.match(/This API project is not authorized to use this API/))||(m=message.match(/^Geocoding Service: .+/))){var urls=message.match(/http(s)?:\/\/[^\s]+/gm);this.addErrorMessage(m[0],urls)}else(m=message.match(/^Google Maps.+error: (.+)\s+(http(s?):\/\/.+)/m))&&this.addErrorMessage(m[1].replace(/([A-Z])/g," $1"),[m[2]])},WPGMZA.GoogleAPIErrorHandler.prototype.addErrorMessage=function(message,urls){var self=this;if(!this.messagesAlreadyDisplayed[message]){var li=this.templateListItem.clone();$(li).find(".wpgmza-message").html(message);var buttonContainer=$(li).find(".wpgmza-documentation-buttons"),buttonTemplate=$(li).find(".wpgmza-documentation-buttons>a");if(buttonTemplate.remove(),urls&&urls.length){for(var i=0;i<urls.length;i++){urls[i];var button=buttonTemplate.clone(),text=WPGMZA.localized_strings.documentation;button.attr("href",urls[i]),$(button).find("i").addClass("fa-external-link"),$(button).append(text)}buttonContainer.append(button)}$(this.errorMessageList).append(li),$("#wpgmza_map, .wpgmza_map").each(function(index,el){var container=$(el).find(".wpgmza-google-maps-api-error-overlay");0==container.length&&(container=$("<div class='wpgmza-google-maps-api-error-overlay'></div>")).html(self.element.html()),setTimeout(function(){$(el).append(container)},1e3)}),$(".gm-err-container").parent().css({"z-index":1}),this.messagesAlreadyDisplayed[message]=!0}},WPGMZA.googleAPIErrorHandler=new WPGMZA.GoogleAPIErrorHandler}),jQuery(function($){WPGMZA.InfoWindow=function(mapObject){var self=this;WPGMZA.EventDispatcher.call(this),WPGMZA.assertInstanceOf(this,"InfoWindow"),this.on("infowindowopen",function(event){self.onOpen(event)}),mapObject&&(this.mapObject=mapObject,this.state=WPGMZA.InfoWindow.STATE_CLOSED,mapObject.map?setTimeout(function(){self.onMapObjectAdded(event)},100):mapObject.addEventListener("added",function(event){self.onMapObjectAdded(event)}))},WPGMZA.InfoWindow.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.InfoWindow.prototype.constructor=WPGMZA.InfoWindow,WPGMZA.InfoWindow.OPEN_BY_CLICK=1,WPGMZA.InfoWindow.OPEN_BY_HOVER=2,WPGMZA.InfoWindow.STATE_OPEN="open",WPGMZA.InfoWindow.STATE_CLOSED="closed",WPGMZA.InfoWindow.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProInfoWindow:WPGMZA.OLInfoWindow;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProInfoWindow:WPGMZA.GoogleInfoWindow}},WPGMZA.InfoWindow.createInstance=function(mapObject){return new(this.getConstructor())(mapObject)},WPGMZA.InfoWindow.prototype.getContent=function(callback){var html="";this.mapObject instanceof WPGMZA.Marker&&(html=this.mapObject.address),callback(html)},WPGMZA.InfoWindow.prototype.open=function(map,mapObject){return this.mapObject=mapObject,!WPGMZA.settings.disable_infowindows&&"1"!=WPGMZA.settings.wpgmza_settings_disable_infowindows&&(!this.mapObject.disableInfoWindow&&(this.state=WPGMZA.InfoWindow.STATE_OPEN,!0))},WPGMZA.InfoWindow.prototype.close=function(){this.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(this.state=WPGMZA.InfoWindow.STATE_CLOSED,this.trigger("infowindowclose"))},WPGMZA.InfoWindow.prototype.setContent=function(options){},WPGMZA.InfoWindow.prototype.setOptions=function(options){},WPGMZA.InfoWindow.prototype.onMapObjectAdded=function(){1==this.mapObject.settings.infoopen&&this.open()},WPGMZA.InfoWindow.prototype.onOpen=function(){}}),jQuery(function($){WPGMZA.LatLng=function(arg,lng){if(this._lat=0,this._lng=0,0!=arguments.length)if(1==arguments.length){if("string"==typeof arg){var m;if(!(m=arg.match(WPGMZA.LatLng.REGEXP)))throw new Error("Invalid LatLng string");arg={lat:m[1],lng:m[3]}}if("object"!=typeof arg||!("lat"in arg&&"lng"in arg))throw new Error("Argument must be a LatLng literal");this.lat=arg.lat,this.lng=arg.lng}else this.lat=arg,this.lng=lng},WPGMZA.LatLng.REGEXP=/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,WPGMZA.LatLng.isValid=function(obj){return"object"==typeof obj&&("lat"in obj&&"lng"in obj)},WPGMZA.LatLng.isLatLngString=function(str){return"string"==typeof str&&!!str.match(WPGMZA.LatLng.REGEXP)},Object.defineProperty(WPGMZA.LatLng.prototype,"lat",{get:function(){return this._lat},set:function(val){if(!$.isNumeric(val))throw new Error("Latitude must be numeric");this._lat=parseFloat(val)}}),Object.defineProperty(WPGMZA.LatLng.prototype,"lng",{get:function(){return this._lng},set:function(val){if(!$.isNumeric(val))throw new Error("Longitude must be numeric");this._lng=parseFloat(val)}}),WPGMZA.LatLng.fromString=function(string){if(!WPGMZA.LatLng.isLatLngString(string))throw new Error("Not a valid latlng string");var m=string.match(WPGMZA.LatLng.REGEXP);return new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])})},WPGMZA.LatLng.prototype.toString=function(){return this._lat+", "+this._lng},WPGMZA.LatLng.fromCurrentPosition=function(callback,options){options||(options={}),callback&&WPGMZA.getCurrentPosition(function(position){var latLng=new WPGMZA.LatLng({lat:position.coords.latitude,lng:position.coords.longitude});options.geocodeAddress?WPGMZA.Geocoder.createInstance().getAddressFromLatLng({latLng:latLng},function(results){results.length&&(latLng.address=results[0]),callback(latLng)}):callback(latLng)})},WPGMZA.LatLng.fromGoogleLatLng=function(googleLatLng){return new WPGMZA.LatLng(googleLatLng.lat(),googleLatLng.lng())},WPGMZA.LatLng.toGoogleLatLngArray=function(arr){var result=[];return arr.forEach(function(nativeLatLng){if(!(nativeLatLng instanceof WPGMZA.LatLng||"lat"in nativeLatLng&&"lng"in nativeLatLng))throw new Error("Unexpected input");result.push(new google.maps.LatLng({lat:parseFloat(nativeLatLng.lat),lng:parseFloat(nativeLatLng.lng)}))}),result},WPGMZA.LatLng.prototype.toGoogleLatLng=function(){return new google.maps.LatLng({lat:this.lat,lng:this.lng})},WPGMZA.LatLng.prototype.toLatLngLiteral=function(){return{lat:this.lat,lng:this.lng}},WPGMZA.LatLng.prototype.moveByDistance=function(kilometers,heading){var delta=parseFloat(kilometers)/6371,theta=parseFloat(heading)/180*Math.PI,phi1=this.lat/180*Math.PI,lambda1=this.lng/180*Math.PI,sinPhi1=Math.sin(phi1),cosPhi1=Math.cos(phi1),sinDelta=Math.sin(delta),cosDelta=Math.cos(delta),sinTheta=Math.sin(theta),sinPhi2=sinPhi1*cosDelta+cosPhi1*sinDelta*Math.cos(theta),phi2=Math.asin(sinPhi2),y=sinTheta*sinDelta*cosPhi1,x=cosDelta-sinPhi1*sinPhi2,lambda2=lambda1+Math.atan2(y,x);this.lat=180*phi2/Math.PI,this.lng=180*lambda2/Math.PI},WPGMZA.LatLng.prototype.getGreatCircleDistance=function(arg1,arg2){var other,lat1=this.lat,lon1=this.lng;if(1==arguments.length)other=new WPGMZA.LatLng(arg1);else{if(2!=arguments.length)throw new Error("Invalid number of arguments");other=new WPGMZA.LatLng(arg1,arg2)}var lat2=other.lat,lon2=other.lng,phi1=lat1.toRadians(),phi2=lat2.toRadians(),deltaPhi=(lat2-lat1).toRadians(),deltaLambda=(lon2-lon1).toRadians(),a=Math.sin(deltaPhi/2)*Math.sin(deltaPhi/2)+Math.cos(phi1)*Math.cos(phi2)*Math.sin(deltaLambda/2)*Math.sin(deltaLambda/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}),jQuery(function($){WPGMZA.LatLngBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLngBounds){var other=southWest;this.south=other.south,this.north=other.north,this.west=other.west,this.east=other.east}else southWest&&northEast&&(this.south=southWest.lat,this.north=northEast.lat,this.west=southWest.lng,this.east=northEast.lng)},WPGMZA.LatLngBounds.fromGoogleLatLngBounds=function(googleLatLngBounds){if(!(googleLatLngBounds instanceof google.maps.LatLngBounds))throw new Error("Argument must be an instance of google.maps.LatLngBounds");var result=new WPGMZA.LatLngBounds,southWest=googleLatLngBounds.getSouthWest(),northEast=googleLatLngBounds.getNorthEast();return result.north=northEast.lat(),result.south=southWest.lat(),result.west=southWest.lng(),result.east=northEast.lng(),result},WPGMZA.LatLngBounds.prototype.isInInitialState=function(){return void 0==this.north&&void 0==this.south&&void 0==this.west&&void 0==this.east},WPGMZA.LatLngBounds.prototype.extend=function(latLng){if(latLng instanceof WPGMZA.LatLng||(latLng=new WPGMZA.LatLng(latLng)),this.isInInitialState())return this.north=this.south=latLng.lat,void(this.west=this.east=latLng.lng);latLng.lat<this.north&&(this.north=latLng.lat),latLng.lat>this.south&&(this.south=latLng.lat),latLng.lng<this.west&&(this.west=latLng.lng),latLng.lng>this.east&&(this.east=latLng.lng)},WPGMZA.LatLngBounds.prototype.extendByPixelMargin=function(map,x,arg){var y=x;if(!(map instanceof WPGMZA.Map))throw new Error("First argument must be an instance of WPGMZA.Map");if(this.isInInitialState())throw new Error("Cannot extend by pixels in initial state");arguments.length>=3&&(y=arg);var southWest=new WPGMZA.LatLng(this.south,this.west),northEast=new WPGMZA.LatLng(this.north,this.east);southWest=map.latLngToPixels(southWest),northEast=map.latLngToPixels(northEast),southWest.x-=x,southWest.y+=y,northEast.x+=x,northEast.y-=y,southWest=map.pixelsToLatLng(southWest.x,southWest.y),northEast=map.pixelsToLatLng(northEast.x,northEast.y);this.toString();this.north=northEast.lat,this.south=southWest.lat,this.west=southWest.lng,this.east=northEast.lng},WPGMZA.LatLngBounds.prototype.contains=function(latLng){if(!(latLng instanceof WPGMZA.LatLng))throw new Error("Argument must be an instance of WPGMZA.LatLng");return!(latLng.lat<Math.min(this.north,this.south))&&(!(latLng.lat>Math.max(this.north,this.south))&&(this.west<this.east?latLng.lng>=this.west&&latLng.lng<=this.east:latLng.lng<=this.west||latLng.lng>=this.east))},WPGMZA.LatLngBounds.prototype.toString=function(){return this.north+"N "+this.south+"S "+this.west+"W "+this.east+"E"},WPGMZA.LatLngBounds.prototype.toLiteral=function(){return{north:this.north,south:this.south,west:this.west,east:this.east}}}),jQuery(function($){"map-edit"==WPGMZA.currentPage&&(WPGMZA.MapEditPage=function(){this.themePanel=new WPGMZA.ThemePanel,this.themeEditor=new WPGMZA.ThemeEditor,this.map=WPGMZA.maps[0]},WPGMZA.MapEditPage.createInstance=function(){return WPGMZA.isProVersion()&&WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?new WPGMZA.ProMapEditPage:new WPGMZA.MapEditPage},$(window).on("load",function(event){WPGMZA.mapEditPage=WPGMZA.MapEditPage.createInstance()}))}),jQuery(function($){WPGMZA.MapObject=function(row){if(WPGMZA.assertInstanceOf(this,"MapObject"),WPGMZA.EventDispatcher.call(this),this.id=-1,this.map_id=null,this.guid=WPGMZA.guid(),this.modified=!0,this.settings={},row)for(var name in row)if("settings"==name){if(null==row.settings)this.settings={};else switch(typeof row.settings){case"string":this.settings=JSON.parse(row[name]);break;case"object":this.settings=row[name];break;default:throw new Error("Don't know how to interpret settings")}for(var name in this.settings){var value=this.settings[name];String(value).match(/^-?\d+$/)&&(this.settings[name]=parseInt(value))}}else this[name]=row[name]},WPGMZA.MapObject.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MapObject.prototype.constructor=WPGMZA.MapObject,WPGMZA.MapObject.prototype.parseGeometry=function(string){var pairs,coords,results=[];pairs=string.replace(/[^ ,\d\.\-+e]/g,"").split(",");for(var i=0;i<pairs.length;i++)coords=pairs[i].split(" "),results.push({lat:parseFloat(coords[1]),lng:parseFloat(coords[0])});return results},WPGMZA.MapObject.prototype.toJSON=function(){return{id:this.id,guid:this.guid,settings:this.settings}}}),jQuery(function($){var Parent=WPGMZA.MapObject;WPGMZA.Circle=function(options,engineCircle){WPGMZA.assertInstanceOf(this,"Circle"),this.center=new WPGMZA.LatLng,this.radius=100,Parent.apply(this,arguments)},WPGMZA.Circle.prototype=Object.create(Parent.prototype),WPGMZA.Circle.prototype.constructor=WPGMZA.Circle,WPGMZA.Circle.createInstance=function(options){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLCircle;break;default:constructor=WPGMZA.GoogleCircle}return new constructor(options)},WPGMZA.Circle.prototype.getCenter=function(){return this.center.clone()},WPGMZA.Circle.prototype.setCenter=function(latLng){this.center.lat=latLng.lat,this.center.lng=latLng.lng},WPGMZA.Circle.prototype.getRadius=function(){return this.radius},WPGMZA.Circle.prototype.setRadius=function(radius){this.radius=radius},WPGMZA.Circle.prototype.getMap=function(){return this.map},WPGMZA.Circle.prototype.setMap=function(map){this.map&&this.map.removeCircle(this),map&&map.addCircle(this)}}),jQuery(function($){WPGMZA.MapSettingsPage=function(){var self=this;this.updateEngineSpecificControls(),this.updateGDPRControls(),$("select[name='wpgmza_maps_engine']").on("change",function(event){self.updateEngineSpecificControls()}),$("input[name='wpgmza_gdpr_require_consent_before_load'], input[name='wpgmza_gdpr_require_consent_before_vgm_submit'], input[name='wpgmza_gdpr_override_notice']").on("change",function(event){self.updateGDPRControls()})},WPGMZA.MapSettingsPage.createInstance=function(){return new WPGMZA.MapSettingsPage},WPGMZA.MapSettingsPage.prototype.updateEngineSpecificControls=function(){var engine=$("select[name='wpgmza_maps_engine']").val();$("[data-required-maps-engine][data-required-maps-engine!='"+engine+"']").hide(),$("[data-required-maps-engine='"+engine+"']").show()},WPGMZA.MapSettingsPage.prototype.updateGDPRControls=function(){var showNoticeControls=$("input[name='wpgmza_gdpr_require_consent_before_load']").prop("checked"),vgmCheckbox=$("input[name='wpgmza_gdpr_require_consent_before_vgm_submit']");vgmCheckbox.length&&(showNoticeControls=showNoticeControls||vgmCheckbox.prop("checked"));var showOverrideTextarea=showNoticeControls&&$("input[name='wpgmza_gdpr_override_notice']").prop("checked");showNoticeControls?$("#wpgmza-gdpr-compliance-notice").show("slow"):$("#wpgmza-gdpr-compliance-notice").hide("slow"),showOverrideTextarea?$("#wpgmza_gdpr_override_notice_text").show("slow"):$("#wpgmza_gdpr_override_notice_text").hide("slow")},WPGMZA.MapSettingsPage.prototype.flushGeocodeCache=function(){(new WPGMZA.OLGeocoder).clearCache(function(response){jQuery("#wpgmza_flush_cache_btn").removeAttr("disabled")})},jQuery(function($){window.location.href.match(/wp-google-maps-menu-settings/)&&(WPGMZA.mapSettingsPage=WPGMZA.MapSettingsPage.createInstance(),jQuery(document).ready(function(){jQuery("#wpgmza_flush_cache_btn").on("click",function(){jQuery(this).attr("disabled","disabled"),WPGMZA.mapSettingsPage.flushGeocodeCache()})}))})}),jQuery(function($){WPGMZA.MapSettings=function(element){function addSettings(input){if(input)for(var key in input)if("other_settings"!=key){var value=input[key];String(value).match(/^-?\d+$/)&&(value=parseInt(value)),self[key]=value}}var json,self=this,str=element.getAttribute("data-settings");try{json=JSON.parse(str)}catch(e){str=str.replace(/\\%/g,"%"),str=str.replace(/\\\\"/g,'\\"');try{json=JSON.parse(str)}catch(e){json={},console.warn("Failed to parse map settings JSON")}}WPGMZA.assertInstanceOf(this,"MapSettings"),addSettings(WPGMZA.settings),addSettings(json),json&&json.other_settings&&addSettings(json.other_settings)},WPGMZA.MapSettings.prototype.toOLViewOptions=function(){function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}var self=this,options={center:ol.proj.fromLonLat([-119.4179,36.7783]),zoom:4};if("string"==typeof this.start_location){var coords=this.start_location.replace(/^\(|\)$/g,"").split(",");WPGMZA.isLatLngString(this.start_location)?options.center=ol.proj.fromLonLat([parseFloat(coords[1]),parseFloat(coords[0])]):console.warn("Invalid start location")}return this.center&&(options.center=ol.proj.fromLonLat([parseFloat(this.center.lng),parseFloat(this.center.lat)])),empty("map_start_lat")||empty("map_start_lng")||(options.center=ol.proj.fromLonLat([parseFloat(this.map_start_lng),parseFloat(this.map_start_lat)])),this.zoom&&(options.zoom=parseInt(this.zoom)),this.start_zoom&&(options.zoom=parseInt(this.start_zoom)),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options},WPGMZA.MapSettings.prototype.toGoogleMapsOptions=function(){function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}function formatCoord(coord){return $.isNumeric(coord)?coord:parseFloat(String(coord).replace(/[\(\)\s]/,""))}var self=this,latLngCoords=this.start_location&&this.start_location.length?this.start_location.split(","):[36.7783,-119.4179],latLng=new google.maps.LatLng(formatCoord(latLngCoords[0]),formatCoord(latLngCoords[1])),zoom=this.start_zoom?parseInt(this.start_zoom):4;!this.start_zoom&&this.zoom&&(zoom=parseInt(this.zoom));var options={zoom:zoom,center:latLng};switch(empty("center")||(options.center=new google.maps.LatLng({lat:parseFloat(this.center.lat),lng:parseFloat(this.center.lng)})),empty("map_start_lat")||empty("map_start_lng")||(options.center=new google.maps.LatLng({lat:parseFloat(this.map_start_lat),lng:parseFloat(this.map_start_lng)})),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options.zoomControl=!("yes"==this.wpgmza_settings_map_zoom),options.panControl=!("yes"==this.wpgmza_settings_map_pan),options.mapTypeControl=!("yes"==this.wpgmza_settings_map_type),options.streetViewControl=!("yes"==this.wpgmza_settings_map_streetview),options.fullscreenControl=!("yes"==this.wpgmza_settings_map_full_screen_control),options.draggable=!("yes"==this.wpgmza_settings_map_draggable),options.disableDoubleClickZoom="yes"==this.wpgmza_settings_map_clickzoom,this.wpgmza_settings_map_scroll&&(options.scrollwheel=!1),"greedy"==this.wpgmza_force_greedy_gestures||"yes"==this.wpgmza_force_greedy_gestures?options.gestureHandling="greedy":options.gestureHandling="cooperative",parseInt(this.type)){case 2:options.mapTypeId=google.maps.MapTypeId.SATELLITE;break;case 3:options.mapTypeId=google.maps.MapTypeId.HYBRID;break;case 4:options.mapTypeId=google.maps.MapTypeId.TERRAIN;break;default:options.mapTypeId=google.maps.MapTypeId.ROADMAP}return this.wpgmza_theme_data&&this.wpgmza_theme_data.length&&(options.styles=WPGMZA.GoogleMap.parseThemeData(this.wpgmza_theme_data)),options}}),jQuery(function($){function deg2rad(deg){return deg*(Math.PI/180)}WPGMZA.Map=function(element,options){if(WPGMZA.assertInstanceOf(this,"Map"),WPGMZA.EventDispatcher.call(this),!(element instanceof HTMLElement))throw new Error("Argument must be a HTMLElement");if(element.hasAttribute("data-map-id")?this.id=element.getAttribute("data-map-id"):this.id=1,!/\d+/.test(this.id))throw new Error("Map ID must be an integer");if(WPGMZA.maps.push(this),this.element=element,this.element.wpgmzaMap=this,this.engineElement=element,this.markers=[],this.polygons=[],this.polylines=[],this.circles=[],this.rectangles=[],this.loadSettings(options),this.shortcodeAttributes={},$(this.element).attr("data-shortcode-attributes"))try{this.shortcodeAttributes=JSON.parse($(this.element).attr("data-shortcode-attributes"))}catch(e){console.warn("Error parsing shortcode attributes")}WPGMZA.getCurrentPage()!=WPGMZA.PAGE_MAP_EDIT&&this.initStoreLocator(),this.markerFilter=WPGMZA.MarkerFilter.createInstance(this)},WPGMZA.Map.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.Map.prototype.constructor=WPGMZA.Map,WPGMZA.Map.nightTimeThemeData=[{elementType:"geometry",stylers:[{color:"#242f3e"}]},{elementType:"labels.text.fill",stylers:[{color:"#746855"}]},{elementType:"labels.text.stroke",stylers:[{color:"#242f3e"}]},{featureType:"administrative.locality",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"landscape",elementType:"geometry.fill",stylers:[{color:"#575663"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#263c3f"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#6b9a76"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#38414e"}]},{featureType:"road",elementType:"geometry.stroke",stylers:[{color:"#212a37"}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:"#9ca5b3"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#746855"}]},{featureType:"road.highway",elementType:"geometry.fill",stylers:[{color:"#80823e"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#1f2835"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#f3d19c"}]},{featureType:"transit",elementType:"geometry",stylers:[{color:"#2f3948"}]},{featureType:"transit.station",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#17263c"}]},{featureType:"water",elementType:"geometry.fill",stylers:[{color:"#1b737a"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#515c6d"}]},{featureType:"water",elementType:"labels.text.stroke",stylers:[{color:"#17263c"}]}],WPGMZA.Map.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMap:WPGMZA.OLMap;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMap:WPGMZA.GoogleMap}},WPGMZA.Map.createInstance=function(element,options){return new(WPGMZA.Map.getConstructor())(element,options)},Object.defineProperty(WPGMZA.Map.prototype,"lat",{get:function(){return this.getCenter().lat},set:function(value){var center=this.getCenter();center.lat=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"lng",{get:function(){return this.getCenter().lng},set:function(value){var center=this.getCenter();center.lng=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"zoom",{get:function(){return this.getZoom()},set:function(value){this.setZoom(value)}}),WPGMZA.Map.prototype.loadSettings=function(options){var settings=new WPGMZA.MapSettings(this.element);settings.other_settings;if(delete settings.other_settings,options)for(var key in options)settings[key]=options[key];this.settings=settings},WPGMZA.Map.prototype.initStoreLocator=function(){var storeLocatorElement=$(".wpgmza_sl_main_div");storeLocatorElement.length&&(this.storeLocator=WPGMZA.StoreLocator.createInstance(this,storeLocatorElement[0]))},WPGMZA.Map.prototype.setOptions=function(options){for(var name in options)this.settings[name]=options[name]};Math.PI;WPGMZA.Map.getGeographicDistance=function(lat1,lon1,lat2,lon2){var dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1),a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))},WPGMZA.Map.prototype.setCenter=function(latLng){if(!("lat"in latLng&&"lng"in latLng))throw new Error("Argument is not an object with lat and lng")},WPGMZA.Map.prototype.setDimensions=function(width,height){$(this.element).css({width:width}),$(this.engineElement).css({width:"100%",height:height})},WPGMZA.Map.prototype.addMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");marker.map=this,marker.parent=this,this.markers.push(marker),this.dispatchEvent({type:"markeradded",marker:marker}),marker.dispatchEvent({type:"added"})},WPGMZA.Map.prototype.removeMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");if(marker.map!==this)throw new Error("Wrong map error");marker.infoWindow&&marker.infoWindow.close(),marker.map=null,marker.parent=null,this.markers.splice(this.markers.indexOf(marker),1),this.dispatchEvent({type:"markerremoved",marker:marker}),marker.dispatchEvent({type:"removed"})},WPGMZA.Map.prototype.getMarkerByID=function(id){for(var i=0;i<this.markers.length;i++)if(this.markers[i].id==id)return this.markers[i];return null},WPGMZA.Map.prototype.getMarkerByTitle=function(title){if("string"==typeof title){for(i=0;i<this.markers.length;i++)if(this.markers[i].title==title)return this.markers[i]}else{if(!(title instanceof RegExp))throw new Error("Invalid argument");for(var i=0;i<this.markers.length;i++)if(title.test(this.markers[i].title))return this.markers[i]}return null},WPGMZA.Map.prototype.removeMarkerByID=function(id){var marker=this.getMarkerByID(id);marker&&this.removeMarker(marker)},WPGMZA.Map.prototype.addPolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");polygon.map=this,this.polygons.push(polygon),this.dispatchEvent({type:"polygonadded",polygon:polygon})},WPGMZA.Map.prototype.removePolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");if(polygon.map!==this)throw new Error("Wrong map error");polygon.map=null,this.polygons.splice(this.polygons.indexOf(polygon),1),this.dispatchEvent({type:"polygonremoved",polygon:polygon})},WPGMZA.Map.prototype.getPolygonByID=function(id){for(var i=0;i<this.polygons.length;i++)if(this.polygons[i].id==id)return this.polygons[i];return null},WPGMZA.Map.prototype.removePolygonByID=function(id){var polygon=this.getPolygonByID(id);polygon&&this.removePolygon(polygon)},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.addPolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");polyline.map=this,this.polylines.push(polyline),this.dispatchEvent({type:"polylineadded",polyline:polyline})},WPGMZA.Map.prototype.removePolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");if(polyline.map!==this)throw new Error("Wrong map error");polyline.map=null,this.polylines.splice(this.polylines.indexOf(polyline),1),this.dispatchEvent({type:"polylineremoved",polyline:polyline})},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.removePolylineByID=function(id){var polyline=this.getPolylineByID(id);polyline&&this.removePolyline(polyline)},WPGMZA.Map.prototype.addCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");circle.map=this,this.circles.push(circle),this.dispatchEvent({type:"circleadded",circle:circle})},WPGMZA.Map.prototype.removeCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");if(circle.map!==this)throw new Error("Wrong map error");circle.map=null,this.circles.splice(this.circles.indexOf(circle),1),this.dispatchEvent({type:"circleremoved",circle:circle})},WPGMZA.Map.prototype.getCircleByID=function(id){for(var i=0;i<this.circles.length;i++)if(this.circles[i].id==id)return this.circles[i];return null},WPGMZA.Map.prototype.removeCircleByID=function(id){var circle=this.getCircleByID(id);circle&&this.removeCircle(circle)},WPGMZA.Map.prototype.nudgeLatLng=function(latLng,x,y){var pixels=this.latLngToPixels(latLng);if(pixels.x+=parseFloat(x),pixels.y+=parseFloat(y),isNaN(pixels.x)||isNaN(pixels.y))throw new Error("Invalid coordinates supplied");return this.pixelsToLatLng(pixels)},WPGMZA.Map.prototype.nudge=function(x,y){var nudged=this.nudgeLatLng(this.getCenter(),x,y);this.setCenter(nudged)},WPGMZA.Map.prototype.animateNudge=function(x,y,origin,milliseconds){var nudged;if(origin){if(!(origin instanceof WPGMZA.LatLng))throw new Error("Origin must be an instance of WPGMZA.LatLng")}else origin=this.getCenter();nudged=this.nudgeLatLng(origin,x,y),milliseconds||(milliseconds=WPGMZA.getScrollAnimationDuration()),$(this).animate({lat:nudged.lat,lng:nudged.lng},milliseconds)},WPGMZA.Map.prototype.onWindowResize=function(event){},WPGMZA.Map.prototype.onElementResized=function(event){},WPGMZA.Map.prototype.onBoundsChanged=function(event){this.trigger("boundschanged"),this.trigger("bounds_changed")},WPGMZA.Map.prototype.onIdle=function(event){this.trigger("idle")},WPGMZA.Map.prototype.hasVisibleMarkers=function(event){var markers_visible=0;for(var marker_id in marker_array){var marker=marker_array[marker_id];if(marker.isFilterable&&marker.getMap()){markers_visible++;break}}return markers_visible>0},WPGMZA.Map.prototype.closeAllInfoWindows=function(){this.markers.forEach(function(marker){marker.infoWindow&&marker.infoWindow.close()})}}),jQuery(function($){WPGMZA.MapsEngineDialog=function(element){var self=this;this.element=element,window.wpgmzaUnbindSaveReminder&&window.wpgmzaUnbindSaveReminder(),$(element).show(),$(element).remodal().open(),$(element).find("input:radio").on("change",function(event){$("#wpgmza-confirm-engine").prop("disabled",!1)}),$("#wpgmza-confirm-engine").on("click",function(event){self.onButtonClicked(event)})},WPGMZA.MapsEngineDialog.prototype.onButtonClicked=function(event){$(event.target).prop("disabled",!0),$.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_maps_engine_dialog_set_engine",engine:$("[name='wpgmza_maps_engine']:checked").val(),nonce:$("#wpgmza-maps-engine-dialog").attr("data-ajax-nonce")},success:function(response,status,xhr){window.location.reload()}})},$(window).on("load",function(event){var element=$("#wpgmza-maps-engine-dialog");element.length&&(WPGMZA.settings.wpgmza_maps_engine_dialog_done||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||(WPGMZA.mapsEngineDialog=new WPGMZA.MapsEngineDialog(element)))})}),jQuery(function($){WPGMZA.MarkerFilter=function(map){WPGMZA.EventDispatcher.call(this),this.map=map},WPGMZA.MarkerFilter.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MarkerFilter.prototype.constructor=WPGMZA.MarkerFilter,WPGMZA.MarkerFilter.createInstance=function(map){return new WPGMZA.MarkerFilter(map)},WPGMZA.MarkerFilter.prototype.getFilteringParameters=function(){var params={map_id:this.map.id};return this.map.storeLocator&&(params=$.extend(params,this.map.storeLocator.getFilteringParameters())),params},WPGMZA.MarkerFilter.prototype.update=function(){},WPGMZA.MarkerFilter.prototype.onFilteringComplete=function(results){}}),jQuery(function($){WPGMZA.Marker=function(row){var self=this;this._offset={x:0,y:0},WPGMZA.assertInstanceOf(this,"Marker"),this.lat="36.778261",this.lng="-119.4179323999",this.address="California",this.title=null,this.description="",this.link="",this.icon="",this.approved=1,this.pic=null,this.isFilterable=!0,this.disableInfoWindow=!1,WPGMZA.MapObject.apply(this,arguments),row&&row.heatmap||(row&&this.on("init",function(event){row.position&&this.setPosition(row.position),row.map&&row.map.addMarker(this)}),this.addEventListener("added",function(event){self.onAdded(event)}),this.handleLegacyGlobals(row))},WPGMZA.Marker.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Marker.prototype.constructor=WPGMZA.Marker,WPGMZA.Marker.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMarker:WPGMZA.OLMarker;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMarker:WPGMZA.GoogleMarker}},WPGMZA.Marker.createInstance=function(row){return new(WPGMZA.Marker.getConstructor())(row)},WPGMZA.Marker.ANIMATION_NONE="0",WPGMZA.Marker.ANIMATION_BOUNCE="1",WPGMZA.Marker.ANIMATION_DROP="2",Object.defineProperty(WPGMZA.Marker.prototype,"offsetX",{get:function(){return this._offset.x},set:function(value){this._offset.x=value,this.updateOffset()}}),Object.defineProperty(WPGMZA.Marker.prototype,"offsetY",{get:function(){return this._offset.y},set:function(value){this._offset.y=value,this.updateOffset()}}),WPGMZA.Marker.prototype.onAdded=function(event){var self=this;this.addEventListener("click",function(event){self.onClick(event)}),this.addEventListener("mouseover",function(event){self.onMouseOver(event)}),this.addEventListener("select",function(event){self.onSelect(event)}),this.map.settings.marker==this.id&&self.trigger("select"),"1"==this.infoopen&&this.openInfoWindow()},WPGMZA.Marker.prototype.handleLegacyGlobals=function(row){if(WPGMZA.settings.useLegacyGlobals&&this.map_id&&this.id){var m;if(!(WPGMZA.pro_version&&(m=WPGMZA.pro_version.match(/\d+/))&&m[0]<=7)){window.marker_array||(window.marker_array={}),marker_array[this.map_id]||(marker_array[this.map_id]=[]),marker_array[this.map_id][this.id]=this,window.wpgmaps_localize_marker_data||(window.wpgmaps_localize_marker_data={}),wpgmaps_localize_marker_data[this.map_id]||(wpgmaps_localize_marker_data[this.map_id]=[]);var cloned=$.extend({marker_id:this.id},row);wpgmaps_localize_marker_data[this.map_id][this.id]=cloned}}},WPGMZA.Marker.prototype.initInfoWindow=function(){this.infoWindow||(this.infoWindow=WPGMZA.InfoWindow.createInstance())},WPGMZA.Marker.prototype.openInfoWindow=function(){this.map?("map-edit"!=WPGMZA.currentPage||WPGMZA.pro_version)&&(this.map.lastInteractedMarker&&this.map.lastInteractedMarker.infoWindow.close(),this.map.lastInteractedMarker=this,this.initInfoWindow(),this.infoWindow.open(this.map,this)):console.warn("Cannot open infowindow for marker with no map")},WPGMZA.Marker.prototype.onClick=function(event){},WPGMZA.Marker.prototype.onSelect=function(event){this.openInfoWindow()},WPGMZA.Marker.prototype.onMouseOver=function(event){this.map.settings.info_window_open_by==WPGMZA.InfoWindow.OPEN_BY_HOVER&&this.openInfoWindow()},WPGMZA.Marker.prototype.getIcon=function(){function stripProtocol(url){return"string"!=typeof url?url:url.replace(/^http(s?):/,"")}return stripProtocol(WPGMZA.defaultMarkerIcon?WPGMZA.defaultMarkerIcon:WPGMZA.settings.default_marker_icon)},WPGMZA.Marker.prototype.getPosition=function(){return new WPGMZA.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})},WPGMZA.Marker.prototype.setPosition=function(latLng){latLng instanceof WPGMZA.LatLng?(this.lat=latLng.lat,this.lng=latLng.lng):(this.lat=parseFloat(latLng.lat),this.lng=parseFloat(latLng.lng))},WPGMZA.Marker.prototype.setOffset=function(x,y){this._offset.x=x,this._offset.y=y,this.updateOffset()},WPGMZA.Marker.prototype.updateOffset=function(){},WPGMZA.Marker.prototype.getAnimation=function(animation){return this.settings.animation},WPGMZA.Marker.prototype.setAnimation=function(animation){this.settings.animation=animation},WPGMZA.Marker.prototype.getVisible=function(){},WPGMZA.Marker.prototype.setVisible=function(visible){!visible&&this.infoWindow&&this.infoWindow.close()},WPGMZA.Marker.prototype.getMap=function(){return this.map},WPGMZA.Marker.prototype.setMap=function(map){map?map.addMarker(this):this.map&&this.map.removeMarker(this),this.map=map},WPGMZA.Marker.prototype.getDraggable=function(){},WPGMZA.Marker.prototype.setDraggable=function(draggable){},WPGMZA.Marker.prototype.setOptions=function(options){},WPGMZA.Marker.prototype.setOpacity=function(opacity){},WPGMZA.Marker.prototype.panIntoView=function(){if(!this.map)throw new Error("Marker hasn't been added to a map");this.map.setCenter(this.getPosition())},WPGMZA.Marker.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this),position=this.getPosition();return $.extend(result,{lat:position.lat,lng:position.lng,address:this.address,title:this.title,description:this.description,link:this.link,icon:this.icon,pic:this.pic,approved:this.approved}),result}}),jQuery(function($){WPGMZA.ModernStoreLocatorCircle=function(map_id,settings){var map;map=WPGMZA.isProVersion()?this.map=MYMAP[map_id].map:this.map=MYMAP.map,this.map_id=map_id,this.mapElement=map.element,this.mapSize={width:$(this.mapElement).width(),height:$(this.mapElement).height()},this.initCanvasLayer(),this.settings={center:new WPGMZA.LatLng(0,0),radius:1,color:"#63AFF2",shadowColor:"white",shadowBlur:4,centerRingRadius:10,centerRingLineWidth:3,numInnerRings:9,innerRingLineWidth:1,innerRingFade:!0,numOuterRings:7,ringLineWidth:1,mainRingLineWidth:2,numSpokes:6,spokesStartAngle:Math.PI/2,numRadiusLabels:6,radiusLabelsStartAngle:Math.PI/2,radiusLabelFont:"13px sans-serif",visible:!1},settings&&this.setOptions(settings)},WPGMZA.ModernStoreLocatorCircle.createInstance=function(map,settings){return"google-maps"==WPGMZA.settings.engine?new WPGMZA.GoogleModernStoreLocatorCircle(map,settings):new WPGMZA.OLModernStoreLocatorCircle(map,settings)},WPGMZA.ModernStoreLocatorCircle.prototype.initCanvasLayer=function(){},WPGMZA.ModernStoreLocatorCircle.prototype.onResize=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.onUpdate=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.setOptions=function(options){for(var name in options){var functionName="set"+name.substr(0,1).toUpperCase()+name.substr(1);"function"==typeof this[functionName]?this[functionName](options[name]):this.settings[name]=options[name]}},WPGMZA.ModernStoreLocatorCircle.prototype.getResolutionScale=function(){return window.devicePixelRatio||1},WPGMZA.ModernStoreLocatorCircle.prototype.getCenter=function(){return this.getPosition()},WPGMZA.ModernStoreLocatorCircle.prototype.setCenter=function(value){this.setPosition(value)},WPGMZA.ModernStoreLocatorCircle.prototype.getPosition=function(){return this.settings.center},WPGMZA.ModernStoreLocatorCircle.prototype.setPosition=function(position){this.settings.center=position},WPGMZA.ModernStoreLocatorCircle.prototype.getRadius=function(){return this.settings.radius},WPGMZA.ModernStoreLocatorCircle.prototype.setRadius=function(radius){if(isNaN(radius))throw new Error("Invalid radius");this.settings.radius=radius},WPGMZA.ModernStoreLocatorCircle.prototype.getVisible=function(){return this.settings.visible},WPGMZA.ModernStoreLocatorCircle.prototype.setVisible=function(visible){this.settings.visible=visible},WPGMZA.ModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getContext=function(type){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.validateSettings=function(){WPGMZA.isHexColorString(this.settings.color)||(this.settings.color="#63AFF2")},WPGMZA.ModernStoreLocatorCircle.prototype.draw=function(){this.validateSettings();var settings=this.settings,canvasDimensions=this.getCanvasDimensions(),canvasWidth=canvasDimensions.width,canvasHeight=canvasDimensions.height;this.map,this.getResolutionScale();if(context=this.getContext("2d"),context.clearRect(0,0,canvasWidth,canvasHeight),settings.visible){context.shadowColor=settings.shadowColor,context.shadowBlur=settings.shadowBlur,context.setTransform(1,0,0,1,0,0);var scale=this.getScale();context.scale(scale,scale);var offset=this.getWorldOriginOffset();context.translate(offset.x,offset.y);new WPGMZA.LatLng(this.settings.center);var worldPoint=this.getCenterPixels(),rgba=WPGMZA.hexToRgba(settings.color),ringSpacing=this.getTransformedRadius(settings.radius)/(settings.numInnerRings+1);context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.centerRingRadius)/scale,0,2*Math.PI),context.stroke(),context.closePath();var end,spokeAngle,radius=this.getTransformedRadius(settings.radius)+ringSpacing*settings.numOuterRings+1,grad=context.createRadialGradient(0,0,0,0,0,radius),rgba=WPGMZA.hexToRgba(settings.color),start=WPGMZA.rgbaToString(rgba);rgba.a=0,end=WPGMZA.rgbaToString(rgba),grad.addColorStop(0,start),grad.addColorStop(1,end),context.save(),context.translate(worldPoint.x,worldPoint.y),context.strokeStyle=grad,context.lineWidth=2/scale;for(i=0;i<settings.numSpokes;i++)spokeAngle=settings.spokesStartAngle+2*Math.PI*(i/settings.numSpokes),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.setLineDash([2/scale,15/scale]),context.beginPath(),context.moveTo(0,0),context.lineTo(x,y),context.stroke();context.setLineDash([]),context.restore(),context.lineWidth=1/scale*settings.innerRingLineWidth;for(i=1;i<=settings.numInnerRings;i++){radius=i*ringSpacing;settings.innerRingFade&&(rgba.a=1-(i-1)/settings.numInnerRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath()}context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.radius),0,2*Math.PI),context.stroke(),context.closePath();for(var radius=radius+ringSpacing,i=0;i<settings.numOuterRings;i++)settings.innerRingFade&&(rgba.a=1-i/settings.numOuterRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath(),radius+=ringSpacing;if(settings.numRadiusLabels>0){var m,x,y,radius=this.getTransformedRadius(settings.radius);(m=settings.radiusLabelFont.match(/(\d+)px/))&&parseInt(m[1])/2*1.1/scale,context.font=settings.radiusLabelFont,context.textAlign="center",context.textBaseline="middle",context.fillStyle=settings.color,context.save(),context.translate(worldPoint.x,worldPoint.y);for(i=0;i<settings.numRadiusLabels;i++){var width,textAngle=(spokeAngle=settings.radiusLabelsStartAngle+2*Math.PI*(i/settings.numRadiusLabels))+Math.PI/2,text=settings.radiusString;Math.sin(spokeAngle)>0&&(textAngle-=Math.PI),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.save(),context.translate(x,y),context.rotate(textAngle),context.scale(1/scale,1/scale),width=context.measureText(text).width,height=width/2,context.clearRect(-width,-height,2*width,2*height),context.fillText(settings.radiusString,0,0),context.restore()}context.restore()}}}}),jQuery(function($){WPGMZA.ModernStoreLocator=function(map_id){var original,self=this,map=WPGMZA.getMapByID(map_id);if(WPGMZA.assertInstanceOf(this,"ModernStoreLocator"),(original=WPGMZA.isProVersion()?$(".wpgmza_sl_search_button[mid='"+map_id+"'], .wpgmza_sl_search_button_"+map_id).closest(".wpgmza_sl_main_div"):$(".wpgmza_sl_search_button").closest(".wpgmza_sl_main_div")).length){this.element=$("<div class='wpgmza-modern-store-locator'><div class='wpgmza-inner wpgmza-modern-hover-opaque'/></div>")[0];var addressInput,inner=$(this.element).find(".wpgmza-inner");addressInput=WPGMZA.isProVersion()?$(original).find(".addressInput"):$(original).find("#addressInput"),wpgmaps_localize[map_id].other_settings.store_locator_query_string&&wpgmaps_localize[map_id].other_settings.store_locator_query_string.length&&addressInput.attr("placeholder",wpgmaps_localize[map_id].other_settings.store_locator_query_string),inner.append(addressInput);var titleSearch=$(original).find("[id='nameInput_"+map_id+"']");if(titleSearch.length){var placeholder=wpgmaps_localize[map_id].other_settings.store_locator_name_string;placeholder&&placeholder.length&&titleSearch.attr("placeholder",placeholder),inner.append(titleSearch)}var button;(button=$(original).find("button.wpgmza-use-my-location"))&&inner.append(button),$(addressInput).on("keydown keypress",function(event){13==event.keyCode&&self.searchButton.is(":visible")&&self.searchButton.trigger("click")}),$(addressInput).on("input",function(event){self.searchButton.show(),self.resetButton.hide()}),inner.append($(original).find("select.wpgmza_sl_radius_select")),this.searchButton=$(original).find(".wpgmza_sl_search_button, .wpgmza_sl_search_button_div"),inner.append(this.searchButton),this.resetButton=$(original).find(".wpgmza_sl_reset_button_div"),inner.append(this.resetButton),this.resetButton.on("click",function(event){resetLocations(map_id)}),this.resetButton.hide(),WPGMZA.isProVersion()&&(this.searchButton.on("click",function(event){0!=$("addressInput_"+map_id).val()&&(self.searchButton.hide(),self.resetButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_APPLIED)}),this.resetButton.on("click",function(event){self.resetButton.hide(),self.searchButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_INITIAL})),inner.append($("#wpgmza_distance_type_"+map_id));var container=$(original).find(".wpgmza_cat_checkbox_holder"),numCategories=($(container).children("ul"),0),icons=[];$(container).find("li").each(function(index,el){var id=$(el).attr("class").match(/\d+/);for(var category_id in wpgmza_category_data)if(id==category_id){var src=wpgmza_category_data[category_id].image,icon=$('<div class="wpgmza-chip-icon"/>');icon.css({"background-image":"url('"+src+"')",width:$("#wpgmza_cat_checkbox_"+category_id+" + label").height()+"px"}),icons.push(icon),null!=src&&""!=src&&$("#wpgmza_cat_checkbox_"+category_id+" + label").prepend(icon),numCategories++;break}}),$(this.element).append(container),numCategories&&(this.optionsButton=$('<span class="wpgmza_store_locator_options_button"><i class="fa fa-list"></i></span>'),$(this.searchButton).before(this.optionsButton)),setInterval(function(){icons.forEach(function(icon){var height=$(icon).height();$(icon).css({width:height+"px"}),$(icon).closest("label").css({"padding-left":height+8+"px"})}),$(container).css("width",$(self.element).find(".wpgmza-inner").outerWidth()+"px")},1e3),$(this.element).find(".wpgmza_store_locator_options_button").on("click",function(event){container.hasClass("wpgmza-open")?container.removeClass("wpgmza-open"):container.addClass("wpgmza-open")}),$(original).remove(),$(this.element).find("input, select").on("focus",function(){$(inner).addClass("active")}),$(this.element).find("input, select").on("blur",function(){$(inner).removeClass("active")}),$(this.element).on("mouseover","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseOverCategory(event)}),$(this.element).on("mouseleave","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseLeaveCategory(event)}),$(map.markerFilter).on("filteringcomplete",function(event){this.map.hasVisibleMarkers()||alert(WPGMZA.localized_strings.zero_results)})}},WPGMZA.ModernStoreLocator.createInstance=function(map_id){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLModernStoreLocator(map_id);default:return new WPGMZA.GoogleModernStoreLocator(map_id)}},WPGMZA.ModernStoreLocator.prototype.onMouseOverCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeIn()},WPGMZA.ModernStoreLocator.prototype.onMouseLeaveCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeOut()}}),jQuery(function($){WPGMZA.NativeMapsAppIcon=function(){navigator.userAgent.match(/^Apple|iPhone|iPad|iPod/)?(this.type="apple",this.element=$('<span><i class="fab fa fa-apple" aria-hidden="true"></i></span>')):(this.type="google",this.element=$('<span><i class="fab fa fa-google" aria-hidden="true"></i></span>'))}}),jQuery(function($){Uint8Array.prototype.slice||Object.defineProperty(Uint8Array.prototype,"slice",{value:function(begin,end){return new Uint8Array(Array.prototype.slice.call(this,begin,end))}}),WPGMZA.isSafari()&&!window.external&&(window.external={})}),jQuery(function($){WPGMZA.Polygon=function(row,enginePolygon){WPGMZA.assertInstanceOf(this,"Polygon"),this.paths=null,this.title=null,this.name=null,this.link=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polygon.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polygon.prototype.constructor=WPGMZA.Polygon,WPGMZA.Polygon.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProPolygon:WPGMZA.OLPolygon;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProPolygon:WPGMZA.GooglePolygon}},WPGMZA.Polygon.createInstance=function(row,engineObject){return new(WPGMZA.Polygon.getConstructor())(row,engineObject)},WPGMZA.Polygon.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this);return $.extend(result,{name:this.name,title:this.title,link:this.link}),result}}),jQuery(function($){WPGMZA.Polyline=function(row,googlePolyline){WPGMZA.assertInstanceOf(this,"Polyline"),this.title=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polyline.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polyline.prototype.constructor=WPGMZA.Polyline,WPGMZA.Polyline.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLPolyline;default:return WPGMZA.GooglePolyline}},WPGMZA.Polyline.createInstance=function(row,engineObject){return new(WPGMZA.Polyline.getConstructor())(row,engineObject)},WPGMZA.Polyline.prototype.getPoints=function(){return this.toJSON().points},WPGMZA.Polyline.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this);return result.title=this.title,result}}),jQuery(function($){WPGMZA.PopoutPanel=function(element){this.element=element},WPGMZA.PopoutPanel.prototype.open=function(){$(this.element).addClass("wpgmza-open")},WPGMZA.PopoutPanel.prototype.close=function(){$(this.element).removeClass("wpgmza-open")}}),jQuery(function($){function sendAJAXFallbackRequest(route,params){if((params=$.extend({},params)).data||(params.data={}),"route"in params.data)throw new Error("Cannot send route through this method");if("action"in params.data)throw new Error("Cannot send action through this method");return params.data.route=route,params.data.action="wpgmza_rest_api_request",WPGMZA.restAPI.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_AJAX),$.ajax(WPGMZA.ajaxurl,params)}WPGMZA.RestAPI=function(){WPGMZA.RestAPI.URL=WPGMZA.resturl,this.useAJAXFallback=!1},WPGMZA.RestAPI.CONTEXT_REST="REST",WPGMZA.RestAPI.CONTEXT_AJAX="AJAX",WPGMZA.RestAPI.createInstance=function(){return new WPGMZA.RestAPI},Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableSupported",{get:function(){return WPGMZA.serverCanInflate&&"Uint8Array"in window&&"TextEncoder"in window}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableAllowed",{get:function(){return!WPGMZA.pro_version||WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?!WPGMZA.settings.disable_compressed_path_variables:WPGMZA.settings.enable_compressed_path_variables}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"maxURLLength",{get:function(){return 2083}}),WPGMZA.RestAPI.prototype.compressParams=function(params){var suffix="";if(params.markerIDs){var markerIDs=params.markerIDs.split(",");if(markerIDs.length>1){var encoded=(encoder=new WPGMZA.EliasFano).encode(markerIDs),compressed=pako.deflate(encoded),string=Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join("");suffix="/"+btoa(string).replace(/\//g,"-").replace(/=+$/,""),params.midcbp=encoded.pointer,delete params.markerIDs}}var string=JSON.stringify(params),encoder=new TextEncoder,input=encoder.encode(string),compressed=pako.deflate(input),raw=Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join("");return btoa(raw).replace(/\//g,"-").replace(/=+$/,"")+suffix},WPGMZA.RestAPI.prototype.getNonce=function(route){var matches=[];for(var pattern in WPGMZA.restnoncetable){var regex=new RegExp(pattern);route.match(regex)&&matches.push({pattern:pattern,nonce:WPGMZA.restnoncetable[pattern],length:pattern.length})}if(!matches.length)throw new Error("No nonce found for route");return matches.sort(function(a,b){return b.length-a.length}),matches[0].nonce},WPGMZA.RestAPI.prototype.addNonce=function(route,params,context){var self=this,setRESTNonce=function(xhr){context==WPGMZA.RestAPI.CONTEXT_REST&&xhr.setRequestHeader("X-WP-Nonce",WPGMZA.restnonce),params&&params.method&&!params.method.match(/^GET$/i)&&xhr.setRequestHeader("X-WPGMZA-Action-Nonce",self.getNonce(route))};if(params.beforeSend){var base=params.beforeSend;params.beforeSend=function(xhr){base(xhr),setRESTNonce(xhr)}}else params.beforeSend=setRESTNonce},WPGMZA.RestAPI.prototype.call=function(route,params){if(this.useAJAXFallback)return sendAJAXFallbackRequest(route,params);var attemptedCompressedPathVariable=!1,fallbackRoute=route,fallbackParams=$.extend({},params);if("string"!=typeof route||!route.match(/^\//)&&!route.match(/^http/))throw new Error("Invalid route");if(WPGMZA.RestAPI.URL.match(/\/$/)&&(route=route.replace(/^\//,"")),params||(params={}),this.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_REST),params.error||(params.error=function(xhr,status,message){if("abort"!=status){switch(xhr.status){case 401:case 403:return $.post(WPGMZA.ajaxurl,{action:"wpgmza_report_rest_api_blocked"},function(response){}),console.warn("The REST API was blocked. This is usually due to security plugins blocking REST requests for non-authenticated users."),this.useAJAXFallback=!0,sendAJAXFallbackRequest(fallbackRoute,fallbackParams);case 414:if(!attemptedCompressedPathVariable)break;return fallbackParams.method="POST",fallbackParams.useCompressedPathVariable=!1,WPGMZA.restAPI.call(fallbackRoute,fallbackParams)}throw new Error(message)}}),params.useCompressedPathVariable&&this.isCompressedPathVariableSupported&&this.isCompressedPathVariableAllowed){var compressedParams=$.extend({},params),data=params.data,compressedRoute=route.replace(/\/$/,"")+"/base64"+this.compressParams(data);WPGMZA.RestAPI.URL;compressedParams.method="GET",delete compressedParams.data,!1===params.cache&&(compressedParams.data={skip_cache:1}),compressedRoute.length<this.maxURLLength?(attemptedCompressedPathVariable=!0,route=compressedRoute,params=compressedParams):(WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed||console.warn("Compressed path variable route would exceed URL length limit"),WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed=!0)}return WPGMZA.RestAPI.URL.match(/\?/)&&(route=route.replace(/\?/,"&")),$.ajax(WPGMZA.RestAPI.URL+route,params)};var nativeCallFunction=WPGMZA.RestAPI.call;WPGMZA.RestAPI.call=function(){console.warn("WPGMZA.RestAPI.call was called statically, did you mean to call the function on WPGMZA.restAPI?"),nativeCallFunction.apply(this,arguments)},$(document.body).on("click","#wpgmza-rest-api-blocked button.notice-dismiss",function(event){WPGMZA.restAPI.call("/rest-api/",{method:"POST",data:{dismiss_blocked_notice:!0}})})}),jQuery(function($){WPGMZA.SettingsPage=function(){$("#wpgmza-global-settings").tabs()},WPGMZA.SettingsPage.createInstance=function(){return new WPGMZA.SettingsPage},$(window).on("load",function(event){var useLegacyHTML=WPGMZA.settings.useLegacyHTML||!window.location.href.match(/no-legacy-html/);WPGMZA.getCurrentPage()!=WPGMZA.PAGE_SETTINGS||useLegacyHTML||(WPGMZA.settingsPage=WPGMZA.SettingsPage.createInstance())})}),jQuery(function($){WPGMZA.StoreLocator=function(map,element){var self=this;WPGMZA.EventDispatcher.call(this),this._center=null,this.map=map,this.element=element,this.state=WPGMZA.StoreLocator.STATE_INITIAL,$(element).find(".wpgmza-not-found-msg").hide(),this.map.on("storelocatorgeocodecomplete",function(event){self.onGeocodeComplete(event)}),this.map.on("init",function(event){self.map.markerFilter.on("filteringcomplete",function(event){self.onFilteringComplete(event)})}),$(document.body).on("click",".wpgmza_sl_search_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_search_button",function(event){self.onSearch(event)}),$(document.body).on("click",".wpgmza_sl_reset_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_reset_button_div",function(event){self.onReset(event)})},WPGMZA.StoreLocator.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.StoreLocator.prototype.constructor=WPGMZA.StoreLocator,WPGMZA.StoreLocator.STATE_INITIAL="initial",WPGMZA.StoreLocator.STATE_APPLIED="applied",WPGMZA.StoreLocator.createInstance=function(map,element){return new WPGMZA.StoreLocator(map,element)},Object.defineProperty(WPGMZA.StoreLocator.prototype,"distanceUnits",{get:function(){return 1==this.map.settings.store_locator_distance?WPGMZA.Distance.MILES:WPGMZA.Distance.KILOMETERS}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radius",{get:function(){return $("#radiusSelect, #radiusSelect_"+this.map.id).val()}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"center",{get:function(){return this._center}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"bounds",{get:function(){return this._bounds}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"marker",{get:function(){if(1!=this.map.settings.store_locator_bounce)return null;if(this._marker)return this._marker;return this._marker=WPGMZA.Marker.createInstance({visible:!1}),this._marker.disableInfoWindow=!0,this._marker.isFilterable=!1,this._marker.setAnimation(WPGMZA.Marker.ANIMATION_BOUNCE),this._marker}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"circle",{get:function(){return this._circle?this._circle:("modern"!=this.map.settings.wpgmza_store_locator_radius_style||WPGMZA.isDeviceiOS()?this._circle=WPGMZA.Circle.createInstance({strokeColor:"#ff0000",strokeOpacity:"0.25",strokeWeight:2,fillColor:"#ff0000",fillOpacity:"0.15",visible:!1,clickable:!1}):(this._circle=WPGMZA.ModernStoreLocatorCircle.createInstance(this.map.id),this._circle.settings.color=this.circleStrokeColor),this._circle)}}),WPGMZA.StoreLocator.prototype.onGeocodeComplete=function(event){if(!event.results||!event.results.length)return this._center=null,void(this._bounds=null);this._center=new WPGMZA.LatLng(event.results[0].latLng),this._bounds=new WPGMZA.LatLngBounds(event.results[0].bounds),this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.onSearch=function(event){this.state=WPGMZA.StoreLocator.STATE_APPLIED},WPGMZA.StoreLocator.prototype.onReset=function(event){this.state=WPGMZA.StoreLocator.STATE_INITIAL,this._center=null,this._bounds=null,this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.getFilteringParameters=function(){return this.center?{center:this.center,radius:this.radius}:{}},WPGMZA.StoreLocator.prototype.onFilteringComplete=function(event){var params=event.filteringParams,marker=this.marker;marker&&marker.setVisible(!1),params.center&&marker&&(marker.setPosition(params.center),marker.setVisible(!0),marker.map!=this.map&&this.map.addMarker(marker));var circle=this.circle;if(circle){var factor=this.distanceUnits==WPGMZA.Distance.MILES?WPGMZA.Distance.KILOMETERS_PER_MILE:1;circle.setVisible(!1),params.center&&params.radius&&(circle.setRadius(params.radius*factor),circle.setCenter(params.center),circle.setVisible(!0),circle.map!=this.map&&this.map.addCircle(circle)),circle instanceof WPGMZA.ModernStoreLocatorCircle&&(circle.settings.radiusString=this.radius)}this.map.hasVisibleMarkers()?$(this.element).find(".wpgmza-not-found-msg").hide():$(this.element).find(".wpgmza-not-found-msg").show()}}),jQuery(function($){WPGMZA.Text=function(options){if(options)for(var name in options)this[name]=options[name]},WPGMZA.Text.createInstance=function(options){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLText(options);default:return new WPGMZA.GoogleText(options)}}}),jQuery(function($){WPGMZA.ThemeEditor=function(){WPGMZA.EventDispatcher.call(this),this.element=$("#wpgmza-theme-editor"),this.element.length?"open-layers"!=WPGMZA.settings.engine?(this.json=[{}],this.mapElement=WPGMZA.maps[0].element,this.element.appendTo("#wpgmza-map-theme-editor__holder"),$(window).on("scroll",function(event){}),setInterval(function(){},200),this.initHTML(),WPGMZA.themeEditor=this):this.element.remove():console.warn("No element to initialise theme editor on")},WPGMZA.extend(WPGMZA.ThemeEditor,WPGMZA.EventDispatcher),WPGMZA.ThemeEditor.prototype.updatePosition=function(){},WPGMZA.ThemeEditor.features={all:[],administrative:["country","land_parcel","locality","neighborhood","province"],landscape:["man_made","natural","natural.landcover","natural.terrain"],poi:["attraction","business","government","medical","park","place_of_worship","school","sports_complex"],road:["arterial","highway","highway.controlled_access","local"],transit:["line","station","station.airport","station.bus","station.rail"],water:[]},WPGMZA.ThemeEditor.elements={all:[],geometry:["fill","stroke"],labels:["icon","text","text.fill","text.stroke"]},WPGMZA.ThemeEditor.prototype.parse=function(){$("#wpgmza_theme_editor_feature option, #wpgmza_theme_editor_element option").css("font-weight","normal"),$("#wpgmza_theme_editor_error").hide(),$("#wpgmza_theme_editor").show(),$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val("");var textarea=$('textarea[name="wpgmza_theme_data"]');if(!textarea.val()||textarea.val().length<1)this.json=[{}];else{try{this.json=$.parseJSON($('textarea[name="wpgmza_theme_data"]').val())}catch(e){return this.json=[{}],$("#wpgmza_theme_editor").hide(),void $("#wpgmza_theme_editor_error").show()}if(!$.isArray(this.json)){var jsonCopy=this.json;this.json=[],this.json.push(jsonCopy)}this.highlightFeatures(),this.highlightElements(),this.loadElementStylers()}},WPGMZA.ThemeEditor.prototype.highlightFeatures=function(){$("#wpgmza_theme_editor_feature option").css("font-weight","normal"),$.each(this.json,function(i,v){v.hasOwnProperty("featureType")?$('#wpgmza_theme_editor_feature option[value="'+v.featureType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_feature option[value="all"]').css("font-weight","bold")})},WPGMZA.ThemeEditor.prototype.highlightElements=function(){var feature=$("#wpgmza_theme_editor_feature").val();$("#wpgmza_theme_editor_element option").css("font-weight","normal"),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")?$('#wpgmza_theme_editor_element option[value="'+v.elementType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_element option[value="all"]').css("font-weight","bold"))})},WPGMZA.ThemeEditor.prototype.loadElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val();$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val(""),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&v.hasOwnProperty("stylers")&&$.isArray(v.stylers)&&v.stylers.length>0&&$.each(v.stylers,function(ii,vv){vv.hasOwnProperty("hue")&&($("#wpgmza_theme_editor_do_hue").prop("checked",!0),$("#wpgmza_theme_editor_hue").val(vv.hue)),vv.hasOwnProperty("lightness")&&$("#wpgmza_theme_editor_lightness").val(vv.lightness),vv.hasOwnProperty("saturation")&&$("#wpgmza_theme_editor_saturation").val(vv.xaturation),vv.hasOwnProperty("gamma")&&$("#wpgmza_theme_editor_gamma").val(vv.gamma),vv.hasOwnProperty("invert_lightness")&&$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!0),vv.hasOwnProperty("visibility")&&$("#wpgmza_theme_editor_visibility").val(vv.visibility),vv.hasOwnProperty("color")&&($("#wpgmza_theme_editor_do_color").prop("checked",!0),$("#wpgmza_theme_editor_color").val(vv.color)),vv.hasOwnProperty("weight")&&$("#wpgmza_theme_editor_weight").val(vv.weight)})})},WPGMZA.ThemeEditor.prototype.writeElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val(),indexJSON=null,stylers=[];if("inherit"!=$("#wpgmza_theme_editor_visibility").val()&&stylers.push({visibility:$("#wpgmza_theme_editor_visibility").val()}),!0===$("#wpgmza_theme_editor_do_color").prop("checked")&&stylers.push({color:$("#wpgmza_theme_editor_color").val()}),!0===$("#wpgmza_theme_editor_do_hue").prop("checked")&&stylers.push({hue:$("#wpgmza_theme_editor_hue").val()}),$("#wpgmza_theme_editor_gamma").val().length>0&&stylers.push({gamma:parseFloat($("#wpgmza_theme_editor_gamma").val())}),$("#wpgmza_theme_editor_weight").val().length>0&&stylers.push({weight:parseFloat($("#wpgmza_theme_editor_weight").val())}),$("#wpgmza_theme_editor_saturation").val().length>0&&stylers.push({saturation:parseFloat($("#wpgmza_theme_editor_saturation").val())}),$("#wpgmza_theme_editor_lightness").val().length>0&&stylers.push({lightness:parseFloat($("#wpgmza_theme_editor_lightness").val())}),!0===$("#wpgmza_theme_editor_do_invert_lightness").prop("checked")&&stylers.push({invert_lightness:!0}),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&(indexJSON=i)}),null===indexJSON){if(stylers.length>0){var new_feature_element_stylers={};"all"!=feature&&(new_feature_element_stylers.featureType=feature),"all"!=element&&(new_feature_element_stylers.elementType=element),new_feature_element_stylers.stylers=stylers,this.json.push(new_feature_element_stylers)}}else stylers.length>0?this.json[indexJSON].stylers=stylers:this.json.splice(indexJSON,1);$('textarea[name="wpgmza_theme_data"]').val(JSON.stringify(this.json).replace(/:/g,": ").replace(/,/g,", ")),this.highlightFeatures(),this.highlightElements(),WPGMZA.themePanel.updateMapTheme()},WPGMZA.ThemeEditor.prototype.initHTML=function(){var self=this;$.each(WPGMZA.ThemeEditor.features,function(i,v){$("#wpgmza_theme_editor_feature").append('<option value="'+i+'">'+i+"</option>"),v.length>0&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_feature").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),$.each(WPGMZA.ThemeEditor.elements,function(i,v){$("#wpgmza_theme_editor_element").append('<option value="'+i+'">'+i+"</option>"),v.length>0&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_element").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),this.parse(),$('textarea[name="wpgmza_theme_data"]').on("input selectionchange propertychange",function(){self.parse()}),$(".wpgmza_theme_selection").click(function(){setTimeout(function(){$('textarea[name="wpgmza_theme_data"]').trigger("input")},1e3)}),$("#wpgmza_theme_editor_feature").on("change",function(){self.highlightElements(),self.loadElementStylers()}),$("#wpgmza_theme_editor_element").on("change",function(){self.loadElementStylers()}),$("#wpgmza_theme_editor_do_hue, #wpgmza_theme_editor_hue, #wpgmza_theme_editor_lightness, #wpgmza_theme_editor_saturation, #wpgmza_theme_editor_gamma, #wpgmza_theme_editor_do_invert_lightness, #wpgmza_theme_editor_visibility, #wpgmza_theme_editor_do_color, #wpgmza_theme_editor_color, #wpgmza_theme_editor_weight").on("input selectionchange propertychange",function(){self.writeElementStylers()}),"open-layers"==WPGMZA.settings.engine&&$("#wpgmza_theme_editor :input").prop("disabled",!0)}}),jQuery(function($){WPGMZA.ThemePanel=function(){var self=this;this.element=$("#wpgmza-theme-panel"),this.map=WPGMZA.maps[0],this.element.length?($("#wpgmza-theme-presets").owlCarousel({items:5,dots:!0}),this.element.on("click","#wpgmza-theme-presets label",function(event){self.onThemePresetClick(event)}),$("#wpgmza-open-theme-editor").on("click",function(event){$("#wpgmza-map-theme-editor__holder").addClass("active"),$("#wpgmza-theme-editor").addClass("active"),WPGMZA.animateScroll($("#wpgmza-theme-editor"))}),WPGMZA.themePanel=this):console.warn("No element to initialise theme panel on")},WPGMZA.ThemePanel.previewImageCenter={lat:33.701806462148646,lng:-118.15949896058983},WPGMZA.ThemePanel.previewImageZoom=11,WPGMZA.ThemePanel.prototype.onThemePresetClick=function(event){var selectedData=$(event.currentTarget).find("[data-theme-json]").attr("data-theme-json"),textarea=$(this.element).find("textarea[name='wpgmza_theme_data']"),existingData=textarea.val(),allPresetData=[];$(this.element).find("[data-theme-json]").each(function(index,el){allPresetData.push($(el).attr("data-theme-json"))}),existingData.length&&-1==allPresetData.indexOf(existingData)&&!confirm(WPGMZA.localized_strings.overwrite_theme_data)||(textarea.val(selectedData),this.updateMapTheme(),WPGMZA.themeEditor.parse())},WPGMZA.ThemePanel.prototype.updateMapTheme=function(){var data;try{data=JSON.parse($("textarea[name='wpgmza_theme_data']").val())}catch(e){return void alert(WPGMZA.localized_strings.invalid_theme_data)}this.map.setOptions({styles:data})}}),jQuery(function($){WPGMZA.Version=function(){},WPGMZA.Version.GREATER_THAN=1,WPGMZA.Version.EQUAL_TO=0,WPGMZA.Version.LESS_THAN=-1,WPGMZA.Version.compare=function(v1,v2){for(var v1parts=v1.match(/\d+/g),v2parts=v2.match(/\d+/g),i=0;i<v1parts.length;++i){if(v2parts.length===i)return 1;if(v1parts[i]!==v2parts[i])return v1parts[i]>v2parts[i]?1:-1}return v1parts.length!=v2parts.length?-1:0}}),jQuery(function($){WPGMZA.Integration={},WPGMZA.integrationModules={}}),jQuery(function($){if(window.wp&&wp.i18n&&wp.blocks&&wp.editor&&wp.components){var __=wp.i18n.__,registerBlockType=wp.blocks.registerBlockType,_wp$editor=wp.editor,InspectorControls=_wp$editor.InspectorControls,_wp$components=(_wp$editor.BlockControls,wp.components),Dashicon=_wp$components.Dashicon,PanelBody=(_wp$components.Toolbar,_wp$components.Button,_wp$components.Tooltip,_wp$components.PanelBody);_wp$components.TextareaControl,_wp$components.CheckboxControl,_wp$components.TextControl,_wp$components.SelectControl,_wp$components.RichText;WPGMZA.Integration.Gutenberg=function(){registerBlockType("gutenberg-wpgmza/block",this.getBlockDefinition())},WPGMZA.Integration.Gutenberg.prototype.getBlockTitle=function(){return __("WP Google Maps")},WPGMZA.Integration.Gutenberg.prototype.getBlockInspectorControls=function(props){return React.createElement(InspectorControls,{key:"inspector"},React.createElement(PanelBody,{title:__("Map Settings")},React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:WPGMZA.adminurl+"admin.php?page=wp-google-maps-menu&action=edit&map_id=1",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-pencil-square-o","aria-hidden":"true"}),__("Go to Map Editor"))),React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:"https://www.wpgmaps.com/documentation/creating-your-first-map/",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-book","aria-hidden":"true"}),__("View Documentation")))))},WPGMZA.Integration.Gutenberg.prototype.getBlockAttributes=function(){return{}},WPGMZA.Integration.Gutenberg.prototype.getBlockDefinition=function(props){var _this=this;return{title:__("WP Google Maps"),description:__("The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss."),category:"common",icon:"location-alt",keywords:[__("Map"),__("Maps"),__("Google")],attributes:this.getBlockAttributes(),edit:function(props){return[!!props.isSelected&&_this.getBlockInspectorControls(props),React.createElement("div",{className:props.className+" wpgmza-gutenberg-block"},React.createElement(Dashicon,{icon:"location-alt"}),React.createElement("span",{class:"wpgmza-gutenberg-block-title"},__("Your map will appear here on your websites front end")))]},save:function(props){return null}}},WPGMZA.Integration.Gutenberg.getConstructor=function(){return WPGMZA.Integration.Gutenberg},WPGMZA.Integration.Gutenberg.createInstance=function(){return new(WPGMZA.Integration.Gutenberg.getConstructor())},WPGMZA.isProVersion()||/^6/.test(WPGMZA.pro_version)||(WPGMZA.integrationModules.gutenberg=WPGMZA.Integration.Gutenberg.createInstance())}}),jQuery(function($){$(window).on("load",function(event){var parent=document.body.onclick;parent&&(document.body.onclick=function(event){event.target instanceof WPGMZA.Marker||parent(event)})})}),jQuery(function($){WPGMZA.GoogleUICompatibility=function(){if(!(navigator.vendor&&navigator.vendor.indexOf("Apple")>-1&&navigator.userAgent&&-1==navigator.userAgent.indexOf("CriOS")&&-1==navigator.userAgent.indexOf("FxiOS"))){var style=$("<style id='wpgmza-google-ui-compatiblity-fix'/>");style.html(".wpgmza_map img:not(button img) { padding:0 !important; }"),$(document.head).append(style)}},WPGMZA.googleUICompatibility=new WPGMZA.GoogleUICompatibility}),jQuery(function($){WPGMZA.GoogleCircle=function(options,googleCircle){var self=this;WPGMZA.Circle.call(this,options,googleCircle),googleCircle?this.googleCircle=googleCircle:(this.googleCircle=new google.maps.Circle,this.googleCircle.wpgmzaCircle=this),google.maps.event.addListener(this.googleCircle,"click",function(){self.dispatchEvent({type:"click"})}),options&&this.setOptions(options)},WPGMZA.GoogleCircle.prototype=Object.create(WPGMZA.Circle.prototype),WPGMZA.GoogleCircle.prototype.constructor=WPGMZA.GoogleCircle,WPGMZA.GoogleCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.googleCircle.setCenter(center)},WPGMZA.GoogleCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.googleCircle.setRadius(1e3*parseFloat(radius))},WPGMZA.GoogleCircle.prototype.setVisible=function(visible){this.googleCircle.setVisible(!!visible)},WPGMZA.GoogleCircle.prototype.setOptions=function(options){var googleOptions={};delete(googleOptions=$.extend({},options)).map,delete googleOptions.center,options.center&&(googleOptions.center=new google.maps.LatLng({lat:parseFloat(options.center.lat),lng:parseFloat(options.center.lng)})),options.radius&&(googleOptions.radius=parseFloat(options.radius)),options.color&&(googleOptions.fillColor=options.color),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity),googleOptions.strokeOpacity=parseFloat(options.opacity)),this.googleCircle.setOptions(googleOptions),options.map&&options.map.addCircle(this)}}),jQuery(function($){WPGMZA.GoogleGeocoder=function(){},WPGMZA.GoogleGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.GoogleGeocoder.prototype.constructor=WPGMZA.GoogleGeocoder,WPGMZA.GoogleGeocoder.prototype.getLatLngFromAddress=function(options,callback){if(!options||!options.address)throw new Error("No address specified");if(WPGMZA.isLatLngString(options.address))return WPGMZA.Geocoder.prototype.getLatLngFromAddress.call(this,options,callback);options.country&&(options.componentRestrictions={country:options.country}),(new google.maps.Geocoder).geocode(options,function(results,status){if(status==google.maps.GeocoderStatus.OK){var location=results[0].geometry.location,latLng={lat:location.lat(),lng:location.lng()},bounds=null;results[0].geometry.bounds&&(bounds=WPGMZA.LatLngBounds.fromGoogleLatLngBounds(results[0].geometry.bounds)),callback(results=[{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng,bounds:bounds}],WPGMZA.Geocoder.SUCCESS)}else{var nativeStatus=WPGMZA.Geocoder.FAIL;status==google.maps.GeocoderStatus.ZERO_RESULTS&&(nativeStatus=WPGMZA.Geocoder.ZERO_RESULTS),callback(null,nativeStatus)}})},WPGMZA.GoogleGeocoder.prototype.getAddressFromLatLng=function(options,callback){if(!options||!options.latLng)throw new Error("No latLng specified");var latLng=new WPGMZA.LatLng(options.latLng),geocoder=new google.maps.Geocoder;delete(options=$.extend(options,{location:{lat:latLng.lat,lng:latLng.lng}})).latLng,geocoder.geocode(options,function(results,status){"OK"!==status&&callback(null,WPGMZA.Geocoder.FAIL),results&&results.length||callback([],WPGMZA.Geocoder.NO_RESULTS),callback([results[0].formatted_address],WPGMZA.Geocoder.SUCCESS)})}}),jQuery(function($){WPGMZA.settings.engine&&"google-maps"!=WPGMZA.settings.engine||window.google&&window.google.maps&&(WPGMZA.GoogleHTMLOverlay=function(map){this.element=$("<div class='wpgmza-google-html-overlay'></div>"),this.visible=!0,this.position=new WPGMZA.LatLng,this.setMap(map.googleMap),this.wpgmzaMap=map},WPGMZA.GoogleHTMLOverlay.prototype=new google.maps.OverlayView,WPGMZA.GoogleHTMLOverlay.prototype.onAdd=function(){this.getPanes().overlayMouseTarget.appendChild(this.element[0])},WPGMZA.GoogleHTMLOverlay.prototype.onRemove=function(){this.element&&$(this.element).parent().length&&($(this.element).remove(),this.element=null)},WPGMZA.GoogleHTMLOverlay.prototype.draw=function(){this.updateElementPosition()},WPGMZA.GoogleHTMLOverlay.prototype.updateElementPosition=function(){var projection=this.getProjection();if(projection){var pixels=projection.fromLatLngToDivPixel(this.position.toGoogleLatLng());$(this.element).css({left:pixels.x,top:pixels.y})}})}),jQuery(function($){var Parent;WPGMZA.GoogleInfoWindow=function(mapObject){Parent.call(this,mapObject),this.setMapObject(mapObject)},WPGMZA.GoogleInfoWindow.Z_INDEX=99,Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.GoogleInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.GoogleInfoWindow.prototype.constructor=WPGMZA.GoogleInfoWindow,WPGMZA.GoogleInfoWindow.prototype.setMapObject=function(mapObject){mapObject instanceof WPGMZA.Marker?this.googleObject=mapObject.googleMarker:mapObject instanceof WPGMZA.Polygon?this.googleObject=mapObject.googlePolygon:mapObject instanceof WPGMZA.Polyline&&(this.googleObject=mapObject.googlePolyline)},WPGMZA.GoogleInfoWindow.prototype.createGoogleInfoWindow=function(){var self=this;this.googleInfoWindow||(this.googleInfoWindow=new google.maps.InfoWindow,this.googleInfoWindow.setZIndex(WPGMZA.GoogleInfoWindow.Z_INDEX),google.maps.event.addListener(this.googleInfoWindow,"domready",function(event){self.trigger("domready")}),google.maps.event.addListener(this.googleInfoWindow,"closeclick",function(event){self.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(self.state=WPGMZA.InfoWindow.STATE_CLOSED,self.trigger("infowindowclose"))}))},WPGMZA.GoogleInfoWindow.prototype.open=function(map,mapObject){var self=this;if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.createGoogleInfoWindow(),this.setMapObject(mapObject),this.googleInfoWindow.open(this.mapObject.map.googleMap,this.googleObject);var guid=WPGMZA.guid(),html="<div id='"+guid+"'>"+this.content+"</div>";this.googleInfoWindow.setContent(html);var intervalID;return intervalID=setInterval(function(event){div=$("#"+guid),div.length&&(clearInterval(intervalID),div[0].wpgmzaMapObject=self.mapObject,div.addClass("wpgmza-infowindow"),self.element=div[0],self.trigger("infowindowopen"))},50),!0},WPGMZA.GoogleInfoWindow.prototype.close=function(){this.googleInfoWindow&&(WPGMZA.InfoWindow.prototype.close.call(this),this.googleInfoWindow.close())},WPGMZA.GoogleInfoWindow.prototype.setContent=function(html){Parent.prototype.setContent.call(this,html),this.content=html,this.createGoogleInfoWindow(),this.googleInfoWindow.setContent(html)},WPGMZA.GoogleInfoWindow.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.createGoogleInfoWindow(),this.googleInfoWindow.setOptions(options)}}),jQuery(function($){var Parent;WPGMZA.GoogleMap=function(element,options){var self=this;if(Parent.call(this,element,options),!window.google){var status=WPGMZA.googleAPIStatus,message="Google API not loaded";if(status&&status.message&&(message+=" - "+status.message),"USER_CONSENT_NOT_GIVEN"==status.code)return;throw $(element).html("<div class='notice notice-error'><p>"+WPGMZA.localized_strings.google_api_not_loaded+"<pre>"+message+"</pre></p></div>"),new Error(message)}this.loadGoogleMap(),options&&this.setOptions(options,!0),google.maps.event.addListener(this.googleMap,"click",function(event){var wpgmzaEvent=new WPGMZA.Event("click");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"rightclick",function(event){var wpgmzaEvent=new WPGMZA.Event("rightclick");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"dragend",function(event){self.dispatchEvent("dragend")}),google.maps.event.addListener(this.googleMap,"zoom_changed",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged")}),google.maps.event.addListener(this.googleMap,"idle",function(event){self.onIdle(event)}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},WPGMZA.isProVersion()?(Parent=WPGMZA.ProMap,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.ProMap.prototype)):(Parent=WPGMZA.Map,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.Map.prototype)),WPGMZA.GoogleMap.prototype.constructor=WPGMZA.GoogleMap,WPGMZA.GoogleMap.parseThemeData=function(raw){var json;try{json=JSON.parse(raw)}catch(e){try{json=eval(raw)}catch(e){var str=raw;str=str.replace(/\\'/g,"'"),str=str.replace(/\\"/g,'"'),str=str.replace(/\\0/g,"\0"),str=str.replace(/\\\\/g,"\\");try{json=eval(str)}catch(e){return console.warn("Couldn't parse theme data"),[]}}}return json},WPGMZA.GoogleMap.prototype.loadGoogleMap=function(){var self=this,options=this.settings.toGoogleMapsOptions();this.googleMap=new google.maps.Map(this.engineElement,options),google.maps.event.addListener(this.googleMap,"bounds_changed",function(){self.onBoundsChanged()}),1==this.settings.bicycle&&this.enableBicycleLayer(!0),1==this.settings.traffic&&this.enableTrafficLayer(!0),1==this.settings.transport&&this.enablePublicTransportLayer(!0),this.showPointsOfInterest(this.settings.show_point_of_interest),$(this.engineElement).append($(this.element).find(".wpgmza-loader"))},WPGMZA.GoogleMap.prototype.setOptions=function(options,initializing){if(Parent.prototype.setOptions.call(this,options),options.scrollwheel&&delete options.scrollwheel,initializing){var converted=$.extend(options,this.settings.toGoogleMapsOptions()),clone=$.extend({},converted);if(!clone.center instanceof google.maps.LatLng&&(clone.center instanceof WPGMZA.LatLng||"object"==typeof clone.center)&&(clone.center={lat:parseFloat(clone.center.lat),lng:parseFloat(clone.center.lng)}),"1"==this.settings.hide_point_of_interest){clone.styles||(clone.styles=[]),clone.styles.push({featureType:"poi",elementType:"labels",stylers:[{visibility:"off"}]})}this.googleMap.setOptions(clone)}else this.googleMap.setOptions(options)},WPGMZA.GoogleMap.prototype.addMarker=function(marker){marker.googleMarker.setMap(this.googleMap),Parent.prototype.addMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.removeMarker=function(marker){marker.googleMarker.setMap(null),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.addPolygon=function(polygon){polygon.googlePolygon.setMap(this.googleMap),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.removePolygon=function(polygon){polygon.googlePolygon.setMap(null),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.addPolyline=function(polyline){polyline.googlePolyline.setMap(this.googleMap),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.removePolyline=function(polyline){polyline.googlePolyline.setMap(null),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.addCircle=function(circle){circle.googleCircle.setMap(this.googleMap),Parent.prototype.addCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.removeCircle=function(circle){circle.googleCircle.setMap(null),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.addRectangle=function(rectangle){rectangle.googleRectangle.setMap(this.googleMap),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.removeRectangle=function(rectangle){rectangle.googleRectangle.setMap(null),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.getCenter=function(){var latLng=this.googleMap.getCenter();return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.setCenter=function(latLng){WPGMZA.Map.prototype.setCenter.call(this,latLng),latLng instanceof WPGMZA.LatLng?this.googleMap.setCenter({lat:latLng.lat,lng:latLng.lng}):this.googleMap.setCenter(latLng)},WPGMZA.GoogleMap.prototype.panTo=function(latLng){latLng instanceof WPGMZA.LatLng?this.googleMap.panTo({lat:latLng.lat,lng:latLng.lng}):this.googleMap.panTo(latLng)},WPGMZA.GoogleMap.prototype.getZoom=function(){return this.googleMap.getZoom()},WPGMZA.GoogleMap.prototype.setZoom=function(value){if(isNaN(value))throw new Error("Value must not be NaN");return this.googleMap.setZoom(parseInt(value))},WPGMZA.GoogleMap.prototype.getBounds=function(){var bounds=this.googleMap.getBounds(),northEast=bounds.getNorthEast(),southWest=bounds.getSouthWest(),nativeBounds=new WPGMZA.LatLngBounds({});return nativeBounds.north=northEast.lat(),nativeBounds.south=southWest.lat(),nativeBounds.west=southWest.lng(),nativeBounds.east=northEast.lng(),nativeBounds.topLeft={lat:northEast.lat(),lng:southWest.lng()},nativeBounds.bottomRight={lat:southWest.lat(),lng:northEast.lng()},nativeBounds},WPGMZA.GoogleMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var nativeBounds=new google.maps.LatLngBounds(southWest,northEast);this.googleMap.fitBounds(nativeBounds)},WPGMZA.GoogleMap.prototype.fitBoundsToVisibleMarkers=function(){for(var bounds=new google.maps.LatLngBounds,i=0;i<this.markers.length;i++)markers[i].getVisible()&&bounds.extend(markers[i].getPosition());this.googleMap.fitBounds(bounds)},WPGMZA.GoogleMap.prototype.enableBicycleLayer=function(enable){this.bicycleLayer||(this.bicycleLayer=new google.maps.BicyclingLayer),this.bicycleLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enableTrafficLayer=function(enable){this.trafficLayer||(this.trafficLayer=new google.maps.TrafficLayer),this.trafficLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enablePublicTransportLayer=function(enable){this.publicTransportLayer||(this.publicTransportLayer=new google.maps.TransitLayer),this.publicTransportLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.showPointsOfInterest=function(show){var text=$("textarea[name='theme_data']").val();if(text){var styles=JSON.parse(text);styles.push({featureType:"poi",stylers:[{visibility:show?"on":"off"}]}),this.googleMap.setOptions({styles:styles})}},WPGMZA.GoogleMap.prototype.getMinZoom=function(){return parseInt(this.settings.min_zoom)},WPGMZA.GoogleMap.prototype.setMinZoom=function(value){this.googleMap.setOptions({minZoom:value,maxZoom:this.getMaxZoom()})},WPGMZA.GoogleMap.prototype.getMaxZoom=function(){return parseInt(this.settings.max_zoom)},WPGMZA.GoogleMap.prototype.setMaxZoom=function(value){this.googleMap.setOptions({minZoom:this.getMinZoom(),maxZoom:value})},WPGMZA.GoogleMap.prototype.latLngToPixels=function(latLng){var map=this.googleMap,nativeLatLng=new google.maps.LatLng({lat:parseFloat(latLng.lat),lng:parseFloat(latLng.lng)}),topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=map.getProjection().fromLatLngToPoint(nativeLatLng);return{x:(worldPoint.x-bottomLeft.x)*scale,y:(worldPoint.y-topRight.y)*scale}},WPGMZA.GoogleMap.prototype.pixelsToLatLng=function(x,y){void 0==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var map=this.googleMap,topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=new google.maps.Point(x/scale+bottomLeft.x,y/scale+topRight.y),latLng=map.getProjection().fromPointToLatLng(worldPoint);return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.onElementResized=function(event){this.googleMap&&google.maps.event.trigger(this.googleMap,"resize")}}),jQuery(function($){var Parent;WPGMZA.GoogleMarker=function(row){var self=this;Parent.call(this,row),this._opacity=1;var settings={};if(row)for(var name in row)row[name]instanceof WPGMZA.LatLng?settings[name]=row[name].toGoogleLatLng():row[name]instanceof WPGMZA.Map||"icon"==name||(settings[name]=row[name]);this.googleMarker=new google.maps.Marker(settings),this.googleMarker.wpgmzaMarker=this,this.googleMarker.setPosition(new google.maps.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})),this.googleMarker.setLabel(this.settings.label),this.anim&&this.googleMarker.setAnimation(this.anim),this.animation&&this.googleMarker.setAnimation(this.animation),google.maps.event.addListener(this.googleMarker,"click",function(){self.dispatchEvent("click"),self.dispatchEvent("select")}),google.maps.event.addListener(this.googleMarker,"mouseover",function(){self.dispatchEvent("mouseover")}),google.maps.event.addListener(this.googleMarker,"dragend",function(){var googleMarkerPosition=self.googleMarker.getPosition();self.setPosition({lat:googleMarkerPosition.lat(),lng:googleMarkerPosition.lng()}),self.dispatchEvent({type:"dragend",latLng:self.getPosition()})}),this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.GoogleMarker.prototype=Object.create(Parent.prototype),WPGMZA.GoogleMarker.prototype.constructor=WPGMZA.GoogleMarker,Object.defineProperty(WPGMZA.GoogleMarker.prototype,"opacity",{get:function(){return this._opacity},set:function(value){this._opacity=value,this.googleMarker.setOpacity(value)}}),WPGMZA.GoogleMarker.prototype.setLabel=function(label){label?(this.googleMarker.setLabel({text:label}),this.googleMarker.getIcon()||this.googleMarker.setIcon(WPGMZA.settings.default_marker_icon)):this.googleMarker.setLabel(null)},WPGMZA.GoogleMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng),this.googleMarker.setPosition({lat:this.lat,lng:this.lng})},WPGMZA.GoogleMarker.prototype.updateOffset=function(){var params,self=this,icon=this.googleMarker.getIcon(),img=new Image,x=this._offset.x,y=this._offset.y;icon||(icon=WPGMZA.settings.default_marker_icon),params="string"==typeof icon?{url:icon}:icon,img.onload=function(){var defaultAnchor={x:img.width/2,y:img.height};params.anchor=new google.maps.Point(defaultAnchor.x-x,defaultAnchor.y-y),self.googleMarker.setIcon(params)},img.src=params.url},WPGMZA.GoogleMarker.prototype.setOptions=function(options){this.googleMarker.setOptions(options)},WPGMZA.GoogleMarker.prototype.setAnimation=function(animation){Parent.prototype.setAnimation.call(this,animation),this.googleMarker.setAnimation(animation)},WPGMZA.GoogleMarker.prototype.setVisible=function(visible){Parent.prototype.setVisible.call(this,visible),this.googleMarker.setVisible(!!visible)},WPGMZA.GoogleMarker.prototype.getVisible=function(visible){return this.googleMarker.getVisible()},WPGMZA.GoogleMarker.prototype.setDraggable=function(draggable){this.googleMarker.setDraggable(draggable)},WPGMZA.GoogleMarker.prototype.setOpacity=function(opacity){this.googleMarker.setOpacity(opacity)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocatorCircle=function(map,settings){var self=this;WPGMZA.ModernStoreLocatorCircle.call(this,map,settings),this.intervalID=setInterval(function(){var mapSize={width:$(self.mapElement).width(),height:$(self.mapElement).height()};mapSize.width==self.mapSize.width&&mapSize.height==self.mapSize.height||(self.canvasLayer.resize_(),self.canvasLayer.draw(),self.mapSize=mapSize)},1e3),$(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange",function(){self.canvasLayer.resize_(),self.canvasLayer.draw()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.GoogleModernStoreLocatorCircle.prototype.constructor=WPGMZA.GoogleModernStoreLocatorCircle,WPGMZA.GoogleModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this;this.canvasLayer&&(this.canvasLayer.setMap(null),this.canvasLayer.setAnimate(!1)),this.canvasLayer=new CanvasLayer({map:this.map.googleMap,resizeHandler:function(event){self.onResize(event)},updateHandler:function(event){self.onUpdate(event)},animate:!0,resolutionScale:this.getResolutionScale()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setOptions=function(options){WPGMZA.ModernStoreLocatorCircle.prototype.setOptions.call(this,options),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setPosition=function(position){WPGMZA.ModernStoreLocatorCircle.prototype.setPosition.call(this,position),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setRadius=function(radius){WPGMZA.ModernStoreLocatorCircle.prototype.setRadius.call(this,radius),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var spherical=google.maps.geometry.spherical,center=this.settings.center,equator=new WPGMZA.LatLng({lat:0,lng:0}),latitude=new WPGMZA.LatLng({lat:center.lat,lng:0}),offsetAtEquator=spherical.computeOffset(equator.toGoogleLatLng(),1e3*km,90),result=.006395*km*(spherical.computeOffset(latitude.toGoogleLatLng(),1e3*km,90).lng()/offsetAtEquator.lng());if(isNaN(result))throw new Error("here");return result},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvasLayer.canvas.width,height:this.canvasLayer.canvas.height}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){var position=this.map.googleMap.getProjection().fromLatLngToPoint(this.canvasLayer.getTopLeft());return{x:-position.x,y:-position.y}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCenterPixels=function(){var center=new WPGMZA.LatLng(this.settings.center);return this.map.googleMap.getProjection().fromLatLngToPoint(center.toGoogleLatLng())},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvasLayer.canvas.getContext("2d")},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getScale=function(){return Math.pow(2,this.map.getZoom())*this.getResolutionScale()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setVisible=function(visible){WPGMZA.ModernStoreLocatorCircle.prototype.setVisible.call(this,visible),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.destroy=function(){this.canvasLayer.setMap(null),this.canvasLayer=null,clearInterval(this.intervalID)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocator=function(map_id){this.map=WPGMZA.getMapByID(map_id),WPGMZA.ModernStoreLocator.call(this,map_id);var options={fields:["name","formatted_address"],types:["geocode"]},restrict=wpgmaps_localize[map_id].other_settings.wpgmza_store_locator_restrict;this.addressInput=$(this.element).find(".addressInput, #addressInput")[0],this.addressInput&&(restrict&&restrict.length&&(options.componentRestrictions={country:restrict}),this.autoComplete=new google.maps.places.Autocomplete(this.addressInput,options)),this.map.googleMap.controls[google.maps.ControlPosition.TOP_CENTER].push(this.element)},WPGMZA.GoogleModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator.prototype),WPGMZA.GoogleModernStoreLocator.prototype.constructor=WPGMZA.GoogleModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.GooglePolygon=function(options,googlePolygon){var self=this;if(Parent.call(this,options,googlePolygon),googlePolygon)this.googlePolygon=googlePolygon;else if(this.googlePolygon=new google.maps.Polygon,options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.paths=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.lineopacity&&(googleOptions.strokeOpacity=parseFloat(options.lineopacity)),options.fillcolor&&(googleOptions.fillColor="#"+options.fillcolor),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity)),this.googlePolygon.setOptions(googleOptions)}this.googlePolygon.wpgmzaPolygon=this,google.maps.event.addListener(this.googlePolygon,"click",function(){self.dispatchEvent({type:"click"})})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.GooglePolygon.prototype=Object.create(Parent.prototype),WPGMZA.GooglePolygon.prototype.constructor=WPGMZA.GooglePolygon,WPGMZA.GooglePolygon.prototype.getEditable=function(){return this.googlePolygon.getOptions().editable},WPGMZA.GooglePolygon.prototype.setEditable=function(value){this.googlePolygon.setOptions({editable:value})},WPGMZA.GooglePolygon.prototype.toJSON=function(){var result=WPGMZA.Polygon.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolygon.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GooglePolyline=function(options,googlePolyline){var self=this;if(WPGMZA.Polyline.call(this,options,googlePolyline),googlePolyline)this.googlePolyline=googlePolyline;else{if(this.googlePolyline=new google.maps.Polyline(this.settings),options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.path=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.linethickness&&(googleOptions.strokeWeight=parseInt(options.linethickness)),options.opacity&&(googleOptions.strokeOpacity=parseFloat(options.opacity))}if(options&&options.polydata){var path=this.parseGeometry(options.polydata);this.setPoints(path)}}this.googlePolyline.wpgmzaPolyline=this,google.maps.event.addListener(this.googlePolyline,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GooglePolyline.prototype=Object.create(WPGMZA.Polyline.prototype),WPGMZA.GooglePolyline.prototype.constructor=WPGMZA.GooglePolyline,WPGMZA.GooglePolyline.prototype.setEditable=function(value){this.googlePolyline.setOptions({editable:value})},WPGMZA.GooglePolyline.prototype.setPoints=function(points){this.googlePolyline.setOptions({path:points})},WPGMZA.GooglePolyline.prototype.toJSON=function(){var result=WPGMZA.Polyline.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolyline.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GoogleText=function(options){WPGMZA.Text.apply(this,arguments),this.overlay=new WPGMZA.GoogleTextOverlay(options)},WPGMZA.extend(WPGMZA.GoogleText,WPGMZA.Text)}),jQuery(function($){WPGMZA.GoogleTextOverlay=function(options){this.element=$("<div class='wpgmza-google-text-overlay'><div class='wpgmza-inner'></div></div>"),options||(options={}),options.position&&(this.position=options.position),options.text&&this.element.find(".wpgmza-inner").text(options.text),options.map&&this.setMap(options.map.googleMap)},window.google&&google.maps&&google.maps.OverlayView&&(WPGMZA.GoogleTextOverlay.prototype=new google.maps.OverlayView),WPGMZA.GoogleTextOverlay.prototype.onAdd=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px"}),this.getPanes().floatPane.appendChild(this.element[0])},WPGMZA.GoogleTextOverlay.prototype.draw=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px"})},WPGMZA.GoogleTextOverlay.prototype.onRemove=function(){this.element.remove()},WPGMZA.GoogleTextOverlay.prototype.hide=function(){this.element.hide()},WPGMZA.GoogleTextOverlay.prototype.show=function(){this.element.show()},WPGMZA.GoogleTextOverlay.prototype.toggle=function(){this.element.is(":visible")?this.element.hide():this.element.show()}}),jQuery(function($){"google-maps"==WPGMZA.settings.engine&&(WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code||(WPGMZA.GoogleVertexContextMenu=function(mapEditPage){var self=this;this.mapEditPage=mapEditPage,this.element=document.createElement("div"),this.element.className="wpgmza-vertex-context-menu",this.element.innerHTML="Delete",google.maps.event.addDomListener(this.element,"click",function(event){return self.removeVertex(),event.preventDefault(),event.stopPropagation(),!1})},WPGMZA.GoogleVertexContextMenu.prototype=new google.maps.OverlayView,WPGMZA.GoogleVertexContextMenu.prototype.onAdd=function(){var self=this,map=this.getMap();this.getPanes().floatPane.appendChild(this.element),this.divListener=google.maps.event.addDomListener(map.getDiv(),"mousedown",function(e){e.target!=self.element&&self.close()},!0)},WPGMZA.GoogleVertexContextMenu.prototype.onRemove=function(){google.maps.event.removeListener(this.divListener),this.element.parentNode.removeChild(this.element),this.set("position"),this.set("path"),this.set("vertex")},WPGMZA.GoogleVertexContextMenu.prototype.open=function(map,path,vertex){this.set("position",path.getAt(vertex)),this.set("path",path),this.set("vertex",vertex),this.setMap(map),this.draw()},WPGMZA.GoogleVertexContextMenu.prototype.close=function(){this.setMap(null)},WPGMZA.GoogleVertexContextMenu.prototype.draw=function(){var position=this.get("position"),projection=this.getProjection();if(position&&projection){var point=projection.fromLatLngToDivPixel(position);this.element.style.top=point.y+"px",this.element.style.left=point.x+"px"}},WPGMZA.GoogleVertexContextMenu.prototype.removeVertex=function(){var path=this.get("path"),vertex=this.get("vertex");path&&void 0!=vertex?(path.removeAt(vertex),this.close()):this.close()}))}),jQuery(function($){var Parent=WPGMZA.Circle;WPGMZA.OLCircle=function(options,olFeature){this.center={lat:0,lng:0},this.radius=0,this.fillcolor="#ff0000",this.opacity=.6,Parent.call(this,options,olFeature),this.olStyle=new ol.style.Style(this.getStyleFromSettings()),this.vectorLayer3857=this.layer=new ol.layer.Vector({source:new ol.source.Vector,style:this.olStyle}),olFeature?this.olFeature=olFeature:this.recreate()},WPGMZA.OLCircle.prototype=Object.create(Parent.prototype),WPGMZA.OLCircle.prototype.constructor=WPGMZA.OLCircle,WPGMZA.OLCircle.prototype.recreate=function(){if(this.olFeature&&(this.layer.getSource().removeFeature(this.olFeature),delete this.olFeature),this.center&&this.radius){var x,y,wgs84Sphere=new ol.Sphere(6378137),radius=1e3*parseFloat(this.radius)/2;x=this.center.lng,y=this.center.lat;var circle3857=ol.geom.Polygon.circular(wgs84Sphere,[x,y],radius,64).clone().transform("EPSG:4326","EPSG:3857");this.olFeature=new ol.Feature(circle3857),this.layer.getSource().addFeature(this.olFeature)}},WPGMZA.OLCircle.prototype.getStyleFromSettings=function(){var params={};return this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillColor,this.opacity)})),params},WPGMZA.OLCircle.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLCircle.prototype.setVisible=function(visible){this.layer.setVisible(!!visible)},WPGMZA.OLCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.recreate()},WPGMZA.OLCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.recreate()}}),jQuery(function($){WPGMZA.OLGeocoder=function(){},WPGMZA.OLGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.OLGeocoder.prototype.constructor=WPGMZA.OLGeocoder,WPGMZA.OLGeocoder.prototype.getResponseFromCache=function(query,callback){WPGMZA.restAPI.call("/geocode-cache",{data:{query:JSON.stringify(query)},success:function(response,xhr,status){response.lng=response.lon,callback(response)},useCompressedPathVariable:!0})},WPGMZA.OLGeocoder.prototype.getResponseFromNominatim=function(options,callback){var data={q:options.address,format:"json"};options.componentRestrictions&&options.componentRestrictions.country&&(data.countrycodes=options.componentRestrictions.country),$.ajax("https://nominatim.openstreetmap.org/search/",{data:data,success:function(response,xhr,status){callback(response)},error:function(response,xhr,status){callback(null,WPGMZA.Geocoder.FAIL)}})},WPGMZA.OLGeocoder.prototype.cacheResponse=function(query,response){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_store_nominatim_cache",query:JSON.stringify(query),response:JSON.stringify(response)},method:"POST"})},WPGMZA.OLGeocoder.prototype.clearCache=function(callback){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_clear_nominatim_cache"},method:"POST",success:function(response){callback(response)}})},WPGMZA.OLGeocoder.prototype.getLatLngFromAddress=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.getAddressFromLatLng=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.geocode=function(options,callback){var self=this;if(!options)throw new Error("Invalid options");if(WPGMZA.LatLng.REGEXP.test(options.address)){var latLng=WPGMZA.LatLng.fromString(options.address);callback([{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng}],WPGMZA.Geocoder.SUCCESS)}else{options.location&&(options.latLng=new WPGMZA.LatLng(options.location));var finish,location;if(options.address)location=options.address,finish=function(response,status){for(var i=0;i<response.length;i++)response[i].geometry={location:new WPGMZA.LatLng({lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)})},response[i].latLng={lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)},response[i].bounds=new WPGMZA.LatLngBounds(new WPGMZA.LatLng({lat:response[i].boundingbox[1],lng:response[i].boundingbox[2]}),new WPGMZA.LatLng({lat:response[i].boundingbox[0],lng:response[i].boundingbox[3]})),response[i].lng=response[i].lon;callback(response,status)};else{if(!options.latLng)throw new Error("You must supply either a latLng or address");location=options.latLng.toString(),finish=function(response,status){var address=response[0].display_name;callback([address],status)}}var query={location:location,options:options};this.getResponseFromCache(query,function(response){response.length?finish(response,WPGMZA.Geocoder.SUCCESS):self.getResponseFromNominatim($.extend(options,{address:location}),function(response,status){status!=WPGMZA.Geocoder.FAIL?0!=response.length?(finish(response,WPGMZA.Geocoder.SUCCESS),self.cacheResponse(query,response)):callback([],WPGMZA.Geocoder.ZERO_RESULTS):callback(null,WPGMZA.Geocoder.FAIL)})})}}}),jQuery(function($){var Parent;WPGMZA.OLInfoWindow=function(mapObject){var self=this;Parent.call(this,mapObject),this.element=$("<div class='wpgmza-infowindow ol-info-window-container ol-info-window-plain'></div>")[0],$(this.element).on("click",".ol-info-window-close",function(event){self.close()})},Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.OLInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.OLInfoWindow.prototype.constructor=WPGMZA.OLInfoWindow,WPGMZA.OLInfoWindow.prototype.open=function(map,mapObject){var self=this,latLng=mapObject.getPosition();if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.overlay&&this.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=new ol.Overlay({element:this.element,stopEvent:!1}),this.overlay.setPosition(ol.proj.fromLonLat([latLng.lng,latLng.lat])),self.mapObject.map.olMap.addOverlay(this.overlay),$(this.element).show(),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&WPGMZA.getImageDimensions(mapObject.getIcon(),function(size){$(self.element).css({left:Math.round(size.width/2)+"px"})}),this.trigger("infowindowopen"),this.trigger("domready")},WPGMZA.OLInfoWindow.prototype.close=function(event){$(this.element).hide(),this.overlay&&(WPGMZA.InfoWindow.prototype.close.call(this),this.trigger("infowindowclose"),this.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=null)},WPGMZA.OLInfoWindow.prototype.setContent=function(html){$(this.element).html("<i class='fa fa-times ol-info-window-close' aria-hidden='true'></i>"+html)},WPGMZA.OLInfoWindow.prototype.setOptions=function(options){options.maxWidth&&$(this.element).css({"max-width":options.maxWidth+"px"})},WPGMZA.OLInfoWindow.prototype.onOpen=function(){function inside(el,viewport){var a=el.getBoundingClientRect(),b=viewport.getBoundingClientRect();return a.left>=b.left&&a.left<=b.right&&a.right<=b.right&&a.right>=b.left&&a.top>=b.top&&a.top<=b.bottom&&a.bottom<=b.bottom&&a.bottom>=b.top}function panIntoView(){var offset=.45*-$(self.element).height();self.mapObject.map.animateNudge(0,offset,self.mapObject.getPosition())}var self=this,imgs=$(this.element).find("img"),numImages=imgs.length,numImagesLoaded=0;WPGMZA.InfoWindow.prototype.onOpen.apply(this,arguments),imgs.each(function(index,el){el.onload=function(){++numImagesLoaded!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}),0!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}),jQuery(function($){var Parent;WPGMZA.OLMap=function(element,options){var self=this;Parent.call(this,element),this.setOptions(options);var viewOptions=this.settings.toOLViewOptions();$(this.element).html(""),this.olMap=new ol.Map({target:$(element)[0],layers:[this.getTileLayer()],view:new ol.View(viewOptions)}),this.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan?interaction.setActive("yes"!=self.settings.wpgmza_settings_map_draggable):interaction instanceof ol.interaction.DoubleClickZoom?interaction.setActive(!self.settings.wpgmza_settings_map_clickzoom):interaction instanceof ol.interaction.MouseWheelZoom&&interaction.setActive("yes"!=self.settings.wpgmza_settings_map_scroll)},this),this.olMap.getControls().forEach(function(control){control instanceof ol.control.Zoom&&"yes"==WPGMZA.settings.wpgmza_settings_map_zoom&&self.olMap.removeControl(control)},this),"yes"!=WPGMZA.settings.wpgmza_settings_map_full_screen_control&&this.olMap.addControl(new ol.control.FullScreen),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(this.markerLayer=new ol.layer.Vector({source:new ol.source.Vector({features:[]})}),this.olMap.addLayer(this.markerLayer),this.olMap.on("click",function(event){var features=self.olMap.getFeaturesAtPixel(event.pixel);if(features&&features.length){var marker=features[0].wpgmzaMarker;marker&&(marker.trigger("click"),marker.trigger("select"))}})),this.olMap.on("movestart",function(event){self.isBeingDragged=!0}),this.olMap.on("moveend",function(event){self.wrapLongitude(),self.isBeingDragged=!1,self.dispatchEvent("dragend"),self.onIdle()}),this.olMap.getView().on("change:resolution",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged"),setTimeout(function(){self.onIdle()},10)}),this.olMap.getView().on("change",function(){self.onBoundsChanged()}),self.onBoundsChanged();var marker;this.storeLocator&&(marker=this.storeLocator.centerPointMarker)&&(this.olMap.addOverlay(marker.overlay),marker.setVisible(!1)),$(this.element).on("click contextmenu",function(event){var isRight;event=event||window.event;var latLng=self.pixelsToLatLng(event.offsetX,event.offsetY);if("which"in event?isRight=3==event.which:"button"in event&&(isRight=2==event.button),1!=event.which&&1!=event.button){if(isRight)return self.onRightClick(event)}else{if(self.isBeingDragged)return;if($(event.target).closest(".ol-marker").length)return;self.trigger({type:"click",latLng:latLng})}}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},Parent=WPGMZA.isProVersion()?WPGMZA.ProMap:WPGMZA.Map,WPGMZA.OLMap.prototype=Object.create(Parent.prototype),WPGMZA.OLMap.prototype.constructor=WPGMZA.OLMap,WPGMZA.OLMap.prototype.getTileLayer=function(){var options={};return WPGMZA.settings.tile_server_url&&(options.url=WPGMZA.settings.tile_server_url),new ol.layer.Tile({source:new ol.source.OSM(options)})},WPGMZA.OLMap.prototype.wrapLongitude=function(){var center=this.getCenter();center.lng>=-180&&center.lng<=180||(center.lng=center.lng-360*Math.floor(center.lng/360),center.lng>180&&(center.lng-=360),this.setCenter(center))},WPGMZA.OLMap.prototype.getCenter=function(){var lonLat=ol.proj.toLonLat(this.olMap.getView().getCenter());return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.setCenter=function(latLng){var view=this.olMap.getView();WPGMZA.Map.prototype.setCenter.call(this,latLng),view.setCenter(ol.proj.fromLonLat([latLng.lng,latLng.lat])),this.wrapLongitude(),this.onBoundsChanged()},WPGMZA.OLMap.prototype.getBounds=function(){var bounds=this.olMap.getView().calculateExtent(this.olMap.getSize()),nativeBounds=new WPGMZA.LatLngBounds,topLeft=ol.proj.toLonLat([bounds[0],bounds[1]]),bottomRight=ol.proj.toLonLat([bounds[2],bounds[3]]);return nativeBounds.north=topLeft[1],nativeBounds.south=bottomRight[1],nativeBounds.west=topLeft[0],nativeBounds.east=bottomRight[0],nativeBounds},WPGMZA.OLMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var view=this.olMap.getView(),extent=ol.extent.boundingExtent([ol.proj.fromLonLat([parseFloat(southWest.lng),parseFloat(southWest.lat)]),ol.proj.fromLonLat([parseFloat(northEast.lng),parseFloat(northEast.lat)])]);view.fit(extent,this.olMap.getSize())},WPGMZA.OLMap.prototype.panTo=function(latLng,zoom){var view=this.olMap.getView(),options={center:ol.proj.fromLonLat([parseFloat(latLng.lng),parseFloat(latLng.lat)]),duration:500};arguments.length>1&&(options.zoom=parseInt(zoom)),view.animate(options)},WPGMZA.OLMap.prototype.getZoom=function(){return Math.round(this.olMap.getView().getZoom())},WPGMZA.OLMap.prototype.setZoom=function(value){this.olMap.getView().setZoom(value)},WPGMZA.OLMap.prototype.getMinZoom=function(){return this.olMap.getView().getMinZoom()},WPGMZA.OLMap.prototype.setMinZoom=function(value){this.olMap.getView().setMinZoom(value)},WPGMZA.OLMap.prototype.getMaxZoom=function(){return this.olMap.getView().getMaxZoom()},WPGMZA.OLMap.prototype.setMaxZoom=function(value){this.olMap.getView().setMaxZoom(value)},WPGMZA.OLMap.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.olMap&&this.olMap.getView().setProperties(this.settings.toOLViewOptions())},WPGMZA.OLMap.prototype.addMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.addOverlay(marker.overlay):(this.markerLayer.getSource().addFeature(marker.feature),marker.featureInSource=!0),Parent.prototype.addMarker.call(this,marker)},WPGMZA.OLMap.prototype.removeMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.removeOverlay(marker.overlay):(this.markerLayer.getSource().removeFeature(marker.feature),marker.featureInSource=!1),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.OLMap.prototype.addPolygon=function(polygon){this.olMap.addLayer(polygon.layer),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.OLMap.prototype.removePolygon=function(polygon){this.olMap.removeLayer(polygon.layer),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.OLMap.prototype.addPolyline=function(polyline){this.olMap.addLayer(polyline.layer),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.OLMap.prototype.removePolyline=function(polyline){this.olMap.removeLayer(polyline.layer),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.OLMap.prototype.addCircle=function(circle){this.olMap.addLayer(circle.layer),Parent.prototype.addCircle.call(this,circle)},WPGMZA.OLMap.prototype.removeCircle=function(circle){this.olMap.removeLayer(circle.layer),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.OLMap.prototype.addRectangle=function(rectangle){this.olMap.addLayer(rectangle.layer),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.removeRectangle=function(rectangle){this.olMap.removeLayer(rectangle.layer),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.pixelsToLatLng=function(x,y){void 0==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var coord=this.olMap.getCoordinateFromPixel([x,y]);if(!coord)return{x:null,y:null};var lonLat=ol.proj.toLonLat(coord);return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.latLngToPixels=function(latLng){var coord=ol.proj.fromLonLat([latLng.lng,latLng.lat]),pixel=this.olMap.getPixelFromCoordinate(coord);return pixel?{x:pixel[0],y:pixel[1]}:{x:null,y:null}},WPGMZA.OLMap.prototype.enableBicycleLayer=function(value){if(value)this.bicycleLayer||(this.bicycleLayer=new ol.layer.Tile({source:new ol.source.OSM({url:"http://{a-c}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png"})})),this.olMap.addLayer(this.bicycleLayer);else{if(!this.bicycleLayer)return;this.olMap.removeLayer(this.bicycleLayer)}},WPGMZA.OLMap.prototype.onElementResized=function(event){this.olMap.updateSize()},WPGMZA.OLMap.prototype.onRightClick=function(event){if($(event.target).closest(".ol-marker, .wpgmza_modern_infowindow, .wpgmza-modern-store-locator").length)return!0;var parentOffset=$(this.element).offset(),relX=event.pageX-parentOffset.left,relY=event.pageY-parentOffset.top,latLng=this.pixelsToLatLng(relX,relY);return this.trigger({type:"rightclick",latLng:latLng}),$(this.element).trigger({type:"rightclick",latLng:latLng}),event.preventDefault(),!1}}),jQuery(function($){var Parent;WPGMZA.OLMarker=function(row){var self=this;Parent.call(this,row);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);if(WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT){var img=$("<img alt=''/>")[0];img.onload=function(event){self.updateElementHeight(),self.map&&self.map.olMap.updateSize()},img.src=WPGMZA.defaultMarkerIcon,this.element=$("<div class='ol-marker'></div>")[0],this.element.appendChild(img),this.element.wpgmzaMarker=this,$(this.element).on("mouseover",function(event){self.dispatchEvent("mouseover")}),this.overlay=new ol.Overlay({element:this.element,position:origin,positioning:"bottom-center",stopEvent:!1}),this.overlay.setPosition(origin),this.animation&&this.setAnimation(this.animation),this.setLabel(this.settings.label),row&&row.draggable&&this.setDraggable(!0),this.rebindClickListener()}else{if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)throw new Error("Invalid marker render mode");this.feature=new ol.Feature({geometry:new ol.geom.Point(origin)}),this.feature.setStyle(this.getVectorLayerStyle()),this.feature.wpgmzaMarker=this}this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.OLMarker.prototype=Object.create(Parent.prototype),WPGMZA.OLMarker.prototype.constructor=WPGMZA.OLMarker,WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT="element",WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER="vector",WPGMZA.OLMarker.renderMode=WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT,"open-layers"==WPGMZA.settings.engine&&WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(WPGMZA.OLMarker.defaultVectorLayerStyle=new ol.style.Style({image:new ol.style.Icon({anchor:[.5,1],src:WPGMZA.defaultMarkerIcon})}),WPGMZA.OLMarker.hiddenVectorLayerStyle=new ol.style.Style({})),WPGMZA.OLMarker.prototype.getVectorLayerStyle=function(){return this.vectorLayerStyle?this.vectorLayerStyle:WPGMZA.OLMarker.defaultVectorLayerStyle},WPGMZA.OLMarker.prototype.updateElementHeight=function(height,calledOnFocus){var self=this;height||(height=$(this.element).find("img").height()),0!=height||calledOnFocus||$(window).one("focus",function(event){self.updateElementHeight(!1,!0)}),$(this.element).css({height:height+"px"})},WPGMZA.OLMarker.prototype.addLabel=function(){this.setLabel(this.getLabelText())},WPGMZA.OLMarker.prototype.setLabel=function(label){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?label?(this.label||(this.label=$("<div class='ol-marker-label'/>"),$(this.element).append(this.label)),this.label.html(label)):this.label&&$(this.element).find(".ol-marker-label").remove():console.warn("Marker labels are not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.getVisible=function(visible){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)return"none"!=this.overlay.getElement().style.display},WPGMZA.OLMarker.prototype.setVisible=function(visible){if(Parent.prototype.setVisible.call(this,visible),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(visible){var style=this.getVectorLayerStyle();this.feature.setStyle(style)}else this.feature.setStyle(null);else this.overlay.getElement().style.display=visible?"block":"none"},WPGMZA.OLMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?this.feature.setGeometry(new ol.geom.Point(origin)):this.overlay.setPosition(origin)},WPGMZA.OLMarker.prototype.updateOffset=function(x,y){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER){var x=this._offset.x,y=this._offset.y;this.element.style.position="relative",this.element.style.left=x+"px",this.element.style.top=y+"px"}else console.warn("Marker offset is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setAnimation=function(anim){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)switch(Parent.prototype.setAnimation.call(this,anim),anim){case WPGMZA.Marker.ANIMATION_NONE:$(this.element).removeAttr("data-anim");break;case WPGMZA.Marker.ANIMATION_BOUNCE:$(this.element).attr("data-anim","bounce");break;case WPGMZA.Marker.ANIMATION_DROP:$(this.element).attr("data-anim","drop")}else console.warn("Marker animation is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setDraggable=function(draggable){var self=this;if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(draggable){var options={disabled:!1};this.jQueryDraggableInitialized||(options.start=function(event){self.onDragStart(event)},options.stop=function(event){self.onDragEnd(event)}),$(this.element).draggable(options),this.jQueryDraggableInitialized=!0,this.rebindClickListener()}else $(this.element).draggable({disabled:!0});else console.warn("Marker dragging is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setOpacity=function(opacity){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?$(this.element).css({opacity:opacity}):console.warn("Marker opacity is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.onDragStart=function(event){this.isBeingDragged=!0,this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!1)})},WPGMZA.OLMarker.prototype.onDragEnd=function(event){var offset={top:parseFloat($(this.element).css("top").match(/-?\d+/)[0]),left:parseFloat($(this.element).css("left").match(/-?\d+/)[0])};$(this.element).css({top:"0px",left:"0px"});var currentLatLng=this.getPosition(),pixelsBeforeDrag=this.map.latLngToPixels(currentLatLng),pixelsAfterDrag={x:pixelsBeforeDrag.x+offset.left,y:pixelsBeforeDrag.y+offset.top},latLngAfterDrag=this.map.pixelsToLatLng(pixelsAfterDrag);this.setPosition(latLngAfterDrag),this.isBeingDragged=!1,this.trigger({type:"dragend",latLng:latLngAfterDrag}),"yes"!=this.map.settings.wpgmza_settings_map_draggable&&this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!0)})},WPGMZA.OLMarker.prototype.onElementClick=function(event){var self=event.currentTarget.wpgmzaMarker;self.isBeingDragged||(self.dispatchEvent("click"),self.dispatchEvent("select"))},WPGMZA.OLMarker.prototype.rebindClickListener=function(){$(this.element).off("click",this.onElementClick),$(this.element).on("click",this.onElementClick)}}),jQuery(function($){WPGMZA.OLModernStoreLocatorCircle=function(map,settings){WPGMZA.ModernStoreLocatorCircle.call(this,map,settings)},WPGMZA.OLModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.OLModernStoreLocatorCircle.prototype.constructor=WPGMZA.OLModernStoreLocatorCircle,WPGMZA.OLModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this,mapElement=$(this.map.element),olViewportElement=mapElement.children(".ol-viewport");this.canvas=document.createElement("canvas"),this.canvas.className="wpgmza-ol-canvas-overlay",mapElement.append(this.canvas),this.renderFunction=function(event){self.canvas.width==olViewportElement.width()&&self.canvas.height==olViewportElement.height()||(self.canvas.width=olViewportElement.width(),self.canvas.height=olViewportElement.height(),$(this.canvas).css({width:olViewportElement.width()+"px",height:olViewportElement.height()+"px"})),self.draw()},this.map.olMap.on("postrender",this.renderFunction)},WPGMZA.OLModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvas.getContext(type)},WPGMZA.OLModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvas.width,height:this.canvas.height}},WPGMZA.OLModernStoreLocatorCircle.prototype.getCenterPixels=function(){return this.map.latLngToPixels(this.settings.center)},WPGMZA.OLModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){return{x:0,y:0}},WPGMZA.OLModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var center=new WPGMZA.LatLng(this.settings.center),outer=new WPGMZA.LatLng(center);outer.moveByDistance(km,90);var centerPixels=this.map.latLngToPixels(center),outerPixels=this.map.latLngToPixels(outer);return Math.abs(outerPixels.x-centerPixels.x)},WPGMZA.OLModernStoreLocatorCircle.prototype.getScale=function(){return 1},WPGMZA.OLModernStoreLocatorCircle.prototype.destroy=function(){$(this.canvas).remove(),this.map.olMap.un("postrender",this.renderFunction),this.map=null,this.canvas=null}}),jQuery(function($){WPGMZA.OLModernStoreLocator=function(map_id){WPGMZA.ModernStoreLocator.call(this,map_id),$(WPGMZA.isProVersion()?".wpgmza_map[data-map-id='"+map_id+"']":"#wpgmza_map").append(this.element)},WPGMZA.OLModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator),WPGMZA.OLModernStoreLocator.prototype.constructor=WPGMZA.OLModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.OLPolygon=function(options,olFeature){if(Parent.call(this,options,olFeature),this.olStyle=new ol.style.Style,olFeature)this.olFeature=olFeature;else{var coordinates=[[]];if(options&&options.polydata){for(var paths=this.parseGeometry(options.polydata),i=0;i<paths.length;i++)coordinates[0].push(ol.proj.fromLonLat([parseFloat(paths[i].lng),parseFloat(paths[i].lat)]));this.olStyle=new ol.style.Style(this.getStyleFromSettings())}this.olFeature=new ol.Feature({geometry:new ol.geom.Polygon(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolygon:this})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.OLPolygon.prototype=Object.create(Parent.prototype),WPGMZA.OLPolygon.prototype.constructor=WPGMZA.OLPolygon,WPGMZA.OLPolygon.prototype.getStyleFromSettings=function(){var params={};return this.linecolor&&this.lineopacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA("#"+this.linecolor,this.lineopacity)})),this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillcolor,this.opacity)})),params},WPGMZA.OLPolygon.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolygon.prototype.setEditable=function(editable){},WPGMZA.OLPolygon.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates()[0];result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),jQuery(function($){var Parent;WPGMZA.OLPolyline=function(options,olFeature){if(WPGMZA.Polyline.call(this,options),this.olStyle=new ol.style.Style,olFeature)this.olFeature=olFeature;else{var coordinates=[];if(options&&(options.polydata||options.points)){var path;path=options.polydata?this.parseGeometry(options.polydata):options.points;for(var i=0;i<path.length;i++){if(!$.isNumeric(path[i].lat))throw new Error("Invalid latitude");if(!$.isNumeric(path[i].lng))throw new Error("Invalid longitude");coordinates.push(ol.proj.fromLonLat([parseFloat(path[i].lng),parseFloat(path[i].lat)]))}}var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolyline:this})},Parent=WPGMZA.Polyline,WPGMZA.OLPolyline.prototype=Object.create(Parent.prototype),WPGMZA.OLPolyline.prototype.constructor=WPGMZA.OLPolyline,WPGMZA.OLPolyline.prototype.getStyleFromSettings=function(){var params={};return this.settings.strokeOpacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA(this.settings.strokeColor,this.settings.strokeOpacity),width:parseInt(this.settings.strokeWeight)})),params},WPGMZA.OLPolyline.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolyline.prototype.setEditable=function(editable){},WPGMZA.OLPolyline.prototype.setPoints=function(points){this.olFeature&&this.layer.getSource().removeFeature(this.olFeature);for(var coordinates=[],i=0;i<points.length;i++)coordinates.push(ol.proj.fromLonLat([parseFloat(points[i].lng),parseFloat(points[i].lat)]));this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)}),this.layer.getSource().addFeature(this.olFeature)},WPGMZA.OLPolyline.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates();result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),jQuery(function($){WPGMZA.OLText=function(){}}),jQuery(function($){WPGMZA.DataTable=function(element){if(!$.fn.dataTable)return console.warn("The dataTables library is not loaded. Cannot create a dataTable. Did you enable 'Do not enqueue dataTables'?"),void(WPGMZA.settings.wpgmza_do_not_enqueue_datatables&&WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT&&alert("You have selected 'Do not enqueue DataTables' in WP Google Maps' settings. No 3rd party software is loading the DataTables library. Because of this, the marker table cannot load. Please uncheck this option to use the marker table."));if($.fn.dataTable.ext)$.fn.dataTable.ext.errMode="throw";else{var version=$.fn.dataTable.version?$.fn.dataTable.version:"unknown";console.warn("You appear to be running an outdated or modified version of the dataTables library. This may cause issues with table functionality. This is usually caused by 3rd party software loading an older version of DataTables. The loaded version is "+version+", we recommend version 1.10.12 or above.")}this.element=element,this.element.wpgmzaDataTable=this,this.dataTableElement=this.getDataTableElement();var settings=this.getDataTableSettings();this.phpClass=$(element).attr("data-wpgmza-php-class"),this.dataTable=$(this.dataTableElement).DataTable(settings),this.wpgmzaDataTable=this,this.useCompressedPathVariable=WPGMZA.restAPI.isCompressedPathVariableSupported&&WPGMZA.settings.enable_compressed_path_variables,this.method=this.useCompressedPathVariable?"GET":"POST",this.dataTable.ajax.reload()},WPGMZA.DataTable.prototype.getDataTableElement=function(){return $(this.element).find("table")},WPGMZA.DataTable.prototype.onAJAXRequest=function(data,settings){var params={phpClass:this.phpClass},attr=$(this.element).attr("data-wpgmza-ajax-parameters");return attr&&$.extend(params,JSON.parse(attr)),$.extend(data,params)},WPGMZA.DataTable.prototype.onDataTableAjaxRequest=function(data,callback,settings){var self=this,element=this.element,route=$(element).attr("data-wpgmza-rest-api-route"),params=this.onAJAXRequest(data,settings),draw=params.draw;if(delete params.draw,!route)throw new Error("No data-wpgmza-rest-api-route attribute specified");var options={method:"POST",useCompressedPathVariable:!0,data:params,dataType:"json",cache:!this.preventCaching,beforeSend:function(xhr){xhr.setRequestHeader("X-DataTables-Draw",draw)},success:function(response,status,xhr){response.draw=draw,self.lastResponse=response,callback(response)}};return WPGMZA.restAPI.call(route,options)},WPGMZA.DataTable.prototype.getDataTableSettings=function(){var self=this,element=this.element,options={};$(element).attr("data-wpgmza-datatable-options")&&(options=JSON.parse($(element).attr("data-wpgmza-datatable-options"))),options.deferLoading=!0,options.processing=!0,options.serverSide=!0,options.ajax=function(data,callback,settings){return WPGMZA.DataTable.prototype.onDataTableAjaxRequest.apply(self,arguments)},WPGMZA.AdvancedTableDataTable&&this instanceof WPGMZA.AdvancedTableDataTable&&WPGMZA.settings.wpgmza_default_items&&(options.iDisplayLength=parseInt(WPGMZA.settings.wpgmza_default_items)),options.aLengthMenu=[[5,10,25,50,100,-1],["5","10","25","50","100",WPGMZA.localized_strings.all]];var languageURL=this.getLanguageURL();return languageURL&&(options.language={url:languageURL}),options},WPGMZA.DataTable.prototype.getLanguageURL=function(){if(!WPGMZA.locale)return null;var languageURL;switch(WPGMZA.locale.substr(0,2)){case"af":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Afrikaans.json";break;case"sq":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Albanian.json";break;case"am":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Amharic.json";break;case"ar":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Arabic.json";break;case"hy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Armenian.json";break;case"az":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Azerbaijan.json";break;case"bn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bangla.json";break;case"eu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Basque.json";break;case"be":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Belarusian.json";break;case"bg":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bulgarian.json";break;case"ca":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Catalan.json";break;case"zh":languageURL="zh_TW"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese-traditional.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese.json";break;case"hr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Croatian.json";break;case"cs":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Czech.json";break;case"da":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Danish.json";break;case"nl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Dutch.json";break;case"et":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Estonian.json";break;case"fi":languageURL=WPGMZA.locale.match(/^fil/)?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Filipino.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Finnish.json";break;case"fr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/French.json";break;case"gl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Galician.json";break;case"ka":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Georgian.json";break;case"de":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/German.json";break;case"el":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Greek.json";break;case"gu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Gujarati.json";break;case"he":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hebrew.json";break;case"hi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hindi.json";break;case"hu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hungarian.json";break;case"is":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Icelandic.json";break;case"id":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Indonesian.json";break;case"ga":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Irish.json";break;case"it":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Italian.json";break;case"ja":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Japanese.json";break;case"kk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kazakh.json";break;case"ko":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Korean.json";break;case"ky":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kyrgyz.json";break;case"lv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Latvian.json";break;case"lt":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Lithuanian.json";break;case"mk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Macedonian.json";break;case"ml":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Malay.json";break;case"mn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Mongolian.json";break;case"ne":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Nepali.json";break;case"nb":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Bokmal.json";break;case"nn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Nynorsk.json";break;case"ps":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Pashto.json";break;case"fa":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Persian.json";break;case"pl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Polish.json";break;case"pt":languageURL="pt_BR"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese-Brasil.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese.json";break;case"ro":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Romanian.json";break;case"ru":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Russian.json";break;case"sr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Serbian.json";break;case"si":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Sinhala.json";break;case"sk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovak.json";break;case"sl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovenian.json";break;case"es":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Spanish.json";break;case"sw":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swahili.json";break;case"sv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swedish.json";break;case"ta":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Tamil.json";break;case"te":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/telugu.json";break;case"th":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Thai.json";break;case"tr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Turkish.json";break;case"uk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Ukrainian.json";break;case"ur":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Urdu.json";break;case"uz":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Uzbek.json";break;case"vi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Vietnamese.json";break;case"cy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Welsh.json"}return languageURL},WPGMZA.DataTable.prototype.onAJAXResponse=function(response){},WPGMZA.DataTable.prototype.reload=function(){this.dataTable.ajax.reload(null,!1)}}),jQuery(function($){WPGMZA.AdminMarkerDataTable=function(element){var self=this;this.preventCaching=!0,WPGMZA.DataTable.call(this,element),$(element).on("click","[data-delete-marker-id]",function(event){self.onDeleteMarker(event)}),$(element).find(".wpgmza.select_all_markers").on("click",function(event){self.onSelectAll(event)}),$(element).find(".wpgmza.bulk_delete").on("click",function(event){self.onBulkDelete(event)})},WPGMZA.AdminMarkerDataTable.prototype=Object.create(WPGMZA.DataTable.prototype),WPGMZA.AdminMarkerDataTable.prototype.constructor=WPGMZA.AdminMarkerDataTable,WPGMZA.AdminMarkerDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaMarkerData=meta},options},WPGMZA.AdminMarkerDataTable.prototype.onEditMarker=function(event){WPGMZA.animatedScroll("#wpgmaps_tabs_markers")},WPGMZA.AdminMarkerDataTable.prototype.onDeleteMarker=function(event){var self=this,id=$(event.currentTarget).attr("data-delete-marker-id"),data={action:"delete_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:id};$.post(ajaxurl,data,function(response){WPGMZA.mapEditPage.map.removeMarkerByID(id),self.reload()})},WPGMZA.AdminMarkerDataTable.prototype.onApproveMarker=function(event){var cur_id=$(this).attr("id"),data={action:"approve_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:cur_id};$.post(ajaxurl,data,function(response){wpgmza_InitMap(),wpgmza_reinitialisetbl()})},WPGMZA.AdminMarkerDataTable.prototype.onSelectAll=function(event){$(this.element).find("input[name='mark']").prop("checked",!0)},WPGMZA.AdminMarkerDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[],map=WPGMZA.maps[0];$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaMarkerData.id)}),ids.forEach(function(marker_id){var marker=map.getMarkerByID(marker_id);marker&&map.removeMarker(marker)}),WPGMZA.restAPI.call("/markers/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},$(document).ready(function(event){$("[data-wpgmza-admin-marker-datatable]").each(function(index,el){WPGMZA.adminMarkerDataTable=new WPGMZA.AdminMarkerDataTable(el)})})});
1
+ jQuery(function($){function onScroll(event){$(".wpgmza_map").each(function(index,el){var isInView=WPGMZA.isElementInView(el);el.wpgmzaScrollIntoViewTriggerFlag?isInView||(el.wpgmzaScrollIntoViewTriggerFlag=!1):isInView&&($(el).trigger("mapscrolledintoview.wpgmza"),el.wpgmzaScrollIntoViewTriggerFlag=!0)})}var core={MARKER_PULL_DATABASE:"0",MARKER_PULL_XML:"1",PAGE_MAP_LIST:"map-list",PAGE_MAP_EDIT:"map-edit",PAGE_SETTINGS:"map-settings",PAGE_SUPPORT:"map-support",PAGE_CATEGORIES:"categories",PAGE_ADVANCED:"advanced",PAGE_CUSTOM_FIELDS:"custom-fields",maps:[],events:null,settings:null,restAPI:null,localized_strings:null,loadingHTML:'<div class="wpgmza-preloader"><div class="wpgmza-loader">...</div></div>',getCurrentPage:function(){switch(WPGMZA.getQueryParamValue("page")){case"wp-google-maps-menu":return window.location.href.match(/action=edit/)&&window.location.href.match(/map_id=\d+/)?WPGMZA.PAGE_MAP_EDIT:WPGMZA.PAGE_MAP_LIST;case"wp-google-maps-menu-settings":return WPGMZA.PAGE_SETTINGS;case"wp-google-maps-menu-support":return WPGMZA.PAGE_SUPPORT;case"wp-google-maps-menu-categories":return WPGMZA.PAGE_CATEGORIES;case"wp-google-maps-menu-advanced":return WPGMZA.PAGE_ADVANCED;case"wp-google-maps-menu-custom-fields":return WPGMZA.PAGE_CUSTOM_FIELDS;default:return null}},getScrollAnimationOffset:function(){return(WPGMZA.settings.scroll_animation_offset||0)+$("#wpadminbar").height()},getScrollAnimationDuration:function(){return WPGMZA.settings.scroll_animation_milliseconds?WPGMZA.settings.scroll_animation_milliseconds:500},animateScroll:function(element,milliseconds){var offset=WPGMZA.getScrollAnimationOffset();milliseconds||(milliseconds=WPGMZA.getScrollAnimationDuration()),$("html, body").animate({scrollTop:$(element).offset().top-offset},milliseconds)},extend:function(child,parent){var constructor=child;child.prototype=Object.create(parent.prototype),child.prototype.constructor=constructor},guid:function(){var d=(new Date).getTime();return"undefined"!=typeof performance&&"function"==typeof performance.now&&(d+=performance.now()),"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(c){var r=(d+16*Math.random())%16|0;return d=Math.floor(d/16),("x"===c?r:3&r|8).toString(16)})},hexOpacityToRGBA:function(colour,opacity){var hex=parseInt(colour.replace(/^#/,""),16);return[(16711680&hex)>>16,(65280&hex)>>8,255&hex,parseFloat(opacity)]},hexToRgba:function(hex){var c;return/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)?(3==(c=hex.substring(1).split("")).length&&(c=[c[0],c[0],c[1],c[1],c[2],c[2]]),c="0x"+c.join(""),{r:c>>16&255,g:c>>8&255,b:255&c,a:1}):0},rgbaToString:function(rgba){return"rgba("+rgba.r+", "+rgba.g+", "+rgba.b+", "+rgba.a+")"},latLngRegexp:/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,isLatLngString:function(str){if("string"!=typeof str)return null;str.match(/^\(.+\)$/)&&(str=str.replace(/^\(|\)$/,""));var m=str.match(WPGMZA.latLngRegexp);return m?new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])}):null},stringToLatLng:function(str){var result=WPGMZA.isLatLngString(str);if(!result)throw new Error("Not a valid latLng");return result},isHexColorString:function(str){return"string"==typeof str&&!!str.match(/#[0-9A-F]{6}/i)},imageDimensionsCache:{},getImageDimensions:function(src,callback){if(WPGMZA.imageDimensionsCache[src])callback(WPGMZA.imageDimensionsCache[src]);else{var img=document.createElement("img");img.onload=function(event){var result={width:img.width,height:img.height};WPGMZA.imageDimensionsCache[src]=result,callback(result)},img.src=src}},decodeEntities:function(input){return input.replace(/&(nbsp|amp|quot|lt|gt);/g,function(m,e){return m[e]}).replace(/&#(\d+);/gi,function(m,e){return String.fromCharCode(parseInt(e,10))})},isDeveloperMode:function(){return this.settings.developer_mode||window.Cookies&&window.Cookies.get("wpgmza-developer-mode")},isProVersion:function(){return"1"==this._isProVersion},openMediaDialog:function(callback){var file_frame;if(file_frame)return file_frame.uploader.uploader.param("post_id",set_to_post_id),void file_frame.open();(file_frame=wp.media.frames.file_frame=wp.media({title:"Select a image to upload",button:{text:"Use this image"},multiple:!1})).on("select",function(){attachment=file_frame.state().get("selection").first().toJSON(),callback(attachment.id,attachment.url)}),file_frame.open()},getCurrentPosition:function(callback,error,watch){var nativeFunction="getCurrentPosition";if(WPGMZA.userLocationDenied)error&&error({code:1,message:"Location unavailable"});else if(watch&&("userlocationupdated",nativeFunction="watchPosition",WPGMZA.getCurrentPosition(callback,!1)),navigator.geolocation){var options={enableHighAccuracy:!0};navigator.geolocation[nativeFunction]?navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){options.enableHighAccuracy=!1,navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){console.warn(err.code,err.message),1==err.code&&(WPGMZA.userLocationDenied=!0),error&&error(err)},options)},options):console.warn(nativeFunction+" is not available")}else console.warn("No geolocation available on this device")},watchPosition:function(callback,error){return WPGMZA.getCurrentPosition(callback,error,!0)},runCatchableTask:function(callback,friendlyErrorContainer){if(WPGMZA.isDeveloperMode())callback();else try{callback()}catch(e){var friendlyError=new WPGMZA.FriendlyError(e);$(friendlyErrorContainer).html(""),$(friendlyErrorContainer).append(friendlyError.element),$(friendlyErrorContainer).show()}},assertInstanceOf:function(instance,instanceName){var engine,fullInstanceName,pro=WPGMZA.isProVersion()?"Pro":"";switch(WPGMZA.settings.engine){case"open-layers":engine="OL";break;default:engine="Google"}if(fullInstanceName=WPGMZA[engine+pro+instanceName]?engine+pro+instanceName:WPGMZA[pro+instanceName]?pro+instanceName:WPGMZA[engine+instanceName]?engine+instanceName:instanceName,!(instance instanceof WPGMZA[fullInstanceName]))throw new Error("Object must be an instance of "+fullInstanceName+" (did you call a constructor directly, rather than createInstance?)")},getMapByID:function(id){return!WPGMZA.isProVersion()||MYMAP.map instanceof WPGMZA.Map?MYMAP.map:MYMAP[id].map},isGoogleAutocompleteSupported:function(){return"object"==typeof google&&"object"==typeof google.maps&&"object"==typeof google.maps.places&&"function"==typeof google.maps.places.Autocomplete},googleAPIStatus:window.wpgmza_google_api_status,isSafari:function(){var ua=navigator.userAgent.toLowerCase();return ua.match(/safari/i)&&!ua.match(/chrome/i)},isTouchDevice:function(){return"ontouchstart"in window},isDeviceiOS:function(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||!!navigator.platform&&/iPad|iPhone|iPod/.test(navigator.platform)},isModernComponentStyleAllowed:function(){return!WPGMZA.settings.user_interface_style||"legacy"==WPGMZA.settings.user_interface_style||"modern"==WPGMZA.settings.user_interface_style},isElementInView:function(element){var pageTop=$(window).scrollTop(),pageBottom=pageTop+$(window).height(),elementTop=$(element).offset().top,elementBottom=elementTop+$(element).height();return elementTop<pageTop&&elementBottom>pageBottom||(elementTop>=pageTop&&elementTop<=pageBottom||elementBottom>=pageTop&&elementBottom<=pageBottom)},getQueryParamValue:function(name){var m,regex=new RegExp(name+"=([^&#]*)");return(m=window.location.href.match(regex))?m[1]:null},notification:function(text,time){switch(arguments.length){case 0:text="",time=4e3;break;case 1:time=4e3}var html='<div class="wpgmza-popup-notification">'+text+"</div>";jQuery("body").append(html),setTimeout(function(){jQuery("body").find(".wpgmza-popup-notification").remove()},time)}};window.WPGMZA?window.WPGMZA=$.extend(window.WPGMZA,core):window.WPGMZA=core;for(var key in WPGMZA_localized_data){var value=WPGMZA_localized_data[key];WPGMZA[key]=value}WPGMZA.settings.useLegacyGlobals=!0,jQuery(function($){$(window).trigger("ready.wpgmza"),$("script[src*='wp-google-maps.combined.js'], script[src*='wp-google-maps-pro.combined.js']").length&&console.warn("Minified script is out of date, using combined script instead.");var elements=$("script").filter(function(){return this.src.match(/(^|\/)jquery\.(min\.)?js(\?|$)/i)});elements.length>1&&console.warn("Multiple jQuery versions detected: ",elements),WPGMZA.restAPI=WPGMZA.RestAPI.createInstance(),$(document).on("click",".wpgmza_edit_btn",function(){WPGMZA.animateScroll("#wpgmaps_tabs_markers")})}),$(window).on("load",function(event){for(var key in[]){console.warn("The Array object has been extended incorrectly by your theme or another plugin. This can cause issues with functionality.");break}if("https:"!=window.location.protocol){var warning='<div class="notice notice-warning"><p>'+WPGMZA.localized_strings.unsecure_geolocation+"</p></div>";$(".wpgmza-geolocation-setting").each(function(index,el){$(el).after($(warning))})}}),$(window).on("scroll",onScroll),$(window).on("load",onScroll),WPGMZA.refreshOnLoad&&window.location.reload()}),jQuery(function($){WPGMZA.Compatibility=function(){this.preventDocumentWriteGoogleMapsAPI()},WPGMZA.Compatibility.prototype.preventDocumentWriteGoogleMapsAPI=function(){var old=document.write;document.write=function(content){content.match&&content.match(/maps\.google/)||old.call(document,content)}},WPGMZA.compatiblityModule=new WPGMZA.Compatibility}),function(root,factory){"object"==typeof exports?module.exports=factory(root):"function"==typeof define&&define.amd?define([],factory.bind(root,root)):factory(root)}("undefined"!=typeof global?global:this,function(root){if(root.CSS&&root.CSS.escape)return root.CSS.escape;var cssEscape=function(value){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var codeUnit,string=String(value),length=string.length,index=-1,result="",firstCodeUnit=string.charCodeAt(0);++index<length;)0!=(codeUnit=string.charCodeAt(index))?result+=codeUnit>=1&&codeUnit<=31||127==codeUnit||0==index&&codeUnit>=48&&codeUnit<=57||1==index&&codeUnit>=48&&codeUnit<=57&&45==firstCodeUnit?"\\"+codeUnit.toString(16)+" ":(0!=index||1!=length||45!=codeUnit)&&(codeUnit>=128||45==codeUnit||95==codeUnit||codeUnit>=48&&codeUnit<=57||codeUnit>=65&&codeUnit<=90||codeUnit>=97&&codeUnit<=122)?string.charAt(index):"\\"+string.charAt(index):result+="�";return result};return root.CSS||(root.CSS={}),root.CSS.escape=cssEscape,cssEscape}),jQuery(function($){function deg2rad(deg){return deg*(Math.PI/180)}Math.PI;WPGMZA.Distance={MILES:!0,KILOMETERS:!1,MILES_PER_KILOMETER:.621371,KILOMETERS_PER_MILE:1.60934,uiToMeters:function(uiDistance){return parseFloat(uiDistance)/(WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?WPGMZA.Distance.MILES_PER_KILOMETER:1)*1e3},uiToKilometers:function(uiDistance){return.001*WPGMZA.Distance.uiToMeters(uiDistance)},uiToMiles:function(uiDistance){return WPGMZA.Distance.uiToKilometers(uiDistance)*WPGMZA.Distance.MILES_PER_KILOMETER},kilometersToUI:function(km){return WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?km*WPGMZA.Distance.MILES_PER_KILOMETER:km},between:function(a,b){if(!(a instanceof WPGMZA.LatLng))throw new Error("First argument must be an instance of WPGMZA.LatLng");if(!(b instanceof WPGMZA.LatLng))throw new Error("Second argument must be an instance of WPGMZA.LatLng");if(a===b)return 0;var lat1=a.lat,lon1=a.lng,lat2=b.lat,lon2=b.lng,dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1),a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}}),jQuery(function($){WPGMZA.EliasFano=function(){if(!WPGMZA.EliasFano.isSupported)throw new Error("Elias Fano encoding is not supported on browsers without Uint8Array");WPGMZA.EliasFano.decodingTablesInitialised||WPGMZA.EliasFano.createDecodingTable()},WPGMZA.EliasFano.isSupported="Uint8Array"in window,WPGMZA.EliasFano.decodingTableHighBits=[],WPGMZA.EliasFano.decodingTableDocIDNumber=null,WPGMZA.EliasFano.decodingTableHighBitsCarryover=null,WPGMZA.EliasFano.createDecodingTable=function(){WPGMZA.EliasFano.decodingTableDocIDNumber=new Uint8Array(256),WPGMZA.EliasFano.decodingTableHighBitsCarryover=new Uint8Array(256);for(var decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,i=0;i<256;i++){var zeroCount=0;decodingTableHighBits[i]=[];for(var j=7;j>=0;j--)(i&1<<j)>0?(decodingTableHighBits[i][decodingTableDocIDNumber[i]]=zeroCount,decodingTableDocIDNumber[i]++,zeroCount=0):zeroCount=(zeroCount+1)%255;decodingTableHighBitsCarryover[i]=zeroCount}WPGMZA.EliasFano.decodingTablesInitialised=!0},WPGMZA.EliasFano.prototype.encode=function(list){function toByte(n){return 255&n}var lastDocID=0,buffer1=0,bufferLength1=0,buffer2=0,bufferLength2=0;if(0==list.length)return result;var compressedBufferPointer1=0,compressedBufferPointer2=0,averageDelta=list[list.length-1]/list.length,averageDeltaLog=Math.log2(averageDelta),lowBitsLength=Math.floor(averageDeltaLog),lowBitsMask=(1<<lowBitsLength)-1,prev=null,maxCompressedSize=Math.floor((2+Math.ceil(Math.log2(averageDelta)))*list.length/8)+6,compressedBuffer=new Uint8Array(maxCompressedSize);lowBitsLength<0&&(lowBitsLength=0),compressedBufferPointer2=Math.floor(lowBitsLength*list.length/8+6),compressedBuffer[compressedBufferPointer1++]=toByte(list.length),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>8),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>16),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>24),compressedBuffer[compressedBufferPointer1++]=toByte(lowBitsLength),list.forEach(function(docID){var docIDDelta=docID-lastDocID-1;if(!$.isNumeric(docID))throw new Error("Value is not numeric");if(docID=parseInt(docID),null!==prev&&docID<=prev)throw new Error("Elias Fano encoding can only be used on a sorted, ascending list of unique integers.");for(prev=docID,buffer1<<=lowBitsLength,buffer1|=docIDDelta&lowBitsMask,bufferLength1+=lowBitsLength;bufferLength1>7;)bufferLength1-=8,compressedBuffer[compressedBufferPointer1++]=toByte(buffer1>>bufferLength1);var unaryCodeLength=1+(docIDDelta>>lowBitsLength);for(buffer2<<=unaryCodeLength,buffer2|=1,bufferLength2+=unaryCodeLength;bufferLength2>7;)bufferLength2-=8,compressedBuffer[compressedBufferPointer2++]=toByte(buffer2>>bufferLength2);lastDocID=docID}),bufferLength1>0&&(compressedBuffer[compressedBufferPointer1++]=toByte(buffer1<<8-bufferLength1)),bufferLength2>0&&(compressedBuffer[compressedBufferPointer2++]=toByte(buffer2<<8-bufferLength2));var result=new Uint8Array(compressedBuffer);return result.pointer=compressedBufferPointer2,result},WPGMZA.EliasFano.prototype.decode=function(compressedBuffer){var resultPointer=0,list=[],decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,lowBitsPointer=0,lastDocID=0,docID=0,docIDNumber=0,listCount=compressedBuffer[lowBitsPointer++];listCount|=compressedBuffer[lowBitsPointer++]<<8,listCount|=compressedBuffer[lowBitsPointer++]<<16,listCount|=compressedBuffer[lowBitsPointer++]<<24;var highBitsPointer,lowBitsLength=compressedBuffer[lowBitsPointer++],lowBitsCount=0,lowBits=0,cb=1;for(highBitsPointer=Math.floor(lowBitsLength*listCount/8+6);highBitsPointer<compressedBuffer.pointer;highBitsPointer++){docID+=decodingTableHighBitsCarryover[cb],docIDNumber=decodingTableDocIDNumber[cb=compressedBuffer[highBitsPointer]];for(var i=0;i<docIDNumber;i++){for(docID<<=lowBitsCount,docID|=lowBits&(1<<lowBitsCount)-1;lowBitsCount<lowBitsLength;)docID<<=8,docID|=lowBits=compressedBuffer[lowBitsPointer++],lowBitsCount+=8;docID>>=lowBitsCount-=lowBitsLength,docID+=(decodingTableHighBits[cb][i]<<lowBitsLength)+lastDocID+1,list[resultPointer++]=docID,lastDocID=docID,docID=0}}return list}}),jQuery(function($){WPGMZA.EventDispatcher=function(){WPGMZA.assertInstanceOf(this,"EventDispatcher"),this._listenersByType={}},WPGMZA.EventDispatcher.prototype.addEventListener=function(type,listener,thisObject,useCapture){var types=type.split(/\s+/);if(types.length>1)for(var i=0;i<types.length;i++)this.addEventListener(types[i],listener,thisObject,useCapture);else{if(!(listener instanceof Function))throw new Error("Listener must be a function");var target;target=this._listenersByType.hasOwnProperty(type)?this._listenersByType[type]:this._listenersByType[type]=[];var obj={listener:listener,thisObject:thisObject||this,useCapture:!!useCapture};target.push(obj)}},WPGMZA.EventDispatcher.prototype.on=WPGMZA.EventDispatcher.prototype.addEventListener,WPGMZA.EventDispatcher.prototype.removeEventListener=function(type,listener,thisObject,useCapture){var arr,obj;if(arr=this._listenersByType[type]){thisObject||(thisObject=this),useCapture=!!useCapture;for(var i=0;i<arr.length;i++)if(obj=arr[i],(1==arguments.length||obj.listener==listener)&&obj.thisObject==thisObject&&obj.useCapture==useCapture)return void arr.splice(i,1)}},WPGMZA.EventDispatcher.prototype.off=WPGMZA.EventDispatcher.prototype.removeEventListener,WPGMZA.EventDispatcher.prototype.hasEventListener=function(type){return!!_listenersByType[type]},WPGMZA.EventDispatcher.prototype.dispatchEvent=function(event){if(!(event instanceof WPGMZA.Event))if("string"==typeof event)event=new WPGMZA.Event(event);else{var src=event;event=new WPGMZA.Event;for(var name in src)event[name]=src[name]}event.target=this;for(var path=[],obj=this.parent;null!=obj;obj=obj.parent)path.unshift(obj);event.phase=WPGMZA.Event.CAPTURING_PHASE;for(var i=0;i<path.length&&!event._cancelled;i++)path[i]._triggerListeners(event);if(!event._cancelled){for(event.phase=WPGMZA.Event.AT_TARGET,this._triggerListeners(event),event.phase=WPGMZA.Event.BUBBLING_PHASE,i=path.length-1;i>=0&&!event._cancelled;i--)path[i]._triggerListeners(event);for(var topMostElement=this.element,obj=this.parent;null!=obj;obj=obj.parent)obj.element&&(topMostElement=obj.element);if(topMostElement){var customEvent={};for(var key in event){var value=event[key];"type"==key&&(value+=".wpgmza"),customEvent[key]=value}$(topMostElement).trigger(customEvent)}}},WPGMZA.EventDispatcher.prototype.trigger=WPGMZA.EventDispatcher.prototype.dispatchEvent,WPGMZA.EventDispatcher.prototype._triggerListeners=function(event){var arr,obj;if(arr=this._listenersByType[event.type])for(var i=0;i<arr.length;i++)obj=arr[i],(event.phase!=WPGMZA.Event.CAPTURING_PHASE||obj.useCapture)&&obj.listener.call(arr[i].thisObject,event)},WPGMZA.events=new WPGMZA.EventDispatcher}),jQuery(function($){WPGMZA.Event=function(options){if("string"==typeof options&&(this.type=options),this.bubbles=!0,this.cancelable=!0,this.phase=WPGMZA.Event.PHASE_CAPTURE,this.target=null,this._cancelled=!1,"object"==typeof options)for(var name in options)this[name]=options[name]},WPGMZA.Event.CAPTURING_PHASE=0,WPGMZA.Event.AT_TARGET=1,WPGMZA.Event.BUBBLING_PHASE=2,WPGMZA.Event.prototype.stopPropagation=function(){this._cancelled=!0}}),jQuery(function($){WPGMZA.FancyControls={formatToggleSwitch:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-round-flat"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)},formatToggleButton:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-yes-no"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(label).attr("data-on",WPGMZA.localized_strings.yes),$(label).attr("data-off",WPGMZA.localized_strings.no),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)}},$(".wpgmza-fancy-toggle-switch").each(function(index,el){WPGMZA.FancyControls.formatToggleSwitch(el)}),$(".wpgmza-fancy-toggle-button").each(function(index,el){WPGMZA.FancyControls.formatToggleButton(el)})}),jQuery(function($){WPGMZA.FriendlyError=function(){}}),jQuery(function($){WPGMZA.Geocoder=function(){WPGMZA.assertInstanceOf(this,"Geocoder")},WPGMZA.Geocoder.SUCCESS="success",WPGMZA.Geocoder.ZERO_RESULTS="zero-results",WPGMZA.Geocoder.FAIL="fail",WPGMZA.Geocoder.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLGeocoder;default:return WPGMZA.GoogleGeocoder}},WPGMZA.Geocoder.createInstance=function(){return new(WPGMZA.Geocoder.getConstructor())},WPGMZA.Geocoder.prototype.getLatLngFromAddress=function(options,callback){if(WPGMZA.isLatLngString(options.address)){var parts=options.address.split(/,\s*/),latLng=new WPGMZA.LatLng({lat:parseFloat(parts[0]),lng:parseFloat(parts[1])});latLng.latLng=latLng,callback([latLng],WPGMZA.Geocoder.SUCCESS)}},WPGMZA.Geocoder.prototype.getAddressFromLatLng=function(options,callback){callback([new WPGMZA.LatLng(options.latLng).toString()],WPGMZA.Geocoder.SUCCESS)},WPGMZA.Geocoder.prototype.geocode=function(options,callback){if("address"in options)return this.getLatLngFromAddress(options,callback);if("latLng"in options)return this.getAddressFromLatLng(options,callback);throw new Error("You must supply either a latLng or address")}}),jQuery(function($){WPGMZA.GoogleAPIErrorHandler=function(){var self=this;if("google-maps"==WPGMZA.settings.engine&&("map-edit"==WPGMZA.currentPage||0==WPGMZA.is_admin&&1==WPGMZA.userCanAdministrator)){this.element=$(WPGMZA.html.googleMapsAPIErrorDialog),1==WPGMZA.is_admin&&this.element.find(".wpgmza-front-end-only").remove(),this.errorMessageList=this.element.find(".wpgmza-google-api-error-list"),this.templateListItem=this.element.find("li.template").remove(),this.messagesAlreadyDisplayed={};var _error=console.error;console.error=function(message){self.onErrorMessage(message),_error.apply(this,arguments)},"google-maps"!=WPGMZA.settings.engine||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT||this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key,["https://www.wpgmaps.com/get-a-google-maps-api-key/"])}},WPGMZA.GoogleAPIErrorHandler.prototype.onErrorMessage=function(message){var m;if(message)if((m=message.match(/You have exceeded your (daily )?request quota for this API/))||(m=message.match(/This API project is not authorized to use this API/))||(m=message.match(/^Geocoding Service: .+/))){var urls=message.match(/http(s)?:\/\/[^\s]+/gm);this.addErrorMessage(m[0],urls)}else(m=message.match(/^Google Maps.+error: (.+)\s+(http(s?):\/\/.+)/m))&&this.addErrorMessage(m[1].replace(/([A-Z])/g," $1"),[m[2]])},WPGMZA.GoogleAPIErrorHandler.prototype.addErrorMessage=function(message,urls){var self=this;if(!this.messagesAlreadyDisplayed[message]){var li=this.templateListItem.clone();$(li).find(".wpgmza-message").html(message);var buttonContainer=$(li).find(".wpgmza-documentation-buttons"),buttonTemplate=$(li).find(".wpgmza-documentation-buttons>a");if(buttonTemplate.remove(),urls&&urls.length){for(var i=0;i<urls.length;i++){urls[i];var button=buttonTemplate.clone(),text=WPGMZA.localized_strings.documentation;button.attr("href",urls[i]),$(button).find("i").addClass("fa-external-link"),$(button).append(text)}buttonContainer.append(button)}$(this.errorMessageList).append(li),$("#wpgmza_map, .wpgmza_map").each(function(index,el){var container=$(el).find(".wpgmza-google-maps-api-error-overlay");0==container.length&&(container=$("<div class='wpgmza-google-maps-api-error-overlay'></div>")).html(self.element.html()),setTimeout(function(){$(el).append(container)},1e3)}),$(".gm-err-container").parent().css({"z-index":1}),this.messagesAlreadyDisplayed[message]=!0}},WPGMZA.googleAPIErrorHandler=new WPGMZA.GoogleAPIErrorHandler}),jQuery(function($){WPGMZA.InfoWindow=function(mapObject){var self=this;WPGMZA.EventDispatcher.call(this),WPGMZA.assertInstanceOf(this,"InfoWindow"),this.on("infowindowopen",function(event){self.onOpen(event)}),mapObject&&(this.mapObject=mapObject,this.state=WPGMZA.InfoWindow.STATE_CLOSED,mapObject.map?setTimeout(function(){self.onMapObjectAdded(event)},100):mapObject.addEventListener("added",function(event){self.onMapObjectAdded(event)}))},WPGMZA.InfoWindow.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.InfoWindow.prototype.constructor=WPGMZA.InfoWindow,WPGMZA.InfoWindow.OPEN_BY_CLICK=1,WPGMZA.InfoWindow.OPEN_BY_HOVER=2,WPGMZA.InfoWindow.STATE_OPEN="open",WPGMZA.InfoWindow.STATE_CLOSED="closed",WPGMZA.InfoWindow.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProInfoWindow:WPGMZA.OLInfoWindow;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProInfoWindow:WPGMZA.GoogleInfoWindow}},WPGMZA.InfoWindow.createInstance=function(mapObject){return new(this.getConstructor())(mapObject)},WPGMZA.InfoWindow.prototype.getContent=function(callback){var html="";this.mapObject instanceof WPGMZA.Marker&&(html=this.mapObject.address),callback(html)},WPGMZA.InfoWindow.prototype.open=function(map,mapObject){return this.mapObject=mapObject,!WPGMZA.settings.disable_infowindows&&"1"!=WPGMZA.settings.wpgmza_settings_disable_infowindows&&(!this.mapObject.disableInfoWindow&&(this.state=WPGMZA.InfoWindow.STATE_OPEN,!0))},WPGMZA.InfoWindow.prototype.close=function(){this.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(this.state=WPGMZA.InfoWindow.STATE_CLOSED,this.trigger("infowindowclose"))},WPGMZA.InfoWindow.prototype.setContent=function(options){},WPGMZA.InfoWindow.prototype.setOptions=function(options){},WPGMZA.InfoWindow.prototype.onMapObjectAdded=function(){1==this.mapObject.settings.infoopen&&this.open()},WPGMZA.InfoWindow.prototype.onOpen=function(){}}),jQuery(function($){WPGMZA.LatLng=function(arg,lng){if(this._lat=0,this._lng=0,0!=arguments.length)if(1==arguments.length){if("string"==typeof arg){var m;if(!(m=arg.match(WPGMZA.LatLng.REGEXP)))throw new Error("Invalid LatLng string");arg={lat:m[1],lng:m[3]}}if("object"!=typeof arg||!("lat"in arg&&"lng"in arg))throw new Error("Argument must be a LatLng literal");this.lat=arg.lat,this.lng=arg.lng}else this.lat=arg,this.lng=lng},WPGMZA.LatLng.REGEXP=/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,WPGMZA.LatLng.isValid=function(obj){return"object"==typeof obj&&("lat"in obj&&"lng"in obj)},WPGMZA.LatLng.isLatLngString=function(str){return"string"==typeof str&&!!str.match(WPGMZA.LatLng.REGEXP)},Object.defineProperty(WPGMZA.LatLng.prototype,"lat",{get:function(){return this._lat},set:function(val){if(!$.isNumeric(val))throw new Error("Latitude must be numeric");this._lat=parseFloat(val)}}),Object.defineProperty(WPGMZA.LatLng.prototype,"lng",{get:function(){return this._lng},set:function(val){if(!$.isNumeric(val))throw new Error("Longitude must be numeric");this._lng=parseFloat(val)}}),WPGMZA.LatLng.fromString=function(string){if(!WPGMZA.LatLng.isLatLngString(string))throw new Error("Not a valid latlng string");var m=string.match(WPGMZA.LatLng.REGEXP);return new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])})},WPGMZA.LatLng.prototype.toString=function(){return this._lat+", "+this._lng},WPGMZA.LatLng.fromCurrentPosition=function(callback,options){options||(options={}),callback&&WPGMZA.getCurrentPosition(function(position){var latLng=new WPGMZA.LatLng({lat:position.coords.latitude,lng:position.coords.longitude});options.geocodeAddress?WPGMZA.Geocoder.createInstance().getAddressFromLatLng({latLng:latLng},function(results){results.length&&(latLng.address=results[0]),callback(latLng)}):callback(latLng)})},WPGMZA.LatLng.fromGoogleLatLng=function(googleLatLng){return new WPGMZA.LatLng(googleLatLng.lat(),googleLatLng.lng())},WPGMZA.LatLng.toGoogleLatLngArray=function(arr){var result=[];return arr.forEach(function(nativeLatLng){if(!(nativeLatLng instanceof WPGMZA.LatLng||"lat"in nativeLatLng&&"lng"in nativeLatLng))throw new Error("Unexpected input");result.push(new google.maps.LatLng({lat:parseFloat(nativeLatLng.lat),lng:parseFloat(nativeLatLng.lng)}))}),result},WPGMZA.LatLng.prototype.toGoogleLatLng=function(){return new google.maps.LatLng({lat:this.lat,lng:this.lng})},WPGMZA.LatLng.prototype.toLatLngLiteral=function(){return{lat:this.lat,lng:this.lng}},WPGMZA.LatLng.prototype.moveByDistance=function(kilometers,heading){var delta=parseFloat(kilometers)/6371,theta=parseFloat(heading)/180*Math.PI,phi1=this.lat/180*Math.PI,lambda1=this.lng/180*Math.PI,sinPhi1=Math.sin(phi1),cosPhi1=Math.cos(phi1),sinDelta=Math.sin(delta),cosDelta=Math.cos(delta),sinTheta=Math.sin(theta),sinPhi2=sinPhi1*cosDelta+cosPhi1*sinDelta*Math.cos(theta),phi2=Math.asin(sinPhi2),y=sinTheta*sinDelta*cosPhi1,x=cosDelta-sinPhi1*sinPhi2,lambda2=lambda1+Math.atan2(y,x);this.lat=180*phi2/Math.PI,this.lng=180*lambda2/Math.PI},WPGMZA.LatLng.prototype.getGreatCircleDistance=function(arg1,arg2){var other,lat1=this.lat,lon1=this.lng;if(1==arguments.length)other=new WPGMZA.LatLng(arg1);else{if(2!=arguments.length)throw new Error("Invalid number of arguments");other=new WPGMZA.LatLng(arg1,arg2)}var lat2=other.lat,lon2=other.lng,phi1=lat1.toRadians(),phi2=lat2.toRadians(),deltaPhi=(lat2-lat1).toRadians(),deltaLambda=(lon2-lon1).toRadians(),a=Math.sin(deltaPhi/2)*Math.sin(deltaPhi/2)+Math.cos(phi1)*Math.cos(phi2)*Math.sin(deltaLambda/2)*Math.sin(deltaLambda/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}),jQuery(function($){WPGMZA.LatLngBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLngBounds){var other=southWest;this.south=other.south,this.north=other.north,this.west=other.west,this.east=other.east}else southWest&&northEast&&(this.south=southWest.lat,this.north=northEast.lat,this.west=southWest.lng,this.east=northEast.lng)},WPGMZA.LatLngBounds.fromGoogleLatLngBounds=function(googleLatLngBounds){if(!(googleLatLngBounds instanceof google.maps.LatLngBounds))throw new Error("Argument must be an instance of google.maps.LatLngBounds");var result=new WPGMZA.LatLngBounds,southWest=googleLatLngBounds.getSouthWest(),northEast=googleLatLngBounds.getNorthEast();return result.north=northEast.lat(),result.south=southWest.lat(),result.west=southWest.lng(),result.east=northEast.lng(),result},WPGMZA.LatLngBounds.prototype.isInInitialState=function(){return void 0==this.north&&void 0==this.south&&void 0==this.west&&void 0==this.east},WPGMZA.LatLngBounds.prototype.extend=function(latLng){if(latLng instanceof WPGMZA.LatLng||(latLng=new WPGMZA.LatLng(latLng)),this.isInInitialState())return this.north=this.south=latLng.lat,void(this.west=this.east=latLng.lng);latLng.lat<this.north&&(this.north=latLng.lat),latLng.lat>this.south&&(this.south=latLng.lat),latLng.lng<this.west&&(this.west=latLng.lng),latLng.lng>this.east&&(this.east=latLng.lng)},WPGMZA.LatLngBounds.prototype.extendByPixelMargin=function(map,x,arg){var y=x;if(!(map instanceof WPGMZA.Map))throw new Error("First argument must be an instance of WPGMZA.Map");if(this.isInInitialState())throw new Error("Cannot extend by pixels in initial state");arguments.length>=3&&(y=arg);var southWest=new WPGMZA.LatLng(this.south,this.west),northEast=new WPGMZA.LatLng(this.north,this.east);southWest=map.latLngToPixels(southWest),northEast=map.latLngToPixels(northEast),southWest.x-=x,southWest.y+=y,northEast.x+=x,northEast.y-=y,southWest=map.pixelsToLatLng(southWest.x,southWest.y),northEast=map.pixelsToLatLng(northEast.x,northEast.y);this.toString();this.north=northEast.lat,this.south=southWest.lat,this.west=southWest.lng,this.east=northEast.lng},WPGMZA.LatLngBounds.prototype.contains=function(latLng){if(!(latLng instanceof WPGMZA.LatLng))throw new Error("Argument must be an instance of WPGMZA.LatLng");return!(latLng.lat<Math.min(this.north,this.south))&&(!(latLng.lat>Math.max(this.north,this.south))&&(this.west<this.east?latLng.lng>=this.west&&latLng.lng<=this.east:latLng.lng<=this.west||latLng.lng>=this.east))},WPGMZA.LatLngBounds.prototype.toString=function(){return this.north+"N "+this.south+"S "+this.west+"W "+this.east+"E"},WPGMZA.LatLngBounds.prototype.toLiteral=function(){return{north:this.north,south:this.south,west:this.west,east:this.east}}}),jQuery(function($){"map-edit"==WPGMZA.currentPage&&(WPGMZA.MapEditPage=function(){this.themePanel=new WPGMZA.ThemePanel,this.themeEditor=new WPGMZA.ThemeEditor,this.map=WPGMZA.maps[0]},WPGMZA.MapEditPage.createInstance=function(){return WPGMZA.isProVersion()&&WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?new WPGMZA.ProMapEditPage:new WPGMZA.MapEditPage},$(window).on("load",function(event){WPGMZA.mapEditPage=WPGMZA.MapEditPage.createInstance()}))}),jQuery(function($){WPGMZA.MapObject=function(row){if(WPGMZA.assertInstanceOf(this,"MapObject"),WPGMZA.EventDispatcher.call(this),this.id=-1,this.map_id=null,this.guid=WPGMZA.guid(),this.modified=!0,this.settings={},row)for(var name in row)if("settings"==name){if(null==row.settings)this.settings={};else switch(typeof row.settings){case"string":this.settings=JSON.parse(row[name]);break;case"object":this.settings=row[name];break;default:throw new Error("Don't know how to interpret settings")}for(var name in this.settings){var value=this.settings[name];String(value).match(/^-?\d+$/)&&(this.settings[name]=parseInt(value))}}else this[name]=row[name]},WPGMZA.MapObject.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MapObject.prototype.constructor=WPGMZA.MapObject,WPGMZA.MapObject.prototype.parseGeometry=function(string){var pairs,coords,results=[];pairs=string.replace(/[^ ,\d\.\-+e]/g,"").split(",");for(var i=0;i<pairs.length;i++)coords=pairs[i].split(" "),results.push({lat:parseFloat(coords[1]),lng:parseFloat(coords[0])});return results},WPGMZA.MapObject.prototype.toJSON=function(){return{id:this.id,guid:this.guid,settings:this.settings}}}),jQuery(function($){var Parent=WPGMZA.MapObject;WPGMZA.Circle=function(options,engineCircle){WPGMZA.assertInstanceOf(this,"Circle"),this.center=new WPGMZA.LatLng,this.radius=100,Parent.apply(this,arguments)},WPGMZA.Circle.prototype=Object.create(Parent.prototype),WPGMZA.Circle.prototype.constructor=WPGMZA.Circle,WPGMZA.Circle.createInstance=function(options){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLCircle;break;default:constructor=WPGMZA.GoogleCircle}return new constructor(options)},WPGMZA.Circle.prototype.getCenter=function(){return this.center.clone()},WPGMZA.Circle.prototype.setCenter=function(latLng){this.center.lat=latLng.lat,this.center.lng=latLng.lng},WPGMZA.Circle.prototype.getRadius=function(){return this.radius},WPGMZA.Circle.prototype.setRadius=function(radius){this.radius=radius},WPGMZA.Circle.prototype.getMap=function(){return this.map},WPGMZA.Circle.prototype.setMap=function(map){this.map&&this.map.removeCircle(this),map&&map.addCircle(this)}}),jQuery(function($){WPGMZA.MapSettingsPage=function(){var self=this;this.updateEngineSpecificControls(),this.updateGDPRControls(),$("select[name='wpgmza_maps_engine']").on("change",function(event){self.updateEngineSpecificControls()}),$("input[name='wpgmza_gdpr_require_consent_before_load'], input[name='wpgmza_gdpr_require_consent_before_vgm_submit'], input[name='wpgmza_gdpr_override_notice']").on("change",function(event){self.updateGDPRControls()})},WPGMZA.MapSettingsPage.createInstance=function(){return new WPGMZA.MapSettingsPage},WPGMZA.MapSettingsPage.prototype.updateEngineSpecificControls=function(){var engine=$("select[name='wpgmza_maps_engine']").val();$("[data-required-maps-engine][data-required-maps-engine!='"+engine+"']").hide(),$("[data-required-maps-engine='"+engine+"']").show()},WPGMZA.MapSettingsPage.prototype.updateGDPRControls=function(){var showNoticeControls=$("input[name='wpgmza_gdpr_require_consent_before_load']").prop("checked"),vgmCheckbox=$("input[name='wpgmza_gdpr_require_consent_before_vgm_submit']");vgmCheckbox.length&&(showNoticeControls=showNoticeControls||vgmCheckbox.prop("checked"));var showOverrideTextarea=showNoticeControls&&$("input[name='wpgmza_gdpr_override_notice']").prop("checked");showNoticeControls?$("#wpgmza-gdpr-compliance-notice").show("slow"):$("#wpgmza-gdpr-compliance-notice").hide("slow"),showOverrideTextarea?$("#wpgmza_gdpr_override_notice_text").show("slow"):$("#wpgmza_gdpr_override_notice_text").hide("slow")},WPGMZA.MapSettingsPage.prototype.flushGeocodeCache=function(){(new WPGMZA.OLGeocoder).clearCache(function(response){jQuery("#wpgmza_flush_cache_btn").removeAttr("disabled")})},jQuery(function($){window.location.href.match(/wp-google-maps-menu-settings/)&&(WPGMZA.mapSettingsPage=WPGMZA.MapSettingsPage.createInstance(),jQuery(document).ready(function(){jQuery("#wpgmza_flush_cache_btn").on("click",function(){jQuery(this).attr("disabled","disabled"),WPGMZA.mapSettingsPage.flushGeocodeCache()})}))})}),jQuery(function($){WPGMZA.MapSettings=function(element){function addSettings(input){if(input)for(var key in input)if("other_settings"!=key){var value=input[key];String(value).match(/^-?\d+$/)&&(value=parseInt(value)),self[key]=value}}var json,self=this,str=element.getAttribute("data-settings");try{json=JSON.parse(str)}catch(e){str=str.replace(/\\%/g,"%"),str=str.replace(/\\\\"/g,'\\"');try{json=JSON.parse(str)}catch(e){json={},console.warn("Failed to parse map settings JSON")}}WPGMZA.assertInstanceOf(this,"MapSettings"),addSettings(WPGMZA.settings),addSettings(json),json&&json.other_settings&&addSettings(json.other_settings)},WPGMZA.MapSettings.prototype.toOLViewOptions=function(){function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}var self=this,options={center:ol.proj.fromLonLat([-119.4179,36.7783]),zoom:4};if("string"==typeof this.start_location){var coords=this.start_location.replace(/^\(|\)$/g,"").split(",");WPGMZA.isLatLngString(this.start_location)?options.center=ol.proj.fromLonLat([parseFloat(coords[1]),parseFloat(coords[0])]):console.warn("Invalid start location")}return this.center&&(options.center=ol.proj.fromLonLat([parseFloat(this.center.lng),parseFloat(this.center.lat)])),empty("map_start_lat")||empty("map_start_lng")||(options.center=ol.proj.fromLonLat([parseFloat(this.map_start_lng),parseFloat(this.map_start_lat)])),this.zoom&&(options.zoom=parseInt(this.zoom)),this.start_zoom&&(options.zoom=parseInt(this.start_zoom)),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options},WPGMZA.MapSettings.prototype.toGoogleMapsOptions=function(){function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}function formatCoord(coord){return $.isNumeric(coord)?coord:parseFloat(String(coord).replace(/[\(\)\s]/,""))}var self=this,latLngCoords=this.start_location&&this.start_location.length?this.start_location.split(","):[36.7783,-119.4179],latLng=new google.maps.LatLng(formatCoord(latLngCoords[0]),formatCoord(latLngCoords[1])),zoom=this.start_zoom?parseInt(this.start_zoom):4;!this.start_zoom&&this.zoom&&(zoom=parseInt(this.zoom));var options={zoom:zoom,center:latLng};switch(empty("center")||(options.center=new google.maps.LatLng({lat:parseFloat(this.center.lat),lng:parseFloat(this.center.lng)})),empty("map_start_lat")||empty("map_start_lng")||(options.center=new google.maps.LatLng({lat:parseFloat(this.map_start_lat),lng:parseFloat(this.map_start_lng)})),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options.zoomControl=!("yes"==this.wpgmza_settings_map_zoom),options.panControl=!("yes"==this.wpgmza_settings_map_pan),options.mapTypeControl=!("yes"==this.wpgmza_settings_map_type),options.streetViewControl=!("yes"==this.wpgmza_settings_map_streetview),options.fullscreenControl=!("yes"==this.wpgmza_settings_map_full_screen_control),options.draggable=!("yes"==this.wpgmza_settings_map_draggable),options.disableDoubleClickZoom="yes"==this.wpgmza_settings_map_clickzoom,this.wpgmza_settings_map_scroll&&(options.scrollwheel=!1),"greedy"==this.wpgmza_force_greedy_gestures||"yes"==this.wpgmza_force_greedy_gestures?options.gestureHandling="greedy":options.gestureHandling="cooperative",parseInt(this.type)){case 2:options.mapTypeId=google.maps.MapTypeId.SATELLITE;break;case 3:options.mapTypeId=google.maps.MapTypeId.HYBRID;break;case 4:options.mapTypeId=google.maps.MapTypeId.TERRAIN;break;default:options.mapTypeId=google.maps.MapTypeId.ROADMAP}return this.wpgmza_theme_data&&this.wpgmza_theme_data.length&&(options.styles=WPGMZA.GoogleMap.parseThemeData(this.wpgmza_theme_data)),options}}),jQuery(function($){function deg2rad(deg){return deg*(Math.PI/180)}WPGMZA.Map=function(element,options){if(WPGMZA.assertInstanceOf(this,"Map"),WPGMZA.EventDispatcher.call(this),!(element instanceof HTMLElement))throw new Error("Argument must be a HTMLElement");if(element.hasAttribute("data-map-id")?this.id=element.getAttribute("data-map-id"):this.id=1,!/\d+/.test(this.id))throw new Error("Map ID must be an integer");if(WPGMZA.maps.push(this),this.element=element,this.element.wpgmzaMap=this,this.engineElement=element,this.markers=[],this.polygons=[],this.polylines=[],this.circles=[],this.rectangles=[],this.loadSettings(options),this.shortcodeAttributes={},$(this.element).attr("data-shortcode-attributes"))try{this.shortcodeAttributes=JSON.parse($(this.element).attr("data-shortcode-attributes"))}catch(e){console.warn("Error parsing shortcode attributes")}WPGMZA.getCurrentPage()!=WPGMZA.PAGE_MAP_EDIT&&this.initStoreLocator(),this.markerFilter=WPGMZA.MarkerFilter.createInstance(this)},WPGMZA.Map.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.Map.prototype.constructor=WPGMZA.Map,WPGMZA.Map.nightTimeThemeData=[{elementType:"geometry",stylers:[{color:"#242f3e"}]},{elementType:"labels.text.fill",stylers:[{color:"#746855"}]},{elementType:"labels.text.stroke",stylers:[{color:"#242f3e"}]},{featureType:"administrative.locality",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"landscape",elementType:"geometry.fill",stylers:[{color:"#575663"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#263c3f"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#6b9a76"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#38414e"}]},{featureType:"road",elementType:"geometry.stroke",stylers:[{color:"#212a37"}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:"#9ca5b3"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#746855"}]},{featureType:"road.highway",elementType:"geometry.fill",stylers:[{color:"#80823e"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#1f2835"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#f3d19c"}]},{featureType:"transit",elementType:"geometry",stylers:[{color:"#2f3948"}]},{featureType:"transit.station",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#17263c"}]},{featureType:"water",elementType:"geometry.fill",stylers:[{color:"#1b737a"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#515c6d"}]},{featureType:"water",elementType:"labels.text.stroke",stylers:[{color:"#17263c"}]}],WPGMZA.Map.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMap:WPGMZA.OLMap;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMap:WPGMZA.GoogleMap}},WPGMZA.Map.createInstance=function(element,options){return new(WPGMZA.Map.getConstructor())(element,options)},Object.defineProperty(WPGMZA.Map.prototype,"lat",{get:function(){return this.getCenter().lat},set:function(value){var center=this.getCenter();center.lat=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"lng",{get:function(){return this.getCenter().lng},set:function(value){var center=this.getCenter();center.lng=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"zoom",{get:function(){return this.getZoom()},set:function(value){this.setZoom(value)}}),WPGMZA.Map.prototype.loadSettings=function(options){var settings=new WPGMZA.MapSettings(this.element);settings.other_settings;if(delete settings.other_settings,options)for(var key in options)settings[key]=options[key];this.settings=settings},WPGMZA.Map.prototype.initStoreLocator=function(){var storeLocatorElement=$(".wpgmza_sl_main_div");storeLocatorElement.length&&(this.storeLocator=WPGMZA.StoreLocator.createInstance(this,storeLocatorElement[0]))},WPGMZA.Map.prototype.setOptions=function(options){for(var name in options)this.settings[name]=options[name]};Math.PI;WPGMZA.Map.getGeographicDistance=function(lat1,lon1,lat2,lon2){var dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1),a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))},WPGMZA.Map.prototype.setCenter=function(latLng){if(!("lat"in latLng&&"lng"in latLng))throw new Error("Argument is not an object with lat and lng")},WPGMZA.Map.prototype.setDimensions=function(width,height){$(this.element).css({width:width}),$(this.engineElement).css({width:"100%",height:height})},WPGMZA.Map.prototype.addMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");marker.map=this,marker.parent=this,this.markers.push(marker),this.dispatchEvent({type:"markeradded",marker:marker}),marker.dispatchEvent({type:"added"})},WPGMZA.Map.prototype.removeMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");if(marker.map!==this)throw new Error("Wrong map error");marker.infoWindow&&marker.infoWindow.close(),marker.map=null,marker.parent=null,this.markers.splice(this.markers.indexOf(marker),1),this.dispatchEvent({type:"markerremoved",marker:marker}),marker.dispatchEvent({type:"removed"})},WPGMZA.Map.prototype.getMarkerByID=function(id){for(var i=0;i<this.markers.length;i++)if(this.markers[i].id==id)return this.markers[i];return null},WPGMZA.Map.prototype.getMarkerByTitle=function(title){if("string"==typeof title){for(i=0;i<this.markers.length;i++)if(this.markers[i].title==title)return this.markers[i]}else{if(!(title instanceof RegExp))throw new Error("Invalid argument");for(var i=0;i<this.markers.length;i++)if(title.test(this.markers[i].title))return this.markers[i]}return null},WPGMZA.Map.prototype.removeMarkerByID=function(id){var marker=this.getMarkerByID(id);marker&&this.removeMarker(marker)},WPGMZA.Map.prototype.addPolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");polygon.map=this,this.polygons.push(polygon),this.dispatchEvent({type:"polygonadded",polygon:polygon})},WPGMZA.Map.prototype.removePolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");if(polygon.map!==this)throw new Error("Wrong map error");polygon.map=null,this.polygons.splice(this.polygons.indexOf(polygon),1),this.dispatchEvent({type:"polygonremoved",polygon:polygon})},WPGMZA.Map.prototype.getPolygonByID=function(id){for(var i=0;i<this.polygons.length;i++)if(this.polygons[i].id==id)return this.polygons[i];return null},WPGMZA.Map.prototype.removePolygonByID=function(id){var polygon=this.getPolygonByID(id);polygon&&this.removePolygon(polygon)},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.addPolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");polyline.map=this,this.polylines.push(polyline),this.dispatchEvent({type:"polylineadded",polyline:polyline})},WPGMZA.Map.prototype.removePolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");if(polyline.map!==this)throw new Error("Wrong map error");polyline.map=null,this.polylines.splice(this.polylines.indexOf(polyline),1),this.dispatchEvent({type:"polylineremoved",polyline:polyline})},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.removePolylineByID=function(id){var polyline=this.getPolylineByID(id);polyline&&this.removePolyline(polyline)},WPGMZA.Map.prototype.addCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");circle.map=this,this.circles.push(circle),this.dispatchEvent({type:"circleadded",circle:circle})},WPGMZA.Map.prototype.removeCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");if(circle.map!==this)throw new Error("Wrong map error");circle.map=null,this.circles.splice(this.circles.indexOf(circle),1),this.dispatchEvent({type:"circleremoved",circle:circle})},WPGMZA.Map.prototype.getCircleByID=function(id){for(var i=0;i<this.circles.length;i++)if(this.circles[i].id==id)return this.circles[i];return null},WPGMZA.Map.prototype.removeCircleByID=function(id){var circle=this.getCircleByID(id);circle&&this.removeCircle(circle)},WPGMZA.Map.prototype.nudgeLatLng=function(latLng,x,y){var pixels=this.latLngToPixels(latLng);if(pixels.x+=parseFloat(x),pixels.y+=parseFloat(y),isNaN(pixels.x)||isNaN(pixels.y))throw new Error("Invalid coordinates supplied");return this.pixelsToLatLng(pixels)},WPGMZA.Map.prototype.nudge=function(x,y){var nudged=this.nudgeLatLng(this.getCenter(),x,y);this.setCenter(nudged)},WPGMZA.Map.prototype.animateNudge=function(x,y,origin,milliseconds){var nudged;if(origin){if(!(origin instanceof WPGMZA.LatLng))throw new Error("Origin must be an instance of WPGMZA.LatLng")}else origin=this.getCenter();nudged=this.nudgeLatLng(origin,x,y),milliseconds||(milliseconds=WPGMZA.getScrollAnimationDuration()),$(this).animate({lat:nudged.lat,lng:nudged.lng},milliseconds)},WPGMZA.Map.prototype.onWindowResize=function(event){},WPGMZA.Map.prototype.onElementResized=function(event){},WPGMZA.Map.prototype.onBoundsChanged=function(event){this.trigger("boundschanged"),this.trigger("bounds_changed")},WPGMZA.Map.prototype.onIdle=function(event){this.trigger("idle")},WPGMZA.Map.prototype.hasVisibleMarkers=function(event){var markers_visible=0;for(var marker_id in marker_array){var marker=marker_array[marker_id];if(marker.isFilterable&&marker.getMap()){markers_visible++;break}}return markers_visible>0},WPGMZA.Map.prototype.closeAllInfoWindows=function(){this.markers.forEach(function(marker){marker.infoWindow&&marker.infoWindow.close()})}}),jQuery(function($){WPGMZA.MapsEngineDialog=function(element){var self=this;this.element=element,window.wpgmzaUnbindSaveReminder&&window.wpgmzaUnbindSaveReminder(),$(element).show(),$(element).remodal().open(),$(element).find("input:radio").on("change",function(event){$("#wpgmza-confirm-engine").prop("disabled",!1)}),$("#wpgmza-confirm-engine").on("click",function(event){self.onButtonClicked(event)})},WPGMZA.MapsEngineDialog.prototype.onButtonClicked=function(event){$(event.target).prop("disabled",!0),$.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_maps_engine_dialog_set_engine",engine:$("[name='wpgmza_maps_engine']:checked").val(),nonce:$("#wpgmza-maps-engine-dialog").attr("data-ajax-nonce")},success:function(response,status,xhr){window.location.reload()}})},$(window).on("load",function(event){var element=$("#wpgmza-maps-engine-dialog");element.length&&(WPGMZA.settings.wpgmza_maps_engine_dialog_done||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||(WPGMZA.mapsEngineDialog=new WPGMZA.MapsEngineDialog(element)))})}),jQuery(function($){WPGMZA.MarkerFilter=function(map){WPGMZA.EventDispatcher.call(this),this.map=map},WPGMZA.MarkerFilter.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MarkerFilter.prototype.constructor=WPGMZA.MarkerFilter,WPGMZA.MarkerFilter.createInstance=function(map){return new WPGMZA.MarkerFilter(map)},WPGMZA.MarkerFilter.prototype.getFilteringParameters=function(){var params={map_id:this.map.id};return this.map.storeLocator&&(params=$.extend(params,this.map.storeLocator.getFilteringParameters())),params},WPGMZA.MarkerFilter.prototype.update=function(){},WPGMZA.MarkerFilter.prototype.onFilteringComplete=function(results){}}),jQuery(function($){WPGMZA.Marker=function(row){var self=this;this._offset={x:0,y:0},WPGMZA.assertInstanceOf(this,"Marker"),this.lat="36.778261",this.lng="-119.4179323999",this.address="California",this.title=null,this.description="",this.link="",this.icon="",this.approved=1,this.pic=null,this.isFilterable=!0,this.disableInfoWindow=!1,WPGMZA.MapObject.apply(this,arguments),row&&row.heatmap||(row&&this.on("init",function(event){row.position&&this.setPosition(row.position),row.map&&row.map.addMarker(this)}),this.addEventListener("added",function(event){self.onAdded(event)}),this.handleLegacyGlobals(row))},WPGMZA.Marker.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Marker.prototype.constructor=WPGMZA.Marker,WPGMZA.Marker.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMarker:WPGMZA.OLMarker;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMarker:WPGMZA.GoogleMarker}},WPGMZA.Marker.createInstance=function(row){return new(WPGMZA.Marker.getConstructor())(row)},WPGMZA.Marker.ANIMATION_NONE="0",WPGMZA.Marker.ANIMATION_BOUNCE="1",WPGMZA.Marker.ANIMATION_DROP="2",Object.defineProperty(WPGMZA.Marker.prototype,"offsetX",{get:function(){return this._offset.x},set:function(value){this._offset.x=value,this.updateOffset()}}),Object.defineProperty(WPGMZA.Marker.prototype,"offsetY",{get:function(){return this._offset.y},set:function(value){this._offset.y=value,this.updateOffset()}}),WPGMZA.Marker.prototype.onAdded=function(event){var self=this;this.addEventListener("click",function(event){self.onClick(event)}),this.addEventListener("mouseover",function(event){self.onMouseOver(event)}),this.addEventListener("select",function(event){self.onSelect(event)}),this.map.settings.marker==this.id&&self.trigger("select"),"1"==this.infoopen&&this.openInfoWindow()},WPGMZA.Marker.prototype.handleLegacyGlobals=function(row){if(WPGMZA.settings.useLegacyGlobals&&this.map_id&&this.id){var m;if(!(WPGMZA.pro_version&&(m=WPGMZA.pro_version.match(/\d+/))&&m[0]<=7)){window.marker_array||(window.marker_array={}),marker_array[this.map_id]||(marker_array[this.map_id]=[]),marker_array[this.map_id][this.id]=this,window.wpgmaps_localize_marker_data||(window.wpgmaps_localize_marker_data={}),wpgmaps_localize_marker_data[this.map_id]||(wpgmaps_localize_marker_data[this.map_id]=[]);var cloned=$.extend({marker_id:this.id},row);wpgmaps_localize_marker_data[this.map_id][this.id]=cloned}}},WPGMZA.Marker.prototype.initInfoWindow=function(){this.infoWindow||(this.infoWindow=WPGMZA.InfoWindow.createInstance())},WPGMZA.Marker.prototype.openInfoWindow=function(){this.map?("map-edit"!=WPGMZA.currentPage||WPGMZA.pro_version)&&(this.map.lastInteractedMarker&&this.map.lastInteractedMarker.infoWindow.close(),this.map.lastInteractedMarker=this,this.initInfoWindow(),this.infoWindow.open(this.map,this)):console.warn("Cannot open infowindow for marker with no map")},WPGMZA.Marker.prototype.onClick=function(event){},WPGMZA.Marker.prototype.onSelect=function(event){this.openInfoWindow()},WPGMZA.Marker.prototype.onMouseOver=function(event){this.map.settings.info_window_open_by==WPGMZA.InfoWindow.OPEN_BY_HOVER&&this.openInfoWindow()},WPGMZA.Marker.prototype.getIcon=function(){function stripProtocol(url){return"string"!=typeof url?url:url.replace(/^http(s?):/,"")}return stripProtocol(WPGMZA.defaultMarkerIcon?WPGMZA.defaultMarkerIcon:WPGMZA.settings.default_marker_icon)},WPGMZA.Marker.prototype.getPosition=function(){return new WPGMZA.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})},WPGMZA.Marker.prototype.setPosition=function(latLng){latLng instanceof WPGMZA.LatLng?(this.lat=latLng.lat,this.lng=latLng.lng):(this.lat=parseFloat(latLng.lat),this.lng=parseFloat(latLng.lng))},WPGMZA.Marker.prototype.setOffset=function(x,y){this._offset.x=x,this._offset.y=y,this.updateOffset()},WPGMZA.Marker.prototype.updateOffset=function(){},WPGMZA.Marker.prototype.getAnimation=function(animation){return this.settings.animation},WPGMZA.Marker.prototype.setAnimation=function(animation){this.settings.animation=animation},WPGMZA.Marker.prototype.getVisible=function(){},WPGMZA.Marker.prototype.setVisible=function(visible){!visible&&this.infoWindow&&this.infoWindow.close()},WPGMZA.Marker.prototype.getMap=function(){return this.map},WPGMZA.Marker.prototype.setMap=function(map){map?map.addMarker(this):this.map&&this.map.removeMarker(this),this.map=map},WPGMZA.Marker.prototype.getDraggable=function(){},WPGMZA.Marker.prototype.setDraggable=function(draggable){},WPGMZA.Marker.prototype.setOptions=function(options){},WPGMZA.Marker.prototype.setOpacity=function(opacity){},WPGMZA.Marker.prototype.panIntoView=function(){if(!this.map)throw new Error("Marker hasn't been added to a map");this.map.setCenter(this.getPosition())},WPGMZA.Marker.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this),position=this.getPosition();return $.extend(result,{lat:position.lat,lng:position.lng,address:this.address,title:this.title,description:this.description,link:this.link,icon:this.icon,pic:this.pic,approved:this.approved}),result}}),jQuery(function($){WPGMZA.ModernStoreLocatorCircle=function(map_id,settings){var map;map=WPGMZA.isProVersion()?this.map=MYMAP[map_id].map:this.map=MYMAP.map,this.map_id=map_id,this.mapElement=map.element,this.mapSize={width:$(this.mapElement).width(),height:$(this.mapElement).height()},this.initCanvasLayer(),this.settings={center:new WPGMZA.LatLng(0,0),radius:1,color:"#63AFF2",shadowColor:"white",shadowBlur:4,centerRingRadius:10,centerRingLineWidth:3,numInnerRings:9,innerRingLineWidth:1,innerRingFade:!0,numOuterRings:7,ringLineWidth:1,mainRingLineWidth:2,numSpokes:6,spokesStartAngle:Math.PI/2,numRadiusLabels:6,radiusLabelsStartAngle:Math.PI/2,radiusLabelFont:"13px sans-serif",visible:!1},settings&&this.setOptions(settings)},WPGMZA.ModernStoreLocatorCircle.createInstance=function(map,settings){return"google-maps"==WPGMZA.settings.engine?new WPGMZA.GoogleModernStoreLocatorCircle(map,settings):new WPGMZA.OLModernStoreLocatorCircle(map,settings)},WPGMZA.ModernStoreLocatorCircle.prototype.initCanvasLayer=function(){},WPGMZA.ModernStoreLocatorCircle.prototype.onResize=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.onUpdate=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.setOptions=function(options){for(var name in options){var functionName="set"+name.substr(0,1).toUpperCase()+name.substr(1);"function"==typeof this[functionName]?this[functionName](options[name]):this.settings[name]=options[name]}},WPGMZA.ModernStoreLocatorCircle.prototype.getResolutionScale=function(){return window.devicePixelRatio||1},WPGMZA.ModernStoreLocatorCircle.prototype.getCenter=function(){return this.getPosition()},WPGMZA.ModernStoreLocatorCircle.prototype.setCenter=function(value){this.setPosition(value)},WPGMZA.ModernStoreLocatorCircle.prototype.getPosition=function(){return this.settings.center},WPGMZA.ModernStoreLocatorCircle.prototype.setPosition=function(position){this.settings.center=position},WPGMZA.ModernStoreLocatorCircle.prototype.getRadius=function(){return this.settings.radius},WPGMZA.ModernStoreLocatorCircle.prototype.setRadius=function(radius){if(isNaN(radius))throw new Error("Invalid radius");this.settings.radius=radius},WPGMZA.ModernStoreLocatorCircle.prototype.getVisible=function(){return this.settings.visible},WPGMZA.ModernStoreLocatorCircle.prototype.setVisible=function(visible){this.settings.visible=visible},WPGMZA.ModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getContext=function(type){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.validateSettings=function(){WPGMZA.isHexColorString(this.settings.color)||(this.settings.color="#63AFF2")},WPGMZA.ModernStoreLocatorCircle.prototype.draw=function(){this.validateSettings();var settings=this.settings,canvasDimensions=this.getCanvasDimensions(),canvasWidth=canvasDimensions.width,canvasHeight=canvasDimensions.height;this.map,this.getResolutionScale();if(context=this.getContext("2d"),context.clearRect(0,0,canvasWidth,canvasHeight),settings.visible){context.shadowColor=settings.shadowColor,context.shadowBlur=settings.shadowBlur,context.setTransform(1,0,0,1,0,0);var scale=this.getScale();context.scale(scale,scale);var offset=this.getWorldOriginOffset();context.translate(offset.x,offset.y);new WPGMZA.LatLng(this.settings.center);var worldPoint=this.getCenterPixels(),rgba=WPGMZA.hexToRgba(settings.color),ringSpacing=this.getTransformedRadius(settings.radius)/(settings.numInnerRings+1);context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.centerRingRadius)/scale,0,2*Math.PI),context.stroke(),context.closePath();var end,spokeAngle,radius=this.getTransformedRadius(settings.radius)+ringSpacing*settings.numOuterRings+1,grad=context.createRadialGradient(0,0,0,0,0,radius),rgba=WPGMZA.hexToRgba(settings.color),start=WPGMZA.rgbaToString(rgba);rgba.a=0,end=WPGMZA.rgbaToString(rgba),grad.addColorStop(0,start),grad.addColorStop(1,end),context.save(),context.translate(worldPoint.x,worldPoint.y),context.strokeStyle=grad,context.lineWidth=2/scale;for(i=0;i<settings.numSpokes;i++)spokeAngle=settings.spokesStartAngle+2*Math.PI*(i/settings.numSpokes),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.setLineDash([2/scale,15/scale]),context.beginPath(),context.moveTo(0,0),context.lineTo(x,y),context.stroke();context.setLineDash([]),context.restore(),context.lineWidth=1/scale*settings.innerRingLineWidth;for(i=1;i<=settings.numInnerRings;i++){radius=i*ringSpacing;settings.innerRingFade&&(rgba.a=1-(i-1)/settings.numInnerRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath()}context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.radius),0,2*Math.PI),context.stroke(),context.closePath();for(var radius=radius+ringSpacing,i=0;i<settings.numOuterRings;i++)settings.innerRingFade&&(rgba.a=1-i/settings.numOuterRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath(),radius+=ringSpacing;if(settings.numRadiusLabels>0){var m,x,y,radius=this.getTransformedRadius(settings.radius);(m=settings.radiusLabelFont.match(/(\d+)px/))&&parseInt(m[1])/2*1.1/scale,context.font=settings.radiusLabelFont,context.textAlign="center",context.textBaseline="middle",context.fillStyle=settings.color,context.save(),context.translate(worldPoint.x,worldPoint.y);for(i=0;i<settings.numRadiusLabels;i++){var width,textAngle=(spokeAngle=settings.radiusLabelsStartAngle+2*Math.PI*(i/settings.numRadiusLabels))+Math.PI/2,text=settings.radiusString;Math.sin(spokeAngle)>0&&(textAngle-=Math.PI),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.save(),context.translate(x,y),context.rotate(textAngle),context.scale(1/scale,1/scale),width=context.measureText(text).width,height=width/2,context.clearRect(-width,-height,2*width,2*height),context.fillText(settings.radiusString,0,0),context.restore()}context.restore()}}}}),jQuery(function($){WPGMZA.ModernStoreLocator=function(map_id){var original,self=this,map=WPGMZA.getMapByID(map_id);if(WPGMZA.assertInstanceOf(this,"ModernStoreLocator"),(original=WPGMZA.isProVersion()?$(".wpgmza_sl_search_button[mid='"+map_id+"'], .wpgmza_sl_search_button_"+map_id).closest(".wpgmza_sl_main_div"):$(".wpgmza_sl_search_button").closest(".wpgmza_sl_main_div")).length){this.element=$("<div class='wpgmza-modern-store-locator'><div class='wpgmza-inner wpgmza-modern-hover-opaque'/></div>")[0];var addressInput,inner=$(this.element).find(".wpgmza-inner");addressInput=WPGMZA.isProVersion()?$(original).find(".addressInput"):$(original).find("#addressInput"),wpgmaps_localize[map_id].other_settings.store_locator_query_string&&wpgmaps_localize[map_id].other_settings.store_locator_query_string.length&&addressInput.attr("placeholder",wpgmaps_localize[map_id].other_settings.store_locator_query_string),inner.append(addressInput);var titleSearch=$(original).find("[id='nameInput_"+map_id+"']");if(titleSearch.length){var placeholder=wpgmaps_localize[map_id].other_settings.store_locator_name_string;placeholder&&placeholder.length&&titleSearch.attr("placeholder",placeholder),inner.append(titleSearch)}var button;(button=$(original).find("button.wpgmza-use-my-location"))&&inner.append(button),$(addressInput).on("keydown keypress",function(event){13==event.keyCode&&self.searchButton.is(":visible")&&self.searchButton.trigger("click")}),$(addressInput).on("input",function(event){self.searchButton.show(),self.resetButton.hide()}),inner.append($(original).find("select.wpgmza_sl_radius_select")),this.searchButton=$(original).find(".wpgmza_sl_search_button, .wpgmza_sl_search_button_div"),inner.append(this.searchButton),this.resetButton=$(original).find(".wpgmza_sl_reset_button_div"),inner.append(this.resetButton),this.resetButton.on("click",function(event){resetLocations(map_id)}),this.resetButton.hide(),WPGMZA.isProVersion()&&(this.searchButton.on("click",function(event){0!=$("addressInput_"+map_id).val()&&(self.searchButton.hide(),self.resetButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_APPLIED)}),this.resetButton.on("click",function(event){self.resetButton.hide(),self.searchButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_INITIAL})),inner.append($("#wpgmza_distance_type_"+map_id));var container=$(original).find(".wpgmza_cat_checkbox_holder"),numCategories=($(container).children("ul"),0),icons=[];$(container).find("li").each(function(index,el){var id=$(el).attr("class").match(/\d+/);for(var category_id in wpgmza_category_data)if(id==category_id){var src=wpgmza_category_data[category_id].image,icon=$('<div class="wpgmza-chip-icon"/>');icon.css({"background-image":"url('"+src+"')",width:$("#wpgmza_cat_checkbox_"+category_id+" + label").height()+"px"}),icons.push(icon),null!=src&&""!=src&&$("#wpgmza_cat_checkbox_"+category_id+" + label").prepend(icon),numCategories++;break}}),$(this.element).append(container),numCategories&&(this.optionsButton=$('<span class="wpgmza_store_locator_options_button"><i class="fa fa-list"></i></span>'),$(this.searchButton).before(this.optionsButton)),setInterval(function(){icons.forEach(function(icon){var height=$(icon).height();$(icon).css({width:height+"px"}),$(icon).closest("label").css({"padding-left":height+8+"px"})}),$(container).css("width",$(self.element).find(".wpgmza-inner").outerWidth()+"px")},1e3),$(this.element).find(".wpgmza_store_locator_options_button").on("click",function(event){container.hasClass("wpgmza-open")?container.removeClass("wpgmza-open"):container.addClass("wpgmza-open")}),$(original).remove(),$(this.element).find("input, select").on("focus",function(){$(inner).addClass("active")}),$(this.element).find("input, select").on("blur",function(){$(inner).removeClass("active")}),$(this.element).on("mouseover","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseOverCategory(event)}),$(this.element).on("mouseleave","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseLeaveCategory(event)}),$(map.markerFilter).on("filteringcomplete",function(event){this.map.hasVisibleMarkers()||alert(WPGMZA.localized_strings.zero_results)})}},WPGMZA.ModernStoreLocator.createInstance=function(map_id){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLModernStoreLocator(map_id);default:return new WPGMZA.GoogleModernStoreLocator(map_id)}},WPGMZA.ModernStoreLocator.prototype.onMouseOverCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeIn()},WPGMZA.ModernStoreLocator.prototype.onMouseLeaveCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeOut()}}),jQuery(function($){WPGMZA.NativeMapsAppIcon=function(){navigator.userAgent.match(/^Apple|iPhone|iPad|iPod/)?(this.type="apple",this.element=$('<span><i class="fab fa fa-apple" aria-hidden="true"></i></span>')):(this.type="google",this.element=$('<span><i class="fab fa fa-google" aria-hidden="true"></i></span>'))}}),jQuery(function($){Uint8Array.prototype.slice||Object.defineProperty(Uint8Array.prototype,"slice",{value:function(begin,end){return new Uint8Array(Array.prototype.slice.call(this,begin,end))}}),WPGMZA.isSafari()&&!window.external&&(window.external={})}),jQuery(function($){WPGMZA.Polygon=function(row,enginePolygon){WPGMZA.assertInstanceOf(this,"Polygon"),this.paths=null,this.title=null,this.name=null,this.link=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polygon.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polygon.prototype.constructor=WPGMZA.Polygon,WPGMZA.Polygon.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProPolygon:WPGMZA.OLPolygon;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProPolygon:WPGMZA.GooglePolygon}},WPGMZA.Polygon.createInstance=function(row,engineObject){return new(WPGMZA.Polygon.getConstructor())(row,engineObject)},WPGMZA.Polygon.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this);return $.extend(result,{name:this.name,title:this.title,link:this.link}),result}}),jQuery(function($){WPGMZA.Polyline=function(row,googlePolyline){WPGMZA.assertInstanceOf(this,"Polyline"),this.title=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polyline.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polyline.prototype.constructor=WPGMZA.Polyline,WPGMZA.Polyline.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLPolyline;default:return WPGMZA.GooglePolyline}},WPGMZA.Polyline.createInstance=function(row,engineObject){return new(WPGMZA.Polyline.getConstructor())(row,engineObject)},WPGMZA.Polyline.prototype.getPoints=function(){return this.toJSON().points},WPGMZA.Polyline.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this);return result.title=this.title,result}}),jQuery(function($){WPGMZA.PopoutPanel=function(element){this.element=element},WPGMZA.PopoutPanel.prototype.open=function(){$(this.element).addClass("wpgmza-open")},WPGMZA.PopoutPanel.prototype.close=function(){$(this.element).removeClass("wpgmza-open")}}),jQuery(function($){function sendAJAXFallbackRequest(route,params){if((params=$.extend({},params)).data||(params.data={}),"route"in params.data)throw new Error("Cannot send route through this method");if("action"in params.data)throw new Error("Cannot send action through this method");return params.data.route=route,params.data.action="wpgmza_rest_api_request",WPGMZA.restAPI.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_AJAX),$.ajax(WPGMZA.ajaxurl,params)}WPGMZA.RestAPI=function(){WPGMZA.RestAPI.URL=WPGMZA.resturl,this.useAJAXFallback=!1},WPGMZA.RestAPI.CONTEXT_REST="REST",WPGMZA.RestAPI.CONTEXT_AJAX="AJAX",WPGMZA.RestAPI.createInstance=function(){return new WPGMZA.RestAPI},Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableSupported",{get:function(){return WPGMZA.serverCanInflate&&"Uint8Array"in window&&"TextEncoder"in window}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableAllowed",{get:function(){return!WPGMZA.pro_version||WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?!WPGMZA.settings.disable_compressed_path_variables:WPGMZA.settings.enable_compressed_path_variables}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"maxURLLength",{get:function(){return 2083}}),WPGMZA.RestAPI.prototype.compressParams=function(params){var suffix="";if(params.markerIDs){var markerIDs=params.markerIDs.split(",");if(markerIDs.length>1){var encoded=(encoder=new WPGMZA.EliasFano).encode(markerIDs),compressed=pako.deflate(encoded),string=Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join("");suffix="/"+btoa(string).replace(/\//g,"-").replace(/=+$/,""),params.midcbp=encoded.pointer,delete params.markerIDs}}var string=JSON.stringify(params),encoder=new TextEncoder,input=encoder.encode(string),compressed=pako.deflate(input),raw=Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join("");return btoa(raw).replace(/\//g,"-").replace(/=+$/,"")+suffix},WPGMZA.RestAPI.prototype.getNonce=function(route){var matches=[];for(var pattern in WPGMZA.restnoncetable){var regex=new RegExp(pattern);route.match(regex)&&matches.push({pattern:pattern,nonce:WPGMZA.restnoncetable[pattern],length:pattern.length})}if(!matches.length)throw new Error("No nonce found for route");return matches.sort(function(a,b){return b.length-a.length}),matches[0].nonce},WPGMZA.RestAPI.prototype.addNonce=function(route,params,context){var self=this,setRESTNonce=function(xhr){context==WPGMZA.RestAPI.CONTEXT_REST&&xhr.setRequestHeader("X-WP-Nonce",WPGMZA.restnonce),params&&params.method&&!params.method.match(/^GET$/i)&&xhr.setRequestHeader("X-WPGMZA-Action-Nonce",self.getNonce(route))};if(params.beforeSend){var base=params.beforeSend;params.beforeSend=function(xhr){base(xhr),setRESTNonce(xhr)}}else params.beforeSend=setRESTNonce},WPGMZA.RestAPI.prototype.call=function(route,params){if(this.useAJAXFallback)return sendAJAXFallbackRequest(route,params);var attemptedCompressedPathVariable=!1,fallbackRoute=route,fallbackParams=$.extend({},params);if("string"!=typeof route||!route.match(/^\//)&&!route.match(/^http/))throw new Error("Invalid route");if(WPGMZA.RestAPI.URL.match(/\/$/)&&(route=route.replace(/^\//,"")),params||(params={}),this.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_REST),params.error||(params.error=function(xhr,status,message){if("abort"!=status){switch(xhr.status){case 401:case 403:return $.post(WPGMZA.ajaxurl,{action:"wpgmza_report_rest_api_blocked"},function(response){}),console.warn("The REST API was blocked. This is usually due to security plugins blocking REST requests for non-authenticated users."),this.useAJAXFallback=!0,sendAJAXFallbackRequest(fallbackRoute,fallbackParams);case 414:if(!attemptedCompressedPathVariable)break;return fallbackParams.method="POST",fallbackParams.useCompressedPathVariable=!1,WPGMZA.restAPI.call(fallbackRoute,fallbackParams)}throw new Error(message)}}),params.useCompressedPathVariable&&this.isCompressedPathVariableSupported&&this.isCompressedPathVariableAllowed){var compressedParams=$.extend({},params),data=params.data,compressedRoute=route.replace(/\/$/,"")+"/base64"+this.compressParams(data);WPGMZA.RestAPI.URL;compressedParams.method="GET",delete compressedParams.data,!1===params.cache&&(compressedParams.data={skip_cache:1}),compressedRoute.length<this.maxURLLength?(attemptedCompressedPathVariable=!0,route=compressedRoute,params=compressedParams):(WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed||console.warn("Compressed path variable route would exceed URL length limit"),WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed=!0)}return WPGMZA.RestAPI.URL.match(/\?/)&&(route=route.replace(/\?/,"&")),$.ajax(WPGMZA.RestAPI.URL+route,params)};var nativeCallFunction=WPGMZA.RestAPI.call;WPGMZA.RestAPI.call=function(){console.warn("WPGMZA.RestAPI.call was called statically, did you mean to call the function on WPGMZA.restAPI?"),nativeCallFunction.apply(this,arguments)},$(document.body).on("click","#wpgmza-rest-api-blocked button.notice-dismiss",function(event){WPGMZA.restAPI.call("/rest-api/",{method:"POST",data:{dismiss_blocked_notice:!0}})})}),jQuery(function($){WPGMZA.SettingsPage=function(){$("#wpgmza-global-settings").tabs()},WPGMZA.SettingsPage.createInstance=function(){return new WPGMZA.SettingsPage},$(window).on("load",function(event){var useLegacyHTML=WPGMZA.settings.useLegacyHTML||!window.location.href.match(/no-legacy-html/);WPGMZA.getCurrentPage()!=WPGMZA.PAGE_SETTINGS||useLegacyHTML||(WPGMZA.settingsPage=WPGMZA.SettingsPage.createInstance())})}),jQuery(function($){WPGMZA.StoreLocator=function(map,element){var self=this;WPGMZA.EventDispatcher.call(this),this._center=null,this.map=map,this.element=element,this.state=WPGMZA.StoreLocator.STATE_INITIAL,$(element).find(".wpgmza-not-found-msg").hide(),this.map.on("storelocatorgeocodecomplete",function(event){self.onGeocodeComplete(event)}),this.map.on("init",function(event){self.map.markerFilter.on("filteringcomplete",function(event){self.onFilteringComplete(event)})}),$(document.body).on("click",".wpgmza_sl_search_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_search_button",function(event){self.onSearch(event)}),$(document.body).on("click",".wpgmza_sl_reset_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_reset_button_div",function(event){self.onReset(event)})},WPGMZA.StoreLocator.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.StoreLocator.prototype.constructor=WPGMZA.StoreLocator,WPGMZA.StoreLocator.STATE_INITIAL="initial",WPGMZA.StoreLocator.STATE_APPLIED="applied",WPGMZA.StoreLocator.createInstance=function(map,element){return new WPGMZA.StoreLocator(map,element)},Object.defineProperty(WPGMZA.StoreLocator.prototype,"distanceUnits",{get:function(){return 1==this.map.settings.store_locator_distance?WPGMZA.Distance.MILES:WPGMZA.Distance.KILOMETERS}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radius",{get:function(){return $("#radiusSelect, #radiusSelect_"+this.map.id).val()}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"center",{get:function(){return this._center}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"bounds",{get:function(){return this._bounds}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"marker",{get:function(){if(1!=this.map.settings.store_locator_bounce)return null;if(this._marker)return this._marker;return this._marker=WPGMZA.Marker.createInstance({visible:!1}),this._marker.disableInfoWindow=!0,this._marker.isFilterable=!1,this._marker.setAnimation(WPGMZA.Marker.ANIMATION_BOUNCE),this._marker}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"circle",{get:function(){return this._circle?this._circle:("modern"!=this.map.settings.wpgmza_store_locator_radius_style||WPGMZA.isDeviceiOS()?this._circle=WPGMZA.Circle.createInstance({strokeColor:"#ff0000",strokeOpacity:"0.25",strokeWeight:2,fillColor:"#ff0000",fillOpacity:"0.15",visible:!1,clickable:!1}):(this._circle=WPGMZA.ModernStoreLocatorCircle.createInstance(this.map.id),this._circle.settings.color=this.circleStrokeColor),this._circle)}}),WPGMZA.StoreLocator.prototype.onGeocodeComplete=function(event){if(!event.results||!event.results.length)return this._center=null,void(this._bounds=null);this._center=new WPGMZA.LatLng(event.results[0].latLng),this._bounds=new WPGMZA.LatLngBounds(event.results[0].bounds),this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.onSearch=function(event){this.state=WPGMZA.StoreLocator.STATE_APPLIED},WPGMZA.StoreLocator.prototype.onReset=function(event){this.state=WPGMZA.StoreLocator.STATE_INITIAL,this._center=null,this._bounds=null,this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.getFilteringParameters=function(){return this.center?{center:this.center,radius:this.radius}:{}},WPGMZA.StoreLocator.prototype.onFilteringComplete=function(event){var params=event.filteringParams,marker=this.marker;marker&&marker.setVisible(!1),params.center&&marker&&(marker.setPosition(params.center),marker.setVisible(!0),marker.map!=this.map&&this.map.addMarker(marker));var circle=this.circle;if(circle){var factor=this.distanceUnits==WPGMZA.Distance.MILES?WPGMZA.Distance.KILOMETERS_PER_MILE:1;circle.setVisible(!1),params.center&&params.radius&&(circle.setRadius(params.radius*factor),circle.setCenter(params.center),circle.setVisible(!0),circle.map!=this.map&&this.map.addCircle(circle)),circle instanceof WPGMZA.ModernStoreLocatorCircle&&(circle.settings.radiusString=this.radius)}this.map.hasVisibleMarkers()?$(this.element).find(".wpgmza-not-found-msg").hide():$(this.element).find(".wpgmza-not-found-msg").show()}}),jQuery(function($){WPGMZA.Text=function(options){if(options)for(var name in options)this[name]=options[name]},WPGMZA.Text.createInstance=function(options){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLText(options);default:return new WPGMZA.GoogleText(options)}}}),jQuery(function($){WPGMZA.ThemeEditor=function(){WPGMZA.EventDispatcher.call(this),this.element=$("#wpgmza-theme-editor"),this.element.length?"open-layers"!=WPGMZA.settings.engine?(this.json=[{}],this.mapElement=WPGMZA.maps[0].element,this.element.appendTo("#wpgmza-map-theme-editor__holder"),$(window).on("scroll",function(event){}),setInterval(function(){},200),this.initHTML(),WPGMZA.themeEditor=this):this.element.remove():console.warn("No element to initialise theme editor on")},WPGMZA.extend(WPGMZA.ThemeEditor,WPGMZA.EventDispatcher),WPGMZA.ThemeEditor.prototype.updatePosition=function(){},WPGMZA.ThemeEditor.features={all:[],administrative:["country","land_parcel","locality","neighborhood","province"],landscape:["man_made","natural","natural.landcover","natural.terrain"],poi:["attraction","business","government","medical","park","place_of_worship","school","sports_complex"],road:["arterial","highway","highway.controlled_access","local"],transit:["line","station","station.airport","station.bus","station.rail"],water:[]},WPGMZA.ThemeEditor.elements={all:[],geometry:["fill","stroke"],labels:["icon","text","text.fill","text.stroke"]},WPGMZA.ThemeEditor.prototype.parse=function(){$("#wpgmza_theme_editor_feature option, #wpgmza_theme_editor_element option").css("font-weight","normal"),$("#wpgmza_theme_editor_error").hide(),$("#wpgmza_theme_editor").show(),$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val("");var textarea=$('textarea[name="wpgmza_theme_data"]');if(!textarea.val()||textarea.val().length<1)this.json=[{}];else{try{this.json=$.parseJSON($('textarea[name="wpgmza_theme_data"]').val())}catch(e){return this.json=[{}],$("#wpgmza_theme_editor").hide(),void $("#wpgmza_theme_editor_error").show()}if(!$.isArray(this.json)){var jsonCopy=this.json;this.json=[],this.json.push(jsonCopy)}this.highlightFeatures(),this.highlightElements(),this.loadElementStylers()}},WPGMZA.ThemeEditor.prototype.highlightFeatures=function(){$("#wpgmza_theme_editor_feature option").css("font-weight","normal"),$.each(this.json,function(i,v){v.hasOwnProperty("featureType")?$('#wpgmza_theme_editor_feature option[value="'+v.featureType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_feature option[value="all"]').css("font-weight","bold")})},WPGMZA.ThemeEditor.prototype.highlightElements=function(){var feature=$("#wpgmza_theme_editor_feature").val();$("#wpgmza_theme_editor_element option").css("font-weight","normal"),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")?$('#wpgmza_theme_editor_element option[value="'+v.elementType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_element option[value="all"]').css("font-weight","bold"))})},WPGMZA.ThemeEditor.prototype.loadElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val();$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val(""),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&v.hasOwnProperty("stylers")&&$.isArray(v.stylers)&&v.stylers.length>0&&$.each(v.stylers,function(ii,vv){vv.hasOwnProperty("hue")&&($("#wpgmza_theme_editor_do_hue").prop("checked",!0),$("#wpgmza_theme_editor_hue").val(vv.hue)),vv.hasOwnProperty("lightness")&&$("#wpgmza_theme_editor_lightness").val(vv.lightness),vv.hasOwnProperty("saturation")&&$("#wpgmza_theme_editor_saturation").val(vv.xaturation),vv.hasOwnProperty("gamma")&&$("#wpgmza_theme_editor_gamma").val(vv.gamma),vv.hasOwnProperty("invert_lightness")&&$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!0),vv.hasOwnProperty("visibility")&&$("#wpgmza_theme_editor_visibility").val(vv.visibility),vv.hasOwnProperty("color")&&($("#wpgmza_theme_editor_do_color").prop("checked",!0),$("#wpgmza_theme_editor_color").val(vv.color)),vv.hasOwnProperty("weight")&&$("#wpgmza_theme_editor_weight").val(vv.weight)})})},WPGMZA.ThemeEditor.prototype.writeElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val(),indexJSON=null,stylers=[];if("inherit"!=$("#wpgmza_theme_editor_visibility").val()&&stylers.push({visibility:$("#wpgmza_theme_editor_visibility").val()}),!0===$("#wpgmza_theme_editor_do_color").prop("checked")&&stylers.push({color:$("#wpgmza_theme_editor_color").val()}),!0===$("#wpgmza_theme_editor_do_hue").prop("checked")&&stylers.push({hue:$("#wpgmza_theme_editor_hue").val()}),$("#wpgmza_theme_editor_gamma").val().length>0&&stylers.push({gamma:parseFloat($("#wpgmza_theme_editor_gamma").val())}),$("#wpgmza_theme_editor_weight").val().length>0&&stylers.push({weight:parseFloat($("#wpgmza_theme_editor_weight").val())}),$("#wpgmza_theme_editor_saturation").val().length>0&&stylers.push({saturation:parseFloat($("#wpgmza_theme_editor_saturation").val())}),$("#wpgmza_theme_editor_lightness").val().length>0&&stylers.push({lightness:parseFloat($("#wpgmza_theme_editor_lightness").val())}),!0===$("#wpgmza_theme_editor_do_invert_lightness").prop("checked")&&stylers.push({invert_lightness:!0}),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&(indexJSON=i)}),null===indexJSON){if(stylers.length>0){var new_feature_element_stylers={};"all"!=feature&&(new_feature_element_stylers.featureType=feature),"all"!=element&&(new_feature_element_stylers.elementType=element),new_feature_element_stylers.stylers=stylers,this.json.push(new_feature_element_stylers)}}else stylers.length>0?this.json[indexJSON].stylers=stylers:this.json.splice(indexJSON,1);$('textarea[name="wpgmza_theme_data"]').val(JSON.stringify(this.json).replace(/:/g,": ").replace(/,/g,", ")),this.highlightFeatures(),this.highlightElements(),WPGMZA.themePanel.updateMapTheme()},WPGMZA.ThemeEditor.prototype.initHTML=function(){var self=this;$.each(WPGMZA.ThemeEditor.features,function(i,v){$("#wpgmza_theme_editor_feature").append('<option value="'+i+'">'+i+"</option>"),v.length>0&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_feature").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),$.each(WPGMZA.ThemeEditor.elements,function(i,v){$("#wpgmza_theme_editor_element").append('<option value="'+i+'">'+i+"</option>"),v.length>0&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_element").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),this.parse(),$('textarea[name="wpgmza_theme_data"]').on("input selectionchange propertychange",function(){self.parse()}),$(".wpgmza_theme_selection").click(function(){setTimeout(function(){$('textarea[name="wpgmza_theme_data"]').trigger("input")},1e3)}),$("#wpgmza_theme_editor_feature").on("change",function(){self.highlightElements(),self.loadElementStylers()}),$("#wpgmza_theme_editor_element").on("change",function(){self.loadElementStylers()}),$("#wpgmza_theme_editor_do_hue, #wpgmza_theme_editor_hue, #wpgmza_theme_editor_lightness, #wpgmza_theme_editor_saturation, #wpgmza_theme_editor_gamma, #wpgmza_theme_editor_do_invert_lightness, #wpgmza_theme_editor_visibility, #wpgmza_theme_editor_do_color, #wpgmza_theme_editor_color, #wpgmza_theme_editor_weight").on("input selectionchange propertychange",function(){self.writeElementStylers()}),"open-layers"==WPGMZA.settings.engine&&$("#wpgmza_theme_editor :input").prop("disabled",!0)}}),jQuery(function($){WPGMZA.ThemePanel=function(){var self=this;this.element=$("#wpgmza-theme-panel"),this.map=WPGMZA.maps[0],this.element.length?($("#wpgmza-theme-presets").owlCarousel({items:5,dots:!0}),this.element.on("click","#wpgmza-theme-presets label",function(event){self.onThemePresetClick(event)}),$("#wpgmza-open-theme-editor").on("click",function(event){$("#wpgmza-map-theme-editor__holder").addClass("active"),$("#wpgmza-theme-editor").addClass("active"),WPGMZA.animateScroll($("#wpgmza-theme-editor"))}),WPGMZA.themePanel=this):console.warn("No element to initialise theme panel on")},WPGMZA.ThemePanel.previewImageCenter={lat:33.701806462148646,lng:-118.15949896058983},WPGMZA.ThemePanel.previewImageZoom=11,WPGMZA.ThemePanel.prototype.onThemePresetClick=function(event){var selectedData=$(event.currentTarget).find("[data-theme-json]").attr("data-theme-json"),textarea=$(this.element).find("textarea[name='wpgmza_theme_data']"),existingData=textarea.val(),allPresetData=[];$(this.element).find("[data-theme-json]").each(function(index,el){allPresetData.push($(el).attr("data-theme-json"))}),existingData.length&&-1==allPresetData.indexOf(existingData)&&!confirm(WPGMZA.localized_strings.overwrite_theme_data)||(textarea.val(selectedData),this.updateMapTheme(),WPGMZA.themeEditor.parse())},WPGMZA.ThemePanel.prototype.updateMapTheme=function(){var data;try{data=JSON.parse($("textarea[name='wpgmza_theme_data']").val())}catch(e){return void alert(WPGMZA.localized_strings.invalid_theme_data)}this.map.setOptions({styles:data})}}),jQuery(function($){WPGMZA.Version=function(){},WPGMZA.Version.GREATER_THAN=1,WPGMZA.Version.EQUAL_TO=0,WPGMZA.Version.LESS_THAN=-1,WPGMZA.Version.compare=function(v1,v2){for(var v1parts=v1.match(/\d+/g),v2parts=v2.match(/\d+/g),i=0;i<v1parts.length;++i){if(v2parts.length===i)return 1;if(v1parts[i]!==v2parts[i])return v1parts[i]>v2parts[i]?1:-1}return v1parts.length!=v2parts.length?-1:0}}),jQuery(function($){WPGMZA.Integration={},WPGMZA.integrationModules={}}),jQuery(function($){if(window.wp&&wp.i18n&&wp.blocks&&wp.editor&&wp.components){var __=wp.i18n.__,registerBlockType=wp.blocks.registerBlockType,_wp$editor=wp.editor,InspectorControls=_wp$editor.InspectorControls,_wp$components=(_wp$editor.BlockControls,wp.components),Dashicon=_wp$components.Dashicon,PanelBody=(_wp$components.Toolbar,_wp$components.Button,_wp$components.Tooltip,_wp$components.PanelBody);_wp$components.TextareaControl,_wp$components.CheckboxControl,_wp$components.TextControl,_wp$components.SelectControl,_wp$components.RichText;WPGMZA.Integration.Gutenberg=function(){registerBlockType("gutenberg-wpgmza/block",this.getBlockDefinition())},WPGMZA.Integration.Gutenberg.prototype.getBlockTitle=function(){return __("WP Google Maps")},WPGMZA.Integration.Gutenberg.prototype.getBlockInspectorControls=function(props){return React.createElement(InspectorControls,{key:"inspector"},React.createElement(PanelBody,{title:__("Map Settings")},React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:WPGMZA.adminurl+"admin.php?page=wp-google-maps-menu&action=edit&map_id=1",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-pencil-square-o","aria-hidden":"true"}),__("Go to Map Editor"))),React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:"https://www.wpgmaps.com/documentation/creating-your-first-map/",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-book","aria-hidden":"true"}),__("View Documentation")))))},WPGMZA.Integration.Gutenberg.prototype.getBlockAttributes=function(){return{}},WPGMZA.Integration.Gutenberg.prototype.getBlockDefinition=function(props){var _this=this;return{title:__("WP Google Maps"),description:__("The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss."),category:"common",icon:"location-alt",keywords:[__("Map"),__("Maps"),__("Google")],attributes:this.getBlockAttributes(),edit:function(props){return[!!props.isSelected&&_this.getBlockInspectorControls(props),React.createElement("div",{className:props.className+" wpgmza-gutenberg-block"},React.createElement(Dashicon,{icon:"location-alt"}),React.createElement("span",{class:"wpgmza-gutenberg-block-title"},__("Your map will appear here on your websites front end")))]},save:function(props){return null}}},WPGMZA.Integration.Gutenberg.getConstructor=function(){return WPGMZA.Integration.Gutenberg},WPGMZA.Integration.Gutenberg.createInstance=function(){return new(WPGMZA.Integration.Gutenberg.getConstructor())},WPGMZA.isProVersion()||/^6/.test(WPGMZA.pro_version)||(WPGMZA.integrationModules.gutenberg=WPGMZA.Integration.Gutenberg.createInstance())}}),jQuery(function($){$(window).on("load",function(event){var parent=document.body.onclick;parent&&(document.body.onclick=function(event){event.target instanceof WPGMZA.Marker||parent(event)})})}),jQuery(function($){WPGMZA.GoogleUICompatibility=function(){if(!(navigator.vendor&&navigator.vendor.indexOf("Apple")>-1&&navigator.userAgent&&-1==navigator.userAgent.indexOf("CriOS")&&-1==navigator.userAgent.indexOf("FxiOS"))){var style=$("<style id='wpgmza-google-ui-compatiblity-fix'/>");style.html(".wpgmza_map img:not(button img) { padding:0 !important; }"),$(document.head).append(style)}},WPGMZA.googleUICompatibility=new WPGMZA.GoogleUICompatibility}),jQuery(function($){WPGMZA.GoogleCircle=function(options,googleCircle){var self=this;WPGMZA.Circle.call(this,options,googleCircle),googleCircle?this.googleCircle=googleCircle:(this.googleCircle=new google.maps.Circle,this.googleCircle.wpgmzaCircle=this),google.maps.event.addListener(this.googleCircle,"click",function(){self.dispatchEvent({type:"click"})}),options&&this.setOptions(options)},WPGMZA.GoogleCircle.prototype=Object.create(WPGMZA.Circle.prototype),WPGMZA.GoogleCircle.prototype.constructor=WPGMZA.GoogleCircle,WPGMZA.GoogleCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.googleCircle.setCenter(center)},WPGMZA.GoogleCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.googleCircle.setRadius(1e3*parseFloat(radius))},WPGMZA.GoogleCircle.prototype.setVisible=function(visible){this.googleCircle.setVisible(!!visible)},WPGMZA.GoogleCircle.prototype.setOptions=function(options){var googleOptions={};delete(googleOptions=$.extend({},options)).map,delete googleOptions.center,options.center&&(googleOptions.center=new google.maps.LatLng({lat:parseFloat(options.center.lat),lng:parseFloat(options.center.lng)})),options.radius&&(googleOptions.radius=parseFloat(options.radius)),options.color&&(googleOptions.fillColor=options.color),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity),googleOptions.strokeOpacity=parseFloat(options.opacity)),this.googleCircle.setOptions(googleOptions),options.map&&options.map.addCircle(this)}}),jQuery(function($){WPGMZA.GoogleGeocoder=function(){},WPGMZA.GoogleGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.GoogleGeocoder.prototype.constructor=WPGMZA.GoogleGeocoder,WPGMZA.GoogleGeocoder.prototype.getLatLngFromAddress=function(options,callback){if(!options||!options.address)throw new Error("No address specified");if(WPGMZA.isLatLngString(options.address))return WPGMZA.Geocoder.prototype.getLatLngFromAddress.call(this,options,callback);options.country&&(options.componentRestrictions={country:options.country}),(new google.maps.Geocoder).geocode(options,function(results,status){if(status==google.maps.GeocoderStatus.OK){var location=results[0].geometry.location,latLng={lat:location.lat(),lng:location.lng()},bounds=null;results[0].geometry.bounds&&(bounds=WPGMZA.LatLngBounds.fromGoogleLatLngBounds(results[0].geometry.bounds)),callback(results=[{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng,bounds:bounds}],WPGMZA.Geocoder.SUCCESS)}else{var nativeStatus=WPGMZA.Geocoder.FAIL;status==google.maps.GeocoderStatus.ZERO_RESULTS&&(nativeStatus=WPGMZA.Geocoder.ZERO_RESULTS),callback(null,nativeStatus)}})},WPGMZA.GoogleGeocoder.prototype.getAddressFromLatLng=function(options,callback){if(!options||!options.latLng)throw new Error("No latLng specified");var latLng=new WPGMZA.LatLng(options.latLng),geocoder=new google.maps.Geocoder;delete(options=$.extend(options,{location:{lat:latLng.lat,lng:latLng.lng}})).latLng,geocoder.geocode(options,function(results,status){"OK"!==status&&callback(null,WPGMZA.Geocoder.FAIL),results&&results.length||callback([],WPGMZA.Geocoder.NO_RESULTS),callback([results[0].formatted_address],WPGMZA.Geocoder.SUCCESS)})}}),jQuery(function($){WPGMZA.settings.engine&&"google-maps"!=WPGMZA.settings.engine||window.google&&window.google.maps&&(WPGMZA.GoogleHTMLOverlay=function(map){this.element=$("<div class='wpgmza-google-html-overlay'></div>"),this.visible=!0,this.position=new WPGMZA.LatLng,this.setMap(map.googleMap),this.wpgmzaMap=map},WPGMZA.GoogleHTMLOverlay.prototype=new google.maps.OverlayView,WPGMZA.GoogleHTMLOverlay.prototype.onAdd=function(){this.getPanes().overlayMouseTarget.appendChild(this.element[0])},WPGMZA.GoogleHTMLOverlay.prototype.onRemove=function(){this.element&&$(this.element).parent().length&&($(this.element).remove(),this.element=null)},WPGMZA.GoogleHTMLOverlay.prototype.draw=function(){this.updateElementPosition()},WPGMZA.GoogleHTMLOverlay.prototype.updateElementPosition=function(){var projection=this.getProjection();if(projection){var pixels=projection.fromLatLngToDivPixel(this.position.toGoogleLatLng());$(this.element).css({left:pixels.x,top:pixels.y})}})}),jQuery(function($){var Parent;WPGMZA.GoogleInfoWindow=function(mapObject){Parent.call(this,mapObject),this.setMapObject(mapObject)},WPGMZA.GoogleInfoWindow.Z_INDEX=99,Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.GoogleInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.GoogleInfoWindow.prototype.constructor=WPGMZA.GoogleInfoWindow,WPGMZA.GoogleInfoWindow.prototype.setMapObject=function(mapObject){mapObject instanceof WPGMZA.Marker?this.googleObject=mapObject.googleMarker:mapObject instanceof WPGMZA.Polygon?this.googleObject=mapObject.googlePolygon:mapObject instanceof WPGMZA.Polyline&&(this.googleObject=mapObject.googlePolyline)},WPGMZA.GoogleInfoWindow.prototype.createGoogleInfoWindow=function(){var self=this;this.googleInfoWindow||(this.googleInfoWindow=new google.maps.InfoWindow,this.googleInfoWindow.setZIndex(WPGMZA.GoogleInfoWindow.Z_INDEX),google.maps.event.addListener(this.googleInfoWindow,"domready",function(event){self.trigger("domready")}),google.maps.event.addListener(this.googleInfoWindow,"closeclick",function(event){self.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(self.state=WPGMZA.InfoWindow.STATE_CLOSED,self.trigger("infowindowclose"))}))},WPGMZA.GoogleInfoWindow.prototype.open=function(map,mapObject){var self=this;if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.createGoogleInfoWindow(),this.setMapObject(mapObject),this.googleInfoWindow.open(this.mapObject.map.googleMap,this.googleObject);var guid=WPGMZA.guid(),html="<div id='"+guid+"'>"+this.content+"</div>";this.googleInfoWindow.setContent(html);var intervalID;return intervalID=setInterval(function(event){div=$("#"+guid),div.length&&(clearInterval(intervalID),div[0].wpgmzaMapObject=self.mapObject,div.addClass("wpgmza-infowindow"),self.element=div[0],self.trigger("infowindowopen"))},50),!0},WPGMZA.GoogleInfoWindow.prototype.close=function(){this.googleInfoWindow&&(WPGMZA.InfoWindow.prototype.close.call(this),this.googleInfoWindow.close())},WPGMZA.GoogleInfoWindow.prototype.setContent=function(html){Parent.prototype.setContent.call(this,html),this.content=html,this.createGoogleInfoWindow(),this.googleInfoWindow.setContent(html)},WPGMZA.GoogleInfoWindow.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.createGoogleInfoWindow(),this.googleInfoWindow.setOptions(options)}}),jQuery(function($){var Parent;WPGMZA.GoogleMap=function(element,options){var self=this;if(Parent.call(this,element,options),!window.google){var status=WPGMZA.googleAPIStatus,message="Google API not loaded";if(status&&status.message&&(message+=" - "+status.message),"USER_CONSENT_NOT_GIVEN"==status.code)return;throw $(element).html("<div class='notice notice-error'><p>"+WPGMZA.localized_strings.google_api_not_loaded+"<pre>"+message+"</pre></p></div>"),new Error(message)}this.loadGoogleMap(),options&&this.setOptions(options,!0),google.maps.event.addListener(this.googleMap,"click",function(event){var wpgmzaEvent=new WPGMZA.Event("click");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"rightclick",function(event){var wpgmzaEvent=new WPGMZA.Event("rightclick");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"dragend",function(event){self.dispatchEvent("dragend")}),google.maps.event.addListener(this.googleMap,"zoom_changed",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged")}),google.maps.event.addListener(this.googleMap,"idle",function(event){self.onIdle(event)}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},WPGMZA.isProVersion()?(Parent=WPGMZA.ProMap,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.ProMap.prototype)):(Parent=WPGMZA.Map,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.Map.prototype)),WPGMZA.GoogleMap.prototype.constructor=WPGMZA.GoogleMap,WPGMZA.GoogleMap.parseThemeData=function(raw){var json;try{json=JSON.parse(raw)}catch(e){try{json=eval(raw)}catch(e){var str=raw;str=str.replace(/\\'/g,"'"),str=str.replace(/\\"/g,'"'),str=str.replace(/\\0/g,"\0"),str=str.replace(/\\\\/g,"\\");try{json=eval(str)}catch(e){return console.warn("Couldn't parse theme data"),[]}}}return json},WPGMZA.GoogleMap.prototype.loadGoogleMap=function(){var self=this,options=this.settings.toGoogleMapsOptions();this.googleMap=new google.maps.Map(this.engineElement,options),google.maps.event.addListener(this.googleMap,"bounds_changed",function(){self.onBoundsChanged()}),1==this.settings.bicycle&&this.enableBicycleLayer(!0),1==this.settings.traffic&&this.enableTrafficLayer(!0),1==this.settings.transport&&this.enablePublicTransportLayer(!0),this.showPointsOfInterest(this.settings.show_point_of_interest),$(this.engineElement).append($(this.element).find(".wpgmza-loader"))},WPGMZA.GoogleMap.prototype.setOptions=function(options,initializing){if(Parent.prototype.setOptions.call(this,options),options.scrollwheel&&delete options.scrollwheel,initializing){var converted=$.extend(options,this.settings.toGoogleMapsOptions()),clone=$.extend({},converted);if(!clone.center instanceof google.maps.LatLng&&(clone.center instanceof WPGMZA.LatLng||"object"==typeof clone.center)&&(clone.center={lat:parseFloat(clone.center.lat),lng:parseFloat(clone.center.lng)}),"1"==this.settings.hide_point_of_interest){clone.styles||(clone.styles=[]),clone.styles.push({featureType:"poi",elementType:"labels",stylers:[{visibility:"off"}]})}this.googleMap.setOptions(clone)}else this.googleMap.setOptions(options)},WPGMZA.GoogleMap.prototype.addMarker=function(marker){marker.googleMarker.setMap(this.googleMap),Parent.prototype.addMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.removeMarker=function(marker){marker.googleMarker.setMap(null),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.addPolygon=function(polygon){polygon.googlePolygon.setMap(this.googleMap),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.removePolygon=function(polygon){polygon.googlePolygon.setMap(null),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.addPolyline=function(polyline){polyline.googlePolyline.setMap(this.googleMap),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.removePolyline=function(polyline){polyline.googlePolyline.setMap(null),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.addCircle=function(circle){circle.googleCircle.setMap(this.googleMap),Parent.prototype.addCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.removeCircle=function(circle){circle.googleCircle.setMap(null),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.addRectangle=function(rectangle){rectangle.googleRectangle.setMap(this.googleMap),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.removeRectangle=function(rectangle){rectangle.googleRectangle.setMap(null),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.getCenter=function(){var latLng=this.googleMap.getCenter();return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.setCenter=function(latLng){WPGMZA.Map.prototype.setCenter.call(this,latLng),latLng instanceof WPGMZA.LatLng?this.googleMap.setCenter({lat:latLng.lat,lng:latLng.lng}):this.googleMap.setCenter(latLng)},WPGMZA.GoogleMap.prototype.panTo=function(latLng){latLng instanceof WPGMZA.LatLng?this.googleMap.panTo({lat:latLng.lat,lng:latLng.lng}):this.googleMap.panTo(latLng)},WPGMZA.GoogleMap.prototype.getZoom=function(){return this.googleMap.getZoom()},WPGMZA.GoogleMap.prototype.setZoom=function(value){if(isNaN(value))throw new Error("Value must not be NaN");return this.googleMap.setZoom(parseInt(value))},WPGMZA.GoogleMap.prototype.getBounds=function(){var bounds=this.googleMap.getBounds(),northEast=bounds.getNorthEast(),southWest=bounds.getSouthWest(),nativeBounds=new WPGMZA.LatLngBounds({});return nativeBounds.north=northEast.lat(),nativeBounds.south=southWest.lat(),nativeBounds.west=southWest.lng(),nativeBounds.east=northEast.lng(),nativeBounds.topLeft={lat:northEast.lat(),lng:southWest.lng()},nativeBounds.bottomRight={lat:southWest.lat(),lng:northEast.lng()},nativeBounds},WPGMZA.GoogleMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var nativeBounds=new google.maps.LatLngBounds(southWest,northEast);this.googleMap.fitBounds(nativeBounds)},WPGMZA.GoogleMap.prototype.fitBoundsToVisibleMarkers=function(){for(var bounds=new google.maps.LatLngBounds,i=0;i<this.markers.length;i++)markers[i].getVisible()&&bounds.extend(markers[i].getPosition());this.googleMap.fitBounds(bounds)},WPGMZA.GoogleMap.prototype.enableBicycleLayer=function(enable){this.bicycleLayer||(this.bicycleLayer=new google.maps.BicyclingLayer),this.bicycleLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enableTrafficLayer=function(enable){this.trafficLayer||(this.trafficLayer=new google.maps.TrafficLayer),this.trafficLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enablePublicTransportLayer=function(enable){this.publicTransportLayer||(this.publicTransportLayer=new google.maps.TransitLayer),this.publicTransportLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.showPointsOfInterest=function(show){var text=$("textarea[name='theme_data']").val();if(text){var styles=JSON.parse(text);styles.push({featureType:"poi",stylers:[{visibility:show?"on":"off"}]}),this.googleMap.setOptions({styles:styles})}},WPGMZA.GoogleMap.prototype.getMinZoom=function(){return parseInt(this.settings.min_zoom)},WPGMZA.GoogleMap.prototype.setMinZoom=function(value){this.googleMap.setOptions({minZoom:value,maxZoom:this.getMaxZoom()})},WPGMZA.GoogleMap.prototype.getMaxZoom=function(){return parseInt(this.settings.max_zoom)},WPGMZA.GoogleMap.prototype.setMaxZoom=function(value){this.googleMap.setOptions({minZoom:this.getMinZoom(),maxZoom:value})},WPGMZA.GoogleMap.prototype.latLngToPixels=function(latLng){var map=this.googleMap,nativeLatLng=new google.maps.LatLng({lat:parseFloat(latLng.lat),lng:parseFloat(latLng.lng)}),topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=map.getProjection().fromLatLngToPoint(nativeLatLng);return{x:(worldPoint.x-bottomLeft.x)*scale,y:(worldPoint.y-topRight.y)*scale}},WPGMZA.GoogleMap.prototype.pixelsToLatLng=function(x,y){void 0==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var map=this.googleMap,topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=new google.maps.Point(x/scale+bottomLeft.x,y/scale+topRight.y),latLng=map.getProjection().fromPointToLatLng(worldPoint);return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.onElementResized=function(event){this.googleMap&&google.maps.event.trigger(this.googleMap,"resize")}}),jQuery(function($){var Parent;WPGMZA.GoogleMarker=function(row){var self=this;Parent.call(this,row),this._opacity=1;var settings={};if(row)for(var name in row)row[name]instanceof WPGMZA.LatLng?settings[name]=row[name].toGoogleLatLng():row[name]instanceof WPGMZA.Map||"icon"==name||(settings[name]=row[name]);this.googleMarker=new google.maps.Marker(settings),this.googleMarker.wpgmzaMarker=this,this.googleMarker.setPosition(new google.maps.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})),this.googleMarker.setLabel(this.settings.label),this.anim&&this.googleMarker.setAnimation(this.anim),this.animation&&this.googleMarker.setAnimation(this.animation),google.maps.event.addListener(this.googleMarker,"click",function(){self.dispatchEvent("click"),self.dispatchEvent("select")}),google.maps.event.addListener(this.googleMarker,"mouseover",function(){self.dispatchEvent("mouseover")}),google.maps.event.addListener(this.googleMarker,"dragend",function(){var googleMarkerPosition=self.googleMarker.getPosition();self.setPosition({lat:googleMarkerPosition.lat(),lng:googleMarkerPosition.lng()}),self.dispatchEvent({type:"dragend",latLng:self.getPosition()})}),this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.GoogleMarker.prototype=Object.create(Parent.prototype),WPGMZA.GoogleMarker.prototype.constructor=WPGMZA.GoogleMarker,Object.defineProperty(WPGMZA.GoogleMarker.prototype,"opacity",{get:function(){return this._opacity},set:function(value){this._opacity=value,this.googleMarker.setOpacity(value)}}),WPGMZA.GoogleMarker.prototype.setLabel=function(label){label?(this.googleMarker.setLabel({text:label}),this.googleMarker.getIcon()||this.googleMarker.setIcon(WPGMZA.settings.default_marker_icon)):this.googleMarker.setLabel(null)},WPGMZA.GoogleMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng),this.googleMarker.setPosition({lat:this.lat,lng:this.lng})},WPGMZA.GoogleMarker.prototype.updateOffset=function(){var params,self=this,icon=this.googleMarker.getIcon(),img=new Image,x=this._offset.x,y=this._offset.y;icon||(icon=WPGMZA.settings.default_marker_icon),params="string"==typeof icon?{url:icon}:icon,img.onload=function(){var defaultAnchor={x:img.width/2,y:img.height};params.anchor=new google.maps.Point(defaultAnchor.x-x,defaultAnchor.y-y),self.googleMarker.setIcon(params)},img.src=params.url},WPGMZA.GoogleMarker.prototype.setOptions=function(options){this.googleMarker.setOptions(options)},WPGMZA.GoogleMarker.prototype.setAnimation=function(animation){Parent.prototype.setAnimation.call(this,animation),this.googleMarker.setAnimation(animation)},WPGMZA.GoogleMarker.prototype.setVisible=function(visible){Parent.prototype.setVisible.call(this,visible),this.googleMarker.setVisible(!!visible)},WPGMZA.GoogleMarker.prototype.getVisible=function(visible){return this.googleMarker.getVisible()},WPGMZA.GoogleMarker.prototype.setDraggable=function(draggable){this.googleMarker.setDraggable(draggable)},WPGMZA.GoogleMarker.prototype.setOpacity=function(opacity){this.googleMarker.setOpacity(opacity)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocatorCircle=function(map,settings){var self=this;WPGMZA.ModernStoreLocatorCircle.call(this,map,settings),this.intervalID=setInterval(function(){var mapSize={width:$(self.mapElement).width(),height:$(self.mapElement).height()};mapSize.width==self.mapSize.width&&mapSize.height==self.mapSize.height||(self.canvasLayer.resize_(),self.canvasLayer.draw(),self.mapSize=mapSize)},1e3),$(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange",function(){self.canvasLayer.resize_(),self.canvasLayer.draw()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.GoogleModernStoreLocatorCircle.prototype.constructor=WPGMZA.GoogleModernStoreLocatorCircle,WPGMZA.GoogleModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this;this.canvasLayer&&(this.canvasLayer.setMap(null),this.canvasLayer.setAnimate(!1)),this.canvasLayer=new CanvasLayer({map:this.map.googleMap,resizeHandler:function(event){self.onResize(event)},updateHandler:function(event){self.onUpdate(event)},animate:!0,resolutionScale:this.getResolutionScale()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setOptions=function(options){WPGMZA.ModernStoreLocatorCircle.prototype.setOptions.call(this,options),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setPosition=function(position){WPGMZA.ModernStoreLocatorCircle.prototype.setPosition.call(this,position),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setRadius=function(radius){WPGMZA.ModernStoreLocatorCircle.prototype.setRadius.call(this,radius),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var spherical=google.maps.geometry.spherical,center=this.settings.center,equator=new WPGMZA.LatLng({lat:0,lng:0}),latitude=new WPGMZA.LatLng({lat:center.lat,lng:0}),offsetAtEquator=spherical.computeOffset(equator.toGoogleLatLng(),1e3*km,90),result=.006395*km*(spherical.computeOffset(latitude.toGoogleLatLng(),1e3*km,90).lng()/offsetAtEquator.lng());if(isNaN(result))throw new Error("here");return result},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvasLayer.canvas.width,height:this.canvasLayer.canvas.height}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){var position=this.map.googleMap.getProjection().fromLatLngToPoint(this.canvasLayer.getTopLeft());return{x:-position.x,y:-position.y}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCenterPixels=function(){var center=new WPGMZA.LatLng(this.settings.center);return this.map.googleMap.getProjection().fromLatLngToPoint(center.toGoogleLatLng())},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvasLayer.canvas.getContext("2d")},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getScale=function(){return Math.pow(2,this.map.getZoom())*this.getResolutionScale()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setVisible=function(visible){WPGMZA.ModernStoreLocatorCircle.prototype.setVisible.call(this,visible),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.destroy=function(){this.canvasLayer.setMap(null),this.canvasLayer=null,clearInterval(this.intervalID)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocator=function(map_id){this.map=WPGMZA.getMapByID(map_id),WPGMZA.ModernStoreLocator.call(this,map_id);var options={fields:["name","formatted_address"],types:["geocode"]},restrict=wpgmaps_localize[map_id].other_settings.wpgmza_store_locator_restrict;this.addressInput=$(this.element).find(".addressInput, #addressInput")[0],this.addressInput&&(restrict&&restrict.length&&(options.componentRestrictions={country:restrict}),this.autoComplete=new google.maps.places.Autocomplete(this.addressInput,options)),this.map.googleMap.controls[google.maps.ControlPosition.TOP_CENTER].push(this.element)},WPGMZA.GoogleModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator.prototype),WPGMZA.GoogleModernStoreLocator.prototype.constructor=WPGMZA.GoogleModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.GooglePolygon=function(options,googlePolygon){var self=this;if(Parent.call(this,options,googlePolygon),googlePolygon)this.googlePolygon=googlePolygon;else if(this.googlePolygon=new google.maps.Polygon,options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.paths=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.lineopacity&&(googleOptions.strokeOpacity=parseFloat(options.lineopacity)),options.fillcolor&&(googleOptions.fillColor="#"+options.fillcolor),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity)),this.googlePolygon.setOptions(googleOptions)}this.googlePolygon.wpgmzaPolygon=this,google.maps.event.addListener(this.googlePolygon,"click",function(){self.dispatchEvent({type:"click"})})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.GooglePolygon.prototype=Object.create(Parent.prototype),WPGMZA.GooglePolygon.prototype.constructor=WPGMZA.GooglePolygon,WPGMZA.GooglePolygon.prototype.getEditable=function(){return this.googlePolygon.getOptions().editable},WPGMZA.GooglePolygon.prototype.setEditable=function(value){this.googlePolygon.setOptions({editable:value})},WPGMZA.GooglePolygon.prototype.toJSON=function(){var result=WPGMZA.Polygon.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolygon.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GooglePolyline=function(options,googlePolyline){var self=this;if(WPGMZA.Polyline.call(this,options,googlePolyline),googlePolyline)this.googlePolyline=googlePolyline;else{if(this.googlePolyline=new google.maps.Polyline(this.settings),options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.path=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.linethickness&&(googleOptions.strokeWeight=parseInt(options.linethickness)),options.opacity&&(googleOptions.strokeOpacity=parseFloat(options.opacity))}if(options&&options.polydata){var path=this.parseGeometry(options.polydata);this.setPoints(path)}}this.googlePolyline.wpgmzaPolyline=this,google.maps.event.addListener(this.googlePolyline,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GooglePolyline.prototype=Object.create(WPGMZA.Polyline.prototype),WPGMZA.GooglePolyline.prototype.constructor=WPGMZA.GooglePolyline,WPGMZA.GooglePolyline.prototype.setEditable=function(value){this.googlePolyline.setOptions({editable:value})},WPGMZA.GooglePolyline.prototype.setPoints=function(points){this.googlePolyline.setOptions({path:points})},WPGMZA.GooglePolyline.prototype.toJSON=function(){var result=WPGMZA.Polyline.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolyline.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GoogleText=function(options){WPGMZA.Text.apply(this,arguments),this.overlay=new WPGMZA.GoogleTextOverlay(options)},WPGMZA.extend(WPGMZA.GoogleText,WPGMZA.Text)}),jQuery(function($){WPGMZA.GoogleTextOverlay=function(options){this.element=$("<div class='wpgmza-google-text-overlay'><div class='wpgmza-inner'></div></div>"),options||(options={}),options.position&&(this.position=options.position),options.text&&this.element.find(".wpgmza-inner").text(options.text),options.map&&this.setMap(options.map.googleMap)},window.google&&google.maps&&google.maps.OverlayView&&(WPGMZA.GoogleTextOverlay.prototype=new google.maps.OverlayView),WPGMZA.GoogleTextOverlay.prototype.onAdd=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px"}),this.getPanes().floatPane.appendChild(this.element[0])},WPGMZA.GoogleTextOverlay.prototype.draw=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px"})},WPGMZA.GoogleTextOverlay.prototype.onRemove=function(){this.element.remove()},WPGMZA.GoogleTextOverlay.prototype.hide=function(){this.element.hide()},WPGMZA.GoogleTextOverlay.prototype.show=function(){this.element.show()},WPGMZA.GoogleTextOverlay.prototype.toggle=function(){this.element.is(":visible")?this.element.hide():this.element.show()}}),jQuery(function($){"google-maps"==WPGMZA.settings.engine&&(WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code||(WPGMZA.GoogleVertexContextMenu=function(mapEditPage){var self=this;this.mapEditPage=mapEditPage,this.element=document.createElement("div"),this.element.className="wpgmza-vertex-context-menu",this.element.innerHTML="Delete",google.maps.event.addDomListener(this.element,"click",function(event){return self.removeVertex(),event.preventDefault(),event.stopPropagation(),!1})},WPGMZA.GoogleVertexContextMenu.prototype=new google.maps.OverlayView,WPGMZA.GoogleVertexContextMenu.prototype.onAdd=function(){var self=this,map=this.getMap();this.getPanes().floatPane.appendChild(this.element),this.divListener=google.maps.event.addDomListener(map.getDiv(),"mousedown",function(e){e.target!=self.element&&self.close()},!0)},WPGMZA.GoogleVertexContextMenu.prototype.onRemove=function(){google.maps.event.removeListener(this.divListener),this.element.parentNode.removeChild(this.element),this.set("position"),this.set("path"),this.set("vertex")},WPGMZA.GoogleVertexContextMenu.prototype.open=function(map,path,vertex){this.set("position",path.getAt(vertex)),this.set("path",path),this.set("vertex",vertex),this.setMap(map),this.draw()},WPGMZA.GoogleVertexContextMenu.prototype.close=function(){this.setMap(null)},WPGMZA.GoogleVertexContextMenu.prototype.draw=function(){var position=this.get("position"),projection=this.getProjection();if(position&&projection){var point=projection.fromLatLngToDivPixel(position);this.element.style.top=point.y+"px",this.element.style.left=point.x+"px"}},WPGMZA.GoogleVertexContextMenu.prototype.removeVertex=function(){var path=this.get("path"),vertex=this.get("vertex");path&&void 0!=vertex?(path.removeAt(vertex),this.close()):this.close()}))}),jQuery(function($){var Parent=WPGMZA.Circle;WPGMZA.OLCircle=function(options,olFeature){this.center={lat:0,lng:0},this.radius=0,this.fillcolor="#ff0000",this.opacity=.6,Parent.call(this,options,olFeature),this.olStyle=new ol.style.Style(this.getStyleFromSettings()),this.vectorLayer3857=this.layer=new ol.layer.Vector({source:new ol.source.Vector,style:this.olStyle}),olFeature?this.olFeature=olFeature:this.recreate()},WPGMZA.OLCircle.prototype=Object.create(Parent.prototype),WPGMZA.OLCircle.prototype.constructor=WPGMZA.OLCircle,WPGMZA.OLCircle.prototype.recreate=function(){if(this.olFeature&&(this.layer.getSource().removeFeature(this.olFeature),delete this.olFeature),this.center&&this.radius){var x,y,wgs84Sphere=new ol.Sphere(6378137),radius=1e3*parseFloat(this.radius)/2;x=this.center.lng,y=this.center.lat;var circle3857=ol.geom.Polygon.circular(wgs84Sphere,[x,y],radius,64).clone().transform("EPSG:4326","EPSG:3857");this.olFeature=new ol.Feature(circle3857),this.layer.getSource().addFeature(this.olFeature)}},WPGMZA.OLCircle.prototype.getStyleFromSettings=function(){var params={};return this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillColor,this.opacity)})),params},WPGMZA.OLCircle.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLCircle.prototype.setVisible=function(visible){this.layer.setVisible(!!visible)},WPGMZA.OLCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.recreate()},WPGMZA.OLCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.recreate()}}),jQuery(function($){WPGMZA.OLGeocoder=function(){},WPGMZA.OLGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.OLGeocoder.prototype.constructor=WPGMZA.OLGeocoder,WPGMZA.OLGeocoder.prototype.getResponseFromCache=function(query,callback){WPGMZA.restAPI.call("/geocode-cache",{data:{query:JSON.stringify(query)},success:function(response,xhr,status){response.lng=response.lon,callback(response)},useCompressedPathVariable:!0})},WPGMZA.OLGeocoder.prototype.getResponseFromNominatim=function(options,callback){var data={q:options.address,format:"json"};options.componentRestrictions&&options.componentRestrictions.country&&(data.countrycodes=options.componentRestrictions.country),$.ajax("https://nominatim.openstreetmap.org/search/",{data:data,success:function(response,xhr,status){callback(response)},error:function(response,xhr,status){callback(null,WPGMZA.Geocoder.FAIL)}})},WPGMZA.OLGeocoder.prototype.cacheResponse=function(query,response){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_store_nominatim_cache",query:JSON.stringify(query),response:JSON.stringify(response)},method:"POST"})},WPGMZA.OLGeocoder.prototype.clearCache=function(callback){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_clear_nominatim_cache"},method:"POST",success:function(response){callback(response)}})},WPGMZA.OLGeocoder.prototype.getLatLngFromAddress=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.getAddressFromLatLng=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.geocode=function(options,callback){var self=this;if(!options)throw new Error("Invalid options");if(WPGMZA.LatLng.REGEXP.test(options.address)){var latLng=WPGMZA.LatLng.fromString(options.address);callback([{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng}],WPGMZA.Geocoder.SUCCESS)}else{options.location&&(options.latLng=new WPGMZA.LatLng(options.location));var finish,location;if(options.address)location=options.address,finish=function(response,status){for(var i=0;i<response.length;i++)response[i].geometry={location:new WPGMZA.LatLng({lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)})},response[i].latLng={lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)},response[i].bounds=new WPGMZA.LatLngBounds(new WPGMZA.LatLng({lat:response[i].boundingbox[1],lng:response[i].boundingbox[2]}),new WPGMZA.LatLng({lat:response[i].boundingbox[0],lng:response[i].boundingbox[3]})),response[i].lng=response[i].lon;callback(response,status)};else{if(!options.latLng)throw new Error("You must supply either a latLng or address");location=options.latLng.toString(),finish=function(response,status){var address=response[0].display_name;callback([address],status)}}var query={location:location,options:options};this.getResponseFromCache(query,function(response){response.length?finish(response,WPGMZA.Geocoder.SUCCESS):self.getResponseFromNominatim($.extend(options,{address:location}),function(response,status){status!=WPGMZA.Geocoder.FAIL?0!=response.length?(finish(response,WPGMZA.Geocoder.SUCCESS),self.cacheResponse(query,response)):callback([],WPGMZA.Geocoder.ZERO_RESULTS):callback(null,WPGMZA.Geocoder.FAIL)})})}}}),jQuery(function($){var Parent;WPGMZA.OLInfoWindow=function(mapObject){var self=this;Parent.call(this,mapObject),this.element=$("<div class='wpgmza-infowindow ol-info-window-container ol-info-window-plain'></div>")[0],$(this.element).on("click",".ol-info-window-close",function(event){self.close()})},Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.OLInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.OLInfoWindow.prototype.constructor=WPGMZA.OLInfoWindow,WPGMZA.OLInfoWindow.prototype.open=function(map,mapObject){var self=this,latLng=mapObject.getPosition();if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.overlay&&this.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=new ol.Overlay({element:this.element,stopEvent:!1}),this.overlay.setPosition(ol.proj.fromLonLat([latLng.lng,latLng.lat])),self.mapObject.map.olMap.addOverlay(this.overlay),$(this.element).show(),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&WPGMZA.getImageDimensions(mapObject.getIcon(),function(size){$(self.element).css({left:Math.round(size.width/2)+"px"})}),this.trigger("infowindowopen"),this.trigger("domready")},WPGMZA.OLInfoWindow.prototype.close=function(event){$(this.element).hide(),this.overlay&&(WPGMZA.InfoWindow.prototype.close.call(this),this.trigger("infowindowclose"),this.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=null)},WPGMZA.OLInfoWindow.prototype.setContent=function(html){$(this.element).html("<i class='fa fa-times ol-info-window-close' aria-hidden='true'></i>"+html)},WPGMZA.OLInfoWindow.prototype.setOptions=function(options){options.maxWidth&&$(this.element).css({"max-width":options.maxWidth+"px"})},WPGMZA.OLInfoWindow.prototype.onOpen=function(){function inside(el,viewport){var a=el.getBoundingClientRect(),b=viewport.getBoundingClientRect();return a.left>=b.left&&a.left<=b.right&&a.right<=b.right&&a.right>=b.left&&a.top>=b.top&&a.top<=b.bottom&&a.bottom<=b.bottom&&a.bottom>=b.top}function panIntoView(){var offset=.45*-$(self.element).height();self.mapObject.map.animateNudge(0,offset,self.mapObject.getPosition())}var self=this,imgs=$(this.element).find("img"),numImages=imgs.length,numImagesLoaded=0;WPGMZA.InfoWindow.prototype.onOpen.apply(this,arguments),imgs.each(function(index,el){el.onload=function(){++numImagesLoaded!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}),0!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}),jQuery(function($){var Parent;WPGMZA.OLMap=function(element,options){var self=this;Parent.call(this,element),this.setOptions(options);var viewOptions=this.settings.toOLViewOptions();$(this.element).html(""),this.olMap=new ol.Map({target:$(element)[0],layers:[this.getTileLayer()],view:new ol.View(viewOptions)}),this.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan?interaction.setActive("yes"!=self.settings.wpgmza_settings_map_draggable):interaction instanceof ol.interaction.DoubleClickZoom?interaction.setActive(!self.settings.wpgmza_settings_map_clickzoom):interaction instanceof ol.interaction.MouseWheelZoom&&interaction.setActive("yes"!=self.settings.wpgmza_settings_map_scroll)},this),"greedy"!=this.wpgmza_force_greedy_gestures&&"yes"!=this.wpgmza_force_greedy_gestures&&(this.gestureOverlay=$("<div class='wpgmza-gesture-overlay'></div>"),this.gestureOverlayTimeoutID=null,WPGMZA.isTouchDevice()?(this.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&self.olMap.removeInteraction(interaction)}),this.olMap.addInteraction(new ol.interaction.DragPan({condition:function(olBrowserEvent){var allowed=2==olBrowserEvent.originalEvent.touches.length;return allowed||self.showGestureOverlay(),allowed}})),this.gestureOverlay.text(WPGMZA.localized_strings.use_two_fingers)):(this.olMap.on("wheel",function(event){if(!ol.events.condition.platformModifierKeyOnly(event))return self.showGestureOverlay(),event.originalEvent.preventDefault(),!1}),this.gestureOverlay.text(WPGMZA.localized_strings.use_ctrl_scroll_to_zoom))),this.olMap.getControls().forEach(function(control){control instanceof ol.control.Zoom&&"yes"==WPGMZA.settings.wpgmza_settings_map_zoom&&self.olMap.removeControl(control)},this),"yes"!=WPGMZA.settings.wpgmza_settings_map_full_screen_control&&this.olMap.addControl(new ol.control.FullScreen),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(this.markerLayer=new ol.layer.Vector({source:new ol.source.Vector({features:[]})}),this.olMap.addLayer(this.markerLayer),this.olMap.on("click",function(event){var features=self.olMap.getFeaturesAtPixel(event.pixel);if(features&&features.length){var marker=features[0].wpgmzaMarker;marker&&(marker.trigger("click"),marker.trigger("select"))}})),this.olMap.on("movestart",function(event){self.isBeingDragged=!0}),this.olMap.on("moveend",function(event){self.wrapLongitude(),self.isBeingDragged=!1,self.dispatchEvent("dragend"),self.onIdle()}),this.olMap.getView().on("change:resolution",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged"),setTimeout(function(){self.onIdle()},10)}),this.olMap.getView().on("change",function(){self.onBoundsChanged()}),self.onBoundsChanged();var marker;this.storeLocator&&(marker=this.storeLocator.centerPointMarker)&&(this.olMap.addOverlay(marker.overlay),marker.setVisible(!1)),$(this.element).on("click contextmenu",function(event){var isRight;event=event||window.event;var latLng=self.pixelsToLatLng(event.offsetX,event.offsetY);if("which"in event?isRight=3==event.which:"button"in event&&(isRight=2==event.button),1!=event.which&&1!=event.button){if(isRight)return self.onRightClick(event)}else{if(self.isBeingDragged)return;if($(event.target).closest(".ol-marker").length)return;self.trigger({type:"click",latLng:latLng})}}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},Parent=WPGMZA.isProVersion()?WPGMZA.ProMap:WPGMZA.Map,WPGMZA.OLMap.prototype=Object.create(Parent.prototype),WPGMZA.OLMap.prototype.constructor=WPGMZA.OLMap,WPGMZA.OLMap.prototype.getTileLayer=function(){var options={};return WPGMZA.settings.tile_server_url&&(options.url=WPGMZA.settings.tile_server_url),new ol.layer.Tile({source:new ol.source.OSM(options)})},WPGMZA.OLMap.prototype.wrapLongitude=function(){var center=this.getCenter();center.lng>=-180&&center.lng<=180||(center.lng=center.lng-360*Math.floor(center.lng/360),center.lng>180&&(center.lng-=360),this.setCenter(center))},WPGMZA.OLMap.prototype.getCenter=function(){var lonLat=ol.proj.toLonLat(this.olMap.getView().getCenter());return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.setCenter=function(latLng){var view=this.olMap.getView();WPGMZA.Map.prototype.setCenter.call(this,latLng),view.setCenter(ol.proj.fromLonLat([latLng.lng,latLng.lat])),this.wrapLongitude(),this.onBoundsChanged()},WPGMZA.OLMap.prototype.getBounds=function(){var bounds=this.olMap.getView().calculateExtent(this.olMap.getSize()),nativeBounds=new WPGMZA.LatLngBounds,topLeft=ol.proj.toLonLat([bounds[0],bounds[1]]),bottomRight=ol.proj.toLonLat([bounds[2],bounds[3]]);return nativeBounds.north=topLeft[1],nativeBounds.south=bottomRight[1],nativeBounds.west=topLeft[0],nativeBounds.east=bottomRight[0],nativeBounds},WPGMZA.OLMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var view=this.olMap.getView(),extent=ol.extent.boundingExtent([ol.proj.fromLonLat([parseFloat(southWest.lng),parseFloat(southWest.lat)]),ol.proj.fromLonLat([parseFloat(northEast.lng),parseFloat(northEast.lat)])]);view.fit(extent,this.olMap.getSize())},WPGMZA.OLMap.prototype.panTo=function(latLng,zoom){var view=this.olMap.getView(),options={center:ol.proj.fromLonLat([parseFloat(latLng.lng),parseFloat(latLng.lat)]),duration:500};arguments.length>1&&(options.zoom=parseInt(zoom)),view.animate(options)},WPGMZA.OLMap.prototype.getZoom=function(){return Math.round(this.olMap.getView().getZoom())},WPGMZA.OLMap.prototype.setZoom=function(value){this.olMap.getView().setZoom(value)},WPGMZA.OLMap.prototype.getMinZoom=function(){return this.olMap.getView().getMinZoom()},WPGMZA.OLMap.prototype.setMinZoom=function(value){this.olMap.getView().setMinZoom(value)},WPGMZA.OLMap.prototype.getMaxZoom=function(){return this.olMap.getView().getMaxZoom()},WPGMZA.OLMap.prototype.setMaxZoom=function(value){this.olMap.getView().setMaxZoom(value)},WPGMZA.OLMap.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.olMap&&this.olMap.getView().setProperties(this.settings.toOLViewOptions())},WPGMZA.OLMap.prototype.addMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.addOverlay(marker.overlay):(this.markerLayer.getSource().addFeature(marker.feature),marker.featureInSource=!0),Parent.prototype.addMarker.call(this,marker)},WPGMZA.OLMap.prototype.removeMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.removeOverlay(marker.overlay):(this.markerLayer.getSource().removeFeature(marker.feature),marker.featureInSource=!1),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.OLMap.prototype.addPolygon=function(polygon){this.olMap.addLayer(polygon.layer),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.OLMap.prototype.removePolygon=function(polygon){this.olMap.removeLayer(polygon.layer),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.OLMap.prototype.addPolyline=function(polyline){this.olMap.addLayer(polyline.layer),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.OLMap.prototype.removePolyline=function(polyline){this.olMap.removeLayer(polyline.layer),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.OLMap.prototype.addCircle=function(circle){this.olMap.addLayer(circle.layer),Parent.prototype.addCircle.call(this,circle)},WPGMZA.OLMap.prototype.removeCircle=function(circle){this.olMap.removeLayer(circle.layer),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.OLMap.prototype.addRectangle=function(rectangle){this.olMap.addLayer(rectangle.layer),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.removeRectangle=function(rectangle){this.olMap.removeLayer(rectangle.layer),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.pixelsToLatLng=function(x,y){void 0==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var coord=this.olMap.getCoordinateFromPixel([x,y]);if(!coord)return{x:null,y:null};var lonLat=ol.proj.toLonLat(coord);return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.latLngToPixels=function(latLng){var coord=ol.proj.fromLonLat([latLng.lng,latLng.lat]),pixel=this.olMap.getPixelFromCoordinate(coord);return pixel?{x:pixel[0],y:pixel[1]}:{x:null,y:null}},WPGMZA.OLMap.prototype.enableBicycleLayer=function(value){if(value)this.bicycleLayer||(this.bicycleLayer=new ol.layer.Tile({source:new ol.source.OSM({url:"http://{a-c}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png"})})),this.olMap.addLayer(this.bicycleLayer);else{if(!this.bicycleLayer)return;this.olMap.removeLayer(this.bicycleLayer)}},WPGMZA.OLMap.prototype.showGestureOverlay=function(){var self=this;clearTimeout(this.gestureOverlayTimeoutID),$(this.gestureOverlay).stop().animate({opacity:"100"}),$(this.element).append(this.gestureOverlay),$(this.gestureOverlay).css({"line-height":$(this.element).height()+"px",opacity:"1.0"}),$(this.gestureOverlay).show(),this.gestureOverlayTimeoutID=setTimeout(function(){self.gestureOverlay.fadeOut(2e3)},2e3)},WPGMZA.OLMap.prototype.onElementResized=function(event){this.olMap.updateSize()},WPGMZA.OLMap.prototype.onRightClick=function(event){if($(event.target).closest(".ol-marker, .wpgmza_modern_infowindow, .wpgmza-modern-store-locator").length)return!0;var parentOffset=$(this.element).offset(),relX=event.pageX-parentOffset.left,relY=event.pageY-parentOffset.top,latLng=this.pixelsToLatLng(relX,relY);return this.trigger({type:"rightclick",latLng:latLng}),$(this.element).trigger({type:"rightclick",latLng:latLng}),event.preventDefault(),!1}}),jQuery(function($){var Parent;WPGMZA.OLMarker=function(row){var self=this;Parent.call(this,row);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);if(WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT){var img=$("<img alt=''/>")[0];img.onload=function(event){self.updateElementHeight(),self.map&&self.map.olMap.updateSize()},img.src=WPGMZA.defaultMarkerIcon,this.element=$("<div class='ol-marker'></div>")[0],this.element.appendChild(img),this.element.wpgmzaMarker=this,$(this.element).on("mouseover",function(event){self.dispatchEvent("mouseover")}),this.overlay=new ol.Overlay({element:this.element,position:origin,positioning:"bottom-center",stopEvent:!1}),this.overlay.setPosition(origin),this.animation&&this.setAnimation(this.animation),this.setLabel(this.settings.label),row&&row.draggable&&this.setDraggable(!0),this.rebindClickListener()}else{if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)throw new Error("Invalid marker render mode");this.feature=new ol.Feature({geometry:new ol.geom.Point(origin)}),this.feature.setStyle(this.getVectorLayerStyle()),this.feature.wpgmzaMarker=this}this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.OLMarker.prototype=Object.create(Parent.prototype),WPGMZA.OLMarker.prototype.constructor=WPGMZA.OLMarker,WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT="element",WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER="vector",WPGMZA.OLMarker.renderMode=WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT,"open-layers"==WPGMZA.settings.engine&&WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(WPGMZA.OLMarker.defaultVectorLayerStyle=new ol.style.Style({image:new ol.style.Icon({anchor:[.5,1],src:WPGMZA.defaultMarkerIcon})}),WPGMZA.OLMarker.hiddenVectorLayerStyle=new ol.style.Style({})),WPGMZA.OLMarker.prototype.getVectorLayerStyle=function(){return this.vectorLayerStyle?this.vectorLayerStyle:WPGMZA.OLMarker.defaultVectorLayerStyle},WPGMZA.OLMarker.prototype.updateElementHeight=function(height,calledOnFocus){var self=this;height||(height=$(this.element).find("img").height()),0!=height||calledOnFocus||$(window).one("focus",function(event){self.updateElementHeight(!1,!0)}),$(this.element).css({height:height+"px"})},WPGMZA.OLMarker.prototype.addLabel=function(){this.setLabel(this.getLabelText())},WPGMZA.OLMarker.prototype.setLabel=function(label){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?label?(this.label||(this.label=$("<div class='ol-marker-label'/>"),$(this.element).append(this.label)),this.label.html(label)):this.label&&$(this.element).find(".ol-marker-label").remove():console.warn("Marker labels are not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.getVisible=function(visible){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)return"none"!=this.overlay.getElement().style.display},WPGMZA.OLMarker.prototype.setVisible=function(visible){if(Parent.prototype.setVisible.call(this,visible),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(visible){var style=this.getVectorLayerStyle();this.feature.setStyle(style)}else this.feature.setStyle(null);else this.overlay.getElement().style.display=visible?"block":"none"},WPGMZA.OLMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?this.feature.setGeometry(new ol.geom.Point(origin)):this.overlay.setPosition(origin)},WPGMZA.OLMarker.prototype.updateOffset=function(x,y){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER){var x=this._offset.x,y=this._offset.y;this.element.style.position="relative",this.element.style.left=x+"px",this.element.style.top=y+"px"}else console.warn("Marker offset is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setAnimation=function(anim){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)switch(Parent.prototype.setAnimation.call(this,anim),anim){case WPGMZA.Marker.ANIMATION_NONE:$(this.element).removeAttr("data-anim");break;case WPGMZA.Marker.ANIMATION_BOUNCE:$(this.element).attr("data-anim","bounce");break;case WPGMZA.Marker.ANIMATION_DROP:$(this.element).attr("data-anim","drop")}else console.warn("Marker animation is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setDraggable=function(draggable){var self=this;if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(draggable){var options={disabled:!1};this.jQueryDraggableInitialized||(options.start=function(event){self.onDragStart(event)},options.stop=function(event){self.onDragEnd(event)}),$(this.element).draggable(options),this.jQueryDraggableInitialized=!0,this.rebindClickListener()}else $(this.element).draggable({disabled:!0});else console.warn("Marker dragging is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setOpacity=function(opacity){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?$(this.element).css({opacity:opacity}):console.warn("Marker opacity is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.onDragStart=function(event){this.isBeingDragged=!0,this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!1)})},WPGMZA.OLMarker.prototype.onDragEnd=function(event){var offset={top:parseFloat($(this.element).css("top").match(/-?\d+/)[0]),left:parseFloat($(this.element).css("left").match(/-?\d+/)[0])};$(this.element).css({top:"0px",left:"0px"});var currentLatLng=this.getPosition(),pixelsBeforeDrag=this.map.latLngToPixels(currentLatLng),pixelsAfterDrag={x:pixelsBeforeDrag.x+offset.left,y:pixelsBeforeDrag.y+offset.top},latLngAfterDrag=this.map.pixelsToLatLng(pixelsAfterDrag);this.setPosition(latLngAfterDrag),this.isBeingDragged=!1,this.trigger({type:"dragend",latLng:latLngAfterDrag}),"yes"!=this.map.settings.wpgmza_settings_map_draggable&&this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!0)})},WPGMZA.OLMarker.prototype.onElementClick=function(event){var self=event.currentTarget.wpgmzaMarker;self.isBeingDragged||(self.dispatchEvent("click"),self.dispatchEvent("select"))},WPGMZA.OLMarker.prototype.rebindClickListener=function(){$(this.element).off("click",this.onElementClick),$(this.element).on("click",this.onElementClick)}}),jQuery(function($){WPGMZA.OLModernStoreLocatorCircle=function(map,settings){WPGMZA.ModernStoreLocatorCircle.call(this,map,settings)},WPGMZA.OLModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.OLModernStoreLocatorCircle.prototype.constructor=WPGMZA.OLModernStoreLocatorCircle,WPGMZA.OLModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this,mapElement=$(this.map.element),olViewportElement=mapElement.children(".ol-viewport");this.canvas=document.createElement("canvas"),this.canvas.className="wpgmza-ol-canvas-overlay",mapElement.append(this.canvas),this.renderFunction=function(event){self.canvas.width==olViewportElement.width()&&self.canvas.height==olViewportElement.height()||(self.canvas.width=olViewportElement.width(),self.canvas.height=olViewportElement.height(),$(this.canvas).css({width:olViewportElement.width()+"px",height:olViewportElement.height()+"px"})),self.draw()},this.map.olMap.on("postrender",this.renderFunction)},WPGMZA.OLModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvas.getContext(type)},WPGMZA.OLModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvas.width,height:this.canvas.height}},WPGMZA.OLModernStoreLocatorCircle.prototype.getCenterPixels=function(){return this.map.latLngToPixels(this.settings.center)},WPGMZA.OLModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){return{x:0,y:0}},WPGMZA.OLModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var center=new WPGMZA.LatLng(this.settings.center),outer=new WPGMZA.LatLng(center);outer.moveByDistance(km,90);var centerPixels=this.map.latLngToPixels(center),outerPixels=this.map.latLngToPixels(outer);return Math.abs(outerPixels.x-centerPixels.x)},WPGMZA.OLModernStoreLocatorCircle.prototype.getScale=function(){return 1},WPGMZA.OLModernStoreLocatorCircle.prototype.destroy=function(){$(this.canvas).remove(),this.map.olMap.un("postrender",this.renderFunction),this.map=null,this.canvas=null}}),jQuery(function($){WPGMZA.OLModernStoreLocator=function(map_id){WPGMZA.ModernStoreLocator.call(this,map_id),$(WPGMZA.isProVersion()?".wpgmza_map[data-map-id='"+map_id+"']":"#wpgmza_map").append(this.element)},WPGMZA.OLModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator),WPGMZA.OLModernStoreLocator.prototype.constructor=WPGMZA.OLModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.OLPolygon=function(options,olFeature){if(Parent.call(this,options,olFeature),this.olStyle=new ol.style.Style,olFeature)this.olFeature=olFeature;else{var coordinates=[[]];if(options&&options.polydata){for(var paths=this.parseGeometry(options.polydata),i=0;i<paths.length;i++)coordinates[0].push(ol.proj.fromLonLat([parseFloat(paths[i].lng),parseFloat(paths[i].lat)]));this.olStyle=new ol.style.Style(this.getStyleFromSettings())}this.olFeature=new ol.Feature({geometry:new ol.geom.Polygon(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolygon:this})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.OLPolygon.prototype=Object.create(Parent.prototype),WPGMZA.OLPolygon.prototype.constructor=WPGMZA.OLPolygon,WPGMZA.OLPolygon.prototype.getStyleFromSettings=function(){var params={};return this.linecolor&&this.lineopacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA("#"+this.linecolor,this.lineopacity)})),this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillcolor,this.opacity)})),params},WPGMZA.OLPolygon.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolygon.prototype.setEditable=function(editable){},WPGMZA.OLPolygon.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates()[0];result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),jQuery(function($){var Parent;WPGMZA.OLPolyline=function(options,olFeature){if(WPGMZA.Polyline.call(this,options),this.olStyle=new ol.style.Style,olFeature)this.olFeature=olFeature;else{var coordinates=[];if(options&&(options.polydata||options.points)){var path;path=options.polydata?this.parseGeometry(options.polydata):options.points;for(var i=0;i<path.length;i++){if(!$.isNumeric(path[i].lat))throw new Error("Invalid latitude");if(!$.isNumeric(path[i].lng))throw new Error("Invalid longitude");coordinates.push(ol.proj.fromLonLat([parseFloat(path[i].lng),parseFloat(path[i].lat)]))}}var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolyline:this})},Parent=WPGMZA.Polyline,WPGMZA.OLPolyline.prototype=Object.create(Parent.prototype),WPGMZA.OLPolyline.prototype.constructor=WPGMZA.OLPolyline,WPGMZA.OLPolyline.prototype.getStyleFromSettings=function(){var params={};return this.settings.strokeOpacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA(this.settings.strokeColor,this.settings.strokeOpacity),width:parseInt(this.settings.strokeWeight)})),params},WPGMZA.OLPolyline.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolyline.prototype.setEditable=function(editable){},WPGMZA.OLPolyline.prototype.setPoints=function(points){this.olFeature&&this.layer.getSource().removeFeature(this.olFeature);for(var coordinates=[],i=0;i<points.length;i++)coordinates.push(ol.proj.fromLonLat([parseFloat(points[i].lng),parseFloat(points[i].lat)]));this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)}),this.layer.getSource().addFeature(this.olFeature)},WPGMZA.OLPolyline.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates();result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),jQuery(function($){WPGMZA.OLText=function(){}}),jQuery(function($){WPGMZA.DataTable=function(element){if(!$.fn.dataTable)return console.warn("The dataTables library is not loaded. Cannot create a dataTable. Did you enable 'Do not enqueue dataTables'?"),void(WPGMZA.settings.wpgmza_do_not_enqueue_datatables&&WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT&&alert("You have selected 'Do not enqueue DataTables' in WP Google Maps' settings. No 3rd party software is loading the DataTables library. Because of this, the marker table cannot load. Please uncheck this option to use the marker table."));if($.fn.dataTable.ext)$.fn.dataTable.ext.errMode="throw";else{var version=$.fn.dataTable.version?$.fn.dataTable.version:"unknown";console.warn("You appear to be running an outdated or modified version of the dataTables library. This may cause issues with table functionality. This is usually caused by 3rd party software loading an older version of DataTables. The loaded version is "+version+", we recommend version 1.10.12 or above.")}this.element=element,this.element.wpgmzaDataTable=this,this.dataTableElement=this.getDataTableElement();var settings=this.getDataTableSettings();this.phpClass=$(element).attr("data-wpgmza-php-class"),this.dataTable=$(this.dataTableElement).DataTable(settings),this.wpgmzaDataTable=this,this.useCompressedPathVariable=WPGMZA.restAPI.isCompressedPathVariableSupported&&WPGMZA.settings.enable_compressed_path_variables,this.method=this.useCompressedPathVariable?"GET":"POST",this.dataTable.ajax.reload()},WPGMZA.DataTable.prototype.getDataTableElement=function(){return $(this.element).find("table")},WPGMZA.DataTable.prototype.onAJAXRequest=function(data,settings){var params={phpClass:this.phpClass},attr=$(this.element).attr("data-wpgmza-ajax-parameters");return attr&&$.extend(params,JSON.parse(attr)),$.extend(data,params)},WPGMZA.DataTable.prototype.onDataTableAjaxRequest=function(data,callback,settings){var self=this,element=this.element,route=$(element).attr("data-wpgmza-rest-api-route"),params=this.onAJAXRequest(data,settings),draw=params.draw;if(delete params.draw,!route)throw new Error("No data-wpgmza-rest-api-route attribute specified");var options={method:"POST",useCompressedPathVariable:!0,data:params,dataType:"json",cache:!this.preventCaching,beforeSend:function(xhr){xhr.setRequestHeader("X-DataTables-Draw",draw)},success:function(response,status,xhr){response.draw=draw,self.lastResponse=response,callback(response)}};return WPGMZA.restAPI.call(route,options)},WPGMZA.DataTable.prototype.getDataTableSettings=function(){var self=this,element=this.element,options={};$(element).attr("data-wpgmza-datatable-options")&&(options=JSON.parse($(element).attr("data-wpgmza-datatable-options"))),options.deferLoading=!0,options.processing=!0,options.serverSide=!0,options.ajax=function(data,callback,settings){return WPGMZA.DataTable.prototype.onDataTableAjaxRequest.apply(self,arguments)},WPGMZA.AdvancedTableDataTable&&this instanceof WPGMZA.AdvancedTableDataTable&&WPGMZA.settings.wpgmza_default_items&&(options.iDisplayLength=parseInt(WPGMZA.settings.wpgmza_default_items)),options.aLengthMenu=[[5,10,25,50,100,-1],["5","10","25","50","100",WPGMZA.localized_strings.all]];var languageURL=this.getLanguageURL();return languageURL&&(options.language={url:languageURL}),options},WPGMZA.DataTable.prototype.getLanguageURL=function(){if(!WPGMZA.locale)return null;var languageURL;switch(WPGMZA.locale.substr(0,2)){case"af":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Afrikaans.json";break;case"sq":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Albanian.json";break;case"am":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Amharic.json";break;case"ar":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Arabic.json";break;case"hy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Armenian.json";break;case"az":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Azerbaijan.json";break;case"bn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bangla.json";break;case"eu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Basque.json";break;case"be":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Belarusian.json";break;case"bg":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bulgarian.json";break;case"ca":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Catalan.json";break;case"zh":languageURL="zh_TW"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese-traditional.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese.json";break;case"hr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Croatian.json";break;case"cs":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Czech.json";break;case"da":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Danish.json";break;case"nl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Dutch.json";break;case"et":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Estonian.json";break;case"fi":languageURL=WPGMZA.locale.match(/^fil/)?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Filipino.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Finnish.json";break;case"fr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/French.json";break;case"gl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Galician.json";break;case"ka":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Georgian.json";break;case"de":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/German.json";break;case"el":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Greek.json";break;case"gu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Gujarati.json";break;case"he":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hebrew.json";break;case"hi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hindi.json";break;case"hu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hungarian.json";break;case"is":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Icelandic.json";break;case"id":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Indonesian.json";break;case"ga":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Irish.json";break;case"it":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Italian.json";break;case"ja":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Japanese.json";break;case"kk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kazakh.json";break;case"ko":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Korean.json";break;case"ky":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kyrgyz.json";break;case"lv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Latvian.json";break;case"lt":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Lithuanian.json";break;case"mk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Macedonian.json";break;case"ml":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Malay.json";break;case"mn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Mongolian.json";break;case"ne":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Nepali.json";break;case"nb":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Bokmal.json";break;case"nn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Nynorsk.json";break;case"ps":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Pashto.json";break;case"fa":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Persian.json";break;case"pl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Polish.json";break;case"pt":languageURL="pt_BR"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese-Brasil.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese.json";break;case"ro":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Romanian.json";break;case"ru":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Russian.json";break;case"sr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Serbian.json";break;case"si":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Sinhala.json";break;case"sk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovak.json";break;case"sl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovenian.json";break;case"es":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Spanish.json";break;case"sw":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swahili.json";break;case"sv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swedish.json";break;case"ta":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Tamil.json";break;case"te":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/telugu.json";break;case"th":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Thai.json";break;case"tr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Turkish.json";break;case"uk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Ukrainian.json";break;case"ur":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Urdu.json";break;case"uz":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Uzbek.json";break;case"vi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Vietnamese.json";break;case"cy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Welsh.json"}return languageURL},WPGMZA.DataTable.prototype.onAJAXResponse=function(response){},WPGMZA.DataTable.prototype.reload=function(){this.dataTable.ajax.reload(null,!1)}}),jQuery(function($){WPGMZA.AdminMarkerDataTable=function(element){var self=this;this.preventCaching=!0,WPGMZA.DataTable.call(this,element),$(element).on("click","[data-delete-marker-id]",function(event){self.onDeleteMarker(event)}),$(element).find(".wpgmza.select_all_markers").on("click",function(event){self.onSelectAll(event)}),$(element).find(".wpgmza.bulk_delete").on("click",function(event){self.onBulkDelete(event)})},WPGMZA.AdminMarkerDataTable.prototype=Object.create(WPGMZA.DataTable.prototype),WPGMZA.AdminMarkerDataTable.prototype.constructor=WPGMZA.AdminMarkerDataTable,WPGMZA.AdminMarkerDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaMarkerData=meta},options},WPGMZA.AdminMarkerDataTable.prototype.onEditMarker=function(event){WPGMZA.animatedScroll("#wpgmaps_tabs_markers")},WPGMZA.AdminMarkerDataTable.prototype.onDeleteMarker=function(event){var self=this,id=$(event.currentTarget).attr("data-delete-marker-id"),data={action:"delete_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:id};$.post(ajaxurl,data,function(response){WPGMZA.mapEditPage.map.removeMarkerByID(id),self.reload()})},WPGMZA.AdminMarkerDataTable.prototype.onApproveMarker=function(event){var cur_id=$(this).attr("id"),data={action:"approve_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:cur_id};$.post(ajaxurl,data,function(response){wpgmza_InitMap(),wpgmza_reinitialisetbl()})},WPGMZA.AdminMarkerDataTable.prototype.onSelectAll=function(event){$(this.element).find("input[name='mark']").prop("checked",!0)},WPGMZA.AdminMarkerDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[],map=WPGMZA.maps[0];$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaMarkerData.id)}),ids.forEach(function(marker_id){var marker=map.getMarkerByID(marker_id);marker&&map.removeMarker(marker)}),WPGMZA.restAPI.call("/markers/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},$(document).ready(function(event){$("[data-wpgmza-admin-marker-datatable]").each(function(index,el){WPGMZA.adminMarkerDataTable=new WPGMZA.AdminMarkerDataTable(el)})})});
languages/dynamic/dummy.php DELETED
@@ -1,7732 +0,0 @@
1
- <?php
2
-
3
- __('wpgmza_gdpr_default_notice', 'wp-google-maps');
4
- __('wpgmza_gdpr_company_name', 'wp-google-maps');
5
- __('wpgmza_gdpr_retention_purpose', 'wp-google-maps');
6
- __('灣仔皇后大道東 200 號 利東街地下 G22-23 號及一樓F22A號<br />Shop No. G22-23 On G/Floor And F22A On 1/F of Lee Tung Avenue, 200 Queen\'s Road East, Wanchai, HK', 'wp-google-maps');
7
- __('https://www.facebook.com/bistroseoul/,https://www.instagram.com/bistroseoulhk/,http://www.futurebrightgroup.com.mo/chi/meal-shop.php?shop_id=44&loc_id=2&type_id=6', 'wp-google-maps');
8
- __('http://greenmonday.onedigitalhk2.com/wp-content/plugins/wp-google-maps/images/spotlight-poi2.png', 'wp-google-maps');
9
- __('Bistro Seoul 首首.韓式小館', 'wp-google-maps');
10
- __('Via Roma, 17 42019 Scandiano RE', 'wp-google-maps');
11
- __('Comune di Scandiano - Centro Giovani', 'wp-google-maps');
12
- __('Via San Giuseppe, 7 42100 Reggio Emilia RE', 'wp-google-maps');
13
- __('Hotel Reggio - ITER', 'wp-google-maps');
14
- __('VIA GIUSEPPE SCIUTI, 102/C 90144 Palermo PA', 'wp-google-maps');
15
- __('Distributore di Palermo Via Sciuti', 'wp-google-maps');
16
- __('Via Bornata 25123 Brescia BS', 'wp-google-maps');
17
- __('Distributore di Brescia_Via Bornata', 'wp-google-maps');
18
- __('S.S. 16 Km 888+013 72012 Carovigno BR', 'wp-google-maps');
19
- __('Distributore di Carovigno_S.S. 16', 'wp-google-maps');
20
- __('Piazza Dalla Chiesa 81049 Ailano CE', 'wp-google-maps');
21
- __('Comune di Mignano Monte Lungo - Stazione FS-Piazza Dalla Chiesa', 'wp-google-maps');
22
- __('Viale Beverora, 57-59 29121 Piacenza PC', 'wp-google-maps');
23
- __('Piacenza WiFi - Uffici comunali', 'wp-google-maps');
24
- __('Via G. Di Vittorio, 6 42033 Carpineti RE', 'wp-google-maps');
25
- __('Parco Matilde di Carpineti', 'wp-google-maps');
26
- __('Tangenziale Ovest, km 19 20090 Assago MI', 'wp-google-maps');
27
- __('Holiday Inn - Assago - hotel', 'wp-google-maps');
28
- __('Galleria Cavour 1/a 42121 Reggio Emilia RE', 'wp-google-maps');
29
- __('Reggio WiFi - Gelateria 2000', 'wp-google-maps');
30
- __('Piazzale Farini, 14 48121 Ravenna RA', 'wp-google-maps');
31
- __('Chef Express - Ravenna FS', 'wp-google-maps');
32
- __('Via di Pettorano 3 73100 Lecce LE', 'wp-google-maps');
33
- __('Lecce WiFi - Scipione Ammirato', 'wp-google-maps');
34
- __('Via della Centralinista 3 40138 Bologna BO', 'wp-google-maps');
35
- __('pfSense Lepida', 'wp-google-maps');
36
- __('piazza Ravenna, 3 16033 Lavagna GE', 'wp-google-maps');
37
- __('Liguria WiFi - Comune di Lavagna - Biblioteca Civica', 'wp-google-maps');
38
- __('Via Don Minzoni 43010 Fontevivo PR', 'wp-google-maps');
39
- __('LTT - Palestra Ponte Taro Fontevivo', 'wp-google-maps');
40
- __('Via Luigi Einaudi 27043 Broni PV', 'wp-google-maps');
41
- __('Roadhouse Grill - Broni', 'wp-google-maps');
42
- __('18, rue Jacques Réattu 13275 Valbonne Sophia Antipolis 06', 'wp-google-maps');
43
- __('Autogrill - France HQ', 'wp-google-maps');
44
- __('Filippo Turati S.S. 35 27028 Pavia PV', 'wp-google-maps');
45
- __('Roadhouse Grill - Pavia', 'wp-google-maps');
46
- __('Piazza Cappellini 19017 Riomaggiore SP', 'wp-google-maps');
47
- __('Liguria WiFi - Comune di Riomaggiore - Manarola', 'wp-google-maps');
48
- __('P.le Guglielmo Marconi, 28 29121 Piacenza PC', 'wp-google-maps');
49
- __('Chef Express - Piacenza', 'wp-google-maps');
50
- __('Piazza Nicoloso 16036 Recco GE', 'wp-google-maps');
51
- __('Liguria WiFi - Comune di Recco - Piazza Nicoloso', 'wp-google-maps');
52
- __('P.za della Vittoria 29 17014 Cairo Montenotte SV', 'wp-google-maps');
53
- __('Liguria WiFi - Comune di Cairo Montenotte - Biblioteca', 'wp-google-maps');
54
- __('Piazza Umberti I, 1 18100 Prelà IM', 'wp-google-maps');
55
- __('Liguria WiFi - Comune di Prelà - Piazza Umberto I', 'wp-google-maps');
56
- __('via Rubattino Raffaele, 94 20157 Milano MI', 'wp-google-maps');
57
- __('Centro Porsche Milano Est', 'wp-google-maps');
58
- __('via Zanguidi,2 43124 Parma PR', 'wp-google-maps');
59
- __('PALESTRA FIT LAB A.S.D.', 'wp-google-maps');
60
- __('Via Pacini 34 20134 Milano MI', 'wp-google-maps');
61
- __('Lavanderia Sel Services', 'wp-google-maps');
62
- __('via del poggetto 42 51018 Pieve a Nievole PT', 'wp-google-maps');
63
- __('IMMOBILIARE VILLA ROMANTICA', 'wp-google-maps');
64
- __('Via Giovanni da Sovico, 90 20845 Sovico MB', 'wp-google-maps');
65
- __('Unes - sede di Sovico - PDV022', 'wp-google-maps');
66
- __('Via Armando Diaz, 2 16121 Genova GE', 'wp-google-maps');
67
- __('comune di Genova - incrocio Via Armando Diaz', 'wp-google-maps');
68
- __('Piazza Senarega 16123 Genova GE', 'wp-google-maps');
69
- __('comune di Genova - Piazza delle Vigne', 'wp-google-maps');
70
- __('Via Braida, 35 17055 Toirano SV', 'wp-google-maps');
71
- __('Liguria WiFi - Comune di Toirano - Via Braida', 'wp-google-maps');
72
- __('PIAZZA DEL POPOLO, 28 6112x Pesaro PU', 'wp-google-maps');
73
- __('Poste - Ufficio Postale - PESARO CENTRO - PU-47001', 'wp-google-maps');
74
- __('Via XVI Marzo, 1 35020 Albignasego PD', 'wp-google-maps');
75
- __('Poste - Ufficio Postale - ALBIGNASEGO - PD-42005', 'wp-google-maps');
76
- __('VIA VITTORIO VENETO, 41/57/59 87100 Cosenza CS', 'wp-google-maps');
77
- __('Poste - Ufficio Postale - COSENZA VENETO - CS-21001', 'wp-google-maps');
78
- __('PIAZZA DEGLI ARTISTI, 27 801xx Napoli NA', 'wp-google-maps');
79
- __('Poste - Ufficio Postale - NAPOLI VOMERO - NA-40387', 'wp-google-maps');
80
- __('PIAZZA S. ANTONIO ABATE, 1 80035 Nola NA', 'wp-google-maps');
81
- __('Poste - Ufficio Postale - NOLA - NA-40230', 'wp-google-maps');
82
- __('ROMA, S.N.C., VIA 98051 Barcellona Pozzo di Gotto ME', 'wp-google-maps');
83
- __('Poste - Ufficio Postale - BARCELLONA POZZO DI GOTTO - ME-37009', 'wp-google-maps');
84
- __('via luigi canonica 64 20154 Milano MI', 'wp-google-maps');
85
- __('SHAKER SAS', 'wp-google-maps');
86
- __('piazza Arditi 31020 Sernaglia della Battaglia TV', 'wp-google-maps');
87
- __('Comune di Sernaglia - localita Falze di Piave', 'wp-google-maps');
88
- __('via Santa Chiara, 19 10122 Torino TO', 'wp-google-maps');
89
- __('SGSS - Torino', 'wp-google-maps');
90
- __('SP 28 19031 Ameglia SP', 'wp-google-maps');
91
- __('Liguria WiFi - Comune di Ameglia - Giardini Brivio', 'wp-google-maps');
92
- __('PIAZZA DANTE, 9 00185 Roma RM', 'wp-google-maps');
93
- __('Poste - Ufficio Postale - ROMA PIAZZA DANTE - RM-55361', 'wp-google-maps');
94
- __('VIA MONTE CERVIALTO, 125 00139 Roma RM', 'wp-google-maps');
95
- __('Poste - Ufficio Postale - ROMA 128 - RM-55837', 'wp-google-maps');
96
- __('VIA SCIADONNA, 24 00044 Frascati RM', 'wp-google-maps');
97
- __('Poste - Ufficio Postale - FRASCATI - RM-55092', 'wp-google-maps');
98
- __('VIA RISORGIMENTO, 588/A 51015 Monsummano Terme PT', 'wp-google-maps');
99
- __('Poste - Ufficio Postale - MONSUMMANO TERME - PT-85150', 'wp-google-maps');
100
- __('VIA TRIESTE, 84 33052 Cervignano del Friuli UD', 'wp-google-maps');
101
- __('Poste - Ufficio Postale - CERVIGNANO DEL FRIULI - UD-66233', 'wp-google-maps');
102
- __('PIAZZA DOMENICO CLEMENTE, 2 83012 Cervinara AV', 'wp-google-maps');
103
- __('Poste - Ufficio Postale - CERVINARA - AV-6030', 'wp-google-maps');
104
- __('VIA DANTE, 12 80040 Volla NA', 'wp-google-maps');
105
- __('Poste - Ufficio Postale - VOLLA - NA-40363', 'wp-google-maps');
106
- __('VIA LOGUDORO, 9 09127 Cagliari CA', 'wp-google-maps');
107
- __('Poste - Ufficio Postale - CAGLIARI 8 - CA-13304', 'wp-google-maps');
108
- __('PIAZZA MATTEOTTI, 1 04022 Fondi LT', 'wp-google-maps');
109
- __('Poste - Ufficio Postale - FONDI - PU-47024', 'wp-google-maps');
110
- __('VIA PIACENZA, 185/ROSSO 16138 Genova GE', 'wp-google-maps');
111
- __('Poste - Ufficio Postale - GENOVA 18 - GE-28113', 'wp-google-maps');
112
- __('VIA DELLA MASSIMILLA, 75 00166 Roma RM', 'wp-google-maps');
113
- __('Poste - Ufficio Postale - ROMA 140 - RM-55936', 'wp-google-maps');
114
- __('VIA MACELLO, 50 95037 San Giovanni la Punta CT', 'wp-google-maps');
115
- __('Poste - Ufficio Postale - SAN GIOVANNI LA PUNTA - CT-17075', 'wp-google-maps');
116
- __('Piazza Calipari 43015 Noceto PR', 'wp-google-maps');
117
- __('CONAD CENTRO NORD - Noceto', 'wp-google-maps');
118
- __('Viale Lombardia, 22 21047 Saronno VA', 'wp-google-maps');
119
- __('Autotorino - sede Saronno', 'wp-google-maps');
120
- __('Piazza Gastaldi 16036 Recco GE', 'wp-google-maps');
121
- __('Liguria WiFi - Comune di Recco - Piazza Gastaldi', 'wp-google-maps');
122
- __('via Veneto, 164 33100 Udine UD', 'wp-google-maps');
123
- __('Udine WiFi - 5° Circ - Auditorium', 'wp-google-maps');
124
- __('Via San Bartolomeo 73 18100 Imperia IM', 'wp-google-maps');
125
- __('L\'electrique', 'wp-google-maps');
126
- __('Via G. Falcone, Bibbiano 42021 Bibbiano RE', 'wp-google-maps');
127
- __('Caligoo FG', 'wp-google-maps');
128
- __('CORSO RESISTENZA, 207 80011 Acerra NA', 'wp-google-maps');
129
- __('Poste - Ufficio Postale - ACERRA 2 - NA-40435', 'wp-google-maps');
130
- __('VIA SANTISSIMO CROCIFISSO, 100 95024 Acireale CT', 'wp-google-maps');
131
- __('Poste - Ufficio Postale - ACIREALE 1 - CT-17144', 'wp-google-maps');
132
- __('CORSO CANALE, 12 12051 Alba CN', 'wp-google-maps');
133
- __('Poste - Ufficio Postale - ALBA 3 CENTRO OPERATIVO - CN-23143', 'wp-google-maps');
134
- __('VIA FRANCO SCATAGLINI, 12 60131 Ancona AN', 'wp-google-maps');
135
- __('Poste - Ufficio Postale - ANCONA 10 - AN-02148', 'wp-google-maps');
136
- __('VIA TRANI, 52 76123 Andria BT', 'wp-google-maps');
137
- __('Poste - Ufficio Postale - ANDRIA 4 - BT-07135', 'wp-google-maps');
138
- __('VIALE COSTA SMERALDA, 159 07021 Arzachena OT', 'wp-google-maps');
139
- __('Poste - Ufficio Postale - ARZACHENA - SS-58085', 'wp-google-maps');
140
- __('VIA GAETANO POSTIGLIONE, 30 70126 Bari BA', 'wp-google-maps');
141
- __('Poste - Ufficio Postale - BARI 6 - BA-07011', 'wp-google-maps');
142
- __('VIA GIOVANNI ANTONIO PISCHEDDA, 1 08013 Bosa OR', 'wp-google-maps');
143
- __('Poste - Ufficio Postale - BOSA - OR-80117', 'wp-google-maps');
144
- __('VIA CARDINAL PRISCO, 22 80042 Boscotrecase NA', 'wp-google-maps');
145
- __('Poste - Ufficio Postale - BOSCOTRECASE - NA-40011', 'wp-google-maps');
146
- __('VIA SAN ROCCO, 17 20874 Busnago MB', 'wp-google-maps');
147
- __('Poste - Ufficio Postale - BUSNAGO - MB-38031', 'wp-google-maps');
148
- __('VIALE DEI PIOPPI, 47 24033 Calusco d\'Adda BG', 'wp-google-maps');
149
- __('Poste - Ufficio Postale - CALUSCO D\'ADDA - BG-10027', 'wp-google-maps');
150
- __('VIA GIANNINA MILLI, 17 64020 Castellalto TE', 'wp-google-maps');
151
- __('Poste - Ufficio Postale - CASTELNUOVO VOMANO - TE-62183', 'wp-google-maps');
152
- __('PIAZZALE REPUBBLICA, 5 46043 Castiglione delle Stiviere MN', 'wp-google-maps');
153
- __('Poste - Ufficio Postale - CASTIGLIONE DELLE STIVIERE - MN-35025', 'wp-google-maps');
154
- __('VIA CAGLIARI, 103/105 95127 Catania CT', 'wp-google-maps');
155
- __('Poste - Ufficio Postale - CATANIA 28 - CT-17187', 'wp-google-maps');
156
- __('VIA DEL PINO SOLITARIO, 16 09030 Elmas CA', 'wp-google-maps');
157
- __('Poste - Ufficio Postale - ELMAS - CA-13046', 'wp-google-maps');
158
- __('VIA SAN GENNARO, 39 81100 Caserta CE', 'wp-google-maps');
159
- __('Poste - Ufficio Postale - FALCIANO DI CASERTA - CE-16049', 'wp-google-maps');
160
- __('VIA NOMENTANA, 609 00013 Fonte Nuova RM', 'wp-google-maps');
161
- __('Poste - Ufficio Postale - FONTE NUOVA - RM-55838', 'wp-google-maps');
162
- __('VIA ZAMPESCHI, 47 47122 Forlì FC', 'wp-google-maps');
163
- __('Poste - Ufficio Postale - FORLI\' 8 - FC-27037', 'wp-google-maps');
164
- __('PIAZZA SAN FRANCESCO D\'ASSISI, SNC 95014 Giarre CT', 'wp-google-maps');
165
- __('Poste - Ufficio Postale - GIARRE - CT-17036', 'wp-google-maps');
166
- __('VIA PORRU BONELLI, 160 09035 Gonnosfanadiga VS', 'wp-google-maps');
167
- __('Poste - Ufficio Postale - GONNOSFANADIGA - VS-13062', 'wp-google-maps');
168
- __('VIA CASTELLAMMARE, 73 80054 Gragnano NA', 'wp-google-maps');
169
- __('Poste - Ufficio Postale - GRAGNANO 1 - NA-40421', 'wp-google-maps');
170
- __('VIA INCORONATA, 220 66054 Vasto CH', 'wp-google-maps');
171
- __('Poste - Ufficio Postale - INCORONATA DI VASTO - CH-19181', 'wp-google-maps');
172
- __('CORSO GIUSEPPE GARIBALDI, 19 86170 Isernia IS', 'wp-google-maps');
173
- __('Poste - Ufficio Postale - ISERNIA 2 - IS-71103', 'wp-google-maps');
174
- __('STRADA STATALE 17, SNC 67100 L\'Aquila AQ', 'wp-google-maps');
175
- __('Poste - Ufficio Postale - L\'AQUILA 1 - AQ-03218', 'wp-google-maps');
176
- __('VIA CAVOUR, 20 72022 Latiano BR', 'wp-google-maps');
177
- __('Poste - Ufficio Postale - LATIANO - BR-87115', 'wp-google-maps');
178
- __('VIA AQUILEIA, 100 30016 Jesolo VE', 'wp-google-maps');
179
- __('Poste - Ufficio Postale - LIDO DI JESOLO - VE-67104', 'wp-google-maps');
180
- __('VIA STAZIONE, 10 37060 Sona VR', 'wp-google-maps');
181
- __('Poste - Ufficio Postale - LUGAGNANO - VR-68194', 'wp-google-maps');
182
- __('VIA ALESSANDRO VOLTA, 10 22075 Lurate Caccivio CO', 'wp-google-maps');
183
- __('Poste - Ufficio Postale - LURATE CACCIVIO - CO-20123', 'wp-google-maps');
184
- __('VIA UBERTO BONINO, SNC 98124 Messina ME', 'wp-google-maps');
185
- __('Poste - Ufficio Postale - MESSINA 13 - ME-37235', 'wp-google-maps');
186
- __('VIA PAOLO SEGNERI, 3 20147 Milano MI', 'wp-google-maps');
187
- __('Poste - Ufficio Postale - MILANO 60 - MI-38436', 'wp-google-maps');
188
- __('VIA ELIA RAINUSSO, 168 41124 Modena MO', 'wp-google-maps');
189
- __('Poste - Ufficio Postale - MODENA 2 - MO-39041', 'wp-google-maps');
190
- __('VIA EDUARDO SUAREZ, 7 80129 Napoli NA', 'wp-google-maps');
191
- __('Poste - Ufficio Postale - NAPOLI 38 - NA-40082', 'wp-google-maps');
192
- __('VIA SANTORELLI, 75 80035 Nola NA', 'wp-google-maps');
193
- __('Poste - Ufficio Postale - NOLA 1 - NA-40406', 'wp-google-maps');
194
- __('VIA CESARE BECCARIA, 2/A 10060 Torino TO', 'wp-google-maps');
195
- __('Poste - Ufficio Postale - NONE - TO-63202', 'wp-google-maps');
196
- __('VIA VENEZIA, 25/F 37019 Peschiera del Garda VR', 'wp-google-maps');
197
- __('Poste - Ufficio Postale - PESCHIERA DEL GARDA - VR-68074', 'wp-google-maps');
198
- __('VIA ISONZO, 15 06135 Perugia PG', 'wp-google-maps');
199
- __('Poste - Ufficio Postale - PONTE VALLECEPPI - PG-46171', 'wp-google-maps');
200
- __('VIA ANTONIO GRAMSCI, 19 31022 Preganziol TV', 'wp-google-maps');
201
- __('Poste - Ufficio Postale - PREGANZIOL - TV-65079', 'wp-google-maps');
202
- __('VIA FIUME MONTONE ABBANDONATO, 88/B 48124 Ravenna RA', 'wp-google-maps');
203
- __('Poste - Ufficio Postale - RAVENNA 7 - RA-52102', 'wp-google-maps');
204
- __('VIA CASSIA, 1277 00189 Roma RM', 'wp-google-maps');
205
- __('Poste - Ufficio Postale - ROMA 171 - RM-55827', 'wp-google-maps');
206
- __('PIAZZA STERI, 209 87067 Rossano CS', 'wp-google-maps');
207
- __('Poste - Ufficio Postale - ROSSANO - CS-21124', 'wp-google-maps');
208
- __('LARGO GIULIO CESARE, SNC 04016 Sabaudia LT', 'wp-google-maps');
209
- __('Poste - Ufficio Postale - SABAUDIA - LT-96147', 'wp-google-maps');
210
- __('VIA MAESTRO PETRONCELLO, 11 84126 Salerno SA', 'wp-google-maps');
211
- __('Poste - Ufficio Postale - SALERNO 13 - SA-57337', 'wp-google-maps');
212
- __('VIA VITTORIO VENETO, 35 21017 Samarate VA', 'wp-google-maps');
213
- __('Poste - Ufficio Postale - SAMARATE - VA-89200', 'wp-google-maps');
214
- __('VIA ROMA, 11 31020 San Vendemiano TV', 'wp-google-maps');
215
- __('Poste - Ufficio Postale - SAN VENDEMIANO - TV-65134', 'wp-google-maps');
216
- __('VIA VENTI SETTEMBRE, 2 30038 Spinea VE', 'wp-google-maps');
217
- __('Poste - Ufficio Postale - SPINEA - VE-67052', 'wp-google-maps');
218
- __('VIA NICCOLO\' MACHIAVELLI, 41/D 74123 Taranto TA', 'wp-google-maps');
219
- __('Poste - Ufficio Postale - TARANTO 7 - TA-79044', 'wp-google-maps');
220
- __('PIAZZA MAZZINI, 1 67059 Trasacco AQ', 'wp-google-maps');
221
- __('Poste - Ufficio Postale - TRASACCO - AQ-03170', 'wp-google-maps');
222
- __('VIA ANTONIO MARIA CERIANI, 9 21040 Uboldo VA', 'wp-google-maps');
223
- __('Poste - Ufficio Postale - UBOLDO - VA-89217', 'wp-google-maps');
224
- __('VIA DON ENRICO GIRARDI, 9 37137 Verona VR', 'wp-google-maps');
225
- __('Poste - Ufficio Postale - VERONA 15 - VR-68125', 'wp-google-maps');
226
- __('VIA ADOLFO GIURIATO, 60 36100 Vicenza VI', 'wp-google-maps');
227
- __('Poste - Ufficio Postale - VICENZA 5 - VI-69188', 'wp-google-maps');
228
- __('VIA POSTA, 7 25079 Vobarno BS', 'wp-google-maps');
229
- __('Poste - Ufficio Postale - VOBARNO - BS-12217', 'wp-google-maps');
230
- __('Cannaregio 3547, Fondamenta Misericordia 30123 Venezia VE', 'wp-google-maps');
231
- __('Esu Venezia', 'wp-google-maps');
232
- __('VIA LEONARDO ZINGARELLI, 1 71018 Vico del Gargano FG', 'wp-google-maps');
233
- __('Poste - Ufficio Postale - VICO DEL GARGANO - FG-26057', 'wp-google-maps');
234
- __('Via Roma, 28 17034 Castelvecchio di Rocca Barbena SV', 'wp-google-maps');
235
- __('Liguria WiFi - Comune di Castelvecchio di Rocca Barbena - Via Roma', 'wp-google-maps');
236
- __('Via del Corso, 226 00187 Roma RM', 'wp-google-maps');
237
- __('ISP - filiale Roma Via del Corso', 'wp-google-maps');
238
- __('Piazza Aldo Moro, 54 70010 Casamassima BA', 'wp-google-maps');
239
- __('ISP - filiale Casamassima Piazza Aldo Moro', 'wp-google-maps');
240
- __('VIA PRINCIPE DI NAPOLI, 9 00062 Bracciano RM', 'wp-google-maps');
241
- __('DI DI PIETRO', 'wp-google-maps');
242
- __('VIALE J.F. KENNEDY 88068 Soverato CZ', 'wp-google-maps');
243
- __('CENTOFIORI S.R.L.', 'wp-google-maps');
244
- __('Piazza Matteotti 30020 Fossalta di Piave VE', 'wp-google-maps');
245
- __('WiFi in Piazza - Fossalta di Piave - Piazza Matteotti', 'wp-google-maps');
246
- __('PIAZZA MATTEOTTI, 8 63063 Carassai AP', 'wp-google-maps');
247
- __('Cultura Smart - M033 - MUSEO CIVICO ARCHEOLOGICO - CARASSAI', 'wp-google-maps');
248
- __('VIA BRANCALEONI, 6 61046 Piobbico PU', 'wp-google-maps');
249
- __('Cultura Smart - M130 - MUSEO CIVICO STATALE', 'wp-google-maps');
250
- __('via pastenelle 2 80000 Fisciano SA', 'wp-google-maps');
251
- __('GECOTECH', 'wp-google-maps');
252
- __('VIA MOSCA, 33 00069 Trevignano Romano RM', 'wp-google-maps');
253
- __('Poste - Ufficio Postale - TREVIGNANO ROMANO - RM-55265', 'wp-google-maps');
254
- __('VIA DELLE MURA SENESI, SNC 02046 Magliano Sabina RI', 'wp-google-maps');
255
- __('Poste - Ufficio Postale - MAGLIANO SABINO - RI-94155', 'wp-google-maps');
256
- __('CIRCONVALLAZIONE JOHN FITZGERALD KENNEDY, 2 53014 Monteroni d\'Arbia SI', 'wp-google-maps');
257
- __('Poste - Ufficio Postale - MONTERONI D\'ARBIA - SI-59043', 'wp-google-maps');
258
- __('VIA LUIGI BRENTI, 9 40057 Granarolo dell\'Emilia BO', 'wp-google-maps');
259
- __('Poste - Ufficio Postale - GRANAROLO DELL\'EMILIA - BO-11056', 'wp-google-maps');
260
- __('VIA VENTICINQUE APRILE, SNC 61011 Gabicce Mare PU', 'wp-google-maps');
261
- __('Poste - Ufficio Postale - GABICCE MARE - PU-47029', 'wp-google-maps');
262
- __('VIA MAGLIONI, 3 48013 Brisighella RA', 'wp-google-maps');
263
- __('Poste - Ufficio Postale - BRISIGHELLA - RA-52008', 'wp-google-maps');
264
- __('VIA DANTE ALIGHIERI, 21 21050 Gorla Maggiore VA', 'wp-google-maps');
265
- __('Poste - Ufficio Postale - GORLA MAGGIORE - VA-89171', 'wp-google-maps');
266
- __('VIA ROMA, 23 35034 Lozzo Atestino PD', 'wp-google-maps');
267
- __('Poste - Ufficio Postale - LOZZO ATESTINO - PD-42045', 'wp-google-maps');
268
- __('VIA GUGLIELMO OBERDAN, 7/A 45035 Castelmassa RO', 'wp-google-maps');
269
- __('Poste - Ufficio Postale - CASTELMASSA - RO-56036', 'wp-google-maps');
270
- __('VIA ENRICO TOTI, 45 16035 Rapallo GE', 'wp-google-maps');
271
- __('Poste - Ufficio Postale - RAPALLO 2 - GE-28375', 'wp-google-maps');
272
- __('VIA ISIDE VIANA, 50 13878 Candelo BI', 'wp-google-maps');
273
- __('Poste - Ufficio Postale - CANDELO - BI-90134', 'wp-google-maps');
274
- __('LARGO FULVIO PAGLIARO, 1 13043 Cigliano VC', 'wp-google-maps');
275
- __('Poste - Ufficio Postale - CIGLIANO - VC-90146', 'wp-google-maps');
276
- __('PIAZZALE MONTE BIANCO, 5 11013 Courmayeur AO', 'wp-google-maps');
277
- __('Poste - Ufficio Postale - COURMAYEUR - AO-98122', 'wp-google-maps');
278
- __('VIA STATALE, 93 41045 Montefiorino MO', 'wp-google-maps');
279
- __('Poste - Ufficio Postale - CASOLA - NA-40286', 'wp-google-maps');
280
- __('VIA DEGLI OLEANDRI, 5 86039 Termoli CB', 'wp-google-maps');
281
- __('Poste - Ufficio Postale - TERMOLI 2 - CB-15190', 'wp-google-maps');
282
- __('VIA VITTORIO VENETO, 114 85051 Bella PZ', 'wp-google-maps');
283
- __('Poste - Ufficio Postale - BELLA - PZ-51017', 'wp-google-maps');
284
- __('VIA TURI, SNC 70013 Castellana Grotte BA', 'wp-google-maps');
285
- __('Poste - Ufficio Postale - CASTELLANA GROTTE 1 - BA-07157', 'wp-google-maps');
286
- __('VIALE CANNATELLO, 25 92100 Agrigento AG', 'wp-google-maps');
287
- __('Poste - Ufficio Postale - AGRIGENTO 11 - AG-29090', 'wp-google-maps');
288
- __('VIA DON NINO RUSSOTTI, SNC 98034 Francavilla di Sicilia ME', 'wp-google-maps');
289
- __('Poste - Ufficio Postale - FRANCAVILLA DI SICILIA - ME-37038', 'wp-google-maps');
290
- __('VIA SALVATORE DAVI\', 62 90030 Altofonte PA', 'wp-google-maps');
291
- __('Poste - Ufficio Postale - ALTOFONTE - PA-43078', 'wp-google-maps');
292
- __('VIA GIUDEA BASSA, 36 94010 Calascibetta EN', 'wp-google-maps');
293
- __('Poste - Ufficio Postale - CALASCIBETTA - EN-83111', 'wp-google-maps');
294
- __('CORSO CORNELIO TACITO 49 05100 Terni TR', 'wp-google-maps');
295
- __('ISP - CO WORKER - filiale Terni Corso Tacito', 'wp-google-maps');
296
- __('VIA STAZIONE, 20 39021 Laces BZ', 'wp-google-maps');
297
- __('Poste - Ufficio Postale - LACES - BZ-88062', 'wp-google-maps');
298
- __('VIA PRINCIPALE, 80 39010 Tesimo BZ', 'wp-google-maps');
299
- __('Poste - Ufficio Postale - TESIMO - BZ-88170', 'wp-google-maps');
300
- __('Via Guicciardini 4/A 51100 Pistoia PT', 'wp-google-maps');
301
- __('Roadhouse Grill - Pistoia', 'wp-google-maps');
302
- __('Loc. Carpeneto, 65, 16020 Fascia GE', 'wp-google-maps');
303
- __('Liguria WiFi - Comune di Fascia - Carpeneto', 'wp-google-maps');
304
- __('Via S. Michele Campagna 43036 Fidenza PR', 'wp-google-maps');
305
- __('Roadhouse Grill - Fidenza', 'wp-google-maps');
306
- __('Via Novi, 20/A 15069 Serravalle Scrivia AL', 'wp-google-maps');
307
- __('McDonald\'s - 449 - Serravalle Scrivia Outlet', 'wp-google-maps');
308
- __('Via XX Settembre 205r/207r/209 r e n. 33/26/28 16121 Genova GE', 'wp-google-maps');
309
- __('McDonald\'s - 2126 - Genova XX Settembre', 'wp-google-maps');
310
- __('Via Consiglio 115 - Contrada Cimino 74121 Taranto TA', 'wp-google-maps');
311
- __('McDonald\'s - 110 - Taranto', 'wp-google-maps');
312
- __('V.le Italia, 31Via Fratelli Ugoni snc 25126 Brescia BS', 'wp-google-maps');
313
- __('McDonald\'s - 406 - Brescia Freccia Rossa', 'wp-google-maps');
314
- __('Via Luigi Einaudi RONCADELLE (BS) 25030 Roncadelle BS', 'wp-google-maps');
315
- __('McDonald\'s - 811 - Roncadelle mall', 'wp-google-maps');
316
- __('c/o C.C. Le Fornaci - Via Torino ang. Via Falcone 10092 Beinasco TO', 'wp-google-maps');
317
- __('McDonald\'s - 287 - Beinasco', 'wp-google-maps');
318
- __('VIA DI BOCCEA 561 - ROMA 00166 Roma RM', 'wp-google-maps');
319
- __('McDonald\'s - 747 - ROMA CASALOTTI BOCCEA', 'wp-google-maps');
320
- __('c/o AdS Saronno - Via Varese ang. Via 1° Maggio 21047 Saronno VA', 'wp-google-maps');
321
- __('McDonald\'s - 231 - Saronno', 'wp-google-maps');
322
- __('Via Flaminia 275 47924 Rimini RN', 'wp-google-maps');
323
- __('McDonald\'s - 632 - RIMINI - Via Flaminia', 'wp-google-maps');
324
- __('Lungom. Toscanelli 126/128 00121 Roma RM', 'wp-google-maps');
325
- __('McDonald\'s - 42 - Ostia Toscanelli', 'wp-google-maps');
326
- __('Piazza J.F. Kennedy 48 Nettuno RM', 'wp-google-maps');
327
- __('McDonald\'s - 621 - Nettuno', 'wp-google-maps');
328
- __('S.s. 567 del Benaco 25017 Lonato del Garda BS', 'wp-google-maps');
329
- __('McDonald\'s - 380 - Lonato', 'wp-google-maps');
330
- __('Via Delle Vigne Nuove - Loc. Bufalotta 00139 Roma RM', 'wp-google-maps');
331
- __('McDonald\'s - 401 - Roma Porta di Roma', 'wp-google-maps');
332
- __('Via Sottomonte 39055 Laives BZ', 'wp-google-maps');
333
- __('Comune di Laives - Parco Sottomonte', 'wp-google-maps');
334
- __('Via Milano 21019 Somma Lombardo VA', 'wp-google-maps');
335
- __('McDonald\'s - 117 - Somma Lombardo', 'wp-google-maps');
336
- __('Via Giovanni Falcone, 12 42021 Bagnolo in Piano RE', 'wp-google-maps');
337
- __('Test GL100 Open LAN+WIFI', 'wp-google-maps');
338
- __('Via Chieri 3 10020 Baldissero Torinese TO', 'wp-google-maps');
339
- __('Punto Zero', 'wp-google-maps');
340
- __('Via Alberto Pollio, 50 c/o CC Auchan 00159 Roma RM', 'wp-google-maps');
341
- __('Mondadori Retail - Roma Casalbertone', 'wp-google-maps');
342
- __('A 1 Roma - Firenze km 465 - Tevere est 01021 Civitella d\'Agliano VT', 'wp-google-maps');
343
- __('Chef Express - Tevere Est', 'wp-google-maps');
344
- __('Via Mantova 36 25017 Lonato del Garda BS', 'wp-google-maps');
345
- __('Mondadori Retail - Lonato', 'wp-google-maps');
346
- __('Corso Milano, 146 27029 Vigevano PV', 'wp-google-maps');
347
- __('McDonald\'s - 515 - Vigevano', 'wp-google-maps');
348
- __('NAPOLI - GALL. UMBERTO I° 80132 Napoli NA', 'wp-google-maps');
349
- __('McDonald\'s - 809 - Napoli Galleria', 'wp-google-maps');
350
- __('Via Fortunato Postiglione, 1 c/o Centro Commerciale 45° Nord 10024 Moncalieri TO', 'wp-google-maps');
351
- __('Virgin Active - Torino Moncalieri', 'wp-google-maps');
352
- __('A4 - Km 373 30031 Dolo VE', 'wp-google-maps');
353
- __('Airest - Area di Servizio Arino Est', 'wp-google-maps');
354
- __('Via Mar dei Sargassi, 40 c/o Parco del Canale dello Stagno 00122 Roma RM', 'wp-google-maps');
355
- __('Virgin Active - Roma Ostia', 'wp-google-maps');
356
- __('Via Bruno Maderna, 9 30174 Venezia VE', 'wp-google-maps');
357
- __('Virgin Active - Venezia Mestre', 'wp-google-maps');
358
- __('VIA VENEZIA 426 93012 Gela CL', 'wp-google-maps');
359
- __('ARREDO PROJECT', 'wp-google-maps');
360
- __('Piazza del Duomo 20121 Milano MI', 'wp-google-maps');
361
- __('TWINSET Simona Barbieri - Milano Vittorio Emanuele', 'wp-google-maps');
362
- __('Via Marco Polo, 74/A 30015 Venezia VE', 'wp-google-maps');
363
- __('ISP - Filiale Sottomarina Via Marco Polo', 'wp-google-maps');
364
- __('Via Mazzini, 46 18015 Pompeiana IM', 'wp-google-maps');
365
- __('Liguria WiFi - Comune di Pompeiana - Sede Comunale', 'wp-google-maps');
366
- __('Via Don Bosco 73100 Lecce LE', 'wp-google-maps');
367
- __('Lecce WiFi - Scuola P. Siciliani - Succursale', 'wp-google-maps');
368
- __('Via Landinelli 78 19038 Sarzana SP', 'wp-google-maps');
369
- __('Liguria WiFi - Comune di Sarzana - Biblioteca', 'wp-google-maps');
370
- __('Piazza Hortis 34123 Trieste TS', 'wp-google-maps');
371
- __('Comune di Trieste - Biblioteca Hortis', 'wp-google-maps');
372
- __('Via Abate Gimma 99 70122 Bari BA', 'wp-google-maps');
373
- __('ISP - OMEGA - filiale Bari via Gimma', 'wp-google-maps');
374
- __('VIA ROMA, 18/A 54033 Carrara MS', 'wp-google-maps');
375
- __('ISP - Filiale CARRARA VIA ROMA', 'wp-google-maps');
376
- __('Via Anna Kuliscioff, 206 47522 Cesena FC', 'wp-google-maps');
377
- __('Camst - Tavolamica - Pievesestina', 'wp-google-maps');
378
- __('VIA DELLA MADONNA 11 66030 Frisa CH', 'wp-google-maps');
379
- __('Poste - Ufficio Postale - FRISA - CH-19038', 'wp-google-maps');
380
- __('VIA DEL MEZZOGIORNO 5 66050 Guilmi CH', 'wp-google-maps');
381
- __('Poste - Ufficio Postale - GUILMI - CH-19046', 'wp-google-maps');
382
- __('VIA PICENTE 260 67015 Montereale AQ', 'wp-google-maps');
383
- __('Poste - Ufficio Postale - MONTEREALE - AQ-03094', 'wp-google-maps');
384
- __('VIA TRATTURO 1 67027 Raiano AQ', 'wp-google-maps');
385
- __('Poste - Ufficio Postale - RAIANO - AQ-03129', 'wp-google-maps');
386
- __('CORSO UMBERTO 52 65010 Civitella Casanova PE', 'wp-google-maps');
387
- __('Poste - Ufficio Postale - CIVITELLA CASANOVA - PE-84129', 'wp-google-maps');
388
- __('CORSO VITTORIO EMANUELE 103 92020 Villafranca Sicula AG', 'wp-google-maps');
389
- __('Poste - Ufficio Postale - VILLAFRANCA SICULA - AG-29046', 'wp-google-maps');
390
- __('VIA ORSINI RAIMONDO 15/A 84010 Tramonti SA', 'wp-google-maps');
391
- __('Poste - Ufficio Postale - TRAMONTI - SA-57225', 'wp-google-maps');
392
- __('VIA SANT\'ANTONIO 4 23841 Annone di Brianza LC', 'wp-google-maps');
393
- __('Poste - Ufficio Postale - ANNONE BRIANZA - LC-20378', 'wp-google-maps');
394
- __('VIA DANTE ALIGHIERI 1 03040 Ausonia FR', 'wp-google-maps');
395
- __('Poste - Ufficio Postale - AUSONIA - FR-81013', 'wp-google-maps');
396
- __('VIA VITTORIO EMANUELE 2 85050 Balvano PZ', 'wp-google-maps');
397
- __('Poste - Ufficio Postale - BALVANO - PZ-51013', 'wp-google-maps');
398
- __('VIA CESARE BATTISTI 13 93010 Acquaviva Platani CL', 'wp-google-maps');
399
- __('Poste - Ufficio Postale - ACQUAVIVA PLATANI - CL-14002', 'wp-google-maps');
400
- __('VIA ALDO MORO 1 93010 Bompensiere CL', 'wp-google-maps');
401
- __('Poste - Ufficio Postale - BOMPENSIERE - CL-14041', 'wp-google-maps');
402
- __('PIAZZA SAN GERMANO 6 10060 Campiglione-Fenile TO', 'wp-google-maps');
403
- __('Poste - Ufficio Postale - CAMPIGLIONE FENILE - TO-63063', 'wp-google-maps');
404
- __('LARGO DELLA VITTORIA 21 86010 Casalciprano CB', 'wp-google-maps');
405
- __('Poste - Ufficio Postale - CASALCIPRANO - CB-15021', 'wp-google-maps');
406
- __('VIA VENTICINQUE APRILE 18 26030 Casteldidone CR', 'wp-google-maps');
407
- __('Poste - Ufficio Postale - CASTELDIDONE - CR-22072', 'wp-google-maps');
408
- __('VIA NAZIONALE 128 98040 Valdina ME', 'wp-google-maps');
409
- __('Poste - Ufficio Postale - FONDACHELLO DI VALDINA - ME-37237', 'wp-google-maps');
410
- __('VIA ALESSANDRO MANZONI 4 73027 Minervino di Lecce LE', 'wp-google-maps');
411
- __('Poste - Ufficio Postale - COCUMOLA - LE-31029', 'wp-google-maps');
412
- __('PIAZZA VITELLESCHI 2 02010 Labro RI', 'wp-google-maps');
413
- __('Poste - Ufficio Postale - LABRO - RI-94151', 'wp-google-maps');
414
- __('CORSO FERDINANDO VENEZIALE 14 86090 Longano IS', 'wp-google-maps');
415
- __('Poste - Ufficio Postale - LONGANO - IS-71134', 'wp-google-maps');
416
- __('VIA NUOVA 5 98074 Naso ME', 'wp-google-maps');
417
- __('Poste - Ufficio Postale - MALO\' - ME-37286', 'wp-google-maps');
418
- __('VIA GIACOMO MATTEOTTI 33 61013 Mercatino Conca PU', 'wp-google-maps');
419
- __('Poste - Ufficio Postale - MERCATINO CONCA - PU-47041', 'wp-google-maps');
420
- __('VIA SAN PIETRO 23 63855 Montefalcone Appennino FM', 'wp-google-maps');
421
- __('Poste - Ufficio Postale - MONTEFALCONE APPENNINO - FM-05038', 'wp-google-maps');
422
- __('PIAZZA ROMA 9 63088 Montemonaco AP', 'wp-google-maps');
423
- __('Poste - Ufficio Postale - MONTEMONACO - AP-05047', 'wp-google-maps');
424
- __('VIA CIRCONVALLAZIONE 8 00060 Nazzano RM', 'wp-google-maps');
425
- __('Poste - Ufficio Postale - NAZZANO - RM-55148', 'wp-google-maps');
426
- __('PIAZZA QUATTRO NOVEMBRE 1/A 08010 Noragugume NU', 'wp-google-maps');
427
- __('Poste - Ufficio Postale - NORAGUGUME - NU-80148', 'wp-google-maps');
428
- __('PIAZZA DANTE 6 98074 Naso ME', 'wp-google-maps');
429
- __('Poste - Ufficio Postale - NASO - ME-37083', 'wp-google-maps');
430
- __('VIA PO\' DELLA FRATTA SNC 06066 Piegaro PG', 'wp-google-maps');
431
- __('Poste - Ufficio Postale - PIEGARO - PG-46154', 'wp-google-maps');
432
- __('VIA VOLTERRANA 8 56040 Montecatini Val di Cecina PI', 'wp-google-maps');
433
- __('Poste - Ufficio Postale - PONTE GINORI - PI-49123', 'wp-google-maps');
434
- __('VIA AURELIA 235 19020 Riccò del Golfo di Spezia SP', 'wp-google-maps');
435
- __('Poste - Ufficio Postale - RICCO\' DEL GOLFO - SP-78044', 'wp-google-maps');
436
- __('PIAZZA DANTE SNC 73050 Salve LE', 'wp-google-maps');
437
- __('Poste - Ufficio Postale - SALVE - LE-31108', 'wp-google-maps');
438
- __('VIA SANDRO PERTINI 13 86070 Sant\'Agapito IS', 'wp-google-maps');
439
- __('Poste - Ufficio Postale - SANT\'AGAPITO SCALO FERROVIARIO - IS-71176', 'wp-google-maps');
440
- __('CORSO UMBERTO I 66 86080 Sant\'Angelo del Pesco IS', 'wp-google-maps');
441
- __('Poste - Ufficio Postale - SANT\'ANGELO DEL PESCO - IS-71158', 'wp-google-maps');
442
- __('VIA ASSIETTA 35 10050 Sauze d\'Oulx TO', 'wp-google-maps');
443
- __('Poste - Ufficio Postale - SAUZE D\'OULX - TO-63485', 'wp-google-maps');
444
- __('VIA CAVOUR 11 10060 Scalenghe TO', 'wp-google-maps');
445
- __('Poste - Ufficio Postale - SCALENGHE - TO-63303', 'wp-google-maps');
446
- __('VIA ROMA 156 09040 Siurgus Donigala SU', 'wp-google-maps');
447
- __('Poste - Ufficio Postale - SIURGUS DONIGALA - SU-13148', 'wp-google-maps');
448
- __('VIA LOMBARDIA 20 03040 Vallerotonda FR', 'wp-google-maps');
449
- __('Poste - Ufficio Postale - VALVORI - FR-81100', 'wp-google-maps');
450
- __('VIA BRUNO SEROTINI 24 01030 Vasanello VT', 'wp-google-maps');
451
- __('Poste - Ufficio Postale - VASANELLO - VT-95172', 'wp-google-maps');
452
- __('VIA AMSICORA SNC1 07019 Villanova Monteleone SS', 'wp-google-maps');
453
- __('Poste - Ufficio Postale - VILLANOVA MONTELEONE - SS-58104', 'wp-google-maps');
454
- __('PIAZZA PERRONCITO 12 14010 Viale AT', 'wp-google-maps');
455
- __('Poste - Ufficio Postale - VIALE - AT-76306', 'wp-google-maps');
456
- __('Via Postiglione 1 c/o Centro dell\'intrattenimento 45° Nord 10014 Moncalieri TO', 'wp-google-maps');
457
- __('Roadhouse Calavera - Moncalieri', 'wp-google-maps');
458
- __('TRAVERSA TERME 9 35041 Battaglia Terme PD', 'wp-google-maps');
459
- __('Poste - Ufficio Postale - BATTAGLIA TERME - PD-42012', 'wp-google-maps');
460
- __('PIAZZA QUATTRO NOVEMBRE 3 35010 Gazzo PD', 'wp-google-maps');
461
- __('Poste - Ufficio Postale - GAZZO PADOVANO - PD-42040', 'wp-google-maps');
462
- __('VIA CESARE SOPRANO 71 80030 Liveri NA', 'wp-google-maps');
463
- __('Poste - Ufficio Postale - LIVERI - NA-40218', 'wp-google-maps');
464
- __('VIA ROMA 21 45010 Pettorazza Grimani RO', 'wp-google-maps');
465
- __('Poste - Ufficio Postale - PETTORAZZA - RO-56041', 'wp-google-maps');
466
- __('VIA DON GIO-BATTA ZANARDO 18 31040 Chiarano TV', 'wp-google-maps');
467
- __('Poste - Ufficio Postale - CHIARANO - TV-65021', 'wp-google-maps');
468
- __('VIA ROMA 5 31010 Cimadolmo TV', 'wp-google-maps');
469
- __('Poste - Ufficio Postale - CIMADOLMO - TV-65022', 'wp-google-maps');
470
- __('VIA ROMA 4 17010 Giusvalla SV', 'wp-google-maps');
471
- __('Poste - Ufficio Postale - GIUSVALLA - SV-86149', 'wp-google-maps');
472
- __('VIA FERDINANDO LO GUERCIO 2 84030 Caselle in Pittari SA', 'wp-google-maps');
473
- __('Poste - Ufficio Postale - CASELLE IN PITTARI - SA-57051', 'wp-google-maps');
474
- __('VIA AMERIGO VESPUCCI 31 37010 Brenzone VR', 'wp-google-maps');
475
- __('Poste - Ufficio Postale - CASTELLETTO DI BRENZONE - VR-68024', 'wp-google-maps');
476
- __('VIA PITTARELLI 1 89851 Francica VV', 'wp-google-maps');
477
- __('Poste - Ufficio Postale - FRANCICA - VV-18066', 'wp-google-maps');
478
- __('VIA PIETRO LONGO 50 15043 Fubine AL', 'wp-google-maps');
479
- __('Poste - Ufficio Postale - FUBINE - AL-01107', 'wp-google-maps');
480
- __('VIA BORGO D\'ALE 1 13040 Alice Castello VC', 'wp-google-maps');
481
- __('Poste - Ufficio Postale - ALICE CASTELLO - VC-90109', 'wp-google-maps');
482
- __('VIA BELGIOIOSO 40 46010 Gazzuolo MN', 'wp-google-maps');
483
- __('Poste - Ufficio Postale - BELFORTE - MN-35005', 'wp-google-maps');
484
- __('VIA COMUNALE 78/A 41046 Palagano MO', 'wp-google-maps');
485
- __('Poste - Ufficio Postale - BOCCASSUOLO - MO-39054A01', 'wp-google-maps');
486
- __('VIA GIACOMO MATTEOTTI 84 13040 Borgo d\'Ale VC', 'wp-google-maps');
487
- __('Poste - Ufficio Postale - BORGO D\'ALE - VC-90124', 'wp-google-maps');
488
- __('VIA ROMA 34 87020 Maierà CS', 'wp-google-maps');
489
- __('Poste - Ufficio Postale - MAIERA\' - CS-21083', 'wp-google-maps');
490
- __('VIA GIUSEPPE SERVELLO 3 89843 Maierato VV', 'wp-google-maps');
491
- __('Poste - Ufficio Postale - MAIERATO - VV-18085', 'wp-google-maps');
492
- __('VIA GIOVANNI PREMOLI 36 26815 Massalengo LO', 'wp-google-maps');
493
- __('Poste - Ufficio Postale - MASSALENGO - LO-38528', 'wp-google-maps');
494
- __('VIA ROMA 154 13866 Masserano BI', 'wp-google-maps');
495
- __('Poste - Ufficio Postale - MASSERANO - BI-90181', 'wp-google-maps');
496
- __('VIA INGEGNERE VIOTTI 11 28040 Massino Visconti NO', 'wp-google-maps');
497
- __('Poste - Ufficio Postale - MASSINO VISCONTI - NO-41147', 'wp-google-maps');
498
- __('VIA FABBRICHE 16 28046 Meina NO', 'wp-google-maps');
499
- __('Poste - Ufficio Postale - MEINA - NO-41148', 'wp-google-maps');
500
- __('VIA MARTIRI D\'UNGHERIA 3 61040 Mercatello sul Metauro PU', 'wp-google-maps');
501
- __('Poste - Ufficio Postale - MERCATELLO SUL METAURO - PU-47040', 'wp-google-maps');
502
- __('VIA ALEARDO ALEARDI 16 37030 Mezzane di Sotto VR', 'wp-google-maps');
503
- __('Poste - Ufficio Postale - MEZZANE DI SOTTO - VR-68058', 'wp-google-maps');
504
- __('VIA BORGO STAZIONE 14 14050 Mombaldone AT', 'wp-google-maps');
505
- __('Poste - Ufficio Postale - MOMBALDONE - AT-76160', 'wp-google-maps');
506
- __('VIA VENTI SETTEMBRE 17 14013 Monale AT', 'wp-google-maps');
507
- __('Poste - Ufficio Postale - MONALE - AT-76164', 'wp-google-maps');
508
- __('VIA ROMA 66 14058 Monastero Bormida AT', 'wp-google-maps');
509
- __('Poste - Ufficio Postale - MONASTERO BORMIDA - AT-76165', 'wp-google-maps');
510
- __('VIALE UNGHERIA 12 61040 Mondavio PU', 'wp-google-maps');
511
- __('Poste - Ufficio Postale - MONDAVIO - PU-47043', 'wp-google-maps');
512
- __('PIAZZA CAMILLO RICCIO 30 14014 Montafia AT', 'wp-google-maps');
513
- __('Poste - Ufficio Postale - MONTAFIA - AT-76170', 'wp-google-maps');
514
- __('VIA XXV APRILE 3 51010 Marliana PT', 'wp-google-maps');
515
- __('Poste - Ufficio Postale - MONTAGNANA PISTOIESE - PT-85151', 'wp-google-maps');
516
- __('VIA CADUTI DEL LAVORO 8 37030 Montecchia di Crosara VR', 'wp-google-maps');
517
- __('Poste - Ufficio Postale - MONTECCHIA DI CROSARA - VR-68060', 'wp-google-maps');
518
- __('VIA GIOVANNI MARINELLI 2 61024 Monteciccardo PU', 'wp-google-maps');
519
- __('Poste - Ufficio Postale - MONTECICCARDO - PU-47048', 'wp-google-maps');
520
- __('VIA ROMA 2 83030 Montefredane AV', 'wp-google-maps');
521
- __('Poste - Ufficio Postale - MONTEFREDANE - AV-06063', 'wp-google-maps');
522
- __('PIAZZA KENNEDY 1 87070 Montegiordano CS', 'wp-google-maps');
523
- __('Poste - Ufficio Postale - MONTEGIORDANO - CS-21097', 'wp-google-maps');
524
- __('PIAZZA SANT\'AGOSTINO 5 53015 Monticiano SI', 'wp-google-maps');
525
- __('Poste - Ufficio Postale - MONTICIANO - SI-59045', 'wp-google-maps');
526
- __('VIA SAN SALVATORE 8 24050 Morengo BG', 'wp-google-maps');
527
- __('Poste - Ufficio Postale - MORENGO - BG-10075', 'wp-google-maps');
528
- __('VIA VITTORIO EMANUELE III 61 09090 Morgongiori OR', 'wp-google-maps');
529
- __('Poste - Ufficio Postale - MORGONGIORI - OR-72034', 'wp-google-maps');
530
- __('VIA ROMA 30 37060 Nogarole Rocca VR', 'wp-google-maps');
531
- __('Poste - Ufficio Postale - NOGAROLE ROCCA - VR-68128', 'wp-google-maps');
532
- __('VIA REGINA ELENA 18 09080 Nughedu Santa Vittoria OR', 'wp-google-maps');
533
- __('Poste - Ufficio Postale - NUGHEDU SANTA VITTORIA - OR-72103', 'wp-google-maps');
534
- __('VIA ANTONIO MANZI 15/A 28824 Oggebbio VB', 'wp-google-maps');
535
- __('Poste - Ufficio Postale - OGGEBBIO - VB-41170', 'wp-google-maps');
536
- __('VIA GARAMPA 1132 47020 Roncofreddo FC', 'wp-google-maps');
537
- __('Poste - Ufficio Postale - ORIOLA - FC-27006A01', 'wp-google-maps');
538
- __('PIAZZA DELLA CHIESA 14 26816 Ossago Lodigiano LO', 'wp-google-maps');
539
- __('Poste - Ufficio Postale - OSSAGO - LO-38757', 'wp-google-maps');
540
- __('VIA DANTE 23 25050 Ossimo BS', 'wp-google-maps');
541
- __('Poste - Ufficio Postale - OSSIMO INFERIORE - BS-12138', 'wp-google-maps');
542
- __('VIA SAN GIOVANNI 34 09030 Pabillonis SU', 'wp-google-maps');
543
- __('Poste - Ufficio Postale - PABILLONIS - SU-13106', 'wp-google-maps');
544
- __('VIA RINASCITA 15 09090 Palmas Arborea OR', 'wp-google-maps');
545
- __('Poste - Ufficio Postale - PALMAS ARBOREA - OR-72042', 'wp-google-maps');
546
- __('VIA SANTA GIULIA 2 25050 Pian Camuno BS', 'wp-google-maps');
547
- __('Poste - Ufficio Postale - PIAN CAMUNO - BS-12246', 'wp-google-maps');
548
- __('VIA CENTRALE 104 41044 Frassinoro MO', 'wp-google-maps');
549
- __('Poste - Ufficio Postale - PIANDELAGOTTI - MO-39057', 'wp-google-maps');
550
- __('LARGO DAL VERME 24 29010 Pianello Val Tidone PC', 'wp-google-maps');
551
- __('Poste - Ufficio Postale - PIANELLO VAL TIDONE - PC-48035', 'wp-google-maps');
552
- __('VIA ROMA 40 13812 Piedicavallo BI', 'wp-google-maps');
553
- __('Poste - Ufficio Postale - PIEDICAVALLO - BI-90202', 'wp-google-maps');
554
- __('PIAZZA MUNICIPIO 5 61023 Pietrarubbia PU', 'wp-google-maps');
555
- __('Poste - Ufficio Postale - PIETRARUBBIA - PU-47067', 'wp-google-maps');
556
- __('VIA ROMA 34 38085 Bono TN', 'wp-google-maps');
557
- __('Poste - Ufficio Postale - PIEVE DI BONO - TN-74092', 'wp-google-maps');
558
- __('VIA PILA AI PIANI 3 83040 Frigento AV', 'wp-google-maps');
559
- __('Poste - Ufficio Postale - PILA AI PIANI - AV-06184', 'wp-google-maps');
560
- __('VIA ROMA 58 09020 Pimentel SU', 'wp-google-maps');
561
- __('Poste - Ufficio Postale - PIMENTEL - SU-13221', 'wp-google-maps');
562
- __('VIA IPPOLITA POLLEDRO 23 14026 Piovà Massaia AT', 'wp-google-maps');
563
- __('Poste - Ufficio Postale - PIOVA\' MASSAIA - AT-76182', 'wp-google-maps');
564
- __('VIA NAZIONALE 36 23020 Piuro SO', 'wp-google-maps');
565
- __('Poste - Ufficio Postale - PIURO - SO-61044A01', 'wp-google-maps');
566
- __('VIA ROMA 204 07017 Ploaghe SS', 'wp-google-maps');
567
- __('Poste - Ufficio Postale - PLOAGHE - SS-58080', 'wp-google-maps');
568
- __('PIAZZA A. DEGASPERI 1/D 38060 Pomarolo TN', 'wp-google-maps');
569
- __('Poste - Ufficio Postale - POMAROLO - TN-74552', 'wp-google-maps');
570
- __('VIA TITO SPERI 21 25072 Bagolino BS', 'wp-google-maps');
571
- __('Poste - Ufficio Postale - PONTE CAFFARO - BS-12156', 'wp-google-maps');
572
- __('VIA ATTILIO DEGIANI 2 14037 Portacomaro AT', 'wp-google-maps');
573
- __('Poste - Ufficio Postale - PORTACOMARO - AT-76183', 'wp-google-maps');
574
- __('VIA ROMA 11 13010 Postua VC', 'wp-google-maps');
575
- __('Poste - Ufficio Postale - POSTUA - VC-90296', 'wp-google-maps');
576
- __('VIA VANONI 4 23020 Prata Camportaccio SO', 'wp-google-maps');
577
- __('Poste - Ufficio Postale - PRATA CAMPORTACCIO - SO-61132', 'wp-google-maps');
578
- __('VIA TRENTO 8 38070 Ragoli TN', 'wp-google-maps');
579
- __('Poste - Ufficio Postale - RAGOLI - TN-74540', 'wp-google-maps');
580
- __('VIA VITTORIO EMANUELE III 9 14030 Refrancore AT', 'wp-google-maps');
581
- __('Poste - Ufficio Postale - REFRANCORE - AT-76186', 'wp-google-maps');
582
- __('VIA ROMA 1 13030 Rive VC', 'wp-google-maps');
583
- __('Poste - Ufficio Postale - RIVE - VC-90219', 'wp-google-maps');
584
- __('PIAZZA NAPOLEONE I 30 37010 Rivoli Veronese VR', 'wp-google-maps');
585
- __('Poste - Ufficio Postale - RIVOLI VERONESE - VR-68080', 'wp-google-maps');
586
- __('PIAZZA MARCONI 8 14030 Rocca d\'Arazzo AT', 'wp-google-maps');
587
- __('Poste - Ufficio Postale - ROCCA D\'ARAZZO - AT-76190', 'wp-google-maps');
588
- __('VIA CAPOLUOGO 97 32023 Rocca Pietore BL', 'wp-google-maps');
589
- __('Poste - Ufficio Postale - ROCCA PIETORE - BL-08057', 'wp-google-maps');
590
- __('VIA VENTIQUATTRO MAGGIO 166 58053 Roccalbegna GR', 'wp-google-maps');
591
- __('Poste - Ufficio Postale - ROCCALBEGNA - GR-30067', 'wp-google-maps');
592
- __('PIAZZA GIOVANNI BERRUTI 25 14042 Rocchetta Palafea AT', 'wp-google-maps');
593
- __('Poste - Ufficio Postale - ROCCHETTA PALAFEA - AT-76192', 'wp-google-maps');
594
- __('VIA DEL CAR 53 38060 Ronzo-Chienis TN', 'wp-google-maps');
595
- __('Poste - Ufficio Postale - RONZO CHIENIS - TN-74530', 'wp-google-maps');
596
- __('VIA PAPA GIOVANNI PAOLO II 3 37040 Roveredo di Guà VR', 'wp-google-maps');
597
- __('Poste - Ufficio Postale - ROVEREDO DI GUA\' - VR-68163', 'wp-google-maps');
598
- __('VIA VELLEIA 5 29018 Lugagnano Val D\'Arda PC', 'wp-google-maps');
599
- __('Poste - Ufficio Postale - RUSTIGAZZO - PC-48027A01', 'wp-google-maps');
600
- __('VIA ROMA 100 09020 Samatzai SU', 'wp-google-maps');
601
- __('Poste - Ufficio Postale - SAMATZAI - SU-13194', 'wp-google-maps');
602
- __('VIA ROMA 36 53040 San Casciano dei Bagni SI', 'wp-google-maps');
603
- __('Poste - Ufficio Postale - SAN CASCIANO DEI BAGNI - SI-59064', 'wp-google-maps');
604
- __('VIA BARBARA FERRAZZI 22/B 25020 San Gervasio Bresciano BS', 'wp-google-maps');
605
- __('Poste - Ufficio Postale - SAN GERVASIO BRESCIANO - BS-12267', 'wp-google-maps');
606
- __('PIAZZA GUGLIELMO MARCONI 3 37030 San Mauro di Saline VR', 'wp-google-maps');
607
- __('Poste - Ufficio Postale - SAN MAURO DI SALINE - VR-68142', 'wp-google-maps');
608
- __('VIA VITTORIO EMANUELE 27 61040 Mondavio PU', 'wp-google-maps');
609
- __('Poste - Ufficio Postale - SAN MICHELE AL FIUME - PU-47136', 'wp-google-maps');
610
- __('VIA ROMA 56 36020 San Nazario VI', 'wp-google-maps');
611
- __('Poste - Ufficio Postale - SAN NAZARIO - VI-69135', 'wp-google-maps');
612
- __('VIA ARMANDO DIAZ 24 83050 San Nicola Baronia AV', 'wp-google-maps');
613
- __('Poste - Ufficio Postale - SAN NICOLA BARONIA - AV-06096', 'wp-google-maps');
614
- __('VIA ROMA 29 28060 San Pietro Mosezzo NO', 'wp-google-maps');
615
- __('Poste - Ufficio Postale - SAN PIETRO MOSEZZO - NO-41240', 'wp-google-maps');
616
- __('VIA RISORGIMENTO 3 36070 San Pietro Mussolino VI', 'wp-google-maps');
617
- __('Poste - Ufficio Postale - SAN PIETRO MUSSOLINO - VI-69100', 'wp-google-maps');
618
- __('VIA GIACOMO MATTEOTTI 58 87010 San Sosti CS', 'wp-google-maps');
619
- __('Poste - Ufficio Postale - SAN SOSTI - CS-21149', 'wp-google-maps');
620
- __('VIA PETRARCA 20 98030 San Teodoro ME', 'wp-google-maps');
621
- __('Poste - Ufficio Postale - SAN TEODORO - ME-37151', 'wp-google-maps');
622
- __('PIAZZA ROMA 7 56040 Santa Luce PI', 'wp-google-maps');
623
- __('Poste - Ufficio Postale - SANTA LUCE - PI-49092', 'wp-google-maps');
624
- __('VIA BIRIALA 12 08040 Baunei NU', 'wp-google-maps');
625
- __('Poste - Ufficio Postale - SANTA MARIA NAVARRESE - NU-80213', 'wp-google-maps');
626
- __('VIA GARIBALDI 11 09010 Santadi SU', 'wp-google-maps');
627
- __('Poste - Ufficio Postale - SANTADI - SU-13124', 'wp-google-maps');
628
- __('VIA VENEZIA 10 32045 Santo Stefano di Cadore BL', 'wp-google-maps');
629
- __('Poste - Ufficio Postale - SANTO STEFANO DI CADORE - BL-08065', 'wp-google-maps');
630
- __('BORGATA BACH 5 33012 Sappada UD', 'wp-google-maps');
631
- __('Poste - Ufficio Postale - SAPPADA - UD-08066', 'wp-google-maps');
632
- __('VIA AGOSTINO CASINI 1 87010 Saracena CS', 'wp-google-maps');
633
- __('Poste - Ufficio Postale - SARACENA - CS-21151', 'wp-google-maps');
634
- __('PIAZZA AGRESTI 8 58020 Scarlino GR', 'wp-google-maps');
635
- __('Poste - Ufficio Postale - SCARLINO STAZIONE - GR-30102', 'wp-google-maps');
636
- __('VIA PER MERA 2/BIS 13028 Scopello VC', 'wp-google-maps');
637
- __('Poste - Ufficio Postale - SCOPELLO - VC-90238', 'wp-google-maps');
638
- __('VIALE DELLA ZECCA 17 18012 Seborga IM', 'wp-google-maps');
639
- __('Poste - Ufficio Postale - SEBORGA - IM-50101', 'wp-google-maps');
640
- __('VIA GIUSEPPE GARIBALDI 37 26826 Secugnago LO', 'wp-google-maps');
641
- __('Poste - Ufficio Postale - SECUGNAGO - LO-38184', 'wp-google-maps');
642
- __('VIA ROMA 11 09040 Segariu SU', 'wp-google-maps');
643
- __('Poste - Ufficio Postale - SEGARIU - SU-13134', 'wp-google-maps');
644
- __('VIA MORO 1 58038 Seggiano GR', 'wp-google-maps');
645
- __('Poste - Ufficio Postale - SEGGIANO - GR-30078', 'wp-google-maps');
646
- __('PIAZZA DANTE 1 07010 Semestene SS', 'wp-google-maps');
647
- __('Poste - Ufficio Postale - SEMESTENE - SS-58233', 'wp-google-maps');
648
- __('VIA SA ROCCA 6 09070 Seneghe OR', 'wp-google-maps');
649
- __('Poste - Ufficio Postale - SENEGHE - OR-72055', 'wp-google-maps');
650
- __('VIA CAGLIARI 1 09090 Simala OR', 'wp-google-maps');
651
- __('Poste - Ufficio Postale - SIMALA - OR-72097', 'wp-google-maps');
652
- __('VIA SAN ROCCO 32 24030 Solza BG', 'wp-google-maps');
653
- __('Poste - Ufficio Postale - SOLZA - BG-10113', 'wp-google-maps');
654
- __('VIA DONATORI DI SANGUE 4 23035 Sondalo SO', 'wp-google-maps');
655
- __('Poste - Ufficio Postale - SONDALO - SO-61048', 'wp-google-maps');
656
- __('FRAZIONE SERVO 192 32030 Sovramonte BL', 'wp-google-maps');
657
- __('Poste - Ufficio Postale - SOVRAMONTE - BL-08072', 'wp-google-maps');
658
- __('LOCALITA\' ROVIETO SUPERIORE 1 17044 Stella SV', 'wp-google-maps');
659
- __('Poste - Ufficio Postale - STELLA - SV-86184', 'wp-google-maps');
660
- __('VIA FABIO FILZI 15 38055 Grigno TN', 'wp-google-maps');
661
- __('Poste - Ufficio Postale - TEZZE IN VALSUGANA - TN-74112A01', 'wp-google-maps');
662
- __('VIA GIUSEPPE GARIBALDI 6 17055 Toirano SV', 'wp-google-maps');
663
- __('Poste - Ufficio Postale - TOIRANO - SV-86186', 'wp-google-maps');
664
- __('VIA VALERIANA 54 23019 Traona SO', 'wp-google-maps');
665
- __('Poste - Ufficio Postale - TRAONA - SO-61055', 'wp-google-maps');
666
- __('VIA TRAVERSA 322 50033 Firenzuola FI', 'wp-google-maps');
667
- __('Poste - Ufficio Postale - TRAVERSA - FI-25076A01', 'wp-google-maps');
668
- __('CORSO ITALIA 7 18010 Triora IM', 'wp-google-maps');
669
- __('Poste - Ufficio Postale - TRIORA - IM-50054', 'wp-google-maps');
670
- __('VIA ROMA 11 13018 Valduggia VC', 'wp-google-maps');
671
- __('Poste - Ufficio Postale - VALDUGGIA - VC-90254', 'wp-google-maps');
672
- __('PIAZZA BISIO 7 15040 Valmacca AL', 'wp-google-maps');
673
- __('Poste - Ufficio Postale - VALMACCA - AL-01283', 'wp-google-maps');
674
- __('PIAZZA VITTORIA 4 37030 Velo Veronese VR', 'wp-google-maps');
675
- __('Poste - Ufficio Postale - VELO VERONESE - VR-68135', 'wp-google-maps');
676
- __('VIA VENTICINQUE APRILE 3 13871 Verrone BI', 'wp-google-maps');
677
- __('Poste - Ufficio Postale - VERRONE - BI-90315', 'wp-google-maps');
678
- __('VIA ROMA 19 17038 Villanova d\'Albenga SV', 'wp-google-maps');
679
- __('Poste - Ufficio Postale - VILLANOVA D\'ALBENGA - SV-86264', 'wp-google-maps');
680
- __('PIAZZA PLEBISCITO 1 09084 Villanova Truschedu OR', 'wp-google-maps');
681
- __('Poste - Ufficio Postale - VILLANOVA TRUSCHEDU - OR-72102', 'wp-google-maps');
682
- __('PIAZZA FANTI D\'ITALIA 5 31050 Zenson di Piave TV', 'wp-google-maps');
683
- __('Poste - Ufficio Postale - ZENSON DI PIAVE - TV-65117', 'wp-google-maps');
684
- __('VIA MOLINI 13 37040 Zimella VR', 'wp-google-maps');
685
- __('Poste - Ufficio Postale - ZIMELLA - VR-68148', 'wp-google-maps');
686
- __('VIA CAPRIOLO 7 25050 Zone BS', 'wp-google-maps');
687
- __('Poste - Ufficio Postale - ZONE - BS-12265', 'wp-google-maps');
688
- __('Via Vespri Siciliani, 9 20146 Milano MI', 'wp-google-maps');
689
- __('Value Partners Spa', 'wp-google-maps');
690
- __('CORSO GIUSEPPE GARIBALDI 6 4808 Faenza RA', 'wp-google-maps');
691
- __('BERNABE SAS DI GRANDI ENRICO & C.', 'wp-google-maps');
692
- __('VIA NAZIONALE 120 23821 Abbadia Lariana LC', 'wp-google-maps');
693
- __('Poste - Ufficio Postale - ABBADIA LARIANA - LC-20277', 'wp-google-maps');
694
- __('VIA CRISTOFORO COLOMBO 52 87020 Acquappesa CS', 'wp-google-maps');
695
- __('Poste - Ufficio Postale - ACQUAPPESA MARINA - CS-21252', 'wp-google-maps');
696
- __('VIA PRINCIPE TOMMASO 24 10011 Agliè TO', 'wp-google-maps');
697
- __('Poste - Ufficio Postale - AGLIE\' - TO-63003', 'wp-google-maps');
698
- __('PIAZZA PASQUINELLI 3 21010 Agra VA', 'wp-google-maps');
699
- __('Poste - Ufficio Postale - AGRA - VA-89228', 'wp-google-maps');
700
- __('VIA CROCE 26 20886 Aicurzio MB', 'wp-google-maps');
701
- __('Poste - Ufficio Postale - AICURZIO - MB-38262', 'wp-google-maps');
702
- __('CORSO LUIGI DE SETA 63 87031 Aiello Calabro CS', 'wp-google-maps');
703
- __('Poste - Ufficio Postale - AIELLO CALABRO - CS-21005', 'wp-google-maps');
704
- __('VIA FOSSA\' 1 12010 Aisone CN', 'wp-google-maps');
705
- __('Poste - Ufficio Postale - AISONE - CN-23003', 'wp-google-maps');
706
- __('VIA DONATORI DI SANGUE 7 20080 Albairate MI', 'wp-google-maps');
707
- __('Poste - Ufficio Postale - ALBAIRATE - MI-38006', 'wp-google-maps');
708
- __('VIA ROMA 23 22032 Albese con Cassano CO', 'wp-google-maps');
709
- __('Poste - Ufficio Postale - ALBESE - CO-20005', 'wp-google-maps');
710
- __('VIA VITTORIO EMANUELE II 1 89020 Anoia RC', 'wp-google-maps');
711
- __('Poste - Ufficio Postale - ANOIA SUPERIORE - RC-53175', 'wp-google-maps');
712
- __('VIA ANZANO 174 31012 Cappella Maggiore TV', 'wp-google-maps');
713
- __('Poste - Ufficio Postale - ANZANO - TV-65005', 'wp-google-maps');
714
- __('PIAZZA VITTORIO EMANUELE 11 18035 Apricale IM', 'wp-google-maps');
715
- __('Poste - Ufficio Postale - APRICALE - IM-50004', 'wp-google-maps');
716
- __('PIAZZA VITTORIO EMANUELE III 24 31030 Arcade TV', 'wp-google-maps');
717
- __('Poste - Ufficio Postale - ARCADE - TV-65140', 'wp-google-maps');
718
- __('VIA GARIBALDI 71 27040 Arena Po PV', 'wp-google-maps');
719
- __('Poste - Ufficio Postale - ARENA PO - PV-45005', 'wp-google-maps');
720
- __('FRAZIONE CLOS 4 11020 Arnad AO', 'wp-google-maps');
721
- __('Poste - Ufficio Postale - ARNAD - AO-98108', 'wp-google-maps');
722
- __('PIAZZA CHIESA 14 28899 Arola VB', 'wp-google-maps');
723
- __('Poste - Ufficio Postale - AROLA - VB-41351', 'wp-google-maps');
724
- __('VIA SARDEGNA 24 08040 Arzana NU', 'wp-google-maps');
725
- __('Poste - Ufficio Postale - ARZANA - NU-80106', 'wp-google-maps');
726
- __('VIA VITTORIO VENETO 12 33050 Bagnaria Arsa UD', 'wp-google-maps');
727
- __('Poste - Ufficio Postale - BAGNARIA ARSA - UD-66403', 'wp-google-maps');
728
- __('PIAZZA DIECI MARTIRI 1 10070 Balangero TO', 'wp-google-maps');
729
- __('Poste - Ufficio Postale - BALANGERO - TO-63024', 'wp-google-maps');
730
- __('VIA ROMA SNC 13020 Balmuccia VC', 'wp-google-maps');
731
- __('Poste - Ufficio Postale - BALMUCCIA - VC-90114', 'wp-google-maps');
732
- __('VIA GIUSEPPE MAZZINI 3 21020 Bardello VA', 'wp-google-maps');
733
- __('Poste - Ufficio Postale - BARDELLO - VA-89258', 'wp-google-maps');
734
- __('VIA ROMA 21 09040 Barrali SU', 'wp-google-maps');
735
- __('Poste - Ufficio Postale - BARRALI - SU-13015', 'wp-google-maps');
736
- __('VIA ROMA 26/A 37050 Belfiore VR', 'wp-google-maps');
737
- __('Poste - Ufficio Postale - BELFIORE D\'ADIGE - VR-68139', 'wp-google-maps');
738
- __('VIA MAESTRA 44/A 12010 Argentera CN', 'wp-google-maps');
739
- __('Poste - Ufficio Postale - BERSEZIO - CN-23024', 'wp-google-maps');
740
- __('VIA QUATTRO NOVEMBRE 13 20080 Besate MI', 'wp-google-maps');
741
- __('Poste - Ufficio Postale - BESATE - MI-38018', 'wp-google-maps');
742
- __('VIA PALMANOVA 10 33050 Bicinicco UD', 'wp-google-maps');
743
- __('Poste - Ufficio Postale - BICINICCO - UD-66384', 'wp-google-maps');
744
- __('PIAZZA GALLETTI 1 28842 Bognanco VB', 'wp-google-maps');
745
- __('Poste - Ufficio Postale - BOGNANCO - VB-41345', 'wp-google-maps');
746
- __('VIA VENZONE 5 33010 Bordano UD', 'wp-google-maps');
747
- __('Poste - Ufficio Postale - BORDANO - UD-66378', 'wp-google-maps');
748
- __('VIA ROMA 63 15060 Borghetto di Borbera AL', 'wp-google-maps');
749
- __('Poste - Ufficio Postale - BORGHETTO BORBERA - AL-01026', 'wp-google-maps');
750
- __('PIAZZA SAN PIETRO 2 24060 Bossico BG', 'wp-google-maps');
751
- __('Poste - Ufficio Postale - BOSSICO - BG-10163', 'wp-google-maps');
752
- __('VIA QUATTRO NOVEMBRE 42 89033 Bova RC', 'wp-google-maps');
753
- __('Poste - Ufficio Postale - BOVA - RC-53014', 'wp-google-maps');
754
- __('VIA TRIESTE 28/A 89035 Bova Marina RC', 'wp-google-maps');
755
- __('Poste - Ufficio Postale - BOVA MARINA - RC-53057', 'wp-google-maps');
756
- __('VIA REGINA MARGHERITA 32 89036 Brancaleone RC', 'wp-google-maps');
757
- __('Poste - Ufficio Postale - BRANCALEONE - RC-53016', 'wp-google-maps');
758
- __('VIA GAETANO DONIZETTI 15 24020 Castione della Presolana BG', 'wp-google-maps');
759
- __('Poste - Ufficio Postale - BRATTO - BG-10234', 'wp-google-maps');
760
- __('VIA GRIMELLO 2 22040 Brenna CO', 'wp-google-maps');
761
- __('Poste - Ufficio Postale - BRENNA - CO-20258', 'wp-google-maps');
762
- __('VIA GIUSEPPE CERINI 2 21030 Brenta VA', 'wp-google-maps');
763
- __('Poste - Ufficio Postale - BRENTA - VA-89252', 'wp-google-maps');
764
- __('PIAZZA MUNICIPIO 13 38021 Brez TN', 'wp-google-maps');
765
- __('Poste - Ufficio Postale - BREZ - TN-74623', 'wp-google-maps');
766
- __('VIA BORSARELLI 4 12080 Briaglia CN', 'wp-google-maps');
767
- __('Poste - Ufficio Postale - BRIAGLIA - CN-23436', 'wp-google-maps');
768
- __('VIA VERDI 17 21020 Brunello VA', 'wp-google-maps');
769
- __('Poste - Ufficio Postale - BRUNELLO - VA-89291', 'wp-google-maps');
770
- __('VIA VITTORIO EMANUELE 26 89030 Bruzzano Zeffirio RC', 'wp-google-maps');
771
- __('Poste - Ufficio Postale - BRUZZANO ZEFFIRIO - RC-53017', 'wp-google-maps');
772
- __('VIA FRATELLI CHIAPPETTO 1 10080 Busano TO', 'wp-google-maps');
773
- __('Poste - Ufficio Postale - BUSANO - TO-63057', 'wp-google-maps');
774
- __('VIA CAMPO 7 88833 Caccuri KR', 'wp-google-maps');
775
- __('Poste - Ufficio Postale - CACCURI - KR-18019', 'wp-google-maps');
776
- __('VIA REGINA 1 22011 Griante CO', 'wp-google-maps');
777
- __('Poste - Ufficio Postale - CADENABBIA - CO-20039', 'wp-google-maps');
778
- __('VIA TORINO 7 10070 Cafasse TO', 'wp-google-maps');
779
- __('Poste - Ufficio Postale - CAFASSE - TO-63405', 'wp-google-maps');
780
- __('PIAZZA VITTORIO EMANUELE 5 22030 Caglio CO', 'wp-google-maps');
781
- __('Poste - Ufficio Postale - CAGLIO - CO-20308', 'wp-google-maps');
782
- __('PIAZZA ITALIA 1 22070 Cagno CO', 'wp-google-maps');
783
- __('Poste - Ufficio Postale - CAGNO - CO-20315', 'wp-google-maps');
784
- __('VIA SPINI 14 23010 Tartano SO', 'wp-google-maps');
785
- __('Poste - Ufficio Postale - CAMPO TARTANO - SO-61062', 'wp-google-maps');
786
- __('VIA DON ROMEO BALLERINI 8 23021 Campodolcino SO', 'wp-google-maps');
787
- __('Poste - Ufficio Postale - CAMPODOLCINO - SO-61010', 'wp-google-maps');
788
- __('VIA MOLISE 1 82020 Campolattaro BN', 'wp-google-maps');
789
- __('Poste - Ufficio Postale - CAMPOLATTARO - BN-09012', 'wp-google-maps');
790
- __('VIA TRIESTE 30 36010 Roana VI', 'wp-google-maps');
791
- __('Poste - Ufficio Postale - CAMPOROVERE - VI-69021', 'wp-google-maps');
792
- __('STREDA DOLOMITES 203 38032 Canazei TN', 'wp-google-maps');
793
- __('Poste - Ufficio Postale - CANAZEI DI FASSA - TN-74066', 'wp-google-maps');
794
- __('FRAZIONE MEZZAVILLA 7/BIS 10080 Canischio TO', 'wp-google-maps');
795
- __('Poste - Ufficio Postale - CANISCHIO - TO-63710', 'wp-google-maps');
796
- __('VIA ALCIDE DE GASPERI 18 12040 Govone CN', 'wp-google-maps');
797
- __('Poste - Ufficio Postale - CANOVE - CN-23276', 'wp-google-maps');
798
- __('VIA UMBERTO I 27 15060 Cantalupo Ligure AL', 'wp-google-maps');
799
- __('Poste - Ufficio Postale - CANTALUPO LIGURE - AL-01357', 'wp-google-maps');
800
- __('VIA LUIGI ORNATO 33 12030 Caramagna Piemonte CN', 'wp-google-maps');
801
- __('Poste - Ufficio Postale - CARAMAGNA PIEMONTE - CN-23041', 'wp-google-maps');
802
- __('VIA MILITARE 9 22010 Carlazzo CO', 'wp-google-maps');
803
- __('Poste - Ufficio Postale - CARLAZZO - CO-20051', 'wp-google-maps');
804
- __('VIA PONTERISI 13 87050 Carpanzano CS', 'wp-google-maps');
805
- __('Poste - Ufficio Postale - CARPANZANO - CS-21029', 'wp-google-maps');
806
- __('PIAZZA VOLONTARI DELLA LIBERTA\' 7 28064 Carpignano Sesia NO', 'wp-google-maps');
807
- __('Poste - Ufficio Postale - CARPIGNANO SESIA - NO-41059', 'wp-google-maps');
808
- __('VIA MAZZINI 21 12061 Carrù CN', 'wp-google-maps');
809
- __('Poste - Ufficio Postale - CARRU\' - CN-23043', 'wp-google-maps');
810
- __('FRAZIONE CASANOVA DI DESTRA SNC 27050 Santa Margherita di Staffora PV', 'wp-google-maps');
811
- __('Poste - Ufficio Postale - CASANOVA DI DESTRA - PV-45020', 'wp-google-maps');
812
- __('VIA ANTONIO GRAMSCI 6 13030 Casanova Elvo VC', 'wp-google-maps');
813
- __('Poste - Ufficio Postale - CASANOVA ELVO - VC-90138', 'wp-google-maps');
814
- __('VIA ROMA 4 13866 Casapinta BI', 'wp-google-maps');
815
- __('Poste - Ufficio Postale - CASAPINTA - BI-90139', 'wp-google-maps');
816
- __('VIA RIMEMBRANZE 1 24060 Casazza BG', 'wp-google-maps');
817
- __('Poste - Ufficio Postale - CASAZZA - BG-10035', 'wp-google-maps');
818
- __('PIAZZA ARNABOLDI 5 27040 Campospinoso PV', 'wp-google-maps');
819
- __('Poste - Ufficio Postale - CASENOVE - PV-45204', 'wp-google-maps');
820
- __('VIA GIUSEPPE GARIBALDI 17/A 24020 Casnigo BG', 'wp-google-maps');
821
- __('Poste - Ufficio Postale - CASNIGO - BG-10179', 'wp-google-maps');
822
- __('VIA MONTAREZE 10 33010 Cassacco UD', 'wp-google-maps');
823
- __('Poste - Ufficio Postale - CASSACCO - UD-66023', 'wp-google-maps');
824
- __('VIA ARZANI 93 15063 Cassano Spinola AL', 'wp-google-maps');
825
- __('Poste - Ufficio Postale - CASSANO SPINOLA - AL-01057', 'wp-google-maps');
826
- __('VIA RONCACCIO 15 21030 Cassano Valcuvia VA', 'wp-google-maps');
827
- __('Poste - Ufficio Postale - CASSANO VALCUVIA - VA-89227', 'wp-google-maps');
828
- __('VIA GARIBALDI 10 15016 Cassine AL', 'wp-google-maps');
829
- __('Poste - Ufficio Postale - CASSINE - AL-01059', 'wp-google-maps');
830
- __('VIA GARDESANA 22 37018 Malcesine VR', 'wp-google-maps');
831
- __('Poste - Ufficio Postale - CASSONE - VR-68154', 'wp-google-maps');
832
- __('VIA GIACOMO MATTEOTTI 12 46033 Castel d\'Ario MN', 'wp-google-maps');
833
- __('Poste - Ufficio Postale - CASTEL D\'ARIO - MN-35021', 'wp-google-maps');
834
- __('VIA ROSARIO SCARAMELLA 15/17 84020 Castelcivita SA', 'wp-google-maps');
835
- __('Poste - Ufficio Postale - CASTELCIVITA - SA-57052', 'wp-google-maps');
836
- __('VIA GIOVANNI PELIZZA 3 15077 Predosa AL', 'wp-google-maps');
837
- __('Poste - Ufficio Postale - CASTELFERRO - AL-01065', 'wp-google-maps');
838
- __('VIA ROMA 61 15020 Castelletto Merli AL', 'wp-google-maps');
839
- __('Poste - Ufficio Postale - CASTELLETTO MERLI - AL-01356', 'wp-google-maps');
840
- __('VIA GUGLIELMO MARCONI 1 12050 Castellinaldo CN', 'wp-google-maps');
841
- __('Poste - Ufficio Postale - CASTELLINALDO - CN-23049', 'wp-google-maps');
842
- __('PIAZZA CADUTI 1 12020 Castelmagno CN', 'wp-google-maps');
843
- __('Poste - Ufficio Postale - CASTELMAGNO - CN-23294', 'wp-google-maps');
844
- __('PIAZZA MARCONI 1 15017 Castelnuovo Bormida AL', 'wp-google-maps');
845
- __('Poste - Ufficio Postale - CASTELNUOVO BORMIDA - AL-01074', 'wp-google-maps');
846
- __('VIA PORTELLE DI SOTTO SNC 82030 Castelpoto BN', 'wp-google-maps');
847
- __('Poste - Ufficio Postale - CASTELPOTO - BN-09017', 'wp-google-maps');
848
- __('VIA PIAVE 2 21010 Castelveccana VA', 'wp-google-maps');
849
- __('Poste - Ufficio Postale - CASTELVECCANA - VA-89141', 'wp-google-maps');
850
- __('VIA ALLA CHIESA 40 22023 Casasco d\'Intelvi CO', 'wp-google-maps');
851
- __('Poste - Ufficio Postale - CASTIGLIONE D\'INTELVI - CO-20059', 'wp-google-maps');
852
- __('VIA CIRCONVALLAZIONE 7 12053 Castiglione Tinella CN', 'wp-google-maps');
853
- __('Poste - Ufficio Postale - CASTIGLIONE TINELLA - CN-23052', 'wp-google-maps');
854
- __('VIA ANDREA ZUBANI 1 24063 Castro BG', 'wp-google-maps');
855
- __('Poste - Ufficio Postale - CASTRO - BG-10055', 'wp-google-maps');
856
- __('PIAZZA XXV APRILE 3 22010 Cavargna CO', 'wp-google-maps');
857
- __('Poste - Ufficio Postale - CAVARGNA - CO-20361', 'wp-google-maps');
858
- __('VIA ROMA 6 15010 Cavatore AL', 'wp-google-maps');
859
- __('Poste - Ufficio Postale - CAVATORE - AL-01079', 'wp-google-maps');
860
- __('VIA SAN ROCCO 12 33020 Cavazzo Carnico UD', 'wp-google-maps');
861
- __('Poste - Ufficio Postale - CAVAZZO CARNICO - UD-66211', 'wp-google-maps');
862
- __('VIA ROMA 97 87050 Cellara CS', 'wp-google-maps');
863
- __('Poste - Ufficio Postale - CELLARA - CS-21037', 'wp-google-maps');
864
- __('P.ZZA EUROPA 1 22020 Cerano d\'Intelvi CO', 'wp-google-maps');
865
- __('Poste - Ufficio Postale - CERANO D\'INTELVI - CO-20356', 'wp-google-maps');
866
- __('PIAZZA MUNICIPIO 17 27010 Ceranova PV', 'wp-google-maps');
867
- __('Poste - Ufficio Postale - CERANOVA - PV-45210', 'wp-google-maps');
868
- __('VIA TAVIELE 2 33020 Cercivento UD', 'wp-google-maps');
869
- __('Poste - Ufficio Postale - CERCIVENTO - UD-66199', 'wp-google-maps');
870
- __('BORGATA CAPOLUOGO 1 10080 Ceresole Reale TO', 'wp-google-maps');
871
- __('Poste - Ufficio Postale - CERESOLE REALE - TO-63711', 'wp-google-maps');
872
- __('VIA FOSSANO 5 12040 Cervere CN', 'wp-google-maps');
873
- __('Poste - Ufficio Postale - CERVERE - CN-23058', 'wp-google-maps');
874
- __('PIAZZA MARCONI 16 28891 Cesara VB', 'wp-google-maps');
875
- __('Poste - Ufficio Postale - CESARA - VB-41078', 'wp-google-maps');
876
- __('FRAZIONE PONT SUAZ 23 11020 Charvensod AO', 'wp-google-maps');
877
- __('Poste - Ufficio Postale - CHARVENSOD - AO-98174', 'wp-google-maps');
878
- __('VIA NAZARIO SAURO 10 33048 Chiopris-Viscone UD', 'wp-google-maps');
879
- __('Poste - Ufficio Postale - CHIOPRIS - UD-66268', 'wp-google-maps');
880
- __('VIA MASARIE\' 180 32040 Cibiana di Cadore BL', 'wp-google-maps');
881
- __('Poste - Ufficio Postale - CIBIANA DI CADORE - BL-08109', 'wp-google-maps');
882
- __('VIA COLLA 15 10090 Cinzano TO', 'wp-google-maps');
883
- __('Poste - Ufficio Postale - CINZANO - TO-63715', 'wp-google-maps');
884
- __('PIAZZA SAN GIOVANNI 26 20080 Cisliano MI', 'wp-google-maps');
885
- __('Poste - Ufficio Postale - CISLIANO - MI-38448', 'wp-google-maps');
886
- __('VIA VITTORIO VENETO 2 36020 Cismon del Grappa VI', 'wp-google-maps');
887
- __('Poste - Ufficio Postale - CISMON DEL GRAPPA - VI-69033', 'wp-google-maps');
888
- __('PIAZZA ITALIA 4/C 25030 Comezzano-Cizzago BS', 'wp-google-maps');
889
- __('Poste - Ufficio Postale - CIZZAGO - BS-12223', 'wp-google-maps');
890
- __('FRAZIONE MADONNA DELLA NEVE 37 12060 Clavesana CN', 'wp-google-maps');
891
- __('Poste - Ufficio Postale - CLAVESANA - CN-23063', 'wp-google-maps');
892
- __('VIA ERMIZADA 12 21050 Clivio VA', 'wp-google-maps');
893
- __('Poste - Ufficio Postale - CLIVIO - VA-89149', 'wp-google-maps');
894
- __('VIA ROMA 23 33040 Grimacco UD', 'wp-google-maps');
895
- __('Poste - Ufficio Postale - CLODIG - UD-66191', 'wp-google-maps');
896
- __('VIA CAPOLUOGO 203 10070 Coassolo Torinese TO', 'wp-google-maps');
897
- __('Poste - Ufficio Postale - COASSOLO TORINESE - TO-63106', 'wp-google-maps');
898
- __('VIA MILANO 52 21034 Cocquio-Trevisago VA', 'wp-google-maps');
899
- __('Poste - Ufficio Postale - COCQUIO - VA-89150', 'wp-google-maps');
900
- __('VIA ANGELO DAL ZOTTO 83 36010 Cogollo del Cengio VI', 'wp-google-maps');
901
- __('Poste - Ufficio Postale - COGOLLO DEL CENGIO - VI-69034', 'wp-google-maps');
902
- __('FRAZIONE COL SAN GIOVANNI DI VIU\' 37 10070 Viù TO', 'wp-google-maps');
903
- __('Poste - Ufficio Postale - COL SAN GIOVANNI - TO-63458', 'wp-google-maps');
904
- __('VIA BONFANTI 40 24020 Colzate BG', 'wp-google-maps');
905
- __('Poste - Ufficio Postale - COLZATE - BG-10275', 'wp-google-maps');
906
- __('PIAZZA GUGLIELMO MARCONI 1 21020 Comabbio VA', 'wp-google-maps');
907
- __('Poste - Ufficio Postale - COMABBIO - VA-89264', 'wp-google-maps');
908
- __('VIA DEL BORGO 22 53040 Radicofani SI', 'wp-google-maps');
909
- __('Poste - Ufficio Postale - CONTIGNANO - SI-59049A01', 'wp-google-maps');
910
- __('VIA BRANCILIONE 12 24030 Corna Imagna BG', 'wp-google-maps');
911
- __('Poste - Ufficio Postale - CORNA IMAGNA - BG-10217', 'wp-google-maps');
912
- __('PIAZZA DIVISIONE JULIA 14 33040 Corno di Rosazzo UD', 'wp-google-maps');
913
- __('Poste - Ufficio Postale - CORNO DI ROSAZZO - UD-66040', 'wp-google-maps');
914
- __('VIA PORLEZZA 1 22010 Corrido CO', 'wp-google-maps');
915
- __('Poste - Ufficio Postale - CORRIDO - CO-20074', 'wp-google-maps');
916
- __('PIAZZA ALDO MORO 2 24050 Cortenuova BG', 'wp-google-maps');
917
- __('Poste - Ufficio Postale - CORTENUOVA - BG-10270', 'wp-google-maps');
918
- __('VIA DEL COMMERCIO 37 33030 Coseano UD', 'wp-google-maps');
919
- __('Poste - Ufficio Postale - COSEANO - UD-66042', 'wp-google-maps');
920
- __('VIA ADUA 2 17017 Cosseria SV', 'wp-google-maps');
921
- __('Poste - Ufficio Postale - COSSERIA - SV-86214', 'wp-google-maps');
922
- __('VIA KENNEDY 2 24060 Costa di Mezzate BG', 'wp-google-maps');
923
- __('Poste - Ufficio Postale - COSTA DI MEZZATE - BG-10208', 'wp-google-maps');
924
- __('VIA MIRAVALLE 9 24030 Costa Valle Imagna BG', 'wp-google-maps');
925
- __('Poste - Ufficio Postale - COSTA VALLE IMAGNA - BG-10195', 'wp-google-maps');
926
- __('PIAZZA SAN BERNARDINO 1 15010 Cremolino AL', 'wp-google-maps');
927
- __('Poste - Ufficio Postale - CREMOLINO - AL-01094', 'wp-google-maps');
928
- __('PIAZZA DON LORENZO FRANCIONE 31 28862 Crodo VB', 'wp-google-maps');
929
- __('Poste - Ufficio Postale - CRODO - VB-41095', 'wp-google-maps');
930
- __('VIA GRAMSCI 12 21050 Cuasso al Monte VA', 'wp-google-maps');
931
- __('Poste - Ufficio Postale - CUASSO AL MONTE - VA-89154', 'wp-google-maps');
932
- __('VIA ROMA 38 15040 Cuccaro Monferrato AL', 'wp-google-maps');
933
- __('Poste - Ufficio Postale - CUCCARO MONFERRATO - AL-01096', 'wp-google-maps');
934
- __('PIAZZA GUGLIELMO MARCONI 7 10090 Cuceglio TO', 'wp-google-maps');
935
- __('Poste - Ufficio Postale - CUCEGLIO - TO-63115', 'wp-google-maps');
936
- __('VIA MONTE DI PIETA\' 2 82033 Cusano Mutri BN', 'wp-google-maps');
937
- __('Poste - Ufficio Postale - CUSANO MUTRI - BN-09027', 'wp-google-maps');
938
- __('PIAZZA RENZO SPADA 22 12014 Demonte CN', 'wp-google-maps');
939
- __('Poste - Ufficio Postale - DEMONTE - CN-23074', 'wp-google-maps');
940
- __('VIA MARCONI 6 38010 Denno TN', 'wp-google-maps');
941
- __('Poste - Ufficio Postale - DENNO - TN-74094', 'wp-google-maps');
942
- __('VIA VENTI SETTEMBRE 24 23824 Dervio LC', 'wp-google-maps');
943
- __('Poste - Ufficio Postale - DERVIO - LC-20084', 'wp-google-maps');
944
- __('PIAZZA CASTELLO 19 13034 Desana VC', 'wp-google-maps');
945
- __('Poste - Ufficio Postale - DESANA - VC-90158', 'wp-google-maps');
946
- __('VIA NAZIONALE SNC 87066 Longobucco CS', 'wp-google-maps');
947
- __('Poste - Ufficio Postale - DESTRO - CS-21187', 'wp-google-maps');
948
- __('VIA MELORIA 14 18013 Diano Castello IM', 'wp-google-maps');
949
- __('Poste - Ufficio Postale - DIANO CASTELLO - IM-50071', 'wp-google-maps');
950
- __('VIA SAN GALLO 2 33030 Dignano UD', 'wp-google-maps');
951
- __('Poste - Ufficio Postale - DIGNANO - UD-66044', 'wp-google-maps');
952
- __('VIA CAMPIGLIO 134 38025 Dimaro TN', 'wp-google-maps');
953
- __('Poste - Ufficio Postale - DIMARO - TN-74096', 'wp-google-maps');
954
- __('PIAZZA DEI MARTIRI 15 87045 Dipignano CS', 'wp-google-maps');
955
- __('Poste - Ufficio Postale - DIPIGNANO - CS-21055', 'wp-google-maps');
956
- __('VIA VITTORIO VENETO 17 28010 Divignano NO', 'wp-google-maps');
957
- __('Poste - Ufficio Postale - DIVIGNANO - NO-41313', 'wp-google-maps');
958
- __('VIA MARTIRI DELLA LIBERTA\' 12 13893 Donato BI', 'wp-google-maps');
959
- __('Poste - Ufficio Postale - DONATO - BI-90159', 'wp-google-maps');
960
- __('VIA DON PIETRO RIGOLI 14 24010 Dossena BG', 'wp-google-maps');
961
- __('Poste - Ufficio Postale - DOSSENA - BG-10201', 'wp-google-maps');
962
- __('VIA ROMA 18 20070 Dresano MI', 'wp-google-maps');
963
- __('Poste - Ufficio Postale - DRESANO - MI-38586', 'wp-google-maps');
964
- __('VIA CADORNA 1 21010 Dumenza VA', 'wp-google-maps');
965
- __('Poste - Ufficio Postale - DUMENZA - VA-89159', 'wp-google-maps');
966
- __('VIA LEONARDO BIANCHI 6 82015 Durazzano BN', 'wp-google-maps');
967
- __('Poste - Ufficio Postale - DURAZZANO - BN-09029', 'wp-google-maps');
968
- __('VIA PAPA GIOVANNI XXIII 12 23848 Ello LC', 'wp-google-maps');
969
- __('Poste - Ufficio Postale - ELLO - LC-20335', 'wp-google-maps');
970
- __('VIA NOVE OTTOBRE 2 33080 Erto e Casso PN', 'wp-google-maps');
971
- __('Poste - Ufficio Postale - ERTO E CASSO - PN-91193', 'wp-google-maps');
972
- __('VIA PARROCCHIA 3 09052 Escolca SU', 'wp-google-maps');
973
- __('Poste - Ufficio Postale - ESCOLCA - SU-13411', 'wp-google-maps');
974
- __('PIAZZA EMILE CHANOUX 11 11014 Etroubles AO', 'wp-google-maps');
975
- __('Poste - Ufficio Postale - ETROUBLES - AO-98124', 'wp-google-maps');
976
- __('VIA ARCHIONATA 8 28073 Fara Novarese NO', 'wp-google-maps');
977
- __('Poste - Ufficio Postale - FARA NOVARESE - NO-41103', 'wp-google-maps');
978
- __('VIA CENTRO 46 41045 Montefiorino MO', 'wp-google-maps');
979
- __('Poste - Ufficio Postale - FARNETA - MO-39150', 'wp-google-maps');
980
- __('PIAZZA CADUTI 5 25020 Fiesse BS', 'wp-google-maps');
981
- __('Poste - Ufficio Postale - FIESSE - BS-12081', 'wp-google-maps');
982
- __('VIA GUGLIELMO MARCONI 27 10010 Fiorano Canavese TO', 'wp-google-maps');
983
- __('Poste - Ufficio Postale - FIORANO CANAVESE - TO-63129', 'wp-google-maps');
984
- __('VIA TOBRUK 44 89050 Fiumara RC', 'wp-google-maps');
985
- __('Poste - Ufficio Postale - FIUMARA - RC-53040', 'wp-google-maps');
986
- __('VICO I RISORGIMENTO 12 87030 Fiumefreddo Bruzio CS', 'wp-google-maps');
987
- __('Poste - Ufficio Postale - FIUMEFREDDO BRUZIO - CS-21063', 'wp-google-maps');
988
- __('VIA GIACOMO MATTEOTTI 13 62025 Fiuminata MC', 'wp-google-maps');
989
- __('Poste - Ufficio Postale - FIUMINATA - MC-34026', 'wp-google-maps');
990
- __('PIAZZA DON STEFENELLI 3 38013 Fondo TN', 'wp-google-maps');
991
- __('Poste - Ufficio Postale - FONDO IN VAL DI NON - TN-74024', 'wp-google-maps');
992
- __('VIA EMILE CHANOUX 2 11020 Fontainemore AO', 'wp-google-maps');
993
- __('Poste - Ufficio Postale - FONTAINEMORE - AO-98125', 'wp-google-maps');
994
- __('VIA CAMPELLO 2 24060 Fonteno BG', 'wp-google-maps');
995
- __('Poste - Ufficio Postale - FONTENO - BG-10258', 'wp-google-maps');
996
- __('VIA MOIA 24 24010 Foppolo BG', 'wp-google-maps');
997
- __('Poste - Ufficio Postale - FOPPOLO - BG-10216', 'wp-google-maps');
998
- __('VIA FUNARO 27 81040 Formicola CE', 'wp-google-maps');
999
- __('Poste - Ufficio Postale - FORMICOLA - CE-16052', 'wp-google-maps');
1000
- __('VIA FONTANA 1 27040 Fortunago PV', 'wp-google-maps');
1001
- __('Poste - Ufficio Postale - FORTUNAGO - PV-45051', 'wp-google-maps');
1002
- __('VIA GALILEO GALILEI 66 45030 Frassinelle Polesine RO', 'wp-google-maps');
1003
- __('Poste - Ufficio Postale - FRASSINELLE POLESINE - RO-56067', 'wp-google-maps');
1004
- __('PIAZZA VITTORIO EMANUELE 21 23010 Fusine SO', 'wp-google-maps');
1005
- __('Poste - Ufficio Postale - FUSINE - SO-61127', 'wp-google-maps');
1006
- __('PIAZZA ALDO MORO 1 15010 Gamalero AL', 'wp-google-maps');
1007
- __('Poste - Ufficio Postale - GAMALERO - AL-01109', 'wp-google-maps');
1008
- __('VIA MANTOVA 1 25020 Gambara BS', 'wp-google-maps');
1009
- __('Poste - Ufficio Postale - GAMBARA - BS-12084', 'wp-google-maps');
1010
- __('VIA VITTORIO EMANUELE 20 24020 Gandellino BG', 'wp-google-maps');
1011
- __('Poste - Ufficio Postale - GANDELLINO - BG-10156', 'wp-google-maps');
1012
- __('VIA ROMA 9 15054 Fabbrica Curone AL', 'wp-google-maps');
1013
- __('Poste - Ufficio Postale - GARADASSI - AL-01373', 'wp-google-maps');
1014
- __('VIA GARIBALDI 26 12075 Garessio CN', 'wp-google-maps');
1015
- __('Poste - Ufficio Postale - GARESSIO BORGO PONTE - CN-23091', 'wp-google-maps');
1016
- __('VIA GUGLIELMO MARCONI 87/A 46040 Gazoldo degli Ippoliti MN', 'wp-google-maps');
1017
- __('Poste - Ufficio Postale - GAZOLDO DEGLI IPPOLITI - MN-35038', 'wp-google-maps');
1018
- __('PIAZZA DEL TOCCO SNC 89040 Gerace RC', 'wp-google-maps');
1019
- __('Poste - Ufficio Postale - GERACE - RC-53045', 'wp-google-maps');
1020
- __('PIAZZA UMBERTO I 25 27010 Gerenzago PV', 'wp-google-maps');
1021
- __('Poste - Ufficio Postale - GERENZAGO - PV-45212', 'wp-google-maps');
1022
- __('VIA PAPA GIOVANNI XXIII 4 24012 Gerosa BG', 'wp-google-maps');
1023
- __('Poste - Ufficio Postale - GEROSA - BG-10021A01', 'wp-google-maps');
1024
- __('PIAZZA UMBERTO I 12 13030 Ghislarengo VC', 'wp-google-maps');
1025
- __('Poste - Ufficio Postale - GHISLARENGO - VC-90168', 'wp-google-maps');
1026
- __('VIA MUNICIPIO 9 81042 Giano Vetusto CE', 'wp-google-maps');
1027
- __('Poste - Ufficio Postale - GIANO VETUSTO - CE-16142', 'wp-google-maps');
1028
- __('VIA VITTORIO EMANUELE 21 15036 Giarole AL', 'wp-google-maps');
1029
- __('Poste - Ufficio Postale - GIAROLE - AL-01112', 'wp-google-maps');
1030
- __('PIAZZA DELLA CHIESA 2 12070 Gorzegno CN', 'wp-google-maps');
1031
- __('Poste - Ufficio Postale - GORZEGNO - CN-23428', 'wp-google-maps');
1032
- __('PIAZZA REGINA MARGHERITA 22 33039 Sedegliano UD', 'wp-google-maps');
1033
- __('Poste - Ufficio Postale - GRADISCA DI SEDEGLIANO - UD-66222', 'wp-google-maps');
1034
- __('STRADA REGIONALE 44 3 11025 Gressoney-Saint-Jean AO', 'wp-google-maps');
1035
- __('Poste - Ufficio Postale - GRESSONEY SAINT JEAN - AO-98130', 'wp-google-maps');
1036
- __('VIA SALVO D\'ACQUISTO 1 15010 Grognardo AL', 'wp-google-maps');
1037
- __('Poste - Ufficio Postale - GROGNARDO - AL-01298', 'wp-google-maps');
1038
- __('PIAZZA QUATTRO NOVEMBRE 17 10070 Grosso TO', 'wp-google-maps');
1039
- __('Poste - Ufficio Postale - GROSSO CANAVESE - TO-63550', 'wp-google-maps');
1040
- __('VIA ROMA 37 36040 Grumolo delle Abbadesse VI', 'wp-google-maps');
1041
- __('Poste - Ufficio Postale - GRUMOLO DELLE ABBADESSE - VI-69050', 'wp-google-maps');
1042
- __('CONTRADA TERME LUIGIANE 12 87020 Acquappesa CS', 'wp-google-maps');
1043
- __('Poste - Ufficio Postale - GUARDIA PIEMONTESE TERME - CS-21206', 'wp-google-maps');
1044
- __('VIA NAZIONALE 107 38050 Imer TN', 'wp-google-maps');
1045
- __('Poste - Ufficio Postale - IMER - TN-74638', 'wp-google-maps');
1046
- __('VIA CAMBIESSO 1 28816 Intragna VB', 'wp-google-maps');
1047
- __('Poste - Ufficio Postale - INTRAGNA - VB-41498', 'wp-google-maps');
1048
- __('VIA MUNICIPIO 2 10080 Issiglio TO', 'wp-google-maps');
1049
- __('Poste - Ufficio Postale - ISSIGLIO - TO-63716', 'wp-google-maps');
1050
- __('PIAZZA FRIULI 1 33010 Venzone UD', 'wp-google-maps');
1051
- __('Poste - Ufficio Postale - LA CARNIA - UD-66068', 'wp-google-maps');
1052
- __('VIA ROMA 73 89050 Laganadi RC', 'wp-google-maps');
1053
- __('Poste - Ufficio Postale - LAGANADI - RC-53051', 'wp-google-maps');
1054
- __('VIA ALESSANDRO VOLTA 2 22045 Lambrugo CO', 'wp-google-maps');
1055
- __('Poste - Ufficio Postale - LAMBRUGO - CO-20108', 'wp-google-maps');
1056
- __('VIA ROMA 23 87050 Lappano CS', 'wp-google-maps');
1057
- __('Poste - Ufficio Postale - LAPPANO - CS-21074', 'wp-google-maps');
1058
- __('VIA ROMA 30 36040 Lastebasse VI', 'wp-google-maps');
1059
- __('Poste - Ufficio Postale - LASTEBASSE - VI-69053', 'wp-google-maps');
1060
- __('VIA PAPA GIOVANNI XXIII 8 24026 Leffe BG', 'wp-google-maps');
1061
- __('Poste - Ufficio Postale - LEFFE - BG-10067', 'wp-google-maps');
1062
- __('PIAZZA SAN BIAGIO 27 33050 Lestizza UD', 'wp-google-maps');
1063
- __('Poste - Ufficio Postale - LESTIZZA - UD-66182', 'wp-google-maps');
1064
- __('LOCALITA\' CHIESA 4 22025 Lezzeno CO', 'wp-google-maps');
1065
- __('Poste - Ufficio Postale - LEZZENO - CO-20114', 'wp-google-maps');
1066
- __('VIA DEI FEACI 124 88069 Squillace CZ', 'wp-google-maps');
1067
- __('Poste - Ufficio Postale - LIDO DI SQUILLACE - CZ-18305', 'wp-google-maps');
1068
- __('VIA DELLA LIBERTA\' 4 23827 Lierna LC', 'wp-google-maps');
1069
- __('Poste - Ufficio Postale - LIERNA - LC-20115', 'wp-google-maps');
1070
- __('VIA ENZO BAGNOLI 6 42032 Ligonchio RE', 'wp-google-maps');
1071
- __('Poste - Ufficio Postale - LIGONCHIO - RE-54040', 'wp-google-maps');
1072
- __('PIAZZA SAN FRANCESCO 1 20060 Liscate MI', 'wp-google-maps');
1073
- __('Poste - Ufficio Postale - LISCATE - MI-38501', 'wp-google-maps');
1074
- __('VIA ALDO BRACCO 29 12070 Lisio CN', 'wp-google-maps');
1075
- __('Poste - Ufficio Postale - LISIO - CN-23429', 'wp-google-maps');
1076
- __('VIA GIAN GIACOMO MORANDO 5 25030 Lograto BS', 'wp-google-maps');
1077
- __('Poste - Ufficio Postale - LOGRATO - BS-12102', 'wp-google-maps');
1078
- __('VIA ROMA 104 08040 Lotzorai NU', 'wp-google-maps');
1079
- __('Poste - Ufficio Postale - LOTZORAI - NU-80141', 'wp-google-maps');
1080
- __('PIAZZA ROMA 1 21040 Lozza VA', 'wp-google-maps');
1081
- __('Poste - Ufficio Postale - LOZZA - VA-89257', 'wp-google-maps');
1082
- __('VIA UMBERTO I 10 10080 Lugnacco TO', 'wp-google-maps');
1083
- __('Poste - Ufficio Postale - LUGNACCO - TO-63170', 'wp-google-maps');
1084
- __('VIA CAVOUR 9 10080 Lusigliè TO', 'wp-google-maps');
1085
- __('Poste - Ufficio Postale - LUSIGLIE\' - TO-63173', 'wp-google-maps');
1086
- __('STRADA MACELLAI 4 12060 Pocapaglia CN', 'wp-google-maps');
1087
- __('Poste - Ufficio Postale - MACELLAI - CN-23290', 'wp-google-maps');
1088
- __('VIA ALLE SCUOLE 8 23024 Madesimo SO', 'wp-google-maps');
1089
- __('Poste - Ufficio Postale - MADESIMO - SO-61027', 'wp-google-maps');
1090
- __('PIAZZA PRIMO MAGGIO 1 28894 Madonna del Sasso VB', 'wp-google-maps');
1091
- __('Poste - Ufficio Postale - MADONNA DEL SASSO - VB-41308', 'wp-google-maps');
1092
- __('PIAZZA ALCIDE DEGASPERI 7 38076 Lasino TN', 'wp-google-maps');
1093
- __('Poste - Ufficio Postale - MADRUZZO - TN-74118', 'wp-google-maps');
1094
- __('PIAZZA SANTA MARIA 18 23814 Cremeno LC', 'wp-google-maps');
1095
- __('Poste - Ufficio Postale - MAGGIO - LC-20312A01', 'wp-google-maps');
1096
- __('PIAZZA VENTI SETTEMBRE 2 10030 Maglione TO', 'wp-google-maps');
1097
- __('Poste - Ufficio Postale - MAGLIONE - TO-63178', 'wp-google-maps');
1098
- __('VIA RE UMBERTO 11 12056 Mango CN', 'wp-google-maps');
1099
- __('Poste - Ufficio Postale - MANGO - CN-23113', 'wp-google-maps');
1100
- __('VIA GIORGIO BERGESIO 1 12030 Marene CN', 'wp-google-maps');
1101
- __('Poste - Ufficio Postale - MARENE - CN-23115', 'wp-google-maps');
1102
- __('VIA NAZIONALE 111 87020 Guardia Piemontese CS', 'wp-google-maps');
1103
- __('Poste - Ufficio Postale - MARINA DI GUARDIA PIEMONTESE - CS-21281', 'wp-google-maps');
1104
- __('VIA CRISTOFORO COLOMBO 2 84066 Pisciotta SA', 'wp-google-maps');
1105
- __('Poste - Ufficio Postale - MARINA DI PISCIOTTA - SA-57398', 'wp-google-maps');
1106
- __('PIAZZA DEL POPOLO 1 51010 Marliana PT', 'wp-google-maps');
1107
- __('Poste - Ufficio Postale - MARLIANA - PT-85147', 'wp-google-maps');
1108
- __('VIA ROMA 5 27010 Marzano PV', 'wp-google-maps');
1109
- __('Poste - Ufficio Postale - MARZANO - PV-45187', 'wp-google-maps');
1110
- __('VIA CALDARONI SNC 81035 Marzano Appio CE', 'wp-google-maps');
1111
- __('Poste - Ufficio Postale - MARZANO APPIO - CE-16068', 'wp-google-maps');
1112
- __('VIA BATTILOCCHI 43 43030 Calestano PR', 'wp-google-maps');
1113
- __('Poste - Ufficio Postale - MARZOLARA - PR-44013A01', 'wp-google-maps');
1114
- __('VIA GIUSEPPE VERDI 8 22026 Maslianico CO', 'wp-google-maps');
1115
- __('Poste - Ufficio Postale - MASLIANICO - CO-20131', 'wp-google-maps');
1116
- __('VIA MARTIRI DELLA LIBERTA\' 35 28895 Massiola VB', 'wp-google-maps');
1117
- __('Poste - Ufficio Postale - MASSIOLA - VB-41494', 'wp-google-maps');
1118
- __('REGIONE CASORANO SOTTANO 42 15010 Merana AL', 'wp-google-maps');
1119
- __('Poste - Ufficio Postale - MERANA - AL-01131', 'wp-google-maps');
1120
- __('VIA PAPA GIOVANNI XXIII 1 10010 Mercenasco TO', 'wp-google-maps');
1121
- __('Poste - Ufficio Postale - MERCENASCO - TO-63717', 'wp-google-maps');
1122
- __('VIA NAZIONALE 3/E 38020 Commezzadura TN', 'wp-google-maps');
1123
- __('Poste - Ufficio Postale - MESTRIAGO - TN-74351', 'wp-google-maps');
1124
- __('VIA CARLO SPERATI 8 28010 Miasino NO', 'wp-google-maps');
1125
- __('Poste - Ufficio Postale - MIASINO - NO-41151', 'wp-google-maps');
1126
- __('CORSO VITTORIO EMANUELE 69 84010 Minori SA', 'wp-google-maps');
1127
- __('Poste - Ufficio Postale - MINORI - SA-57113', 'wp-google-maps');
1128
- __('VIA PROVINCIALE 3 55034 Minucciano LU', 'wp-google-maps');
1129
- __('Poste - Ufficio Postale - MINUCCIANO - LU-33161', 'wp-google-maps');
1130
- __('VIA DAVIDE SPADA 69 12010 Moiola CN', 'wp-google-maps');
1131
- __('Poste - Ufficio Postale - MOIOLA - CN-23119', 'wp-google-maps');
1132
- __('VIA PROVINCIALE MONGIA 8 12070 Mombasiglio CN', 'wp-google-maps');
1133
- __('Poste - Ufficio Postale - MOMBASIGLIO - CN-23122', 'wp-google-maps');
1134
- __('VIA CASTELLO 4 10020 Mombello di Torino TO', 'wp-google-maps');
1135
- __('Poste - Ufficio Postale - MOMBELLO DI TORINO - TO-63186', 'wp-google-maps');
1136
- __('PIAZZA CELESTINO PLACANICA SNC 89040 Monasterace RC', 'wp-google-maps');
1137
- __('Poste - Ufficio Postale - MONASTERACE - RC-53068A01', 'wp-google-maps');
1138
- __('VIA UMBERTO I 18 12080 Monasterolo Casotto CN', 'wp-google-maps');
1139
- __('Poste - Ufficio Postale - MONASTEROLO CASOTTO - CN-23351', 'wp-google-maps');
1140
- __('VIA CESARE BATTISTI 3 38025 Monclassico TN', 'wp-google-maps');
1141
- __('Poste - Ufficio Postale - MONCLASSICO - TN-74636', 'wp-google-maps');
1142
- __('VIA GIACOMO LEOPARDI 6 63842 Monsampietro Morico FM', 'wp-google-maps');
1143
- __('Poste - Ufficio Postale - MONSAMPIETRO MORICO - FM-05177', 'wp-google-maps');
1144
- __('VIA ROMA 1 27040 Montalto Pavese PV', 'wp-google-maps');
1145
- __('Poste - Ufficio Postale - MONTALTO PAVESE - PV-45073', 'wp-google-maps');
1146
- __('LARGO DANTE ALIGHIERI 4/A 06010 Monte Santa Maria Tiberina PG', 'wp-google-maps');
1147
- __('Poste - Ufficio Postale - MONTE SANTA MARIA TIBERINA - PG-46388', 'wp-google-maps');
1148
- __('VIALE RENATO ZEPPA 4 82025 Montefalcone di Val Fortore BN', 'wp-google-maps');
1149
- __('Poste - Ufficio Postale - MONTEFALCONE DI VALFORTORE - BN-09042', 'wp-google-maps');
1150
- __('PIAZZA UMBERTO I 19 63858 Montefortino FM', 'wp-google-maps');
1151
- __('Poste - Ufficio Postale - MONTEFORTINO - FM-05040', 'wp-google-maps');
1152
- __('VIA XXV APRILE 5 22060 Carimate CO', 'wp-google-maps');
1153
- __('Poste - Ufficio Postale - MONTESOLARO - CO-20349', 'wp-google-maps');
1154
- __('PIAZZA FRATELLI BANDIERA 5 10020 Monteu da Po TO', 'wp-google-maps');
1155
- __('Poste - Ufficio Postale - MONTEU DA PO - TO-63194', 'wp-google-maps');
1156
- __('VIA BRIANZA 9 22030 Montorfano CO', 'wp-google-maps');
1157
- __('Poste - Ufficio Postale - MONTORFANO - CO-20226', 'wp-google-maps');
1158
- __('VIA TORINO 26 12033 Moretta CN', 'wp-google-maps');
1159
- __('Poste - Ufficio Postale - MORETTA - CN-23138', 'wp-google-maps');
1160
- __('PIAZZA DELLA REPUBBLICA 2 11017 Morgex AO', 'wp-google-maps');
1161
- __('Poste - Ufficio Postale - MORGEX - AO-98137', 'wp-google-maps');
1162
- __('PIAZZA LIBERTA\' 1 27040 Mornico Losana PV', 'wp-google-maps');
1163
- __('Poste - Ufficio Postale - MORNICO LOSANA - PV-45076', 'wp-google-maps');
1164
- __('VIA MARCONI 42 12040 Morozzo CN', 'wp-google-maps');
1165
- __('Poste - Ufficio Postale - MOROZZO - CN-23139', 'wp-google-maps');
1166
- __('PIAZZA VITTORIO ALFIERI 10 05023 Baschi TR', 'wp-google-maps');
1167
- __('Poste - Ufficio Postale - MORRE - TR-92147', 'wp-google-maps');
1168
- __('VIA MARTIRI DELLA LIBERTA\' 14 13874 Mottalciata BI', 'wp-google-maps');
1169
- __('Poste - Ufficio Postale - MOTTALCIATA - BI-90189', 'wp-google-maps');
1170
- __('VIA CADUTI MURELLESI 78 12030 Murello CN', 'wp-google-maps');
1171
- __('Poste - Ufficio Postale - MURELLO - CN-23142', 'wp-google-maps');
1172
- __('VIA RIVIERA 78 36024 Nanto VI', 'wp-google-maps');
1173
- __('Poste - Ufficio Postale - NANTO - VI-69074', 'wp-google-maps');
1174
- __('VIA POLMO 4 87070 Nocara CS', 'wp-google-maps');
1175
- __('Poste - Ufficio Postale - NOCARA - CS-21101', 'wp-google-maps');
1176
- __('VIA PONTE DI CASTANO 2 20020 Nosate MI', 'wp-google-maps');
1177
- __('Poste - Ufficio Postale - NOSATE - MI-38485', 'wp-google-maps');
1178
- __('VIA GIORDANO 57 12060 Novello CN', 'wp-google-maps');
1179
- __('Poste - Ufficio Postale - NOVELLO - CN-23149', 'wp-google-maps');
1180
- __('VIA ALCIDE DE GASPERI 1 25080 Nuvolera BS', 'wp-google-maps');
1181
- __('Poste - Ufficio Postale - NUVOLERA - BS-12131', 'wp-google-maps');
1182
- __('VIA VACHA EMILIO MONSIGNOR 1 10080 Oglianico TO', 'wp-google-maps');
1183
- __('Poste - Ufficio Postale - OGLIANICO - TO-63205', 'wp-google-maps');
1184
- __('CORSO MAZZINI 35/A 84061 Ogliastro Cilento SA', 'wp-google-maps');
1185
- __('Poste - Ufficio Postale - OGLIASTRO CILENTO - SA-57127', 'wp-google-maps');
1186
- __('PIAZZA GREPPI SNC1 13047 Olcenengo VC', 'wp-google-maps');
1187
- __('Poste - Ufficio Postale - OLCENENGO - VC-90193', 'wp-google-maps');
1188
- __('VIA RISORGIMENTO 16 88067 Olivadi CZ', 'wp-google-maps');
1189
- __('Poste - Ufficio Postale - OLIVADI - CZ-18106', 'wp-google-maps');
1190
- __('VIALE RIMEMBRANZA 2 18030 Olivetta San Michele IM', 'wp-google-maps');
1191
- __('Poste - Ufficio Postale - OLIVETTA SAN MICHELE - IM-50030', 'wp-google-maps');
1192
- __('VIA ROMA 189 24013 Oltre il Colle BG', 'wp-google-maps');
1193
- __('Poste - Ufficio Postale - OLTRE IL COLLE - BG-10137', 'wp-google-maps');
1194
- __('VIA DON CONTI 3 22070 Oltrona di San Mamette CO', 'wp-google-maps');
1195
- __('Poste - Ufficio Postale - OLTRONA DI SAN MAMETTE - CO-20303', 'wp-google-maps');
1196
- __('LARGO XXV APRILE 14 24050 Orio al Serio BG', 'wp-google-maps');
1197
- __('Poste - Ufficio Postale - ORIO AL SERIO - BG-10229', 'wp-google-maps');
1198
- __('VIALE GENERALE STEFANO CAGNA 27 12078 Ormea CN', 'wp-google-maps');
1199
- __('Poste - Ufficio Postale - ORMEA - CN-23151', 'wp-google-maps');
1200
- __('VIA ALFREDO DI DIO 27 28877 Ornavasso VB', 'wp-google-maps');
1201
- __('Poste - Ufficio Postale - ORNAVASSO - VB-41176', 'wp-google-maps');
1202
- __('VIA STELLA 20 84060 Orria SA', 'wp-google-maps');
1203
- __('Poste - Ufficio Postale - ORRIA - SA-57133', 'wp-google-maps');
1204
- __('LOCALITA\' CAPOLUOGO VILLA 18 INT 6 12030 Ostana CN', 'wp-google-maps');
1205
- __('Poste - Ufficio Postale - OSTANA - CN-23152', 'wp-google-maps');
1206
- __('VIA CADUTI 2 MAGGIO 185 33025 Ovaro UD', 'wp-google-maps');
1207
- __('Poste - Ufficio Postale - OVARO - UD-66086', 'wp-google-maps');
1208
- __('FRAZIONE LA CRETAZ 1 11010 Oyace AO', 'wp-google-maps');
1209
- __('Poste - Ufficio Postale - OYACE - AO-98213', 'wp-google-maps');
1210
- __('PIAZZA DELLA LIBERTA\' 11 20080 Ozzero MI', 'wp-google-maps');
1211
- __('Poste - Ufficio Postale - OZZERO - MI-38506', 'wp-google-maps');
1212
- __('PIAZZA CASTELLO 2 15050 Paderna AL', 'wp-google-maps');
1213
- __('Poste - Ufficio Postale - PADERNA - AL-01366', 'wp-google-maps');
1214
- __('VIA ROMA 240 24040 Pagazzano BG', 'wp-google-maps');
1215
- __('Poste - Ufficio Postale - PAGAZZANO - BG-10022A01', 'wp-google-maps');
1216
- __('VIA ROMA 3 12030 Pagno CN', 'wp-google-maps');
1217
- __('Poste - Ufficio Postale - PAGNO - CN-23154', 'wp-google-maps');
1218
- __('VIA BESCHI 1 25080 Paitone BS', 'wp-google-maps');
1219
- __('Poste - Ufficio Postale - PAITONE - BS-12290', 'wp-google-maps');
1220
- __('PIAZZA ITALIA 5/A 24030 Paladina BG', 'wp-google-maps');
1221
- __('Poste - Ufficio Postale - PALADINA - BG-10140', 'wp-google-maps');
1222
- __('VIA VITTORIO EMANUELE II 1 10010 Palazzo Canavese TO', 'wp-google-maps');
1223
- __('Poste - Ufficio Postale - PALAZZO CANAVESE - TO-63211', 'wp-google-maps');
1224
- __('VIA VERDI 38 87060 Paludi CS', 'wp-google-maps');
1225
- __('Poste - Ufficio Postale - PALUDI - CS-21104', 'wp-google-maps');
1226
- __('VIA RISORGIMENTO 33 87050 Panettieri CS', 'wp-google-maps');
1227
- __('Poste - Ufficio Postale - PANETTIERI - CS-21105', 'wp-google-maps');
1228
- __('VIA DUCA D\'AOSTA 37 24020 Parre BG', 'wp-google-maps');
1229
- __('Poste - Ufficio Postale - PARRE PONTE SELVA - BG-10148', 'wp-google-maps');
1230
- __('PIAZZA PRIMA ARMATA 2/A 36040 Valdastico VI', 'wp-google-maps');
1231
- __('Poste - Ufficio Postale - PEDESCALA - VI-69078', 'wp-google-maps');
1232
- __('PIAZZA IV NOVEMBRE 2 22010 Peglio CO', 'wp-google-maps');
1233
- __('Poste - Ufficio Postale - PEGLIO - CO-20357', 'wp-google-maps');
1234
- __('VIA NAZIONALE 64 38020 Pellizzano TN', 'wp-google-maps');
1235
- __('Poste - Ufficio Postale - PELLIZZANO - TN-74637', 'wp-google-maps');
1236
- __('PIAZZA ROMA 4 32010 Perarolo di Cadore BL', 'wp-google-maps');
1237
- __('Poste - Ufficio Postale - PERAROLO DI CADORE - BL-08047', 'wp-google-maps');
1238
- __('VIA CRISTOFORO COLOMBO 9 08046 Perdasdefogu NU', 'wp-google-maps');
1239
- __('Poste - Ufficio Postale - PERDASDEFOGU - NU-80168', 'wp-google-maps');
1240
- __('VIA ROMA PERETA 39 58051 Magliano in Toscana GR', 'wp-google-maps');
1241
- __('Poste - Ufficio Postale - PERETA - GR-30129A01', 'wp-google-maps');
1242
- __('VIA CONTE ANTONIO 54 84020 Palomonte SA', 'wp-google-maps');
1243
- __('Poste - Ufficio Postale - PERRAZZE - SA-57342', 'wp-google-maps');
1244
- __('PIAZZA VITTORIO VENETO SNC 84065 Piaggine SA', 'wp-google-maps');
1245
- __('Poste - Ufficio Postale - PIAGGINE - SA-57150', 'wp-google-maps');
1246
- __('CONTRADA FICCARDO SNC 62026 San Ginesio MC', 'wp-google-maps');
1247
- __('Poste - Ufficio Postale - PIAN DI PIECA - MC-34112', 'wp-google-maps');
1248
- __('CONTRADA PIANA 296 87070 Cerchiara di Calabria CS', 'wp-google-maps');
1249
- __('Poste - Ufficio Postale - PIANA DI CERCHIARA - CS-21038A01', 'wp-google-maps');
1250
- __('VIALE GIUSEPPE VESPA 65 53025 Piancastagnaio SI', 'wp-google-maps');
1251
- __('Poste - Ufficio Postale - PIANCASTAGNAIO - SI-59049', 'wp-google-maps');
1252
- __('VIA VILLANOVA 3/B 12080 Pianfei CN', 'wp-google-maps');
1253
- __('Poste - Ufficio Postale - PIANFEI - CN-23159', 'wp-google-maps');
1254
- __('VIA DOTTOR GIOVANNI CICOLETTI 79 28886 Pieve Vergonte VB', 'wp-google-maps');
1255
- __('Poste - Ufficio Postale - PIEVE VERGONTE - VB-41367', 'wp-google-maps');
1256
- __('VIA PAPA GIOVANNI XXIII 4 21061 Pino sulla Sponda del Lago Maggiore VA', 'wp-google-maps');
1257
- __('Poste - Ufficio Postale - PINO LAGO MAGGIORE - VA-89195', 'wp-google-maps');
1258
- __('VIA ROMA 10 12040 Piobesi d\'Alba CN', 'wp-google-maps');
1259
- __('Poste - Ufficio Postale - PIOBESI D\'ALBA - CN-23268', 'wp-google-maps');
1260
- __('VIA UMBERTO I 21 87070 Plataci CS', 'wp-google-maps');
1261
- __('Poste - Ufficio Postale - PLATACI - CS-21116', 'wp-google-maps');
1262
- __('VIA SAN PASQUALE 32 89039 Platì RC', 'wp-google-maps');
1263
- __('Poste - Ufficio Postale - PLATI\' - RC-53078', 'wp-google-maps');
1264
- __('VIA DON PAOLO BERNASCONI 2 22020 Pognana Lario CO', 'wp-google-maps');
1265
- __('Poste - Ufficio Postale - POGNANA LARIO - CO-20155', 'wp-google-maps');
1266
- __('PIAZZA PLEBISCITO 1 33070 Polcenigo PN', 'wp-google-maps');
1267
- __('Poste - Ufficio Postale - POLCENIGO - PN-91152', 'wp-google-maps');
1268
- __('VIA UMBERTO I 75 12030 Polonghera CN', 'wp-google-maps');
1269
- __('Poste - Ufficio Postale - POLONGHERA - CN-23165', 'wp-google-maps');
1270
- __('PIAZZA MUNICIPIO 1 12020 Pontechianale CN', 'wp-google-maps');
1271
- __('Poste - Ufficio Postale - PONTECHIANALE - CN-23166', 'wp-google-maps');
1272
- __('VIA TORINO 152 18027 Pontedassio IM', 'wp-google-maps');
1273
- __('Poste - Ufficio Postale - PONTEDASSIO - IM-50039', 'wp-google-maps');
1274
- __('VIA ALESSANDRO VOLTA 13 22070 Luisago CO', 'wp-google-maps');
1275
- __('Poste - Ufficio Postale - PORTICHETTO - CO-20272', 'wp-google-maps');
1276
- __('VIA GUGLIELMO MARCONI 318 84017 Positano SA', 'wp-google-maps');
1277
- __('Poste - Ufficio Postale - POSITANO - SA-57159', 'wp-google-maps');
1278
- __('VIA UMBERTO I 11 10040 Pralormo TO', 'wp-google-maps');
1279
- __('Poste - Ufficio Postale - PRALORMO - TO-63239', 'wp-google-maps');
1280
- __('VIA ROMA 6/A 13899 Pralungo BI', 'wp-google-maps');
1281
- __('Poste - Ufficio Postale - PRALUNGO - BI-90209', 'wp-google-maps');
1282
- __('VIA ROMA 45 33076 Pravisdomini PN', 'wp-google-maps');
1283
- __('Poste - Ufficio Postale - PRAVISDOMINI - PN-91160', 'wp-google-maps');
1284
- __('PIAZZA MUNICIPIO 3 12028 Prazzo CN', 'wp-google-maps');
1285
- __('Poste - Ufficio Postale - PRAZZO - CN-23170', 'wp-google-maps');
1286
- __('PIAZZA UMBERTO I 11 18020 Prelà IM', 'wp-google-maps');
1287
- __('Poste - Ufficio Postale - PRELA\' - IM-50041', 'wp-google-maps');
1288
- __('PIAZZA MUNICIPIO 4 28866 Premia VB', 'wp-google-maps');
1289
- __('Poste - Ufficio Postale - PREMIA - VB-41444', 'wp-google-maps');
1290
- __('VIA RANICA 103 24020 Premolo BG', 'wp-google-maps');
1291
- __('Poste - Ufficio Postale - PREMOLO - BG-10086A01', 'wp-google-maps');
1292
- __('VIA SAN ROCCO 51 81050 Presenzano CE', 'wp-google-maps');
1293
- __('Poste - Ufficio Postale - PRESENZANO - CE-16087', 'wp-google-maps');
1294
- __('PIAZZA SAN ROCCO 1 36020 Cismon del Grappa VI', 'wp-google-maps');
1295
- __('Poste - Ufficio Postale - PRIMOLANO - VI-69087', 'wp-google-maps');
1296
- __('VIA ROMA 74 33046 Pulfero UD', 'wp-google-maps');
1297
- __('Poste - Ufficio Postale - PULFERO - UD-66111', 'wp-google-maps');
1298
- __('VIA VENTICINQUE APRILE 2 10010 Quincinetto TO', 'wp-google-maps');
1299
- __('Poste - Ufficio Postale - QUINCINETTO - TO-63246', 'wp-google-maps');
1300
- __('VIALE DELLA RIMEMBRANZA 1 13030 Quinto Vercellese VC', 'wp-google-maps');
1301
- __('Poste - Ufficio Postale - QUINTO VERCELLESE - VC-90213', 'wp-google-maps');
1302
- __('FRAZIONE SAN BERNARDO 143 38020 Rabbi TN', 'wp-google-maps');
1303
- __('Poste - Ufficio Postale - RABBI - TN-74166', 'wp-google-maps');
1304
- __('VIA GALILEO GALILEI 1 22024 Ramponio Verna CO', 'wp-google-maps');
1305
- __('Poste - Ufficio Postale - RAMPONIO VERNA - CO-20150A01', 'wp-google-maps');
1306
- __('PIAZZA PARROCCHIALE 2 21020 Ranco VA', 'wp-google-maps');
1307
- __('Poste - Ufficio Postale - RANCO - VA-89261', 'wp-google-maps');
1308
- __('PIAZZA DEI CADUTI 1 24060 Ranzanico BG', 'wp-google-maps');
1309
- __('Poste - Ufficio Postale - RANZANICO - BG-10092', 'wp-google-maps');
1310
- __('PIAZZA CELESTINA BUSONI 4 27040 Rea PV', 'wp-google-maps');
1311
- __('Poste - Ufficio Postale - REA - PV-45194', 'wp-google-maps');
1312
- __('VIA VITTORIO VENETO 16 33010 Reana del Rojale UD', 'wp-google-maps');
1313
- __('Poste - Ufficio Postale - REANA DEL ROJALE - UD-66114', 'wp-google-maps');
1314
- __('VIA NAZIONALE 18 33010 Resiutta UD', 'wp-google-maps');
1315
- __('Poste - Ufficio Postale - RESIUTTA - UD-66117', 'wp-google-maps');
1316
- __('VIA ROMA 5 17020 Rialto SV', 'wp-google-maps');
1317
- __('Poste - Ufficio Postale - RIALTO - SV-86175', 'wp-google-maps');
1318
- __('PIAZZA ANSELMO DURIGON MEDAGLIA D\'ORO 25 33020 Rigolato UD', 'wp-google-maps');
1319
- __('Poste - Ufficio Postale - RIGOLATO - UD-66118', 'wp-google-maps');
1320
- __('VIA ROMEA 41 45012 Ariano nel Polesine RO', 'wp-google-maps');
1321
- __('Poste - Ufficio Postale - RIVA\' - RO-56047', 'wp-google-maps');
1322
- __('VIA PORTO 28 24060 Riva di Solto BG', 'wp-google-maps');
1323
- __('Poste - Ufficio Postale - RIVA DI SOLTO - BG-10094', 'wp-google-maps');
1324
- __('VIA NEUSCHELLER 22 10040 Rivarossa TO', 'wp-google-maps');
1325
- __('Poste - Ufficio Postale - RIVAROSSA - TO-63259', 'wp-google-maps');
1326
- __('VIA VIBO VALENTIA 18 87074 Rocca Imperiale CS', 'wp-google-maps');
1327
- __('Poste - Ufficio Postale - ROCCA IMPERIALE MARINA - CS-21274', 'wp-google-maps');
1328
- __('VIA FIUME TACINA 30 88835 Roccabernarda KR', 'wp-google-maps');
1329
- __('Poste - Ufficio Postale - ROCCABERNARDA - KR-18123', 'wp-google-maps');
1330
- __('STRADA DE CATARI 6 12020 Roccabruna CN', 'wp-google-maps');
1331
- __('Poste - Ufficio Postale - ROCCABRUNA - CN-23301', 'wp-google-maps');
1332
- __('VIA PROVINCIALE 174 89060 Roccaforte del Greco RC', 'wp-google-maps');
1333
- __('Poste - Ufficio Postale - ROCCAFORTE DEL GRECO - RC-53087', 'wp-google-maps');
1334
- __('VIA GENERALE DHO 21 12088 Roccaforte Mondovì CN', 'wp-google-maps');
1335
- __('Poste - Ufficio Postale - ROCCAFORTE DI MONDOVI\' - CN-23183', 'wp-google-maps');
1336
- __('VIA DELLA MADONNA 2 12018 Roccavione CN', 'wp-google-maps');
1337
- __('Poste - Ufficio Postale - ROCCAVIONE - CN-23184', 'wp-google-maps');
1338
- __('VIA CAVOUR 6 81042 Rocchetta e Croce CE', 'wp-google-maps');
1339
- __('Poste - Ufficio Postale - ROCCHETTA E CROCE - CE-16095', 'wp-google-maps');
1340
- __('VIA GIUSEPPINA VALLI 2 22070 Rodero CO', 'wp-google-maps');
1341
- __('Poste - Ufficio Postale - RODERO - CO-20194A02', 'wp-google-maps');
1342
- __('VIA ROMA SNC 89060 Roghudi RC', 'wp-google-maps');
1343
- __('Poste - Ufficio Postale - ROGHUDI - RC-53130', 'wp-google-maps');
1344
- __('FRAZIONE MARTINET 3 11010 Roisan AO', 'wp-google-maps');
1345
- __('Poste - Ufficio Postale - ROISAN - AO-98101A01', 'wp-google-maps');
1346
- __('VIA SANT\'ANTONIO 4 20885 Ronco Briantino MB', 'wp-google-maps');
1347
- __('Poste - Ufficio Postale - RONCO BRIANTINO - MB-38472', 'wp-google-maps');
1348
- __('PIAZZA GUGLIELMO MARCONI 4 24030 Roncola BG', 'wp-google-maps');
1349
- __('Poste - Ufficio Postale - RONCOLA - BG-10213', 'wp-google-maps');
1350
- __('PIAZZA UNDICI SETTEMBRE 3 15030 Rosignano Monferrato AL', 'wp-google-maps');
1351
- __('Poste - Ufficio Postale - ROSIGNANO MONFERRATO - AL-01217', 'wp-google-maps');
1352
- __('VIA ROSMINI 5 38030 Roverè della Luna TN', 'wp-google-maps');
1353
- __('Poste - Ufficio Postale - ROVERE\' DELLA LUNA - TN-74175', 'wp-google-maps');
1354
- __('VIA SAN GIORGIO 108 09085 Ruinas OR', 'wp-google-maps');
1355
- __('Poste - Ufficio Postale - RUINAS - OR-72046', 'wp-google-maps');
1356
- __('VIA GRAND SAINT BERNARD 68 11014 Saint-Oyen AO', 'wp-google-maps');
1357
- __('Poste - Ufficio Postale - SAINT OYEN - AO-98160', 'wp-google-maps');
1358
- __('PIAZZA EUROPA 8 84070 Salento SA', 'wp-google-maps');
1359
- __('Poste - Ufficio Postale - SALENTO - SA-57177', 'wp-google-maps');
1360
- __('VIA GUGLIELMO MARCONI 15 27052 Godiasco PV', 'wp-google-maps');
1361
- __('Poste - Ufficio Postale - SALICE TERME - PV-45105', 'wp-google-maps');
1362
- __('LARGO SAN SEBASTIANO SNC 84020 Salvitelle SA', 'wp-google-maps');
1363
- __('Poste - Ufficio Postale - SALVITELLE - SA-57180', 'wp-google-maps');
1364
- __('VIA UMBERTO I 69 12010 Sambuco CN', 'wp-google-maps');
1365
- __('Poste - Ufficio Postale - SAMBUCO - CN-23194', 'wp-google-maps');
1366
- __('VIA SKANDERBERG 2 87010 San Basile CS', 'wp-google-maps');
1367
- __('Poste - Ufficio Postale - SAN BASILE - CS-21128', 'wp-google-maps');
1368
- __('PIAZZA MARTIRI DELLA LIBERTA\' 5 10070 San Carlo Canavese TO', 'wp-google-maps');
1369
- __('Poste - Ufficio Postale - SAN CARLO CANAVESE - TO-63426', 'wp-google-maps');
1370
- __('VIA SANTUARIO 35 87060 San Cosmo Albanese CS', 'wp-google-maps');
1371
- __('Poste - Ufficio Postale - SAN COSMO ALBANESE - CS-21130', 'wp-google-maps');
1372
- __('VIA REGINA ELENA 9 88021 San Floro CZ', 'wp-google-maps');
1373
- __('Poste - Ufficio Postale - SAN FLORO - CZ-18131', 'wp-google-maps');
1374
- __('VIA DEL PASCOLO 7 13047 San Germano Vercellese VC', 'wp-google-maps');
1375
- __('Poste - Ufficio Postale - SAN GERMANO VERCELLESE - VC-90234', 'wp-google-maps');
1376
- __('PIAZZA BOVETTI 8 10040 San Gillio TO', 'wp-google-maps');
1377
- __('Poste - Ufficio Postale - SAN GILLIO TORINESE - TO-63287', 'wp-google-maps');
1378
- __('VIA FONTANA 1 87060 San Giorgio Albanese CS', 'wp-google-maps');
1379
- __('Poste - Ufficio Postale - SAN GIORGIO ALBANESE - CS-21135', 'wp-google-maps');
1380
- __('VIA ROMA 29 46020 San Giovanni del Dosso MN', 'wp-google-maps');
1381
- __('Poste - Ufficio Postale - SAN GIOVANNI DEL DOSSO - MN-35079', 'wp-google-maps');
1382
- __('VIA ROMA 22 82014 Ceppaloni BN', 'wp-google-maps');
1383
- __('Poste - Ufficio Postale - SAN GIOVANNI DI CEPPALONI - BN-09058', 'wp-google-maps');
1384
- __('VIA VENTICINQUE LUGLIO 49 10090 San Giusto Canavese TO', 'wp-google-maps');
1385
- __('Poste - Ufficio Postale - SAN GIUSTO CANAVESE - TO-63291', 'wp-google-maps');
1386
- __('LOCALITA\' MERSO DI SOPRA 1 33040 San Leonardo UD', 'wp-google-maps');
1387
- __('Poste - Ufficio Postale - SAN LEONARDO DEL FRIULI - UD-66134', 'wp-google-maps');
1388
- __('VIA LAMARMORA 1 89069 San Lorenzo RC', 'wp-google-maps');
1389
- __('Poste - Ufficio Postale - SAN LORENZO - RC-53097', 'wp-google-maps');
1390
- __('VIA ARDUINO 29 10010 San Martino Canavese TO', 'wp-google-maps');
1391
- __('Poste - Ufficio Postale - SAN MARTINO CANAVESE - TO-63292', 'wp-google-maps');
1392
- __('PIAZZA SERRA 12 84070 San Mauro Cilento SA', 'wp-google-maps');
1393
- __('Poste - Ufficio Postale - SAN MAURO CILENTO - SA-57187', 'wp-google-maps');
1394
- __('VIA CADUTI 3 12080 San Michele Mondovì CN', 'wp-google-maps');
1395
- __('Poste - Ufficio Postale - SAN MICHELE MONDOVI\' - CN-23204', 'wp-google-maps');
1396
- __('VIA DON LUIGI GABBANI 168/B 22010 San Nazzaro Val Cavargna CO', 'wp-google-maps');
1397
- __('Poste - Ufficio Postale - SAN NAZZARO VAL CAVARGNA - CO-20395', 'wp-google-maps');
1398
- __('CORSO SKANDERBERG 76 88817 San Nicola dell\'Alto KR', 'wp-google-maps');
1399
- __('Poste - Ufficio Postale - SAN NICOLA DELL\'ALTO - KR-18136', 'wp-google-maps');
1400
- __('VIA ROMA 106 82010 San Nicola Manfredi BN', 'wp-google-maps');
1401
- __('Poste - Ufficio Postale - SAN NICOLA MANFREDI - BN-09066', 'wp-google-maps');
1402
- __('VIA CAPOLUOGO 7 32040 San Nicolò di Comelico BL', 'wp-google-maps');
1403
- __('Poste - Ufficio Postale - SAN NICOLO\' DI COMELICO - BL-08059', 'wp-google-maps');
1404
- __('VIA DELLA CHIUSA 19 57034 Campo nell\'Elba LI', 'wp-google-maps');
1405
- __('Poste - Ufficio Postale - SAN PIERO IN CAMPO - LI-32026', 'wp-google-maps');
1406
- __('VIA PIETRO NENNI 5 88025 San Pietro a Maida CZ', 'wp-google-maps');
1407
- __('Poste - Ufficio Postale - SAN PIETRO A MAIDA - CZ-18138', 'wp-google-maps');
1408
- __('VIA UMBERTO I SNC 89020 San Pietro di Caridà RC', 'wp-google-maps');
1409
- __('Poste - Ufficio Postale - SAN PIETRO DI CARIDA\' - RC-53026', 'wp-google-maps');
1410
- __('VIA OLIVO GENERALE 15 88050 Magisano CZ', 'wp-google-maps');
1411
- __('Poste - Ufficio Postale - SAN PIETRO MAGISANO - CZ-18194', 'wp-google-maps');
1412
- __('PIAZZA ALBA 3 12055 Diano d\'Alba CN', 'wp-google-maps');
1413
- __('Poste - Ufficio Postale - SAN ROCCO DELLA CHERASCA - CN-23263', 'wp-google-maps');
1414
- __('LARGO PLEBISCITO 1 82030 San Salvatore Telesino BN', 'wp-google-maps');
1415
- __('Poste - Ufficio Postale - SAN SALVATORE TELESINO - BN-09067', 'wp-google-maps');
1416
- __('PIAZZA MUNICIPIO 1 87030 San Vincenzo la Costa CS', 'wp-google-maps');
1417
- __('Poste - Ufficio Postale - SAN VINCENZO LA COSTA - CS-21150', 'wp-google-maps');
1418
- __('VIA VENTIQUATTRO MAGGIO 25 88060 Santa Caterina dello Ionio CZ', 'wp-google-maps');
1419
- __('Poste - Ufficio Postale - SANTA CATERINA DELLO IONIO - CZ-18140', 'wp-google-maps');
1420
- __('VIA VITTORIO VENETO 26 27010 Santa Cristina e Bissone PV', 'wp-google-maps');
1421
- __('Poste - Ufficio Postale - SANTA CRISTINA E BISSONE - PV-45110', 'wp-google-maps');
1422
- __('VIA VENTIQUATTRO MAGGIO 7 87020 Santa Domenica Talao CS', 'wp-google-maps');
1423
- __('Poste - Ufficio Postale - SANTA DOMENICA TALAO - CS-21146', 'wp-google-maps');
1424
- __('VIA MARCONI 4 27046 Santa Giuletta PV', 'wp-google-maps');
1425
- __('Poste - Ufficio Postale - SANTA GIULETTA - PV-45111', 'wp-google-maps');
1426
- __('PIAZZA VITTORIO EMANUELE 17 27047 Santa Maria della Versa PV', 'wp-google-maps');
1427
- __('Poste - Ufficio Postale - SANTA MARIA DELLA VERSA - PV-45113', 'wp-google-maps');
1428
- __('VIA GIUSEPPE ELLERO 13 33050 Santa Maria La Longa UD', 'wp-google-maps');
1429
- __('Poste - Ufficio Postale - SANTA MARIA LA LONGA - UD-66141', 'wp-google-maps');
1430
- __('VIA ROMA 2 87048 Santa Sofia D\'Epiro CS', 'wp-google-maps');
1431
- __('Poste - Ufficio Postale - SANTA SOFIA D\'EPIRO - CS-21148', 'wp-google-maps');
1432
- __('VIA ROMA 32 89050 Sant\'Alessio in Aspromonte RC', 'wp-google-maps');
1433
- __('Poste - Ufficio Postale - SANT\'ALESSIO D\'ASPROMONTE - RC-53104', 'wp-google-maps');
1434
- __('PIAZZA MAZZINI 1 62020 Sant\'Angelo in Pontano MC', 'wp-google-maps');
1435
- __('Poste - Ufficio Postale - SANT\'ANGELO IN PONTANO - MC-34062', 'wp-google-maps');
1436
- __('VIA ROMA 37 27030 Sant\'Angelo Lomellina PV', 'wp-google-maps');
1437
- __('Poste - Ufficio Postale - SANT\'ANGELO LOMELLINA - PV-45114', 'wp-google-maps');
1438
- __('VIA DEL MERONE 1 87056 Santo Stefano di Rogliano CS', 'wp-google-maps');
1439
- __('Poste - Ufficio Postale - SANTO STEFANO DI ROGLIANO - CS-21175', 'wp-google-maps');
1440
- __('PIAZZA SARZANO 1 15050 Sarezzano AL', 'wp-google-maps');
1441
- __('Poste - Ufficio Postale - SAREZZANO - AL-01232', 'wp-google-maps');
1442
- __('VIA ROMA 145 88825 Savelli KR', 'wp-google-maps');
1443
- __('Poste - Ufficio Postale - SAVELLI - KR-18150', 'wp-google-maps');
1444
- __('VIA VENTIQUATTRO MAGGIO 26 89010 Scido RC', 'wp-google-maps');
1445
- __('Poste - Ufficio Postale - SCIDO - RC-53109', 'wp-google-maps');
1446
- __('VIA ROMA 74 24010 Sedrina BG', 'wp-google-maps');
1447
- __('Poste - Ufficio Postale - SEDRINA - BG-10107', 'wp-google-maps');
1448
- __('VIA MADONNA DELLA NEVE 44 88050 Sellia CZ', 'wp-google-maps');
1449
- __('Poste - Ufficio Postale - SELLIA - CZ-18220', 'wp-google-maps');
1450
- __('CORSO BARLAAM 93 89028 Seminara RC', 'wp-google-maps');
1451
- __('Poste - Ufficio Postale - SEMINARA - RC-53111', 'wp-google-maps');
1452
- __('VIA AL GAGGIO 5 22070 Senna Comasco CO', 'wp-google-maps');
1453
- __('Poste - Ufficio Postale - SENNA COMASCO - CO-20392', 'wp-google-maps');
1454
- __('PIAZZA UMBERTO I 11 12050 Serralunga d\'Alba CN', 'wp-google-maps');
1455
- __('Poste - Ufficio Postale - SERRALUNGA D\'ALBA - CN-23254', 'wp-google-maps');
1456
- __('VIA CASALE 4 15020 Serralunga di Crea AL', 'wp-google-maps');
1457
- __('Poste - Ufficio Postale - SERRALUNGA DI CREA - AL-01234', 'wp-google-maps');
1458
- __('VIA GIOVANNI CORNETTI SNC 5 84028 Serre SA', 'wp-google-maps');
1459
- __('Poste - Ufficio Postale - SERRE - SA-57211', 'wp-google-maps');
1460
- __('VIA ROMA 44 09063 Serri SU', 'wp-google-maps');
1461
- __('Poste - Ufficio Postale - SERRI - SU-13420', 'wp-google-maps');
1462
- __('VIA ROMA 142 88054 Sersale CZ', 'wp-google-maps');
1463
- __('Poste - Ufficio Postale - SERSALE - CZ-18154', 'wp-google-maps');
1464
- __('VIA VACHINO COMMENDATOR 9 10010 Settimo Rottaro TO', 'wp-google-maps');
1465
- __('Poste - Ufficio Postale - SETTIMO ROTTARO - TO-63306', 'wp-google-maps');
1466
- __('VIA SARDEGNA 56 09080 Siamanna OR', 'wp-google-maps');
1467
- __('Poste - Ufficio Postale - SIAMANNA SIAPICCIA - OR-72059', 'wp-google-maps');
1468
- __('VIA NAZARIO SAURO 24 28064 Sillavengo NO', 'wp-google-maps');
1469
- __('Poste - Ufficio Postale - SILLAVENGO - NO-41250', 'wp-google-maps');
1470
- __('PIAZZA DON MARCHISIO 2 12050 Sinio CN', 'wp-google-maps');
1471
- __('Poste - Ufficio Postale - SINIO - CN-23264', 'wp-google-maps');
1472
- __('VIA TREVISAGO 1 25080 Soiano del Lago BS', 'wp-google-maps');
1473
- __('Poste - Ufficio Postale - SOIANO DEL LAGO - BS-12248', 'wp-google-maps');
1474
- __('VIA GIUSEPPE MAZZINI 4 22070 Solbiate CO', 'wp-google-maps');
1475
- __('Poste - Ufficio Postale - SOLBIATE COMASCO - CO-20181', 'wp-google-maps');
1476
- __('FRAZIONE LANVARIO 12 13834 Soprana BI', 'wp-google-maps');
1477
- __('Poste - Ufficio Postale - SOPRANA - BI-90240', 'wp-google-maps');
1478
- __('PIAZZA VITTORIO VENETO 1 13817 Sordevolo BI', 'wp-google-maps');
1479
- __('Poste - Ufficio Postale - SORDEVOLO - BI-90241', 'wp-google-maps');
1480
- __('PIAZZA FIORITO 1 28011 Armeno NO', 'wp-google-maps');
1481
- __('Poste - Ufficio Postale - SOVAZZA - NO-41350', 'wp-google-maps');
1482
- __('VIA VAL GALLINA 12/A 32010 Soverzene BL', 'wp-google-maps');
1483
- __('Poste - Ufficio Postale - SOVERZENE - BL-08144', 'wp-google-maps');
1484
- __('VIA ACHILLE AIRALDI 29 15018 Spigno Monferrato AL', 'wp-google-maps');
1485
- __('Poste - Ufficio Postale - SPIGNO MONFERRATO - AL-01241', 'wp-google-maps');
1486
- __('PIAZZA DANTE ALIGHIERI 1 38070 Stenico TN', 'wp-google-maps');
1487
- __('Poste - Ufficio Postale - STENICO - TN-74640', 'wp-google-maps');
1488
- __('FRAZIONE FONTANELLE OZINO 54 13823 Strona BI', 'wp-google-maps');
1489
- __('Poste - Ufficio Postale - STRONA - BI-90243', 'wp-google-maps');
1490
- __('VIA DON MARIO CICERI 29 20884 Sulbiate MB', 'wp-google-maps');
1491
- __('Poste - Ufficio Postale - SULBIATE - MB-38419', 'wp-google-maps');
1492
- __('VIA GARIBALDI 23 21020 Taino VA', 'wp-google-maps');
1493
- __('Poste - Ufficio Postale - TAINO - VA-89210', 'wp-google-maps');
1494
- __('VIA VITTORIO EMANUELE 20 08040 Talana NU', 'wp-google-maps');
1495
- __('Poste - Ufficio Postale - TALANA - NU-80182', 'wp-google-maps');
1496
- __('VIA NUOVA 2 87040 Tarsia CS', 'wp-google-maps');
1497
- __('Poste - Ufficio Postale - TARSIA - CS-21162', 'wp-google-maps');
1498
- __('VIA ALLENDE SALVATORE 11 88055 Taverna CZ', 'wp-google-maps');
1499
- __('Poste - Ufficio Postale - TAVERNA - CZ-18168', 'wp-google-maps');
1500
- __('VIA MAZZINI 2 15040 Ticineto AL', 'wp-google-maps');
1501
- __('Poste - Ufficio Postale - TICINETO - AL-01249', 'wp-google-maps');
1502
- __('VIA MAZZINI 30 10037 Torrazza Piemonte TO', 'wp-google-maps');
1503
- __('Poste - Ufficio Postale - TORRAZZA PIEMONTE - TO-63345', 'wp-google-maps');
1504
- __('VIA SANTI NAZZARO E CELSO 29 24050 Torre Pallavicina BG', 'wp-google-maps');
1505
- __('Poste - Ufficio Postale - TORRE PALLAVICINA - BG-10057A01', 'wp-google-maps');
1506
- __('VIA MAESTRA ADOLFO SARTI 27/A 12030 Torre San Giorgio CN', 'wp-google-maps');
1507
- __('Poste - Ufficio Postale - TORRE SAN GIORGIO - CN-23228', 'wp-google-maps');
1508
- __('VIA ROMA 23 17020 Tovo San Giacomo SV', 'wp-google-maps');
1509
- __('Poste - Ufficio Postale - TOVO SAN GIACOMO - SV-86187', 'wp-google-maps');
1510
- __('VIA ROMA 1 33090 Tramonti di Sotto PN', 'wp-google-maps');
1511
- __('Poste - Ufficio Postale - TRAMONTI DI SOTTO - PN-91183', 'wp-google-maps');
1512
- __('PIAZZA CADUTI E COMBATTENTI D\'ITALIA 2 27020 Travacò Siccomario PV', 'wp-google-maps');
1513
- __('Poste - Ufficio Postale - TRAVACO\' SICCOMARIO - PV-45148', 'wp-google-maps');
1514
- __('PIAZZETTA CACCIACONTI 1 53020 Trequanda SI', 'wp-google-maps');
1515
- __('Poste - Ufficio Postale - TREQUANDA - SI-59078', 'wp-google-maps');
1516
- __('PIAZZA SOCIETA\' OPERAIA 4 21034 Cocquio-Trevisago VA', 'wp-google-maps');
1517
- __('Poste - Ufficio Postale - TREVISAGO - VA-89317', 'wp-google-maps');
1518
- __('PIAZZA MUNICIPIO 13 33050 Trivignano Udinese UD', 'wp-google-maps');
1519
- __('Poste - Ufficio Postale - TRIVIGNANO UDINESE - UD-66166', 'wp-google-maps');
1520
- __('PIAZZA MARCONI 1 27020 Trivolzio PV', 'wp-google-maps');
1521
- __('Poste - Ufficio Postale - TRIVOLZIO - PV-45198', 'wp-google-maps');
1522
- __('PIAZZA FERRARIS 6 28859 Trontano VB', 'wp-google-maps');
1523
- __('Poste - Ufficio Postale - TRONTANO - VB-41373', 'wp-google-maps');
1524
- __('VIA ROMA 36 88823 Umbriatico KR', 'wp-google-maps');
1525
- __('Poste - Ufficio Postale - UMBRIATICO - KR-18174', 'wp-google-maps');
1526
- __('PIAZZALE MONTE TOC 3 33080 Vajont PN', 'wp-google-maps');
1527
- __('Poste - Ufficio Postale - VAJONT DI PONTE GIULIO - PN-91197', 'wp-google-maps');
1528
- __('CASA PONTE 8 27050 Val di Nizza PV', 'wp-google-maps');
1529
- __('Poste - Ufficio Postale - VAL DI NIZZA - PV-45173', 'wp-google-maps');
1530
- __('VIA SAN LORENZO 19 24020 Valbondione BG', 'wp-google-maps');
1531
- __('Poste - Ufficio Postale - VALBONDIONE - BG-10016', 'wp-google-maps');
1532
- __('VIA VITTORIO VENETO 12 27020 Valeggio PV', 'wp-google-maps');
1533
- __('Poste - Ufficio Postale - VALEGGIO LOMELLINA - PV-45129', 'wp-google-maps');
1534
- __('VIA CARAGLIO 5 12020 Valgrana CN', 'wp-google-maps');
1535
- __('Poste - Ufficio Postale - VALGRANA - CN-23235', 'wp-google-maps');
1536
- __('CONTRADA DELLA VALLE 11 27020 Valle Lomellina PV', 'wp-google-maps');
1537
- __('Poste - Ufficio Postale - VALLE LOMELLINA - PV-45130', 'wp-google-maps');
1538
- __('FRAZIONE BORDONE 3 10080 Valprato Soana TO', 'wp-google-maps');
1539
- __('Poste - Ufficio Postale - VALPRATO SOANA - TO-63725', 'wp-google-maps');
1540
- __('VIA STATALE 32 22010 Valsolda CO', 'wp-google-maps');
1541
- __('Poste - Ufficio Postale - VALSOLDA - CO-20198', 'wp-google-maps');
1542
- __('VIA TRIESTE 4 21020 Varano Borghi VA', 'wp-google-maps');
1543
- __('Poste - Ufficio Postale - VARANO BORGHI - VA-89219', 'wp-google-maps');
1544
- __('VIA MERCATO 18 38030 Varena TN', 'wp-google-maps');
1545
- __('Poste - Ufficio Postale - VARENA - TN-74622', 'wp-google-maps');
1546
- __('CONTRADA DEL PRATO 13 23829 Varenna LC', 'wp-google-maps');
1547
- __('Poste - Ufficio Postale - VARENNA - LC-20200', 'wp-google-maps');
1548
- __('VIA DELLA PARROCCHIA 3 10070 Vauda Canavese TO', 'wp-google-maps');
1549
- __('Poste - Ufficio Postale - VAUDA CANAVESE - TO-63360', 'wp-google-maps');
1550
- __('VIA DON ANGELO ARRIGONI 1 24010 Vedeseta BG', 'wp-google-maps');
1551
- __('Poste - Ufficio Postale - VEDESETA - BG-10177', 'wp-google-maps');
1552
- __('VIA GUGLIELMO MARCONI 17 27010 Vellezzo Bellini PV', 'wp-google-maps');
1553
- __('Poste - Ufficio Postale - VELLEZZO BELLINI - PV-45203', 'wp-google-maps');
1554
- __('VIA GIACOMO MATTEOTTI 3 13882 Cerrione BI', 'wp-google-maps');
1555
- __('Poste - Ufficio Postale - VERGNASCO - BI-90259', 'wp-google-maps');
1556
- __('VIA PRINCIPE UMBERTO 29 38030 Giovo TN', 'wp-google-maps');
1557
- __('Poste - Ufficio Postale - VERLA - TN-74232', 'wp-google-maps');
1558
- __('VIA ROMA 21 20080 Vernate MI', 'wp-google-maps');
1559
- __('Poste - Ufficio Postale - VERNATE - MI-38209', 'wp-google-maps');
1560
- __('VIA GUIDO FERRARI 4 27040 Verrua Po PV', 'wp-google-maps');
1561
- __('Poste - Ufficio Postale - VERRUA PO - PV-45151', 'wp-google-maps');
1562
- __('LARGO GILLIO 1 10080 Vico Canavese TO', 'wp-google-maps');
1563
- __('Poste - Ufficio Postale - VICO CANAVESE - TO-63369', 'wp-google-maps');
1564
- __('VIA GALLIANO 21 12080 Vicoforte CN', 'wp-google-maps');
1565
- __('Poste - Ufficio Postale - VICOFORTE - CN-23244', 'wp-google-maps');
1566
- __('VIA RISORGIMENTO 40 23897 Viganò LC', 'wp-google-maps');
1567
- __('Poste - Ufficio Postale - VIGANO\' - LC-20207', 'wp-google-maps');
1568
- __('VIALE TORINO 18 15060 Vignole Borbera AL', 'wp-google-maps');
1569
- __('Poste - Ufficio Postale - VIGNOLE BORBERA - AL-01267', 'wp-google-maps');
1570
- __('VIA ROMA 4 12010 Vignolo CN', 'wp-google-maps');
1571
- __('Poste - Ufficio Postale - VIGNOLO - CN-23246', 'wp-google-maps');
1572
- __('VIA ROMA SNC 23029 Villa di Chiavenna SO', 'wp-google-maps');
1573
- __('Poste - Ufficio Postale - VILLA DI CHIAVENNA - SO-61059', 'wp-google-maps');
1574
- __('VIA PAL PICCOLO 14 33029 Villa Santina UD', 'wp-google-maps');
1575
- __('Poste - Ufficio Postale - VILLA SANTINA - UD-66173', 'wp-google-maps');
1576
- __('PIAZZA SANTA CHIARA 13 25030 Villachiara BS', 'wp-google-maps');
1577
- __('Poste - Ufficio Postale - VILLACHIARA - BS-12376', 'wp-google-maps');
1578
- __('PIAZZA MARTIRI 9 OTTOBRE 1944 9 15020 Villadeati AL', 'wp-google-maps');
1579
- __('Poste - Ufficio Postale - VILLADEATI - AL-01270', 'wp-google-maps');
1580
- __('VIA VISENTIN 1 36021 Villaga VI', 'wp-google-maps');
1581
- __('Poste - Ufficio Postale - VILLAGA - VI-69178', 'wp-google-maps');
1582
- __('VIA BARAGGIA 2 13877 Villanova Biellese BI', 'wp-google-maps');
1583
- __('Poste - Ufficio Postale - VILLANOVA BIELLESE - BI-90283', 'wp-google-maps');
1584
- __('VIA STEFANO POLLINI 78 27030 Villanova d\'Ardenghi PV', 'wp-google-maps');
1585
- __('Poste - Ufficio Postale - VILLANOVA D\'ARDENGHI - PV-45134', 'wp-google-maps');
1586
- __('VIA UMBERTO I 25 13030 Villarboit VC', 'wp-google-maps');
1587
- __('Poste - Ufficio Postale - VILLARBOIT - VC-90261', 'wp-google-maps');
1588
- __('CORSO VITTORIO VENETO 11 13010 Villata VC', 'wp-google-maps');
1589
- __('Poste - Ufficio Postale - VILLATA - VC-90262', 'wp-google-maps');
1590
- __('PIAZZA VITTORIA 1 25050 Vione BS', 'wp-google-maps');
1591
- __('Poste - Ufficio Postale - VIONE - BS-12214', 'wp-google-maps');
1592
- __('PIAZZA UMBERTO I 5 33099 Vivaro PN', 'wp-google-maps');
1593
- __('Poste - Ufficio Postale - VIVARO - PN-91191', 'wp-google-maps');
1594
- __('VIA ROMA 27 12020 Vottignasco CN', 'wp-google-maps');
1595
- __('Poste - Ufficio Postale - VOTTIGNASCO - CN-23274', 'wp-google-maps');
1596
- __('PIAZZA MONUMENTO 4 24060 Zandobbio BG', 'wp-google-maps');
1597
- __('Poste - Ufficio Postale - ZANDOBBIO - BG-10259', 'wp-google-maps');
1598
- __('VIA ROMA 340 45020 Giacciano con Baruchella RO', 'wp-google-maps');
1599
- __('Poste - Ufficio Postale - ZELO - RO-56031A01', 'wp-google-maps');
1600
- __('VIA BORTOLOT 53 32010 Zoppè di Cadore BL', 'wp-google-maps');
1601
- __('Poste - Ufficio Postale - ZOPPE\' DI CADORE - BL-08093', 'wp-google-maps');
1602
- __('Via Don Minzoni 112 42043 Gattatico RE', 'wp-google-maps');
1603
- __('DEMO POC WTGO', 'wp-google-maps');
1604
- __('Piazza Unità d\\\'Italia 4 34121 Trieste TS', 'wp-google-maps');
1605
- __('Comune di Trieste - Area WiFi Unificata', 'wp-google-maps');
1606
- __('Via Friuli, 10 31020 San Vendemiano TV', 'wp-google-maps');
1607
- __('WiFi in Piazza - Quaternario 1 - San Vendemiano', 'wp-google-maps');
1608
- __('Via Benedetto Marcello 7 33170 Pordenone PN', 'wp-google-maps');
1609
- __('Roadhouse Grill - Pordenone', 'wp-google-maps');
1610
- __('Via San Francesco d’Assisi 8/A 10078 Torino TO', 'wp-google-maps');
1611
- __('ISP - MDR Torino - Spazio esperienziale - via San Francesco', 'wp-google-maps');
1612
- __('STRADA PROVINCIALE 95945 Misterbianco CT', 'wp-google-maps');
1613
- __('TIUCHE', 'wp-google-maps');
1614
- __('via michelangelo, 178 62010 Morrovalle MC', 'wp-google-maps');
1615
- __('AF Foresi enineering', 'wp-google-maps');
1616
- __('via Grossi Tommaso 2 20121 Milano MI', 'wp-google-maps');
1617
- __('ING Direct - Filiale Milano Via Grossi Tommaso', 'wp-google-maps');
1618
- __('Via Romita 78 15011 Acqui Terme AL', 'wp-google-maps');
1619
- __('McDonald\'s - 894 - Acqui Terme', 'wp-google-maps');
1620
- __('ASSAGO - VIA DEL BOSCO RINNOVATO 6 20090 Assago MI', 'wp-google-maps');
1621
- __('McDonald\'s - 9922 - Lab EOTF', 'wp-google-maps');
1622
- __('via asi consoretile 7 03013 Ferentino FR', 'wp-google-maps');
1623
- __('GMCLIMA S.R.L.', 'wp-google-maps');
1624
- __('Via Nazionale 24 38080 Strembo TN', 'wp-google-maps');
1625
- __('Poste - Ufficio Postale - STREMBO - TN-74432', 'wp-google-maps');
1626
- __('Corso Bucci 3 86100 Campobasso CB', 'wp-google-maps');
1627
- __('ISP - Filiale Campobasso Via Bucci', 'wp-google-maps');
1628
- __('Corso Nazionale 152 86039 Termoli CB', 'wp-google-maps');
1629
- __('ISP - Filiale Termoli Corso Nazionale - New Concept Imprese', 'wp-google-maps');
1630
- __('Via Feltrina Sud, 250 31044 Montebelluna TV', 'wp-google-maps');
1631
- __('ISP - Filiale Montebelluna Via Feltrina Sud', 'wp-google-maps');
1632
- __('WT - Guglielmo - GUASTO', 'wp-google-maps');
1633
- __('WTGV3 - Guglielmo', 'wp-google-maps');
1634
- __('Corso Vercelli 263 10155 Torino TO', 'wp-google-maps');
1635
- __('Eurospin - Torino Corso Vercelli', 'wp-google-maps');
1636
- __('Viale Stucchi 20900 Monza MB', 'wp-google-maps');
1637
- __('Roadhouse Grill - Monza', 'wp-google-maps');
1638
- __('Viale XX Settembre 58B 95129 Catania CT', 'wp-google-maps');
1639
- __('ING Direct - Filiale Catania viale XX Settembre', 'wp-google-maps');
1640
- __('Corso Sant Anastasia 6 37121 Verona VR', 'wp-google-maps');
1641
- __('ING Direct - Filiale Verona Corso Sant Anastasia', 'wp-google-maps');
1642
- __('Piazza Castello 1 07100 Sassari SS', 'wp-google-maps');
1643
- __('Banco di Sardegna - Sassari Piazza Castello - Guest', 'wp-google-maps');
1644
- __('A1 - Autostrada del Sole 52046 Lucignano AR', 'wp-google-maps');
1645
- __('Chef Express - Lucignano Ovest', 'wp-google-maps');
1646
- __('Via Guglielmo Marconi, 203 09045 Quartu Sant\'Elena CA', 'wp-google-maps');
1647
- __('Banco di Sardegna - Quartu Sant Elena - Guest', 'wp-google-maps');
1648
- __('Banco di Sardegna - Quartu Sant Elena - Dipendenti', 'wp-google-maps');
1649
- __('VIALE DE GASPERI, 62 26013 Crema CR', 'wp-google-maps');
1650
- __('ISP - Filiale Crema via de Gasperi', 'wp-google-maps');
1651
- __('Via IGINO GARBINI 61 01100 Viterbo VT', 'wp-google-maps');
1652
- __('ISP - VITERBO Via IGINO GARBINI', 'wp-google-maps');
1653
- __('Via L. MANARA, 8/16 ISOL.137 98100 Messina ME', 'wp-google-maps');
1654
- __('ISP - MESSINA Via L. MANARA', 'wp-google-maps');
1655
- __('Via CARLO FELICE, 33 07100 Sassari SS', 'wp-google-maps');
1656
- __('ISP - SASSARI Via CARLO FELICE', 'wp-google-maps');
1657
- __('Corso ITALIA, 29 /A 39100 Bolzano BZ', 'wp-google-maps');
1658
- __('ISP - BOLZANO Corso ITALIA', 'wp-google-maps');
1659
- __('Corso ANTONIO ROSMINI, 56 38068 Rovereto TN', 'wp-google-maps');
1660
- __('ISP - ROVERETO Corso ANTONIO ROSMINI', 'wp-google-maps');
1661
- __('Piazza MARSILIO FICINO, 33 50063 Figline Valdarno FI', 'wp-google-maps');
1662
- __('ISP - FIGLINE E INCISA VALDARNO Piazza MARSILIO FICINO', 'wp-google-maps');
1663
- __('Viale EUROPA 27 A-B 50100 Firenze FI', 'wp-google-maps');
1664
- __('ISP - FIRENZE Viale EUROPA', 'wp-google-maps');
1665
- __('Via PANTIN 50018 Scandicci FI', 'wp-google-maps');
1666
- __('ISP - Scandicci Via PANTIN', 'wp-google-maps');
1667
- __('Viale Verdi 13 51016 Montecatini-Terme PT', 'wp-google-maps');
1668
- __('ISP - Montecatini Terme Viale Verdi', 'wp-google-maps');
1669
- __('Piazza Risorgimento 37 51039 Quarrata PT', 'wp-google-maps');
1670
- __('ISP - Quarrata Piazza Risorgimento', 'wp-google-maps');
1671
- __('Via Galvani 75 ang. Fermi 51100 Pistoia PT', 'wp-google-maps');
1672
- __('ISP - Pistoia Via Galvani ang. Fermi', 'wp-google-maps');
1673
- __('Corso TACITO, 49 A 05100 Terni TR', 'wp-google-maps');
1674
- __('ISP - TERNI Corso TACITO - New Concept Imprese', 'wp-google-maps');
1675
- __('Via TUDERTE, 33 A - NARNI SCALO 05035 Narni TR', 'wp-google-maps');
1676
- __('ISP - NARNI Via TUDERTE', 'wp-google-maps');
1677
- __('Via VENARIA, 5 10100 Torino TO', 'wp-google-maps');
1678
- __('ISP - TORINO Via VENARIA', 'wp-google-maps');
1679
- __('Corso EUROPA 1 17025 Loano SV', 'wp-google-maps');
1680
- __('ISP - LOANO Corso EUROPA', 'wp-google-maps');
1681
- __('Viale NAZIONI UNITE 3 17019 Varazze SV', 'wp-google-maps');
1682
- __('ISP - VARAZZE Viale NAZIONI UNITE', 'wp-google-maps');
1683
- __('Viale CAUSA 2 16100 Genova GE', 'wp-google-maps');
1684
- __('ISP - GENOVA Viale CAUSA', 'wp-google-maps');
1685
- __('Via Monsignor Paleari, 74 20010 Pogliano Milanese MI', 'wp-google-maps');
1686
- __('ISP - Pogliano Milanese Via Monsignor Paleari', 'wp-google-maps');
1687
- __('Viale Coni Zugna 62 20100 Milano MI', 'wp-google-maps');
1688
- __('ISP - Milano Viale Coni Zugna', 'wp-google-maps');
1689
- __('Via Vittorio Veneto, 40 20062 Cassano d\'Adda MI', 'wp-google-maps');
1690
- __('ISP - Cassano D\'adda Via Vittorio Veneto', 'wp-google-maps');
1691
- __('Via Cavour 13 20094 Corsico', 'wp-google-maps');
1692
- __('ISP - Corsico Via Cavour', 'wp-google-maps');
1693
- __('Via CARLO FARINI, 56 20100 Milano MI', 'wp-google-maps');
1694
- __('ISP - Milano Via CARLO FARINI', 'wp-google-maps');
1695
- __('Corso GARIBALDI, 35 72015 Fasano BR', 'wp-google-maps');
1696
- __('ISP - FASANO Corso GARIBALDI', 'wp-google-maps');
1697
- __('Corso ITALIA, 210 80067 Sorrento NA', 'wp-google-maps');
1698
- __('ISP - SORRENTO Corso ITALIA', 'wp-google-maps');
1699
- __('Viale AUGUSTO,46-50 80100 Napoli NA', 'wp-google-maps');
1700
- __('ISP - NAPOLI Viale AUGUSTO', 'wp-google-maps');
1701
- __('Via TEVERE, 1 88046 Lamezia Terme CZ', 'wp-google-maps');
1702
- __('ISP - LAMEZIA TERME Via TEVERE', 'wp-google-maps');
1703
- __('Piazza REPUBBLICA, 24 70059 Trani BT', 'wp-google-maps');
1704
- __('ISP - TRANI Piazza REPUBBLICA', 'wp-google-maps');
1705
- __('Piazza XX SETTEMBRE, 7 48100 Ravenna RA', 'wp-google-maps');
1706
- __('ISP - RAVENNA Piazza XX SETTEMBRE - New Concept Imprese', 'wp-google-maps');
1707
- __('L.go CAMUSSI 21013 Gallarate VA', 'wp-google-maps');
1708
- __('ISP - GALLARATE L.go CAMUSSI', 'wp-google-maps');
1709
- __('Via RUBINI, 6 22100 Como CO', 'wp-google-maps');
1710
- __('ISP - COMO Via RUBINI', 'wp-google-maps');
1711
- __('Via ROMA, 1 3 30026 Portogruaro VE', 'wp-google-maps');
1712
- __('ISP - PORTOGRUARO Via ROMA', 'wp-google-maps');
1713
- __('Via San Pio X, 73 36061 Bassano del Grappa VI', 'wp-google-maps');
1714
- __('ISP - BASSANO DEL GRAPPA Via San Pio X', 'wp-google-maps');
1715
- __('Via ROMA, 38 61032 Fano PU', 'wp-google-maps');
1716
- __('ISP - FANO Via ROMA', 'wp-google-maps');
1717
- __('Sestiere SAN MARCO 30100 Venezia VE', 'wp-google-maps');
1718
- __('ISP - VENEZIA Sestiere SAN MARCO', 'wp-google-maps');
1719
- __('Viale ISACCO NEWTON 00100 Roma RM', 'wp-google-maps');
1720
- __('ISP - ROMA Viale ISACCO NEWTON', 'wp-google-maps');
1721
- __('Via Roma, 1 ang. Marconi 20077 Melegnano MI', 'wp-google-maps');
1722
- __('ISP - Melegnano Via Roma', 'wp-google-maps');
1723
- __('Via San Carlo 20 80132 Napoli NA', 'wp-google-maps');
1724
- __('ING Direct - Filiale Napoli San Carlo', 'wp-google-maps');
1725
- __('Via Roveggia 122/A 37136 Verona VR', 'wp-google-maps');
1726
- __('Intesys SRL', 'wp-google-maps');
1727
- __('SS 12 Via Abetone angolo vIa del Garda 38068 Rovereto TN', 'wp-google-maps');
1728
- __('Roadhouse Grill - Rovereto', 'wp-google-maps');
1729
- __('Via A. Diaz, 30 31029 Vittorio Veneto TV', 'wp-google-maps');
1730
- __('Comune Vittorio Veneto - Scuola Crispi', 'wp-google-maps');
1731
- __('P.zza Azzarita Bologna 40122 Bologna BO', 'wp-google-maps');
1732
- __('Camst - Pick and Roll - Bologna', 'wp-google-maps');
1733
- __('Corso Vittorio Emanuele, 29/35 67100 L\'Aquila AQ', 'wp-google-maps');
1734
- __('Poste - Ufficio Postale - L AQUILA CENTRO STORICO - AQ-03319', 'wp-google-maps');
1735
- __('Piazza della Scala, 2 20121 Milano MI', 'wp-google-maps');
1736
- __('Comune di Milano - Evento FIFA WP 2019 - Palazzo Marino', 'wp-google-maps');
1737
- __('39055 Laives BZ', 'wp-google-maps');
1738
- __('Comune di Laives - Magazzino Via Dante', 'wp-google-maps');
1739
- __('Via Galizia 30 39055 Laives BZ', 'wp-google-maps');
1740
- __('Comune di Laives - Cimitero', 'wp-google-maps');
1741
- __('Piazza delle Fontane Marose, 14 16123 Genova GE', 'wp-google-maps');
1742
- __('ISP - filiale Genova Piazza Fontane Marose - RETAIL', 'wp-google-maps');
1743
- __('Via F. Rizzoli 5 40100 Bologna BO', 'wp-google-maps');
1744
- __('ISP - BOLOGNA Via F. Rizzoli - RETAIL', 'wp-google-maps');
1745
- __('VIA LITORANEA, 152 61037 Mondolfo PU', 'wp-google-maps');
1746
- __('ISP - MONDOLFO VIA LITORANEA', 'wp-google-maps');
1747
- __('Corso Toscana 135 10100 Torino TO', 'wp-google-maps');
1748
- __('ISP - TORINO Corso Toscana', 'wp-google-maps');
1749
- __('PIAZZA L. BARBIERI, 39/41 10064 Pinerolo TO', 'wp-google-maps');
1750
- __('ISP - PINEROLO PIAZZA L. BARBIERI', 'wp-google-maps');
1751
- __('VIALE VITTORIO VENETO 13/A 59100 Prato PO', 'wp-google-maps');
1752
- __('ISP - PRATO VIALE VITTORIO VENETO', 'wp-google-maps');
1753
- __('Viale Michele de Pietro, 3 73100 Lecce LE', 'wp-google-maps');
1754
- __('Fondazione Banca Sella - Lecce - CoWorking', 'wp-google-maps');
1755
- __('Plaça d\'Europa, 5 08908 L\'Hospitalet de Llobregat ES-B', 'wp-google-maps');
1756
- __('Camst - Tavolamica - Barcellona', 'wp-google-maps');
1757
- __('V. DELLE ALPI, 30/A 31036 Istrana TV', 'wp-google-maps');
1758
- __('VALERIA BELLON', 'wp-google-maps');
1759
- __('Nw 173Rd, Alachua, FL, 32615', 'wp-google-maps');
1760
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/south-atlantic.png', 'wp-google-maps');
1761
- __('N. Industrial Way. W, Brighan, UT, 84302', 'wp-google-maps');
1762
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/west.png', 'wp-google-maps');
1763
- __('Banks Rd., Fort Mill, SC, 29715', 'wp-google-maps');
1764
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/mid-atlantic.png', 'wp-google-maps');
1765
- __('S. Todd Blvd, Tukwila, WA, 98188', 'wp-google-maps');
1766
- __('Transfer Drive, Indianapolis, IN, 46214', 'wp-google-maps');
1767
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/midwest.png', 'wp-google-maps');
1768
- __('Georgetown Rd, Inianapolis, IN, 46268', 'wp-google-maps');
1769
- __('Norcom Road, Philadelphia, PA, 19154-2399', 'wp-google-maps');
1770
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/north-atlantic.png', 'wp-google-maps');
1771
- __('Zachary Ave, Shafter, CA, 93263', 'wp-google-maps');
1772
- __('Marigold Ave, Redlands, CA, 92374', 'wp-google-maps');
1773
- __('Murphy Ave, Atlanta, GA, 30301', 'wp-google-maps');
1774
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/southeast.png', 'wp-google-maps');
1775
- __('East Main Street, Duncan, SC, 29334', 'wp-google-maps');
1776
- __('Gateway Commerce Center Dr. E., Edwardsville, IL, 62025', 'wp-google-maps');
1777
- __('Athletes Drive, Mt. Juliet, TN, 37122', 'wp-google-maps');
1778
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/mid-south.png', 'wp-google-maps');
1779
- __('Northpoint Drive, Coppell, TX, 75019', 'wp-google-maps');
1780
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/southwest.png', 'wp-google-maps');
1781
- __('Hollister Treet, Houston, TX, 77040', 'wp-google-maps');
1782
- __('W. Walnut Hill Lane, Irving, TX, 75038', 'wp-google-maps');
1783
- __('Sunshine Rd, Kansas City, KS, 66115', 'wp-google-maps');
1784
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/central-plains.png', 'wp-google-maps');
1785
- __('W. 15 Street, Fayetteville, AR, 72701', 'wp-google-maps');
1786
- __('Wall Street, Glendale Heights, IL, 60139', 'wp-google-maps');
1787
- __('E. Bardin Rd, Arlington, TX, 76018', 'wp-google-maps');
1788
- __('Alder Ave, Rialto, CA, 76205', 'wp-google-maps');
1789
- __('Airport Rd, Denton, TX, 76205', 'wp-google-maps');
1790
- __('Gun Club Rd, Aurora, CO, 80019', 'wp-google-maps');
1791
- __('Railhead Drive, Fort Worth, TX, 76177', 'wp-google-maps');
1792
- __('Corporate Rd. N, Jupiter, FL, 38654', 'wp-google-maps');
1793
- __('N. Chrisman Rd, Tracy, CA, 95304', 'wp-google-maps');
1794
- __('Papermill Rd, Dublin, GA, 31027', 'wp-google-maps');
1795
- __('Peerless Rd Nw, Cleveland, TN, 37312', 'wp-google-maps');
1796
- __('Baker Pkwy, Walnut, CA, 91789', 'wp-google-maps');
1797
- __('Middlesex Ave, Port Reading, NJ, 07064', 'wp-google-maps');
1798
- __('S. Arrowhead Ave, San Bernardino, CA, 92408', 'wp-google-maps');
1799
- __('Lewis Braselton Blvd, Braselton, GA, 30517', 'wp-google-maps');
1800
- __('Purdue Dr, Atlanta, GA, 30336', 'wp-google-maps');
1801
- __('Harvey Rd, Tyler, TX, 75706', 'wp-google-maps');
1802
- __('Youngs Rd, Channahon, IL, 60431', 'wp-google-maps');
1803
- __('57Th Ave E, Puyallup, WA, 98375', 'wp-google-maps');
1804
- __('17Th Street Sw, Massillon, OH, 44647', 'wp-google-maps');
1805
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/ohio-valley.png', 'wp-google-maps');
1806
- __('Rose Pkwy, Sikeston, MO, 63801', 'wp-google-maps');
1807
- __('Pickett District Road, New Milford, CT, 6776', 'wp-google-maps');
1808
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/northeast.png', 'wp-google-maps');
1809
- __('S. Yale Place, Jenks, OK, 74307', 'wp-google-maps');
1810
- __('Missouri Ave, Granite City, IL, 62040', 'wp-google-maps');
1811
- __('Pactiv Way, Winchester, VA, 22603', 'wp-google-maps');
1812
- __('Sunridge Blvd, Wilmer, TX, 85172', 'wp-google-maps');
1813
- __('Presidents Court, Jacksonville, FL, 32220', 'wp-google-maps');
1814
- __('West Washington St., Suffolk, VA, 23434', 'wp-google-maps');
1815
- __('Inner Park Dr., Edwardsville, IL, 62025', 'wp-google-maps');
1816
- __('Park Center Drive, Winchester, VA, 22603', 'wp-google-maps');
1817
- __('Boone Trail Rd, Sanford, NC, 27330', 'wp-google-maps');
1818
- __('S. Millers Ferry Rd, Wilmer, TX, 75172', 'wp-google-maps');
1819
- __('West Truman Blvd, Jeferson City, MO, 65109', 'wp-google-maps');
1820
- __('Highway East, Raeford, NC, 28376', 'wp-google-maps');
1821
- __('Centerville Rd., Newville, PA, 17241', 'wp-google-maps');
1822
- __('Militia Drive, Jefferson City, MO, 65101', 'wp-google-maps');
1823
- __('Matt Mcilnay 1707 Shearer Dr, Carlisle, PA, 17013', 'wp-google-maps');
1824
- __('Retail Drive, Fort Mill, SC, 29715', 'wp-google-maps');
1825
- __('Calumet Ave, Hammond, IN, 46320', 'wp-google-maps');
1826
- __('And Crosby Street, Chester, PA, 19013', 'wp-google-maps');
1827
- __('Toy Wright Rd., Jefferson, GA, 30567', 'wp-google-maps');
1828
- __('Arrowhead Industrial Blvd, Saint Peters, MO, 63376', 'wp-google-maps');
1829
- __('Independence Ave, Mechanicburg, PA, 17055', 'wp-google-maps');
1830
- __('Radio Station Road Po Box 231, Strasburg, VA, 22657', 'wp-google-maps');
1831
- __('Radio Station Rd, Strasburg, VA, 22657', 'wp-google-maps');
1832
- __('Steamboat Blvd, Manchester, PA, 17345', 'wp-google-maps');
1833
- __('Corp Ap B#7658701 Po Box 2075, Salisbury, MD, 21802-2075', 'wp-google-maps');
1834
- __('Westgate Parkway, Atlanta, GA, 30336', 'wp-google-maps');
1835
- __('Gator Lane, Wytheville, VA, 24382', 'wp-google-maps');
1836
- __('Quality Way, Jonesboro, AR, 72401', 'wp-google-maps');
1837
- __('Operations 1834 Haley Dr, Cherokee, AL, 35616-0348', 'wp-google-maps');
1838
- __('E. Northfield Drive, Brownsburg, IN, 46112', 'wp-google-maps');
1839
- __('Heinlein Dr., Shelbyville, IL, 62565', 'wp-google-maps');
1840
- __('Little Hearst Pkwy, Port Wentworth, GA, 31407', 'wp-google-maps');
1841
- __('N Lingle Ave, Palmyra, PA, 17078', 'wp-google-maps');
1842
- __('88Th Ave, Pleasant Prairie, WI, 53158', 'wp-google-maps');
1843
- __('http://www.lazerspot.com/v2_2016/wp-content/uploads/2019/11/default.png', 'wp-google-maps');
1844
- __('S. Kilbourn Ave, Chicago, IL, 60623', 'wp-google-maps');
1845
- __('S Arlington Blvd, Indianapolis, IN, 46203', 'wp-google-maps');
1846
- __('North Morton Avenue, Morton, IL, 61550', 'wp-google-maps');
1847
- __('Gateway Blvd, Waco, TX, 76712', 'wp-google-maps');
1848
- __('Payable Po Box 540608, Dallas, TX, 75354', 'wp-google-maps');
1849
- __('Neelytown Road, Montgomery, NY, 12549', 'wp-google-maps');
1850
- __('C. Street Sw., Cedar Rapids, IA, 52404', 'wp-google-maps');
1851
- __('East Drive, Hernderson, NV, 89015', 'wp-google-maps');
1852
- __('W. Resource Dr, Rialto, CA, 92377', 'wp-google-maps');
1853
- __('South State Rd 39, Mooresville, IN, 46158', 'wp-google-maps');
1854
- __('Jonesboro Rd, West Monroe, LA, 71292', 'wp-google-maps');
1855
- __('S Progress Dr, Kendallville, IN, 46755', 'wp-google-maps');
1856
- __('Mountain Creek Parkway, Dallas, TX, 75236', 'wp-google-maps');
1857
- __('Old Jackson Highway, Beech Island, SC, 29842', 'wp-google-maps');
1858
- __('Decatur Blvd, Plainfield, IN, 46168', 'wp-google-maps');
1859
- __('West Lathrop Ave, Savannah, GA, 31415', 'wp-google-maps');
1860
- __('Salzman Rd, Middleton, OH, 45044', 'wp-google-maps');
1861
- __('Sw Wegner Drive, Topeka, KS, 66609', 'wp-google-maps');
1862
- __('N. Brothers Blvd, Bartlett, TN, 38133', 'wp-google-maps');
1863
- __('Bergey Rd, Hatfield, PA, 19440', 'wp-google-maps');
1864
- __('Hunter Rd., Atlanta, GA, 30349', 'wp-google-maps');
1865
- __('Pulaski Highway, Baltimore, MD, 21220', 'wp-google-maps');
1866
- __('North Park Drive, Hazleton, PA, 18202', 'wp-google-maps');
1867
- __('Industrial Drive, Sidney, OH, 45365', 'wp-google-maps');
1868
- __('King Mill Rd, Mcdonough, GA, 30253', 'wp-google-maps');
1869
- __('Trailwind Drive, Fort Worth, TX, 76177', 'wp-google-maps');
1870
- __('Country Rd X, Darien, WI, 53114', 'wp-google-maps');
1871
- __('San Bernardino Ave, Redlands, CA, 92374', 'wp-google-maps');
1872
- __('Newgate Blvd, Hagerstown, MD, 21740', 'wp-google-maps');
1873
- __('N. Lindbergh Blvd, Hazelwood, MO, 63042', 'wp-google-maps');
1874
- __('Mill Rd, Allentown, PA, 18106', 'wp-google-maps');
1875
- __('Bruce Costins Rd, Warsaw, NC, 28398', 'wp-google-maps');
1876
- __('Boulder Drive Breinigsville, Breingsville, PA, 18031', 'wp-google-maps');
1877
- __('C Street Sw, Cedar Rapids, IA, 52404', 'wp-google-maps');
1878
- __('Zephyr Street, Stockton, CA, 95206', 'wp-google-maps');
1879
- __('S. Indianapolis Blvd, Whitestown, IN, 46075', 'wp-google-maps');
1880
- __('Arrowhead Industrial Blvd, Saint Perters, MO, 63376', 'wp-google-maps');
1881
- __('Montreal Industrial Way, Tucker, GA, 30084', 'wp-google-maps');
1882
- __('Green Mountain Rd, Hazelton, PA, 18202', 'wp-google-maps');
1883
- __('Logistics Center Pkwy, Jefferson, GA, 30549', 'wp-google-maps');
1884
- __('Heller Street, Quakertown, PA, 18951', 'wp-google-maps');
1885
- __('Kind Mill Rd, Mcdonough, GA, 30253', 'wp-google-maps');
1886
- __('South Orange Ave, Orlando, FL, 32824', 'wp-google-maps');
1887
- __('Grimes Ave, Owensboro, KY, 42303', 'wp-google-maps');
1888
- __('Baugh Dr., Front Royal, VA, 22630', 'wp-google-maps');
1889
- __('Prosperity Way, Beaumont, CA, 92223', 'wp-google-maps');
1890
- __('West Truman Blvd, Jefferson City, MO, 65109', 'wp-google-maps');
1891
- __('General Mills Way, Murfreesboro, TN, 37127', 'wp-google-maps');
1892
- __('West Gateway Commerce Dr, Edwardsville, IL, 62025', 'wp-google-maps');
1893
- __('Ramsey Rd, Gainesville, GA, 30501', 'wp-google-maps');
1894
- __('Donna St, North Las Vegas, NV, 89030', 'wp-google-maps');
1895
- __('East Point Oakleigh Dr, Atlanta, GA, 30344', 'wp-google-maps');
1896
- __('Woodbine Rd, Downingtown, PA, 19335', 'wp-google-maps');
1897
- __('Route 206, Hilsboro, NJ, 08844', 'wp-google-maps');
1898
- __('C Street Sw, Cedar Rapids, IA, 52406', 'wp-google-maps');
1899
- __('Oakley Industrial Blvd, Union City, GA, 30291', 'wp-google-maps');
1900
- __('E. Airport Dr., Ontario, CA, 91761', 'wp-google-maps');
1901
- __('Niagara Way, Newnan, GA, 30265', 'wp-google-maps');
1902
- __('Westgate Pkwy, Atlanta, GA, 30336', 'wp-google-maps');
1903
- __('Middlesex Center Blvd, South Brunswick, NJ, 08540', 'wp-google-maps');
1904
- __('Rogers Rd, Patterson City, CA, 95363', 'wp-google-maps');
1905
- __('Aritv Drive, Lebanon, TN, 37090', 'wp-google-maps');
1906
- __('All Points Parkway, Plainfield, IN, 46168', 'wp-google-maps');
1907
- __('E. 36Th Drive, Aurora, CO, 80011', 'wp-google-maps');
1908
- __('Chapagne Ave, Ontario, CA, 91761', 'wp-google-maps');
1909
- __('Highway 480, Campti, LA, 71411', 'wp-google-maps');
1910
- __('Northport Drive, Roanoke, TX, 76162', 'wp-google-maps');
1911
- __('Hino Blvd, Marion, AR, 72364', 'wp-google-maps');
1912
- __('Greenwood Industrial Pkwy, Mcdonough, GA, 30253', 'wp-google-maps');
1913
- __('Pillsbury Dr., Geneva, IL, 60134', 'wp-google-maps');
1914
- __('Orchard Rd, Montgomery, IL, 60538', 'wp-google-maps');
1915
- __('Corporate Woods Dr, Bridgeton, MO, 63044', 'wp-google-maps');
1916
- __('Distribution Drive, Mcdonough, GA, 30252', 'wp-google-maps');
1917
- __('Lakeside Parkway, Flower Mound, TX, 75028', 'wp-google-maps');
1918
- __('Indian Ave., Perris, CA, 92571', 'wp-google-maps');
1919
- __('Mcconnell Center Dr., Greensboro, NC, 27405', 'wp-google-maps');
1920
- __('Logistics Drive, Mississauga, ONTARIO, ', 'wp-google-maps');
1921
- __('N. Cool Rd., Lima, OH, 45801', 'wp-google-maps');
1922
- __('E. Philadelphia St, Ontario, CA, 91761', 'wp-google-maps');
1923
- __('Whitaker Rd, Plainfield, IN, 46168', 'wp-google-maps');
1924
- __('Runway Drive, Stockton, CA, 952026', 'wp-google-maps');
1925
- __('Amercican Way, Groveland, FL, 34736', 'wp-google-maps');
1926
- __('Mannning Bridge Rs, Suffolk, VA, 23423', 'wp-google-maps');
1927
- __('N. Broad Street, Phillipsburg, NJ, 08865', 'wp-google-maps');
1928
- __('Park Ave, Reading, PA, 19605', 'wp-google-maps');
1929
- __('Factory Street, Richmond, CA, 102087', 'wp-google-maps');
1930
- __('Commomwealth Dr, Henderson, KY, 42420', 'wp-google-maps');
1931
- __('W. 400 North, Ogden, UT, 84404', 'wp-google-maps');
1932
- __('Rausch Creek Road, Tremont, PA, 17981', 'wp-google-maps');
1933
- __('Brandy Lane, Mechanicsburg, PA, 17050', 'wp-google-maps');
1934
- __('A Bohannon Rd, Fairburn, GA, 30023', 'wp-google-maps');
1935
- __('Westridge Pkwy, Mcdonough, GA, 30253', 'wp-google-maps');
1936
- __('Fort Howard Rd, Rincon, GA, 31326', 'wp-google-maps');
1937
- __('Jonesboro Road, West Monroe, LA, 71292', 'wp-google-maps');
1938
- __('East Gate Pkwy, Gahanna, OH, 43230', 'wp-google-maps');
1939
- __('Mooresville Blvd, Mooresville, NC, 28115', 'wp-google-maps');
1940
- __('Mcclure Industrial Drive, Jefferson, GA, 30549', 'wp-google-maps');
1941
- __('Midland Ct., Mcdonough, GA, 300252', 'wp-google-maps');
1942
- __('Station Rd, Cranbury, NJ, 08512', 'wp-google-maps');
1943
- __('Kimberly Drive, Carol Stream, IL, 60188', 'wp-google-maps');
1944
- __('Worldwide Blvd, Hebron, KY, 41048', 'wp-google-maps');
1945
- __('Donaldson Hwy, Erlanger, KY, 41018', 'wp-google-maps');
1946
- __('N. Lingle Ave, Palmyra, PA, 17078', 'wp-google-maps');
1947
- __('Ella Ward 100 Entrprise Drive, Edwardsville, IL, 62025', 'wp-google-maps');
1948
- __('County Road 100, Corinth, MS, 38834', 'wp-google-maps');
1949
- __('Innovative Way, Owensboro, KY, 42301', 'wp-google-maps');
1950
- __('Sand Bar Ferry Rd, Beech Island, SC, 29842', 'wp-google-maps');
1951
- __('Glenfield Ave, Dallas, TX, 75233', 'wp-google-maps');
1952
- __('Global Avenue, Graniteville, SC, 29829', 'wp-google-maps');
1953
- __('Arden Ave Sw, Atlanta, GA, 30310', 'wp-google-maps');
1954
- __('Polk Lane, Olive Branch, MS, 38654', 'wp-google-maps');
1955
- __('Wilson Road, Eighty Four, PA, 15330', 'wp-google-maps');
1956
- __('W. Bradley, Champaign, IL, 61821', 'wp-google-maps');
1957
- __('Kendall Park Lane, Atlanta, GA, 30336', 'wp-google-maps');
1958
- __('Reeves Road, Plainfield, IN, 46168', 'wp-google-maps');
1959
- __('Samuell Blvd. Suite 200, Mesquite, TX, 75419', 'wp-google-maps');
1960
- __('Dominion Way, Windsor, VA, 23487', 'wp-google-maps');
1961
- __('S. Gloster St., Tupleo, MS, 38801', 'wp-google-maps');
1962
- __('Ragu Drive, Owensboro, KY, 42303', 'wp-google-maps');
1963
- __('Industrial Blvd, Allentown, PA, 18106', 'wp-google-maps');
1964
- __('Commerce Rd, Conway, AR, 72032', 'wp-google-maps');
1965
- __('104Th Street, Pleasant Prairie, WI, 53158', 'wp-google-maps');
1966
- __('Memory Lane, York, PA, 17402', 'wp-google-maps');
1967
- __('North West Loop 286 Rd, Paris, TX, 75461', 'wp-google-maps');
1968
- __('W. Van Buren, Phoenix, AZ, 85043', 'wp-google-maps');
1969
- __('Adler Ave, Rialto, CA, 92376', 'wp-google-maps');
1970
- __('6Th Ave Nw, Wverly, IA, 50677', 'wp-google-maps');
1971
- __('Avenue U., Bogolusa, LA, 70427', 'wp-google-maps');
1972
- __('Concours St, Ontario, CA, 91761', 'wp-google-maps');
1973
- __('Perry Rd, Plainfield, IN, 46168', 'wp-google-maps');
1974
- __('Radio Station Road, Strasburg, VA, 22657', 'wp-google-maps');
1975
- __('Highway 51 N., Covington, TN, 38019', 'wp-google-maps');
1976
- __('Campanelli Drive, Westfield, MA, 01085', 'wp-google-maps');
1977
- __('North West Loop 286 North, Paris, TX, 75461', 'wp-google-maps');
1978
- __('W. Bethel Rd, Coppell, TX, 75019', 'wp-google-maps');
1979
- __('Westridge Parkway, Mcdonough, GA, 30253', 'wp-google-maps');
1980
- __('Islett Ave, Muscatine, IA, 52761', 'wp-google-maps');
1981
- __('Bordertown-Hedding Rd, Bordertown, NJ, 08505', 'wp-google-maps');
1982
- __('S. Cicero Ave, Chicago, IL, 60629', 'wp-google-maps');
1983
- __('Keystone Pacific Pkwy, Patterson City, CA, 95363', 'wp-google-maps');
1984
- __('Indian Ave, Perris, CA, 92571', 'wp-google-maps');
1985
- __('S. State Rd 39, Lebanon, IN, 46052', 'wp-google-maps');
1986
- __('Farm Road 137, Paris, TX, 75460-1204', 'wp-google-maps');
1987
- __('N. Rulon White Blvd, Ogden, UT, 84404', 'wp-google-maps');
1988
- __('Mo-210, Kansas City, MO, 64161', 'wp-google-maps');
1989
- __('W. Casmalia Street, Rialto, CA, 92337', 'wp-google-maps');
1990
- __('Ritner Hwy, Carlisle, PA, 17013', 'wp-google-maps');
1991
- __('Ramsey Road, Gainesville, GA, 30501', 'wp-google-maps');
1992
- __('Gibralter Drive, Bolingbrook, IL, 60440', 'wp-google-maps');
1993
- __('Riverview Park Drive, Jackson, GA, 30233', 'wp-google-maps');
1994
- __('Denton Rd, Pacific, MO, 63069', 'wp-google-maps');
1995
- __('Polk Lane Suite 101, Olivebranch, MS, 38654', 'wp-google-maps');
1996
- __('Old Dunbar Rd, Columbia, SC, 29203', 'wp-google-maps');
1997
- __('Desert Willow Run Nw, Los Lunas, NM, 87031', 'wp-google-maps');
1998
- __('Hwy 155 South, Locust Grove, GA, 30248', 'wp-google-maps');
1999
- __('East Pleasant Street, Belvidere, IL, 61008', 'wp-google-maps');
2000
- __('East Beamer Street, Woodland, CA, 95776', 'wp-google-maps');
2001
- __('Summit Ave, Rialto, CA, 92376', 'wp-google-maps');
2002
- __('South Haven Ave, Ontario, CA, 91761', 'wp-google-maps');
2003
- __('Zachary Rd, Shafter, CA, 93263', 'wp-google-maps');
2004
- __('E. Orangethorpe Ave, Fullerton, CA, 92831', 'wp-google-maps');
2005
- __('N. Interstate 35 E., Desoto, TX, 75115', 'wp-google-maps');
2006
- __('Gateway Dr, Vistorville, CA, 92392', 'wp-google-maps');
2007
- __('Highway 66 West, Greenville, TX, 75402', 'wp-google-maps');
2008
- __('Industrial Blvd., Allentown, PA, 18106-0697', 'wp-google-maps');
2009
- __('Liberty Expressway Se, Albany, GA, 31705', 'wp-google-maps');
2010
- __('East Wingo Rd, Byhalia, MS, 38611', 'wp-google-maps');
2011
- __('Digital Drive, Chester, VA, 23836', 'wp-google-maps');
2012
- __('Woodland Ave, Bloomfield, CT, 06002', 'wp-google-maps');
2013
- __('Independence Avenue, Mechanicsburg, PA, 17050', 'wp-google-maps');
2014
- __('Greenwood Ind Pkwy, Mcdonough, GA, 30253', 'wp-google-maps');
2015
- __('Deerpark Blvd., Elkton, FL, 32033', 'wp-google-maps');
2016
- __('Four Oaks Pkwy, Four Oaks, NC, 27524', 'wp-google-maps');
2017
- __('Brady Lane, Mechanicsburg, PA, 17050', 'wp-google-maps');
2018
- __('Hwy 509, Mansfield, LA, 71052', 'wp-google-maps');
2019
- __('Lee Jackson Hwy, Big Island, VA, 24526', 'wp-google-maps');
2020
- __('Alexander Springs Rd, Carlisle, PA, 17015', 'wp-google-maps');
2021
- __('Kaiser Way, Fontana, CA, 92335', 'wp-google-maps');
2022
- __('N. Norfleet Rd, Kansas City, MO, 64161', 'wp-google-maps');
2023
- __('Airtech Parkway, Plainfield, IN, 46168', 'wp-google-maps');
2024
- __('Red Lion Rd, Philadelphia, PA, 19114', 'wp-google-maps');
2025
- __('[test]', 'wp-google-maps');
2026
- __('Cognoscenti Coffee, Downtown Los Angeles', 'wp-google-maps');
2027
- __('Eightfold Coffee, Echo Park', 'wp-google-maps');
2028
- __('Paramount Coffee Project, Melrose', 'wp-google-maps');
2029
- __('Menotti\'s Coffee Stop, Hollywood', 'wp-google-maps');
2030
- __('Go Get Em Tiger, Arts District', 'wp-google-maps');
2031
- __('Endorffeinee, Downtown Los Angeles', 'wp-google-maps');
2032
- __('Gaslight Coffee Roasters, Logan Square', 'wp-google-maps');
2033
- __('Sawada Coffee, West Loop', 'wp-google-maps');
2034
- __('The Wormhole Coffee, Wicker Park', 'wp-google-maps');
2035
- __('Longsong, Melbourne', 'wp-google-maps');
2036
- __('Bang Bang RC, Elsternwick', 'wp-google-maps');
2037
- __('Osteria Ilaria, Melbourne', 'wp-google-maps');
2038
- __('Terror Twilight, Collingwood', 'wp-google-maps');
2039
- __('All Are Welcome, Northcote', 'wp-google-maps');
2040
- __('Abacus Bar & Kitchen, South Yarra', 'wp-google-maps');
2041
- __('https://thecitylane.com/le-bon-ton-collingwood-review/', 'wp-google-maps');
2042
- __('Le Bon Ton, Collingwood', 'wp-google-maps');
2043
- __('https://thecitylane.com/wig-pen-tavern-brewery-canberra-review/', 'wp-google-maps');
2044
- __('Wig & Pen Tavern & Brewery, Acton', 'wp-google-maps');
2045
- __('https://thecitylane.com/netil-360-hackney-review/', 'wp-google-maps');
2046
- __('Netil 360, Hackney', 'wp-google-maps');
2047
- __('https://thecitylane.com/petition-beer-corner-perth-review/', 'wp-google-maps');
2048
- __('Petition Beer Corner, Perth', 'wp-google-maps');
2049
- __('https://thecitylane.com/crate-brewery-hackney-wick/', 'wp-google-maps');
2050
- __('CRATE Brewery & Pizzeria', 'wp-google-maps');
2051
- __('https://thecitylane.com/howling-hops-hackney-wick/', 'wp-google-maps');
2052
- __('Howling Hops, Hackney Wick', 'wp-google-maps');
2053
- __('https://thecitylane.com/beavertown-brewery-tottenham-hale/', 'wp-google-maps');
2054
- __('Beavertown Brewery, Tottenham Hale', 'wp-google-maps');
2055
- __('https://thecitylane.com/brewdog-shoreditch/', 'wp-google-maps');
2056
- __('BrewDog, Shoreditch', 'wp-google-maps');
2057
- __('https://thecitylane.com/dinerama-shoreditch/', 'wp-google-maps');
2058
- __('Dinerama, Shoreditch', 'wp-google-maps');
2059
- __('https://thecitylane.com/howl-at-the-moon-hoxton/', 'wp-google-maps');
2060
- __('Howl At The Moon, Hoxton', 'wp-google-maps');
2061
- __('https://thecitylane.com/london-fields-brewery-hackney/', 'wp-google-maps');
2062
- __('London Fields Brewery, Hackney', 'wp-google-maps');
2063
- __('https://thecitylane.com/mother-kellys-bethnal-green/', 'wp-google-maps');
2064
- __('Mother Kelly\'s, Bethnal Green', 'wp-google-maps');
2065
- __('https://thecitylane.com/the-birdcage-bethnal-green/', 'wp-google-maps');
2066
- __('The Birdcage, Bethnal Green', 'wp-google-maps');
2067
- __('https://thecitylane.com/the-sebright-arms-bethnal-green/', 'wp-google-maps');
2068
- __('The Sebright Arms, Bethnal Green', 'wp-google-maps');
2069
- __('https://thecitylane.com/the-fox-haggerston/', 'wp-google-maps');
2070
- __('The Fox, Haggerston', 'wp-google-maps');
2071
- __('https://thecitylane.com/well-and-bucket-shoreditch/', 'wp-google-maps');
2072
- __('Well And Bucket, Shoreditch', 'wp-google-maps');
2073
- __('https://thecitylane.com/wild-card-brewery-walthamstow/', 'wp-google-maps');
2074
- __('Wild Card Brewery, Walthamstow', 'wp-google-maps');
2075
- __('https://thecitylane.com/redchurch-brewery-bethnal-green/', 'wp-google-maps');
2076
- __('Redchurch Brewery, Bethnal Green', 'wp-google-maps');
2077
- __('https://thecitylane.com/pop-brixton-brixton/', 'wp-google-maps');
2078
- __('Pop Brixton, Brixton', 'wp-google-maps');
2079
- __('https://thecitylane.com/shujinko-melbourne/', 'wp-google-maps');
2080
- __('Shujinko, Melbourne', 'wp-google-maps');
2081
- __('https://thecitylane.com/alfred-coffee-kitchen-silver-lake/', 'wp-google-maps');
2082
- __('Alfred Coffee & Kitchen, Silver Lake', 'wp-google-maps');
2083
- __('https://thecitylane.com/intelligentsia-coffee-sliver-lake/', 'wp-google-maps');
2084
- __('Intelligentsia Coffee, Silver Lake', 'wp-google-maps');
2085
- __('https://thecitylane.com/gb-coffee-downtown-los-angeles/', 'wp-google-maps');
2086
- __('G&B Coffee, Downtown Los Angeles', 'wp-google-maps');
2087
- __('https://thecitylane.com/woodcat-coffee-bar-echo-park/', 'wp-google-maps');
2088
- __('Woodcat Coffee Bar, Echo Park', 'wp-google-maps');
2089
- __('https://thecitylane.com/verve-coffee-roasters-west-hollywood/', 'wp-google-maps');
2090
- __('Verve Coffee Roasters, West Hollywood', 'wp-google-maps');
2091
- __('https://thecitylane.com/rise-n-grind-hollywood/', 'wp-google-maps');
2092
- __('Rise-N-Grind, Hollywood', 'wp-google-maps');
2093
- __('https://thecitylane.com/dinosaur-coffee-silver-lake/', 'wp-google-maps');
2094
- __('Dinosaur Coffee, Silver Lake', 'wp-google-maps');
2095
- __('https://thecitylane.com/tuco-and-blondie-lakeview/', 'wp-google-maps');
2096
- __('Tuco & Blondie, Lakeview', 'wp-google-maps');
2097
- __('https://thecitylane.com/above-board-collingwood/', 'wp-google-maps');
2098
- __('Above Board, Collingwood', 'wp-google-maps');
2099
- __('https://thecitylane.com/ballast-point-brewing-little-italy/', 'wp-google-maps');
2100
- __('Ballast Point Brewing, Little Italy', 'wp-google-maps');
2101
- __('https://thecitylane.com/belching-beaver-brewery-north-park/', 'wp-google-maps');
2102
- __('Belching Beaver Brewery, North Park', 'wp-google-maps');
2103
- __('https://thecitylane.com/bolt-brewery-little-italy/', 'wp-google-maps');
2104
- __('Bolt Brewery, Little Italy', 'wp-google-maps');
2105
- __('https://thecitylane.com/fall-brewing-company-north-park/', 'wp-google-maps');
2106
- __('Fall Brewing Company, North Park', 'wp-google-maps');
2107
- __('https://thecitylane.com/rip-current-brewing-north-park/', 'wp-google-maps');
2108
- __('Rip Current Brewing, North Park', 'wp-google-maps');
2109
- __('https://thecitylane.com/toronado-north-park/', 'wp-google-maps');
2110
- __('Toronado, North Park', 'wp-google-maps');
2111
- __('https://thecitylane.com/poor-house-brewing-company-north-park/', 'wp-google-maps');
2112
- __('Poor House Brewing Company, North Park', 'wp-google-maps');
2113
- __('https://thecitylane.com/the-hopping-pig-gaslamp/', 'wp-google-maps');
2114
- __('The Hopping Pig, Gaslamp', 'wp-google-maps');
2115
- __('https://thecitylane.com/stone-brewing-world-bistro-gardens-liberty-station-point-loma/', 'wp-google-maps');
2116
- __('Stone Brewing World Bistro & Gardens - Liberty Station, Point Loma', 'wp-google-maps');
2117
- __('https://thecitylane.com/modern-times-brewery-point-loma/', 'wp-google-maps');
2118
- __('Modern Times Brewery, Point Loma', 'wp-google-maps');
2119
- __('https://thecitylane.com/pizza-port-ocean-beach/', 'wp-google-maps');
2120
- __('Pizza Port, Ocean Beach', 'wp-google-maps');
2121
- __('https://thecitylane.com/the-dutch-trading-co-victoria-park/', 'wp-google-maps');
2122
- __('The Dutch Trading Co, Victoria Park', 'wp-google-maps');
2123
- __('https://thecitylane.com/baby-mammoth-northbridge/', 'wp-google-maps');
2124
- __('Baby Mammoth, Northbridge', 'wp-google-maps');
2125
- __('https://thecitylane.com/caboose-mount-lawley/', 'wp-google-maps');
2126
- __('Caboose, Mount Lawley', 'wp-google-maps');
2127
- __('https://thecitylane.com/silverlake-social-prahran/', 'wp-google-maps');
2128
- __('Silverlake Social, Prahran', 'wp-google-maps');
2129
- __('https://thecitylane.com/abe-shokudo-kitakata/', 'wp-google-maps');
2130
- __('https://thecitylane.com/andrew-andrew-auckland-cbd/', 'wp-google-maps');
2131
- __('Andrew Andrew, Auckland', 'wp-google-maps');
2132
- __('https://thecitylane.com/brew-on-quay-britomart/', 'wp-google-maps');
2133
- __('Brew On Quay, Britomart', 'wp-google-maps');
2134
- __('https://thecitylane.com/the-brewers-co-operative-auckland-cbd/', 'wp-google-maps');
2135
- __('The Brewers Co-operative, Auckland', 'wp-google-maps');
2136
- __('https://thecitylane.com/brothers-beer-auckland-cbd/', 'wp-google-maps');
2137
- __('Brothers Beer, Auckland', 'wp-google-maps');
2138
- __('https://thecitylane.com/depot-eatery-and-oyster-bar-auckland-cbd/', 'wp-google-maps');
2139
- __('Depot Eatery And Oyster Bar, Auckland', 'wp-google-maps');
2140
- __('https://thecitylane.com/16-tun-wynard-quarter/', 'wp-google-maps');
2141
- __('16 Tun, Wynard Quarter', 'wp-google-maps');
2142
- __('https://thecitylane.com/sweat-shop-brew-kitchen-auckland-cbd/', 'wp-google-maps');
2143
- __('Sweat Shop Brew Kitchen, Auckland', 'wp-google-maps');
2144
- __('https://thecitylane.com/the-cav-ponsonby/', 'wp-google-maps');
2145
- __('The Cav, Ponsonby', 'wp-google-maps');
2146
- __('https://thecitylane.com/the-golden-dawn-ponsonby/', 'wp-google-maps');
2147
- __('The Golden Dawn, Ponsonby', 'wp-google-maps');
2148
- __('https://thecitylane.com/vultures-lane-auckland-cbd/', 'wp-google-maps');
2149
- __('Vulture\'s Lane, Auckland', 'wp-google-maps');
2150
- __('https://thecitylane.com/21st-amendment-brewery-soma/', 'wp-google-maps');
2151
- __('21st Amendment Brewery, SOMA', 'wp-google-maps');
2152
- __('https://thecitylane.com/b-patisserie-pacific-heights/', 'wp-google-maps');
2153
- __('B. Patisserie, Pacific Heights', 'wp-google-maps');
2154
- __('https://thecitylane.com/cellarmaker-brewing-company-soma/', 'wp-google-maps');
2155
- __('Cellarmaker Brewing Company, SOMA', 'wp-google-maps');
2156
- __('https://thecitylane.com/church-key-north-beach/', 'wp-google-maps');
2157
- __('Church Key, North Beach', 'wp-google-maps');
2158
- __('https://thecitylane.com/city-beer-store-soma/', 'wp-google-maps');
2159
- __('City Beer Store, SOMA', 'wp-google-maps');
2160
- __('https://thecitylane.com/craftsman-and-wolves-mission-district/', 'wp-google-maps');
2161
- __('Craftsman And Wolves, Mission District', 'wp-google-maps');
2162
- __('https://thecitylane.com/hopwater-distribution-nob-hill/', 'wp-google-maps');
2163
- __('Hopwater Distribution, Nob Hill', 'wp-google-maps');
2164
- __('https://thecitylane.com/pacific-brewing-laboratory-black-hammer-brewing-soma/', 'wp-google-maps');
2165
- __('Pacific Brewing Laboratory / Black Hammer Brewing, SOMA', 'wp-google-maps');
2166
- __('https://thecitylane.com/swig-civic-center/', 'wp-google-maps');
2167
- __('SWIG, Civic Center', 'wp-google-maps');
2168
- __('https://thecitylane.com/mission-chinese-food-mission-district/', 'wp-google-maps');
2169
- __('Mission Chinese Food, Mission District', 'wp-google-maps');
2170
- __('https://thecitylane.com/thirstybear-soma/', 'wp-google-maps');
2171
- __('ThirstyBear, SOMA', 'wp-google-maps');
2172
- __('https://thecitylane.com/scales-fish-and-chippery-brunswick-east/', 'wp-google-maps');
2173
- __('Scales Fish & Chippery, Brunswick East', 'wp-google-maps');
2174
- __('https://thecitylane.com/blue-bottle-coffee-soma/', 'wp-google-maps');
2175
- __('Blue Bottle Coffee, SOMA', 'wp-google-maps');
2176
- __('https://thecitylane.com/beer-revolution-downtown-oakland/', 'wp-google-maps');
2177
- __('Beer Revolution, Downtown Oakland', 'wp-google-maps');
2178
- __('https://thecitylane.com/diving-dog-brewhouse-downtown-oakland/', 'wp-google-maps');
2179
- __('Diving Dog Brewhouse, Downtown Oakland', 'wp-google-maps');
2180
- __('https://thecitylane.com/lost-and-found-downtown-oakland/', 'wp-google-maps');
2181
- __('Lost & Found, Downtown Oakland', 'wp-google-maps');
2182
- __('https://thecitylane.com/hutch-downtown-oakland/', 'wp-google-maps');
2183
- __('Hutch, Downtown Oakland', 'wp-google-maps');
2184
- __('https://thecitylane.com/little-giant-ice-cream-downtown-oakland/', 'wp-google-maps');
2185
- __('Little Giant Ice Cream, Downtown Oakland', 'wp-google-maps');
2186
- __('https://thecitylane.com/ikes-place-downtown-oakland/', 'wp-google-maps');
2187
- __('Ike\'s Place, Downtown Oakland', 'wp-google-maps');
2188
- __('https://thecitylane.com/mr-and-mrs-anderson-hawthorn-east/', 'wp-google-maps');
2189
- __('Mr & Mrs Anderson, Hawthorn East', 'wp-google-maps');
2190
- __('https://thecitylane.com/frankies-top-shop-st-kilda-west/', 'wp-google-maps');
2191
- __('Frankie\'s Top Shop, St Kilda West', 'wp-google-maps');
2192
- __('https://thecitylane.com/elaines-coffee-call-lincoln-park/', 'wp-google-maps');
2193
- __('Elaine\'s Coffee Call, Lincoln Park', 'wp-google-maps');
2194
- __('https://thecitylane.com/heritage-bicycles-lakeview/', 'wp-google-maps');
2195
- __('Heritage Bicycles, Lakeview', 'wp-google-maps');
2196
- __('https://thecitylane.com/meddle-coffee-bar-west-loop/', 'wp-google-maps');
2197
- __('Meddle Coffee Bar, West Loop', 'wp-google-maps');
2198
- __('https://thecitylane.com/oromo-cafe-lincoln-square/', 'wp-google-maps');
2199
- __('Oromo Cafe, Lincoln Square', 'wp-google-maps');
2200
- __('https://thecitylane.com/howells-and-hood-magnificent-mile/', 'wp-google-maps');
2201
- __('Howells & Hood, Magnificent Mile', 'wp-google-maps');
2202
- __('https://thecitylane.com/begyle-brewing-north-center/', 'wp-google-maps');
2203
- __('Begyle Brewing, North Center', 'wp-google-maps');
2204
- __('https://thecitylane.com/fountainhead-lincoln-square/', 'wp-google-maps');
2205
- __('Fountainhead, Lincoln Square', 'wp-google-maps');
2206
- __('https://thecitylane.com/richards-bar-river-west/', 'wp-google-maps');
2207
- __('Richard\'s Bar, River West', 'wp-google-maps');
2208
- __('https://thecitylane.com/the-drifter-river-north/', 'wp-google-maps');
2209
- __('The Drifter, River North', 'wp-google-maps');
2210
- __('https://thecitylane.com/blue-chicago-river-north/', 'wp-google-maps');
2211
- __('Blue Chicago, River North', 'wp-google-maps');
2212
- __('https://thecitylane.com/goose-island-brewpub-clyborn-lincoln-park/', 'wp-google-maps');
2213
- __('Goose Island Brewpub (Clyborn), Lincoln Park', 'wp-google-maps');
2214
- __('https://thecitylane.com/local-option-lincoln-park/', 'wp-google-maps');
2215
- __('Local Option, Lincoln Park', 'wp-google-maps');
2216
- __('https://thecitylane.com/beermiscuous-lakeview/', 'wp-google-maps');
2217
- __('Beermiscuous, Lakeview', 'wp-google-maps');
2218
- __('https://thecitylane.com/links-taproom-wicker-park/', 'wp-google-maps');
2219
- __('Links Taproom, Wicker Park', 'wp-google-maps');
2220
- __('https://thecitylane.com/bangers-and-lace-wicker-park/', 'wp-google-maps');
2221
- __('Bangers & Lace, Wicker Park', 'wp-google-maps');
2222
- __('https://thecitylane.com/forbidden-root-west-town/', 'wp-google-maps');
2223
- __('Forbidden Root, West Town', 'wp-google-maps');
2224
- __('https://thecitylane.com/lagunitas-brewing-company-north-lawndale/', 'wp-google-maps');
2225
- __('Lagunitas Brewing Company, North Lawndale', 'wp-google-maps');
2226
- __('https://thecitylane.com/map-room-bucktown/', 'wp-google-maps');
2227
- __('Map Room, Bucktown', 'wp-google-maps');
2228
- __('https://thecitylane.com/hopewell-brewing-company-logan-square/', 'wp-google-maps');
2229
- __('Hopewell Brewing Company, Logan Square', 'wp-google-maps');
2230
- __('https://thecitylane.com/crown-liquors-logan-square/', 'wp-google-maps');
2231
- __('Crown Liquors, Logan Square', 'wp-google-maps');
2232
- __('https://thecitylane.com/smoque-bbq-irving-park/', 'wp-google-maps');
2233
- __('Smoque BBQ, Irving Park', 'wp-google-maps');
2234
- __('https://thecitylane.com/duck-duck-goat-west-loop/', 'wp-google-maps');
2235
- __('Duck Duck Goat, West Loop', 'wp-google-maps');
2236
- __('https://thecitylane.com/duseks-pilsen/', 'wp-google-maps');
2237
- __('Dusek\'s, Pilsen', 'wp-google-maps');
2238
- __('https://thecitylane.com/gary-indiana-a-decaying-city/', 'wp-google-maps');
2239
- __('Gary, Indiana A Decaying City', 'wp-google-maps');
2240
- __('https://thecitylane.com/villains-black-market-craft-loop/', 'wp-google-maps');
2241
- __('Villains Black Market Craft, Loop', 'wp-google-maps');
2242
- __('https://thecitylane.com/seoul-taco-river-north/', 'wp-google-maps');
2243
- __('Seoul Taco, River North', 'wp-google-maps');
2244
- __('https://thecitylane.com/calumet-fisheries-south-deering/', 'wp-google-maps');
2245
- __('Calumet Fisheries, South Deering', 'wp-google-maps');
2246
- __('https://thecitylane.com/birrieria-zaragoza-archer-heights/', 'wp-google-maps');
2247
- __('Birrieria Zaragoza, Archer Heights', 'wp-google-maps');
2248
- __('https://thecitylane.com/jenis-splendid-ice-creams-lakeview/', 'wp-google-maps');
2249
- __('Jeni\'s Splendid Ice Creams, Lakeview', 'wp-google-maps');
2250
- __('https://thecitylane.com/mannys-cafeteria-and-delicatessen-south-loop/', 'wp-google-maps');
2251
- __('Manny\'s Cafeteria & Delicatessen, South Loop', 'wp-google-maps');
2252
- __('https://thecitylane.com/the-game-room-loop/', 'wp-google-maps');
2253
- __('The Game Room, Loop', 'wp-google-maps');
2254
- __('https://thecitylane.com/puebla-restaurant-taqueria-logan-square/', 'wp-google-maps');
2255
- __('Puebla Restaurant & Taqueria, Logan Square', 'wp-google-maps');
2256
- __('https://thecitylane.com/three-floyds-brewing-co-munster/', 'wp-google-maps');
2257
- __('Three Floyds Brewing Co., Munster', 'wp-google-maps');
2258
- __('https://thecitylane.com/18th-street-brewery-hammond/', 'wp-google-maps');
2259
- __('18th Street Brewery, Hammond', 'wp-google-maps');
2260
- __('https://thecitylane.com/ginos-east-river-north/', 'wp-google-maps');
2261
- __('Gino\'s East, River North', 'wp-google-maps');
2262
- __('https://thecitylane.com/dusty-groove-ukrainian-village/', 'wp-google-maps');
2263
- __('Dusty Groove, Ukrainian Village', 'wp-google-maps');
2264
- __('https://thecitylane.com/chicago-history-museum-lincoln-park/', 'wp-google-maps');
2265
- __('Chicago History Museum, Lincoln Park', 'wp-google-maps');
2266
- __('https://thecitylane.com/sir-charles-fitzroy/', 'wp-google-maps');
2267
- __('Sir Charles, Fitzroy', 'wp-google-maps');
2268
- __('https://thecitylane.com/intelligentsia-coffee-old-town/', 'wp-google-maps');
2269
- __('Intelligentsia Coffee, Old Town', 'wp-google-maps');
2270
- __('https://thecitylane.com/osmium-coffee-bar-lakeview/', 'wp-google-maps');
2271
- __('Osmium Coffee Bar, Lakeview', 'wp-google-maps');
2272
- __('https://thecitylane.com/giant-robot-street-feast-canary-wharf/', 'wp-google-maps');
2273
- __('Giant Robot - Street Feast, Canary Wharf', 'wp-google-maps');
2274
- __('https://thecitylane.com/big-chill-house-kings-cross/', 'wp-google-maps');
2275
- __('Big Chill House, Kings Cross', 'wp-google-maps');
2276
- __('https://thecitylane.com/midnight-apothecary-brunel-museum-rotherhithe/', 'wp-google-maps');
2277
- __('Midnight Apothecary at Brunel Museum, Rotherhithe', 'wp-google-maps');
2278
- __('https://thecitylane.com/rooftop-cinema-bussey-building-peckham/', 'wp-google-maps');
2279
- __('Rooftop Cinema at Bussey Building, Peckham', 'wp-google-maps');
2280
- __('https://thecitylane.com/the-culpeper-spitalfields/', 'wp-google-maps');
2281
- __('The Culpeper, Spitalfields', 'wp-google-maps');
2282
- __('https://thecitylane.com/dalston-rooftop-park-dalston/', 'wp-google-maps');
2283
- __('Dalston Rooftop Park, Dalston', 'wp-google-maps');
2284
- __('https://thecitylane.com/the-faltering-fullback-finsbury-park/', 'wp-google-maps');
2285
- __('The Faltering Fullback, Finsbury Park', 'wp-google-maps');
2286
- __('https://thecitylane.com/franks-cafe-peckham/', 'wp-google-maps');
2287
- __('Frank\'s Cafe, Peckham', 'wp-google-maps');
2288
- __('https://thecitylane.com/oval-space-bethnal-green/', 'wp-google-maps');
2289
- __('Oval Space, Bethnal Green', 'wp-google-maps');
2290
- __('https://thecitylane.com/playground-proof-london-fields/', 'wp-google-maps');
2291
- __('Playground & Proof, London Fields', 'wp-google-maps');
2292
- __('https://thecitylane.com/the-prince-of-wales-brixton/', 'wp-google-maps');
2293
- __('The Prince Of Wales, Brixton', 'wp-google-maps');
2294
- __('https://thecitylane.com/queen-of-hoxton-shoreditch/', 'wp-google-maps');
2295
- __('Queen Of Hoxton, Shoreditch', 'wp-google-maps');
2296
- __('https://thecitylane.com/the-red-lion-hoxton/', 'wp-google-maps');
2297
- __('The Red Lion, Hoxton', 'wp-google-maps');
2298
- __('https://thecitylane.com/the-roof-gardens-kensington/', 'wp-google-maps');
2299
- __('The Roof Gardens, Kensington', 'wp-google-maps');
2300
- __('https://thecitylane.com/alfies-rooftop-kitchen-marylebone/', 'wp-google-maps');
2301
- __('Alfie\'s Rooftop Kitchen, Marylebone', 'wp-google-maps');
2302
- __('https://thecitylane.com/queen-elizabeth-roof-garden-bar-cafe-southbank/', 'wp-google-maps');
2303
- __('Queen Elizabeth Roof Garden Bar & Cafe, Southbank', 'wp-google-maps');
2304
- __('https://thecitylane.com/lost-format-society-croydon/', 'wp-google-maps');
2305
- __('Lost Format Society, Croydon', 'wp-google-maps');
2306
- __('https://thecitylane.com/the-mill-brewery-collingwood/', 'wp-google-maps');
2307
- __('The Mill Brewery, Collingwood', 'wp-google-maps');
2308
- __('https://thecitylane.com/back-alley-sallys-footscray/', 'wp-google-maps');
2309
- __('Back Alley Sally\'s, Footscray', 'wp-google-maps');
2310
- __('https://thecitylane.com/hop-nation-brewing-co-footscray/', 'wp-google-maps');
2311
- __('Hop Nation Brewing Co, Footscray', 'wp-google-maps');
2312
- __('https://thecitylane.com/seddon-wine-store-seddon/', 'wp-google-maps');
2313
- __('Seddon Wine Store, Seddon', 'wp-google-maps');
2314
- __('https://thecitylane.com/charles-and-gamon-seddon/', 'wp-google-maps');
2315
- __('Charles & Gamon, Seddon', 'wp-google-maps');
2316
- __('https://thecitylane.com/littlefoot-bar-footscray/', 'wp-google-maps');
2317
- __('Littlefoot Bar, Footscray', 'wp-google-maps');
2318
- __('https://thecitylane.com/bar-josephine-footscray/', 'wp-google-maps');
2319
- __('Bar Josephine, Footscray', 'wp-google-maps');
2320
- __('https://thecitylane.com/the-night-heron-footscray/', 'wp-google-maps');
2321
- __('The Night Heron, Footscray', 'wp-google-maps');
2322
- __('https://thecitylane.com/nomada-cafe-y-tapas-fitzroy/', 'wp-google-maps');
2323
- __('Nomada Cafe y Tapas, Fitzroy', 'wp-google-maps');
2324
- __('https://thecitylane.com/carlton-farmers-market-carlton-north/', 'wp-google-maps');
2325
- __('Carlton Farmers\' Market, Carlton North', 'wp-google-maps');
2326
- __('https://thecitylane.com/basta-fitzroy/', 'wp-google-maps');
2327
- __('Basta, Fitzroy', 'wp-google-maps');
2328
- __('https://thecitylane.com/etties-hobart-cbd/', 'wp-google-maps');
2329
- __('Ettie\'s, Hobart', 'wp-google-maps');
2330
- __('https://thecitylane.com/kaiju-can-bar-hobart-cbd/', 'wp-google-maps');
2331
- __('Kaiju Can Bar, Hobart', 'wp-google-maps');
2332
- __('https://thecitylane.com/preachers-battery-point/', 'wp-google-maps');
2333
- __('Preachers, Battery Point', 'wp-google-maps');
2334
- __('https://thecitylane.com/shambles-brewery-hobart-cbd/', 'wp-google-maps');
2335
- __('Shambles Brewery, Hobart', 'wp-google-maps');
2336
- __('https://thecitylane.com/the-winston-north-hobart/', 'wp-google-maps');
2337
- __('The Winston, North Hobart', 'wp-google-maps');
2338
- __('https://thecitylane.com/the-bruny-island-cheese-co-battery-point/', 'wp-google-maps');
2339
- __('The Bruny Island Cheese Co., Battery Point', 'wp-google-maps');
2340
- __('https://thecitylane.com/blue-bottle-coffee-roppongi/', 'wp-google-maps');
2341
- __('Blue Bottle Coffee, Roppongi', 'wp-google-maps');
2342
- __('https://thecitylane.com/yona-yona-beer-works-aoyama/', 'wp-google-maps');
2343
- __('Yona Yona Beer Works, Aoyama', 'wp-google-maps');
2344
- __('https://thecitylane.com/shozo-coffee-store-aoyama/', 'wp-google-maps');
2345
- __('Shozo Coffee Store, Aoyama', 'wp-google-maps');
2346
- __('https://thecitylane.com/koffee-mameya-omotesando/', 'wp-google-maps');
2347
- __('Koffee Mameya, Omotesando', 'wp-google-maps');
2348
- __('https://thecitylane.com/baird-tap-room-harajuku/', 'wp-google-maps');
2349
- __('Baird Tap Room, Harajuku', 'wp-google-maps');
2350
- __('https://thecitylane.com/watering-hole-shinjuku/', 'wp-google-maps');
2351
- __('Watering Hole, Shinjuku', 'wp-google-maps');
2352
- __('https://thecitylane.com/tap-stand-craft-beer-pizza-shinjuku/', 'wp-google-maps');
2353
- __('Tap Stand Craft Beer & Pizza, Shinjuku', 'wp-google-maps');
2354
- __('https://thecitylane.com/blue-bottle-coffee-shinjuku/', 'wp-google-maps');
2355
- __('Blue Bottle Coffee, Shinjuku', 'wp-google-maps');
2356
- __('https://thecitylane.com/verve-coffee-roasters-shinjuku/', 'wp-google-maps');
2357
- __('Verve Coffee Roasters, Shinjuku', 'wp-google-maps');
2358
- __('https://thecitylane.com/hop-scotch-craft-beer-whiskey-chiyoda/', 'wp-google-maps');
2359
- __('Hop Scotch Craft Beer & Whiskey, Chiyoda', 'wp-google-maps');
2360
- __('https://thecitylane.com/popeye-beer-club-ryogoku/', 'wp-google-maps');
2361
- __('Popeye Beer Club, Ryogoku', 'wp-google-maps');
2362
- __('https://thecitylane.com/hitachino-brewing-lab-tokyo-station-chiyoda/', 'wp-google-maps');
2363
- __('Hitachino Brewing Lab (Tokyo Station), Chiyoda', 'wp-google-maps');
2364
- __('https://thecitylane.com/hokkaido-ramen-santouka-shibuya/', 'wp-google-maps');
2365
- __('Hokkaido Ramen Santouka, Shibuya', 'wp-google-maps');
2366
- __('https://thecitylane.com/kappabashi-coffee-and-bar-taito/', 'wp-google-maps');
2367
- __('Kappabashi Coffee & Bar, Taito', 'wp-google-maps');
2368
- __('https://thecitylane.com/kanda-coffee-kanda/', 'wp-google-maps');
2369
- __('Kanda Coffee, Kanda', 'wp-google-maps');
2370
- __('https://thecitylane.com/the-northcote-stn-northcote/', 'wp-google-maps');
2371
- __('The Northcote STN, Northcote', 'wp-google-maps');
2372
- __('https://thecitylane.com/kisume-melbourne-cbd/', 'wp-google-maps');
2373
- __('Kisume, Melbourne', 'wp-google-maps');
2374
- __('https://thecitylane.com/hippo-co-canberra/', 'wp-google-maps');
2375
- __('Hippo Co, Canberra', 'wp-google-maps');
2376
- __('https://thecitylane.com/bentspoke-brewing-co-braddon/', 'wp-google-maps');
2377
- __('Bentspoke Brewing Co., Braddon', 'wp-google-maps');
2378
- __('https://thecitylane.com/brew-nation-canberra/', 'wp-google-maps');
2379
- __('Brew Nation, Canberra', 'wp-google-maps');
2380
- __('https://thecitylane.com/honkytonks-canberra/', 'wp-google-maps');
2381
- __('Honkytonks, Canberra', 'wp-google-maps');
2382
- __('https://thecitylane.com/heart-of-darkness-craft-brewery-district-1/', 'wp-google-maps');
2383
- __('Heart Of Darkness Craft Brewery, District 1', 'wp-google-maps');
2384
- __('https://thecitylane.com/ong-cao-district-1/', 'wp-google-maps');
2385
- __('Ong Cao, District 1', 'wp-google-maps');
2386
- __('https://thecitylane.com/winking-seal-beer-co-district-1/', 'wp-google-maps');
2387
- __('Winking Seal Beer Co., District 1', 'wp-google-maps');
2388
- __('https://thecitylane.com/pasteur-street-brewing-company-district-1/', 'wp-google-maps');
2389
- __('Pasteur Street Brewing Company, District 1', 'wp-google-maps');
2390
- __('https://thecitylane.com/rogue-saigon-district-1/', 'wp-google-maps');
2391
- __('Rogue Saigon, District 1', 'wp-google-maps');
2392
- __('https://thecitylane.com/broma-not-a-bar-district-1/', 'wp-google-maps');
2393
- __('Broma: Not A Bar, District 1', 'wp-google-maps');
2394
- __('https://thecitylane.com/biacraft-artisan-ales-district-3/', 'wp-google-maps');
2395
- __('BiaCraft Artisan Ales, District 3', 'wp-google-maps');
2396
- __('https://thecitylane.com/east-west-brewing-co-district-1/', 'wp-google-maps');
2397
- __('East West Brewing Co., District 1', 'wp-google-maps');
2398
- __('https://thecitylane.com/beer-plaza-district-1/', 'wp-google-maps');
2399
- __('Beer Plaza, District 1', 'wp-google-maps');
2400
- __('https://thecitylane.com/hightail-docklands/', 'wp-google-maps');
2401
- __('Hightail, Docklands', 'wp-google-maps');
2402
- __('https://thecitylane.com/craft-beer-market-jimbocho-kanda/', 'wp-google-maps');
2403
- __('Craft Beer Market (Jimbocho), Kanda', 'wp-google-maps');
2404
- __('https://thecitylane.com/devil-craft-kanda/', 'wp-google-maps');
2405
- __('Devil Craft, Kanda', 'wp-google-maps');
2406
- __('https://thecitylane.com/craftheads-shibuya/', 'wp-google-maps');
2407
- __('Craftheads, Shibuya', 'wp-google-maps');
2408
- __('https://thecitylane.com/brewdog-roppongi/', 'wp-google-maps');
2409
- __('BrewDog, Roppongi', 'wp-google-maps');
2410
- __('https://thecitylane.com/mikkeller-bar-shibuya/', 'wp-google-maps');
2411
- __('Mikkeller Bar, Shibuya', 'wp-google-maps');
2412
- __('https://thecitylane.com/goodbeer-faucets-shibuya/', 'wp-google-maps');
2413
- __('Goodbeer Faucets, Shibuya', 'wp-google-maps');
2414
- __('https://thecitylane.com/two-dogs-tap-room-roppongi/', 'wp-google-maps');
2415
- __('Two Dogs Tap Room, Roppongi', 'wp-google-maps');
2416
- __('https://thecitylane.com/ushitora-shimokitazawa/', 'wp-google-maps');
2417
- __('Ushitora, Shimokitazawa', 'wp-google-maps');
2418
- __('https://thecitylane.com/piquancy-hawthorn/', 'wp-google-maps');
2419
- __('Piquancy, Hawthorn', 'wp-google-maps');
2420
- __('https://thecitylane.com/saigon-outcast-district-2/', 'wp-google-maps');
2421
- __('Saigon Outcast, District 2', 'wp-google-maps');
2422
- __('https://thecitylane.com/quan-ut-ut-district-1/', 'wp-google-maps');
2423
- __('Quan Ut Ut, District 1', 'wp-google-maps');
2424
- __('https://thecitylane.com/lac-brewing-co-district-7/', 'wp-google-maps');
2425
- __('Lac Brewing Co, District 7', 'wp-google-maps');
2426
- __('https://thecitylane.com/homi-noodle-bar-melbourne-cbd/', 'wp-google-maps');
2427
- __('HOMI Noodle Bar, Melbourne', 'wp-google-maps');
2428
- __('https://thecitylane.com/proud-sprout-collingwood/', 'wp-google-maps');
2429
- __('Proud Sprout, Collingwood', 'wp-google-maps');
2430
- __('https://thecitylane.com/cindys-rooftop-loop/', 'wp-google-maps');
2431
- __('Cindy\'s Rooftop, Loop', 'wp-google-maps');
2432
- __('https://thecitylane.com/the-j-parker-lincoln-park/', 'wp-google-maps');
2433
- __('The J. Parker, Lincoln Park', 'wp-google-maps');
2434
- __('https://thecitylane.com/londonhouse-chicago-loop/', 'wp-google-maps');
2435
- __('LondonHouse Chicago, Loop', 'wp-google-maps');
2436
- __('https://thecitylane.com/aire-hyatt-centric-loop/', 'wp-google-maps');
2437
- __('AIRE at Hyatt Centric, Loop', 'wp-google-maps');
2438
- __('https://thecitylane.com/io-godfrey-rooftop-lounge-river-north/', 'wp-google-maps');
2439
- __('IO Godfrey Rooftop Lounge, River North', 'wp-google-maps');
2440
- __('https://thecitylane.com/rock-bottom-brewery-chicago-river-north/', 'wp-google-maps');
2441
- __('Rock Bottom Brewery, River North', 'wp-google-maps');
2442
- __('https://thecitylane.com/roof-on-thewit-loop/', 'wp-google-maps');
2443
- __('ROOF On theWit, Loop', 'wp-google-maps');
2444
- __('https://thecitylane.com/hobart-brewing-co-hobart-cbd/', 'wp-google-maps');
2445
- __('Hobart Brewing Co., Hobart', 'wp-google-maps');
2446
- __('https://thecitylane.com/abesha-restaurant-footscray/', 'wp-google-maps');
2447
- __('Abesha Restaurant, Footscray', 'wp-google-maps');
2448
- __('https://thecitylane.com/mr-west-bar-and-bottleshop-footscray/', 'wp-google-maps');
2449
- __('Mr West Bar & Bottleshop, Footscray', 'wp-google-maps');
2450
- __('https://thecitylane.com/rustica-rialto-melbourne-cbd/', 'wp-google-maps');
2451
- __('Rustica Rialto, Melbourne', 'wp-google-maps');
2452
- __('https://thecitylane.com/mr-union-ascot-vale/', 'wp-google-maps');
2453
- __('Mr Union, Ascot Vale', 'wp-google-maps');
2454
- __('https://thecitylane.com/juliet-melbourne-melbourne-cbd/', 'wp-google-maps');
2455
- __('Juliet Melbourne, Melbourne', 'wp-google-maps');
2456
- __('https://thecitylane.com/curly-whiskers-brighton/', 'wp-google-maps');
2457
- __('Curly Whiskers, Brighton', 'wp-google-maps');
2458
- __('https://thecitylane.com/the-worlds-end-market-chelsea/', 'wp-google-maps');
2459
- __('The World\'s End Market, Chelsea', 'wp-google-maps');
2460
- __('https://thecitylane.com/concrete-boots-bar-richmond/', 'wp-google-maps');
2461
- __('Concrete Boots Bar, Richmond', 'wp-google-maps');
2462
- __('https://thecitylane.com/the-cliveden-bar-dining-east-melbourne/', 'wp-google-maps');
2463
- __('The Cliveden Bar & Dining, East Melbourne', 'wp-google-maps');
2464
- __('https://thecitylane.com/biggie-smalls-kbabs-windsor/', 'wp-google-maps');
2465
- __('Biggie Smalls Kbabs, Windsor', 'wp-google-maps');
2466
- __('https://thecitylane.com/holla-food-drink-richmond/', 'wp-google-maps');
2467
- __('Holla Food & Drink, Richmond', 'wp-google-maps');
2468
- __('https://thecitylane.com/piccolina-gelateria-collingwood/', 'wp-google-maps');
2469
- __('Piccolina Gelateria, Collingwood', 'wp-google-maps');
2470
- __('https://thecitylane.com/vicino-parsons-green/', 'wp-google-maps');
2471
- __('Vicino, Parsons Green', 'wp-google-maps');
2472
- __('https://thecitylane.com/new-shanghai-chadstone/', 'wp-google-maps');
2473
- __('New Shanghai, Chadstone', 'wp-google-maps');
2474
- __('https://thecitylane.com/fitzroy-social-fitzroy/', 'wp-google-maps');
2475
- __('Fitzroy Social, Fitzroy', 'wp-google-maps');
2476
- __('https://thecitylane.com/dunning-kruger-brunswick-east/', 'wp-google-maps');
2477
- __('Dunning Kruger, Brunswick East', 'wp-google-maps');
2478
- __('https://thecitylane.com/musashi-ramen-izakaya-bar-melbourne-cbd/', 'wp-google-maps');
2479
- __('Musashi Ramen & Izakaya Bar, Melbourne', 'wp-google-maps');
2480
- __('https://thecitylane.com/ling-nan-melbourne-cbd/', 'wp-google-maps');
2481
- __('Ling Nan, Melbourne', 'wp-google-maps');
2482
- __('https://thecitylane.com/horn-please-fitzroy-north/', 'wp-google-maps');
2483
- __('Horn Please, Fitzroy North', 'wp-google-maps');
2484
- __('https://thecitylane.com/redwood-tasting-room-fitzroy-north/', 'wp-google-maps');
2485
- __('Redwood Tasting Room, Fitzroy North', 'wp-google-maps');
2486
- __('https://thecitylane.com/supernormal-canteen-st-kilda/', 'wp-google-maps');
2487
- __('Supernormal Canteen, St Kilda', 'wp-google-maps');
2488
- __('https://thecitylane.com/mikkeller-bar-union-square/', 'wp-google-maps');
2489
- __('Mikkeller Bar, Union Square', 'wp-google-maps');
2490
- __('https://thecitylane.com/mr-holmes-bakehouse-nob-hill/', 'wp-google-maps');
2491
- __('Mr. Holmes Bakehouse, Nob Hill', 'wp-google-maps');
2492
- __('https://thecitylane.com/papalote-mexican-grill-mission-district/', 'wp-google-maps');
2493
- __('Papalote Mexican Grill, Mission District', 'wp-google-maps');
2494
- __('https://thecitylane.com/toronado-western-addition/', 'wp-google-maps');
2495
- __('Toronado, Western Addition', 'wp-google-maps');
2496
- __('https://thecitylane.com/fermentation-lab-soma/', 'wp-google-maps');
2497
- __('Fermentation Lab, SOMA', 'wp-google-maps');
2498
- __('https://thecitylane.com/almanac-beer-taproom-mission-district/', 'wp-google-maps');
2499
- __('Almanac Beer Taproom, Mission District', 'wp-google-maps');
2500
- __('https://thecitylane.com/big-rec-taproom-mission-district/', 'wp-google-maps');
2501
- __('Big Rec Taproom, Mission District', 'wp-google-maps');
2502
- __('https://thecitylane.com/four-barrel-coffee-mission-district/', 'wp-google-maps');
2503
- __('Four Barrel Coffee, Mission District', 'wp-google-maps');
2504
- __('https://thecitylane.com/samovar-tea-bar-mission-district/', 'wp-google-maps');
2505
- __('Samovar Tea Bar, Mission District', 'wp-google-maps');
2506
- __('https://thecitylane.com/tartine-bakery-mission-district/', 'wp-google-maps');
2507
- __('Tartine Bakery, Mission District', 'wp-google-maps');
2508
- __('https://thecitylane.com/foodhall-mission-district/', 'wp-google-maps');
2509
- __('Foodhall, Mission District', 'wp-google-maps');
2510
- __('https://thecitylane.com/skool-soma/', 'wp-google-maps');
2511
- __('Skool, SOMA', 'wp-google-maps');
2512
- __('https://thecitylane.com/taqueria-la-cumbre-mission-district/', 'wp-google-maps');
2513
- __('Taqueria La Cumbre, Mission District', 'wp-google-maps');
2514
- __('https://thecitylane.com/el-sur-soma/', 'wp-google-maps');
2515
- __('El Sur, SOMA', 'wp-google-maps');
2516
- __('https://thecitylane.com/vive-la-tarte-soma/', 'wp-google-maps');
2517
- __('Vive la Tarte, SOMA', 'wp-google-maps');
2518
- __('https://thecitylane.com/sightglass-coffee-soma/', 'wp-google-maps');
2519
- __('Sightglass Coffee, SOMA', 'wp-google-maps');
2520
- __('https://thecitylane.com/sightglass-coffee-mission-district/', 'wp-google-maps');
2521
- __('Sightglass Coffee, Mission District', 'wp-google-maps');
2522
- __('https://thecitylane.com/barebottle-brewing-company-bernal-heights/', 'wp-google-maps');
2523
- __('Barebottle Brewing Company, Bernal Heights', 'wp-google-maps');
2524
- __('https://thecitylane.com/la-taqueria-mission-district/', 'wp-google-maps');
2525
- __('La Taqueria, Mission District', 'wp-google-maps');
2526
- __('https://thecitylane.com/pi-bar-mission-district/', 'wp-google-maps');
2527
- __('Pi Bar, Mission District', 'wp-google-maps');
2528
- __('https://thecitylane.com/bear-vs-bull-bar-mission-district/', 'wp-google-maps');
2529
- __('Bear vs Bull Bar, Mission District', 'wp-google-maps');
2530
- __('https://thecitylane.com/alamo-drafthouse-cinema-new-mission-mission-district/', 'wp-google-maps');
2531
- __('Alamo Drafthouse Cinema - New Mission, Mission District', 'wp-google-maps');
2532
- __('https://thecitylane.com/blue-bottle-coffee-ferry-building-embarcadero/', 'wp-google-maps');
2533
- __('Blue Bottle Coffee, Embarcadero', 'wp-google-maps');
2534
- __('https://thecitylane.com/cowgirl-creamery-sidekick-cafe-embarcadero/', 'wp-google-maps');
2535
- __('Cowgirl Creamery Sidekick Cafe, Embarcadero', 'wp-google-maps');
2536
- __('https://thecitylane.com/cowgirl-creamery-cheese-shop-ferry-building-embarcadero/', 'wp-google-maps');
2537
- __('Cowgirl Creamery Cheese Shop, Embarcadero', 'wp-google-maps');
2538
- __('https://thecitylane.com/ferry-building-marketplace-embarcadero/', 'wp-google-maps');
2539
- __('Ferry Building Marketplace, Embarcadero', 'wp-google-maps');
2540
- __('https://thecitylane.com/in-situ-at-sfmoma-soma/', 'wp-google-maps');
2541
- __('In Situ at SFMOMA, SOMA', 'wp-google-maps');
2542
- __('https://thecitylane.com/san-francisco-museum-of-modern-art-sfmoma-soma/', 'wp-google-maps');
2543
- __('San Francisco Museum of Modern Art (SFMOMA), SOMA', 'wp-google-maps');
2544
- __('https://thecitylane.com/yerba-buena-gardens-soma/', 'wp-google-maps');
2545
- __('Yerba Buena Gardens, SOMA', 'wp-google-maps');
2546
- __('https://thecitylane.com/taqueria-el-farolito-mission-district/', 'wp-google-maps');
2547
- __('Taqueria El Farolito, Mission District', 'wp-google-maps');
2548
- __('https://thecitylane.com/arizmendi-bakery-mission-district/', 'wp-google-maps');
2549
- __('Arizmendi Bakery, Mission District', 'wp-google-maps');
2550
- __('https://thecitylane.com/dandelion-chocolate-mission-district/', 'wp-google-maps');
2551
- __('Dandelion Chocolate, Mission District', 'wp-google-maps');
2552
- __('https://thecitylane.com/del-popolo-soma/', 'wp-google-maps');
2553
- __('Del Popolo, SOMA', 'wp-google-maps');
2554
- __('https://thecitylane.com/the-crafty-fox-alehouse-mission-district/', 'wp-google-maps');
2555
- __('The Crafty Fox Alehouse, Mission District', 'wp-google-maps');
2556
- __('https://thecitylane.com/zeitgeist-mission-district/', 'wp-google-maps');
2557
- __('Zeitgeist, Mission District', 'wp-google-maps');
2558
- __('https://thecitylane.com/anchor-public-taps-potrero/', 'wp-google-maps');
2559
- __('Anchor Public Taps, Potrero', 'wp-google-maps');
2560
- __('https://thecitylane.com/heart-of-the-city-farmers-market-civic-center/', 'wp-google-maps');
2561
- __('Heart Of The City Farmers Market, Civic Center', 'wp-google-maps');
2562
- __('https://thecitylane.com/adobe-books-arts-cooperative-mission-district/', 'wp-google-maps');
2563
- __('Adobe Books & Arts Cooperative, Mission District', 'wp-google-maps');
2564
- __('https://thecitylane.com/wise-sons-jewish-delicatessen-mission-district/', 'wp-google-maps');
2565
- __('Wise Sons Jewish Delicatessen, Mission District', 'wp-google-maps');
2566
- __('https://thecitylane.com/twin-peaks-san-francisco/', 'wp-google-maps');
2567
- __('Twin Peaks, San Francisco', 'wp-google-maps');
2568
- __('https://thecitylane.com/san-francisco-de-asis-mission-dolores-mission-district/', 'wp-google-maps');
2569
- __('Mission San Francisco de Asis (Mission Dolores), Mission District', 'wp-google-maps');
2570
- __('https://thecitylane.com/incognito-bar-jalan-besar/', 'wp-google-maps');
2571
- __('iNCOGNiTO Bar, Jalan Besar', 'wp-google-maps');
2572
- __('https://thecitylane.com/chye-seng-huat-hardware-jalan-besar/', 'wp-google-maps');
2573
- __('Chye Seng Huat Hardware, Jalan Besar', 'wp-google-maps');
2574
- __('https://thecitylane.com/beach-road-scissors-cut-curry-rice-jalan-besar/', 'wp-google-maps');
2575
- __('Beach Road Scissors Cut Curry Rice, Jalan Besar', 'wp-google-maps');
2576
- __('https://thecitylane.com/sandy-vs-fitzroy/', 'wp-google-maps');
2577
- __('Sandy V\'s, Fitzroy', 'wp-google-maps');
2578
- __('https://thecitylane.com/capital-brewing-co-fyshwick/', 'wp-google-maps');
2579
- __('Capital Brewing Co., Fyshwick', 'wp-google-maps');
2580
- __('https://thecitylane.com/merah-northcote/', 'wp-google-maps');
2581
- __('Merah, Northcote', 'wp-google-maps');
2582
- __('https://thecitylane.com/buck-mulligans-northcote/', 'wp-google-maps');
2583
- __('Buck Mulligan\'s, Northcote', 'wp-google-maps');
2584
- __('https://thecitylane.com/the-thornbury-local-thornbury/', 'wp-google-maps');
2585
- __('The Thornbury Local, Thornbury', 'wp-google-maps');
2586
- __('https://thecitylane.com/pallino-bar-thornbury/', 'wp-google-maps');
2587
- __('Pallino Bar, Thornbury', 'wp-google-maps');
2588
- __('https://thecitylane.com/dexter-preston/', 'wp-google-maps');
2589
- __('Dexter, Preston', 'wp-google-maps');
2590
- __('https://thecitylane.com/rice-paper-sister-melbourne-cbd/', 'wp-google-maps');
2591
- __('Rice Paper Sister, Melbourne', 'wp-google-maps');
2592
- __('https://thecitylane.com/other-half-brewing-company-red-hook/', 'wp-google-maps');
2593
- __('Other Half Brewing Company, Red Hook', 'wp-google-maps');
2594
- __('https://thecitylane.com/hometown-bar-b-que-red-hook/', 'wp-google-maps');
2595
- __('Hometown Bar-B-Que, Red Hook', 'wp-google-maps');
2596
- __('https://thecitylane.com/folksbier-brauerei-carroll-gardens/', 'wp-google-maps');
2597
- __('Folksbier Brauerei, Carroll Gardens', 'wp-google-maps');
2598
- __('https://thecitylane.com/gimme-coffee-lorimer-williamsburg/', 'wp-google-maps');
2599
- __('Gimme! Coffee (Lorimer), Williamsburg', 'wp-google-maps');
2600
- __('https://thecitylane.com/union-square-greenmarket-union-square/', 'wp-google-maps');
2601
- __('Union Square Greenmarket, Union Square', 'wp-google-maps');
2602
- __('https://thecitylane.com/black-seed-bagels-nolita/', 'wp-google-maps');
2603
- __('Black Seed Bagels, Nolita', 'wp-google-maps');
2604
- __('https://thecitylane.com/egg-shop-nolita/', 'wp-google-maps');
2605
- __('Egg Shop, Nolita', 'wp-google-maps');
2606
- __('https://thecitylane.com/cafe-integral-nolita/', 'wp-google-maps');
2607
- __('Cafe Integral, Nolita', 'wp-google-maps');
2608
- __('https://thecitylane.com/the-butchers-daughter-nolita/', 'wp-google-maps');
2609
- __('The Butcher\'s Daughter, Nolita', 'wp-google-maps');
2610
- __('https://thecitylane.com/randolph-beer-nolita/', 'wp-google-maps');
2611
- __('Randolph Beer, Nolita', 'wp-google-maps');
2612
- __('https://thecitylane.com/washington-square-park-greenwich-village/', 'wp-google-maps');
2613
- __('Washington Square Park, Greenwich Village', 'wp-google-maps');
2614
- __('https://thecitylane.com/whitney-museum-of-american-art-greenwich-village/', 'wp-google-maps');
2615
- __('Whitney Museum of American Art, Greenwich Village', 'wp-google-maps');
2616
- __('https://thecitylane.com/fuku-east-village/', 'wp-google-maps');
2617
- __('Fuku, East Village', 'wp-google-maps');
2618
- __('https://thecitylane.com/okonomi-yuji-ramen-williamsburg/', 'wp-google-maps');
2619
- __('OKONOMI // YUJI Ramen, Williamsburg', 'wp-google-maps');
2620
- __('https://thecitylane.com/sunday-in-brooklyn-williamsburg/', 'wp-google-maps');
2621
- __('Sunday In Brooklyn, Williamsburg', 'wp-google-maps');
2622
- __('https://thecitylane.com/torst-greenpoint/', 'wp-google-maps');
2623
- __('Torst, Greenpoint', 'wp-google-maps');
2624
- __('https://thecitylane.com/good-beer-east-village/', 'wp-google-maps');
2625
- __('Good Beer, East Village', 'wp-google-maps');
2626
- __('https://thecitylane.com/craft-beer-smoke-shop-williamsburg/', 'wp-google-maps');
2627
- __('Craft Beer & Smoke Shop, Williamsburg', 'wp-google-maps');
2628
- __('https://thecitylane.com/root-bone-east-village/', 'wp-google-maps');
2629
- __('Root & Bone, East Village', 'wp-google-maps');
2630
- __('https://thecitylane.com/russ-daughters-cafe-lower-east-side/', 'wp-google-maps');
2631
- __('Russ & Daughters Cafe, Lower East Side', 'wp-google-maps');
2632
- __('https://thecitylane.com/big-easy-bar-b-q-covent-garden/', 'wp-google-maps');
2633
- __('Big Easy Bar.B.Q & Lobstershack, Covent Garden', 'wp-google-maps');
2634
- __('https://thecitylane.com/the-flats-bkspeed-coffee-williamsburg/', 'wp-google-maps');
2635
- __('The Flats BKSpeed Coffee, Williamsburg', 'wp-google-maps');
2636
- __('https://thecitylane.com/brooklyn-brewery-williamsburg/', 'wp-google-maps');
2637
- __('Brooklyn Brewery, Williamsburg', 'wp-google-maps');
2638
- __('https://thecitylane.com/chelsea-market-chelsea/', 'wp-google-maps');
2639
- __('Chelsea Market, Chelsea', 'wp-google-maps');
2640
- __('https://thecitylane.com/rattle-n-hum-east-midtown/', 'wp-google-maps');
2641
- __('Rattle N Hum East, Midtown', 'wp-google-maps');
2642
- __('https://thecitylane.com/the-ginger-man-midtown/', 'wp-google-maps');
2643
- __('The Ginger Man, Midtown', 'wp-google-maps');
2644
- __('https://thecitylane.com/burger-joint-le-parker-meridien-midtown/', 'wp-google-maps');
2645
- __('Burger Joint @ Le Parker Meridien, Midtown', 'wp-google-maps');
2646
- __('https://thecitylane.com/milk-and-hops-astor-place-midtown/', 'wp-google-maps');
2647
- __('Milk & Hops (Astor Place), Midtown', 'wp-google-maps');
2648
- __('https://thecitylane.com/proletariat-east-village/', 'wp-google-maps');
2649
- __('Proletariat, East Village', 'wp-google-maps');
2650
- __('https://thecitylane.com/kanoyama-east-village/', 'wp-google-maps');
2651
- __('Kanoyama, East Village', 'wp-google-maps');
2652
- __('https://thecitylane.com/factory-tamal-lower-east-side/', 'wp-google-maps');
2653
- __('Factory Tamal, Lower East Side', 'wp-google-maps');
2654
- __('https://thecitylane.com/top-hops-lower-east-side/', 'wp-google-maps');
2655
- __('Top Hops, Lower East Side', 'wp-google-maps');
2656
- __('https://thecitylane.com/russ-and-daughters-shop-lower-east-side/', 'wp-google-maps');
2657
- __('Russ & Daughters Shop, Lower East Side', 'wp-google-maps');
2658
- __('https://thecitylane.com/flex-mussles-greenwich-village/', 'wp-google-maps');
2659
- __('Flex Mussles, Greenwich Village', 'wp-google-maps');
2660
- __('https://thecitylane.com/blue-bottle-coffee-rockefeller-center-midtown/', 'wp-google-maps');
2661
- __('Blue Bottle Coffee (Rockefeller Center), Midtown', 'wp-google-maps');
2662
- __('https://thecitylane.com/interboro-spirits-ales-east-williamsburg/', 'wp-google-maps');
2663
- __('Interboro Spirits & Ales, East Williamsburg', 'wp-google-maps');
2664
- __('https://thecitylane.com/circa-brewing-co-downtown-brooklyn/', 'wp-google-maps');
2665
- __('Circa Brewing Co., Downtown Brooklyn', 'wp-google-maps');
2666
- __('https://thecitylane.com/dekalb-market-hall-downtown-brooklyn/', 'wp-google-maps');
2667
- __('DeKalb Market Hall, Downtown Brooklyn', 'wp-google-maps');
2668
- __('https://thecitylane.com/mile-end-delicatessen-boerum-hill/', 'wp-google-maps');
2669
- __('Mile End Delicatessen, Boerum Hill', 'wp-google-maps');
2670
- __('https://thecitylane.com/the-bagel-store-williamsburg/', 'wp-google-maps');
2671
- __('The Bagel Store, Williamsburg', 'wp-google-maps');
2672
- __('https://thecitylane.com/marlow-and-sons-williamsburg/', 'wp-google-maps');
2673
- __('Marlow & Sons, Williamsburg', 'wp-google-maps');
2674
- __('https://thecitylane.com/diner-williamsburg/', 'wp-google-maps');
2675
- __('Diner, Williamsburg', 'wp-google-maps');
2676
- __('https://thecitylane.com/momofuku-ssam-bar-east-village/', 'wp-google-maps');
2677
- __('Momofuku Ssam Bar, East Village', 'wp-google-maps');
2678
- __('https://thecitylane.com/keste-pizza-vino-west-village/', 'wp-google-maps');
2679
- __('Keste Pizza & Vino, West Village', 'wp-google-maps');
2680
- __('https://thecitylane.com/five-leaves-greenpoint/', 'wp-google-maps');
2681
- __('Five Leaves, Greenpoint', 'wp-google-maps');
2682
- __('https://thecitylane.com/momofuku-noodle-bar-east-village/', 'wp-google-maps');
2683
- __('Momofuku Noodle Bar, East Village', 'wp-google-maps');
2684
- __('https://thecitylane.com/caracas-arepa-bar-williamsburg/', 'wp-google-maps');
2685
- __('Caracas Arepa Bar, Williamsburg', 'wp-google-maps');
2686
- __('https://thecitylane.com/caracas-arepa-bar-east-village/', 'wp-google-maps');
2687
- __('Caracas Arepa Bar, East Village', 'wp-google-maps');
2688
- __('https://thecitylane.com/robertas-bushwick/', 'wp-google-maps');
2689
- __('Roberta\'s, Bushwick', 'wp-google-maps');
2690
- __('https://thecitylane.com/the-spotted-pig-west-village/', 'wp-google-maps');
2691
- __('The Spotted Pig, West Village', 'wp-google-maps');
2692
- __('https://thecitylane.com/co-chelsea/', 'wp-google-maps');
2693
- __('Co, Chelsea', 'wp-google-maps');
2694
- __('https://thecitylane.com/marea-midtown/', 'wp-google-maps');
2695
- __('Marea, Midtown', 'wp-google-maps');
2696
- __('https://thecitylane.com/shake-shack-upper-east-side/', 'wp-google-maps');
2697
- __('Shake Shack, Upper East Side', 'wp-google-maps');
2698
- __('https://thecitylane.com/rough-trade-nyc-williamsburg/', 'wp-google-maps');
2699
- __('Rough Trade NYC, Williamsburg', 'wp-google-maps');
2700
- __('https://thecitylane.com/new-museum-lower-east-side/', 'wp-google-maps');
2701
- __('New Museum, Lower East Side', 'wp-google-maps');
2702
- __('https://thecitylane.com/museum-of-modern-art-moma-midtown/', 'wp-google-maps');
2703
- __('Museum of Modern Art (MoMA), Midtown', 'wp-google-maps');
2704
- __('https://thecitylane.com/calia-melbourne-cbd/', 'wp-google-maps');
2705
- __('Calia, Melbourne', 'wp-google-maps');
2706
- __('https://thecitylane.com/grand-central-terminal-midtown/', 'wp-google-maps');
2707
- __('Grand Central Terminal, Midtown', 'wp-google-maps');
2708
- __('https://thecitylane.com/rockefeller-center-midtown/', 'wp-google-maps');
2709
- __('Rockefeller Center, Midtown', 'wp-google-maps');
2710
- __('https://thecitylane.com/american-museum-of-natural-history-upper-west-side/', 'wp-google-maps');
2711
- __('American Museum of Natural History, Upper West Side', 'wp-google-maps');
2712
- __('https://thecitylane.com/solomon-r-guggenheim-museum-upper-east-side/', 'wp-google-maps');
2713
- __('Solomon R. Guggenheim Museum, Upper East Side', 'wp-google-maps');
2714
- __('https://thecitylane.com/the-metropolitan-museum-of-art-upper-east-side/', 'wp-google-maps');
2715
- __('The Metropolitan Museum of Art, Upper East Side', 'wp-google-maps');
2716
- __('https://thecitylane.com/doughnut-plant-chelsea/', 'wp-google-maps');
2717
- __('Doughnut Plant, Chelsea', 'wp-google-maps');
2718
- __('https://thecitylane.com/empire-state-building-midtown/', 'wp-google-maps');
2719
- __('Empire State Building, Midtown', 'wp-google-maps');
2720
- __('https://thecitylane.com/bear-republic-brewing-company-healdsburg/', 'wp-google-maps');
2721
- __('Bear Republic Brewing Company, Healdsburg', 'wp-google-maps');
2722
- __('https://thecitylane.com/healdsburg-shed-healdsburg/', 'wp-google-maps');
2723
- __('Healdsburg SHED, Healdsburg', 'wp-google-maps');
2724
- __('https://thecitylane.com/bergamot-alley-healdsburg/', 'wp-google-maps');
2725
- __('Bergamot Alley, Healdsburg', 'wp-google-maps');
2726
- __('https://thecitylane.com/costeaux-french-bakery-healdsburg/', 'wp-google-maps');
2727
- __('Costeaux French Bakery, Healdsburg', 'wp-google-maps');
2728
- __('https://thecitylane.com/mueller-winery-tasting-room-healdsburg/', 'wp-google-maps');
2729
- __('Mueller Winery Tasting Room, Healdsburg', 'wp-google-maps');
2730
- __('https://thecitylane.com/russian-river-brewing-company-santa-rosa/', 'wp-google-maps');
2731
- __('Russian River Brewing Company, Santa Rosa', 'wp-google-maps');
2732
- __('https://thecitylane.com/crooked-goat-brewing-sebastopol/', 'wp-google-maps');
2733
- __('Crooked Goat Brewing, Sebastopol', 'wp-google-maps');
2734
- __('https://thecitylane.com/hopmonk-tavern-sebastopol/', 'wp-google-maps');
2735
- __('HopMonk Tavern, Sebastopol', 'wp-google-maps');
2736
- __('https://thecitylane.com/industry-beans-melbourne-cbd/', 'wp-google-maps');
2737
- __('Industry Beans, Melbourne', 'wp-google-maps');
2738
- __('https://thecitylane.com/yokocho-melbourne-cbd/', 'wp-google-maps');
2739
- __('Yokocho, Melbourne', 'wp-google-maps');
2740
- __('https://thecitylane.com/4-pines-brewing-company-manly/', 'wp-google-maps');
2741
- __('4 Pines Brewing Company, Manly', 'wp-google-maps');
2742
- __('https://thecitylane.com/4-pines-public-house-newport/', 'wp-google-maps');
2743
- __('4 Pines Public House, Newport', 'wp-google-maps');
2744
- __('https://thecitylane.com/4-pines-truck-bar-brookvale/', 'wp-google-maps');
2745
- __('4 Pines Truck Bar, Brookvale', 'wp-google-maps');
2746
- __('https://thecitylane.com/modus-operandi-brewing-company-mona-vale/', 'wp-google-maps');
2747
- __('Modus Operandi Brewing Company, Mona Vale', 'wp-google-maps');
2748
- __('https://thecitylane.com/nomad-brewing-co-brookvale/', 'wp-google-maps');
2749
- __('Nomad Brewing Co., Brookvale', 'wp-google-maps');
2750
- __('https://thecitylane.com/manly-spirits-co-brookvale/', 'wp-google-maps');
2751
- __('Manly Spirits Co., Brookvale', 'wp-google-maps');
2752
- __('https://thecitylane.com/palermo-melbourne-cbd/', 'wp-google-maps');
2753
- __('Palermo, Melbourne', 'wp-google-maps');
2754
- __('https://thecitylane.com/cafe-latte-toorak/', 'wp-google-maps');
2755
- __('Cafe Latte, Toorak', 'wp-google-maps');
2756
- __('https://thecitylane.com/coq-dargent-bank/', 'wp-google-maps');
2757
- __('Coq d\'Argent, Bank', 'wp-google-maps');
2758
- __('https://thecitylane.com/butchers-diner-melbourne-cbd/', 'wp-google-maps');
2759
- __('Butchers Diner, Melbourne', 'wp-google-maps');
2760
- __('https://thecitylane.com/bkk-windsor/', 'wp-google-maps');
2761
- __('BKK, Windsor', 'wp-google-maps');
2762
- __('https://thecitylane.com/arlechin-melbourne-cbd/', 'wp-google-maps');
2763
- __('Arlechin, Melbourne', 'wp-google-maps');
2764
- __('https://thecitylane.com/benjamins-kitchen-alphington/', 'wp-google-maps');
2765
- __('Benjamin\'s Kitchen, Alphington', 'wp-google-maps');
2766
- __('https://thecitylane.com/inward-goods-richmond/', 'wp-google-maps');
2767
- __('Inward Goods, Richmond', 'wp-google-maps');
2768
- __('https://thecitylane.com/afghan-tasty-food-dandenong/', 'wp-google-maps');
2769
- __('Afghan Tasty Food, Dandenong', 'wp-google-maps');
2770
- __('https://thecitylane.com/farro-pizzeria-cucina-fitzroy/', 'wp-google-maps');
2771
- __('Farro Pizzeria & Cucina, Fitzroy', 'wp-google-maps');
2772
- __('https://thecitylane.com/burnley-brewing-richmond/', 'wp-google-maps');
2773
- __('Burnley Brewing, Richmond', 'wp-google-maps');
2774
- __('https://thecitylane.com/nowhereman-brewing-co-west-leederville/', 'wp-google-maps');
2775
- __('Nowhereman Brewing Co., West Leederville', 'wp-google-maps');
2776
- __('https://thecitylane.com/mane-liquor-belmont/', 'wp-google-maps');
2777
- __('Mane Liquor, Belmont', 'wp-google-maps');
2778
- __('https://thecitylane.com/oconnells-hotel-south-melbourne/', 'wp-google-maps');
2779
- __('O\'Connell\'s Hotel, South Melbourne', 'wp-google-maps');
2780
- __('https://thecitylane.com/the-creators-lounge-footscray/', 'wp-google-maps');
2781
- __('The Creators Lounge, Footscray', 'wp-google-maps');
2782
- __('https://thecitylane.com/sloth-bar-footscray/', 'wp-google-maps');
2783
- __('Sloth Bar, Footscray', 'wp-google-maps');
2784
- __('https://thecitylane.com/code-21-brunswick-east/', 'wp-google-maps');
2785
- __('Code 21, Brunswick East', 'wp-google-maps');
2786
- __('https://thecitylane.com/drinkwell-fitzroy/', 'wp-google-maps');
2787
- __('Drinkwell, Fitzroy', 'wp-google-maps');
2788
- __('https://thecitylane.com/prosciutto-bros-eltham/', 'wp-google-maps');
2789
- __('Prosciutto Bros, Eltham', 'wp-google-maps');
2790
- __('https://thecitylane.com/hops-vine-australia-warrandyte/', 'wp-google-maps');
2791
- __('Hops & Vine Australia, Warrandyte', 'wp-google-maps');
2792
- __('https://thecitylane.com/riddik-lower-templestow/', 'wp-google-maps');
2793
- __('Riddik, Lower Templestow', 'wp-google-maps');
2794
- __('https://thecitylane.com/preston-market-preston/', 'wp-google-maps');
2795
- __('Preston Market, Preston', 'wp-google-maps');
2796
- __('https://thecitylane.com/abacus-all-day-ringwood/', 'wp-google-maps');
2797
- __('Abacus All Day, Ringwood', 'wp-google-maps');
2798
- __('https://thecitylane.com/shop-225-pizzeria-pascoe-vale-south/', 'wp-google-maps');
2799
- __('Shop 225 Pizzeria, Pascoe Vale South', 'wp-google-maps');
2800
- __('https://thecitylane.com/ratio-cocoa-roasters-brunswick/', 'wp-google-maps');
2801
- __('Ratio Cocoa Roasters, Brunswick', 'wp-google-maps');
2802
- __('https://thecitylane.com/flat-iron-covent-garden/', 'wp-google-maps');
2803
- __('Flat Iron, Covent Garden', 'wp-google-maps');
2804
- __('https://thecitylane.com/the-albion-south-melbourne/', 'wp-google-maps');
2805
- __('The Albion, South Melbourne', 'wp-google-maps');
2806
- __('https://thecitylane.com/jimmy-grants-st-kilda/', 'wp-google-maps');
2807
- __('Jimmy Grants, St Kilda', 'wp-google-maps');
2808
- __('https://thecitylane.com/neon-beatniks-brunswick/', 'wp-google-maps');
2809
- __('Neon Beatniks, Brunswick', 'wp-google-maps');
2810
- __('https://thecitylane.com/caseus-cheese-shop-brunswick/', 'wp-google-maps');
2811
- __('Caseus Cheese Shop, Brunswick', 'wp-google-maps');
2812
- __('https://thecitylane.com/dad-daves-brewing-brookvale/', 'wp-google-maps');
2813
- __('Dad & Dave\'s Brewing, Brookvale', 'wp-google-maps');
2814
- __('https://thecitylane.com/cornerstone-of-northcote-northcote/', 'wp-google-maps');
2815
- __('Cornerstone Of Northcote, Northcote', 'wp-google-maps');
2816
- __('https://thecitylane.com/ping-pong-covent-garden/', 'wp-google-maps');
2817
- __('Ping Pong, Covent Garden', 'wp-google-maps');
2818
- __('https://thecitylane.com/hungry-bear-pizza-bar-melbourne/', 'wp-google-maps');
2819
- __('Hungry Bear Pizza Bar, Melbourne', 'wp-google-maps');
2820
- __('https://thecitylane.com/rude-boy-burger-brunswick-west/', 'wp-google-maps');
2821
- __('Rude Boy Burger, Brunswick West', 'wp-google-maps');
2822
- __('https://thecitylane.com/ms-frankie-cremorne/', 'wp-google-maps');
2823
- __('Ms Frankie, Cremorne', 'wp-google-maps');
2824
- __('https://thecitylane.com/miss-moses-brunswick/', 'wp-google-maps');
2825
- __('Miss Moses, Brunswick', 'wp-google-maps');
2826
- __('https://thecitylane.com/inner-north-brewing-company-brunswick/', 'wp-google-maps');
2827
- __('Inner North Brewing Company, Brunswick', 'wp-google-maps');
2828
- __('https://thecitylane.com/el-mirage-brunswick-east/', 'wp-google-maps');
2829
- __('El Mirage, Brunswick East', 'wp-google-maps');
2830
- __('https://thecitylane.com/bad-frankie-fitzroy/', 'wp-google-maps');
2831
- __('Bad Frankie, Fitzroy', 'wp-google-maps');
2832
- __('https://thecitylane.com/sweetie-moustache-dessert-lounge-melbourne/', 'wp-google-maps');
2833
- __('Sweetie & Moustache Dessert Lounge, Melbourne', 'wp-google-maps');
2834
- __('https://thecitylane.com/st-john-bakery-bermondsey/', 'wp-google-maps');
2835
- __('St John Bakery, Bermondsey', 'wp-google-maps');
2836
- __('https://thecitylane.com/40-maltby-street-bermondsey/', 'wp-google-maps');
2837
- __('40 Maltby Street, Bermondsey', 'wp-google-maps');
2838
- __('https://thecitylane.com/bar-tozino-bermondsey/', 'wp-google-maps');
2839
- __('Bar Tozino, Bermondsey', 'wp-google-maps');
2840
- __('https://thecitylane.com/little-bird-gin-bermondsey/', 'wp-google-maps');
2841
- __('Little Bird Gin, Bermondsey', 'wp-google-maps');
2842
- __('https://thecitylane.com/katuk-south-yarra/', 'wp-google-maps');
2843
- __('Katuk, South Yarra', 'wp-google-maps');
2844
- __('https://thecitylane.com/leonards-house-of-love-south-yarra/', 'wp-google-maps');
2845
- __('Leonard\'s House Of Love, South Yarra', 'wp-google-maps');
2846
- __('https://thecitylane.com/the-smith-prahran/', 'wp-google-maps');
2847
- __('The Smith, Prahran', 'wp-google-maps');
2848
- __('https://thecitylane.com/neptune-food-wine-windsor/', 'wp-google-maps');
2849
- __('Neptune Food & Wine, Windsor', 'wp-google-maps');
2850
- __('https://thecitylane.com/mount-erica-hotel-prahran/', 'wp-google-maps');
2851
- __('Mount Erica Hotel, Prahran', 'wp-google-maps');
2852
- __('https://thecitylane.com/otters-promise-armadale/', 'wp-google-maps');
2853
- __('Otter\'s Promise, Armadale', 'wp-google-maps');
2854
- __('https://thecitylane.com/this-is-life-wellness-emporium-elwood/', 'wp-google-maps');
2855
- __('This Is Life Wellness Emporium, Elwood', 'wp-google-maps');
2856
- __('https://thecitylane.com/dan-murphys-cellar-prahran/', 'wp-google-maps');
2857
- __('Dan Murphy\'s Cellar, Prahran', 'wp-google-maps');
2858
- __('https://thecitylane.com/venus-co-albert-park/', 'wp-google-maps');
2859
- __('Venus & Co, Albert Park', 'wp-google-maps');
2860
- __('https://thecitylane.com/heart-of-hall-newport/', 'wp-google-maps');
2861
- __('Heart Of Hall, Newport', 'wp-google-maps');
2862
- __('https://thecitylane.com/south-of-johnston-collingwood/', 'wp-google-maps');
2863
- __('South Of Johnston, Collingwood', 'wp-google-maps');
2864
- __('https://thecitylane.com/beermash-collingwood/', 'wp-google-maps');
2865
- __('Beermash, Collingwood', 'wp-google-maps');
2866
- __('https://thecitylane.com/five-bar-mount-lawley/', 'wp-google-maps');
2867
- __('Five Bar, Mount Lawley', 'wp-google-maps');
2868
- __('https://thecitylane.com/the-queens-highgate/', 'wp-google-maps');
2869
- __('The Queens, Highgate', 'wp-google-maps');
2870
- __('https://thecitylane.com/the-brisbane-hotel-highgate/', 'wp-google-maps');
2871
- __('The Brisbane Hotel, Highgate', 'wp-google-maps');
2872
- __('https://thecitylane.com/399-bar-northbridge/', 'wp-google-maps');
2873
- __('399 Bar, Northbridge', 'wp-google-maps');
2874
- __('https://thecitylane.com/ezra-pound-northbridge/', 'wp-google-maps');
2875
- __('Ezra Pound, Northbridge', 'wp-google-maps');
2876
- __('https://thecitylane.com/mechanics-institute-northbridge/', 'wp-google-maps');
2877
- __('Mechanics Institute, Northbridge', 'wp-google-maps');
2878
- __('https://thecitylane.com/sneaky-tonys-northbridge/', 'wp-google-maps');
2879
- __('Sneaky Tony\'s, Northbridge', 'wp-google-maps');
2880
- __('https://thecitylane.com/alabama-song-bar-northbridge/', 'wp-google-maps');
2881
- __('Alabama Song Bar, Northbridge', 'wp-google-maps');
2882
- __('https://thecitylane.com/joes-juice-joint-northbridge/', 'wp-google-maps');
2883
- __('Joe\'s Juice Joint, Northbridge', 'wp-google-maps');
2884
- __('https://thecitylane.com/little-creatures-brewery-fremantle/', 'wp-google-maps');
2885
- __('Little Creatures Brewery, Fremantle', 'wp-google-maps');
2886
- __('https://thecitylane.com/leroys-cafe-newport/', 'wp-google-maps');
2887
- __('Leroy\'s Cafe, Newport', 'wp-google-maps');
2888
- __('https://thecitylane.com/hankies-marble-arch/', 'wp-google-maps');
2889
- __('Hankies (Marble Arch), Marylebone', 'wp-google-maps');
2890
- __('https://thecitylane.com/st-andrews-beach-brewery-fingal/', 'wp-google-maps');
2891
- __('St Andrews Beach Brewery, Fingal', 'wp-google-maps');
2892
- __('https://thecitylane.com/archie-green-melbourne-cbd/', 'wp-google-maps');
2893
- __('Archie Green, Melbourne', 'wp-google-maps');
2894
- __('https://thecitylane.com/good-heavens-melbourne-cbd/', 'wp-google-maps');
2895
- __('Good Heavens, Melbourne', 'wp-google-maps');
2896
- __('https://thecitylane.com/alchemy-distillers-healesville/', 'wp-google-maps');
2897
- __('Alchemy Distillers, Healesville', 'wp-google-maps');
2898
- __('https://thecitylane.com/joe-slinger-healesville/', 'wp-google-maps');
2899
- __('Joe Slinger, Healesville', 'wp-google-maps');
2900
- __('https://thecitylane.com/yarra-valley-cellar-door-healesville/', 'wp-google-maps');
2901
- __('Yarra Valley Cellar Door, Healesville', 'wp-google-maps');
2902
- __('https://thecitylane.com/graceburn-wine-room-healesville/', 'wp-google-maps');
2903
- __('Graceburn Wine Room, Healesville', 'wp-google-maps');
2904
- __('https://thecitylane.com/yering-station-yarra-glen/', 'wp-google-maps');
2905
- __('Yering Station, Yarra Glen', 'wp-google-maps');
2906
- __('https://thecitylane.com/watts-river-brewing-healesville/', 'wp-google-maps');
2907
- __('Watts River Brewing, Healesville', 'wp-google-maps');
2908
- __('https://thecitylane.com/steels-gate-wines-shantell-dixons-creek/', 'wp-google-maps');
2909
- __('Steels Gate Wines @ Shantell, Dixons Creek', 'wp-google-maps');
2910
- __('https://thecitylane.com/le-clec-hawthorn/', 'wp-google-maps');
2911
- __('Le Clec, Hawthorn', 'wp-google-maps');
2912
- __('https://thecitylane.com/the-napier-hotel-fitzroy/', 'wp-google-maps');
2913
- __('The Napier Hotel, Fitzroy', 'wp-google-maps');
2914
- __('https://thecitylane.com/sideshow-burgers-rosanna/', 'wp-google-maps');
2915
- __('Sideshow Burgers, Rosanna', 'wp-google-maps');
2916
- __('https://thecitylane.com/north-eight-aberfeldie/', 'wp-google-maps');
2917
- __('North & Eight, Aberfeldie', 'wp-google-maps');
2918
- __('https://thecitylane.com/ippudo-melbourne-cbd/', 'wp-google-maps');
2919
- __('Ippudo, Melbourne', 'wp-google-maps');
2920
- __('https://thecitylane.com/morris-jones-windsor/', 'wp-google-maps');
2921
- __('Morris Jones, Windsor', 'wp-google-maps');
2922
- __('https://thecitylane.com/lulo-hawthorn/', 'wp-google-maps');
2923
- __('Lulo, Hawthorn', 'wp-google-maps');
2924
- __('https://thecitylane.com/appy-eatery-carlton/', 'wp-google-maps');
2925
- __('Appy Eatery, Carlton', 'wp-google-maps');
2926
- __('https://thecitylane.com/the-rocheys-menu-goes-keralan/', 'wp-google-maps');
2927
- __('The Rochey\'s Menu Goes Keralan', 'wp-google-maps');
2928
- __('https://thecitylane.com/the-catch-carnegie/', 'wp-google-maps');
2929
- __('\'@ The Catch, Carnegie', 'wp-google-maps');
2930
- __('https://thecitylane.com/pascale-bar-grill-melbourne-cbd/', 'wp-google-maps');
2931
- __('Pascale Bar & Grill, Melbourne', 'wp-google-maps');
2932
- __('https://thecitylane.com/naughty-nuris-melbourne-cbd/', 'wp-google-maps');
2933
- __('Naughty Nuri\'s, Melbourne', 'wp-google-maps');
2934
- __('https://thecitylane.com/chinese-lanzhou-auspicious-palace-melbourne-cbd/', 'wp-google-maps');
2935
- __('Chinese Lanzhou Auspicious Palace, Melbourne', 'wp-google-maps');
2936
- __('https://thecitylane.com/ori-tea-melbourne-cbd/', 'wp-google-maps');
2937
- __('Ori Tea, Melbourne', 'wp-google-maps');
2938
- __('https://thecitylane.com/new-sydney-hotel-hobart-cbd/', 'wp-google-maps');
2939
- __('New Sydney Hotel, Hobart', 'wp-google-maps');
2940
- __('https://thecitylane.com/t-bone-brewing-co-north-hobart/', 'wp-google-maps');
2941
- __('T-Bone Brewing Co, North Hobart', 'wp-google-maps');
2942
- __('https://thecitylane.com/rude-boy-hobart/', 'wp-google-maps');
2943
- __('Rude Boy, Hobart', 'wp-google-maps');
2944
- __('https://thecitylane.com/caddie-richmond/', 'wp-google-maps');
2945
- __('Caddie, Richmond', 'wp-google-maps');
2946
- __('https://thecitylane.com/chimac-plus-abbotsford/', 'wp-google-maps');
2947
- __('Chimac Plus, Abbotsford', 'wp-google-maps');
2948
- __('https://thecitylane.com/p-f-changs-leicester-square/', 'wp-google-maps');
2949
- __('P.F Chang\'s, Leicester Square', 'wp-google-maps');
2950
- __('https://thecitylane.com/miss-pings-doncaster/', 'wp-google-maps');
2951
- __('Miss Ping\'s, Doncaster', 'wp-google-maps');
2952
- __('https://thecitylane.com/chinacy-south-yarra/', 'wp-google-maps');
2953
- __('Chinacy, South Yarra', 'wp-google-maps');
2954
- __('https://thecitylane.com/izakaya-kuuraku-melbourne-cbd/', 'wp-google-maps');
2955
- __('Izakaya Kuuraku, Melbourne', 'wp-google-maps');
2956
- __('https://thecitylane.com/mr-crackles-melbourne-cbd/', 'wp-google-maps');
2957
- __('Mr Crackles, Melbourne', 'wp-google-maps');
2958
- __('https://thecitylane.com/twenty-pho-seven-melbourne-cbd/', 'wp-google-maps');
2959
- __('Twenty Pho Seven, Melbourne', 'wp-google-maps');
2960
- __('https://thecitylane.com/heartbreaker-melbourne-cbd/', 'wp-google-maps');
2961
- __('Heartbreaker, Melbourne', 'wp-google-maps');
2962
- __('https://thecitylane.com/tahina-fitzroy/', 'wp-google-maps');
2963
- __('Tahina, Fitzroy', 'wp-google-maps');
2964
- __('https://thecitylane.com/fitzroy-mills-market-fitzroy/', 'wp-google-maps');
2965
- __('Fitzroy Mills Market, Fitzroy', 'wp-google-maps');
2966
- __('https://thecitylane.com/marias-pasta-carlton-north/', 'wp-google-maps');
2967
- __('Maria\'s Pasta, Carlton North', 'wp-google-maps');
2968
- __('https://thecitylane.com/the-best-of-queen-victoria-market/', 'wp-google-maps');
2969
- __('The Best Of Queen Victoria Market', 'wp-google-maps');
2970
- __('https://thecitylane.com/kong-bbq-richmond/', 'wp-google-maps');
2971
- __('Kong BBQ, Richmond', 'wp-google-maps');
2972
- __('https://thecitylane.com/tonteria-chelsea/', 'wp-google-maps');
2973
- __('Tonteria, Chelsea', 'wp-google-maps');
2974
- __('https://thecitylane.com/ines-wine-bar-windsor/', 'wp-google-maps');
2975
- __('Ines Wine Bar, Windsor', 'wp-google-maps');
2976
- __('https://thecitylane.com/rice-workshop-chinatown-melbourne-cbd/', 'wp-google-maps');
2977
- __('Rice Workshop (Chinatown), Melbourne', 'wp-google-maps');
2978
- __('https://thecitylane.com/drumplings-melbourne-cbd/', 'wp-google-maps');
2979
- __('Drumplings, Melbourne', 'wp-google-maps');
2980
- __('https://thecitylane.com/tipico-windsor/', 'wp-google-maps');
2981
- __('Tipico, Windsor', 'wp-google-maps');
2982
- __('https://thecitylane.com/shanklin-cafe-hawthorn-east/', 'wp-google-maps');
2983
- __('Shanklin Cafe, Hawthorn East', 'wp-google-maps');
2984
- __('https://thecitylane.com/shu-restaurant-collingwood/', 'wp-google-maps');
2985
- __('Shu Restaurant, Collingwood', 'wp-google-maps');
2986
- __('https://thecitylane.com/goodbye-kappo-hello-mr-dens-poppu-uppu/', 'wp-google-maps');
2987
- __('Goodby Kappo, Hello Mr Den\'s Poppu Uppu', 'wp-google-maps');
2988
- __('https://thecitylane.com/project-281-brunswick/', 'wp-google-maps');
2989
- __('Project 281, Brunswick', 'wp-google-maps');
2990
- __('https://thecitylane.com/mediterranean-wholesalers-brunswick/', 'wp-google-maps');
2991
- __('Mediterranean Wholesalers, Brunswick', 'wp-google-maps');
2992
- __('https://thecitylane.com/street-art-murals-of-balmy-alley-san-francisco/', 'wp-google-maps');
2993
- __('Street Art Murals Of Balmy Alley, San Francisco', 'wp-google-maps');
2994
- __('https://thecitylane.com/the-stables-of-como-south-yarra/', 'wp-google-maps');
2995
- __('The Stables Of Como, South Yarra', 'wp-google-maps');
2996
- __('https://thecitylane.com/flatiron-side-door-kew/', 'wp-google-maps');
2997
- __('FLATIRON Side Door, Kew', 'wp-google-maps');
2998
- __('https://thecitylane.com/benjys-brunswick-east/', 'wp-google-maps');
2999
- __('Benjys, Brunswick East', 'wp-google-maps');
3000
- __('https://thecitylane.com/bomba-tapas-bar-rooftop-melbourne-cbd/', 'wp-google-maps');
3001
- __('BOMBA Tapas Bar & Rooftop, Melbourne', 'wp-google-maps');
3002
- __('https://thecitylane.com/arepa-co-bethnal-green/', 'wp-google-maps');
3003
- __('Arepa & Co, Bethnal Green', 'wp-google-maps');
3004
- __('https://thecitylane.com/old-faithful-bar-bbq-perth-cbd/', 'wp-google-maps');
3005
- __('Old Faithful Bar & BBQ, Perth', 'wp-google-maps');
3006
- __('https://thecitylane.com/belgian-beer-cafe-perth-cbd/', 'wp-google-maps');
3007
- __('Belgian Beer Cafe, Perth', 'wp-google-maps');
3008
- __('https://thecitylane.com/bobs-bar-perth-cbd/', 'wp-google-maps');
3009
- __('Bob\'s Bar, Perth', 'wp-google-maps');
3010
- __('https://thecitylane.com/island-brewhouse-perth-cbd/', 'wp-google-maps');
3011
- __('Island Brewhouse, Perth', 'wp-google-maps');
3012
- __('https://thecitylane.com/alfreds-pizzeria-perth-cbd/', 'wp-google-maps');
3013
- __('Alfred\'s Pizzeria, Perth', 'wp-google-maps');
3014
- __('https://thecitylane.com/bright-tank-brewing-co-east-perth/', 'wp-google-maps');
3015
- __('Bright Tank Brewing Co, East Perth', 'wp-google-maps');
3016
- __('https://thecitylane.com/tinys-perth-cbd/', 'wp-google-maps');
3017
- __('Tiny\'s, Perth', 'wp-google-maps');
3018
- __('https://thecitylane.com/restaurant-shik-melbourne-cbd/', 'wp-google-maps');
3019
- __('Restaurant Shik, Melbourne', 'wp-google-maps');
3020
- __('https://thecitylane.com/naxi-folk-hawthorn/', 'wp-google-maps');
3021
- __('Naxi Folk, Hawthorn', 'wp-google-maps');
3022
- __('https://thecitylane.com/roast-duck-inn-box-hill/', 'wp-google-maps');
3023
- __('Roast Duck Inn, Box Hill', 'wp-google-maps');
3024
- __('https://thecitylane.com/shaanxi-style-restaurant-box-hill/', 'wp-google-maps');
3025
- __('Shaanxi-Style Restaurant, Box Hill', 'wp-google-maps');
3026
- __('https://thecitylane.com/grain-asian-dessert-bar-box-hill/', 'wp-google-maps');
3027
- __('Grain Asian Dessert Bar, Box Hill', 'wp-google-maps');
3028
- __('https://thecitylane.com/rebel-blue-windsor/', 'wp-google-maps');
3029
- __('Rebel Blue, Windsor', 'wp-google-maps');
3030
- __('https://thecitylane.com/cate-tasting-room-miraflores/', 'wp-google-maps');
3031
- __('Cate Tasting Room, Miraflores', 'wp-google-maps');
3032
- __('https://thecitylane.com/mi-tercer-lugar-cercado-de-lima/', 'wp-google-maps');
3033
- __('Mi Tercer Lugar, Cercado de Lima', 'wp-google-maps');
3034
- __('https://thecitylane.com/choco-museo-plaza-de-armas-cercado-de-lima/', 'wp-google-maps');
3035
- __('Choco Museo (Plaza de Armas), Cercado de Lima', 'wp-google-maps');
3036
- __('https://thecitylane.com/museo-del-pisco-cercado-de-lima/', 'wp-google-maps');
3037
- __('Museo del Pisco, Cercado de Lima', 'wp-google-maps');
3038
- __('https://thecitylane.com/amaz-miraflores/', 'wp-google-maps');
3039
- __('AmaZ, Miraflores', 'wp-google-maps');
3040
- __('https://thecitylane.com/true-caffe-miraflores/', 'wp-google-maps');
3041
- __('True Caffe, Miraflores', 'wp-google-maps');
3042
- __('https://thecitylane.com/puku-puku-larco-miraflores/', 'wp-google-maps');
3043
- __('Puku Puku (Larco), Miraflores', 'wp-google-maps');
3044
- __('https://thecitylane.com/puku-puku-pardo-and-aliaga-san-isidro/', 'wp-google-maps');
3045
- __('Puku Puku (Pardo and Aliaga), San Isidro', 'wp-google-maps');
3046
- __('https://thecitylane.com/central-restaurante-barranco/', 'wp-google-maps');
3047
- __('Central Restaurante, Barranco', 'wp-google-maps');
3048
- __('https://thecitylane.com/barranco-beer-company-barranco/', 'wp-google-maps');
3049
- __('Barranco Beer Company, Barranco', 'wp-google-maps');
3050
- __('https://thecitylane.com/brewpub-wicks-barranco/', 'wp-google-maps');
3051
- __('Brewpub Wicks, Barranco', 'wp-google-maps');
3052
- __('https://thecitylane.com/tio-mario-barranco/', 'wp-google-maps');
3053
- __('Tio Mario, Barranco', 'wp-google-maps');
3054
- __('https://thecitylane.com/isolina-taberna-peruana-barranco/', 'wp-google-maps');
3055
- __('Isolina Taberna Peruana, Barranco', 'wp-google-maps');
3056
- __('https://thecitylane.com/lupulo-peruvian-draft-bar-miraflores/', 'wp-google-maps');
3057
- __('Lupulo Peruvian Draft Bar, Miraflores', 'wp-google-maps');
3058
- __('https://thecitylane.com/curaka-bar-miraflores/', 'wp-google-maps');
3059
- __('Curaka Bar, Miraflores', 'wp-google-maps');
3060
- __('https://thecitylane.com/barbarian-miraflores/', 'wp-google-maps');
3061
- __('BarBarian, Miraflores', 'wp-google-maps');
3062
- __('https://thecitylane.com/nuevo-mundo-draft-bar-miraflores/', 'wp-google-maps');
3063
- __('Nuevo Mundo Draft Bar, Miraflores', 'wp-google-maps');
3064
- __('https://thecitylane.com/trinket-melbourne-cbd/', 'wp-google-maps');
3065
- __('Trinket, Melbourne', 'wp-google-maps');
3066
- __('https://thecitylane.com/ton-co-windsor/', 'wp-google-maps');
3067
- __('Ton & Co, Windsor', 'wp-google-maps');
3068
- __('https://thecitylane.com/kisses-for-kaos-preston/', 'wp-google-maps');
3069
- __('Kisses For Kaos, Preston', 'wp-google-maps');
3070
- __('https://thecitylane.com/3-ravens-brewery-thornbury/', 'wp-google-maps');
3071
- __('3 Ravens Brewery, Thornbury', 'wp-google-maps');
3072
- __('https://thecitylane.com/kooinda-brewery-heidelberg-west/', 'wp-google-maps');
3073
- __('Kooinda Brewery, Heidelberg West', 'wp-google-maps');
3074
- __('https://thecitylane.com/maitea-miraflores/', 'wp-google-maps');
3075
- __('Maitea, Miraflores', 'wp-google-maps');
3076
- __('https://thecitylane.com/jaya-brew-company-miraflores/', 'wp-google-maps');
3077
- __('Jaya Brew Company, Miraflores', 'wp-google-maps');
3078
- __('https://thecitylane.com/canas-y-tapas-miraflores/', 'wp-google-maps');
3079
- __('Canas y Tapas, Miraflores', 'wp-google-maps');
3080
- __('https://thecitylane.com/la-lucha-sangucheria-criolla-miraflores/', 'wp-google-maps');
3081
- __('La Lucha Sangucheria Criolla, Miraflores', 'wp-google-maps');
3082
- __('https://thecitylane.com/el-pan-de-la-chola-san-isidro/', 'wp-google-maps');
3083
- __('El Pan de la Chola, San Isidro', 'wp-google-maps');
3084
- __('https://thecitylane.com/parque-de-la-exposicion-cercado-de-lima/', 'wp-google-maps');
3085
- __('Parque de la Exposicion, Cercado de Lima', 'wp-google-maps');
3086
- __('https://thecitylane.com/museo-de-arte-de-lima-mali-cercado-de-lima/', 'wp-google-maps');
3087
- __('Museo de Arte de Lima (MALI), Cercado de Lima', 'wp-google-maps');
3088
- __('https://thecitylane.com/catacumbas-del-convento-de-san-francisco-cercado-de-lima/', 'wp-google-maps');
3089
- __('Catacumbas del Convento de San Francisco, Cercado de Lima', 'wp-google-maps');
3090
- __('https://thecitylane.com/museo-mario-testino-mate-barranco/', 'wp-google-maps');
3091
- __('Museo Mario Testino (MATE), Barranco', 'wp-google-maps');
3092
- __('https://thecitylane.com/museo-de-arte-contemporaneo-mac-barranco/', 'wp-google-maps');
3093
- __('Museo de Arte Contemporaneo (MAC), Barranco', 'wp-google-maps');
3094
- __('https://thecitylane.com/huaca-pucllana-miraflores/', 'wp-google-maps');
3095
- __('Huaca Pucllana, Miraflores', 'wp-google-maps');
3096
- __('https://thecitylane.com/la-feria-union-de-barranco-barranco/', 'wp-google-maps');
3097
- __('La Feria Union de Barranco, Barranco', 'wp-google-maps');
3098
- __('https://thecitylane.com/parque-municipal-de-barranco-barranco/', 'wp-google-maps');
3099
- __('Parque Municipal de Barranco, Barranco', 'wp-google-maps');
3100
- __('https://thecitylane.com/plaza-de-armas-plaza-major-cercado-de-lima/', 'wp-google-maps');
3101
- __('Plaza de Armas (Plaza Major), Cercado de Lima', 'wp-google-maps');
3102
- __('https://thecitylane.com/museo-de-arte-italiano-cercado-de-lima/', 'wp-google-maps');
3103
- __('Museo de Arte Italiano, Cercado de Lima', 'wp-google-maps');
3104
- __('https://thecitylane.com/puente-de-los-suspiros-bridge-of-sighs-barranco/', 'wp-google-maps');
3105
- __('Puente de los Suspiros (Bridge of Sighs), Barranco', 'wp-google-maps');
3106
- __('https://thecitylane.com/parque-del-amor-miraflores/', 'wp-google-maps');
3107
- __('Parque del Amor, Miraflores', 'wp-google-maps');
3108
- __('https://thecitylane.com/larcomar-miraflores/', 'wp-google-maps');
3109
- __('Larcomar, Miraflores', 'wp-google-maps');
3110
- __('https://thecitylane.com/chicha-cusco/', 'wp-google-maps');
3111
- __('Chicha, Cusco', 'wp-google-maps');
3112
- __('https://thecitylane.com/uma-cafe-cusco/', 'wp-google-maps');
3113
- __('Uma Cafe, Cusco', 'wp-google-maps');
3114
- __('https://thecitylane.com/kankas-pollos-y-parrilas-cusco/', 'wp-google-maps');
3115
- __('Kanka\'s Pollos y Parrilas, Cusco', 'wp-google-maps');
3116
- __('https://thecitylane.com/the-meeting-place-cafe-cusco/', 'wp-google-maps');
3117
- __('The Meeting Place Cafe, Cusco', 'wp-google-maps');
3118
- __('https://thecitylane.com/limo-nikkei-kitchen-cusco/', 'wp-google-maps');
3119
- __('LIMO Nikkei Kitchen, Cusco', 'wp-google-maps');
3120
- __('https://thecitylane.com/nuevo-mundo-draft-bar-cusco/', 'wp-google-maps');
3121
- __('Nuevo Mundo Draft Bar, Cusco', 'wp-google-maps');
3122
- __('https://thecitylane.com/cholos-craft-beers-cusco/', 'wp-google-maps');
3123
- __('Cholos Craft Beers, Cusco', 'wp-google-maps');
3124
- __('https://thecitylane.com/barranco-beer-company-cusco/', 'wp-google-maps');
3125
- __('Barranco Beer Company, Cusco', 'wp-google-maps');
3126
- __('https://thecitylane.com/plaza-de-armas-plaza-major-cusco/', 'wp-google-maps');
3127
- __('Plaza de Armas (Plaza Major), Cusco', 'wp-google-maps');
3128
- __('https://thecitylane.com/catedral-del-cusco-cusco/', 'wp-google-maps');
3129
- __('Catedral del Cusco, Cusco', 'wp-google-maps');
3130
- __('https://thecitylane.com/iglesia-de-la-compania-de-jesus-cusco/', 'wp-google-maps');
3131
- __('Iglesia De La Compania De Jesus, Cusco', 'wp-google-maps');
3132
- __('https://thecitylane.com/museo-de-arte-contemporaneo-de-la-municipalidad-del-cusco-cusco/', 'wp-google-maps');
3133
- __('Museo de Arte Contemporaneo de la Municipalidad del Cusco, Cusco', 'wp-google-maps');
3134
- __('https://thecitylane.com/museo-historico-regional-de-cusco-cusco/', 'wp-google-maps');
3135
- __('Museo Historico Regional de Cusco, Cusco', 'wp-google-maps');
3136
- __('https://thecitylane.com/qorikancha-cusco/', 'wp-google-maps');
3137
- __('Qorikancha, Cusco', 'wp-google-maps');
3138
- __('https://thecitylane.com/monumento-inca-pachacutec-cusco/', 'wp-google-maps');
3139
- __('Monumento Inca Pachacutec, Cusco', 'wp-google-maps');
3140
- __('https://thecitylane.com/artesanias-llancaqmaki-cusco/', 'wp-google-maps');
3141
- __('Artesanias Llancaqmaki, Cusco', 'wp-google-maps');
3142
- __('https://thecitylane.com/feria-artesanal-feria-artesanal-de-productores-el-marquez-de-san-francisco-cusco/', 'wp-google-maps');
3143
- __('Feria Artesanal De Productores El Marquez De San Francisco, Cusco', 'wp-google-maps');
3144
- __('https://thecitylane.com/mercado-central-de-san-pedro-de-cusco-cusco/', 'wp-google-maps');
3145
- __('Mercado Central de San Pedro de Cusco, Cusco', 'wp-google-maps');
3146
- __('https://thecitylane.com/tambomachay-cusco/', 'wp-google-maps');
3147
- __('Tambomachay, Cusco', 'wp-google-maps');
3148
- __('https://thecitylane.com/puca-pucara-cusco/', 'wp-google-maps');
3149
- __('Puca Pucara, Cusco', 'wp-google-maps');
3150
- __('https://thecitylane.com/qenqo-cusco/', 'wp-google-maps');
3151
- __('Q\'enqo, Cusco', 'wp-google-maps');
3152
- __('https://thecitylane.com/saqsaywaman-cusco/', 'wp-google-maps');
3153
- __('Saqsaywaman, Cusco', 'wp-google-maps');
3154
- __('https://thecitylane.com/centro-arqueologico-de-chinchero-chinchero/', 'wp-google-maps');
3155
- __('Centro Arqueologico de Chinchero, Chinchero', 'wp-google-maps');
3156
- __('https://thecitylane.com/plaza-de-chinchero-chinchero/', 'wp-google-maps');
3157
- __('Plaza de Chinchero, Chinchero', 'wp-google-maps');
3158
- __('https://thecitylane.com/centro-textil-urpi-chinchero/', 'wp-google-maps');
3159
- __('Centro Textil URPI, Chinchero', 'wp-google-maps');
3160
- __('https://thecitylane.com/salineras-de-maras-maras/', 'wp-google-maps');
3161
- __('Salineras de Maras, Maras', 'wp-google-maps');
3162
- __('https://thecitylane.com/moray-maras/', 'wp-google-maps');
3163
- __('Moray, Maras', 'wp-google-maps');
3164
- __('https://thecitylane.com/puka-rumi-ollantaytambo/', 'wp-google-maps');
3165
- __('Puka Rumi, Ollantaytambo', 'wp-google-maps');
3166
- __('https://thecitylane.com/choco-museo-ollantaytambo/', 'wp-google-maps');
3167
- __('Choco Museo, Ollantaytambo', 'wp-google-maps');
3168
- __('https://thecitylane.com/cerveceria-del-valle-sagrado-pachar/', 'wp-google-maps');
3169
- __('Cerveceria del Valle Sagrado, Pachar', 'wp-google-maps');
3170
- __('https://thecitylane.com/market-gabriel-ollantaytambo/', 'wp-google-maps');
3171
- __('Market Gabriel, Ollantaytambo', 'wp-google-maps');
3172
- __('https://thecitylane.com/mercado-san-pedro-ollantaytambo/', 'wp-google-maps');
3173
- __('Mercado San Pedro, Ollantaytambo', 'wp-google-maps');
3174
- __('https://thecitylane.com/sitio-arqueologico-de-ollantaytambo-ollantaytambo/', 'wp-google-maps');
3175
- __('Sitio Arqueologico de Ollantaytambo, Ollantaytambo', 'wp-google-maps');
3176
- __('https://thecitylane.com/capitano-carlton/', 'wp-google-maps');
3177
- __('Capitano, Carlton', 'wp-google-maps');
3178
- __('https://thecitylane.com/hiatus-kew/', 'wp-google-maps');
3179
- __('Hiatus, Kew', 'wp-google-maps');
3180
- __('https://thecitylane.com/co-thu-quan-footscray/', 'wp-google-maps');
3181
- __('Co Thu Quan, Footscray', 'wp-google-maps');
3182
- __('https://thecitylane.com/jojo-little-kitchen-melbourne-cbd/', 'wp-google-maps');
3183
- __('Jojo Little Kitchen, Melbourne', 'wp-google-maps');
3184
- __('https://thecitylane.com/bekka-moonee-ponds/', 'wp-google-maps');
3185
- __('Bekka, Moonee Ponds', 'wp-google-maps');
3186
- __('https://thecitylane.com/dynasty-fine-wines-glen-iris/', 'wp-google-maps');
3187
- __('Dynasty Fine Wines, Glen Iris', 'wp-google-maps');
3188
- __('https://thecitylane.com/glamping-at-balgownie-estate-bendigo/', 'wp-google-maps');
3189
- __('Glamping At Balgownie Estate, Bendigo', 'wp-google-maps');
3190
- __('https://thecitylane.com/davids-prahran/', 'wp-google-maps');
3191
- __('David\'s, Prahran', 'wp-google-maps');
3192
- __('https://thecitylane.com/lune-croissanterie-fitzroy/', 'wp-google-maps');
3193
- __('Lune Croissanterie, Fitzroy', 'wp-google-maps');
3194
- __('https://thecitylane.com/big-pig-little-pig-moorabbin/', 'wp-google-maps');
3195
- __('Big Pig Little Pig, Moorabbin', 'wp-google-maps');
3196
- __('https://thecitylane.com/southside-central-windsor/', 'wp-google-maps');
3197
- __('Southside Central, Windsor', 'wp-google-maps');
3198
- __('https://thecitylane.com/promise-bar-prahran/', 'wp-google-maps');
3199
- __('Promise Bar, Prahran', 'wp-google-maps');
3200
- __('https://thecitylane.com/pawn-co-prahran/', 'wp-google-maps');
3201
- __('Pawn & Co, Prahran', 'wp-google-maps');
3202
- __('https://thecitylane.com/hawker-chan-melbourne-cbd/', 'wp-google-maps');
3203
- __('Hawker Chan, Melbourne', 'wp-google-maps');
3204
- __('https://thecitylane.com/urban-alley-brewery-docklands/', 'wp-google-maps');
3205
- __('Urban Alley Brewery, Docklands', 'wp-google-maps');
3206
- __('https://thecitylane.com/bluebonnet-barbecue-brunswick-east/', 'wp-google-maps');
3207
- __('Bluebonnet Barbecue, Brunswick East', 'wp-google-maps');
3208
- __('https://thecitylane.com/pentolina-melbourne-cbd/', 'wp-google-maps');
3209
- __('Pentolina, Melbourne', 'wp-google-maps');
3210
- __('https://thecitylane.com/asado-southbank/', 'wp-google-maps');
3211
- __('Asado, Southbank', 'wp-google-maps');
3212
- __('https://thecitylane.com/mama-manoush-brunswick-east/', 'wp-google-maps');
3213
- __('Mama Manoush, Brunswick East', 'wp-google-maps');
3214
- __('https://thecitylane.com/good-times-milk-bar-bentleigh/', 'wp-google-maps');
3215
- __('Good Times Milk Bar, Bentleigh', 'wp-google-maps');
3216
- __('https://thecitylane.com/amor-perfecto-chapinero/', 'wp-google-maps');
3217
- __('Amor Perfecto, Chapinero', 'wp-google-maps');
3218
- __('https://thecitylane.com/tablua-santa-fe/', 'wp-google-maps');
3219
- __('Tablua, Santa Fe', 'wp-google-maps');
3220
- __('https://thecitylane.com/la-puerta-falsa-la-candelaria/', 'wp-google-maps');
3221
- __('La Puerta Falsa, La Candelaria', 'wp-google-maps');
3222
- __('https://thecitylane.com/statua-rota-brewery-teusaquillo/', 'wp-google-maps');
3223
- __('Statua Rota Brewery, Teusaquillo', 'wp-google-maps');
3224
- __('https://thecitylane.com/bogota-beer-company-el-retiro/', 'wp-google-maps');
3225
- __('Bogota Beer Company, El Retiro', 'wp-google-maps');
3226
- __('https://thecitylane.com/andres-dc-chapinero/', 'wp-google-maps');
3227
- __('Andres DC, Chapinero', 'wp-google-maps');
3228
- __('https://thecitylane.com/bourbon-coffee-roasters-quinta-camacho/', 'wp-google-maps');
3229
- __('Bourbon Coffee Roasters, Quinta Camacho', 'wp-google-maps');
3230
- __('https://thecitylane.com/osaka-bogota-chico/', 'wp-google-maps');
3231
- __('Osaka Bogota, Chico', 'wp-google-maps');
3232
- __('https://thecitylane.com/el-sindicato-cervezas-artesanales-unidas-el-retiro/', 'wp-google-maps');
3233
- __('El Sindicato Cervezas Artesanales Unidas, El Retiro', 'wp-google-maps');
3234
- __('https://thecitylane.com/dos-carreras-quinta-camacho/', 'wp-google-maps');
3235
- __('Dos Carreras, Quinta Camacho', 'wp-google-maps');
3236
- __('https://thecitylane.com/chuculat-quinta-camacho/', 'wp-google-maps');
3237
- __('Chuculat, Quinta Camacho', 'wp-google-maps');
3238
- __('https://thecitylane.com/el-mono-bandido-quinta-camacho/', 'wp-google-maps');
3239
- __('El Mono Bandido, Quinta Camacho', 'wp-google-maps');
3240
- __('https://thecitylane.com/el-chato-chapinero/', 'wp-google-maps');
3241
- __('El Chato, Chapinero', 'wp-google-maps');
3242
- __('https://thecitylane.com/cafe-devocion-chapinero/', 'wp-google-maps');
3243
- __('Cafe Devocion, Chapinero', 'wp-google-maps');
3244
- __('https://thecitylane.com/segundo-chico/', 'wp-google-maps');
3245
- __('Segundo, Chico', 'wp-google-maps');
3246
- __('https://thecitylane.com/parque-nacional-enrique-olaya-herrera-santa-fe/', 'wp-google-maps');
3247
- __('Parque Nacional Enrique Olaya Herrera, Santa Fe', 'wp-google-maps');
3248
- __('https://thecitylane.com/museo-botero-la-candelaria/', 'wp-google-maps');
3249
- __('Museo Botero, La Candelaria', 'wp-google-maps');
3250
- __('https://thecitylane.com/museo-casa-de-moneda-la-candelaria/', 'wp-google-maps');
3251
- __('Museo Casa de Moneda, La Candelaria', 'wp-google-maps');
3252
- __('https://thecitylane.com/museo-de-bogota-la-candelaria/', 'wp-google-maps');
3253
- __('Museo de Bogota, La Candelaria', 'wp-google-maps');
3254
- __('https://thecitylane.com/plaza-de-bolivar-la-candelaria/', 'wp-google-maps');
3255
- __('Plaza de Bolivar, La Candelaria', 'wp-google-maps');
3256
- __('https://thecitylane.com/museo-de-arte-moderno-de-bogota-mambo-santa-fe/', 'wp-google-maps');
3257
- __('Museo de Arte Moderno de Bogota (MAMBO), Santa Fe', 'wp-google-maps');
3258
- __('https://thecitylane.com/plaza-de-mercado-paloquemao-paloquemao/', 'wp-google-maps');
3259
- __('Plaza de Mercado Paloquemao, Paloquemao', 'wp-google-maps');
3260
- __('https://thecitylane.com/garcon-paris-steakhouse-melbourne-cbd/', 'wp-google-maps');
3261
- __('Garcon Paris Steakhouse, Melbourne', 'wp-google-maps');
3262
- __('https://thecitylane.com/potenza-ristorante-richmond/', 'wp-google-maps');
3263
- __('Potenza Ristorante, Richmond', 'wp-google-maps');
3264
- __('https://thecitylane.com/bogota-beer-company-el-poblado/', 'wp-google-maps');
3265
- __('Bogota Beer Company, El Poblado', 'wp-google-maps');
3266
- __('https://thecitylane.com/osea-med-restaurante-el-poblado/', 'wp-google-maps');
3267
- __('OSEA med Restaurante, El Poblado', 'wp-google-maps');
3268
- __('https://thecitylane.com/urbania-cafe-el-poblado/', 'wp-google-maps');
3269
- __('Urbania Cafe, El Poblado', 'wp-google-maps');
3270
- __('https://thecitylane.com/tejo-colombias-explosive-sport/', 'wp-google-maps');
3271
- __('Tejo, Colombia\'s Explosive Sport', 'wp-google-maps');
3272
- __('https://thecitylane.com/cerveceria-libra-el-poblado/', 'wp-google-maps');
3273
- __('Cerveceria Libre, El Poblado', 'wp-google-maps');
3274
- __('https://thecitylane.com/medellin-beer-factory-el-poblado/', 'wp-google-maps');
3275
- __('Medellin Beer Factory, El Poblado', 'wp-google-maps');
3276
- __('https://thecitylane.com/restaurante-mondongos-el-poblado/', 'wp-google-maps');
3277
- __('Restaurante Mondongo\'s, El Poblado', 'wp-google-maps');
3278
- __('https://thecitylane.com/pergamino-coffee-el-poblado/', 'wp-google-maps');
3279
- __('Pergamino Coffee, El Poblado', 'wp-google-maps');
3280
- __('https://thecitylane.com/toucan-cafe-tours-el-poblado/', 'wp-google-maps');
3281
- __('Toucan Cafe & Tours, El Poblado', 'wp-google-maps');
3282
- __('https://thecitylane.com/plaza-minorista-jose-maria-villa-san-benito/', 'wp-google-maps');
3283
- __('Plaza Minorista Jose Maria Villa, San Benito', 'wp-google-maps');
3284
- __('https://thecitylane.com/restaurante-barcal-el-poblado/', 'wp-google-maps');
3285
- __('Restaurante Barcal, El Poblado', 'wp-google-maps');
3286
- __('https://thecitylane.com/cerveceria-maestre-el-poblado/', 'wp-google-maps');
3287
- __('Cerveceria Maestre, El Poblado', 'wp-google-maps');
3288
- __('https://thecitylane.com/delicias-del-tolima-el-centro/', 'wp-google-maps');
3289
- __('Delicias del Tolima, El Centro', 'wp-google-maps');
3290
- __('https://thecitylane.com/mu-fukin-good-ribs-el-poblado/', 'wp-google-maps');
3291
- __('Mu (Fukin\' Good Ribs), El Poblado', 'wp-google-maps');
3292
- __('https://thecitylane.com/reposteria-astor-el-centro/', 'wp-google-maps');
3293
- __('Reposteria Astor, El Centro', 'wp-google-maps');
3294
- __('https://thecitylane.com/belisario-el-poblado/', 'wp-google-maps');
3295
- __('Belisario, El Poblado', 'wp-google-maps');
3296
- __('https://thecitylane.com/macanas-medellin-el-poblado/', 'wp-google-maps');
3297
- __('Macanas Medellin, El Poblado', 'wp-google-maps');
3298
- __('https://thecitylane.com/cafe-con-mucho-amor-el-centro/', 'wp-google-maps');
3299
- __('Cafe con Mucho Amor, El Centro', 'wp-google-maps');
3300
- __('https://thecitylane.com/centro-comercial-palacio-nacional-el-centro/', 'wp-google-maps');
3301
- __('Centro Comercial Palacio Nacional, El Centro', 'wp-google-maps');
3302
- __('https://thecitylane.com/clandestino-el-poblado/', 'wp-google-maps');
3303
- __('Clandestino, El Poblado', 'wp-google-maps');
3304
- __('https://thecitylane.com/mercado-del-rio-el-poblado/', 'wp-google-maps');
3305
- __('Mercado del Rio, El Poblado', 'wp-google-maps');
3306
- __('https://thecitylane.com/mercado-del-tranvia-caicedo/', 'wp-google-maps');
3307
- __('Mercado del Tranvia, Caicedo', 'wp-google-maps');
3308
- __('https://thecitylane.com/dolce-gelato-by-amor-acuya-caicedo/', 'wp-google-maps');
3309
- __('Dolce Gelato By Amor Acuya, Caicedo', 'wp-google-maps');
3310
- __('https://thecitylane.com/plaza-botero-el-centro/', 'wp-google-maps');
3311
- __('Plaza Botero, El Centro', 'wp-google-maps');
3312
- __('https://thecitylane.com/museo-de-antioquia-el-centro/', 'wp-google-maps');
3313
- __('Museo de Antioquia, El Centro', 'wp-google-maps');
3314
- __('https://thecitylane.com/iglesia-de-la-veracruz-el-centro/', 'wp-google-maps');
3315
- __('Iglesia De La Veracruz, El Centro', 'wp-google-maps');
3316
- __('https://thecitylane.com/palacio-de-la-cultura-rafael-uribe-uribe-el-centro/', 'wp-google-maps');
3317
- __('Palacio De La Cultura Rafael Uribe Uribe, El Centro', 'wp-google-maps');
3318
- __('https://thecitylane.com/celebrating-pisco-spring-with-pastuso/', 'wp-google-maps');
3319
- __('Celebrating Pisco & Spring With Pastuso', 'wp-google-maps');
3320
- __('https://thecitylane.com/union-electric-melbourne-cbd/', 'wp-google-maps');
3321
- __('Union Electric, Melbourne', 'wp-google-maps');
3322
- __('https://thecitylane.com/juicy-bao-melbourne-cbd/', 'wp-google-maps');
3323
- __('Juicy Bao, Melbourne', 'wp-google-maps');
3324
- __('https://thecitylane.com/pho-hung-preston/', 'wp-google-maps');
3325
- __('Pho Hung, Preston', 'wp-google-maps');
3326
- __('https://thecitylane.com/etta-brunswick-east/', 'wp-google-maps');
3327
- __('Etta, Brunswick East', 'wp-google-maps');
3328
- __('https://thecitylane.com/bar-romantica-brunswick-east/', 'wp-google-maps');
3329
- __('Bar Romantica, Brunswick East', 'wp-google-maps');
3330
- __('https://thecitylane.com/hard-rubbish-preston/', 'wp-google-maps');
3331
- __('Hard Rubbish, Preston', 'wp-google-maps');
3332
- __('https://thecitylane.com/bistro-morgan-chadstone/', 'wp-google-maps');
3333
- __('Bistro Morgan, Chadstone', 'wp-google-maps');
3334
- __('https://thecitylane.com/half-acre-south-melbourne/', 'wp-google-maps');
3335
- __('Half Acre, South Melbourne', 'wp-google-maps');
3336
- __('https://thecitylane.com/rocomamas-windsor/', 'wp-google-maps');
3337
- __('RocoMamas, Windsor', 'wp-google-maps');
3338
- __('https://thecitylane.com/torissong-carlton/', 'wp-google-maps');
3339
- __('Torissong, Carlton', 'wp-google-maps');
3340
- __('https://thecitylane.com/melbourne-cellar-door-south-wharf/', 'wp-google-maps');
3341
- __('Melbourne Cellar Door, South Wharf', 'wp-google-maps');
3342
- __('https://thecitylane.com/queen-of-leeds-leederville/', 'wp-google-maps');
3343
- __('Queen Of Leeds, Leederville', 'wp-google-maps');
3344
- __('https://thecitylane.com/shy-john-brewery-yum-cha-perth-cbd/', 'wp-google-maps');
3345
- __('Shy John Brewery & Yum Cha, Perth', 'wp-google-maps');
3346
- __('https://thecitylane.com/open-by-duotone-northbridge/', 'wp-google-maps');
3347
- __('OPEN By Duotone, Northbridge', 'wp-google-maps');
3348
- __('https://thecitylane.com/ceverceria-gigante-olimpica-la-castellana/', 'wp-google-maps');
3349
- __('Ceverceria Gigante, Olimpica La Castellana', 'wp-google-maps');
3350
- __('https://thecitylane.com/angus-bon-prahran/', 'wp-google-maps');
3351
- __('Angus & Bon, Prahran', 'wp-google-maps');
3352
- __('https://thecitylane.com/parkstone-pascoe-vale/', 'wp-google-maps');
3353
- __('Parkstone, Pascoe Vale', 'wp-google-maps');
3354
- __('https://thecitylane.com/state-of-grace-melbourne-cbd/', 'wp-google-maps');
3355
- __('State Of Grace, Melbourne', 'wp-google-maps');
3356
- __('https://thecitylane.com/labld-marrickville/', 'wp-google-maps');
3357
- __('LABLD, Marrickville', 'wp-google-maps');
3358
- __('https://thecitylane.com/bucket-boys-craft-beer-co-marrickville/', 'wp-google-maps');
3359
- __('Bucket Boys Craft Beer Co, Marrickville', 'wp-google-maps');
3360
- __('https://thecitylane.com/sauce-brewing-co-marrickville/', 'wp-google-maps');
3361
- __('Sauce Brewing Co, Marrickville', 'wp-google-maps');
3362
- __('https://thecitylane.com/wildflower-brewing-blending-marrickville/', 'wp-google-maps');
3363
- __('Wildflower Brewing & Blending, Marrickville', 'wp-google-maps');
3364
- __('https://thecitylane.com/stockade-barrel-room-marrickville/', 'wp-google-maps');
3365
- __('Stockade Barrel Room, Marrickville', 'wp-google-maps');
3366
- __('https://thecitylane.com/poor-toms-gin-hall-marrickville/', 'wp-google-maps');
3367
- __('Poor Toms Gin Hall, Marrickville', 'wp-google-maps');
3368
- __('https://thecitylane.com/sang-by-mabasa-surry-hills/', 'wp-google-maps');
3369
- __('Sang By Mabasa, Surry Hills', 'wp-google-maps');
3370
- __('https://thecitylane.com/edition-coffee-roasters-haymarket/', 'wp-google-maps');
3371
- __('Edition Coffee Roasters, Haymarket', 'wp-google-maps');
3372
- __('https://thecitylane.com/the-welcome-hotel-rozelle/', 'wp-google-maps');
3373
- __('The Welcome Hotel, Rozelle', 'wp-google-maps');
3374
- __('https://thecitylane.com/akasha-brewing-company-five-dock/', 'wp-google-maps');
3375
- __('Akasha Brewing Company, Five Dock', 'wp-google-maps');
3376
- __('https://thecitylane.com/belgian-beer-cafe-heritage-the-rocks/', 'wp-google-maps');
3377
- __('Belgian Beer Cafe Heritage, The Rocks', 'wp-google-maps');
3378
- __('https://thecitylane.com/cafe-oratnek-redfern/', 'wp-google-maps');
3379
- __('Cafe Oratnek, Redfern', 'wp-google-maps');
3380
- __('https://thecitylane.com/the-horse-surry-hills/', 'wp-google-maps');
3381
- __('The Horse, Surry Hills', 'wp-google-maps');
3382
- __('https://thecitylane.com/yullis-surry-hills/', 'wp-google-maps');
3383
- __('Yulli\'s, Surry Hills', 'wp-google-maps');
3384
- __('https://thecitylane.com/poly-surry-hills/', 'wp-google-maps');
3385
- __('Poly, Surry Hills', 'wp-google-maps');
3386
- __('https://thecitylane.com/the-noble-hops-redfern/', 'wp-google-maps');
3387
- __('The Noble Hops, Redfern', 'wp-google-maps');
3388
- __('https://thecitylane.com/woolpack-hotel-redfern/', 'wp-google-maps');
3389
- __('Woolpack Hotel, Redfern', 'wp-google-maps');
3390
- __('https://thecitylane.com/beer-deluxe-t2-sydney-airport-mascot/', 'wp-google-maps');
3391
- __('Beer DeLuxe (T2 Sydney Airport), Mascot', 'wp-google-maps');
3392
- __('https://thecitylane.com/the-oak-barrel-sydney-cbd/', 'wp-google-maps');
3393
- __('The Oak Barrel, Sydney', 'wp-google-maps');
3394
- __('https://thecitylane.com/queen-victoria-building-sydney-cbd/', 'wp-google-maps');
3395
- __('Queen Victoria Building, Sydney', 'wp-google-maps');
3396
- __('https://thecitylane.com/westfield-sydney-sydney-cbd/', 'wp-google-maps');
3397
- __('Westfield Sydney, Sydney', 'wp-google-maps');
3398
- __('https://thecitylane.com/babajan-carlton-north/', 'wp-google-maps');
3399
- __('Babajan, Carlton North', 'wp-google-maps');
3400
- __('https://thecitylane.com/trang-bakery-cafe-collingwood/', 'wp-google-maps');
3401
- __('Trang Bakery & Cafe, Collingwood', 'wp-google-maps');
3402
- __('https://thecitylane.com/senstorm-noodle-bar-grill-collingwood/', 'wp-google-maps');
3403
- __('SenStorm Noodle Bar & Grill, Collingwood', 'wp-google-maps');
3404
- __('https://thecitylane.com/matilda-south-yarra/', 'wp-google-maps');
3405
- __('Matilda, South Yarra', 'wp-google-maps');
3406
- __('https://thecitylane.com/rooftop-bar-melbourne-cbd/', 'wp-google-maps');
3407
- __('Rooftop Bar, Melbourne', 'wp-google-maps');
3408
- __('https://thecitylane.com/the-cellar-door-ringwood/', 'wp-google-maps');
3409
- __('The Cellar Door, Ringwood', 'wp-google-maps');
3410
- __('https://thecitylane.com/eva-on-drummond-carlton/', 'wp-google-maps');
3411
- __('Eva On Drummond, Carlton', 'wp-google-maps');
3412
- __('https://thecitylane.com/the-moors-head-carlton-carlton/', 'wp-google-maps');
3413
- __('The Moor\'s Head (Carlton), Carlton', 'wp-google-maps');
3414
- __('https://thecitylane.com/fixation-brewing-co-the-incubator-collingwood/', 'wp-google-maps');
3415
- __('Fixation Brewing Co (the incubator), Collingwood', 'wp-google-maps');
3416
- __('https://thecitylane.com/wild-life-bakery-brunswick-east/', 'wp-google-maps');
3417
- __('Wild Life Bakery, Brunswick East', 'wp-google-maps');
3418
- __('https://thecitylane.com/mr-banks-brewing-co-seaford/', 'wp-google-maps');
3419
- __('Mr Banks Brewing Co., Seaford', 'wp-google-maps');
3420
- __('https://thecitylane.com/red-gum-bbq-red-hill/', 'wp-google-maps');
3421
- __('Red Gum BBQ, Red Hill', 'wp-google-maps');
3422
- __('https://thecitylane.com/new-somali-kitchen-flemington/', 'wp-google-maps');
3423
- __('New Somali Kitchen, Flemington', 'wp-google-maps');
3424
- __('https://thecitylane.com/johnnys-green-room-carlton/', 'wp-google-maps');
3425
- __('Johnny\'s Green Room, Carlton', 'wp-google-maps');
3426
- __('https://thecitylane.com/lenny-3206-albert-park/', 'wp-google-maps');
3427
- __('Lenny 3206, Albert Park', 'wp-google-maps');
3428
- __('https://thecitylane.com/the-tamper-trap-brighton/', 'wp-google-maps');
3429
- __('The Tamper Trap, Brighton', 'wp-google-maps');
3430
- __('https://thecitylane.com/yagiz-south-yarra/', 'wp-google-maps');
3431
- __('Yagiz, South Yarra', 'wp-google-maps');
3432
- __('https://thecitylane.com/lover-windsor/', 'wp-google-maps');
3433
- __('LOVER, Windsor', 'wp-google-maps');
3434
- __('https://thecitylane.com/3-cordilleras-el-poblado/', 'wp-google-maps');
3435
- __('3 Cordilleras, El Poblado', 'wp-google-maps');
3436
- __('https://thecitylane.com/miznon-melbourne-cbd/', 'wp-google-maps');
3437
- __('Miznon, Melbourne', 'wp-google-maps');
3438
- __('https://thecitylane.com/go-noodle-house-melbourne-cbd/', 'wp-google-maps');
3439
- __('GO Noodle House, Melbourne', 'wp-google-maps');
3440
- __('https://thecitylane.com/la-cevicheria-san-diego/', 'wp-google-maps');
3441
- __('La Cevicheria, San Diego', 'wp-google-maps');
3442
- __('https://thecitylane.com/cande-centro/', 'wp-google-maps');
3443
- __('Cande, Centro', 'wp-google-maps');
3444
- __('https://thecitylane.com/alquimico-bar-centro/', 'wp-google-maps');
3445
- __('Alquimico Bar, Centro', 'wp-google-maps');
3446
- __('https://thecitylane.com/abaco-libros-y-cafe-centro/', 'wp-google-maps');
3447
- __('Abaco Libros y Cafe, Centro', 'wp-google-maps');
3448
- __('https://thecitylane.com/epoca-espresso-bar-arzobispado-centro/', 'wp-google-maps');
3449
- __('Epoca Espresso Bar (Arzobispado), Centro', 'wp-google-maps');
3450
- __('https://thecitylane.com/el-arsenal-the-rum-box-la-matuna/', 'wp-google-maps');
3451
- __('El Arsenal: The Rum Box, La Matuna', 'wp-google-maps');
3452
- __('https://thecitylane.com/cuba-1940-san-diego/', 'wp-google-maps');
3453
- __('Cuba 1940, San Diego', 'wp-google-maps');
3454
- __('https://thecitylane.com/juan-del-mar-san-diego/', 'wp-google-maps');
3455
- __('Juan Del Mar, San Diego', 'wp-google-maps');
3456
- __('https://thecitylane.com/el-baron-centro/', 'wp-google-maps');
3457
- __('El Baron, Centro', 'wp-google-maps');
3458
- __('https://thecitylane.com/beer-lovers-centro/', 'wp-google-maps');
3459
- __('Beer Lovers, Centro', 'wp-google-maps');
3460
- __('https://thecitylane.com/cafe-san-alberto-centro/', 'wp-google-maps');
3461
- __('Cafe San Alberto, Centro', 'wp-google-maps');
3462
- __('https://thecitylane.com/carmen-cartagena-san-diego/', 'wp-google-maps');
3463
- __('Carmen Cartagena, San Diego', 'wp-google-maps');
3464
- __('https://thecitylane.com/el-coro-lounge-bar-san-diego/', 'wp-google-maps');
3465
- __('El Coro Lounge Bar, San Diego', 'wp-google-maps');
3466
- __('https://thecitylane.com/el-santismo-san-diego/', 'wp-google-maps');
3467
- __('El Santismo, San Diego', 'wp-google-maps');
3468
- __('https://thecitylane.com/el-muelle-el-laguito/', 'wp-google-maps');
3469
- __('El Muelle, El Laguito', 'wp-google-maps');
3470
- __('https://thecitylane.com/cartagena-craft-beer-getsemani/', 'wp-google-maps');
3471
- __('Cartagena Craft Beer, Getsemani', 'wp-google-maps');
3472
- __('https://thecitylane.com/cafe-del-mural-getsemani/', 'wp-google-maps');
3473
- __('Cafe del Mural, Getsemani', 'wp-google-maps');
3474
- __('https://thecitylane.com/museo-de-arte-moderno-de-cartagena-centro/', 'wp-google-maps');
3475
- __('Museo De Arte Moderno De Cartagena, Centro', 'wp-google-maps');
3476
- __('https://thecitylane.com/iglesia-de-san-pedro-claver-centro/', 'wp-google-maps');
3477
- __('Iglesia de San Pedro Claver, Centro', 'wp-google-maps');
3478
- __('https://thecitylane.com/plaza-del-reloj-centro/', 'wp-google-maps');
3479
- __('Plaza del Reloj, Centro', 'wp-google-maps');
3480
- __('https://thecitylane.com/museo-del-oro-zenu-centro/', 'wp-google-maps');
3481
- __('Museo del Oro Zenu, Centro', 'wp-google-maps');
3482
- __('https://thecitylane.com/cheek-melbourne-cbd/', 'wp-google-maps');
3483
- __('Cheek, Melbourne', 'wp-google-maps');
3484
- __('https://thecitylane.com/red-piggy-melbourne-cbd/', 'wp-google-maps');
3485
- __('Red Piggy, Melbourne', 'wp-google-maps');
3486
- __('https://thecitylane.com/craft-beer-bar-ibrew-yaesu/', 'wp-google-maps');
3487
- __('Craft Beer Bar iBrew, Yaesu', 'wp-google-maps');
3488
- __('https://thecitylane.com/hitachino-brewing-lab-kanda/', 'wp-google-maps');
3489
- __('Hitachino Brewing Lab, Kanda', 'wp-google-maps');
3490
- __('https://thecitylane.com/izakaya-beer-boy-kichijoji/', 'wp-google-maps');
3491
- __('Izakaya Beer Boy, Kichijoji', 'wp-google-maps');
3492
- __('https://thecitylane.com/craft-beer-market-kichijoji/', 'wp-google-maps');
3493
- __('Craft Beer Market, Kichijoji', 'wp-google-maps');
3494
- __('https://thecitylane.com/titans-craft-beer-taproom-bottle-shop-minamiotsuka/', 'wp-google-maps');
3495
- __('Titans Craft Beer Taproom & Bottle Shop, Minamiotsuka', 'wp-google-maps');
3496
- __('https://thecitylane.com/beer-ma-kanda-kanda/', 'wp-google-maps');
3497
- __('Beer Ma Kanda, Kanda', 'wp-google-maps');
3498
- __('https://thecitylane.com/usagi-shibuya/', 'wp-google-maps');
3499
- __('Usagi, Shibuya', 'wp-google-maps');
3500
- __('https://thecitylane.com/karakuri-craft-beer-oden-sake-kanda/', 'wp-google-maps');
3501
- __('Karakuri Craft Beer & Oden & Sake, Kanda', 'wp-google-maps');
3502
- __('https://thecitylane.com/takamaru-shinjuku/', 'wp-google-maps');
3503
- __('Takamaru, Shinjuku', 'wp-google-maps');
3504
- __('https://thecitylane.com/baird-taproom-takadanobaba/', 'wp-google-maps');
3505
- __('Baird Taproom, Takadanobaba', 'wp-google-maps');
3506
- __('https://thecitylane.com/kanda-matsuya-kanda/', 'wp-google-maps');
3507
- __('Kanda Matsuya, Kanda', 'wp-google-maps');
3508
- __('https://thecitylane.com/komakata-dozeu-asakusa/', 'wp-google-maps');
3509
- __('Komakata Dozeu, Asakusa', 'wp-google-maps');
3510
- __('https://thecitylane.com/onibus-coffee-nakameguro/', 'wp-google-maps');
3511
- __('Onibus Coffee, Nakameguro', 'wp-google-maps');
3512
- __('https://thecitylane.com/seirinkan-nakameguro/', 'wp-google-maps');
3513
- __('Seirinkan, Nakameguro', 'wp-google-maps');
3514
- __('https://thecitylane.com/deli-fu-cious-higashiyama/', 'wp-google-maps');
3515
- __('Deli Fu Cious, Higashiyama', 'wp-google-maps');
3516
- __('https://thecitylane.com/isomaru-suisan-akihabara/', 'wp-google-maps');
3517
- __('Isomaru Suisan, Akihabara', 'wp-google-maps');
3518
- __('https://thecitylane.com/delirium-cafe-ginza/', 'wp-google-maps');
3519
- __('Delirium Cafe, Ginza', 'wp-google-maps');
3520
- __('https://thecitylane.com/afuri-azabujuban/', 'wp-google-maps');
3521
- __('AFURI, Azabujuban', 'wp-google-maps');
3522
- __('https://thecitylane.com/ramen-marutama-ryogoku-honten-ryogoku/', 'wp-google-maps');
3523
- __('Ramen Marutama Ryogoku Honten, Ryogoku', 'wp-google-maps');
3524
- __('https://thecitylane.com/torimero-gaienmae-stadium-street-store-kitaaoyama/', 'wp-google-maps');
3525
- __('Torimero (Gaienmae Stadium Street Store), Kitaaoyama', 'wp-google-maps');
3526
- __('https://thecitylane.com/yakitori-horse-market-kanda/', 'wp-google-maps');
3527
- __('Yakitori Horse Market, Kanda', 'wp-google-maps');
3528
- __('https://thecitylane.com/galali-shibuya/', 'wp-google-maps');
3529
- __('GALALI, Shibuya', 'wp-google-maps');
3530
- __('https://thecitylane.com/sarutahiko-coffee-omotesando/', 'wp-google-maps');
3531
- __('Sarutahiko Coffee, Omotesandō', 'wp-google-maps');
3532
- __('https://thecitylane.com/kirishima-jidori-minamiaoyama/', 'wp-google-maps');
3533
- __('Kirishima Jidori, Minamiaoyama', 'wp-google-maps');
3534
- __('https://thecitylane.com/edo-tokyo-museum-sumida/', 'wp-google-maps');
3535
- __('Edo-Tokyo Museum, Sumida', 'wp-google-maps');
3536
- __('https://thecitylane.com/ghibli-museum-shimorenjaku/', 'wp-google-maps');
3537
- __('Ghibli Museum, Shimorenjaku', 'wp-google-maps');
3538
- __('https://thecitylane.com/ota-memorial-museum-of-art-shibuya/', 'wp-google-maps');
3539
- __('Ōta Memorial Museum Of Art, Shibuya', 'wp-google-maps');
3540
- __('https://thecitylane.com/utrecht-omotesando/', 'wp-google-maps');
3541
- __('UTRECHT, Omotesandō', 'wp-google-maps');
3542
- __('https://thecitylane.com/senso-ji-asakusa/', 'wp-google-maps');
3543
- __('Sensō-ji, Asakusa', 'wp-google-maps');
3544
- __('https://thecitylane.com/meiji-jingu-shibuya/', 'wp-google-maps');
3545
- __('Meiji Jingu, Shibuya', 'wp-google-maps');
3546
- __('https://thecitylane.com/yoyogi-park-shibuya/', 'wp-google-maps');
3547
- __('Yoyogi Park, Shibuya', 'wp-google-maps');
3548
- __('https://thecitylane.com/colmado-santiago-centro/', 'wp-google-maps');
3549
- __('Colmado, Santiago Centro', 'wp-google-maps');
3550
- __('https://thecitylane.com/cafe-forestal-santiago-centro/', 'wp-google-maps');
3551
- __('Cafe Forestal, Santiago Centro', 'wp-google-maps');
3552
- __('https://thecitylane.com/chipe-libre-santiago-centro/', 'wp-google-maps');
3553
- __('Chipe Libre, Santiago Centro', 'wp-google-maps');
3554
- __('https://thecitylane.com/bocanariz-santiago-centro/', 'wp-google-maps');
3555
- __('Bocanariz, Santiago Centro', 'wp-google-maps');
3556
- __('https://thecitylane.com/kunstmann-kneipe-bellavista/', 'wp-google-maps');
3557
- __('Kunstmann Kneipe, Bellavista', 'wp-google-maps');
3558
- __('https://thecitylane.com/peumayen-ancestral-food-bellavista/', 'wp-google-maps');
3559
- __('Peumayen Ancestral Food, Bellavista', 'wp-google-maps');
3560
- __('https://thecitylane.com/aqui-esta-coco-providencia/', 'wp-google-maps');
3561
- __('Aqui Esta Coco, Providencia', 'wp-google-maps');
3562
- __('https://thecitylane.com/krossbar-bellavista/', 'wp-google-maps');
3563
- __('KrossBar, Bellavista', 'wp-google-maps');
3564
- __('https://thecitylane.com/liguria-santiago-centro/', 'wp-google-maps');
3565
- __('Liguria, Santiago Centro', 'wp-google-maps');
3566
- __('https://thecitylane.com/fuente-alemana-santiago-centro/', 'wp-google-maps');
3567
- __('Fuente Alemana, Santiago Centro', 'wp-google-maps');
3568
- __('https://thecitylane.com/bloom-specialty-coffee-santiago-centro/', 'wp-google-maps');
3569
- __('Bloom Specialty Coffee, Santiago Centro', 'wp-google-maps');
3570
- __('https://thecitylane.com/cofi-providencia/', 'wp-google-maps');
3571
- __('COFI, Providencia', 'wp-google-maps');
3572
- __('https://thecitylane.com/cafe-cultura-providencia/', 'wp-google-maps');
3573
- __('Cafe Cultura, Providencia', 'wp-google-maps');
3574
- __('https://thecitylane.com/cerveceria-nacional-santiago-centro/', 'wp-google-maps');
3575
- __('Cerveceria Nacional, Santiago Centro', 'wp-google-maps');
3576
- __('https://thecitylane.com/bar-nordico-bellavista/', 'wp-google-maps');
3577
- __('Bar Nordico, Bellavista', 'wp-google-maps');
3578
- __('https://thecitylane.com/museo-nacional-de-bellas-artes-santiago-centro/', 'wp-google-maps');
3579
- __('Museo Nacional de Bellas Artes, Santiago Centro', 'wp-google-maps');
3580
- __('https://thecitylane.com/museo-chileno-de-arte-precolombino-santiago-centro/', 'wp-google-maps');
3581
- __('Museo Chileno de Arte Precolombino, Santiago Centro', 'wp-google-maps');
3582
- __('https://thecitylane.com/museo-de-arte-contemporaneo-mac-quinta-normal/', 'wp-google-maps');
3583
- __('Museo de Arte Contemporaneo (MAC), Quinta Normal', 'wp-google-maps');
3584
- __('https://thecitylane.com/museo-de-la-memoria-y-los-derechos-humanos-qunita-normal/', 'wp-google-maps');
3585
- __('Museo de la Memoria y los Derechos Humanos, Qunita Normal', 'wp-google-maps');
3586
- __('https://thecitylane.com/museo-nacional-de-historia-natural-qunita-normal/', 'wp-google-maps');
3587
- __('Museo Nacional de Historia Natural, Qunita Normal', 'wp-google-maps');
3588
- __('https://thecitylane.com/parque-uruguay-providencia/', 'wp-google-maps');
3589
- __('Parque Uruguay, Providencia', 'wp-google-maps');
3590
- __('https://thecitylane.com/plaza-de-la-constitucion-santiago-centro/', 'wp-google-maps');
3591
- __('Plaza de la Constitucion, Santiago Centro', 'wp-google-maps');
3592
- __('https://thecitylane.com/mercado-central-de-santiago-santiago-centro/', 'wp-google-maps');
3593
- __('Mercado Central de Santiago, Santiago Centro', 'wp-google-maps');
3594
- __('https://thecitylane.com/boulevard-alameda-333-santiago-centro/', 'wp-google-maps');
3595
- __('Boulevard Alameda 333, Santiago Centro', 'wp-google-maps');
3596
- __('https://thecitylane.com/patio-bellavista-panorama-urbano-bellavista/', 'wp-google-maps');
3597
- __('Patio Bellavista Panorama Urbano, Bellavista', 'wp-google-maps');
3598
- __('https://thecitylane.com/plaza-de-armas-santiago-centro/', 'wp-google-maps');
3599
- __('Plaza de Armas, Santiago Centro', 'wp-google-maps');
3600
- __('https://thecitylane.com/catedral-metropolitana-santiago-centro/', 'wp-google-maps');
3601
- __('Catedral Metropolitana, Santiago Centro', 'wp-google-maps');
3602
- __('https://thecitylane.com/the-street-market-of-lastarria-santiago/', 'wp-google-maps');
3603
- __('The Street Market Of Lastarria, Santiago', 'wp-google-maps');
3604
- __('https://thecitylane.com/neo-lemonade-docklands/', 'wp-google-maps');
3605
- __('Neo Lemonade, Docklands', 'wp-google-maps');
3606
- __('https://thecitylane.com/mansae-korean-bbq-melbourne-cbd/', 'wp-google-maps');
3607
- __('Mansae Korean BBQ, Melbourne', 'wp-google-maps');
3608
- __('https://thecitylane.com/tuantuan-chinese-brasserie-carlton/', 'wp-google-maps');
3609
- __('TuanTuan Chinese Brasserie, Carlton', 'wp-google-maps');
3610
- __('https://thecitylane.com/section-8-melbourne-cbd/', 'wp-google-maps');
3611
- __('Section 8, Melbourne', 'wp-google-maps');
3612
- __('https://thecitylane.com/campari-house-melbourne-cbd/', 'wp-google-maps');
3613
- __('Campari House, Melbourne', 'wp-google-maps');
3614
- __('https://thecitylane.com/chuckle-park-melbourne-cbd/', 'wp-google-maps');
3615
- __('Chuckle Park, Melbourne', 'wp-google-maps');
3616
- __('https://thecitylane.com/madame-brussels-melbourne-cbd/', 'wp-google-maps');
3617
- __('Madame Brussels, Melbourne', 'wp-google-maps');
3618
- __('https://thecitylane.com/heroes-karaoke-rooftop-bar-melbourne/', 'wp-google-maps');
3619
- __('Heroes Karaoke & Rooftop Bar, Melbourne', 'wp-google-maps');
3620
- __('https://thecitylane.com/uni-boom-boom-glen-waverley/', 'wp-google-maps');
3621
- __('Uni Boom Boom, Glen Waverley', 'wp-google-maps');
3622
- __('https://thecitylane.com/whitehart-melbourne-cbd/', 'wp-google-maps');
3623
- __('Whitehart, Melbourne', 'wp-google-maps');
3624
- __('https://thecitylane.com/pondok-rempah-melbourne-cbd/', 'wp-google-maps');
3625
- __('Pondok Rempah, Melbourne', 'wp-google-maps');
3626
- __('https://thecitylane.com/leonardos-pizza-palace-carlton/', 'wp-google-maps');
3627
- __('Leonardo\'s Pizza Palace, Carlton', 'wp-google-maps');
3628
- __('https://thecitylane.com/sibling-carlton-north/', 'wp-google-maps');
3629
- __('Sibling, Carlton North', 'wp-google-maps');
3630
- __('https://thecitylane.com/beatbox-kitchen-brunswick/', 'wp-google-maps');
3631
- __('Beatbox Kitchen, Brunswick', 'wp-google-maps');
3632
- __('https://thecitylane.com/dragon-hot-pot-melbourne-cbd/', 'wp-google-maps');
3633
- __('Dragon Hot Pot, Melbourne', 'wp-google-maps');
3634
- __('https://thecitylane.com/bicycle-thieves-northcote/', 'wp-google-maps');
3635
- __('Bicycle Thieves, Northcote', 'wp-google-maps');
3636
- __('https://thecitylane.com/the-hack-port-melbourne/', 'wp-google-maps');
3637
- __('The HACK, Port Melbourne', 'wp-google-maps');
3638
- __('https://thecitylane.com/lustre-bar-melbourne-cbd/', 'wp-google-maps');
3639
- __('Lustre Bar, Melbourne', 'wp-google-maps');
3640
- __('https://thecitylane.com/whisky-den-melbourne-cbd/', 'wp-google-maps');
3641
- __('Whisky Den, Melbourne', 'wp-google-maps');
3642
- __('https://thecitylane.com/chat-thai-haymarket/', 'wp-google-maps');
3643
- __('Chat Thai, Haymarket', 'wp-google-maps');
3644
- __('https://thecitylane.com/the-skinny-kitchen-islington/', 'wp-google-maps');
3645
- __('The Skinny Kitchen, Islington', 'wp-google-maps');
3646
- __('https://thecitylane.com/sunda-melbourne-cbd/', 'wp-google-maps');
3647
- __('Sunda, Melbourne', 'wp-google-maps');
3648
- __('https://thecitylane.com/lune-croissanterie-melbourne-cbd/', 'wp-google-maps');
3649
- __('Lune Croissanterie, Melbourne', 'wp-google-maps');
3650
- __('https://thecitylane.com/peaches-melbourne-cbd/', 'wp-google-maps');
3651
- __('Peaches, Melbourne', 'wp-google-maps');
3652
- __('https://thecitylane.com/bar-clara-melbourne-cbd/', 'wp-google-maps');
3653
- __('Bar Clara, Melbourne', 'wp-google-maps');
3654
- __('https://thecitylane.com/mama-rumaan-docklands/', 'wp-google-maps');
3655
- __('Mama Rumaan, Docklands', 'wp-google-maps');
3656
- __('https://thecitylane.com/jamu-richmond/', 'wp-google-maps');
3657
- __('JAMU, Richmond', 'wp-google-maps');
3658
- __('https://thecitylane.com/henry-sugar-carlton-north/', 'wp-google-maps');
3659
- __('Henry Sugar, Carlton North', 'wp-google-maps');
3660
- __('https://thecitylane.com/nerudas-brunswick/', 'wp-google-maps');
3661
- __('Neruda\'s, Brunswick', 'wp-google-maps');
3662
- __('https://thecitylane.com/dc-dumpling-specialist-box-hill/', 'wp-google-maps');
3663
- __('DC Dumpling Specialist, Box Hill', 'wp-google-maps');
3664
- __('https://thecitylane.com/high-society-cafe-armadale/', 'wp-google-maps');
3665
- __('High Society Cafe, Armadale', 'wp-google-maps');
3666
- __('https://thecitylane.com/the-rooftop-at-qt-melbourne-cbd/', 'wp-google-maps');
3667
- __('The Rooftop at QT, Melbourne', 'wp-google-maps');
3668
- __('https://thecitylane.com/au79-abbotsford/', 'wp-google-maps');
3669
- __('Au79, Abbotsford', 'wp-google-maps');
3670
- __('https://thecitylane.com/belles-hot-chicken-melbourne-cbd/', 'wp-google-maps');
3671
- __('Belle\'s Hot Chicken, Melbourne', 'wp-google-maps');
3672
- __('https://thecitylane.com/mook-ji-bar-melbourne-cbd/', 'wp-google-maps');
3673
- __('Mook Ji Bar, Melbourne', 'wp-google-maps');
3674
- __('https://thecitylane.com/hotel-esplanade-st-kilda/', 'wp-google-maps');
3675
- __('Hotel Esplanade, St Kilda', 'wp-google-maps');
3676
- __('https://thecitylane.com/freddie-wimpoles-st-kilda/', 'wp-google-maps');
3677
- __('Freddie Wimpoles, St Kilda', 'wp-google-maps');
3678
- __('https://thecitylane.com/tyranny-of-distance-windsor/', 'wp-google-maps');
3679
- __('Tyranny Of Distance, Windsor', 'wp-google-maps');
3680
- __('https://thecitylane.com/east-end-wine-bar-hawthorn-east/', 'wp-google-maps');
3681
- __('East End Wine Bar, Hawthorn East', 'wp-google-maps');
3682
- __('https://thecitylane.com/davids-malatang-melbourne-cbd/', 'wp-google-maps');
3683
- __('David\'s Malatang, Melbourne', 'wp-google-maps');
3684
- __('https://thecitylane.com/audacious-monk-cellars-preston/', 'wp-google-maps');
3685
- __('Audacious Monk Cellars, Preston', 'wp-google-maps');
3686
- __('https://thecitylane.com/flovie-florist-cafe-carlton/', 'wp-google-maps');
3687
- __('Flovie Florist Cafe, Carlton', 'wp-google-maps');
3688
- __('https://thecitylane.com/king-godfree-carlton/', 'wp-google-maps');
3689
- __('King & Godfree, Carlton', 'wp-google-maps');
3690
- __('https://thecitylane.com/future-mountain-brewing-and-blending-reservoir/', 'wp-google-maps');
3691
- __('Future Mountain Brewing And Blending, Reservoir', 'wp-google-maps');
3692
- __('https://thecitylane.com/stray-neighbour-preston/', 'wp-google-maps');
3693
- __('Stray Neighbour, Preston', 'wp-google-maps');
3694
- __('https://thecitylane.com/sun-kitchen-albert-park/', 'wp-google-maps');
3695
- __('Sun Kitchen, Albert Park', 'wp-google-maps');
3696
- __('https://thecitylane.com/enter-neighbour-camberwell/', 'wp-google-maps');
3697
- __('Enter Neighbour, Camberwell', 'wp-google-maps');
3698
- __('https://thecitylane.com/numnum-southwark/', 'wp-google-maps');
3699
- __('Numnum, Southwark', 'wp-google-maps');
3700
- __('https://thecitylane.com/hi-chong-qing-hi-cq-carlton/', 'wp-google-maps');
3701
- __('Hi Chong Qing (Hi CQ), Carlton', 'wp-google-maps');
3702
- __('https://thecitylane.com/m-yong-tofu-flemington/', 'wp-google-maps');
3703
- __('M Yong Tofu, Flemington', 'wp-google-maps');
3704
- __('https://thecitylane.com/maha-melbourne-cbd/', 'wp-google-maps');
3705
- __('Maha, Melbourne', 'wp-google-maps');
3706
- __('https://thecitylane.com/shinbashi-yakiniku-carlton/', 'wp-google-maps');
3707
- __('Shinbashi Yakiniku, Carlton', 'wp-google-maps');
3708
- __('https://thecitylane.com/ryne-fitzroy-north/', 'wp-google-maps');
3709
- __('Ryne, Fitzroy North', 'wp-google-maps');
3710
- __('https://thecitylane.com/natural-history-public-bar-melbourne-cbd/', 'wp-google-maps');
3711
- __('Natural History Public Bar, Melbourne', 'wp-google-maps');
3712
- __('https://thecitylane.com/il-caminetto-moonee-ponds/', 'wp-google-maps');
3713
- __('Il Caminetto, Moonee Ponds', 'wp-google-maps');
3714
- __('https://thecitylane.com/harvest-index-collingwood/', 'wp-google-maps');
3715
- __('Harvest Index, Collingwood', 'wp-google-maps');
3716
- __('https://thecitylane.com/sushi-boto-melbourne-cbd/', 'wp-google-maps');
3717
- __('Sushi Boto, Melbourne', 'wp-google-maps');
3718
- __('https://thecitylane.com/nong-tang-noodle-house-melbourne-cbd/', 'wp-google-maps');
3719
- __('Nong Tang Noodle House, Melbourne', 'wp-google-maps');
3720
- __('https://thecitylane.com/club-colombia-melbourne-cbd/', 'wp-google-maps');
3721
- __('Club Colombia, Melbourne', 'wp-google-maps');
3722
- __('https://thecitylane.com/dodee-paidang-melbourne-cbd/', 'wp-google-maps');
3723
- __('Dodee Paidang, Melbourne', 'wp-google-maps');
3724
- __('https://thecitylane.com/code-black-coffee-melbourne-cbd/', 'wp-google-maps');
3725
- __('Code Black Coffee, Melbourne', 'wp-google-maps');
3726
- __('https://thecitylane.com/21st-amendment-leederville/', 'wp-google-maps');
3727
- __('21st Amendment, Leederville', 'wp-google-maps');
3728
- __('https://thecitylane.com/wines-of-while-northbridge/', 'wp-google-maps');
3729
- __('Wines Of While, Northbridge', 'wp-google-maps');
3730
- __('https://thecitylane.com/tak-chee-house-northbridge/', 'wp-google-maps');
3731
- __('Tak Chee House, Northbridge', 'wp-google-maps');
3732
- __('https://thecitylane.com/il-dolce-freddo-carlton/', 'wp-google-maps');
3733
- __('Il Dolce Freddo, Carlton', 'wp-google-maps');
3734
- __('https://thecitylane.com/son-in-law-the-pad-melbourne-cbd/', 'wp-google-maps');
3735
- __('Son In Law - The Pad, Melbourne', 'wp-google-maps');
3736
- __('https://thecitylane.com/joomak-melbourne-cbd/', 'wp-google-maps');
3737
- __('Joomak, Melbourne', 'wp-google-maps');
3738
- __('https://thecitylane.com/noodle-house-by-lao-luangprabang-melbourne-cbd/', 'wp-google-maps');
3739
- __('Noodle House by Lao-Luangprabang, Melbourne', 'wp-google-maps');
3740
- __('https://thecitylane.com/bornga-melbourne-cbd/', 'wp-google-maps');
3741
- __('Bornga, Melbourne', 'wp-google-maps');
3742
- __('https://thecitylane.com/maker-monger-south-yarra/', 'wp-google-maps');
3743
- __('Maker & Monger, South Yarra', 'wp-google-maps');
3744
- __('https://thecitylane.com/restaurant-veltlinerstubli-davos/', 'wp-google-maps');
3745
- __('Restaurant Veltlinerstubli, Davos', 'wp-google-maps');
3746
- __('https://thecitylane.com/biervision-monstein-monstein/', 'wp-google-maps');
3747
- __('BierVision Monstein, Monstein', 'wp-google-maps');
3748
- __('https://thecitylane.com/konrad-family-farm-sertig/', 'wp-google-maps');
3749
- __('Konrad Family Farm, Sertig', 'wp-google-maps');
3750
- __('https://thecitylane.com/fleischzentrum-klosters-davos-klosters/', 'wp-google-maps');
3751
- __('Fleischzentrum Klosters Davos, Klosters', 'wp-google-maps');
3752
- __('https://thecitylane.com/schneiders-davos/', 'wp-google-maps');
3753
- __('Schneider\'s, Davos', 'wp-google-maps');
3754
- __('https://thecitylane.com/ish-fitzroy/', 'wp-google-maps');
3755
- __('ISH, Fitzroy', 'wp-google-maps');
3756
- __('https://thecitylane.com/miss-ruby-bentleigh/', 'wp-google-maps');
3757
- __('Miss Ruby, Bentleigh', 'wp-google-maps');
3758
- __('https://thecitylane.com/banquet-of-hoshena-shepherds-bush/', 'wp-google-maps');
3759
- __('Banquet of Hoshena, Shepherd\'s Bush', 'wp-google-maps');
3760
- __('https://thecitylane.com/metzgerei-schmid-st-gallen/', 'wp-google-maps');
3761
- __('Metzgerei Schmid, St Gallen', 'wp-google-maps');
3762
- __('https://thecitylane.com/brauerei-schutzengarten-st-gallen/', 'wp-google-maps');
3763
- __('Brauerei Schutzengarten, St Gallen', 'wp-google-maps');
3764
- __('https://thecitylane.com/haus-des-weins-berneck/', 'wp-google-maps');
3765
- __('Haus Des Weins, Berneck', 'wp-google-maps');
3766
- __('https://thecitylane.com/gaststuben-zum-schlossli-st-gallen/', 'wp-google-maps');
3767
- __('Gaststuben Zum Schlossli, St Gallen', 'wp-google-maps');
3768
- __('https://thecitylane.com/wochenmarkt-st-gallen/', 'wp-google-maps');
3769
- __('Wochenmarkt, St Gallen', 'wp-google-maps');
3770
- __('https://thecitylane.com/barista-st-gallen/', 'wp-google-maps');
3771
- __('Barista, St Gallen', 'wp-google-maps');
3772
- __('https://thecitylane.com/pietro-cappelli-st-gallen/', 'wp-google-maps');
3773
- __('Pietro Cappelli, St Gallen', 'wp-google-maps');
3774
- __('https://thecitylane.com/kaffeehaus-st-gallen/', 'wp-google-maps');
3775
- __('Kaffeehaus, St Gallen', 'wp-google-maps');
3776
- __('https://thecitylane.com/genussbackerei-lichtensteiger-st-gallen/', 'wp-google-maps');
3777
- __('Genussbackerei Lichtensteiger, St Gallen', 'wp-google-maps');
3778
- __('https://thecitylane.com/sud-bar-st-gallen/', 'wp-google-maps');
3779
- __('Sud Bar, St Gallen', 'wp-google-maps');
3780
- __('https://thecitylane.com/abbey-of-saint-gall-st-gallen/', 'wp-google-maps');
3781
- __('Abbey of Saint Gall, St Gallen', 'wp-google-maps');
3782
- __('https://thecitylane.com/praline-scherrer-st-gallen/', 'wp-google-maps');
3783
- __('Praline Scherrer, St Gallen', 'wp-google-maps');
3784
- __('https://thecitylane.com/xiao-jun-gan-hot-pot-melbourne-cbd/', 'wp-google-maps');
3785
- __('Xiao Jun Gan Hot Pot, Melbourne', 'wp-google-maps');
3786
- __('https://thecitylane.com/intercomestibles-der-laden-langstrasse/', 'wp-google-maps');
3787
- __('Intercomestibles, der Laden, Langstrasse', 'wp-google-maps');
3788
- __('https://thecitylane.com/haus-hiltl-altstadt/', 'wp-google-maps');
3789
- __('Haus Hiltl, Altstadt', 'wp-google-maps');
3790
- __('https://thecitylane.com/confiserie-sprungli-altstadt/', 'wp-google-maps');
3791
- __('Confiserie Sprungli, Altstadt', 'wp-google-maps');
3792
- __('https://thecitylane.com/eldorado-craft-beer-bar-industriequartier/', 'wp-google-maps');
3793
- __('Eldorado - Craft Beer Bar, Industriequartier', 'wp-google-maps');
3794
- __('https://thecitylane.com/frau-gerolds-garten-industriequartier/', 'wp-google-maps');
3795
- __('Frau Gerolds Garten, Industriequartier', 'wp-google-maps');
3796
- __('https://thecitylane.com/urbansurf-industriequartier/', 'wp-google-maps');
3797
- __('Urbansurf, Industriequartier', 'wp-google-maps');
3798
- __('https://thecitylane.com/museum-fur-gestaltung-industriequartier/', 'wp-google-maps');
3799
- __('Museum Fur Gestaltung, Industriequartier', 'wp-google-maps');
3800
- __('https://thecitylane.com/im-viadukt-ndustriequartier/', 'wp-google-maps');
3801
- __('Im Viadukt, Industriequartier', 'wp-google-maps');
3802
- __('https://thecitylane.com/river-limmat-unterstrass/', 'wp-google-maps');
3803
- __('River Limmat, Unterstrass', 'wp-google-maps');
3804
- __('https://thecitylane.com/milchbar-altstadt/', 'wp-google-maps');
3805
- __('Milchbar, Altstadt', 'wp-google-maps');
3806
- __('https://thecitylane.com/169-west-langstrasse/', 'wp-google-maps');
3807
- __('169 West, Langstrasse', 'wp-google-maps');
3808
- __('https://thecitylane.com/zeughauskeller-altstadt/', 'wp-google-maps');
3809
- __('Zeughauskeller, Altstadt', 'wp-google-maps');
3810
- __('https://thecitylane.com/cafe-henrici-altstadt/', 'wp-google-maps');
3811
- __('Cafe Henrici, Altstadt', 'wp-google-maps');
3812
- __('https://thecitylane.com/queen-vees-windsor/', 'wp-google-maps');
3813
- __('Queen Vee\'s, Windsor', 'wp-google-maps');
3814
- __('https://thecitylane.com/casa-n-o-m-prahran/', 'wp-google-maps');
3815
- __('Casa N.O.M, Prahran', 'wp-google-maps');
3816
- __('https://thecitylane.com/molly-rose-brewing-co-collingwood/', 'wp-google-maps');
3817
- __('Molly Rose Brewing Co., Collingwood', 'wp-google-maps');
3818
- __('https://thecitylane.com/little-brother-melbourne-cbd/', 'wp-google-maps');
3819
- __('Little Brother, Melbourne', 'wp-google-maps');
3820
- __('https://thecitylane.com/mr-ryu-balaclava/', 'wp-google-maps');
3821
- __('Mr Ryu, Balaclava', 'wp-google-maps');
3822
- __('https://thecitylane.com/salero-kito-padang-melbourne-cbd/', 'wp-google-maps');
3823
- __('Salero Kito Padang, Melbourne', 'wp-google-maps');
3824
- __('https://thecitylane.com/dari-korean-cafe-melbourne-cbd/', 'wp-google-maps');
3825
- __('Dari Korean Cafe, Melbourne', 'wp-google-maps');
3826
- __('https://thecitylane.com/city-spice-spitalfields/', 'wp-google-maps');
3827
- __('City Spice, Spitalfields', 'wp-google-maps');
3828
- __('https://thecitylane.com/theodores-brunswick/', 'wp-google-maps');
3829
- __('Theodore\'s, Brunswick', 'wp-google-maps');
3830
- __('https://thecitylane.com/piccolino-fitzroy-north/', 'wp-google-maps');
3831
- __('Piccolino, Fitzroy North', 'wp-google-maps');
3832
- __('https://thecitylane.com/masizzim-glen-waverley/', 'wp-google-maps');
3833
- __('Masizzim, Glen Waverley', 'wp-google-maps');
3834
- __('https://thecitylane.com/moon-dog-world-preston/', 'wp-google-maps');
3835
- __('Moon Dog World, Preston', 'wp-google-maps');
3836
- __('https://thecitylane.com/common-room-co-caulfield-north/', 'wp-google-maps');
3837
- __('Common Room Co, Caulfield North', 'wp-google-maps');
3838
- __('https://thecitylane.com/bar-margaux-melbourne-cbd/', 'wp-google-maps');
3839
- __('Bar Margaux, Melbourne', 'wp-google-maps');
3840
- __('https://thecitylane.com/shadow-wine-bar-northbridge/', 'wp-google-maps');
3841
- __('Shadow Wine Bar, Northbridge', 'wp-google-maps');
3842
- __('https://thecitylane.com/besk-west-leederville/', 'wp-google-maps');
3843
- __('Besk, West Leederville', 'wp-google-maps');
3844
- __('https://thecitylane.com/citrus-fitzroy-north/', 'wp-google-maps');
3845
- __('Citrus, Fitzroy North', 'wp-google-maps');
3846
- __('https://thecitylane.com/lesa-melbourne/', 'wp-google-maps');
3847
- __('Lesa, Melbourne', 'wp-google-maps');
3848
- __('https://thecitylane.com/bodriggy-brewing-company-abbotsford/', 'wp-google-maps');
3849
- __('Bodriggy Brewing Company, Abbotsford', 'wp-google-maps');
3850
- __('https://thecitylane.com/jan-chi-korean-feast-richmond/', 'wp-google-maps');
3851
- __('Jan Chi Korean Feast, Richmond', 'wp-google-maps');
3852
- __('https://thecitylane.com/kekou-richmond/', 'wp-google-maps');
3853
- __('Kekou, Richmond', 'wp-google-maps');
3854
- __('https://thecitylane.com/saxe-melbourne/', 'wp-google-maps');
3855
- __('Saxe, Melbourne', 'wp-google-maps');
3856
- __('https://thecitylane.com/ten-square-cafe-melbourne/', 'wp-google-maps');
3857
- __('Ten Square Cafe, Melbourne', 'wp-google-maps');
3858
- __('https://thecitylane.com/rice-kitchen-south-melbourne/', 'wp-google-maps');
3859
- __('Rice Kitchen, South Melbourne', 'wp-google-maps');
3860
- __('https://thecitylane.com/a1-canteen-chippendale/', 'wp-google-maps');
3861
- __('A1 Canteen, Chippendale', 'wp-google-maps');
3862
- __('https://thecitylane.com/restaurant-hubert-sydney-cbd/', 'wp-google-maps');
3863
- __('Restaurant Hubert, Sydney', 'wp-google-maps');
3864
- __('https://thecitylane.com/the-grounds-of-the-city-sydney', 'wp-google-maps');
3865
- __('The Grounds Of The City, Sydney', 'wp-google-maps');
3866
- __('https://thecitylane.com/bucket-boys-haymarket', 'wp-google-maps');
3867
- __('Bucket Boys, Haymarket', 'wp-google-maps');
3868
- __('https://thecitylane.com/butter-surry-hills', 'wp-google-maps');
3869
- __('Butter, Surry Hills', 'wp-google-maps');
3870
- __('Johannesburg, South Africa', 'wp-google-maps');
3871
- __('http://localhost/wp-content/uploads/2019/11/johannesburg-4322256_1920.jpg', 'wp-google-maps');
3872
- __('Johannesburg', 'wp-google-maps');
3873
- __('Perth WA, Australia', 'wp-google-maps');
3874
- __('Perth', 'wp-google-maps');
3875
- __('Brisbane QLD, Australia', 'wp-google-maps');
3876
- __('Brisbane', 'wp-google-maps');
3877
- __('3565 20th St, San Francisco, CA 94110', 'wp-google-maps');
3878
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-9+ </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong><em>:man:_:boy:</em></strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em> </em>:wine_glass:<em>Wine bar / </em><b><em>Neighborhood:</em></b><em> </em>Mission</em> </p>', 'wp-google-maps');
3879
- __('https://metrogems.com/wp-content/uploads/2019/05/20Spot_FB_@20spot_1-1024x682.jpg', 'wp-google-maps');
3880
- __('https://metrogems.com/bars/20-spot/', 'wp-google-maps');
3881
- __('https://metrogems.com/wp-content/uploads/2019/09/5d786ab1dbf9e5.59124974-1.png', 'wp-google-maps');
3882
- __('20 Spot', 'wp-google-maps');
3883
- __('250 4th St, San Francisco, CA 94103', 'wp-google-maps');
3884
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-8 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em> </em>:wine_glass:<em>Wine bar / </em><b><em>Neighborhood:</em></b><em> </em>Nob Hill</em> </p>', 'wp-google-maps');
3885
- __('https://metrogems.com/wp-content/uploads/2019/05/Amelie_FB_@AmelieWineBar_1-731x1024.jpg', 'wp-google-maps');
3886
- __('https://metrogems.com/bars/amelie/', 'wp-google-maps');
3887
- __('Amelie', 'wp-google-maps');
3888
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> <img class=\"wp-image-1105\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/7x7-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-9+ </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong><em>:man:_:boy:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em> </em>:cityscape:<em>Rooftop / </em><b><em>Neighborhood:</em></b><em> </em>Soma</em> </p>', 'wp-google-maps');
3889
- __('https://metrogems.com/wp-content/uploads/2019/05/Everdene_FB_@everdenesf_1-1024x390.jpg', 'wp-google-maps');
3890
- __('https://metrogems.com/bars/everdene/', 'wp-google-maps');
3891
- __('Everdene', 'wp-google-maps');
3892
- __('842 Valencia St, San Francisco, CA 94110', 'wp-google-maps');
3893
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"><strong><em> </em></strong><img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-9+ </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong><em>:man:_:man:_:boy:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em> </em>:cocktail:<em>Cocktail bar / </em><b><em>Neighborhood:</em></b><em> </em>Mission</em> </p>', 'wp-google-maps');
3894
- __('https://metrogems.com/wp-content/uploads/2019/06/Beehive_Instagram_@thebeehivesf_1-1024x1014.jpg', 'wp-google-maps');
3895
- __('https://metrogems.com/bars/beehive/', 'wp-google-maps');
3896
- __('The Beehive', 'wp-google-maps');
3897
- __('20 Yerba Buena Ln, San Francisco, CA 94103', 'wp-google-maps');
3898
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-9+ </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong><em>:man:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong><em> </em>:wine_glass:<em>Wine bar / </em><b><em>Neighborhood:</em></b><em> Union square </em> </p>', 'wp-google-maps');
3899
- __('https://metrogems.com/wp-content/uploads/2019/05/PressRoom_Ownphotos_1-768x1024.jpg', 'wp-google-maps');
3900
- __('https://metrogems.com/bars/press-club/', 'wp-google-maps');
3901
- __('Press Club', 'wp-google-maps');
3902
- __('1625 Post St, San Francisco, CA 94115', 'wp-google-maps');
3903
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-9+ </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong><em>:man:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong><em> </em>:cocktail:<em>Cocktail bar / </em><b><em>Neighborhood:</em></b><em> Japan town</em> </p>', 'wp-google-maps');
3904
- __('https://metrogems.com/wp-content/uploads/2019/05/HotelKabuki_Instagram_@hotelkabuki_1-826x1024.jpg', 'wp-google-maps');
3905
- __('https://metrogems.com/bars/bar-hotel-kabuki/', 'wp-google-maps');
3906
- __('Bar at Hotel Kabuki', 'wp-google-maps');
3907
- __('2020 Fillmore St, San Francisco, CA 94115', 'wp-google-maps');
3908
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1119\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/SF-Travel-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-8 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong><em>:man:_:man:_:boy:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong><em> </em>:football:<em>Sports bar / </em><b><em>Neighborhood:</em></b><em> Japan town </em></p>', 'wp-google-maps');
3909
- __('https://metrogems.com/wp-content/uploads/2019/05/HarrysBar_Facebook_Harrys-Bar_1-1024x769.jpg', 'wp-google-maps');
3910
- __('https://metrogems.com/bars/harrys-bar/', 'wp-google-maps');
3911
- __('Harrys Bar', 'wp-google-maps');
3912
- __('458 Grove St, San Francisco, CA 94102', 'wp-google-maps');
3913
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <em>/ </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong><em> </em>:wine_glass:<em>Wine Bar / </em><b><em>Neighborhood:</em></b><em> Hayes Valley </em></p>', 'wp-google-maps');
3914
- __('https://metrogems.com/wp-content/uploads/2019/05/Hotel-Biron_Facebook_@HotelBiron_1-768x1024.jpg', 'wp-google-maps');
3915
- __('https://metrogems.com/bars/hotel-biron/', 'wp-google-maps');
3916
- __('Hotel Biron', 'wp-google-maps');
3917
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1105\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/7x7-Site-Icon.jpg\" alt=\"\"><em> / </em><strong><em>Party size: </em></strong><em>1-8 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong><em> </em>:wine_glass:<em>Wine Bar / </em><b><em>Neighborhood:</em></b><em> Hayes Valley </em></p>', 'wp-google-maps');
3918
- __('https://metrogems.com/wp-content/uploads/2019/05/BirbaWine_Instagram_@birbawinebar_1-1024x1012.jpg', 'wp-google-maps');
3919
- __('https://metrogems.com/bars/birba/', 'wp-google-maps');
3920
- __('Birba', 'wp-google-maps');
3921
- __('313 Ivy St, San Francisco, CA 94102', 'wp-google-maps');
3922
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"><strong><em> </em></strong><img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"><em> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong><em> </em>:wine_glass:<em>Wine Bar / </em><b><em>Neighborhood:</em></b><em> Hayes Valley </em></p>', 'wp-google-maps');
3923
- __('https://metrogems.com/wp-content/uploads/2019/05/Fig-Thistle_Ownphoto_1-768x1024.jpg', 'wp-google-maps');
3924
- __('https://metrogems.com/bars/fig-and-thistle/', 'wp-google-maps');
3925
- __('Fig & Thistle', 'wp-google-maps');
3926
- __('406 Hayes St, San Francisco, CA 94102', 'wp-google-maps');
3927
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-8 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong><em>:football:Sports Bar / </em><b><em>Neighborhood:</em></b><em> Hayes Valley </em></p>', 'wp-google-maps');
3928
- __('https://metrogems.com/wp-content/uploads/2019/05/DobbsBar_Ownphoto_1-768x1024.jpg', 'wp-google-maps');
3929
- __('https://metrogems.com/bars/zekis-bar-copy/', 'wp-google-maps');
3930
- __('Dobbs Bar', 'wp-google-maps');
3931
- __('1319 California St, San Francisco, CA 94109, USA', 'wp-google-maps');
3932
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong> <img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/<strong> <em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /<strong> Crowd level: </strong>Low key </em><strong>:man:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker::speaker::speaker:<em> </em> <em>/ <strong>Type of bar: </strong></em>:cocktail:Cocktail bar <em> / <b>Neighborhood:</b></em> <em>Nob Hill</em></p>', 'wp-google-maps');
3933
- __('https://metrogems.com/wp-content/uploads/2019/05/ZekesBar_Website_1.jpg', 'wp-google-maps');
3934
- __('https://metrogems.com/bars/zekis-bar/', 'wp-google-maps');
3935
- __('Zekis Bar', 'wp-google-maps');
3936
- __('3121 16th St, San Francisco, CA 94103, USA', 'wp-google-maps');
3937
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / <strong><em>Party size: </em></strong>1-5<strong> :bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Low key </em><strong>:man:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker:<em> / <strong>Type of bar: </strong></em>:cocktail:<em>Cocktail bar</em> <em>/ <strong>Neighborhood:</strong></em> <em>Mission </em></p>', 'wp-google-maps');
3938
- __('https://metrogems.com/wp-content/uploads/2019/05/Hideout_Website_1.jpg', 'wp-google-maps');
3939
- __('https://metrogems.com/bars/hideout-at-dalva/', 'wp-google-maps');
3940
- __('Hideout at Dalva', 'wp-google-maps');
3941
- __('1148 Mission St, San Francisco, CA 94103, USA', 'wp-google-maps');
3942
- __('<!-- wp:paragraph --> <p><em><strong>Recommended by:</strong></em> <img class=\"wp-image-1105\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/7x7-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> /<em> </em><strong><em>Party size: </em></strong><em>1-5</em><strong> :bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Low key </em><strong>:man:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker:<em> / <strong>Type of bar: </strong></em>:beer:<em>Beer bar</em> <em>/ <strong>Neighborhood:</strong></em> <em>Soma </em></p>', 'wp-google-maps');
3943
- __('https://metrogems.com/wp-content/uploads/2019/05/CityBeerStore_Instagram_@citybeerstore_1.jpg', 'wp-google-maps');
3944
- __('https://metrogems.com/bars/city-beer-store/', 'wp-google-maps');
3945
- __('City Beer Store', 'wp-google-maps');
3946
- __('3286 22nd St, San Francisco, CA 94110, USA', 'wp-google-maps');
3947
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong> <img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / <strong><em>Party size: </em></strong><em>1-8</em><strong><em> </em>:bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker::speaker:<em> / <strong>Type of bar: </strong></em>:cocktail:<em>Cocktail bar / <b>Neighborhood:</b> Mission</em></p>', 'wp-google-maps');
3948
- __('https://metrogems.com/wp-content/uploads/2019/05/LatinAmericanClub_Facebook_@LatinAmericanClub_1.jpg', 'wp-google-maps');
3949
- __('https://metrogems.com/bars/latin-american-club/', 'wp-google-maps');
3950
- __('Latin American Club', 'wp-google-maps');
3951
- __('3349 20th St, San Francisco, CA 94110, USA', 'wp-google-maps');
3952
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ <strong><em>Party size:</em></strong><em> 1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Low key </em><strong>:man:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker:<em> / <strong>Type of bar: </strong></em>:8ball:<em>Dive bar / <b>Neighborhood:</b> Mission</em></p>', 'wp-google-maps');
3953
- __('https://metrogems.com/wp-content/uploads/2019/05/Shotwells_Facebook_ShotwellsBar_1.jpg', 'wp-google-maps');
3954
- __('https://metrogems.com/bars/shotwells-beer-saloon/', 'wp-google-maps');
3955
- __('Shotwells', 'wp-google-maps');
3956
- __('246 Kearny St, San Francisco, CA 94108 USA', 'wp-google-maps');
3957
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / <strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /<strong> </strong></em><strong><em>Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:tumbler_glass:<em>Whiskey bar / </em><b><em>Neighborhood:</em></b><em> Financial district </em></p>', 'wp-google-maps');
3958
- __('https://metrogems.com/wp-content/uploads/2019/05/RickHouse_Instagram_@rickhousebar_1.jpg', 'wp-google-maps');
3959
- __('https://metrogems.com/bars/rickhouse/', 'wp-google-maps');
3960
- __('Rickhouse', 'wp-google-maps');
3961
- __('1 Yerba Buena Ln, San Francisco, CA 94103 USA', 'wp-google-maps');
3962
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cityscape:<em>Rooftop / </em><strong><em>Neighborhood:</em></strong><em> Soma </em></p>', 'wp-google-maps');
3963
- __('https://metrogems.com/wp-content/uploads/2019/05/BluestemBrasserie_Instagram_@bluestemsf_1.jpg', 'wp-google-maps');
3964
- __('https://metrogems.com/bars/bluestem-brasserie/', 'wp-google-maps');
3965
- __('Bluestem Brasserie', 'wp-google-maps');
3966
- __('25 Lusk St, San Francisco, CA 94107 USA', 'wp-google-maps');
3967
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cityscape:<em>Rooftop / </em><strong><em>Neighborhood:</em></strong><em> Soma </em></p>', 'wp-google-maps');
3968
- __('https://metrogems.com/wp-content/uploads/2019/05/Rooftop25_Facebook_@TwentyFiveLusk_1.jpg', 'wp-google-maps');
3969
- __('https://metrogems.com/bars/rooftop-25/', 'wp-google-maps');
3970
- __('Rooftop 25', 'wp-google-maps');
3971
- __('45 McAllister St, San Francisco, CA 94102 USA', 'wp-google-maps');
3972
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cityscape:<em>Rooftop / </em><strong><em>Neighborhood:</em></strong><em> Tenderloin </em></p>', 'wp-google-maps');
3973
- __('https://metrogems.com/wp-content/uploads/2019/05/Charmaines_Website_1-731x1024.jpg', 'wp-google-maps');
3974
- __('https://metrogems.com/bars/charmaines/', 'wp-google-maps');
3975
- __('Charmaines', 'wp-google-maps');
3976
- __('1504, 450 Powell St, San Francisco, CA 94102 USA', 'wp-google-maps');
3977
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<strong><em> </em></strong><em>/ </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><strong><em>Neighborhood:</em></strong><em> Nob Hill </em></p>', 'wp-google-maps');
3978
- __('https://metrogems.com/wp-content/uploads/2019/05/StarlightRoom_Instagram_@starlightroomsf_1.jpg', 'wp-google-maps');
3979
- __('https://metrogems.com/bars/starlight-room/', 'wp-google-maps');
3980
- __('Starlight Room', 'wp-google-maps');
3981
- __('701 Haight St, San Francisco, CA 94117 USA', 'wp-google-maps');
3982
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1115\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Bayarea.com-Site-Icon.png\" alt=\"\"> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:beer:<em>Beer bar / </em><strong><em>Neighborhood: </em></strong><em>Lower haight </em></p>', 'wp-google-maps');
3983
- __('https://metrogems.com/wp-content/uploads/2019/05/BlackSandsBeer_Instagram_@blacksandsbeer_1.jpg', 'wp-google-maps');
3984
- __('https://metrogems.com/bars/black-sands/', 'wp-google-maps');
3985
- __('Black Sands Brewery', 'wp-google-maps');
3986
- __('1723 Polk St, San Francisco, CA 94109 USA', 'wp-google-maps');
3987
- __('<!-- wp:paragraph --> <p><strong>Recommended by: </strong><img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ <strong>Party size: 1-5 :bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Low key </em><strong>:man:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker:<em> / <strong>Type of bar: </strong></em>:8ball:<em>Dive bar / <b>Neighborhood:</b> Nob Hill</em></p>', 'wp-google-maps');
3988
- __('https://metrogems.com/wp-content/uploads/2019/05/TheCinchSaloon_Instagram_@thecinchsaloon-_1.jpg', 'wp-google-maps');
3989
- __('https://metrogems.com/bars/cinch-saloon/', 'wp-google-maps');
3990
- __('Cinch Saloon', 'wp-google-maps');
3991
- __('718 14th St, San Francisco, CA 94114 USA', 'wp-google-maps');
3992
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-8 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:tropical_drink:<em>Tiki Bar / </em><b><em>Neighborhood:</em></b><em> Lower haight </em></p>', 'wp-google-maps');
3993
- __('https://metrogems.com/wp-content/uploads/2019/05/LastRites_Instagram_@lastrites_sf_1.jpg', 'wp-google-maps');
3994
- __('https://metrogems.com/bars/last-rites/', 'wp-google-maps');
3995
- __('Last Rites', 'wp-google-maps');
3996
- __('544 Bryant St, San Francisco, CA 94107 USA', 'wp-google-maps');
3997
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1119\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/SF-Travel-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:beer:<em>Beer bar/ </em><strong><em>Neighborhood: </em></strong><em>Soma</em></p>', 'wp-google-maps');
3998
- __('https://metrogems.com/wp-content/uploads/2019/05/BlackHammerBrewing_Instagram_@blackhammerbrewing-_2.jpg', 'wp-google-maps');
3999
- __('https://metrogems.com/bars/black-hammer-brewing/', 'wp-google-maps');
4000
- __('Black Hammer Brewing', 'wp-google-maps');
4001
- __('1725 Haight St, San Francisco, CA 94117 USA', 'wp-google-maps');
4002
- __('<!-- wp:paragraph --> <p><strong>Recommended by:</strong> <img class=\"wp-image-1121\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Liquor.com-Site-icon.png\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / <strong>Party size: </strong><em>1-8 </em>:bust_in_silhouette:<em> /<strong> Crowd level: </strong>Low key</em> <strong>:man:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker:<em>/ <strong>Type of bar: </strong></em>:tumbler_glass:<em>Whiskey bar / <b>Neighborhood:</b> </em> <em>Haight - Ashbury </em></p>', 'wp-google-maps');
4003
- __('https://metrogems.com/wp-content/uploads/2019/05/TheAlembic_Instagram_@alembicsf-_1.jpg', 'wp-google-maps');
4004
- __('https://metrogems.com/bars/the-alembic/', 'wp-google-maps');
4005
- __('The Alembic', 'wp-google-maps');
4006
- __('12 4th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4007
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1121\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Liquor.com-Site-icon.png\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+ </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> :speaker:/ </em><strong><em>Type of bar: </em></strong>:tumbler_glass:<em>Whiskey bar / </em><b><em>Neighborhood:</em></b><em> Soma</em></p>', 'wp-google-maps');
4008
- __('https://metrogems.com/wp-content/uploads/2019/05/DirtyHabit_Website_1.jpg', 'wp-google-maps');
4009
- __('https://metrogems.com/bars/dirty-habit/', 'wp-google-maps');
4010
- __('Dirty Habit', 'wp-google-maps');
4011
- __('401 6th St, San Francisco, CA 94103, USA', 'wp-google-maps');
4012
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<strong><em> </em></strong><em>/ </em><strong><em>Type of bar: </em></strong>:control_knobs:<em>Dance club / </em><strong><em>Neighborhood:</em></strong><em> Soma </em></p>', 'wp-google-maps');
4013
- __('https://metrogems.com/wp-content/uploads/2019/05/TheEndUp_website-_2-1024x560.jpg', 'wp-google-maps');
4014
- __('https://metrogems.com/bars/the-endup/', 'wp-google-maps');
4015
- __('The EndUp', 'wp-google-maps');
4016
- __('316 11th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4017
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<strong><em> </em></strong><em>/ </em><strong><em>Type of bar: </em></strong>:control_knobs:<em>Dance club / </em><strong><em>Neighborhood:</em></strong><em> Soma </em></p>', 'wp-google-maps');
4018
- __('https://metrogems.com/wp-content/uploads/2019/05/Audio_Website_1.jpg', 'wp-google-maps');
4019
- __('https://metrogems.com/bars/audio-nightclub/', 'wp-google-maps');
4020
- __('Audio Nightclub', 'wp-google-maps');
4021
- __('1914 Irving St, San Francisco, CA 94122 USA', 'wp-google-maps');
4022
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Sunset </em></p>', 'wp-google-maps');
4023
- __('https://metrogems.com/wp-content/uploads/2019/05/SilverSpur_Facebook_@SilverSpur_1.jpg', 'wp-google-maps');
4024
- __('https://metrogems.com/bars/the-silver-spur/', 'wp-google-maps');
4025
- __('The Silver Spur', 'wp-google-maps');
4026
- __('916 Grant Ave, San Francisco, CA 94108 USA', 'wp-google-maps');
4027
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Financial district </em></p>', 'wp-google-maps');
4028
- __('https://metrogems.com/wp-content/uploads/2019/05/LiPoLounge_Facebook_@LiPoLounge_1.jpg', 'wp-google-maps');
4029
- __('https://metrogems.com/bars/li-po-lounge/', 'wp-google-maps');
4030
- __('Li Po Lounge', 'wp-google-maps');
4031
- __('620 Jones St, San Francisco, CA 94102 USA', 'wp-google-maps');
4032
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cityscape:<em>Rooftop / </em><strong><em>Neighborhood:</em></strong><em> Nob Hill </em></p>', 'wp-google-maps');
4033
- __('https://metrogems.com/wp-content/uploads/2019/05/Jones_Website-_1-1024x651.jpg', 'wp-google-maps');
4034
- __('https://metrogems.com/bars/jones/', 'wp-google-maps');
4035
- __('Jones', 'wp-google-maps');
4036
- __('2516 Mission St, San Francisco, CA 94110 USA', 'wp-google-maps');
4037
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cityscape:<em>Rooftop / </em><strong><em>Neighborhood:</em></strong><em> Mission </em></p>', 'wp-google-maps');
4038
- __('https://metrogems.com/wp-content/uploads/2019/05/ElTecho_Facebook_@ElTechoSF_1.jpg', 'wp-google-maps');
4039
- __('https://metrogems.com/bars/el-techo/', 'wp-google-maps');
4040
- __('El Techo', 'wp-google-maps');
4041
- __('691 Market St, San Francisco, CA 94105 USA', 'wp-google-maps');
4042
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><strong><em>Neighborhood:</em></strong><em> Union square </em></p>', 'wp-google-maps');
4043
- __('https://metrogems.com/wp-content/uploads/2019/05/LocalEdition_Instagram_@localeditionsf-_1.jpg', 'wp-google-maps');
4044
- __('https://metrogems.com/bars/local-edition/', 'wp-google-maps');
4045
- __('Local Edition', 'wp-google-maps');
4046
- __('375 Bush St, San Francisco, CA 94104 USA', 'wp-google-maps');
4047
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1127\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/CNTraveler-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-8 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:tropical_drink:<em>Tiki Bar / </em><b><em>Neighborhood:</em></b><em> Financial district </em></p>', 'wp-google-maps');
4048
- __('https://metrogems.com/wp-content/uploads/2019/05/PaganIdol_Instagram_@paganidolsf-_1-1.jpg', 'wp-google-maps');
4049
- __('https://metrogems.com/bars/pagan-idol/', 'wp-google-maps');
4050
- __('Pagan Idol', 'wp-google-maps');
4051
- __('298 Divisadero St, San Francisco, CA 94117 USA', 'wp-google-maps');
4052
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: 1-8 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Lower haight </em></p>', 'wp-google-maps');
4053
- __('https://metrogems.com/wp-content/uploads/2019/05/ThePage_Facebook_@pagebar_1.jpg', 'wp-google-maps');
4054
- __('https://metrogems.com/bars/the-page/', 'wp-google-maps');
4055
- __('The Page', 'wp-google-maps');
4056
- __('801 Bush St, San Francisco, CA 94108', 'wp-google-maps');
4057
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Nob Hill </em></p>', 'wp-google-maps');
4058
- __('https://metrogems.com/wp-content/uploads/2019/05/TheSummerPlace_Instagram_@chet_thornton-_2.jpg', 'wp-google-maps');
4059
- __('https://metrogems.com/bars/summer-place/', 'wp-google-maps');
4060
- __('Summer Place', 'wp-google-maps');
4061
- __('1779 Folsom St, San Francisco, CA 94103', 'wp-google-maps');
4062
- __('<!-- wp:paragraph --> <p><strong>Recommended by:</strong> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / <strong>Party size: </strong><em>1-9+ </em>:bust_in_silhouette:<em> /<strong> Crowd level: </strong></em>Low key <strong>:man:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker:<em> </em> <em>/ <strong>Type of bar: </strong></em>:tumbler_glass:<em>Whiskey bar / <b>Neighborhood:</b> Mission</em></p>', 'wp-google-maps');
4063
- __('https://metrogems.com/wp-content/uploads/2019/05/NihonWhiskyLounge_Instagram_@nihonwhiskylounge_1.jpg', 'wp-google-maps');
4064
- __('https://metrogems.com/bars/nihon-whisky-lounge/', 'wp-google-maps');
4065
- __('Nihon Whisky Lounge', 'wp-google-maps');
4066
- __('83 1st St, San Francisco, CA 94105', 'wp-google-maps');
4067
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong><em>:tumbler_glass:Whiskey bar / </em><b><em>Neighborhood:</em></b><em> Soma</em></p>', 'wp-google-maps');
4068
- __('https://metrogems.com/wp-content/uploads/2019/05/83Proof_Instagram_@83proof-_1.jpg', 'wp-google-maps');
4069
- __('https://metrogems.com/bars/83-proof/', 'wp-google-maps');
4070
- __('83 Proof', 'wp-google-maps');
4071
- __('1190 Folsom St, San Francisco, CA 94103', 'wp-google-maps');
4072
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<strong><em> </em></strong><em>/ </em><strong><em>Type of bar: </em></strong>:control_knobs:_<em>Dance club / </em><strong><em>Neighborhood:</em></strong><em> Soma </em></p>', 'wp-google-maps');
4073
- __('https://metrogems.com/wp-content/uploads/2019/05/CatClub_Instagram_@sfcatclubofficial-_1.jpg', 'wp-google-maps');
4074
- __('https://metrogems.com/bars/cat-club/', 'wp-google-maps');
4075
- __('Cat Club', 'wp-google-maps');
4076
- __('101 6th St, San Francisco, CA 94103', 'wp-google-maps');
4077
- __('<!-- wp:paragraph --> <p><strong>Recommended by: </strong><img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"><strong> </strong>/ <strong>Party size: 1-9+ :bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Packed :man:_:man:_:boy:_:boy: / <strong>Noise level:</strong> :speaker::speaker::speaker:<strong> </strong>/ <strong>Type of bar: </strong></em>:control_knobs:_<em>Dance club / <strong>Neighborhood:</strong> </em>Soma</em> </p>', 'wp-google-maps');
4078
- __('https://metrogems.com/wp-content/uploads/2019/05/Monarch_Instagram_@monarchsf-_1.jpg', 'wp-google-maps');
4079
- __('https://metrogems.com/bars/monarch/', 'wp-google-maps');
4080
- __('Monarch', 'wp-google-maps');
4081
- __('2 Beach St, San Francisco, CA 94133 USA', 'wp-google-maps');
4082
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:tropical_drink:<em>Tiki Bar / </em><b><em>Neighborhood:</em></b><em> North beach </em></p>', 'wp-google-maps');
4083
- __('https://metrogems.com/wp-content/uploads/2019/05/LuauLounge_Facebook_@playerssf_2.jpg', 'wp-google-maps');
4084
- __('https://metrogems.com/bars/luau-lounge-at-players-sports-bar/', 'wp-google-maps');
4085
- __('Luau Lounge at Players Sports Bar', 'wp-google-maps');
4086
- __('34 Mason St, San Francisco, CA 94102 USA', 'wp-google-maps');
4087
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-8</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:beer:<em>Beer Bar / </em><strong><em>Neighborhood: </em></strong><em>Tenderloin </em></p>', 'wp-google-maps');
4088
- __('https://metrogems.com/wp-content/uploads/2019/05/MikkellerBar_Facebook_@MikkellerBarSanFrancisco_2.jpg', 'wp-google-maps');
4089
- __('https://metrogems.com/bars/mikkeller-bar/', 'wp-google-maps');
4090
- __('Mikkeller Bar', 'wp-google-maps');
4091
- __('3600 Taraval St, San Francisco, CA 94116 USA', 'wp-google-maps');
4092
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: </em></strong><em>1-9 + :bust_in_silhouette: /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong><em>:man:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> :speaker: / </em><strong><em>Type of bar: </em></strong>:football:<em>Sports Bar / </em><b><em>Neighborhood:</em></b><em> Sunset </em></p>', 'wp-google-maps');
4093
- __('https://metrogems.com/wp-content/uploads/2019/05/UnderdogsToo_Facebook_@UnderdogsToo_1.jpg', 'wp-google-maps');
4094
- __('https://metrogems.com/bars/underdogs-too/', 'wp-google-maps');
4095
- __('Underdogs Too', 'wp-google-maps');
4096
- __('770 Stanyan St, San Francisco, CA 94117 USA', 'wp-google-maps');
4097
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1131\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/10-Best-Site-Icon.jpeg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9 + </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:football:<em>Sports Bar / </em><b><em>Neighborhood:</em></b><em> Haight - Ashbury </em></p>', 'wp-google-maps');
4098
- __('https://metrogems.com/wp-content/uploads/2019/05/KezarPub_Facebook_@KezarPub_1.jpg', 'wp-google-maps');
4099
- __('https://metrogems.com/bars/kezar-pub/', 'wp-google-maps');
4100
- __('Kezar Pub', 'wp-google-maps');
4101
- __('2328 Irving St, San Francisco, CA 94122 USA', 'wp-google-maps');
4102
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low Key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar:</em></strong><em> </em>:four_leaf_clover:<em>Irish pub </em><strong><em> </em></strong><em>/ </em><strong><em>Neighborhood: </em></strong><em>Sunset</em></p>', 'wp-google-maps');
4103
- __('https://metrogems.com/wp-content/uploads/2019/05/DurtyNellys_Facebook_@DurtyNellysSanFransisco_1.jpg', 'wp-google-maps');
4104
- __('https://metrogems.com/bars/durty-nellys/', 'wp-google-maps');
4105
- __('Durty Nellys', 'wp-google-maps');
4106
- __('600 Polk St, San Francisco, CA 94102 USA', 'wp-google-maps');
4107
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><strong><em>Neighborhood:</em></strong><em> Tenderloin</em></p>', 'wp-google-maps');
4108
- __('https://metrogems.com/wp-content/uploads/2019/05/Whitechapel_Instagram_@whitechapelsf_1.jpg', 'wp-google-maps');
4109
- __('https://metrogems.com/bars/whitechapel/', 'wp-google-maps');
4110
- __('Whitechapel', 'wp-google-maps');
4111
- __('155 Columbus Ave, San Francisco, CA 94133 USA', 'wp-google-maps');
4112
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><strong><em>Neighborhood: </em></strong><em>Financial district </em></p>', 'wp-google-maps');
4113
- __('https://metrogems.com/wp-content/uploads/2019/05/ComstockSaloon_Twitter_@ComstockSaloon_1-823x1024.jpg', 'wp-google-maps');
4114
- __('https://metrogems.com/bars/comstock-saloon/', 'wp-google-maps');
4115
- __('Comstock Saloon', 'wp-google-maps');
4116
- __('3141 16th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4117
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:beer:<em>Beer Bar / </em><strong><em>Neighborhood: </em></strong><em>Mission </em></p>', 'wp-google-maps');
4118
- __('https://metrogems.com/wp-content/uploads/2019/05/Monkskettle_Instagram_@monkskettle-_1.jpg', 'wp-google-maps');
4119
- __('https://metrogems.com/bars/the-monks-kettle/', 'wp-google-maps');
4120
- __('The Monks Kettle', 'wp-google-maps');
4121
- __('547 Haight St, San Francisco, CA 94117 USA', 'wp-google-maps');
4122
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:beer:<em>Beer Bar / </em><strong><em>Neighborhood: </em></strong><em>Lower haight </em></p>', 'wp-google-maps');
4123
- __('https://metrogems.com/wp-content/uploads/2019/05/Toronado_Instagram_@toronado_3-768x1024.jpg', 'wp-google-maps');
4124
- __('https://metrogems.com/bars/toronado/', 'wp-google-maps');
4125
- __('Toronado', 'wp-google-maps');
4126
- __('Ferry Building San Francisco, CA 94111 USA', 'wp-google-maps');
4127
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:beer:<em>Beer bar / </em><strong><em>Neighborhood: </em></strong><em>Financial district </em></p>', 'wp-google-maps');
4128
- __('https://metrogems.com/wp-content/uploads/2019/05/FortPointBeerCompany_Instagram_@fortpointbeer_1.jpg', 'wp-google-maps');
4129
- __('https://metrogems.com/bars/fort-point-beer-company/', 'wp-google-maps');
4130
- __('Fort Point Beer Company', 'wp-google-maps');
4131
- __('4701 Geary Blvd, San Francisco, CA 94118 USA', 'wp-google-maps');
4132
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Richmond district </em></p>', 'wp-google-maps');
4133
- __('https://metrogems.com/wp-content/uploads/2019/05/The-Hearth_Facebook_@The-Hearth_1.jpg', 'wp-google-maps');
4134
- __('https://metrogems.com/bars/hearth/', 'wp-google-maps');
4135
- __('Hearth', 'wp-google-maps');
4136
- __('1401 Valencia St, San Francisco, CA 94110 USA', 'wp-google-maps');
4137
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Mission </em></p>', 'wp-google-maps');
4138
- __('https://metrogems.com/wp-content/uploads/2019/05/ClooneysPub_Facebook_@ClooneysPub_1.jpg', 'wp-google-maps');
4139
- __('https://metrogems.com/bars/clooneys-pub/', 'wp-google-maps');
4140
- __('Clooneys Pub', 'wp-google-maps');
4141
- __('500 Guerrero St, San Francisco, CA 94110 USA', 'wp-google-maps');
4142
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: </em></strong><em>1-5</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Mission </em></p>', 'wp-google-maps');
4143
- __('https://metrogems.com/wp-content/uploads/2019/05/500Clubs_Instagram_@500clubsf-_1.jpg', 'wp-google-maps');
4144
- __('https://metrogems.com/bars/the-500-club/', 'wp-google-maps');
4145
- __('The 500 Club', 'wp-google-maps');
4146
- __('3386 19th St, San Francisco, CA 94110 USA', 'wp-google-maps');
4147
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"><strong><em> </em></strong><img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> / <strong><em>Party size: </em></strong><em>1-5</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<strong><em> </em></strong><em>/ </em><strong><em>Type of bar: </em></strong>:control_knobs:_<em>Dance club / </em><strong><em>Neighborhood:</em></strong><em> Mission </em></p>', 'wp-google-maps');
4148
- __('https://metrogems.com/wp-content/uploads/2019/05/BissapBaobab_Instagram_@bissapbaobab-_1.jpg', 'wp-google-maps');
4149
- __('https://metrogems.com/bars/bissap-baobab/', 'wp-google-maps');
4150
- __('Bissap Baobab', 'wp-google-maps');
4151
- __('3192 16th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4152
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-8 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<strong><em> </em></strong><em>/ </em><strong><em>Type of bar: </em></strong>:control_knobs:_<em>Dance club / </em><strong><em>Neighborhood:</em></strong><em> Mission</em></p>', 'wp-google-maps');
4153
- __('https://metrogems.com/wp-content/uploads/2019/05/DoubleDutch_Instagram_@doubledutchsf-_1.jpg', 'wp-google-maps');
4154
- __('https://metrogems.com/bars/double-dutch/', 'wp-google-maps');
4155
- __('Double Dutch', 'wp-google-maps');
4156
- __('3200 16th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4157
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1121\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Liquor.com-Site-icon.png\" alt=\"\"> <img class=\"wp-image-1135\" style=\"width: 40px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Whisky_Advocate_Logo@2x.png\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 :bust_in_silhouette: /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong><em>:man:_:boy:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:tumbler_glass:<em>Whiskey bar / </em><b><em>Neighborhood:</em></b><em> Mission </em></p>', 'wp-google-maps');
4158
- __('https://metrogems.com/wp-content/uploads/2019/05/Elixir_Instagram_@elixirsf-_1.jpg', 'wp-google-maps');
4159
- __('https://metrogems.com/bars/elixir/', 'wp-google-maps');
4160
- __('Elixir', 'wp-google-maps');
4161
- __('6150 Geary Blvd, San Francisco, CA 94121 USA', 'wp-google-maps');
4162
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:tropical_drink:<em>Tiki Bar / </em><b><em>Neighborhood:</em></b><em> Richmond district </em></p>', 'wp-google-maps');
4163
- __('https://metrogems.com/wp-content/uploads/2019/05/TradrSam_Facebook_@tradrsam_1.jpg', 'wp-google-maps');
4164
- __('https://metrogems.com/bars/tradr-sam/', 'wp-google-maps');
4165
- __('Tradr Sam', 'wp-google-maps');
4166
- __('479 Broadway, San Francisco, CA 94133 USA', 'wp-google-maps');
4167
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em>:tropical_drink:Tiki Bar / </em><b><em>Neighborhood:</em></b><em> Financial district </em></p>', 'wp-google-maps');
4168
- __('https://metrogems.com/wp-content/uploads/2019/05/BambooHut_Instagram_@bamboohutsfca_1.jpg', 'wp-google-maps');
4169
- __('https://metrogems.com/bars/bamboo-hut/', 'wp-google-maps');
4170
- __('Bamboo Hut', 'wp-google-maps');
4171
- __('734 Irving St, San Francisco, CA 94122 USA', 'wp-google-maps');
4172
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1131\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/10-Best-Site-Icon.jpeg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: </em></strong><em>1-8 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:football:<em>Sports Bar / </em><b><em>Neighborhood:</em></b><em> Sunset </em></p>', 'wp-google-maps');
4173
- __('https://metrogems.com/wp-content/uploads/2019/05/YancysSaloon_Facebook_@YancysSaloon_1.jpg', 'wp-google-maps');
4174
- __('https://metrogems.com/bars/yancys-saloon/', 'wp-google-maps');
4175
- __('Yancys Saloon', 'wp-google-maps');
4176
- __('530 Haight St, San Francisco, CA 94117 USA', 'wp-google-maps');
4177
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1131\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/10-Best-Site-Icon.jpeg\" alt=\"\"> <img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9 + </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong><em> </em>:football:<em>Sports Bar / </em><b><em>Neighborhood:</em></b><em> Lower haight </em></p>', 'wp-google-maps');
4178
- __('https://metrogems.com/wp-content/uploads/2019/05/MadDogInTheFog_Facebook_@maddoginthefogsf_1.jpg', 'wp-google-maps');
4179
- __('https://metrogems.com/bars/mad-dog-in-the-fog/', 'wp-google-maps');
4180
- __('Mad Dog in the Fog', 'wp-google-maps');
4181
- __('807 Lincoln Way, San Francisco, CA 94122 USA', 'wp-google-maps');
4182
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar:</em></strong> :four_leaf_clover:<em> Irish pub </em><strong><em> </em></strong><em>/ </em><strong><em>Neighborhood: </em></strong><em>Sunset</em></p>', 'wp-google-maps');
4183
- __('https://metrogems.com/wp-content/uploads/2019/05/TheLittleShamrock_Instagram_@thelittleshamrocksf-_2.jpg', 'wp-google-maps');
4184
- __('https://metrogems.com/bars/little-shamrock/', 'wp-google-maps');
4185
- __('Little Shamrock', 'wp-google-maps');
4186
- __('10 Mark Ln, San Francisco, CA 94108 USA', 'wp-google-maps');
4187
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar:</em></strong><em> </em>:four_leaf_clover:<em>Irish pub </em><strong><em> </em></strong><em>/ </em><strong><em>Neighborhood: </em></strong><em>Financial district </em></p>', 'wp-google-maps');
4188
- __('https://metrogems.com/wp-content/uploads/2019/05/TheIrishBank_Instagram_@irishbank_1.jpg', 'wp-google-maps');
4189
- __('https://metrogems.com/bars/the-irish-bank/', 'wp-google-maps');
4190
- __('The Irish Bank', 'wp-google-maps');
4191
- __('355 11th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4192
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9 + :bust_in_silhouette: /</em><strong><em> Crowd level: </em></strong><em>Low key</em><strong><em> :man:_:boy:</em></strong><em>/ </em><strong><em>Noise level:</em></strong><em> :speaker:/ </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><b><em>Neighborhood: </em></b><em>Soma</em></p>', 'wp-google-maps');
4193
- __('https://metrogems.com/wp-content/uploads/2019/05/BarAgricole_Instagram_@baragricole_1.jpg', 'wp-google-maps');
4194
- __('https://metrogems.com/bars/bar-agricole/', 'wp-google-maps');
4195
- __('Bar Agricole', 'wp-google-maps');
4196
- __('3174 16th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4197
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9 + </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><b><em>Neighborhood: </em></b><em>Mission</em></p>', 'wp-google-maps');
4198
- __('https://metrogems.com/wp-content/uploads/2019/05/Abv_Instagram_@abvsf-_1.jpg', 'wp-google-maps');
4199
- __('https://metrogems.com/bars/abv/', 'wp-google-maps');
4200
- __('ABV', 'wp-google-maps');
4201
- __('661 Howard St, San Francisco, CA 94105 USA', 'wp-google-maps');
4202
- __('<!-- wp:paragraph --> <p><em><strong>Recommended by:</strong> <img class=\"wp-image-1105\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/7x7-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1115\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Bayarea.com-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: 1-9+ :bust_in_silhouette:</em></strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong><em>:man:_:man:_:boy:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> :speaker::speaker::speaker: / </em><strong><em>Type of bar: </em></strong>:beer:<em>Brewery / </em><strong><em>Neighborhood: </em></strong><em>Soma</em></p>', 'wp-google-maps');
4203
- __('https://metrogems.com/wp-content/uploads/2019/05/ThirstyBear_Instagram_@thirstybearbrew-_1.jpg', 'wp-google-maps');
4204
- __('https://metrogems.com/bars/thirsty-bear/', 'wp-google-maps');
4205
- __('Thirsty Bear', 'wp-google-maps');
4206
- __('2417 Mission St, San Francisco, CA 94110 USA', 'wp-google-maps');
4207
- __('<!-- wp:paragraph --> <p><strong>Recommended by: </strong><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ <strong>Party size: 1-5 :bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Medium </em><strong><em>:man:_:boy:_:boy:</em></strong><em> / <strong>Noise level:</strong> :speaker:/ <strong>Type of bar: </strong></em>:8ball:<em>Dive bar / <b>Neighborhood:</b> Mission</em> </p>', 'wp-google-maps');
4208
- __('https://metrogems.com/wp-content/uploads/2019/05/DocsClock_Instagram_@docsclock-_1.jpg', 'wp-google-maps');
4209
- __('https://metrogems.com/bars/docs-clock/', 'wp-google-maps');
4210
- __('Docs Clock', 'wp-google-maps');
4211
- __('582 Haight St, San Francisco, CA 94117 USA', 'wp-google-maps');
4212
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-8 :bust_in_silhouette:</em></strong><em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong><em>:man:_:boy:</em></strong><em> / </em><strong><em>Noise level:</em></strong><em> :speaker::speaker::speaker:/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Lower Haight </em></p>', 'wp-google-maps');
4213
- __('https://metrogems.com/wp-content/uploads/2019/05/Molotovs_Instagram_@sfmolotovs_2.jpg', 'wp-google-maps');
4214
- __('https://metrogems.com/bars/molotovs/', 'wp-google-maps');
4215
- __('Molotovs', 'wp-google-maps');
4216
- __('1942 Market St, San Francisco, CA 94102 USA', 'wp-google-maps');
4217
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:microphone:<em>Karaoke / </em><b><em>Neighborhood:</em></b><em> Lower haight </em></p>', 'wp-google-maps');
4218
- __('https://metrogems.com/wp-content/uploads/2019/05/TheMint_Instagram_@themintkaraokelounge_2.jpg', 'wp-google-maps');
4219
- __('https://metrogems.com/bars/the-mint/', 'wp-google-maps');
4220
- __('The Mint', 'wp-google-maps');
4221
- __('1511 Haight St, San Francisco, CA 94117 USA', 'wp-google-maps');
4222
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong><em> <img class=\"wp-image-1136\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Matador-Network-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:ticket:<em>Live music / </em><strong><em>Neighborhood: </em></strong><em>Haight - Ashbury </em></p>', 'wp-google-maps');
4223
- __('https://metrogems.com/wp-content/uploads/2019/05/ClubDeluxe_Facebook_@ClubDeluxeSF_2.jpg', 'wp-google-maps');
4224
- __('https://metrogems.com/bars/club-deluxe/', 'wp-google-maps');
4225
- __('Club Deluxe', 'wp-google-maps');
4226
- __('628 Divisadero St, San Francisco, CA 94117 USA', 'wp-google-maps');
4227
- __('<!-- wp:paragraph --> <p><em><strong>Recommended by:</strong> <img class=\"wp-image-1136\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Matador-Network-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:ticket:<em>Live music / </em><strong><em>Neighborhood: </em></strong><em>Lower haight </em></p>', 'wp-google-maps');
4228
- __('https://metrogems.com/wp-content/uploads/2019/05/TheIndependent_Instagram_@theindependentsf_1.jpg', 'wp-google-maps');
4229
- __('https://metrogems.com/bars/the-independent/', 'wp-google-maps');
4230
- __('The Independent', 'wp-google-maps');
4231
- __('650 Gough Street, San Francisco, CA USA', 'wp-google-maps');
4232
- __('<!-- wp:paragraph --> <p><em><strong>Recommended by: </strong><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:tropical_drink:<em>Tiki Bar / </em><b><em>Neighborhood:</em></b><em> Hayes valley </em></p>', 'wp-google-maps');
4233
- __('https://metrogems.com/wp-content/uploads/2019/05/SmugglersCove_Instagram_@smugglerscovesf-_1.jpg', 'wp-google-maps');
4234
- __('https://metrogems.com/bars/smugglers-cove/', 'wp-google-maps');
4235
- __('Smugglers Cove', 'wp-google-maps');
4236
- __('950 Mason St, San Francisco, CA 94108 USA', 'wp-google-maps');
4237
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9 + </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em>:tropical_drink:Tiki Bar / </em><b><em>Neighborhood:</em></b><em> Nob hill </em></p>', 'wp-google-maps');
4238
- __('https://metrogems.com/wp-content/uploads/2019/05/TongaRoomHurricaneBar_Instagram_@tongaroom_2.jpg', 'wp-google-maps');
4239
- __('https://metrogems.com/bars/tonga-room-hurricane-bar/', 'wp-google-maps');
4240
- __('Tonga Room & Hurricane Bar', 'wp-google-maps');
4241
- __('449 Powell St, San Francisco, CA 94108 USA', 'wp-google-maps');
4242
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9 + </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:football:<em>Sports Bar / </em><b><em>Neighborhood:</em></b><em> Union Square</em></p>', 'wp-google-maps');
4243
- __('https://metrogems.com/wp-content/uploads/2019/05/GoldenGateTapRoom_Facebook_@GoldenGateTapRoom_2.jpg', 'wp-google-maps');
4244
- __('https://metrogems.com/bars/golden-gate-tap-room/', 'wp-google-maps');
4245
- __('Golden Gate Tap Room', 'wp-google-maps');
4246
- __('1600 Powell St San Francisco, CA 94133 USA', 'wp-google-maps');
4247
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1116\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/The-Infatuation-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:football:<em>Sports Bar / </em><b><em>Neighborhood:</em></b><em> North Beach</em></p>', 'wp-google-maps');
4248
- __('https://metrogems.com/wp-content/uploads/2019/05/TheBoardroom_Instagram_@boardroomsf_1.jpg', 'wp-google-maps');
4249
- __('https://metrogems.com/bars/distillery-no-209-copy/', 'wp-google-maps');
4250
- __('The Boardroom', 'wp-google-maps');
4251
- __('530 Jackson St, San Francisco, CA 94133 USA', 'wp-google-maps');
4252
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar:</em></strong><em> </em>:four_leaf_clover:<em>Irish pub </em><strong><em> </em></strong><em>/ </em><strong><em>Neighborhood: </em></strong><em>North Beach</em></p>', 'wp-google-maps');
4253
- __('https://metrogems.com/wp-content/uploads/2019/05/KellsIrishPub_Facebook_@Kells415_1.jpg', 'wp-google-maps');
4254
- __('https://metrogems.com/bars/kells-irish-restaurant-pub/', 'wp-google-maps');
4255
- __('Kells Irish Restaurant & Pub', 'wp-google-maps');
4256
- __('811 Valencia St, San Francisco, CA 94110 USA', 'wp-google-maps');
4257
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar:</em></strong><em> </em>:four_leaf_clover:<em>Irish pub </em><strong><em> </em></strong><em>/ </em><strong><em>Neighborhood: </em></strong><em>Mission</em></p>', 'wp-google-maps');
4258
- __('https://metrogems.com/wp-content/uploads/2019/05/PhoenixIrishPub_Instagram_@phoenixirishpub_1.jpg', 'wp-google-maps');
4259
- __('https://metrogems.com/bars/phoenix-irish-bar/', 'wp-google-maps');
4260
- __('Phoenix Irish Bar', 'wp-google-maps');
4261
- __('100 Hooper St, San Francisco, CA 94107 USA', 'wp-google-maps');
4262
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1115\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Bayarea.com-Site-Icon.png\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9 + </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em> / </em><strong><em>Type of bar: </em></strong>:beer:<em>Distillery, Brewery / </em><b><em>Neighborhood:</em></b><em> Soma </em></p>', 'wp-google-maps');
4263
- __('https://metrogems.com/wp-content/uploads/2019/05/SevenStills_Instagram_@sevenstills_1.jpg', 'wp-google-maps');
4264
- __('https://metrogems.com/bars/seven-stills/', 'wp-google-maps');
4265
- __('Seven Stills', 'wp-google-maps');
4266
- __('580 Sutter St, San Francisco, CA 94108 USA', 'wp-google-maps');
4267
- __('<!-- wp:paragraph --> <p><em><strong>Recommended by: </strong><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em><strong>:man:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><b><em>Neighborhood:</em></b><em> Union square </em></p>', 'wp-google-maps');
4268
- __('https://metrogems.com/wp-content/uploads/2019/05/PacificCocktailHeaven_Facebook_@PCHSF-_1.jpg', 'wp-google-maps');
4269
- __('https://metrogems.com/bars/pacific-cocktail-haven/', 'wp-google-maps');
4270
- __('Pacific Cocktail Haven', 'wp-google-maps');
4271
- __('3010 20th Street San Francisco, CA 94110 USA', 'wp-google-maps');
4272
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><b><em>Neighborhood: </em></b><em>Mission</em></p>', 'wp-google-maps');
4273
- __('https://metrogems.com/wp-content/uploads/2019/05/TrickDog_Instagram_@trickdogbar_1.jpg', 'wp-google-maps');
4274
- __('https://metrogems.com/bars/trick-dog/', 'wp-google-maps');
4275
- __('Trick Dog', 'wp-google-maps');
4276
- __('1398 Haight St, San Francisco, CA 94117 USA', 'wp-google-maps');
4277
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1115\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Bayarea.com-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:beer:<em>Brewery / </em><strong><em>Neighborhood: </em></strong><em>Haight - Ashbury </em></p>', 'wp-google-maps');
4278
- __('http://metrogems.com/wp-content/uploads/2019/05/MagnoliaBrewingCo_Instagram_@magnoliabrewing-_1.jpg', 'wp-google-maps');
4279
- __('https://metrogems.com/bars/magnolia-brewing/', 'wp-google-maps');
4280
- __('Magnolia Brewing Co.', 'wp-google-maps');
4281
- __('563 2nd St, San Francisco, CA 94107 USA', 'wp-google-maps');
4282
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1111\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/TripSavvy-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1115\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Bayarea.com-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em> </em>:beer:<em>Brewery / </em><strong><em>Neighborhood: </em></strong><em>Soma</em></p>', 'wp-google-maps');
4283
- __('http://metrogems.com/wp-content/uploads/2019/05/21stAmendment_Instagram_@21stamendment-_2.jpg', 'wp-google-maps');
4284
- __('https://metrogems.com/bars/21st-amendment-brewery/', 'wp-google-maps');
4285
- __('21st Amendment Brewery', 'wp-google-maps');
4286
- __('431 Natoma St, San Francisco, CA 94103 USA', 'wp-google-maps');
4287
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Soma </em></p>', 'wp-google-maps');
4288
- __('http://metrogems.com/wp-content/uploads/2019/05/TempestBarandBox_Instagram_@tempestbarandbox_1.jpg', 'wp-google-maps');
4289
- __('https://metrogems.com/bars/tempest-bar/', 'wp-google-maps');
4290
- __('Tempest Bar', 'wp-google-maps');
4291
- __('133 Turk St, San Francisco, CA 94102 USA', 'wp-google-maps');
4292
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: 1-8 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> Tenderloin</em> </p>', 'wp-google-maps');
4293
- __('http://metrogems.com/wp-content/uploads/2019/05/AuntCharlesLoungue_Instagram_@lalalorentz-_3.jpg', 'wp-google-maps');
4294
- __('https://metrogems.com/bars/aunt-charlies-lounge/', 'wp-google-maps');
4295
- __('Aunt Charlies Lounge', 'wp-google-maps');
4296
- __('50 Mason St, San Francisco, CA 94102 USA', 'wp-google-maps');
4297
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>6-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:microphone:<em>Karaoke / </em><b><em>Neighborhood:</em></b><em> Tenderloin </em></p>', 'wp-google-maps');
4298
- __('http://metrogems.com/wp-content/uploads/2019/05/PandoraKaraokebar_Instagram_@pandorakaraoke-_1.jpg', 'wp-google-maps');
4299
- __('https://metrogems.com/bars/pandora-karaoke-bar/', 'wp-google-maps');
4300
- __('Pandora Karaoke & Bar', 'wp-google-maps');
4301
- __('1825A Post St, Ste 210, San Francisco, CA 94115 USA', 'wp-google-maps');
4302
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: </em></strong><em>6-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:microphone:<em>Karaoke / </em><b><em>Neighborhood:</em></b><em> Japan town </em></p>', 'wp-google-maps');
4303
- __('http://metrogems.com/wp-content/uploads/2019/05/Festa_Googlemap_@Jeff-Hinchman-_1.jpg', 'wp-google-maps');
4304
- __('https://metrogems.com/bars/festa/', 'wp-google-maps');
4305
- __('Festa', 'wp-google-maps');
4306
- __('777 Valencia St, San Francisco, CA 94110 USA', 'wp-google-maps');
4307
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1136\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Matador-Network-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:ticket:<em>Live music / </em><strong><em>Neighborhood: </em></strong><em>Mission</em></p>', 'wp-google-maps');
4308
- __('http://metrogems.com/wp-content/uploads/2019/05/TheChapel_website-_2.jpg', 'wp-google-maps');
4309
- __('https://metrogems.com/bars/the-chapel/', 'wp-google-maps');
4310
- __('The Chapel', 'wp-google-maps');
4311
- __('155 Fell St, San Francisco, CA 94102 USA', 'wp-google-maps');
4312
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1136\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Matador-Network-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em><strong>:man:_:man:_:boy:_:boy:</strong><em>/ </em><strong><em>Noise level:</em></strong> :speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:ticket:<em>Live music / </em><strong><em>Neighborhood: </em></strong><em>Hayes valley </em></p>', 'wp-google-maps');
4313
- __('http://metrogems.com/wp-content/uploads/2019/05/TheRickshawStop_Instagram_@jchewphotos_2.jpg', 'wp-google-maps');
4314
- __('https://metrogems.com/bars/the-rickshaw-stop/', 'wp-google-maps');
4315
- __('The Rickshaw Stop', 'wp-google-maps');
4316
- __('3248 22nd Street, San Francisco, CA 94110 USA', 'wp-google-maps');
4317
- __('<!-- wp:paragraph --> <p><strong>Recommended by: </strong><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1136\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Matador-Network-Site-Icon.jpg\" alt=\"\"> / <strong>Party size: 1-5 :bust_in_silhouette:</strong><em> /<strong> Crowd level: </strong>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / <strong>Noise level:</strong> </em>:speaker::speaker::speaker:<em>/ <strong>Type of bar: </strong>Live Music / <strong>Neighborhood: </strong></em>Mission</p>', 'wp-google-maps');
4318
- __('http://metrogems.com/wp-content/uploads/2019/05/TheRevolution_facebook_TheRevolutionCafe.jpg', 'wp-google-maps');
4319
- __('https://metrogems.com/bars/revolution-cafe/', 'wp-google-maps');
4320
- __('Revolution Cafe', 'wp-google-maps');
4321
- __('2016, 620 Treat Ave, San Francisco, CA 94110 USA', 'wp-google-maps');
4322
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\"><img class=\"wp-image-1119\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/SF-Travel-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong><em>Beer bar / </em><strong><em>Neighborhood: </em></strong><em>Mission</em></p>', 'wp-google-maps');
4323
- __('http://metrogems.com/wp-content/uploads/2019/05/SouthernPacificBrewing_Instagram_@sopacbrewing_1-1024x1018.jpeg', 'wp-google-maps');
4324
- __('https://metrogems.com/bars/southern-pacific-brewing/', 'wp-google-maps');
4325
- __('Southern Pacific Brewing', 'wp-google-maps');
4326
- __('1805 Geary Blvd, San Francisco, CA 94115 USA', 'wp-google-maps');
4327
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1136\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Matador-Network-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:ticket:<em>Live music / </em><strong><em>Neighborhood: </em></strong><em>Japan town</em></p>', 'wp-google-maps');
4328
- __('https://metrogems.com/wp-content/uploads/2019/03/The-FIllmore_Instagram_@thefillmore_2.jpeg', 'wp-google-maps');
4329
- __('https://metrogems.com/bars/the-fillmore/', 'wp-google-maps');
4330
- __('The Fillmore', 'wp-google-maps');
4331
- __('1705 Buchanan St, San Francisco, CA 94115 USA', 'wp-google-maps');
4332
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: </em></strong><em>6-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:microphone:<em>Karaoke / </em><b><em>Neighborhood:</em></b><em> Japan town </em></p>', 'wp-google-maps');
4333
- __('https://metrogems.com/wp-content/uploads/2019/03/Playground_FB_Playground_1-1024x683.jpg', 'wp-google-maps');
4334
- __('https://metrogems.com/bars/playground/', 'wp-google-maps');
4335
- __('Playground', 'wp-google-maps');
4336
- __('375 11th St, San Francisco, CA 94103 USA', 'wp-google-maps');
4337
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> </em><strong><em>Party size: 1-9+ </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Packed </em>:man:_:man:_:boy:_:boy:<em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<strong><em> </em></strong><em>/ </em><strong><em>Type of bar: </em></strong>:control_knobs:_<em>Dance club / </em><strong><em>Neighborhood:</em></strong><em> Soma</em></p>', 'wp-google-maps');
4338
- __('https://metrogems.com/wp-content/uploads/2019/03/DNA-Lounge_Instagram_@iamgeoofficial.jpeg', 'wp-google-maps');
4339
- __('https://metrogems.com/bars/dna-lounge/', 'wp-google-maps');
4340
- __('DNA Lounge', 'wp-google-maps');
4341
- __('1232 Grant Ave, San Francisco, CA 94133 USA', 'wp-google-maps');
4342
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"><img class=\"wp-image-1097\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Eater-Site-Icon.png\" alt=\"\">/ </em><strong><em>Party size: 1-5 </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:8ball:<em>Dive bar / </em><b><em>Neighborhood:</em></b><em> North beach</em></p>', 'wp-google-maps');
4343
- __('https://metrogems.com/wp-content/uploads/2019/03/The-Saloon_Website_TheSaloon_1.jpg', 'wp-google-maps');
4344
- __('https://metrogems.com/bars/the-saloon/', 'wp-google-maps');
4345
- __('The Saloon', 'wp-google-maps');
4346
- __('424 Octavia St, San Francisco, CA 94102 USA', 'wp-google-maps');
4347
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1113\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/05/Zagat-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1-9+</em><strong><em> </em>:bust_in_silhouette:</strong><em> /</em><strong><em> Crowd level: </em></strong><em>Medium </em><strong>:man:_:boy:_:boy:</strong><em> / </em><strong><em>Noise level:</em></strong><em> </em>:speaker::speaker::speaker:<em> / </em><strong><em>Type of bar: </em></strong>:beer:<em>Beer garden / </em><strong><em>Neighborhood: </em></strong><em>Hayes valley</em></p>', 'wp-google-maps');
4348
- __('https://metrogems.com/wp-content/uploads/2019/03/Biergarten_Instagram_@beergartensf_3.jpeg', 'wp-google-maps');
4349
- __('https://metrogems.com/bars/biergarten/', 'wp-google-maps');
4350
- __('Biergarten', 'wp-google-maps');
4351
- __('398 Geary St, San Francisco, CA 94102 USA', 'wp-google-maps');
4352
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><em><img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> / </em><strong><em>Party size: </em></strong><em>1 to 5 </em>:bust_in_silhouette:<em> /</em><strong><em> Crowd level: </em></strong><em>Low key </em>:man:_:boy:<em>/ </em><strong><em>Noise level:</em></strong><em> </em>:speaker:<em>/ </em><strong><em>Type of bar: </em></strong>:cocktail:<em>Cocktail bar / </em><b><em>Neighborhood: </em></b><em>Union square</em></p>', 'wp-google-maps');
4353
- __('https://metrogems.com/wp-content/uploads/2019/03/Benjamin-Cooper_Instagram_@benjamincoopersf_2.jpeg', 'wp-google-maps');
4354
- __('https://metrogems.com/bars/benjamin-cooper/', 'wp-google-maps');
4355
- __('Benjamin Cooper', 'wp-google-maps');
4356
- __('199 Valencia St, San Francisco, CA 94103 USA', 'wp-google-maps');
4357
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by: </em></strong><img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1093\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Culture-Trip-Site-Icon.jpg\" alt=\"\"> / <strong><em>Party size:</em> </strong><em>1 to 9+ :bust_in_silhouette: /<strong> Crowd level: </strong>Medium </em><strong><em>:man:_:boy:_:boy:</em></strong><em>/ <strong>Noise level:</strong> :speaker::speaker::speaker: / <strong>Type of bar: </strong>Beer bar / <strong>Neighborhood:</strong> Lower haight</em></p>', 'wp-google-maps');
4358
- __('https://metrogems.com/wp-content/uploads/2019/03/Zeitgeist_Instagram_@zeitgeist_sf_3.jpeg', 'wp-google-maps');
4359
- __('https://metrogems.com/bars/zeitgeist-sf/', 'wp-google-maps');
4360
- __('Zeitgeist SF', 'wp-google-maps');
4361
- __('292 Linden St, San Francisco, CA 94102 USA', 'wp-google-maps');
4362
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong> <img class=\"wp-image-1089\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFist-Site-Icon-1.jpg\" alt=\"\"> <img class=\"wp-image-1088\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/TimeOut-Site-Icon-1.jpg\" alt=\"\"> / <strong>Party size: </strong><em>1 to 2 :bust_in_silhouette: /<strong> Crowd level: </strong>Low key :man:_:boy:/ <strong>Noise level:</strong> :speaker: / <strong>Type of bar: </strong>Cocktail bar / <strong>Neighborhood: </strong>Hayes valley</em></p>', 'wp-google-maps');
4363
- __('https://metrogems.com/wp-content/uploads/2019/03/Linden-Room_Instagram_@thelindenroom_3.jpeg', 'wp-google-maps');
4364
- __('https://metrogems.com/bars/linden-room/', 'wp-google-maps');
4365
- __('Linden Room', 'wp-google-maps');
4366
- __('501 Jones St, San Fransisco, CA 94102 USA', 'wp-google-maps');
4367
- __('<!-- wp:paragraph --> <p><strong><em>Recommended by:</em></strong> <img class=\"wp-image-1091\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/Thrillist-Site-Icon.jpg\" alt=\"\"> <img class=\"wp-image-1084\" style=\"width: 15px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFChronicle-Site-Icon-e1558802243810.jpg\" alt=\"\"><img class=\"wp-image-1092\" style=\"width: 20px;\" src=\"https://metrogems.com/wp-content/uploads/2019/03/SFChronicle-Site-Icon.jpg\" alt=\"\"> /<em> </em><strong><em>Party size: </em></strong><em>1 to 5 :bust_in_silhouette: /<strong> Crowd level: </strong>Medium :man:_:boy:_:boy: / <strong>Noise level:</strong> :speaker: / <strong>Type of bar: </strong>Cocktail bar / <b>Neighborhood: </b>Tenderloin</em></p>', 'wp-google-maps');
4368
- __('https://metrogems.com/wp-content/uploads/2019/03/Bourbon-Branch_Instagram_@bourbonandbranchsf_3.jpeg', 'wp-google-maps');
4369
- __('https://metrogems.com/bars/bourbon-branch/', 'wp-google-maps');
4370
- __('Bourbon & Branch', 'wp-google-maps');
4371
- __('Bristol, UK', 'wp-google-maps');
4372
- __('https://metrogems.com/wp-content/uploads/2019/09/Map-Icon-Blue-2-e1568852266525.png', 'wp-google-maps');
4373
- __('Beijing Railway Station', 'wp-google-maps');
4374
- __('Beijing West', 'wp-google-maps');
4375
- __('Nanjing Railway Station', 'wp-google-maps');
4376
- __('Shanghai Railway Station', 'wp-google-maps');
4377
- __('Xiamen North Railway Station', 'wp-google-maps');
4378
- __('Guangzhou South', 'wp-google-maps');
4379
- __('&#x6210;&#x90FD;&#x4E1C;', 'wp-google-maps');
4380
- __('&#x957F;&#x6C99;&#x5357;', 'wp-google-maps');
4381
- __('Chengdu Railway Station', 'wp-google-maps');
4382
- __('Chongqing Railway Station', 'wp-google-maps');
4383
- __('Banwell, UK', 'wp-google-maps');
4384
- __('Salisbury, UK', 'wp-google-maps');
4385
- __('Glastonbury, UK', 'wp-google-maps');
4386
- __('Berrow, Burnham-on-Sea, UK', 'wp-google-maps');
4387
- __('Porlock, Minehead, UK', 'wp-google-maps');
4388
- __('Swindon, UK', 'wp-google-maps');
4389
- __('Bristol, TN, USA', 'wp-google-maps');
4390
- __('Tempovej 35, Ballerup, Danmark', 'wp-google-maps');
4391
- __('Ballerup Gokart Center', 'wp-google-maps');
4392
- __('Darupvej 19, Roskilde, Danmark', 'wp-google-maps');
4393
- __('www.bombebrian.dk', 'wp-google-maps');
4394
- __('Bombebrian', 'wp-google-maps');
4395
- __('Bistrupvej 194, Birker&oslash;d, Danmark', 'wp-google-maps');
4396
- __('Byens Krudttelt Birker&oslash;d/Farum', 'wp-google-maps');
4397
- __('Egevangen 4, Kokkedal, Danmark', 'wp-google-maps');
4398
- __('Byens Krudttelt Kokkedal', 'wp-google-maps');
4399
- __('Korsdalsvej 100, R&oslash;dovre, Danmark', 'wp-google-maps');
4400
- __('Byens Krudttelt R&oslash;dovre', 'wp-google-maps');
4401
- __('Industrivej 78, 7080 B&oslash;rkop, Danmark', 'wp-google-maps');
4402
- __('B&oslash;rkop festfyrv&aelig;rkeri', 'wp-google-maps');
4403
- __('Trappehavevej 1, Svendborg, Danmark', 'wp-google-maps');
4404
- __('DAMGAARDEN I TVED', 'wp-google-maps');
4405
- __('Hylholtvej 53, Asaa, Danmark', 'wp-google-maps');
4406
- __('http://www.danishfireworks.dk', 'wp-google-maps');
4407
- __('Danish fireworks APS', 'wp-google-maps');
4408
- __('Bachersmindevej 8-10, Drag&oslash;r, Danmark', 'wp-google-maps');
4409
- __('Drag&oslash;r Fyrv&aelig;rkeri', 'wp-google-maps');
4410
- __('Skovvej 15, 5750 Ringe, Danmark', 'wp-google-maps');
4411
- __('http://espehallen.dk/', 'wp-google-maps');
4412
- __('Espehallen', 'wp-google-maps');
4413
- __('Taastrup Hovedgade 94, Taastrup, Danmark', 'wp-google-maps');
4414
- __('Flugger T&aring;strup', 'wp-google-maps');
4415
- __('Frederiksborgvej 101, V&aelig;rl&oslash;se, Danmark', 'wp-google-maps');
4416
- __('FURES&Oslash;BAD', 'wp-google-maps');
4417
- __('S&oslash;ndre Ringvej 35D, Br&oslash;ndby, Danmark', 'wp-google-maps');
4418
- __('GoKarting.dk &ndash; Danmarks bedste, b&aring;de i fyrv&aelig;rkeri og gokart!', 'wp-google-maps');
4419
- __('Baltorpvej 214, Ballerup, Danmark', 'wp-google-maps');
4420
- __('Gr&oslash;nne Hjem, Ballerup', 'wp-google-maps');
4421
- __('J&aelig;gersborg Alle 172, Gentofte, Danmark', 'wp-google-maps');
4422
- __('Gr&oslash;nne Hjem, Gentofte', 'wp-google-maps');
4423
- __('Peter Bangs Vej 267, Valby, Danmark', 'wp-google-maps');
4424
- __('Gr&oslash;nne Hjem, Valby', 'wp-google-maps');
4425
- __('Raasigvangen 6-8, Slangerup, Danmark', 'wp-google-maps');
4426
- __('http://www.autoimport.dk/', 'wp-google-maps');
4427
- __('G&oslash;rl&oslash;se Autooimport', 'wp-google-maps');
4428
- __('Stenhusvej 64, Holb&aelig;k, Danmark', 'wp-google-maps');
4429
- __('Harald-Nyborg', 'wp-google-maps');
4430
- __('Skolevej 62, Havdrup, Danmark', 'wp-google-maps');
4431
- __('Havdrup Idr&aelig;tscenter', 'wp-google-maps');
4432
- __('Omfartsvejen 27, Holb&aelig;k, Danmark', 'wp-google-maps');
4433
- __('Holb&aelig;k Go-kart Land', 'wp-google-maps');
4434
- __('Havnevej 9 b, 3100 Hornb&aelig;k, Danmark', 'wp-google-maps');
4435
- __('Hornb&aelig;k Krudt I/S', 'wp-google-maps');
4436
- __('Hjelmalle 2, Aabenraa, Danmark', 'wp-google-maps');
4437
- __('Jysk Krudtsalg', 'wp-google-maps');
4438
- __('H&aring;ndv&aelig;rkersvinget 16, Tinglev, Danmark', 'wp-google-maps');
4439
- __('Krudt24', 'wp-google-maps');
4440
- __('Industrivej 72, Ribe, Danmark', 'wp-google-maps');
4441
- __('krudt24', 'wp-google-maps');
4442
- __('Mellerupvej 2A, Agerskov, Danmark', 'wp-google-maps');
4443
- __('Ndr Landevej 28, T&oslash;nder, Danmark', 'wp-google-maps');
4444
- __('Tingvejen 15, Vojens, Danmark', 'wp-google-maps');
4445
- __('Aar&oslash;sund Landevej 130, Haderslev, Danmark', 'wp-google-maps');
4446
- __('Ish&oslash;j Strandvej 13, Ish&oslash;j, Danmark', 'wp-google-maps');
4447
- __('Krudtexperten', 'wp-google-maps');
4448
- __('Vejlevej 131, Fredericia, Danmark', 'wp-google-maps');
4449
- __('Krudtmagasinet Fredericia', 'wp-google-maps');
4450
- __('Lerchesvej 2, Svendborg, Danmark', 'wp-google-maps');
4451
- __('Krudtmagasinet Svendborg &ndash; Lerchesvej', 'wp-google-maps');
4452
- __('Ryttervej 70, Svendborg, Danmark', 'wp-google-maps');
4453
- __('Krudtmagasinet Svendborg &ndash; Ryttervej', 'wp-google-maps');
4454
- __('&Oslash;sterbrogade 240, K&oslash;benhavn &Oslash;, Danmark', 'wp-google-maps');
4455
- __('Krudtteltet', 'wp-google-maps');
4456
- __('Milnersvej 39, Hiller&oslash;d, Danmark', 'wp-google-maps');
4457
- __('Krudtteltet Frederiksborgcentret', 'wp-google-maps');
4458
- __('Holte Stationsvej, Holte, Danmark', 'wp-google-maps');
4459
- __('Krudtteltet Holte Midtpunkt', 'wp-google-maps');
4460
- __('Klampenborgvej 52, Klampenborg, Danmark', 'wp-google-maps');
4461
- __('Krudtteltet Klampenborg Galopbane', 'wp-google-maps');
4462
- __('Kongevejen 375, Kvistg&aring;rd, Danmark', 'wp-google-maps');
4463
- __('Krudtteltet Kvistg&aring;rd', 'wp-google-maps');
4464
- __('Lundtoftevej 53, 2800 Kongens Lyngby, Danmark', 'wp-google-maps');
4465
- __('Krudtteltet Lyngby Stadion', 'wp-google-maps');
4466
- __('Kirseb&aelig;rg&aring;rden 2, 3450 Liller&oslash;d, Aller&oslash;d, Danmark', 'wp-google-maps');
4467
- __('Krudtteltet Meny Aller&oslash;d', 'wp-google-maps');
4468
- __('G&oslash;ngehusvej 27, Vedb&aelig;k, Danmark', 'wp-google-maps');
4469
- __('Krudtteltet Vedb&aelig;k Stadion', 'wp-google-maps');
4470
- __('Assensvej 301, Tommerup, Danmark', 'wp-google-maps');
4471
- __('Krudttossen', 'wp-google-maps');
4472
- __('Askelundsvej 2A, Frederikssund, Danmark', 'wp-google-maps');
4473
- __('Krudtt&oslash;nden', 'wp-google-maps');
4474
- __('Torvet 15, 4293 Dianalund, Danmark', 'wp-google-maps');
4475
- __('Krudtuglen-Bamso', 'wp-google-maps');
4476
- __('Bredgade 48, Kalundborg, Danmark', 'wp-google-maps');
4477
- __('Krudtvognen v/XL-BYG Meredin T&oslash;mmerhandel', 'wp-google-maps');
4478
- __('Drivs&aring;tvej 3-5, Jyderup, Danmark', 'wp-google-maps');
4479
- __('Sp&aring;nneb&aelig;k 23, Holb&aelig;k, Danmark', 'wp-google-maps');
4480
- __('Sandholmg&aring;rdsvej 31, 3450 Liller&oslash;d, Aller&oslash;d, Danmark', 'wp-google-maps');
4481
- __('Lindeh&oslash;jg&aring;rd', 'wp-google-maps');
4482
- __('Center Boulevard 5, K&oslash;benhavn S, Danmark', 'wp-google-maps');
4483
- __('http://www.lundsfyrv&aelig;rkeri.dk/', 'wp-google-maps');
4484
- __('Lundfyrv&aelig;rkeri, Bella Center. K&oslash;benhavn', 'wp-google-maps');
4485
- __('Englandsvej 441, Kastrup, Danmark', 'wp-google-maps');
4486
- __('Lundsfyrv&aelig;rkeri, Plantorama Amager', 'wp-google-maps');
4487
- __('Marielyst Strandvej 14, V&aelig;ggerl&oslash;se, Danmark', 'wp-google-maps');
4488
- __('https://www.facebook.com/Lyns-Blomster-321665474689120/', 'wp-google-maps');
4489
- __('Lyns Blomster', 'wp-google-maps');
4490
- __('Idr&aelig;tsvej 1, L&oslash;gumkloster, Danmark', 'wp-google-maps');
4491
- __('L&oslash;gumkloster Festfyrv&aelig;rkeri', 'wp-google-maps');
4492
- __('Herningvej 104, Holstebro, Danmark', 'wp-google-maps');
4493
- __('Midtjysk festfyrv&aelig;rkeri', 'wp-google-maps');
4494
- __('www.nian-fireworks.dk', 'wp-google-maps');
4495
- __('Nian Fireworks ApS', 'wp-google-maps');
4496
- __('Starreklintevej 16, H&oslash;rve, Danmark', 'wp-google-maps');
4497
- __('Odsherred Fyrv&aelig;rkeri', 'wp-google-maps');
4498
- __('Roskildevej 236, 4100 Ringsted, Danmark', 'wp-google-maps');
4499
- __('Ringsted Motor', 'wp-google-maps');
4500
- __('Koldekildevej 15, Roskilde, Danmark', 'wp-google-maps');
4501
- __('Roskilde Fyrv&aelig;rkeri Outlet', 'wp-google-maps');
4502
- __('S-krudt Dyrskuepladsen, Roskilde', 'wp-google-maps');
4503
- __('Vejlevej 465, Kolding, Danmark', 'wp-google-maps');
4504
- __('Saturn Fireworks', 'wp-google-maps');
4505
- __('Sandpladserne 3, Marstal, Danmark', 'wp-google-maps');
4506
- __('http://www.pyrotechnica.dk/', 'wp-google-maps');
4507
- __('Sejl & Kalechemageren, Marstal', 'wp-google-maps');
4508
- __('Nordre Ringgade 20, 4200 Slagelse, Danmark', 'wp-google-maps');
4509
- __('ShowTech', 'wp-google-maps');
4510
- __('Pr&aelig;st&oslash; Landevej 77, N&aelig;stved, Danmark', 'wp-google-maps');
4511
- __('Skovhoj', 'wp-google-maps');
4512
- __('Pr&aelig;st&oslash; Landevej 77, 4700 N&aelig;stved, Danmark', 'wp-google-maps');
4513
- __('http://www.skovhoj.com/', 'wp-google-maps');
4514
- __('Skovhoj Fyrv&aelig;rkeri Butik', 'wp-google-maps');
4515
- __('Hovedgaden 24, 5932 Humble, Danmark', 'wp-google-maps');
4516
- __('Spar Humble', 'wp-google-maps');
4517
- __('Hovedgaden 50, 4270 H&oslash;ng, Danmark', 'wp-google-maps');
4518
- __('Spar H&oslash;ng', 'wp-google-maps');
4519
- __('Syrevej 53, Frederiksv&aelig;rk, Danmark', 'wp-google-maps');
4520
- __('Speth&rdquo;Krudtv&aelig;rket&rdquo;', 'wp-google-maps');
4521
- __('Vestre Landevej 127, 4951 N&oslash;rreballe, Danmark', 'wp-google-maps');
4522
- __('http://www.steensplanteskole.dk/', 'wp-google-maps');
4523
- __('Steens Planteskole Stue & Havecenter, N&oslash;rreballe', 'wp-google-maps');
4524
- __('Parkvej 5, 4660 Store Heddinge, Danmark', 'wp-google-maps');
4525
- __('http://www.storeheddingeboldklub.dk/', 'wp-google-maps');
4526
- __('Store Heddinge Boldklub', 'wp-google-maps');
4527
- __('Ringstedvej 91, K&oslash;ge, Danmark', 'wp-google-maps');
4528
- __('Stuens Krudtmajor / Stuen Havecenter', 'wp-google-maps');
4529
- __('Christiansminde 1, Viborg, Danmark', 'wp-google-maps');
4530
- __('<p>https://www.harald-nyborg.dk/48130/fyrvaerkeri</p>', 'wp-google-maps');
4531
- __('Harald Nyborg', 'wp-google-maps');
4532
- __('<p>jorge forhandler</p>', 'wp-google-maps');
4533
- __('Danish Fireworks Aalborg', 'wp-google-maps');
4534
- __('Aalborg fyrv&aelig;rkerilager', 'wp-google-maps');
4535
- __('Overklitvej 66, Hj&oslash;rring, Danmark', 'wp-google-maps');
4536
- __('<p>H. C. ANDERSEN FYRV&AElig;RKERI J-FIREWORKS JORGE FIREWORKS</p>', 'wp-google-maps');
4537
- __('L&oslash;nstrup Fyrv&aelig;rkeri', 'wp-google-maps');
4538
- __('<p>Krudtkongen men har os andet sjovt</p>', 'wp-google-maps');
4539
- __('Krudthj&oslash;rnet Aalborg', 'wp-google-maps');
4540
- __('Hjallerupvej 10, Dronninglund, Danmark', 'wp-google-maps');
4541
- __('<p>First Class + mere</p>', 'wp-google-maps');
4542
- __('Fyrv&aelig;rkeri i Rosenby', 'wp-google-maps');
4543
- __('Jordemodervej 11, Nibe, Danmark', 'wp-google-maps');
4544
- __('<p>DPA J-FIREWORKS Krudtkongen</p>', 'wp-google-maps');
4545
- __('Lygums Krudt & Kugler', 'wp-google-maps');
4546
- __('Fabrikvej 19A, Viborg, Danmark', 'wp-google-maps');
4547
- __('Danish Fireworks Viborg', 'wp-google-maps');
4548
- __('Outlet Ballerup', 'wp-google-maps');
4549
- __('krudtteltet Ballerup', 'wp-google-maps');
4550
- __('<p>http://www.ebbeskrudtogkugler.dk/</p>', 'wp-google-maps');
4551
- __('Ebbes Krudt og Kugler', 'wp-google-maps');
4552
- __('Seebladsgade 10, Odense, Danmark', 'wp-google-maps');
4553
- __('<p>Krudtborgen s&aelig;lger fyrv&aelig;rkeri af den kendte serie JAPAN fra AFAC/Aalborg Fyrv&aelig;rkeri og meget andet fyrv&aelig;rkeri af h&oslash;j kvalitet. &Aring;bningstider 2018: Torsdag d. 27/12: 09.00 &ndash; 20.00 Fredag d. 28/12: 09.00 &ndash; 20.00 L&oslash;rdag d. 29/12: 09.00 &ndash; 20.00 S&oslash;ndag d. 30/12: 09.00 &ndash; 20.00 Mandag d. 31/12: 08.30 &ndash; 16.30</p>', 'wp-google-maps');
4554
- __('Krudtborgen', 'wp-google-maps');
4555
- __('<p>Brotoften 8940 Randers sv</p>', 'wp-google-maps');
4556
- __('Royal Fireworks Randers DIAMOND', 'wp-google-maps');
4557
- __('<p>Lorentzgade 19 8900 Randers</p>', 'wp-google-maps');
4558
- __('Land & Fritid (AFAC)', 'wp-google-maps');
4559
- __('<p>Juventusvej krydset ved Bauhaus 8900 Randers &Aring;bningstider: 27.-30. dec 10.00-20.00 31. dec 09.00-15.00</p>', 'wp-google-maps');
4560
- __('&Oslash;rsted Telte (JAPAN)', 'wp-google-maps');
4561
- __('<p>Krudtmagasinet Dronningborg alle 2 8930 Randers</p>', 'wp-google-maps');
4562
- __('Krudtmagasinet (Royal Gold)', 'wp-google-maps');
4563
- __('Dyrehavevej 62, 2930 Klampenborg, Danmark', 'wp-google-maps');
4564
- __('<p><strong>&nbsp;P&aring; Bakkens p-plads</strong></p>', 'wp-google-maps');
4565
- __('http://www.apollo-denmark.com/', 'wp-google-maps');
4566
- __('Apollo Fireworks', 'wp-google-maps');
4567
- __('Sct J&oslash;rgensbjerg 46, 4400 Kalundborg, Danmark', 'wp-google-maps');
4568
- __('https://www.fyrvaerkeri.tv/', 'wp-google-maps');
4569
- __('Aldi', 'wp-google-maps');
4570
- __('Elmegade 9A, 4400 Kalundborg', 'wp-google-maps');
4571
- __('<p>Fyrv&aelig;rkeri stand</p>', 'wp-google-maps');
4572
- __('Kvickly Kalundborg', 'wp-google-maps');
4573
- __('N&oslash;rre Alle 133, 4400 Kalundborg', 'wp-google-maps');
4574
- __('Meny Kalundborg', 'wp-google-maps');
4575
- __('Clinica di Malattie infettive, Via dei Vestini, Chieti - CH', 'wp-google-maps');
4576
- __('OSPEDALE CLINICIZZATO COLLE DELL\'ARA - CHIETI V LIVELLO - CORPO L', 'wp-google-maps');
4577
- __('Servizio di Immunoematologia e Trasfusionale, Via dei Vestini, Chieti - CH', 'wp-google-maps');
4578
- __('POLICLINICO SS. ANNUNZIATA', 'wp-google-maps');
4579
- __('U.O.S.D (Unità Operativa Semplice Dipartimentale) Malattie Infettive, Via S.Camillo de Lellis, Vasto - CH', 'wp-google-maps');
4580
- __('AZIENDA OSPEDALIERA 02 LANCIANO- VASTO - CHIETI - OSPEDALE CIVILE', 'wp-google-maps');
4581
- __('Unità Operativa Complessa di Malattie Infettive, Via G. Di Vittorio, Avezzano - AQ', 'wp-google-maps');
4582
- __('AZIENDA OSPEDALIERA AVEZZANO SULMONA L\'AQUILA - OSPEDALE S.S. FILIPPO E NICOLA', 'wp-google-maps');
4583
- __('U.O.C. Patologia clinica, Via G. di Vittorio, Avezzano - AQ', 'wp-google-maps');
4584
- __('OSPEDALE SS. FILIPPO E NICOLA AVEZZANO', 'wp-google-maps');
4585
- __('Unità Operativa Complessa Malattie Infettive, Via Giuseppe Petrini, Coppito, L\'Aquila, 67100, L\'Aquila - AQ', 'wp-google-maps');
4586
- __('OSPEDALE S. SALVATORE', 'wp-google-maps');
4587
- __('Ser.D., Via Monte Faito, Pescara - PE', 'wp-google-maps');
4588
- __('ASL 5 PESCARA SERVIZIO PER LA CURA DELLE DIPENDENZE c/o OSPEDALE CIVILE', 'wp-google-maps');
4589
- __('U.O.C. di Microbiologia e Virologia Clinica, Via Fonte Romana, 8, Pescara - PE', 'wp-google-maps');
4590
- __('OSPEDALE CIVILE DELLO SPIRITO SANTO', 'wp-google-maps');
4591
- __('Unità Operativa Complessa Malattie Infettive, Via Fonte Romana, 8, Pescara - PE', 'wp-google-maps');
4592
- __('OSPEDALE CIVILE SANTO SPIRITO', 'wp-google-maps');
4593
- __('Divisione Malattie Infettive, P.zza Italia 3° LOTTO, Teramo - TE', 'wp-google-maps');
4594
- __('AZIENDA OSPEDALIERA DI TERAMO - OSPEDALE CIVILE', 'wp-google-maps');
4595
- __('SER.D., Contrada Casalena, Teramo - TE', 'wp-google-maps');
4596
- __('SERVIZIO PER LE DIPENDENZE PATOLOGICHE', 'wp-google-maps');
4597
- __('Uintà Operativa Malattie Infettive, Contrada Cattedra Ambulante, Matera - MT', 'wp-google-maps');
4598
- __('ASM (AZIENDA SANITARIA MATERA) OSPEDALE MADONNA DELLE GRAZIE', 'wp-google-maps');
4599
- __('Laboratorio Analisi, V.le Colombo, Lagonegro - PZ', 'wp-google-maps');
4600
- __('AZIENDA OSPEDALIERA \" SAN CARLO \" - POTENZA OSPEDALE \"SAN GIOVANNI\" DI LAGONEGRO', 'wp-google-maps');
4601
- __('Laboratorio Analisi, Via Provinciale, Marsicovetere - PZ', 'wp-google-maps');
4602
- __('AOR SAN CARLO - OSPEDALE VILLA D\'AGRI', 'wp-google-maps');
4603
- __('Centro Trasfusionale Melfi, Via Foggia, Melfi - PZ', 'wp-google-maps');
4604
- __('OSPEDALE \"SAN GIOVANNI DI DIO\"', 'wp-google-maps');
4605
- __('Servizio Immuno-trasfusionale - Settore virologia e biologia molecolare, Via Potito Petrone, Potenza - PZ', 'wp-google-maps');
4606
- __('AZIENDA OSPEDALIERA REGIONALE SAN CARLO', 'wp-google-maps');
4607
- __('Unità Operativa Complessa Divisione Malattie Infettive, Via Potito Petrone, Potenza - PZ', 'wp-google-maps');
4608
- __('OSPEDALE S. CARLO', 'wp-google-maps');
4609
- __('Laboratorio Analisi, Via Appia 67, Venosa - PZ', 'wp-google-maps');
4610
- __('OSPEDALE DISTRETTUALE DI VENOSA UNITÀ OPERATIVA DI PATOLOGIA CLINICA ASP', 'wp-google-maps');
4611
- __('Laboratorio Microbiologia-Virologia, Viale Pio X, Catanzaro - CZ', 'wp-google-maps');
4612
- __('AZIENDA OSPEDALIERA PUGLIESE-CIACCIO - CATANZARO', 'wp-google-maps');
4613
- __('Unità Operativa di Malattie Infettive e Tropicali, Policlinico Universitario \"Mater Domini\" - Campus Venuta (Località Germaneto), Viale Europa, Catanzaro - CZ', 'wp-google-maps');
4614
- __('AZIENDA OSPEDALIERA POLICLINICO UNIVERSITA\' MATER DOMINI', 'wp-google-maps');
4615
- __('Centro di Medicina del Viaggiatore e delle Migrazioni c/o Polo Ospedaliero di Lamezia Terme, Via Senatore Perugini, s.n.c., Lamezia Terme - CZ', 'wp-google-maps');
4616
- __('ASP DI CATANZARO', 'wp-google-maps');
4617
- __('Unità Operativa semplice Malattie Infettive - 5° piano/ Torre A, Via Arturo Perugini, Lamezia Terme - CZ', 'wp-google-maps');
4618
- __('OSPEDALE GIOVANNI PAOLO II', 'wp-google-maps');
4619
- __('Laboratorio analisi - primo piano, Via Don Carlo De Cardona, Soverato - CZ', 'wp-google-maps');
4620
- __('OSPEDALE CIVILE \"BASSO IONIO\" SOVERATO', 'wp-google-maps');
4621
- __('Centro Prelievi (Piano Terra), Via Porto - Località  Testa, Cetraro - CS', 'wp-google-maps');
4622
- __('OSPEDALE G. IANNELLI - LABORATORIO ANALISI DI PATOLOGIA CLINICA - PRESIDIO OSPEDALIERO DI CETRARO', 'wp-google-maps');
4623
- __('Laboratorio di Microbiologia e Virologia - Sala Prelievi Ambulatorio di Microbiologia, Via Felice Migliori, 1, Cosenza - CS', 'wp-google-maps');
4624
- __('AZIENDA OSPEDALIERA DI COSENZA - PRESIDIO OSPEDALIERO \"ANNUNZIATA\"', 'wp-google-maps');
4625
- __('U. O. C. Malattie Infettive e Tropicali, Via della Repubblica s.n.c.; Piano 1: Ambulatori e Day Hospital, Piano 3: Reparto di Degenza, Cosenza - CS', 'wp-google-maps');
4626
- __('PRESIDO OSPEDALIERO \"S.S. ANNUNZIATA\" AZIENDA OSPEDALIERA DI COSENZA', 'wp-google-maps');
4627
- __('Laboratorio Analisi, Contrada San Leonardo, Lungro - CS', 'wp-google-maps');
4628
- __('OSPEDALE DI LUNGRO', 'wp-google-maps');
4629
- __('Unita\' Operativa Semplice di Patologia Clinica, Contrada Santo Stefano, Praia a Mare - CS', 'wp-google-maps');
4630
- __('PRESIDIO OSPEDALIERO PRAIA A MARE', 'wp-google-maps');
4631
- __('Unità Operativa Laboratorio Analisi, Via Luigi Sturzo snc, Rogliano - CS', 'wp-google-maps');
4632
- __('AZIENDA OSPEDALIERA DI COSENZA - PRESIDIO OSPEDALIERO SANTA BARBARA', 'wp-google-maps');
4633
- __('Laboratorio Analisi, Via Ippocrate, 3, Rossano - CS', 'wp-google-maps');
4634
- __('PRESIDIO OSPEDALIERO DI ROSSANO OSPEDALE CIVILE NICOLA GIANNETTASIO', 'wp-google-maps');
4635
- __('Unità Operativa Complessa di Patologia Clinica, Via Gramsci 356, San Giovanni in Fiore - CS', 'wp-google-maps');
4636
- __('PRESIDIO OSPEDALIERO SAN GIOVANNI IN FIORE', 'wp-google-maps');
4637
- __('Laboratorio Analisi, Viale della Libertà, Trebisacce - CS', 'wp-google-maps');
4638
- __('ASP COSENZA - SPOKE DI CASTROVILLARI- P.O. DI TREBISACCE - LABORATORIO DI PATOLOGIA CLINICA', 'wp-google-maps');
4639
- __('Laboratorio Analisi - Poliambulatorio Polispecialistico, Via Togliatti, Cirò Marina - KR', 'wp-google-maps');
4640
- __('DISTRETTO CIRO\' MARINA', 'wp-google-maps');
4641
- __('Laboratorio di Microbiologia e Virologia, Via Melàcrino, Reggio di Calabria - RC', 'wp-google-maps');
4642
- __('AZIENDA OSPEDALIERA GRANDE ODPEDALE METROPOLITANO BIANCHI MELACRINO MORELLI', 'wp-google-maps');
4643
- __('Divisione Malattie Infettive, P.zza Fleming, Vibo Valentia - VV', 'wp-google-maps');
4644
- __('ASP VIBO VALENTIA PRESIDIO OSPEDALIERO G. IAZZOLINO', 'wp-google-maps');
4645
- __('U.O. C. Malattie Infettive, C/Da Amoretta, Avellino - AV', 'wp-google-maps');
4646
- __('AZIENDA OSPEDALIERA GIUSEPPE MOSCATI', 'wp-google-maps');
4647
- __('Malattie Infettive - Padiglione S. Teresa della Croce, via dell\'Angelo, 1, Benevento - BN', 'wp-google-maps');
4648
- __('AZIENDA OSPEDALIERA GAETANO RUMMO', 'wp-google-maps');
4649
- __('Unità Operativa Complessa Malattie Infettive e Tropicali a direzione universitaria - Edificio G, Via Palasciano, snc, Caserta - CE', 'wp-google-maps');
4650
- __('AZIENDA OSPEDALIERA SANT\'ANNA E SAN SEBASTIANO', 'wp-google-maps');
4651
- __('PUNTO PRELIEVO, Via Flavio Gioia, 2, Acerra - NA', 'wp-google-maps');
4652
- __('ASL NAPOLI 2 NORD - DS 46', 'wp-google-maps');
4653
- __('PUNTO PRELIEVO, Via A. De Gasperi, 1, Afragola - NA', 'wp-google-maps');
4654
- __('ASL NAPOLI 2 NORD - DS 44', 'wp-google-maps');
4655
- __('PUNTO PRELIEVO, Via A. Cardarelli, 1, Arzano - NA', 'wp-google-maps');
4656
- __('ASL NAPOLI 2 NORD - DS 42', 'wp-google-maps');
4657
- __('PUNTO PRELIEVO, Via Santa Chiara, Caivano - NA', 'wp-google-maps');
4658
- __('ASL NAPOLI 2 NORD - DS 45', 'wp-google-maps');
4659
- __('PUNTO PRELIEVO, Via Ravello c/o P.co Orchidea, Casalnuovo di Napoli - NA', 'wp-google-maps');
4660
- __('ASL NAPOLI 2 NORD - DS 47', 'wp-google-maps');
4661
- __('PUNTO PRELIEVO, Via I° maggio, Casoria - NA', 'wp-google-maps');
4662
- __('ASL NAPOLI 2 NORD - DS 43', 'wp-google-maps');
4663
- __('Centro Trasfusionale, V.le Europa, 79 - piano terra e 1° piano, Castellammare di Stabia - NA', 'wp-google-maps');
4664
- __('OSPEDALE SAN LEONARDO AREA STABIESE SERVIZIO DI IMMUNOEMATOLOGIA E MEDICINA TRASFUSIONALE', 'wp-google-maps');
4665
- __('PUNTO PRELIEVO, Via P. M. Vergara, 228, Frattamaggiore - NA', 'wp-google-maps');
4666
- __('ASL NAPOLI 2 NORD - DS 41', 'wp-google-maps');
4667
- __('PUNTO PRELIEVO, Via Staffetta, 125, Giugliano in Campania - NA', 'wp-google-maps');
4668
- __('ASL NAPOLI 2 NORD - DS 37', 'wp-google-maps');
4669
- __('PUNTO PRELIEVO, Via G.B. Basile, 26, Giugliano in Campania - NA', 'wp-google-maps');
4670
- __('c/o UOC di Patologia Clinica - P.O. “Anna Rizzoli”, Via Fundera, 2, Lacco Ameno - NA', 'wp-google-maps');
4671
- __('ASL NAPOLI 2 NORD - DS 36', 'wp-google-maps');
4672
- __('PUNTO PRELIEVO, Via M. Musella, Marano di Napoli - NA', 'wp-google-maps');
4673
- __('ASL NAPOLI 2 NORD - DS 38', 'wp-google-maps');
4674
- __('PUNTO PRELIEVO, Via Roma, 256, Melito di Napoli - NA', 'wp-google-maps');
4675
- __('ASL NAPOLI 2 NORD - DS 40', 'wp-google-maps');
4676
- __('PUNTO PRELIEVO, Via A. Moro, 8, Mugnano di Napoli - NA', 'wp-google-maps');
4677
- __('PUNTO PRELIEVO - P.O. San Paolo - U.O Immunotrasfusionale, Via Terracina, 219, Napoli - NA', 'wp-google-maps');
4678
- __('ASL NAPOLI 1 CENTRO', 'wp-google-maps');
4679
- __('PUNTO PRELIEVO - P.S.I. Napoli EST - U.O.C. Laboratorio Analisi - Corpo C Piano Primo, Via Ciccarelli, 1, Napoli - NA', 'wp-google-maps');
4680
- __('PUNTO PRELIEVO - P.S.P. Loreto Crispi - U.O. Patologia Clinica, Via M. Schipa, 9, Napoli - NA', 'wp-google-maps');
4681
- __('PUNTO PRELIEVO - DS 28 - U.O. Patologia Clinica, Viale della Resistenza, 25, Napoli - NA', 'wp-google-maps');
4682
- __('Gruppo C c/o Centro Clinico Ser.D. DS 25, Sottopasso Claudio uscita via G.B. Marino, Napoli - NA', 'wp-google-maps');
4683
- __('UOC di Malattie Infettive -Edificio 18 - VI piano, Via Sergio Pansini, 5, Napoli - NA', 'wp-google-maps');
4684
- __('AZIENDA OSPEDALIERA UNIVERSITARIA FEDERICO II', 'wp-google-maps');
4685
- __('U.O. semplice e dipartimentale, Via Mariano Semmola, 142, Napoli - NA', 'wp-google-maps');
4686
- __('IRCCS ISTITUTO NAZIONALE TUMORI FONDAZIONE SENATORE G. PASCALE', 'wp-google-maps');
4687
- __('U.O.C. Virologia, Via Egiziaca a Forcella, 31, Napoli - NA', 'wp-google-maps');
4688
- __('OSPEDALE ASCALESI', 'wp-google-maps');
4689
- __('SOD - Gruppo C - Ambulatorio interno all ospedale -, Via G. Quagliariello, 54, Napoli - NA', 'wp-google-maps');
4690
- __('OSPEDALE COTUGNO', 'wp-google-maps');
4691
- __('Ambulatorio Malattie Infettive - Unità Operativa Complessa Diagnosi e Terapia AIDS e Patologie infettive Correlate Ambulatorio Malattie Infettive- Piano - 2, Via G. Quagliariello, 54, Napoli - NA', 'wp-google-maps');
4692
- __('OSPEDALE COTUGNO - AOU - SUN (AZIENDA OSPEDALIERA UNIVERSITARIA II° UNIVERSITA\' DEGLI STUDI DI NAPOLI)', 'wp-google-maps');
4693
- __('Centro Trasfusionale, Via F. M. Briganti, 255, Napoli - NA', 'wp-google-maps');
4694
- __('OSPEDALE SAN GIOVANNI BOSCO - ASL NA1 NAPOLI CENTRO', 'wp-google-maps');
4695
- __('UOC di Patologia Clinica - P.O.“S. Maria delle Grazie”, Via Domitiana, Pozzuoli - NA', 'wp-google-maps');
4696
- __('ASL NAPOLI 2 NORD - DS 35', 'wp-google-maps');
4697
- __('PUNTO PRELIEVO, Corso N. Terracciano, 21, Pozzuoli - NA', 'wp-google-maps');
4698
- __('Centro Prelievi, Via Corrado Alvaro 6, Pozzuoli - NA', 'wp-google-maps');
4699
- __('ASL Napoli 2 Nord Distretto 35', 'wp-google-maps');
4700
- __('PUNTO PRELIEVO, Via Solimene, 8, Sant\'Antimo - NA', 'wp-google-maps');
4701
- __('SERT, Via Marconi 66, Torre del Greco - NA', 'wp-google-maps');
4702
- __('ASL NA3 SUD c/o PLESSO BOTTAZZI', 'wp-google-maps');
4703
- __('PUNTO PRELIEVO, Corso Italia, 168/B, Villaricca - NA', 'wp-google-maps');
4704
- __('ASL NAPOLI 2 NORD - DS 39', 'wp-google-maps');
4705
- __('U.O. Struttura Complessa SER.D n.3 Battipaglia - Eboli - CApaccio/Roccadaspide, Via Fiorignano, Battipaglia - SA', 'wp-google-maps');
4706
- __('Dipartimento Dipendenze - Area Ospedaliera \"Santa Maria Della Speranza\" - Battipaglia', 'wp-google-maps');
4707
- __('Unità Operativa di Medicina Trasfusionale, Piazza Scuola Medica Salernitana, Eboli - SA', 'wp-google-maps');
4708
- __('ASL SALERNO OSPEDALE MARIA SS. ADDOLORATA', 'wp-google-maps');
4709
- __('Laboratorio Analisi, V.le S. Francesco, 1, Nocera Inferiore - SA', 'wp-google-maps');
4710
- __('OSPEDALE UMBERTO I - Unità Semplice Microbiologia e Virologia-Responsabile Dr.ssa Paola Sabatini', 'wp-google-maps');
4711
- __('Distretto 66, Via Vernieri - ex OO.RR., Salerno - SA', 'wp-google-maps');
4712
- __('CENTRO INFORMAIDS \"GIUSY\" ASL SALERNO', 'wp-google-maps');
4713
- __('Unità Operativa Complessa Malattie Infettive / Piano rialzato, Largo Città di Ippocrate, Salerno - SA', 'wp-google-maps');
4714
- __('OO. RR. AZIENDA OSPEDALIERA UNIVERSITARIA S. GIOVANNI DI DIO E RUGGI D\'ARAGONA', 'wp-google-maps');
4715
- __('Laboratorio di patologia clinica, Via Verdi, Sapri - SA', 'wp-google-maps');
4716
- __('ASL DI SALERNO - OSPEDALE DI SAPRI', 'wp-google-maps');
4717
- __('Istituto Malattie Infettive - Ambulatorio HIV, Via G. Massarenti, 11, Bologna - BO', 'wp-google-maps');
4718
- __('AZIENDA OSPEDALIERA OSPEDALE S. ORSOLA', 'wp-google-maps');
4719
- __('Punto Prelievi per Test HIV, Policlinico di S.Orsola, Padiglione n.1, Via Pelagio Palagi, 9, Bologna - BO', 'wp-google-maps');
4720
- __('AZIENDA OSPEDALIERO-UNIVERSITARIA DI BOLOGNA, POLICLINICO S. ORSOLA-MALPIGHI, UNITA\' OPERATIVA MALATTIE INFETTIVE', 'wp-google-maps');
4721
- __('Telefono AIDS, via sant\'Isaia 94, Bologna - BO', 'wp-google-maps');
4722
- __('GRUPPO C TELEFONO VERDE AIDS REGIONALE', 'wp-google-maps');
4723
- __('Clin. Dermatologica - Ambulatorio IST - Padiglione 29, Via G.Massarenti, 1, Bologna - BO', 'wp-google-maps');
4724
- __('POLICLINICO UNIVERSITARIO S. ORSOLA MALPIGHI OSPEDALE S.ORSOLA', 'wp-google-maps');
4725
- __('Lab. Analisi, Via Amendola, Imola - BO', 'wp-google-maps');
4726
- __('ASL IMOLA - OSPEDALE S.MARIA DELLA SCALETTA', 'wp-google-maps');
4727
- __('Laboratorio Unico Provinciale, Via Nazionale, 5, Argenta - FE', 'wp-google-maps');
4728
- __('ASL FERRARA - OSPEDALE MAZZOLANI-VANDINI', 'wp-google-maps');
4729
- __('Laboratorio Analisi, Via Vicini, 2, Cento - FE', 'wp-google-maps');
4730
- __('OSPEDALE SANTISSIMA ANNUNZIATA', 'wp-google-maps');
4731
- __('Unità Operativa Malattie Infettive Ospedaliera, Via Aldo Moro, 8, Ferrara - FE', 'wp-google-maps');
4732
- __('AZIENDA OSPEDALIERA UNIVERSITARIA', 'wp-google-maps');
4733
- __('Punto Prelievi, Corso Giovecca, 203, Ferrara - FE', 'wp-google-maps');
4734
- __('AZIENDA OSPEDALIERA UNIVERSITARIA DI FERRARA', 'wp-google-maps');
4735
- __('Laboratorio Analisi, Via Valle Oppio, 2, Lagosanto - FE', 'wp-google-maps');
4736
- __('OSPEDALE DEL DELTA- UNITA\' OPERATIVA DI MEDICINA DI LABORATORIO - ASL FERRARA', 'wp-google-maps');
4737
- __('Ambulatorio Malattie Infettive - Punto Prelievo HIV, Via Forlanini, 34, Forlì - FC', 'wp-google-maps');
4738
- __('AZIENDA OSPEDALIERA FORLI\' OSPEDALE G.B. MORGAGNI - L. PIERANTONI', 'wp-google-maps');
4739
- __('Ambulatorio di Malattie Infettive, Via del Pozzo, 71, Modena - MO', 'wp-google-maps');
4740
- __('AZIENDA OSPEDALIERA UNIVERSITARIA DI MODENA POLICLINICO', 'wp-google-maps');
4741
- __('Ambulatorio Malattie Infettive - Torre delle medicine II piano, Via Gramsci, 14, Parma - PR', 'wp-google-maps');
4742
- __('AZIENDA OSPEDALIERA UNIVERSITARIA DI PARMA OSPEDALI RIUNITI OSPEDALE MAGGIORE', 'wp-google-maps');
4743
- __('Unità Operativa di Virologia e Unità Operativa di Microbiologia, Via A. Gramsci, 14, Parma - PR', 'wp-google-maps');
4744
- __('AZIENDA OSPEDALIERO - UNIVERSITARIA', 'wp-google-maps');
4745
- __('Laboratorio Analisi, Via Taverna 49, Piacenza - PC', 'wp-google-maps');
4746
- __('ASL PIACENZA UOC DI BIOCHIMICA', 'wp-google-maps');
4747
- __('Unità Operativa Malattie Infettive, cantone del Cristo snc - ed 9 piano terra - ambulatorio, Piacenza - PC', 'wp-google-maps');
4748
- __('AZIENDA OSPEDALIERA USL PIACENZA OSPEDALE CIVILE', 'wp-google-maps');
4749
- __('Servizio Malattie Infettive, V.le Stradone, 9, Faenza - RA', 'wp-google-maps');
4750
- __('AUSL DELLA ROMAGNA - OSPEDALE PER GLI INFERMI', 'wp-google-maps');
4751
- __('Unità Operativa Aziendale di Malattie Infettive, Viale Randi, 5, Ravenna - RA', 'wp-google-maps');
4752
- __('AUSL DELLA ROMGNA - Ravenna - OSPEDALE S.MARIA DELLE CROCI', 'wp-google-maps');
4753
- __('Unità Operativa Complessa di Malattie Infettive - Ambulatorio HIV, Viale Risorgimento, 80, Reggio nell\'Emilia - RE', 'wp-google-maps');
4754
- __('ARCISPEDALE SANTA MARIA NUOVA - IRCCS', 'wp-google-maps');
4755
- __('Unità Operativa Malattie Infettive, Viale Luigi Settembrini, 2, Rimini - RN', 'wp-google-maps');
4756
- __('ASL DI RIMINI PRESIDIO OSPEDALE DEGLI INFERMI', 'wp-google-maps');
4757
- __('Struttura Semplice interdipartimentale \"GESTIONE INFEZIONI DA HIV\", Viale Luigi Settembrini, 2, Rimini - RN', 'wp-google-maps');
4758
- __('AUSL Romagna, OSPEDALE BUFALINI', 'wp-google-maps');
4759
- __('PRESIDIO OSPEDALIERO DI GORIZIA, Via Vittorio Veneto, 169, Gorizia - GO', 'wp-google-maps');
4760
- __('CENTRO MALATTIE SESSUALMENTE TRASMESSE - AIDS AAS 2 \"BASSA FRIULANA - ISONTINA\"', 'wp-google-maps');
4761
- __('Ambulatorio HIV, Via Franco Gallini, 2, Aviano - PN', 'wp-google-maps');
4762
- __('CENTRO RIFERIMENTO ONCOLOGICO di Aviano (CRO)IRCCS', 'wp-google-maps');
4763
- __('Dipartimento Dipendenze, Via San Quirino, Pordenone - PN', 'wp-google-maps');
4764
- __('A.A.S. n. 5 - FRIULI OCCIDENTALE', 'wp-google-maps');
4765
- __('Immunologia e Allergologia, Via della Vecchia Ceramica 1, Pordenone - PN', 'wp-google-maps');
4766
- __('AAS n5 \"Friuli Occidentale\"', 'wp-google-maps');
4767
- __('Dipartimento di Prevenzione, Via Piave, 54, Pordenone - PN', 'wp-google-maps');
4768
- __('AZIENDA PER L\'ASSISTENZA SANITARIA N. 5 FRIULI OCCIDENTALE', 'wp-google-maps');
4769
- __('Medicina di Laboratorio, Via Raffaello, 1, Spilimbergo - PN', 'wp-google-maps');
4770
- __('AZIENDA OSPEDALIERA SANTA MARIA DEGLI ANGELI- STRUTTURA SEMPLICE DI SPILIMBERGO', 'wp-google-maps');
4771
- __('Dipartimento delle dipendenze - Centro MTS, Via Gatteri, Trieste - TS', 'wp-google-maps');
4772
- __('A.S.U.I.Ts Ospedale Maggiore', 'wp-google-maps');
4773
- __('Via dell\'Istria, 65/1, Trieste - TS', 'wp-google-maps');
4774
- __('IRCCS BURLO GAROFOLO CENTRO RIFERIMENTO REGIONALE PER LA GRAVIDANZA A RISCHIO E PER L\'HIV IN GRAVIDANZA', 'wp-google-maps');
4775
- __('Struttura Complessa Malattie Infettive, Piazza Ospitale, 1, Trieste - TS', 'wp-google-maps');
4776
- __('OSPEDALE MAGGIORE Azienda Sanitaria Universitaria Integrata (ASUITS)', 'wp-google-maps');
4777
- __('Laboratorio analisi cliniche, P.zza Rodolone, 1, Gemona del Friuli - UD', 'wp-google-maps');
4778
- __('OSPEDALE CIVILE', 'wp-google-maps');
4779
- __('Centro Prelievi, Via Sabbionera, 45, Latisana - UD', 'wp-google-maps');
4780
- __('ASS n. 2 BASSA FRIULANA-ISONTINA - PRESIDIO OSPEDALIERO', 'wp-google-maps');
4781
- __('Laboratorio Analisi, Via Natisone, 11, Palmanova - UD', 'wp-google-maps');
4782
- __('ASUIUD LABORATORIO UNICO INTERAZIENDALE, SEDE DI PALMANOVA', 'wp-google-maps');
4783
- __('punto prelievi AAS3, Viale Trento e Trieste, 2, San Daniele del Friuli - UD', 'wp-google-maps');
4784
- __('Azienda per l’assistenza sanitaria n. 3 Alto Friuli – Collinare – Medio Friuli', 'wp-google-maps');
4785
- __('Laboratorio di Patologia Clinica, Via Morgagni, 18, Tolmezzo - UD', 'wp-google-maps');
4786
- __('ASS n. 3 ALTO FRIULI - OSPEDALE S. ANTONIO', 'wp-google-maps');
4787
- __('Ambulatorio MST-HIV, Via Chiusaforte, 2, Udine - UD', 'wp-google-maps');
4788
- __('AZIENDA SANITARIA UNIVERSITARIA INTEGRATA DI UDINE', 'wp-google-maps');
4789
- __('struttura Operativa Semplice Immunopatologia ed allergologia-Ambulatorio unico prelievi, Piazzale Santa Maria della Misericordia, Udine - UD', 'wp-google-maps');
4790
- __('AZIENDA SANITARIA UNIVERSITARIA INTEGRATA DI UDINE S. MARIA DELLA MISERICORDIA', 'wp-google-maps');
4791
- __('Clinica di Malattie Infettive, Piazzale Santa Maria della Misericordia, 15, Udine - UD', 'wp-google-maps');
4792
- __('PRESIDIO OSPEDALIERO \"SANTA MARIA DELLA MISERICORDIA\" AZIENDA SANITARIA UNIVERSITARIA INTEGRATA DI UDINE (ASUI-UD)', 'wp-google-maps');
4793
- __('Laboratorio analisi, Località  Chiappitto, Alatri - FR', 'wp-google-maps');
4794
- __('OSPEDALE SAN BENEDETTO', 'wp-google-maps');
4795
- __('Punto Prelievo, Via Colle Melfa, 75, Atina - FR', 'wp-google-maps');
4796
- __('CASA DELLA SALUTE ATINA ASL FROSINONE', 'wp-google-maps');
4797
- __('Centro Prelievi, Via San Pasquale snc, Cassino - FR', 'wp-google-maps');
4798
- __('USLFROSINONE PRESIDIO OSPEDALIERO OSPEDALE SANTA SCOLASTICA', 'wp-google-maps');
4799
- __('Poliambulatorio extraospedaliero - Presidio Sanitario - Centro Prelievi, Viale Regina Margherita, 19, Ceprano - FR', 'wp-google-maps');
4800
- __('PRESIDIO SANITARIO EX-OSPEDALE FERRARI AZIENDA ASL FROSINONE STRUTTURA COMPLESSA ASB DISTRETTI \"A-B\" SEDE CEPRANO', 'wp-google-maps');
4801
- __('CENTRO DI RIFERIMENTO AIDS, Via Armando Fabi, snc, Frosinone - FR', 'wp-google-maps');
4802
- __('NUOVO OSPEDALE FABRIZIO SPAZIANI', 'wp-google-maps');
4803
- __('Laboratorio Analisi, Via Armando Fabi snc, Frosinone - FR', 'wp-google-maps');
4804
- __('OSPEDALE FABRIZIO SPAZIANI - U.O.C DI PATOLOGIA CLINICA', 'wp-google-maps');
4805
- __('Centro Prelievi, Via S.Giovanni Battista, Pontecorvo - FR', 'wp-google-maps');
4806
- __('ASL FROSINONE - CASA DELLA SALUTE \"PASQUALE DEL PRETE\"', 'wp-google-maps');
4807
- __('Unità Operativa Complessa PATOLOGIA CLINICA - Laboratorio Analisi, Località S. Marciano, Sora - FR', 'wp-google-maps');
4808
- __('PRESIDIO OSPEDALIERO OSPEDALE SS. TRINITA\' - ASL FROSINONE', 'wp-google-maps');
4809
- __('Centro Prelievi, Via Giustiniano s.n.c., Aprilia - LT', 'wp-google-maps');
4810
- __('AUSL LATINA DISTRETTO 1 - POLIAMBULATORIO', 'wp-google-maps');
4811
- __('Laboratorio Analisi, Via S. Magno, Fondi - LT', 'wp-google-maps');
4812
- __('ASL LATINA - OSPEDALE S.GIOVANNI DI DIO', 'wp-google-maps');
4813
- __('Laboratorio Analisi, Via Appia lato napoli, Formia - LT', 'wp-google-maps');
4814
- __('OSPEDALE DONO SVIZZERO', 'wp-google-maps');
4815
- __('Struttura Semplice Centro di coordinamento AIDS, Via Appia (lato Napoli), Formia - LT', 'wp-google-maps');
4816
- __('U.O.S. DIPARTIMENTALE -AZIENDA OSPEDALIERA DI LATINA - OSPEDALE DONO SVIZZERO DI FORMIA', 'wp-google-maps');
4817
- __('Centro di Riferimento per le Malattie Infettive, Via Canova SNC, Latina - LT', 'wp-google-maps');
4818
- __('Sapienza Università di Roma, polo pontino, OSPEDALE S.MARIA GORETTI, Latina', 'wp-google-maps');
4819
- __('Centro Prelievi, Via San Vito e Stella, Priverno - LT', 'wp-google-maps');
4820
- __('AUSL LATINA - OSPEDALE REGINA ELENA - SERVIZIO TERRITORIALE DI PATOLOGIA CLINICA', 'wp-google-maps');
4821
- __('Laboratorio Analisi, Via Firenze, Terracina - LT', 'wp-google-maps');
4822
- __('OSPEDALE FIORINI', 'wp-google-maps');
4823
- __('Punto Prelievi, via Filoni, 1, Magliano Sabina - RI', 'wp-google-maps');
4824
- __('CASA DELLA SALUTE - MAGLIANO SABINA', 'wp-google-maps');
4825
- __('Unità Operativa AIDS di III livello - Malattie Infettive, Viale Kennedy, snc, Rieti - RI', 'wp-google-maps');
4826
- __('AZIENDA USL DI RIETI - PRESIDIO OSPEDALIERO SAN CAMILLO DE LELLIS', 'wp-google-maps');
4827
- __('Centro Prelievi, Via Civitavecchia 10, Allumiere - RM', 'wp-google-maps');
4828
- __('POLIAMBULATORIO', 'wp-google-maps');
4829
- __('Laboratorio Analisi, Via Nettunense km 11.5, Ariccia - RM', 'wp-google-maps');
4830
- __('ASL ROMA 6 POLO OSPEDALIERO OSPEDALE DEI CASTELLI', 'wp-google-maps');
4831
- __('Unità Operativa AIDS II° livello -piano terra, Via di Santa Lucia snc, Bracciano - RM', 'wp-google-maps');
4832
- __('ASL ROMA4 OSPEDALE CIVILE PADRE PIO', 'wp-google-maps');
4833
- __('Laboratorio analisi 1° Piano, L.go Donatori di Sangue, Civitavecchia - RM', 'wp-google-maps');
4834
- __('OSPEDALE S. PAOLO', 'wp-google-maps');
4835
- __('Centro Prelievi, Viale Etruria 34, Civitavecchia - RM', 'wp-google-maps');
4836
- __('Unità Operativa AIDS II livello, VIA DEGLI ESPLOSIVI 9/A, Colleferro - RM', 'wp-google-maps');
4837
- __('ASL ROMA 5 S.O.S. IGIENE PUBBLICA AMBIENTALE', 'wp-google-maps');
4838
- __('Laboratorio analisi, Via Enrico Fermi, 2, Frascati - RM', 'wp-google-maps');
4839
- __('ASL ROMA 6 - OSPEDALE FRASCATI - DISTRETTO H1', 'wp-google-maps');
4840
- __('U. O. HIV Malattie Infettive (sede di fronte l\'ospedale), Via Faravelli angolo Via Burani, Monterotondo - RM', 'wp-google-maps');
4841
- __('USL RM24 OSPEDALE CIVILE', 'wp-google-maps');
4842
- __('POLIAMBULATORIO \"BARBERINI\" DISTRETTO n.6 DELL\'ASL ROMA 6, Piazza S. Francesco, 4 (angolo Via Sangallo snc), Nettuno - RM', 'wp-google-maps');
4843
- __('Centro di offerta per il test HIV e Counseling (CTC) PRESIDIO TERRITORIALE', 'wp-google-maps');
4844
- __('UO AIDS RM5/5, Via di Porta San Martino, 38, Palestrina - RM', 'wp-google-maps');
4845
- __('ASL RM5 DISTRETTO 5 - CURE PRIMARIE', 'wp-google-maps');
4846
- __('Ambulatorio Malattie Infettive - Counseling HIV II Livello e MST -Chiostro del Pozzo, 1 piano, Via Emilio Morosini 29, Roma - RM', 'wp-google-maps');
4847
- __('ASL RM/1 OSPEDALE NUOVO REGINA MARGHERITA', 'wp-google-maps');
4848
- __('ImmunoInfettivologia, Via Di San Paolo 15, Roma - RM', 'wp-google-maps');
4849
- __('ASL RME OSPEDALE PEDIATRICO BAMBINO GESU\'', 'wp-google-maps');
4850
- __('Centro prelievi, Via Tagliamento, 19, Roma - RM', 'wp-google-maps');
4851
- __('ASL ROMA 1', 'wp-google-maps');
4852
- __('Centro prelievi, Via Garigliano, 55, Roma - RM', 'wp-google-maps');
4853
- __('Centro prelievi e counseling Hiv, Via Luzzatti, 8, Roma - RM', 'wp-google-maps');
4854
- __('Centro prelievi, Via Canova, 19, Roma - RM', 'wp-google-maps');
4855
- __('Centro prelievi, Via Dei Frentani, 6, Roma - RM', 'wp-google-maps');
4856
- __('Poliambulatorio - Centro Prelievi, Via Dina Galli, 3, Roma - RM', 'wp-google-maps');
4857
- __('ASL ROMA 1 - DISTRETTO 3', 'wp-google-maps');
4858
- __('Poliambulatorio - Centro Prelievi, Largo Rovani, 5, Roma - RM', 'wp-google-maps');
4859
- __('Poliambulatorio - Centro Prelievi, Via Lampedusa 23/27, Roma - RM', 'wp-google-maps');
4860
- __('Ambulatorio, Via Catone, 20, Roma - RM', 'wp-google-maps');
4861
- __('ASL Roma 1 - UNITA\' OPERATIVA COMPORTAMENTI A RISCHIO E MALATTIE INFETTIVE', 'wp-google-maps');
4862
- __('Ambulatorio, Viale di Valle Aurelia 115/A (già via Di Boccea 271 ), Roma - RM', 'wp-google-maps');
4863
- __('ASL ROMA 1 Centro HIV', 'wp-google-maps');
4864
- __('Centro Prelievi, Via delle Saline, 2, Roma - RM', 'wp-google-maps');
4865
- __('ASL ROMA 3', 'wp-google-maps');
4866
- __('Controllo Malattie Infettive - U. O. AIDS e MST, Viale dei Romagnoli, 781, Roma - RM', 'wp-google-maps');
4867
- __('Centro Prelievi, via passeroni, Roma - RM', 'wp-google-maps');
4868
- __('AZIENDA OSPEDALIERA G.B. GRASSI', 'wp-google-maps');
4869
- __('UOS Immunologia Clinica - Ambulatorio, Via San Giovanni in Laterano, 155, Roma - RM', 'wp-google-maps');
4870
- __('AZIENDA OSPEDALIERA SAN GIOVANNI ADDOLORATA', 'wp-google-maps');
4871
- __('Laboratorio Analisi, Via Monti di Creta, 104, Roma - RM', 'wp-google-maps');
4872
- __('FONDAZIONE LUIGI MARIA MONTI I.D.I. IRCSS', 'wp-google-maps');
4873
- __('Centro di Riferimento AIDS - Ambulatorio \"Stanza 13\", Via Portuense, 292, Roma - RM', 'wp-google-maps');
4874
- __('Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani', 'wp-google-maps');
4875
- __('Unità Operativa AIDS secondo liv Regionale D/9 ex D/12, Piazzale Dell\'Umanesimo, 10, Roma - RM', 'wp-google-maps');
4876
- __('OSPEDALE S. EUGENIO ASL ROMA 2', 'wp-google-maps');
4877
- __('UOC Mal.Inf. Ambulatorio/Centri Prelievi/day hospital, VIA Oxford, 81, Roma - RM', 'wp-google-maps');
4878
- __('POLICLINICO DI TOR VERGATA', 'wp-google-maps');
4879
- __('Ambulatorio Malattie Infettive - Malattie Infettive 2, L.go Gemelli, 8, Roma - RM', 'wp-google-maps');
4880
- __('POLICLINICO GEMELLI', 'wp-google-maps');
4881
- __('Centro di Riferimento AIDS - Unità Operativa di III Livello, Viale Regina Elena, 330, Roma - RM', 'wp-google-maps');
4882
- __('POLICLINICO UMBERTO I° - AZIENDA OSPEDALIERO UNIVIVERSITARIA - UOD - SMID05- (Direttore V. Vullo)', 'wp-google-maps');
4883
- __('Distretto 8, Via San Nemesio, 28, Roma - RM', 'wp-google-maps');
4884
- __('Servizio per HIV e AIDS ASL Roma 2', 'wp-google-maps');
4885
- __('ASL RMG- Lab. Analisi, Contrada Colle Cisterna, Subiaco - RM', 'wp-google-maps');
4886
- __('OSPEDALE ANGELUCCI', 'wp-google-maps');
4887
- __('Laboratorio Analisi Patologia Clinica e Microbiologia, Via Parrozzani, 3, Tivoli - RM', 'wp-google-maps');
4888
- __('PRESIDIO OSPEDALIERO DI TIVOLI ASL RM5 - OSPEDALE SAN GIOVANNI EVANGELISTA', 'wp-google-maps');
4889
- __('Centro Prelievi, Largo Donatori del sangue 6, Tolfa - RM', 'wp-google-maps');
4890
- __('Laboratorio Analisi, via Borgo San Martino 11, Zagarolo - RM', 'wp-google-maps');
4891
- __('POLIAMBULATORIO CENTRO PRELIEVI', 'wp-google-maps');
4892
- __('Laboratorio Analisi Cliniche e Microbiologiche, Via Ferretti, 169, Civita Castellana - VT', 'wp-google-maps');
4893
- __('OSPEDALE CIVILE ANDOSILLA', 'wp-google-maps');
4894
- __('Lab. Analisi Cliniche, Via Verentana, Montefiascone - VT', 'wp-google-maps');
4895
- __('U.O.S.D. Diagnostica Clinica d\'Urgenza Tarquinia, Viale Igea, 1, Tarquinia - VT', 'wp-google-maps');
4896
- __('Centro di Riferimento AIDS - III livello, Strada S. Martinese, Viterbo - VT', 'wp-google-maps');
4897
- __('OSPEDALE BELCOLLE', 'wp-google-maps');
4898
- __('U. O. Complessa Malattie Infettive, Ambulatorio Malattie Infettive - Pad. A1, Via Alessandro Volta, 8, Genova - GE', 'wp-google-maps');
4899
- __('ENTE OSPEDALIERO OSPEDALE GALLIERA', 'wp-google-maps');
4900
- __('Sezione di Immunoematologia e Medicina trasfusionale - Piano terra- Pad. 12, Via Gerolamo Gaslini, 5, Genova - GE', 'wp-google-maps');
4901
- __('ISTITUTO PEDIATRICO GIANNINA GASLINI', 'wp-google-maps');
4902
- __('Amulatorio Malattie Infettive - Piano -2 - Padiglione Patologie Complesse, L.go Rossana Benzi 10, Genova - GE', 'wp-google-maps');
4903
- __('OSPEDALE POLICLINICO S.MARTINO CLINICA MALATTIE INFETTIVE', 'wp-google-maps');
4904
- __('Laboratorio Analisi, Via Aurelia, 122, Bordighera - IM', 'wp-google-maps');
4905
- __('ASL 1 IMPERIESE', 'wp-google-maps');
4906
- __('Laboratorio Analisi, Via S. Agata, 57, Imperia - IM', 'wp-google-maps');
4907
- __('Centro Trasfusionale, Via S. Agata, 57, Imperia - IM', 'wp-google-maps');
4908
- __('OSPEDALE CIVILE S. AGATA', 'wp-google-maps');
4909
- __('Dipartimento Medico - Ambulatorio Malattie Infettive, Via G. Borea, 56, Sanremo - IM', 'wp-google-maps');
4910
- __('ASL 1 (AZIENDA OSPEDALE IMPERIESE) OSPEDALE CIVILE SANREMO', 'wp-google-maps');
4911
- __('Struttura Complessa Malattie Infettive ed Epatologia, via Variante Cisa Sud, Sarzana - SP', 'wp-google-maps');
4912
- __('OSPEDALE SAN BARTOLOMEO - AMBULATORIO DI MALATTIE INFETTIVE', 'wp-google-maps');
4913
- __('Ambulatorio di Malattie Infettive, Via Martiri della foce (zona Bagnoli), Albenga - SV', 'wp-google-maps');
4914
- __('AZIENDA SANITARIA ASL2 SAVONESE OSPEDALE S.M DELLA MISERICORDIA', 'wp-google-maps');
4915
- __('Ambulatorio Malattie Infettive, Via Genova, 20, Savona - SV', 'wp-google-maps');
4916
- __('ASL 2 SAVONESE OSPEDALE S. PAOLO', 'wp-google-maps');
4917
- __('Servizio Immunoematologia e Medicina Trasfusionale, Via Genova, 30 (Località Valloria), Savona - SV', 'wp-google-maps');
4918
- __('OSPEDALE S.PAOLO', 'wp-google-maps');
4919
- __('Punto Prelievi, Via OMS, 1, Bergamo - BG', 'wp-google-maps');
4920
- __('AZIENDA OSPEDALIERA PAPA GIOVANNI XXIII°', 'wp-google-maps');
4921
- __('Laboratorio analisi, Via Martinoli, 9, Lovere - BG', 'wp-google-maps');
4922
- __('ASST-BERGAMOEST Presidio Ospedaliero di Lovere - Servizio Patologia Clinica', 'wp-google-maps');
4923
- __('Laboratorio Analisi, Via Groppino, 22, Piario - BG', 'wp-google-maps');
4924
- __('PRESIDIO OSPEDALIERO BOLOGNINI - OSPEDALE CIVILE', 'wp-google-maps');
4925
- __('U.O. Medicina di Laboratorio - Punto Prelievi, Via Paderno, 21, Seriate - BG', 'wp-google-maps');
4926
- __('ASST BERGAMOEST OSPEDALE BOLOGNINI SERIATE', 'wp-google-maps');
4927
- __('Laboratorio Analisi, Largo Menguzzi, 1, Treviglio - BG', 'wp-google-maps');
4928
- __('Azienda Socio Sanitaria Bergamo Ovest', 'wp-google-maps');
4929
- __('PUNTO PRELIEVO, Via Tito Speri 16/A, Bagolino - BS', 'wp-google-maps');
4930
- __('ASST GARDA', 'wp-google-maps');
4931
- __('Dipartimento di Igiene e Prevenzione Sanitaria, Via Nissolina, 2, Breno - BS', 'wp-google-maps');
4932
- __('ATS MONTAGNA', 'wp-google-maps');
4933
- __('Struttura Semplice Medicina Transculturale e Malattie a Trasmissione Sessuale, Viale del Piave, 40, Brescia - BS', 'wp-google-maps');
4934
- __('ASST Spedali Civili di Brescia', 'wp-google-maps');
4935
- __('Ambulatorio di Malattie Infettive/Piano terra, Piazzale Spedali Civili, 1, Brescia - BS', 'wp-google-maps');
4936
- __('ASST SPEDALI CIVILI DI BRESCIA - UNIVERSITA\' DEGLI STUDI DI BRESCIA - CLINICA MALATTIE INFETTIVE E TROPICALI', 'wp-google-maps');
4937
- __('Laboratorio Analisi, Via Balestrieri 7, Brescia - BS', 'wp-google-maps');
4938
- __('ATS BRESCIA-LABORATORIO DI SANITA\' PUBBLICA', 'wp-google-maps');
4939
- __('PUNTO PRELIEVO, Via XXIV Maggio, Capovalle - BS', 'wp-google-maps');
4940
- __('Punto Prelievi di Darfo, Via Cercovi, Darfo Boario Terme - BS', 'wp-google-maps');
4941
- __('Laboratorio di Patologia Clinica PUNTO PRELIEVI di DARFO ASST VALCAMONICA', 'wp-google-maps');
4942
- __('PUNTO PRELIEVO, località Montecroce 1, Desenzano del Garda - BS', 'wp-google-maps');
4943
- __('OSPEDALE DI DESENZANO', 'wp-google-maps');
4944
- __('Laboratorio di Patologia Clinica - Centro Prelievi Edolo, Piazza Donatori di Sangue, 1, Edolo - BS', 'wp-google-maps');
4945
- __('OSPEDALE di EDOLO ASST VALCAMONICA', 'wp-google-maps');
4946
- __('Laboratorio Analisi, Via A. Manzoni 142, Esine - BS', 'wp-google-maps');
4947
- __('OSPEDALE di ESINE ASST VALCAMONICA', 'wp-google-maps');
4948
- __('Laboratorio analisi chimico cliniche, Via Giovanni XXIII, 4, Gardone Val Trompia - BS', 'wp-google-maps');
4949
- __('SPEDALI CIVILI DI BRESCIA - PRESIDIO OSPEDALIERO 0SPEDALE di GARDONE', 'wp-google-maps');
4950
- __('PUNTO PRELIEVO, Via Repubblica 2, Gargnano - BS', 'wp-google-maps');
4951
- __('Laboratorio analisi cliniche, Via Andrea Gosa, 74, Gavardo - BS', 'wp-google-maps');
4952
- __('ASST del Garda - PO GAVARDO-SALO\'', 'wp-google-maps');
4953
- __('Laboratorio Analisi Chimiche Cliniche e Microbiologiche, Via GiardinI Garibaldi, 10, Iseo - BS', 'wp-google-maps');
4954
- __('AZIENDA SOCIO SANITARIA TERRITORIALE DELLA FRANCIACORTA', 'wp-google-maps');
4955
- __('PUNTO PRELIEVO, Via Don A. Merici 3, Manerba del Garda - BS', 'wp-google-maps');
4956
- __('PUNTO PRELIEVO, Via Inganni 24, Mazzano - BS', 'wp-google-maps');
4957
- __('PUNTO PRELIEVO, Via IV Novembre 5/B, Odolo - BS', 'wp-google-maps');
4958
- __('Punto Prelievi di Pisogne, Via Valeriana,1, Pisogne - BS', 'wp-google-maps');
4959
- __('Laboratorio di Patologia Clinca Punto Prelievi di Pisogne ASST di Valcamonica', 'wp-google-maps');
4960
- __('PUNTO PRELIEVO, via Longarone 22, Pozzolengo - BS', 'wp-google-maps');
4961
- __('PUNTO PRELIEVO, P.zza Virgilio 1, Sirmione - BS', 'wp-google-maps');
4962
- __('PUNTO PRELIEVO, Via Provinciale 1, Valvestino - BS', 'wp-google-maps');
4963
- __('PUNTO PRELIEVO, Via Reverberi, 2, Vestone - BS', 'wp-google-maps');
4964
- __('PUNTO PRELIEVO, Via Falck, 5, Vobarno - BS', 'wp-google-maps');
4965
- __('Centro IST, Via Napoleona, 60, Como - CO', 'wp-google-maps');
4966
- __('Centro IST di ASST Lariana', 'wp-google-maps');
4967
- __('U.O. Patologia Clinica, Via Ravona, 4, San Fermo della Battaglia - CO', 'wp-google-maps');
4968
- __('PRESIDIO S. ANNA DI COMO - ASST-Lariana', 'wp-google-maps');
4969
- __('Laboratorio analisi, L.go Ugo Dossena, 2, Crema - CR', 'wp-google-maps');
4970
- __('A.S.S.T. DI CREMA', 'wp-google-maps');
4971
- __('Gruppo C, Via San Sebastiano, 14, Cremona - CR', 'wp-google-maps');
4972
- __('ASST-CREMONA', 'wp-google-maps');
4973
- __('ASST- Cremona Punto Prelievi c/o SERT CREMONA, Via San Sebastiano, snc, Cremona - CR', 'wp-google-maps');
4974
- __('GRUPPO C', 'wp-google-maps');
4975
- __('Centro Prevenzione HIV/AIDS - Punto Salute, Via G. Tubi, 43, Lecco - LC', 'wp-google-maps');
4976
- __('ATS DELLA BRIANZA', 'wp-google-maps');
4977
- __('Laboratorio di Microbiologia, Largo Donatori del Sangue 1, Lodi - LO', 'wp-google-maps');
4978
- __('Ospedale Maggiore di Lodi', 'wp-google-maps');
4979
- __('Laboratorio Analisi Chimico - Cliniche, P.zza 80° Fanteria, 1, Asola - MN', 'wp-google-maps');
4980
- __('ASST MANTOVA -CARLO POMA - PRESIDIO OSPEDALIERO DI ASOLA', 'wp-google-maps');
4981
- __('Laboratorio Analisi, Via XXV Aprile, 25, Bozzolo - MN', 'wp-google-maps');
4982
- __('ASST MANTOVA PRESIDIO RIABILITATIVO MULTIFUNZIONALE DON PRIMO MAZZOLARI', 'wp-google-maps');
4983
- __('Laboratorio Analisi, Via Garibaldi 65, Castiglione delle Stiviere - MN', 'wp-google-maps');
4984
- __('Ospedale SAN PELLEGRINO Gruppo Mantova Salus', 'wp-google-maps');
4985
- __('Malattie infettive, Strada Lago Paiolo, 10, Mantova - MN', 'wp-google-maps');
4986
- __('ASST DI MANTOVA, OSPEDALE CARLO POMA', 'wp-google-maps');
4987
- __('Laboratorio Analisi, Strada Lago Paiolo, 10, Mantova - MN', 'wp-google-maps');
4988
- __('ASST Mantova - DIPARTIMENTO dei SERVIZI', 'wp-google-maps');
4989
- __('Ambulatorio Prevenzione, Via dei Toscani, 1, Mantova - MN', 'wp-google-maps');
4990
- __('SERV. IGIENE E SANITA\' PUBBLICA - ASL MANTOVA', 'wp-google-maps');
4991
- __('Laboratorio Analisi, via San Francesco 24, Pieve di Coriano - MN', 'wp-google-maps');
4992
- __('ASST MANTOVA AZIENDA SOCIO SANITARIA TERRITORIALE MANTOVA', 'wp-google-maps');
4993
- __('Struttura Semplice - Laboratorio analisi, Piazza Mussi, 1, Abbiategrasso - MI', 'wp-google-maps');
4994
- __('ASST OVEST MILANESE PRESIDIO OSPEDALIERO C. CANTU\' ABBIATEGRASSO', 'wp-google-maps');
4995
- __('Servizio di Medicina Trasfusionale, Via Piave, 20, Bollate - MI', 'wp-google-maps');
4996
- __('AZIENDA OSPEDALIERA G. SALVINI DI GARBAGNATE - OSPEDALE CADUTI BOLLATESI', 'wp-google-maps');
4997
- __('Laboratorio Analisi, Via Badi, 4, Cuggiono - MI', 'wp-google-maps');
4998
- __('ASST-OVEST MILANESE- OSPEDALE DI CUGGIONO', 'wp-google-maps');
4999
- __('U. O. Servizio di Immunoematologia e Medicina Trasfusionale, V.le Forlanini 95, Garbagnate Milanese - MI', 'wp-google-maps');
5000
- __('ASST-RHODENSE A.O. SALVINI', 'wp-google-maps');
5001
- __('Centro Prelievi, Via Bellini 1, Gorgonzola - MI', 'wp-google-maps');
5002
- __('AZIENDA SOCIO SANITARIA TERRITORIALE DI MELEGNANO E DELLA MARTESANA', 'wp-google-maps');
5003
- __('Ambulatorio Malattie Infettive, Via Papa Giovanni Paolo II, Legnano - MI', 'wp-google-maps');
5004
- __('Asst ovest milanese', 'wp-google-maps');
5005
- __('Servizio Tossicodipendenze, Via Rossini 27, Magenta - MI', 'wp-google-maps');
5006
- __('ASST-OVESTMI DIPARTIMENTO DI SALUTE MENTALE E DIPENDENZE', 'wp-google-maps');
5007
- __('Ambulatorio MTS, Via Mantova 10, Melzo - MI', 'wp-google-maps');
5008
- __('Ambulatorio MTS - ATS della Città Metropolitana di Milano', 'wp-google-maps');
5009
- __('Servizio di Medicina di Laboratorio, Via Bartolomeo D\'Alviano, 78, Milano - MI', 'wp-google-maps');
5010
- __('ASP GOLGI-REDAELLI. ISTITUTO GERIATRICO PIERO REDAELLI', 'wp-google-maps');
5011
- __('Centro Prelievi - Pad. 56 - Piano - 1, Via G.B. Grassi, 74, Milano - MI', 'wp-google-maps');
5012
- __('ASST FBF SACCO - OSPEDALE LUIGI SACCO U.O.C di MALATTIE INFETTIVE 3', 'wp-google-maps');
5013
- __('Ambulatorio Malattie Infettive - Pad. 11 - primo piano, P.zza Ospedale Maggiore, 3, Milano - MI', 'wp-google-maps');
5014
- __('ASST Grande Ospedale Metropolitano Niguarda', 'wp-google-maps');
5015
- __('Centro Prelievi, Via Pio II, 3, Milano - MI', 'wp-google-maps');
5016
- __('ASST SANTI PAOLO e CARLO - Presidio Ospedaliero SAN CARLO BORROMEO', 'wp-google-maps');
5017
- __('UOC MTS di Milano, Viale Jenner, 44, Milano - MI', 'wp-google-maps');
5018
- __('ATS della Città Metropolitana di Milano', 'wp-google-maps');
5019
- __('Ambulatorio delle Malattie Infettive, Via G.B. Grassi, 74 Padigl. 56, Milano - MI', 'wp-google-maps');
5020
- __('AZIENDA OSP. LUIGI SACCO POLO UNIVERSITARIO', 'wp-google-maps');
5021
- __('Unità Operativa Complessa Malattie Infettive, via Francesco Sforza, 28, Milano - MI', 'wp-google-maps');
5022
- __('Fondazione IRCCS Ca\' Granda Ospedale Maggiore Policlinico', 'wp-google-maps');
5023
- __('Centro Malattie a Trasmissione Sessuale - Ambulatorio Cave, Via Pace, 9, Milano - MI', 'wp-google-maps');
5024
- __('FONDAZIONE IRCCS CA\' GRANDE OSPEDALE MAGGIORE POLICLINICO DI MILANO', 'wp-google-maps');
5025
- __('U.O.S. di Virologia, Via S.Barnaba, 8, Milano - MI', 'wp-google-maps');
5026
- __('FONDAZIONE IRCCS CA\' GRANDE POLICLINICO - PADIGLIONE RODRIGO DEVOTO', 'wp-google-maps');
5027
- __('Trasfusionale, Via G. Venezian, 1, Milano - MI', 'wp-google-maps');
5028
- __('FONDAZIONE ISTITUTO NAZIONALE TUMORI IRCCS SIMT', 'wp-google-maps');
5029
- __('Ambulatorio Malattie Infettive S.Luigi (Ville Turro), Via Stamira d\'Ancona, 20, Milano - MI', 'wp-google-maps');
5030
- __('OSPEDALE S.RAFFAELE', 'wp-google-maps');
5031
- __('Laboratorio Analisi, Via Olgettina n.60, Milano - MI', 'wp-google-maps');
5032
- __('OSPEDALE SAN RAFFAELE IRCCS - SERVIZIO DI MEDICINA DI LABORATORIO', 'wp-google-maps');
5033
- __('Ambulatorio MTS-Rho, Via Cadorna,32, Rho - MI', 'wp-google-maps');
5034
- __('Centro Prelievi CUP, Via Legnano,22, Rho - MI', 'wp-google-maps');
5035
- __('AZIENDA OSPEDALIERA SALVINI- OSPEDALE CIVILE', 'wp-google-maps');
5036
- __('Polo zonale - Ambulatorio Periferico, Viale Matteotti, 13, Sesto San Giovanni - MI', 'wp-google-maps');
5037
- __('CENTRO RIFERIMENTO HIV/AIDS - ATS della Città Metropolitana di Milano', 'wp-google-maps');
5038
- __('Laboratorio Analisi, Via Pandina, 1, Vizzolo Predabissi - MI', 'wp-google-maps');
5039
- __('ASST Melegnano e Martesana', 'wp-google-maps');
5040
- __('Laboratorio Analisi, Via Mazzini, 1, Desio - MB', 'wp-google-maps');
5041
- __('ASST MONZA - PRESIDIO OSPEDALIERO DI DESIO', 'wp-google-maps');
5042
- __('Unità Operativa Complessa Malattie Infettive, Via Pergolesi, 33, Monza - MB', 'wp-google-maps');
5043
- __('ASST di Monza e Brianza - Ospedale San Gerardo', 'wp-google-maps');
5044
- __('Punto Prelievi, Via Pergolesi, 33, Monza - MB', 'wp-google-maps');
5045
- __('ASST MONZA OSPEDALE S.GERARDO', 'wp-google-maps');
5046
- __('Unità Operativa Malattie a Trasmissione Sessuale, Via Dante, 1, Muggiò - MB', 'wp-google-maps');
5047
- __('ATS Brianza', 'wp-google-maps');
5048
- __('Unità Operativa Malattie a Trasmissione Sessuale / Padiglione A - Centro Polivalente, Via Roma, 85, Usmate Velate - MB', 'wp-google-maps');
5049
- __('ATS Brianza (Monza e Brianza)', 'wp-google-maps');
5050
- __('Dipartimento di Patologia Clinica- Laboratorio Analisi - ASST di Pavia, L.go Avis,1, Casorate Primo - PV', 'wp-google-maps');
5051
- __('PRESIDIO OSPEDALIERO CASORATE PRIMO OSPEDALE CARLO MIRA', 'wp-google-maps');
5052
- __('Laboratorio Analisi, V.le dei Mille, 23, Mede - PV', 'wp-google-maps');
5053
- __('AZIENDA OSPEDALIERA PAVIA - U.O. Dipartimento Patologia Clinica', 'wp-google-maps');
5054
- __('Ser.D, P.le Golgi, 3/B, Pavia - PV', 'wp-google-maps');
5055
- __('ASST DI PAVIA', 'wp-google-maps');
5056
- __('Dipartimento Malattie Infettive (Pad. 42) - Struttura Complessa Malattie Infettive - Ambulatorio 5, V.le Taramelli, 5, Pavia - PV', 'wp-google-maps');
5057
- __('FONDAZIONE IRCCS POLICLINICO S.MATTEO', 'wp-google-maps');
5058
- __('Laboratorio Analisi, Via Achilli 3, Stradella - PV', 'wp-google-maps');
5059
- __('OSPEDALE UNIFICATO BRONI-STRADELLA', 'wp-google-maps');
5060
- __('Laboratorio Analisi, Via Repetti,1, Varzi - PV', 'wp-google-maps');
5061
- __('SMeL VARZI - SERVIZIO DI MEDICINA DI LABORATORIO - OSPEDALE SS ANNUNZIATA- ASST di PAVIA', 'wp-google-maps');
5062
- __('Ser.D., Via Trieste, 23, Vigevano - PV', 'wp-google-maps');
5063
- __('ASL DI PAVIA', 'wp-google-maps');
5064
- __('Servizio di Immunoematologia e Medicina Trasfusionale, Corso Milano, 19, Vigevano - PV', 'wp-google-maps');
5065
- __('ASST provincia di PAVIA OSPEDALE CIVILE', 'wp-google-maps');
5066
- __('Laboratorio Analisi Cliniche e Microbiologiche., Via Volturno, 14, Voghera - PV', 'wp-google-maps');
5067
- __('AZIENDA OSPEDALIERA VOGHERA - OSPEDALE CIVILE', 'wp-google-maps');
5068
- __('Dipartimento di igiene e Prevenzione Sanitaria, Via Agoi, 8, Bormio - SO', 'wp-google-maps');
5069
- __('Ser.T - Sportello Distrettuale, Via G.B. Cerletti, 9, Chiavenna - SO', 'wp-google-maps');
5070
- __('ASL SONDRIO', 'wp-google-maps');
5071
- __('Dipartimento Igiene e Prevenzione Sanitaria, Piazza Corbetta, 1, Chiavenna - SO', 'wp-google-maps');
5072
- __('Dipartimento di Igiene e Prevenzione Sanitaria, Via Martinelli, 13, Morbegno - SO', 'wp-google-maps');
5073
- __('Dipartimento Prevenzione Medico- Sportello Distrettuale, Via Martinelli, 13, Morbegno - SO', 'wp-google-maps');
5074
- __('U. O. Semplice Malattie Infettive- Laboratorio Analisi, Via Zubiani 33, Sondalo - SO', 'wp-google-maps');
5075
- __('PRESIDIO OSPEDALIERO DI SONDALO', 'wp-google-maps');
5076
- __('Ser.T, Via Stelvio, 35, Sondrio - SO', 'wp-google-maps');
5077
- __('ASST DELLA VALTELLINA E ALTO LARIO', 'wp-google-maps');
5078
- __('Dipartimento di Igiene e Prevenzione Sanitaria, Via Stelvio, 32/A, Sondrio - SO', 'wp-google-maps');
5079
- __('Servizio di Immunoematologia e Medicina Trasfusionale, Via Stelvio, 25, Sondrio - SO', 'wp-google-maps');
5080
- __('AZIENDA SOCIO SANITARIA TERRITORIALE (ASST) VALTELLINA E ALTO LARIO', 'wp-google-maps');
5081
- __('Laboratorio Analisi, Via Stelvio, 25, Sondrio - SO', 'wp-google-maps');
5082
- __('Ser.T - Sportello Distrettuale, Via Dei Cappuccini, 4, Tirano - SO', 'wp-google-maps');
5083
- __('Dipartimento di Igiene e Prevenzione Sanitaria, Via Cappuccini, 4, Tirano - SO', 'wp-google-maps');
5084
- __('Ambulatorio di Malattie Infettive, Via Arnaldo da Brescia, 1, Busto Arsizio - VA', 'wp-google-maps');
5085
- __('ASST VALLE OLONA - OSPEDALE DI BUSTO ARSIZIO', 'wp-google-maps');
5086
- __('Laboratorio Analisi, Via Luvini 1, Cittiglio - VA', 'wp-google-maps');
5087
- __('OSPEDALE CAUSA PIA LUVINI Centro Prelievi', 'wp-google-maps');
5088
- __('Centro Prelievi - Pad.giallo 1° piano, P.zzale Borella, 1, Saronno - VA', 'wp-google-maps');
5089
- __('ASST VALLE OLONA - OSPEDALE DI SARONNO', 'wp-google-maps');
5090
- __('Laboratorio Analisi, Piazza Zanaboni, 1, Tradate - VA', 'wp-google-maps');
5091
- __('ASST SETTELAGHI - PRESIDIO OSPEDALIERO TRADATE', 'wp-google-maps');
5092
- __('Laboratorio Microbiologia Clinica, Viale Borri 57, Varese - VA', 'wp-google-maps');
5093
- __('A.O. UNIVERSITARIA - OSPEDALE DI CIRCOLO E FONDAZIONE MACCHI', 'wp-google-maps');
5094
- __('Malattie Infettive e Tropicali, Viale Borri, 57, Varese - VA', 'wp-google-maps');
5095
- __('ASST-SETTE LAGHI PRESIDIO OSPEDALE DI CIRCOLO FONDAZIONE MACCHI', 'wp-google-maps');
5096
- __('SOD VIROLOGIA - Blocco E piano IV, Via Conca, 71, Ancona - AN', 'wp-google-maps');
5097
- __('AZIENDA OSPEDALIERA UNIVERSITARIA OSPEDALE RIUNITI UMBERTO I - LANCISI - SALESI', 'wp-google-maps');
5098
- __('Clinica Malattie Infettive - Piano 0, Via Conca, 71, Ancona - AN', 'wp-google-maps');
5099
- __('AZIENDA OSPEDALIERO-UNIVERSITARIA - OSPEDALI RIUNITI DI ANCONA - LOCALITA\' TORRETTE', 'wp-google-maps');
5100
- __('Laboratorio Analisi Chimico-Cliniche e Microbiologiche, Via Montagnola 81, Ancona - AN', 'wp-google-maps');
5101
- __('U.O.C Laboratorio Analisi Chimico-Cliniche e Molecolari', 'wp-google-maps');
5102
- __('SEROLOGIA INFETTIVOLOGICA, Via della Montagnola, 81, Ancona - AN', 'wp-google-maps');
5103
- __('U.O.C. LABORATORIO ANALISI CHIMICO CLINICHE E MOLECOLARI - INRCA', 'wp-google-maps');
5104
- __('Unità Operativa Semplice Dipartimentale Laboratorio Analisi Fabriano e Coagulazione 2° livello, Via Marconi, 9, Fabriano - AN', 'wp-google-maps');
5105
- __('AZIENDA SANITARIA UNICA REGIONALE (ASUR) - AREA VASTA 2', 'wp-google-maps');
5106
- __('U.O. C. Patologia Clinica AREA VASTA 2, Via Aldo Moro, Jesi - AN', 'wp-google-maps');
5107
- __('ASUR MARCHE AREA VASTA 2 - OSPEDALE CIVILE', 'wp-google-maps');
5108
- __('Laboratorio Analisi Chimico Cliniche, Via S. Francesco,1, Loreto - AN', 'wp-google-maps');
5109
- __('ASUR MARCHE AREA VASTA N. 2 - OSPEDALE SANTA CASA DI LORETO - U.O.S.D. DI MEDICINA DI LABORATORIO', 'wp-google-maps');
5110
- __('Laboratorio Analisi, Via Cellini, 1, Senigallia - AN', 'wp-google-maps');
5111
- __('ASUR MARCHE AREA VASTA n. 2 OSPEDALE DI SENIGALLIA', 'wp-google-maps');
5112
- __('Ambulatorio Malattie Infettive, Via degli Iris, 1 (quartiere Monticelli), Ascoli Piceno - AP', 'wp-google-maps');
5113
- __('AZIENDA SANITARIA UNICA REGIONALE (ASUR) AREA VASTA N.5 OSPEDALE CIVILE', 'wp-google-maps');
5114
- __('Laboratorio Analisi Chimico Cliniche, Via Manara, 7, San Benedetto del Tronto - AP', 'wp-google-maps');
5115
- __('ASUR AREA VASTA N.5 MARCHE', 'wp-google-maps');
5116
- __('Unità Operativa Complessa Malattie Infettive, Via A. Murri, 9, Fermo - FM', 'wp-google-maps');
5117
- __('OSPEDALE CIVILE DI FERMO \"A. MURRI\" - AREA VASTA 4 - REGIONE MARCHE', 'wp-google-maps');
5118
- __('Laboratorio Analisi, Via Murri, Fermo - FM', 'wp-google-maps');
5119
- __('OSPEDALE DI ZONA - AREA VASTA n. 4', 'wp-google-maps');
5120
- __('Laboratorio Analisi, Via Contrada S. Domenico, 132, Civitanova Marche - MC', 'wp-google-maps');
5121
- __('AZIENDA OSPEDALIERA AREA VASTA N. 3', 'wp-google-maps');
5122
- __('Laboratorio Analisi, Via S.Lucia, 2, Macerata - MC', 'wp-google-maps');
5123
- __('AZIENDA OSPEDALIERA OSPEDALE GENERALE', 'wp-google-maps');
5124
- __('Gruppo C, Via S. Lucia, 2, Macerata - MC', 'wp-google-maps');
5125
- __('SERVIZIO TERRITORIALE DIPENDENZE PATOLOGICHE AREA VASTA N. 3 MACERATA OSPEDALE CIVILE', 'wp-google-maps');
5126
- __('Laboratorio Analisi Unità Operativa Complessa - Punto Prelievi, P.le Andrea da Recanati, 2, Recanati - MC', 'wp-google-maps');
5127
- __('AREA VASTA N.3 MACERATA - OSPEDALE DI RECANATI', 'wp-google-maps');
5128
- __('Laboratorio Analisi, Via Veneto, 2, Fano - PU', 'wp-google-maps');
5129
- __('OSPEDALI RIUNITI MARCHE NORD - PRESIDIO DI FANO', 'wp-google-maps');
5130
- __('Ambulatorio Malattie Infettive - Padiglione 1/ 1° piano, Via Lombroso, snc, Pesaro - PU', 'wp-google-maps');
5131
- __('AZIENDA OSPEDALIERA OSPEDALI RIUNITI MARCHE NORD - OSPEDALE S.SALVATORE PRESIDIO DI MURAGLIA', 'wp-google-maps');
5132
- __('Centro Prelievi Muraglia Laboratorio Analisi Microbiologiche - Patologia Clinica, Via Lombroso, 1, Pesaro - PU', 'wp-google-maps');
5133
- __('OSPEDALI RIUNITI AZIENDA MARCHE NORD - PRESIDIO SAN SALVATORE', 'wp-google-maps');
5134
- __('Amubulatorio di Informazione Prevenzione e Consulenza HIV, Viale Comandino, 21, Urbino - PU', 'wp-google-maps');
5135
- __('DIPARTIMENTO PREVENZIONE U.O.C. IGIENE E SANITA\' PUBBLICA - PREVENZIONE MALATTIE INFETTIVE', 'wp-google-maps');
5136
- __('Unità Operativa Complessa Medicina Trasfusionale, Contrada Tappino, Campobasso - CB', 'wp-google-maps');
5137
- __('ASR MOLISE AZIENDA OSPEDALIERA PRESIDIO OSPEDALIERO OSP. CARDARELLI', 'wp-google-maps');
5138
- __('Centro Trasfusionale, Via S.Francesco,1, Termoli - CB', 'wp-google-maps');
5139
- __('U.O.C. MEDICINA TRASFUSIONALE - PRESIDIO OSPEDALIERO S. TIMOTEO', 'wp-google-maps');
5140
- __('Laboratorio Analisi, V.le Marconi, 21, Agnone - IS', 'wp-google-maps');
5141
- __('ASR MOLISE - STABILIMENTO OSPEDALIERO - OSPEDALE S. FRANCESCO CARACCIOLO', 'wp-google-maps');
5142
- __('Laboratorio Analisi Cliniche, Via S. Ippolito, Isernia - IS', 'wp-google-maps');
5143
- __('OSPEDALE CIVILE FERDINANDO VENEZIALE', 'wp-google-maps');
5144
- __('Centro Trasfusionale, Via S. Ippolito, Isernia - IS', 'wp-google-maps');
5145
- __('U.O.S. MEDICINA TRASFUSIONALE OSPEDALE CIVILE FERDINANDO VENEZIALE', 'wp-google-maps');
5146
- __('Laboratorio di ChimicaClinica e Microbiologia, Via Fatebene Fratelli, 1, Acqui Terme - AL', 'wp-google-maps');
5147
- __('ASL AL P. O. OSPEDALE CIVILE MONS. GIOVANNI GALLIANO', 'wp-google-maps');
5148
- __('Laboratorio di Microbiololgia, Via Venezia, 16, Alessandria - AL', 'wp-google-maps');
5149
- __('AZIENDA OSPEDALIERA OSPEDALE SS. ANTONIO E BIAGIO E CESARE ARRIGO', 'wp-google-maps');
5150
- __('Malattie Virali - Ambulatorio piano terra, V.le Giolitti, 2, Casale Monferrato - AL', 'wp-google-maps');
5151
- __('ASL AL OSPEDALE S. SPIRITO', 'wp-google-maps');
5152
- __('Laboratorio Analisi, Via Edilio Raggio, 12, Novi Ligure - AL', 'wp-google-maps');
5153
- __('AZIENDA OSPEDALIERA ASL AL OSP.- S. GIACOMO', 'wp-google-maps');
5154
- __('Laboratorio Analisi, Via Ruffini, 22, Ovada - AL', 'wp-google-maps');
5155
- __('OSPEDALE CIVILE ASL AL - PRESIDIO OSPEDALIERO', 'wp-google-maps');
5156
- __('Laboratorio Analisi Microbiologiche, P.zza Felice Cavallotti, 7, Tortona - AL', 'wp-google-maps');
5157
- __('PRESIDIO OSPEDALIERO DI TORTONA ASL/AL', 'wp-google-maps');
5158
- __('Ambulatorio PIANO 0, Corso Dante, 202, Asti - AT', 'wp-google-maps');
5159
- __('ASL ASTI OSPEDALE CARDINAL MASSAIA - DIVISIONE MALATTIE INFETTIVE', 'wp-google-maps');
5160
- __('Centro Prelievi, Via Pier Maffei, 59, Cossato - BI', 'wp-google-maps');
5161
- __('ASL BI DISTRETTO 2 COSSATO', 'wp-google-maps');
5162
- __('Ambulatorio Malattie Infettive, via dei Ponderanesi, 2, Ponderano - BI', 'wp-google-maps');
5163
- __('OSPEDALE DEGLI INFERMI', 'wp-google-maps');
5164
- __('Laboratorio Analisi, Via Pierino Belli, 26, Alba - CN', 'wp-google-maps');
5165
- __('ASL CN2 - OSPEDALE SAN LAZZARO', 'wp-google-maps');
5166
- __('Laboratorio Analisi, Via S. Bernardino, 4, Ceva - CN', 'wp-google-maps');
5167
- __('AZIENDA OSPEDALI RIUNITI CEVA E MONDOVI\'', 'wp-google-maps');
5168
- __('Servizio Infermieristico Territoriale, Via XX Settembre, Ceva - CN', 'wp-google-maps');
5169
- __('OSPEDALE VECCHIO DISTRETTO DI CEVA', 'wp-google-maps');
5170
- __('Centro prelievi, Via Carlo Boggio, 14, Cuneo - CN', 'wp-google-maps');
5171
- __('A.O. SANTA CROCE E CARLE DI CUNEO', 'wp-google-maps');
5172
- __('Struttura Complessa Operativa Malattie Infettive e Tropicali, Via Carle, 5, Cuneo - CN', 'wp-google-maps');
5173
- __('AZIENDA OSPEDALIERA SANTA CROCE E CARLE - PRESIDIO CARLE', 'wp-google-maps');
5174
- __('Laboratorio Analisi, Via S. Rocchetto, 99, Mondovì - CN', 'wp-google-maps');
5175
- __('OSPEDALE CIVILE REGINA MONTIS REGALIS - ASL CN1', 'wp-google-maps');
5176
- __('Laboratorio Analisi Cliniche, Via Spielberg, 58, Saluzzo - CN', 'wp-google-maps');
5177
- __('ASL CN 1 - AZIENDA OSPEDALIERA OSPEDALE CIVILE DI SALUZZO', 'wp-google-maps');
5178
- __('Via S.Carlo, 2, Arona - NO', 'wp-google-maps');
5179
- __('CENTRO PRELIEVI', 'wp-google-maps');
5180
- __('Struttura Complessa Malattie Infettive, C.so G. Mazzini, 18, Novara - NO', 'wp-google-maps');
5181
- __('AZIENDA OSPEDALIERA UNIVERSITARIA OSPEDALE MAGGIORE DELLA CARITA\'', 'wp-google-maps');
5182
- __('Centro Malattie Sessualmente Trasmesse Clinica Dermatologica - pad. G sottopiano, Corso Mazzini, 18, Novara - NO', 'wp-google-maps');
5183
- __('AZIENDA OSPEDALIERO UNIVERSITARIA OSPEDALE MAGGIORE DELLA CARITA\'', 'wp-google-maps');
5184
- __('Settore Igiene Pubblica - Centro Prelievi, Via Rugiada 20, Trecate - NO', 'wp-google-maps');
5185
- __('AZIENDA SANITARIA NOVARA', 'wp-google-maps');
5186
- __('Laboratorio Analisi Cliniche, P.zza Silvio Pellico, 1, Chieri - TO', 'wp-google-maps');
5187
- __('AZIENDA OSPEDALIERA ASL TO 5 OSPEDALE MAGGIORE', 'wp-google-maps');
5188
- __('Laboratorio Analisi Cliniche, Via Battitore, 2/4, Ciriè - TO', 'wp-google-maps');
5189
- __('ASL TO4 - OSPEDALE CIVILE DI CIRIE\'', 'wp-google-maps');
5190
- __('Laboratorio Analisi, Piazza Mussatti, 5, Cuorgnè - TO', 'wp-google-maps');
5191
- __('ASL TO4', 'wp-google-maps');
5192
- __('Poliambulatorio, Via Foratella, 22, Gassino Torinese - TO', 'wp-google-maps');
5193
- __('ASL TO4 - CENTRO PRELIEVI POLIAMBULATORIO GASSINO', 'wp-google-maps');
5194
- __('Settore Immunologia - Laboratorio Analisi, P.zza Credenza, 2, Ivrea - TO', 'wp-google-maps');
5195
- __('ASL TO4 OSPEDALE CIVILE', 'wp-google-maps');
5196
- __('Laboratorio Analisi Cliniche, Via Marchese della Rocca, 30, Lanzo Torinese - TO', 'wp-google-maps');
5197
- __('ASL TO4 PRESIDIO OSPEDALIERO LANZO-TORINESE', 'wp-google-maps');
5198
- __('Laboratorio Analisi, Via Vittime di Bologna, 20, Moncalieri - TO', 'wp-google-maps');
5199
- __('PRESIDIO OSPEDALIERO ASL TO5 DISTRETTO MONCALIERI', 'wp-google-maps');
5200
- __('Struttura Complessa a Direzione Ospedaliera di Patologia Clinica- Laboratorio Analisi Cliniche e Microbiologia, Regione Gònzole, 10, Orbassano - TO', 'wp-google-maps');
5201
- __('AZIENDA OSPEDALIERA UNIVERSITARIA OSPEDALE S. LUIGI GONZAGA', 'wp-google-maps');
5202
- __('Laboratorio Analisi, Via Brigata Cagliari, 39, Pinerolo - TO', 'wp-google-maps');
5203
- __('ASL TO3 - OSPEDALE EDOARDO AGNELLI', 'wp-google-maps');
5204
- __('laboratorio analisi, Via Rivalta 29, Rivoli - TO', 'wp-google-maps');
5205
- __('ASL TO3', 'wp-google-maps');
5206
- __('Laboratorio Analisi, C.so Inghilterra 66, Susa - TO', 'wp-google-maps');
5207
- __('Laboratorio Analisi Cliniche, C.so Inghilterra, 66, Susa - TO', 'wp-google-maps');
5208
- __('ASL TO3 COLLEGNO', 'wp-google-maps');
5209
- __('Centro Prelievi Sede Molinette, C.so Bramante, 88/90, Torino - TO', 'wp-google-maps');
5210
- __('AOU CITTA DELLA SALUTE E DELLA SCIENZA DI TORINO', 'wp-google-maps');
5211
- __('Laboratorio Analisi Chimica e Microbiologia, Via Tofane, 71, Torino - TO', 'wp-google-maps');
5212
- __('ASL TO1 - OSPEDALE MARTINI', 'wp-google-maps');
5213
- __('Ambulatori centralizzati - Padiglione E, C.so Svizzera, 164, Torino - TO', 'wp-google-maps');
5214
- __('ASL TO2 OSPEDALE AMEDEO DI SAVOIA', 'wp-google-maps');
5215
- __('Poliambulatorio, Via Silvio Pellico, 28, Torino - TO', 'wp-google-maps');
5216
- __('AUSL TO1 - DISTRETTO 8 -OSPEDALE EVANGELICO VALDESE', 'wp-google-maps');
5217
- __('Laboratorio Analisi Chimico Cliniche e Microbiologia, L.go Turati, 62, Torino - TO', 'wp-google-maps');
5218
- __('AZIENDA OSPEDALIERA ORDINE MAURIZIANO', 'wp-google-maps');
5219
- __('Padiglione E Cottolengo - Ambulatorio Malattie Infettive, C.so Svizzera, 164, Torino - TO', 'wp-google-maps');
5220
- __('DIPARTIMENTO INTEGRATO DI MALATTIE INFETTIVE - OSPEDALE AMEDEO DI SAVOIA', 'wp-google-maps');
5221
- __('Malattie Infettive, Corso Svizzera, 164 - Padiglione \"E\" primo piano, Torino - TO', 'wp-google-maps');
5222
- __('OSPEDALE .AMEDEO DI SAVOIA', 'wp-google-maps');
5223
- __('Ambulatorio Migrazione e Salute, C.so Svizzera, 164, Torino - TO', 'wp-google-maps');
5224
- __('OSPEDALE AMEDEO DI SAVOIA - MALATTIE INFETTIVE E TROPICALI - DIVISIONE A', 'wp-google-maps');
5225
- __('Ambulatorio Infezioni Sessualmente Trasmesse - Padiglione Rudigoz, C.so Svizzera, 164, Torino - TO', 'wp-google-maps');
5226
- __('OSPEDALE SPECIALIZZATO IN MALATTIE INFETTIVE AMEDEO DI SAVOIA', 'wp-google-maps');
5227
- __('Laboratorio Analisi, Largo Vittime Lager Nazifascisti, 1, Domodossola - VB', 'wp-google-maps');
5228
- __('ASL VCO - (VERBANIA-CUSIO-OSSOLA) OSP. SAN BIAGIO', 'wp-google-maps');
5229
- __('Laboratorio Analisi, Lungolago Bruno Buozzi, Omegna - VB', 'wp-google-maps');
5230
- __('ASL VCO Laboratorio di Omegna', 'wp-google-maps');
5231
- __('Ambulatorio malattie Infettive, Via Fiume,18, Verbania - VB', 'wp-google-maps');
5232
- __('ASL VCO OSPEDALE CASTELLI', 'wp-google-maps');
5233
- __('Laboratorio Analisi, Via Fiume, Verbania - VB', 'wp-google-maps');
5234
- __('ASL VCO (VERBANIA-CUSIO-OSSOLA) OSPEDALE \"G. CASTELLI\"', 'wp-google-maps');
5235
- __('Struttura Semplice Dipartimentale di Malattie Infettive, Via Fiume, 18, Verbania - VB', 'wp-google-maps');
5236
- __('PRESIDIO OSPEDALIERO DI VERBANIA', 'wp-google-maps');
5237
- __('Laboratorio analisi, Via Ilorini Mo, 1, Borgosesia - VC', 'wp-google-maps');
5238
- __('OSPEDALE SANTISSIMI PIETRO E PAOLO ASL VC', 'wp-google-maps');
5239
- __('Centro prelievi, C.so Vercelli, 159, Gattinara - VC', 'wp-google-maps');
5240
- __('CASA DELLA SALUTE - GATTINARA', 'wp-google-maps');
5241
- __('Ambulatorio Malattie Infettive, Corso Mario Abbiate, 21, Vercelli - VC', 'wp-google-maps');
5242
- __('ASL VC - OSPEDALE S. ANDREA', 'wp-google-maps');
5243
- __('Laboratorio Analisi, Corso Mario Abbiate, 21, Vercelli - VC', 'wp-google-maps');
5244
- __('ASL VC OSPEDALE S. ANDREA', 'wp-google-maps');
5245
- __('Laboratorio Analisi, Via Provinciale Acquaviva per Santeramo in Colle Km 4.100, Acquaviva delle Fonti - BA', 'wp-google-maps');
5246
- __('OSPEDALE GENERALE REGIONALE MIULLI - ENTE ECCLESISTICO - UOC DI PATOLOGIA CLINICA', 'wp-google-maps');
5247
- __('Servizio di Medicina Trasfusionale, Via Ospedale di Venere, Bari - BA', 'wp-google-maps');
5248
- __('ASL BARI OSPEDALE DI VENERE', 'wp-google-maps');
5249
- __('Ambulatorio Malattie Infettive, P.zza G. Cesare, 11, Bari - BA', 'wp-google-maps');
5250
- __('AZIENDA OSPEDALIERA UNIVERSITARIA POLICLINICO CONSORZIALE', 'wp-google-maps');
5251
- __('Centro Trasfusionale, Via Caposcardicchio, Bari - BA', 'wp-google-maps');
5252
- __('Servizio Trasfusionale, Via Provinciale per Terlizzi, Molfetta - BA', 'wp-google-maps');
5253
- __('Laboratorio analisi, Via Cappuccini, Putignano - BA', 'wp-google-maps');
5254
- __('PRESIDIO OSPEDALIERO S.MARIA DEGLI ANGELI', 'wp-google-maps');
5255
- __('Laboratorio analisi, Via Pasquale Fiore, 135, Terlizzi - BA', 'wp-google-maps');
5256
- __('OSPEDALE CIVILE MICHELE SARCONE', 'wp-google-maps');
5257
- __('Laboratorio di Ricerche Chimico Cliniche e Microbiologiche, V.le Aldo Moro, 32, Triggiano - BA', 'wp-google-maps');
5258
- __('PRESIDIO OSPEDALIERO DI VENERE-TRIGGIANO OSPEDALE CIVILE FRANCESCA FALLACARA', 'wp-google-maps');
5259
- __('Ambulatorio Malattie Infettive/ Day Service, Via Aldo Moro,32, Triggiano - BA', 'wp-google-maps');
5260
- __('UOC Malattie Infettive PO Bari - Sud ASL BA', 'wp-google-maps');
5261
- __('Unità Operativa Semplice a Valenza Dipartimentale, V.le Istria, 1, Andria - BT', 'wp-google-maps');
5262
- __('OSPEDALE LORENZO BONOMO', 'wp-google-maps');
5263
- __('Servizio Trasfusionale, V.le Ippocrate 15, Barletta - BT', 'wp-google-maps');
5264
- __('ASL BT OSPEDALE CIVILE MONSIGNOR ANGELO RAFFAELE DIMICCOLI', 'wp-google-maps');
5265
- __('Ambulatorio Malattie Infettive - Scala A IV Piano, Strada per Mesagne, 1, Brindisi - BR', 'wp-google-maps');
5266
- __('OSPEDALE PERRINO', 'wp-google-maps');
5267
- __('Laboratorio di Patologia Clinica, Via Madonna delle Grazie, Francavilla Fontana - BR', 'wp-google-maps');
5268
- __('ASL BR P.O. OSPEDALE CIVILE DARIO GAMBERLINGO', 'wp-google-maps');
5269
- __('U.O.S. PATOLOGIA CLINICA, Via Villafranca, Ostuni - BR', 'wp-google-maps');
5270
- __('ASL BRINDISI -- S.O. OSTUNI', 'wp-google-maps');
5271
- __('Centro Trasfusionale, Via Trinitapoli, Cerignola - FG', 'wp-google-maps');
5272
- __('OSPEDALE GIUSEPPE TATARELLA', 'wp-google-maps');
5273
- __('Day Hospital Malattie Infettive universitario, viale Pinto n1, Foggia - FG', 'wp-google-maps');
5274
- __('OSPEDALI RIUNITI - AZIENDA OSPEDALIERA UNIVERSITARIA', 'wp-google-maps');
5275
- __('Laboratorio Analisi, Viale Lastaria, 71, Lucera - FG', 'wp-google-maps');
5276
- __('OSPEDALE FRANCESCO LASTARIA - PLESSO DI S. SEVERO', 'wp-google-maps');
5277
- __('trasfusionale P.O. San Severo, Via Teresa Masselli, San Severo - FG', 'wp-google-maps');
5278
- __('Centro Immunotrasfusionale', 'wp-google-maps');
5279
- __('Servizio Immunotrasfasfusionale, Via F. Ferrari, Casarano - LE', 'wp-google-maps');
5280
- __('OSPEDALE FRANCESCO FERRARI', 'wp-google-maps');
5281
- __('Laboratorio analisi, Via Carmiano, Copertino - LE', 'wp-google-maps');
5282
- __('ASL LECCE - PRESIDIO OSPEDALIERO', 'wp-google-maps');
5283
- __('Div. Mal. Inf., P.zza Filippo Muratore, Lecce - LE', 'wp-google-maps');
5284
- __('OSPEDALE NUOVO VITO FAZZI', 'wp-google-maps');
5285
- __('A.O. Laboratorio di Patologia clinica e Microbiologia, P.zza Muratore, Lecce - LE', 'wp-google-maps');
5286
- __('PRESIDIO OSPEDALIERO OSPEDALE VITO FAZZI', 'wp-google-maps');
5287
- __('SERT, Via Pitagora, 13, Martina Franca - TA', 'wp-google-maps');
5288
- __('ASL TA1 OSPEDALE CIVILE', 'wp-google-maps');
5289
- __('Malattie Infettive e Tropicali, Via per Martina Franca, Taranto - TA', 'wp-google-maps');
5290
- __('OSPEDALE S. G. MOSCATI STATTE', 'wp-google-maps');
5291
- __('SerD, Via Ancona snc, Taranto - TA', 'wp-google-maps');
5292
- __('SERVIZIO DIPENDENZE', 'wp-google-maps');
5293
- __('Laboratorio Analisi, Piazza Ricchi, 1, Cagliari - CA', 'wp-google-maps');
5294
- __('AZIENDA OSPEDALIERA BROTZU OSPEDALE SAN MICHELE', 'wp-google-maps');
5295
- __('Laboratorio Analisi, Viale Jenner, s.n.c., Cagliari - CA', 'wp-google-maps');
5296
- __('OSPEDALE ONCOLOGICO BUSINCO', 'wp-google-maps');
5297
- __('Ambulatorio Ematologia Pediatrica, Anemie Rare e Dismetabolismi del Ferro, Viale Jenner s.n.c., Cagliari - CA', 'wp-google-maps');
5298
- __('OSPEDALE PEDIATRICO MICROCITEMICO \" ANTONIO CAO \" STRUTTURA SEMPLICE DIPARTIMANTALE TALASSEMIA', 'wp-google-maps');
5299
- __('Unità Operativa Complessa Malattie Infettive, Via Is. Mirrionis, 92, Cagliari - CA', 'wp-google-maps');
5300
- __('OSPEDALE SS. TRINITA\' AZIENDA SOCIO-SANITARIA LOCALE CAGLIARI, AZIENDA PER LA TUTELA DELLA SALUTE - SARDEGNA', 'wp-google-maps');
5301
- __('Laboratorio Centrale, Via Is Mirrionis, Cagliari - CA', 'wp-google-maps');
5302
- __('OSPEDALE SS.TRINITA\'', 'wp-google-maps');
5303
- __('Centro di Immunologia, Str.Statale 554 (bivio per Sestu), Monserrato - CA', 'wp-google-maps');
5304
- __('AZIENDA MISTA-POLICLINICO UNIVERSITARIO DI MONSERRATO', 'wp-google-maps');
5305
- __('Laboratorio Analisi Chimico Cliniche e Microbiologia - Blocco N Piano 0, S.S. 554 Bivio per Sestu, Monserrato - CA', 'wp-google-maps');
5306
- __('AZIENDA OSPEDALIERO UNIVERSITARIA DI CAGLIARI PRESIDIO OSPEDALIERO DUILIO CASULA - MONSERRATO (già Policlinico Universitario)', 'wp-google-maps');
5307
- __('Laboratorio Analisi, Osp. SIRAI, Carbonia - CI', 'wp-google-maps');
5308
- __('Presidio ospedaliero SIRAI', 'wp-google-maps');
5309
- __('Servizio di immunoematologia Centro Trasfusionale, Via Mannironi, 72, Nuoro - NU', 'wp-google-maps');
5310
- __('AZIENDA OSPEDALIERA OSPEDALE S. FRANCESCO', 'wp-google-maps');
5311
- __('Laboratorio di Analisi ASSL Olbia - sede di Olbia, Via BAZZONI-SIRCANA, Olbia - OT', 'wp-google-maps');
5312
- __('ASSL OLBIA - PRESIDIO OSPEDALIERO GIOVANNI PAOLO II', 'wp-google-maps');
5313
- __('Laboratorio Analisi - II piano, Via Grazia Deledda, Tempio Pausania - OT', 'wp-google-maps');
5314
- __('OSPEDALE PAOLO DETTORI - U.O. MEDICINA DI LABORATORIO', 'wp-google-maps');
5315
- __('Servizio di Immunoematologia e Medicina Trasfusionale, Via Rockefeller, Oristano - OR', 'wp-google-maps');
5316
- __('ATS SARDEGNA ASSL N. 5 DI ORISTANO OSPEDALE SAN MARTINO', 'wp-google-maps');
5317
- __('U.O.C. Malattie Infettive - Ambulatorio Piano Terra, Viale San Pietro, 35/b, Sassari - SS', 'wp-google-maps');
5318
- __('AZIENDA OSPEDALIERO UNIVERSITARIA DI SASSARI', 'wp-google-maps');
5319
- __('SERVIZIO TRASFUSIONALE AZIENDALE, Via Montegrappa, 82, Sassari - SS', 'wp-google-maps');
5320
- __('Azienda Ospedaliero Universitaria Sassari', 'wp-google-maps');
5321
- __('UNITA OPERATIVA COMPLESSA PATOLOGIA CLINICA, Contrada Consolida, Agrigento - AG', 'wp-google-maps');
5322
- __('OSPEDALE S. GIOVANNI DI DIO', 'wp-google-maps');
5323
- __('Centro Trasfusionale - Unità Operativa Complessa di Medicina Trasfusionale, Via Pompei, Sciacca - AG', 'wp-google-maps');
5324
- __('ASP AGRIGENTO - OSPEDALE GIOVANNI PAOLO II Sciacca', 'wp-google-maps');
5325
- __('Struttura Complessa Divisione Malattie Infettive Edificio B - Secondo piano, Via Luigi Russo, 6, Caltanissetta - CL', 'wp-google-maps');
5326
- __('ASP CALTANISSETTA 1 PRESIDIO OSPEDALIERO S. ELIA', 'wp-google-maps');
5327
- __('Laboratorio Analisi, VIa l.Russo6, Caltanissetta - CL', 'wp-google-maps');
5328
- __('ASP n.2 CALTANISSETTA - DISTRETTO CELLE 1 - OSPEDALE SANT\'ELIA - Servizio di Immunoematologia e Centro Trasfusionale -', 'wp-google-maps');
5329
- __('Centro Prelievi - Virologia, Via Luigi Russo, 6, Caltanissetta - CL', 'wp-google-maps');
5330
- __('ASP2 CL PRESIDIO OSPEDALIERO S.ELIA', 'wp-google-maps');
5331
- __('Laboratorio Analisi, Via Palazzi, 171, Gela - CL', 'wp-google-maps');
5332
- __('ASP DI CALTANISSETTA - PRESIDIO OSPEDALIERO DI GELA - CL2 OSPEDALE VITTORIO EMANUELE', 'wp-google-maps');
5333
- __('U.O. di Patologia Clinica, Via Caronia snc, Acireale - CT', 'wp-google-maps');
5334
- __('P.O. S. MARTA E S. VENERA DI ACIREALE', 'wp-google-maps');
5335
- __('U.O. di Patologia Clinica, Via g. marconi, Biancavilla - CT', 'wp-google-maps');
5336
- __('DISTRETTO CT2 - ASPCT - P.O. BIANCAVILLA', 'wp-google-maps');
5337
- __('U.O.C. di Patologia Clinica, Via Porto Salvo, 9, Caltagirone - CT', 'wp-google-maps');
5338
- __('ASPCT3 P.O. GRAVINA E SANTO PIETRO DI CALTAGIRONE', 'wp-google-maps');
5339
- __('Div.Mal.Inf., Via Porto Salvo, 11, Caltagirone - CT', 'wp-google-maps');
5340
- __('OSPEDALE GRAVINA E S.PIETRO', 'wp-google-maps');
5341
- __('Unità Operativa Complessa Malattie Infettive, Via Messina, 829, Catania - CT', 'wp-google-maps');
5342
- __('AZIENDA OSPEDALIERA PER L\'EMERGENZA CANNIZZARO', 'wp-google-maps');
5343
- __('U.O. di Patologia Clinica, Via Messina, 829, Catania - CT', 'wp-google-maps');
5344
- __('AZIENDA OSPEDALIERA CANNIZZARO - U.O. PATOLOGIA CLINICA', 'wp-google-maps');
5345
- __('Ambulatorio Divisione Malattie Infettive, Via Plebiscito, 628, Catania - CT', 'wp-google-maps');
5346
- __('AZIENDA OSPEDALIERA UNIVERSITARIA POLICLINICO VITTORIO EMANUELE II - PRESIDIO OSPEDALIERO VITTORIO EMANUELE', 'wp-google-maps');
5347
- __('Igiene - Centro HIV di II°livello, Via Santa Sofia, 87, Catania - CT', 'wp-google-maps');
5348
- __('AZIENDA UNIVERSITARIO-OSPEDALIERA - UNIVERSITA DI CATANIA DIPARTIMENTO \"G. F. INGRASSIA\" IGIENE E SANITA PUBBLICA- CENTRO REGIONALE DI RIFERIMENTO HIV di II livello', 'wp-google-maps');
5349
- __('Centro Prelievi, P.zza S.Maria Di Gesu,\' 7, Catania - CT', 'wp-google-maps');
5350
- __('OSPEDALE GARIBALDI CENTRO', 'wp-google-maps');
5351
- __('Ambulatorio- D.H. Malattie Infettive - Palazzina H, Via Palermo, 636, Catania - CT', 'wp-google-maps');
5352
- __('OSPEDALE GARIBALDI NESIMA', 'wp-google-maps');
5353
- __('U.O. Patologia Clinica Territoriale, Via Palmentazzo, 1, Tremestieri Etneo - CT', 'wp-google-maps');
5354
- __('ASP DI CATANIA - POLIAMBULATORIO DI TREMESTIERI ETNEO', 'wp-google-maps');
5355
- __('Centro Trasfusionale, Contrada Ferrante, Enna - EN', 'wp-google-maps');
5356
- __('ASP ENNA -PRESIDIO OSPEDALIERO UMBERTO I°', 'wp-google-maps');
5357
- __('Reparto Malattie Infettive, Contrada Ferrante Enna Bassa, Enna - EN', 'wp-google-maps');
5358
- __('PRESIDIO OSPEDALIERO UMBERTO I°', 'wp-google-maps');
5359
- __('Servizio di Immunoematologia e Medicina Trasfusionale, Via S. Giovanni, Nicosia - EN', 'wp-google-maps');
5360
- __('OSPEDALE BASILOTTA - NICOSIA', 'wp-google-maps');
5361
- __('Servizio Trasfusionale, Contrada Bellia, Piazza Armerina - EN', 'wp-google-maps');
5362
- __('ASP 4 ENNA SERVIZIO DI IMMUNOLOGIA E MEDICINA TRASFUSIONALE - OSPEDALE MICHELE CHIELLO', 'wp-google-maps');
5363
- __('Laboratorio Analisi, STRETTO MONTECROCE 23, Barcellona Pozzo di Gotto - ME', 'wp-google-maps');
5364
- __('PRESIDIO OSPEDALIERO NUOVO CUTRONI-ZODDA', 'wp-google-maps');
5365
- __('Struttura Semplice di Microbiologia e Virologia - Unità Operativa Complessa di Patologia Clinica e Virologia - II° piano Centro Prelievi, Contrada Papardo, Messina - ME', 'wp-google-maps');
5366
- __('AZIENDA OSPEDALIERA PAPARDO', 'wp-google-maps');
5367
- __('U.O. di Medicina Trasfusionale - Centro Trasfusionale, Contrada Pisciotto Pietra- Pollastra, Cefalù - PA', 'wp-google-maps');
5368
- __('ASP DI PALERMO - P.O. OSPEDALE DI CEFALU\'', 'wp-google-maps');
5369
- __('U. O. Complessa Malattie Infettive - Centro di riferimento diagnosi AIDS, Via del Vespro 129, Palermo - PA', 'wp-google-maps');
5370
- __('A.O. UNIVERSITARIA POLICLINICO PAOLO GIACCONE', 'wp-google-maps');
5371
- __('Centro Trasfusionale, Piazzale Leotta, 1, Palermo - PA', 'wp-google-maps');
5372
- __('ARNAS CIVICA \"CRISTINA ASCOLI E BENFRATELLI', 'wp-google-maps');
5373
- __('UOC Malattie Infettive - Centre for Migration and Health, Piazza Nicolò Leotta, 4, Palermo - PA', 'wp-google-maps');
5374
- __('ARNAS Ospedale Civico Benfratelli', 'wp-google-maps');
5375
- __('Servizio di Immunoematologia e Trasfusionale con CQB (Sede di Villa Sofia), Piazzetta Salerno, 4, Palermo - PA', 'wp-google-maps');
5376
- __('AZIENDA OSPEDALI RIUNITI VILLA SOFIA - CERVELLO', 'wp-google-maps');
5377
- __('Servizio di Virologia e Microbiologia (Sede di Villa Sofia), Piazzetta Salerno 1, Palermo - PA', 'wp-google-maps');
5378
- __('AZIENDA OSPEDALIERA OSPEDALI RIUNITI VILLA SOFIA-CERVELLO', 'wp-google-maps');
5379
- __('Ambulatorio di Medicina dei Viaggi, del Turismo e delle Migrazioni, Via del Vespro, 141, Palermo - PA', 'wp-google-maps');
5380
- __('AZIENDA OSPEDALIERA UNIVERSITARIA - POLICLINICO \"P. GIACCONE\"', 'wp-google-maps');
5381
- __('Laboratorio di Patologia Clinica (Sede Ospedale Cervello), Via Trabucco, 180, Palermo - PA', 'wp-google-maps');
5382
- __('Divisione Malattie Infettive, Via Trabucco, 180, Palermo - PA', 'wp-google-maps');
5383
- __('OSPEDALI RIUNITI VILLA SOFIA-CERVELLO', 'wp-google-maps');
5384
- __('U.O.C. Dipartimento Microbiologia, Virologia e Parassitologia - Unità 81.01.0, Via Del Vespro, 133, Palermo - PA', 'wp-google-maps');
5385
- __('POLICLINICO PAOLO GIACCONE c/o UNIVERSITA\'', 'wp-google-maps');
5386
- __('Laboratorio analisi, Via Aldo Moro 3, Modica - RG', 'wp-google-maps');
5387
- __('AZIENDA OSPEDALIERA OSPEDALE MAGGIORE - ASP RAGUSA', 'wp-google-maps');
5388
- __('Centro Trasfusionale, Piazza Igea, 1, Ragusa - RG', 'wp-google-maps');
5389
- __('ASP 7 OSPEDALE CIVILE', 'wp-google-maps');
5390
- __('Ambulatorio Malattie Infettive - I piano, Piazza Caduti di Nassirya, Ragusa - RG', 'wp-google-maps');
5391
- __('ASP7 RG - OSPEDALE REGIONALE DISTRETTO 1', 'wp-google-maps');
5392
- __('Servizio Trasfusionale - Unità Operativa Semplice, Viale Papa Giovanni XXIII, Vittoria - RG', 'wp-google-maps');
5393
- __('PRESIDIO OSPEDALIERO RICCARDO GUZZARDI', 'wp-google-maps');
5394
- __('Centro Trasfusionale, Contrada Granatello, Augusta - SR', 'wp-google-maps');
5395
- __('U.O.S. OSPEDALE E. MUSCATELLO', 'wp-google-maps');
5396
- __('centro trasfusionale, Contrada da Chiusa di Carlo - Strada Statale, Avola - SR', 'wp-google-maps');
5397
- __('ASP 8 SIRACUSA - SERVIZIO DI IMMUNOEMATOLOGIA E MEDICINA TRASFUSIONALE', 'wp-google-maps');
5398
- __('Centro Trasfusionale, Strada Provinciale Ragusa-Lentini, Lentini - SR', 'wp-google-maps');
5399
- __('ASP 8 SIRACUSA - SIMT - PRESIDIO OSPEDALIERO DI LENTINI', 'wp-google-maps');
5400
- __('Malattie Infettive, Via Testaferrata 1, Siracusa - SR', 'wp-google-maps');
5401
- __('ASP SR 1 OSPEDALE UMBERTO I', 'wp-google-maps');
5402
- __('Unità Operativa Complessa Reparto Malattie Infettive, Via Cosenza, 82, Erice - TP', 'wp-google-maps');
5403
- __('ASP DISTRETTO OSPEDALIERO TP1 OSPEDALE S. ANTONIO ABATE', 'wp-google-maps');
5404
- __('Medicina Trasfusionale, Via Cosenza, 25, Erice - TP', 'wp-google-maps');
5405
- __('ASP TRAPANI DISTRETTO OSPEDALIERO TP1 OSPEDALE S. ANTONIO ABBATE', 'wp-google-maps');
5406
- __('Unità Operativa Complessa Malattie Infettive - Ambulatori, piano 0 - VI Lotto (V scala anti-incendio), Via Pietro Nenni, 20, Arezzo - AR', 'wp-google-maps');
5407
- __('OSPEDALE S. DONATO D\'AREZZO', 'wp-google-maps');
5408
- __('Laboratorio Analisi, Loc. Fratta, Cortona - AR', 'wp-google-maps');
5409
- __('ASL SUDEST TOSCANA ZONA VALDICHIANA - OSPEDALE S. MARGHERITA FRATTA-CORTONA VAL DI CHIANA AREZZO', 'wp-google-maps');
5410
- __('Distretto, Via Podgora, Montevarchi - AR', 'wp-google-maps');
5411
- __('USL TOSCANA SUD EST - DISTRETTO MONTEVARCHI', 'wp-google-maps');
5412
- __('Poliambulatorio Prelievi - Laboratorio Analisi, F.REDI, Sansepolcro - AR', 'wp-google-maps');
5413
- __('AZIENDA SANITARIA USL TOSCANA SUDEST ZONA VALTIBERINA SEZIONE LABORATORIO ANALISI OSPEDALE DELLA VALTIBERINA', 'wp-google-maps');
5414
- __('Dipartimento della Prevenzione zona valtiberina toscana, Via Santi di Tito n°24, Sansepolcro - AR', 'wp-google-maps');
5415
- __('USl sud est toscana', 'wp-google-maps');
5416
- __('SOC Malattie Infettive 1, Via dell\'Antella, 58, Bagno a Ripoli - FI', 'wp-google-maps');
5417
- __('AZIENDA USL TOSCANA CENTRO FIRENZE - OSPEDALE S. MARIA ANNUNZIATA', 'wp-google-maps');
5418
- __('Presidio Sanitario, Via Dante Alighieri, 36, Bagno a Ripoli - FI', 'wp-google-maps');
5419
- __('AZIENDA USL TOSCANA CENTRO ZONA FIORENTINA SUD-EST', 'wp-google-maps');
5420
- __('Punto Prelievi, Via dell\'Antella, 58, Bagno a Ripoli - FI', 'wp-google-maps');
5421
- __('OSPEDALE S.MARIA ANNUNZIATA', 'wp-google-maps');
5422
- __('Laboratorio Analisi, V.le della Resistenza, Borgo San Lorenzo - FI', 'wp-google-maps');
5423
- __('AZ. USL TOSCANA CENTRO - NUOVO OSPEDALE DEL MUGELLO', 'wp-google-maps');
5424
- __('Punto prelievo, Via A Negro, 5, Capraia e Limite - FI', 'wp-google-maps');
5425
- __('USL 11 EMPOLI - DISTRETTO AZIENDA USL TOSCANA CENTRO', 'wp-google-maps');
5426
- __('Punto Prelievo, Via Madre Teresa di Calcutta, 8, Capraia e Limite - FI', 'wp-google-maps');
5427
- __('USL TOSCANA CENTRO ZONA EMPOLI C/O AMBULATORI MMG CAPRAIA', 'wp-google-maps');
5428
- __('Punto prelievi, Via dei Mille, 1, Castelfiorentino - FI', 'wp-google-maps');
5429
- __('USL 11 EMPOLI - c/o OSPEDALE DI CASTELFIORENTINO S.Verdiana AZIENDA USL TOSCANA CENTRO', 'wp-google-maps');
5430
- __('Punto Prelievo, Via dei Fossi, 3, Cerreto Guidi - FI', 'wp-google-maps');
5431
- __('USL 11 EMPOLI - DISTRETTO AZIEDA USL CENTRO TOSCANA', 'wp-google-maps');
5432
- __('Punto Prelievi, Piazza dei Macelli, 10, Certaldo - FI', 'wp-google-maps');
5433
- __('SOS Malattie Infettive, Via Rozzalupi, 57, Empoli - FI', 'wp-google-maps');
5434
- __('USL 11 EMPOLI - DISTRETTO', 'wp-google-maps');
5435
- __('Ambulatorio Prevenzione Malattie a trasmissione Ematica e Sessuale, Via dei Cappuccini, 79, Empoli - FI', 'wp-google-maps');
5436
- __('USL TOSCANA CENTRO - EMPOLI - CENTRO AMMINISTRATIVO - DIPARTIMENTO DI PREVENZIONE', 'wp-google-maps');
5437
- __('Presidio Sanitario, Via Da Verrazzano, 20, Figline Valdarno - FI', 'wp-google-maps');
5438
- __('Struttura Organizzativa Dipartimentale Complessa (SODc) Malattie Infettive e Tropicali, Largo Brambilla, 3, Firenze - FI', 'wp-google-maps');
5439
- __('AZIENDA OSPEDALIERA UNIVERSITARIA CAREGGI', 'wp-google-maps');
5440
- __('Centro Prelievi, Via Torregalli, 3, Firenze - FI', 'wp-google-maps');
5441
- __('AZIENDA SANITARIA FIRENZE OSPEDALE S.GIOVANNI DI DIO', 'wp-google-maps');
5442
- __('SOC Malattie Infettive, Viale Pieraccini 24, Firenze - FI', 'wp-google-maps');
5443
- __('OSPEDALE UNIVERSITARIO PEDIATRICO MEYER', 'wp-google-maps');
5444
- __('Punto Prelievo, Via Don Arzilli, 4, Fucecchio - FI', 'wp-google-maps');
5445
- __('AZIENDA USL TOSCANA CENTRO', 'wp-google-maps');
5446
- __('Punto Prelievo, Via Porto di Cavallaia, 9, Fucecchio - FI', 'wp-google-maps');
5447
- __('USL 11 EMPOLI - AMBULATORI MEDICI AZIENDA USL TOSCANA CENTRO', 'wp-google-maps');
5448
- __('Punto Prelievo, Piazza S. Lavagnini, 1/2, Fucecchio - FI', 'wp-google-maps');
5449
- __('USL 11 EMPOLI - c/o OSPEDALE DI FUCECCHIO AZIENDA USL TOSCANA CENTRO', 'wp-google-maps');
5450
- __('Punto prelievo, Via Volterrana, 31, Gambassi Terme - FI', 'wp-google-maps');
5451
- __('EMPOLI - DISTRETTO AZIENDA USL TOSCANA CENTRO', 'wp-google-maps');
5452
- __('Presidio Sanitario, Via della Pace, 8, Greve in Chianti - FI', 'wp-google-maps');
5453
- __('Presidio Sanitario, Via Papa Giovanni XXIII, 4/6, Impruneta - FI', 'wp-google-maps');
5454
- __('Presidio Sanitario, Via Roma, 12/A, Incisa in Val d\'Arno - FI', 'wp-google-maps');
5455
- __('Punto prelievo, Viale da Filicaia, 18, Montaione - FI', 'wp-google-maps');
5456
- __('USL TOSCANA CENTRO - DISTRETTO', 'wp-google-maps');
5457
- __('Punto Prelievo, Viale Centofiori, 30, Montelupo Fiorentino - FI', 'wp-google-maps');
5458
- __('Punto Prelievo, Via G. Matteotti, 20, Montespertoli - FI', 'wp-google-maps');
5459
- __('Presidio Sanitario Croce Azzurra, Via di Rosano, 17, Pontassieve - FI', 'wp-google-maps');
5460
- __('Presidio Sanitario della Misericordia, P.zza Cairoli, 7, Pontassieve - FI', 'wp-google-maps');
5461
- __('Presidio Sanitario della Misericordia, Via Tanzini, 23, Pontassieve - FI', 'wp-google-maps');
5462
- __('Presidio Sanitario, Piazza IV novembre, 4, Reggello - FI', 'wp-google-maps');
5463
- __('Presidio Sanitario, P.zza dei Martiri, 6, Rignano sull\'Arno - FI', 'wp-google-maps');
5464
- __('Presidio Sanitario, Via Bonanni, 3, Rufina - FI', 'wp-google-maps');
5465
- __('Presidio Sanitario, Via Del Cassero, 19, San Casciano in Val di Pesa - FI', 'wp-google-maps');
5466
- __('Punto Prelievo, Via Gramsci, 561, Sesto Fiorentino - FI', 'wp-google-maps');
5467
- __('ASL 10 FIRENZE - SESTO FIORENTINO', 'wp-google-maps');
5468
- __('Presidio Sanitario, Via Naldini, 44, Tavarnelle Val di Pesa - FI', 'wp-google-maps');
5469
- __('Presidio, Via Fiorentina, 538, Vaglia - FI', 'wp-google-maps');
5470
- __('USL 10 FIRENZE - DISTRETTO NORD-OVEST', 'wp-google-maps');
5471
- __('Punto Prelievo, Via Val di Sole, 2, Vinci - FI', 'wp-google-maps');
5472
- __('USL TOSCANA CENTRO EMPOLI - DISTRETTO', 'wp-google-maps');
5473
- __('Centro Prelievi, Via Dante Alighieri, Castel del Piano - GR', 'wp-google-maps');
5474
- __('USL 9 CASTEL DEL PIANO - OSPEDALE CIVILE', 'wp-google-maps');
5475
- __('Divisione Malattie Infettive, Via Senese, Grosseto - GR', 'wp-google-maps');
5476
- __('AZIENDA OSPEDALIERA OSPEDALE MISERICORDIA', 'wp-google-maps');
5477
- __('UOC Medicina di Laboratorio, Via Alfieri,37, Livorno - LI', 'wp-google-maps');
5478
- __('AZIENDA TOSCANA NORD OVEST', 'wp-google-maps');
5479
- __('Ambulatorio Malattie Infettive, V.le Alfieri, 36, Livorno - LI', 'wp-google-maps');
5480
- __('OSPEDALI RIUNITI DI LIVORNO', 'wp-google-maps');
5481
- __('U. O. Complessa di Epatologia e Malattie Infettive, Via Lippi francesconi, Lucca - LU', 'wp-google-maps');
5482
- __('Struttura Semplice Dipartimentale di Malattie Infettive, Vial Enrico Mattei 21, Massa - MS', 'wp-google-maps');
5483
- __('OSPEDALE APUANO', 'wp-google-maps');
5484
- __('Centro Prelievi, Via Mazzini, 48, Pontremoli - MS', 'wp-google-maps');
5485
- __('ASL TOSCANA NORDOVEST POLIAMBULATORIO DISTRETTO SOCIO-SANITARIO DELLA LUNIGIANA', 'wp-google-maps');
5486
- __('Viale 2 Giugno, 37, Castelfranco di Sotto - PI', 'wp-google-maps');
5487
- __('PUNTO PRELIEVO AZIENDA USL CENTRO TOSCANA', 'wp-google-maps');
5488
- __('Punto Prelievo, Via E.Mattei, 4, Montopoli in Val d\'Arno - PI', 'wp-google-maps');
5489
- __('ASL Toscana Centro', 'wp-google-maps');
5490
- __('Punto Prelievo, Via Mattei, 4, Montopoli in Val d\'Arno - PI', 'wp-google-maps');
5491
- __('Centro Prelievi, P.zza Manin, Pisa - PI', 'wp-google-maps');
5492
- __('AZIENDA OSPEDALIERO UNIVERSITARIA - PRESIDIO OSPEDALIERO S. CHIARA', 'wp-google-maps');
5493
- __('Laboratorio analisi, Via Paradisa, 2, Pisa - PI', 'wp-google-maps');
5494
- __('AZIENDA OSPEDALIERO UNIVERSITARIA PISANA PRESIDIO OSPEDALIERO CISANELLO', 'wp-google-maps');
5495
- __('Laboratorio Analisi, Via Roma, 180, Pontedera - PI', 'wp-google-maps');
5496
- __('OSPEDALE FELICE LOTTI - U.O. PATOLOGIA CLINICA', 'wp-google-maps');
5497
- __('Punto prelievo, piazza V.Cuoco c/o Ven. Misericordia di S.Miniato Basso, San Miniato - PI', 'wp-google-maps');
5498
- __('Punto Prelievo, Via 1° Maggio, 105, San Miniato - PI', 'wp-google-maps');
5499
- __('Punto Prelievo, Piazza XX Settembre, San Miniato - PI', 'wp-google-maps');
5500
- __('ASL TOSCANA CENTRO - OSPEDALE SAN MINIATO', 'wp-google-maps');
5501
- __('Punto Perelievo, Piazza cuoco 9 pressp Misericordia S.Miniato Basso, San Miniato - PI', 'wp-google-maps');
5502
- __('Punto Prelievi, Via Mainardi, 2, Santa Croce sull\'Arno - PI', 'wp-google-maps');
5503
- __('Ambulatoriorio, Via Ciliegiuole, 97, Pistoia - PT', 'wp-google-maps');
5504
- __('OSPEDALE S. JACOPO - PISTOIA S.O.C. MALATTIE INFETTIVE 2°- AZIENDA USL TOSCANA CENTRO', 'wp-google-maps');
5505
- __('Laboratorio Analisi, montepulciano siena, Montepulciano - SI', 'wp-google-maps');
5506
- __('EX ASL 7 MONTEPULCIANO E VALDICHIANA', 'wp-google-maps');
5507
- __('Lab. Analisi, Loc. Campostaggia, Poggibonsi - SI', 'wp-google-maps');
5508
- __('USL SUDEST OSPEDALE CAMPOSTAGGIA POGGIBONSI', 'wp-google-maps');
5509
- __('Punto Prelievi Unico (PPU), Viale Mario Bracci, 16, Siena - SI', 'wp-google-maps');
5510
- __('AZIENDA OSPEDALIERA UNIVERSITARIA SENESE - OSPEDALE LE SCOTTE', 'wp-google-maps');
5511
- __('Divisione Malattie Infettive, Via Lorenz Boehler, 5, Bolzano - BZ', 'wp-google-maps');
5512
- __('OSPEDALE CENTRALE DI BOLZANO', 'wp-google-maps');
5513
- __('SERT, Via Roma, 5, Bressanone - BZ', 'wp-google-maps');
5514
- __('Ambulatorio profilassi Epatite e AIDS, Via Ospedale, 11, Brunico - BZ', 'wp-google-maps');
5515
- __('OSPEDALE DI BRUNICO', 'wp-google-maps');
5516
- __('Laboratorio di Patologia Clinica, Via Ospedale, 11, Brunico - BZ', 'wp-google-maps');
5517
- __('Laboratorio Analisi, Via Rossini, 5, Merano - BZ', 'wp-google-maps');
5518
- __('OSPEDALE CIVILE DI MERANO', 'wp-google-maps');
5519
- __('Reparto di Medicina - Sezione Malattie Infettive - Ambulatorio Malattie Infettive, P.le Santa Maria, n.6, Rovereto - TN', 'wp-google-maps');
5520
- __('AZIENDA PROVINCIALE PER I SERVIZI SANITARI (APSS) OSPEDALE SANTA MARIA DEL CARMINE', 'wp-google-maps');
5521
- __('Struttura Semplice Dipartimentale di Malattie Infettive, Largo delle Medaglie D\'Oro, 9, Trento - TN', 'wp-google-maps');
5522
- __('OSPEDALE S. CHIARA', 'wp-google-maps');
5523
- __('Laboratorio di Sierologia- S.C.Microbiologia, Sant\'Andrea delle Fratte, Perugia - PG', 'wp-google-maps');
5524
- __('OSPEDALE S. MARIA DELLA MISERICORDIA - AZIENDA OSPEDALIERO UNIVERSITARIA DI PERUGIA', 'wp-google-maps');
5525
- __('Day Service Ambulatorio Malattie Infettive - Blocco L I° Piano, Piazza Menghini, 1, Perugia - PG', 'wp-google-maps');
5526
- __('OSPEDALE SANTA MARIA DELLA MISERICORDIA', 'wp-google-maps');
5527
- __('Centro Prelievi P.le Europa, P.le Europa - Via Dei Filosofi, 7/9, Perugia - PG', 'wp-google-maps');
5528
- __('USL 1 DELL\'UMBRIA', 'wp-google-maps');
5529
- __('Ambulatorio Medico per Immigrati, Via XIV Settembre 75, Perugia - PG', 'wp-google-maps');
5530
- __('USL UMBRIA 1- ANLAIDS UMBRIA', 'wp-google-maps');
5531
- __('Day Hospital della Clinica Malattie Infettive, Viale Tristano di Joannuccio, Terni - TR', 'wp-google-maps');
5532
- __('AZIENDA OSPEDALIERA S.MARIA DI TERNI', 'wp-google-maps');
5533
- __('Via Guido Rey, 5, Aosta - AO', 'wp-google-maps');
5534
- __('AUSL VALLE D\'AOSTA STRUTTURA SEMPLICE MICROBIOLOGIA', 'wp-google-maps');
5535
- __('Unità Operativa Malattie Infettive - Ambulatorio piano terra, V.le Ginevra, 3, Aosta - AO', 'wp-google-maps');
5536
- __('AZIENDA USL VALLE D\'AOSTA PRESIDIO OSPEDALIERO', 'wp-google-maps');
5537
- __('Ambulatorio di solo prelievo successivamente inviato presso la Struttura Complessa di Analisi Cliniche - Aosta Viale Ginevra 3, Via Roma, 105, Donnas - AO', 'wp-google-maps');
5538
- __('USL DISTRETTO 4 - POLIAMBULATORIO', 'wp-google-maps');
5539
- __('Microbiologia, Viale Europa, 22, Belluno - BL', 'wp-google-maps');
5540
- __('AZIENDA ULSS 1 DOLOMITI OSPEDALE DI AGORDO E OSPEDALE DI PIEVE DI CADORE', 'wp-google-maps');
5541
- __('Unità Operativa Malattie Infettive, Viale Europa, 22, Belluno - BL', 'wp-google-maps');
5542
- __('ULSS 1 DOLOMITI OSPEDALE SAN MARTINO', 'wp-google-maps');
5543
- __('Via Bagnols sur Ceze, 3, Feltre - BL', 'wp-google-maps');
5544
- __('ULSS 1 - DOLOMITI LABORATORIO ANALISI CHIMICO-CLINICHE E MICROBIOLOGIA OSPEDALE \"S. MARIA DEL PRATO\" - FELTRE (BL)', 'wp-google-maps');
5545
- __('U.O.S.D. MEDICINA TRASFUSIONALE, Via Pietro Cosma, 1, Camposampiero - PD', 'wp-google-maps');
5546
- __('PRESIDIO OSPEDALIERO DI CAMPOSAMPIERO - AULSS6 EUGANEA', 'wp-google-maps');
5547
- __('Sert, Ospedale da Via Borgo Musiletto, area azzurra, Cittadella - PD', 'wp-google-maps');
5548
- __('UOC SERD ALTA E BASSA PADOVANA', 'wp-google-maps');
5549
- __('Laboratorio Analisi Centro Prelievi \"Pontarollo\", Via Pilastroni, Cittadella - PD', 'wp-google-maps');
5550
- __('USL 15 ALTA PADOVANA - OSPEDALE CIVILE', 'wp-google-maps');
5551
- __('Servizio Territoriale, Via Settabile, 29, Este - PD', 'wp-google-maps');
5552
- __('AMBULATORIO SERVIZIO DIPENDENZE', 'wp-google-maps');
5553
- __('Servizio Territoriale, via Marconi, 19, Monselice - PD', 'wp-google-maps');
5554
- __('Malattie Infettive e Tropicali - Piano terra Ambulatorio HIV, Via Giustiniani, 2, Padova - PD', 'wp-google-maps');
5555
- __('AZIENDA OSPEDALIERA DI PADOVA', 'wp-google-maps');
5556
- __('Punto Prelievi, Via San Massimo, 10, Padova - PD', 'wp-google-maps');
5557
- __('AZIENDA OSPEDALIERA UNIVERSITA\' DI PADOVA', 'wp-google-maps');
5558
- __('Laboratorio Analisi - Punto Prelievi, Via Dei Colli, 4, Padova - PD', 'wp-google-maps');
5559
- __('AZIENDA USSLL 6 PADOVA', 'wp-google-maps');
5560
- __('UOC DIPENDENZE SEDE PADOVA - PIOVE DI SACCO, Via dei Colli, 4, Padova - PD', 'wp-google-maps');
5561
- __('AZIENDA USSLL N. 6 EUGANEA', 'wp-google-maps');
5562
- __('Dipartimento per la Salute della Donna e del Bambino, Via Giustiniani, 3, Padova - PD', 'wp-google-maps');
5563
- __('OSPEDALE CIVILE AZIENDA OSPEDALIERA DI PADOVA', 'wp-google-maps');
5564
- __('UOC DIPENDENZE SEDE PADOVA - PIOVE DI SACCO, Via S. Rocco, 8, Piove di Sacco - PD', 'wp-google-maps');
5565
- __('AZIENDA USSLL N. 6 EUGANEA c/o OSP. IMMACOLATA CONCEZIONE', 'wp-google-maps');
5566
- __('Punto Prelievi - Punto Sanità Arquà Polesine, Piazza Umberto I, 67, Arquà Polesine - RO', 'wp-google-maps');
5567
- __('AZIENDA ULSS5 - POLESANA - DISTRETTO DI ROVIGO', 'wp-google-maps');
5568
- __('Punto Prelievi - Punto Sanità di Castelmassa, Viale Fattori, 1, Castelmassa - RO', 'wp-google-maps');
5569
- __('Punto prelievi - Punto Sanità di Polesella, Piazza Matteotti, 46, Polesella - RO', 'wp-google-maps');
5570
- __('AZIENDA ULSS5 POLESANA - ROVIGO', 'wp-google-maps');
5571
- __('SERD, V.le Gramsci, 27, Rovigo - RO', 'wp-google-maps');
5572
- __('Azienda ULSS 5 Polesana', 'wp-google-maps');
5573
- __('Centro Trasfusionale, V.le Tre Martiri, 89, Rovigo - RO', 'wp-google-maps');
5574
- __('OSPEDALE S. MARIA DELLA MISERICORDIA', 'wp-google-maps');
5575
- __('UOC Medicina di Laboratorio, Viale tre Martiri, Rovigo - RO', 'wp-google-maps');
5576
- __('OSPEDALE ROVIGO', 'wp-google-maps');
5577
- __('Reparto Malattie Infettive, Ambulatorio Malattie Infettive - piano terra - Corpo D1, Via tre martiri, 140, Rovigo - RO', 'wp-google-maps');
5578
- __('U.O LABORATORIO ANALISI, v. Dei Carpani 16/Z, Castelfranco Veneto - TV', 'wp-google-maps');
5579
- __('ULSS2 della Marca trevigiana, Distretto di Asolo- UO Laboratorio Analisi', 'wp-google-maps');
5580
- __('SERD, Via Spellanzon, 55, Conegliano - TV', 'wp-google-maps');
5581
- __('GRUPPO C ULSS2', 'wp-google-maps');
5582
- __('Servizio di Igiene e Sanità Pubblica, Via Castellana, 2, Treviso - TV', 'wp-google-maps');
5583
- __('DIPARTIMENTO DI PREVENZIONE \"LA MADONNINA\"', 'wp-google-maps');
5584
- __('U.O.C. Dermatologia - Ambulatorio MTS, Via Scarpa, 8/9, Treviso - TV', 'wp-google-maps');
5585
- __('ULSS 2- Marca Trevigiana - OSPEDALE CA\' FONCELLO - Treviso', 'wp-google-maps');
5586
- __('SERD distretto Chioggia, Strada Madonna Marina, 500, Chioggia - VE', 'wp-google-maps');
5587
- __('AZIENDA ULSS 3 Serenissima Distretto di CHIOGGIA OSPEDALE CIVILE MADONNA DELLA NAVICELLA', 'wp-google-maps');
5588
- __('Laboratorio Analisi, Via XXIX Aprile 2, Dolo - VE', 'wp-google-maps');
5589
- __('AULSS 3 SERENISSIMA DISTRETTO DOLO-MIRANO - Unità Operativa Complessa Medicina di Laboratorio', 'wp-google-maps');
5590
- __('Lab. Analisi, Via XXIX Aprile 2, Dolo - VE', 'wp-google-maps');
5591
- __('AZIENDA ULSS 3 Serenissima Distretto di Dolo-Mirano Ospedali di Dolo e Mirano', 'wp-google-maps');
5592
- __('Servizio Igiene Sanità Pubblica, Riviera XXIX Aprile, 2, Dolo - VE', 'wp-google-maps');
5593
- __('AZIENDA USL 13 OSPEDALE CIVILE DI DOLO', 'wp-google-maps');
5594
- __('Ambulatorio Sanità Pubblica ed. 31, Riviera XXIX Aprile 2, Dolo - VE', 'wp-google-maps');
5595
- __('SERVIZIO DI IGIENE E SANITA\' PUBBLICA TERRITORIALE (DIP. DI PREVENZIONE) AULSS 3 SERENISSIMA - DISTRETTO DI MIRANO DOLO', 'wp-google-maps');
5596
- __('Ambulatorio Prelievi, Viale San Marco, 76, Marcon - VE', 'wp-google-maps');
5597
- __('AULSS 3 SERENISSIMA - DISTRETTO 2 di MESTRE TERRRAFERMA', 'wp-google-maps');
5598
- __('SerT - Servizio di Alcologia di Mirano, Via Miranese, 6, Mirano - VE', 'wp-google-maps');
5599
- __('ASL 3 VENEZIA', 'wp-google-maps');
5600
- __('UOSD Medicina Trasfusionale, Via Zappetti, 58, Portogruaro - VE', 'wp-google-maps');
5601
- __('ULSS 4 \"Veneto Orientale\"', 'wp-google-maps');
5602
- __('Ambulatorio Prelievi, Via Tagliamento, 5, Quarto d\'Altino - VE', 'wp-google-maps');
5603
- __('AULSS 3 SERENISSIMA - DISTRETTO 2 di MESTRE TERRAFERMA', 'wp-google-maps');
5604
- __('Ser.D., Via Verdi, 2, San Donà di Piave - VE', 'wp-google-maps');
5605
- __('ULSS 4 Veneto Orientale', 'wp-google-maps');
5606
- __('UOSD MEDICINA TRASFUSIONALE, Via N. Sauro, 25, San Donà di Piave - VE', 'wp-google-maps');
5607
- __('ULSS N. 4 VENETO ORIENTALE', 'wp-google-maps');
5608
- __('Igiene e Sanità Pubblica AULSS 3 Serenissima Distretto veneziano, P.le Giustiniani, 11/d, Venezia - VE', 'wp-google-maps');
5609
- __('AMBULATORIO PREVENZIONE AIDS GRUPPO C', 'wp-google-maps');
5610
- __('Ambulatorio Punto Prelievi, Via Tommaseo, 7, Venezia - VE', 'wp-google-maps');
5611
- __('Ambulatorio, Via Della Soia,20, Venezia - VE', 'wp-google-maps');
5612
- __('Centro Prelievi, Cannaregio, 3458, Venezia - VE', 'wp-google-maps');
5613
- __('AUSL 3 SERENISSIMA - OSPEDALE S. RAFFAELE ARCANGELO FATEBENEFRATELLI', 'wp-google-maps');
5614
- __('Centro Prelievi, Castello 6777 Campi SS. Giovanni e Paolo, Venezia - VE', 'wp-google-maps');
5615
- __('AZIENDA SANITARIA ULSS 3, OSPEDALE CIVILE SS. Giovanni e Paolo', 'wp-google-maps');
5616
- __('Ambulatorio Malattie Infettive - Ambulatorio VI piano - Accesso E, Via Paccagnella, 11, Venezia - VE', 'wp-google-maps');
5617
- __('OSPEDALE DELL\'ANGELO', 'wp-google-maps');
5618
- __('Ser.D. Sede di Bussolengo, V.lo Rivolti, 30/a, Bussolengo - VR', 'wp-google-maps');
5619
- __('SER.D. REGIONE VENETO ULSS 9 SCALIGERA SEDE di BUSSOLENGO', 'wp-google-maps');
5620
- __('Laboratorio Analisi, Via Ospedale 2, Bussolengo - VR', 'wp-google-maps');
5621
- __('USL 22 OSPEDALE ORLANDI - Lab. Chimica Clinica e Microbiologica', 'wp-google-maps');
5622
- __('Sede di Legnago, V.le Luigi Cadorna, 3, Legnago - VR', 'wp-google-maps');
5623
- __('AZIENDA ULSS 9 SCALIGERA DIPARTIMENTO DIPENDENZE UOC Dipendenze Bussolengo e Legnago', 'wp-google-maps');
5624
- __('Unità Operativa Malattie Infettive, Via Giannella, 1, Legnago - VR', 'wp-google-maps');
5625
- __('OSPEDALE MATER SALUTIS', 'wp-google-maps');
5626
- __('Laboratorio Analisi, Via Circonvallazione, 1, San Bonifacio - VR', 'wp-google-maps');
5627
- __('ULSS 20 - PRESIDIO OSPEDALIERO GIROLAMO FRACASTORO', 'wp-google-maps');
5628
- __('Divisione Malattie Infettive, Piazzale Ludovico Antonio Scuro, 10, Verona - VR', 'wp-google-maps');
5629
- __('AZIENDA OSPEDALIERA UNIVERSITARIA INTEGRATA - OSPEDALE BORGO ROMA', 'wp-google-maps');
5630
- __('Ambulatorio, VIA CAMPANIA 1, presso Distretto Sanitario 1, Verona - VR', 'wp-google-maps');
5631
- __('Azienda ULSS 9 SCALIGERA VERONA - UOS MALATTIE INFETTIVE', 'wp-google-maps');
5632
- __('Laboratorio Microbiologia, Piazzale Stefani, 1, Verona - VR', 'wp-google-maps');
5633
- __('OSPEDALE BORGO TRENTO - UNIVERSITA\' DI VERONA - AZIENDA OSPEDALIERA UNIVERSITARIA INTEGRATA UNITA\'OPERATIVA COMPLESSA DI MICROBIOLOGIA E VIROLOGIA', 'wp-google-maps');
5634
- __('Ser.D. sede di Villafranca, Via Fantoni, angolo via A. Porta., Villafranca di Verona - VR', 'wp-google-maps');
5635
- __('SER.D. REGIONE VENETO ULSS 9 SCALIGERA SEDE DI VILLAFRANCA', 'wp-google-maps');
5636
- __('Ambulatorio Dipartimento Dipendenze SerD Legnago sede di Zevio ULLSS 9 Scaligera, Via Chiarenzi, 2, Zevio - VR', 'wp-google-maps');
5637
- __('ULLSS 9 SCALIGERA SEDE DI ZEVIO', 'wp-google-maps');
5638
- __('Laboratorio Analisi, Via Martiri di Granezza s.n.c., Asiago - VI', 'wp-google-maps');
5639
- __('USL n. 7 PEDEMONTANA OSPEDALE CIVILE', 'wp-google-maps');
5640
- __('Laboratorio Analisi, Via dei Lotti, 40, Bassano del Grappa - VI', 'wp-google-maps');
5641
- __('AULSS 7 PEDEMONTANA BASSANO DEL GRAPPA OSPEDALE S. BASSIANO', 'wp-google-maps');
5642
- __('SERD ( Servizio Tossicodipendenze), Via Cereria 14 Palazzina C, Bassano del Grappa - VI', 'wp-google-maps');
5643
- __('DISTRETTO SOCIO SANITARIO \"MONSIGNOR NEGRIN\"', 'wp-google-maps');
5644
- __('Servizio Dipendenze, Via Cereria, 14, Bassano del Grappa - VI', 'wp-google-maps');
5645
- __('OSPEDALE', 'wp-google-maps');
5646
- __('Ambulatorio Malattie Infettive, Via Dei Lotti, 40, Bassano del Grappa - VI', 'wp-google-maps');
5647
- __('OSPEDALE SAN BASSIANO', 'wp-google-maps');
5648
- __('Laboratorio Analisi, Via Sisana, 1, Lonigo - VI', 'wp-google-maps');
5649
- __('OSPEDALE CIVILE S. GIOVANNI BATTISTA', 'wp-google-maps');
5650
- __('Laboratorio Analisi, Via Capo di Sopra, 3, Noventa Vicentina - VI', 'wp-google-maps');
5651
- __('OSPEDALE CIVILE PIETRO MILANI -ASL 6', 'wp-google-maps');
5652
- __('U. O. Malattie Infettive, Via Garziere, 42, Santorso - VI', 'wp-google-maps');
5653
- __('ULSS 7 Pedemontana OSPEDALE ALTO VICENTINO', 'wp-google-maps');
5654
- __('Laboratorio Microbiologia e Virologia, Via Rodolfi, 37, Vicenza - VI', 'wp-google-maps');
5655
- __('AULSS 8 VICENZA OSPEDALE CIVILE', 'wp-google-maps');
5656
- __('U.O.C. Ambulatorio di Malattie Infettive, Via Rodolfi, 27, Vicenza - VI', 'wp-google-maps');
5657
- __('AZIENDA SANITARIA ULSS8 BERICA. OSPEDALE S. BORTOLO', 'wp-google-maps');
5658
- __('A.O. UNIVERSITARIA SAN GIOVANNI RUGGI D\'ARAGONA', 'wp-google-maps');
5659
- __('AZIENDA OSPEDALIERA OSPEDALE DI ZONA OSPEDALE S.PIETRO FATEBENEFRATELLI', 'wp-google-maps');
5660
- __('OSPEDALE PAPA GIOVANNI XXIII', 'wp-google-maps');
5661
- __('ASST del Garda', 'wp-google-maps');
5662
- __('ASST SANTI PAOLO E CARLO MILANO POLO UNIVERSITARIO', 'wp-google-maps');
5663
- __('POLO OSPEDALIERO FATEBENEFRATELLI E OFTALMICO', 'wp-google-maps');
5664
- __('ASL MB (MONZA BRIANZA)', 'wp-google-maps');
5665
- __('ASST DI VIMERCATE', 'wp-google-maps');
5666
- __('ASST VALLE OLONA', 'wp-google-maps');
5667
- __('AZIENDA SANITARIA ASTI - PRESIDIO OSPEDALIERO CARDINAL MASSAIA', 'wp-google-maps');
5668
- __('ASL TO4 DISTRETTO DI SETTIMO TORINESE', 'wp-google-maps');
5669
- __('OSPEDALE SAN DONATO D\'AREZZO', 'wp-google-maps');
5670
- __('ASL 9 GROSSETO SEZ. TRASFUSIONALE COLLINE METALLIFERE', 'wp-google-maps');
5671
- __('AZIENDA USLTOSCANA NORD OVEST', 'wp-google-maps');
5672
- __('OSPEDALE DI PRATO', 'wp-google-maps');
5673
- __('AZIENDA OSPEDALIERO UNIVERSITARIA OSPEDALE S.M. DELLA MISERICORDIA', 'wp-google-maps');
5674
- __('Via Fiumara, 11-15, 16149 Genova GE, Italy', 'wp-google-maps');
5675
- __('Centro Commerciale Fiumara', 'wp-google-maps');
5676
- __('Via Sant\'Anna, 30, 16035 Rapallo GE, Italy', 'wp-google-maps');
5677
- __('Giavina - De Martini', 'wp-google-maps');
5678
- __('Via Variante Aurelia, 30, 19038 Sarzana SP, Italy', 'wp-google-maps');
5679
- __('Granbrico', 'wp-google-maps');
5680
- __('Via Fratelli Bandiera, 12, 24127 Bergamo BG, Italy', 'wp-google-maps');
5681
- __('Hd. Tv. Srl', 'wp-google-maps');
5682
- __('Via della Scaletta, 69/71, 22077 Olgiate Comasco CO, Italy', 'wp-google-maps');
5683
- __('Comedil Mangino Srl', 'wp-google-maps');
5684
- __('Via Giovanni Amendola, 45, 20037 Paderno Dugnano MI, Italy', 'wp-google-maps');
5685
- __('Via L. Tolstoi, 85, 20098 San Giuliano Milanese MI, Italy', 'wp-google-maps');
5686
- __('Via Francesco Petrarca, 111, 20099 Sesto San Giovanni MI, Italy', 'wp-google-maps');
5687
- __('Elettronica Sestese', 'wp-google-maps');
5688
- __('68, Via Franklin Vivenza, 46100 Mantova MN, Italy', 'wp-google-maps');
5689
- __('C.D.E. di Fanti Giovanni & C. sas - Casa dell’elettronica', 'wp-google-maps');
5690
- __('Via del Malnino, 26, 21040 Fusetti VA, Italy', 'wp-google-maps');
5691
- __('Punt Muragl, 7503 Samaden, Switzerland', 'wp-google-maps');
5692
- __('Punt Muragl, 7503 Samedan - Tel. 081 838 80 26 - Sito Web: www.doitbaumarkt.ch', 'wp-google-maps');
5693
- __('Do It', 'wp-google-maps');
5694
- __('PRESIDIO OSPEDALIERO DI CITTADELLA - AULSS6 EUGANEA', 'wp-google-maps');
5695
- __('Via S. Bernardino 24, 6532 Arbedo-Castione, Switzerland', 'wp-google-maps');
5696
- __('HG Commerciale', 'wp-google-maps');
5697
- __('Via ai Molini 47, 6616 Losone, Switzerland', 'wp-google-maps');
5698
- __('Suncolor SA', 'wp-google-maps');
5699
- __('Via d\'Argine 1, 6930 Bedano, Switzerland', 'wp-google-maps');
5700
- __('Aquila, Paese, 6719 Blenio, Switzerland', 'wp-google-maps');
5701
- __('Pitisc Sagl', 'wp-google-maps');
5702
- __('Via dei Patrizi 3, 6616 Losone, Switzerland', 'wp-google-maps');
5703
- __('Via la Stampa 18, 6965 Lugano, Switzerland', 'wp-google-maps');
5704
- __('Ferramenta BL SA', 'wp-google-maps');
5705
- __('Via Fola 5, 6965 Lugano, Switzerland', 'wp-google-maps');
5706
- __('Via Pobiette 1, 6928 Manno, Switzerland', 'wp-google-maps');
5707
- __('Taiana SA', 'wp-google-maps');
5708
- __('strada Cantonale 26, 6915 Pambio-Noranco, Switzerland', 'wp-google-maps');
5709
- __('Sala Ferramenta SA', 'wp-google-maps');
5710
- __('Via Canonica 13, 6950 Tesserete, Switzerland', 'wp-google-maps');
5711
- __('Menghetti Ferramenta', 'wp-google-maps');
5712
- __('Via Colombera 12A, 6852 Genestrerio, Switzerland', 'wp-google-maps');
5713
- __('Via Stella 19, 6850 Mendrisio, Switzerland', 'wp-google-maps');
5714
- __('Ferramenta Maspoli SA', 'wp-google-maps');
5715
- __('Via Tancia, 57, 02100 Rieti RI, Italy', 'wp-google-maps');
5716
- __('Turania Srl', 'wp-google-maps');
5717
- __('Via Nazionale, 8, 98050 Vigliatore ME, Italy', 'wp-google-maps');
5718
- __('Foredil Srl', 'wp-google-maps');
5719
- __('Via Papa Giovanni XXIII, 222, 98051 Barcellona Pozzo di Gotto ME, Italy', 'wp-google-maps');
5720
- __('Alessi Domenico S.A.S. Di Alessi Francesco & C.', 'wp-google-maps');
5721
- __('Kirchbergstrasse 3, 3400 Burgdorf, Switzerland', 'wp-google-maps');
5722
- __('Egger & Co.. AG Eisen & Metalle, Burgdorf', 'wp-google-maps');
5723
- __('Freiestrasse 62, 3604 Thun, Switzerland', 'wp-google-maps');
5724
- __('Gerber Stegmann AG', 'wp-google-maps');
5725
- __('Via Circonvallazione, 7, 67048 Rocca di mezzo AQ, Italy', 'wp-google-maps');
5726
- __('Technology Services Srl - Vendita Ed Assistenza Caldaie', 'wp-google-maps');
5727
- __('Via Giacomo Matteotti, 55, 95025 Aci Sant\'Antonio CT, Italy', 'wp-google-maps');
5728
- __('Adicem Srl', 'wp-google-maps');
5729
- __('Corso Umberto I, 118, 90010 Ficarazzi PA, Italy', 'wp-google-maps');
5730
- __('F.lli Miosi E C. Snc', 'wp-google-maps');
5731
- __('Via Giovanni Prati, 71, 98051 Barcellona Pozzo di Gotto ME, Italy', 'wp-google-maps');
5732
- __('Commercio materiale edile', 'wp-google-maps');
5733
- __('Aquilia Nunzia', 'wp-google-maps');
5734
- __('Via Giuseppe Garibaldi, 97, 94010 Aidone EN, Italy', 'wp-google-maps');
5735
- __('Rinaldi Paolo', 'wp-google-maps');
5736
- __('Via Umberto I°, 99, 98063 Gioiosa Marea ME, Italy', 'wp-google-maps');
5737
- __('Via Umberto I°, 99, 98063 Gioiosa Marea ME, +39 328 563 37 26', 'wp-google-maps');
5738
- __('Dumifer Srls', 'wp-google-maps');
5739
- __('Via della Stazione, 301, 67028 Stazione di San Demetrio AQ, Italy', 'wp-google-maps');
5740
- __('Coletti Pasquale', 'wp-google-maps');
5741
- __('Via Dottor Giovanni Varesi 18, 6600 Locarno, Switzerland', 'wp-google-maps');
5742
- __('Frigerio SA', 'wp-google-maps');
5743
- __('Via S. Gottardo 146, 6942 Savosa, Switzerland', 'wp-google-maps');
5744
- __('Ticinocolor SA', 'wp-google-maps');
5745
- __('Rosenmattstrasse 6, 3297 Leuzigen, Switzerland', 'wp-google-maps');
5746
- __('TrendSolution Switzerland GmbH', 'wp-google-maps');
5747
- __('Via Ugo Foscolo, 15, 22029 Brughiere CO, Italy', 'wp-google-maps');
5748
- __('Edil Viganò Srl', 'wp-google-maps');
5749
- __('Via Nazionale Nord, 15A, 23823 Colico Piano LC, Italy', 'wp-google-maps');
5750
- __('Tecno C.T. Srl', 'wp-google-maps');
5751
- __('Via Milano, 52, 23032 Bormio SO, Italy', 'wp-google-maps');
5752
- __('Bormio Ediltrasporti Srl', 'wp-google-maps');
5753
- __('Via Don Luigi Guanella, 37, 23020 Mese SO, Italy', 'wp-google-maps');
5754
- __('Ferramenta Valfer', 'wp-google-maps');
5755
- __('Via Statale, 461, 23013 Cosio Valtellino SO, Italy', 'wp-google-maps');
5756
- __('Punto Edile Srl', 'wp-google-maps');
5757
- __('Loc. Rezzonico, 22010 San Siro CO, Italy', 'wp-google-maps');
5758
- __('Giardelli Dino', 'wp-google-maps');
5759
- __('Via Statale Regina, 48, 22010 Carlazzo CO, Italy', 'wp-google-maps');
5760
- __('Pirovano Giovanni Srl', 'wp-google-maps');
5761
- __('Zone industriale, 6804 Bironico, Switzerland', 'wp-google-maps');
5762
- __('Somazzi Dario Materiali da costruzione SA', 'wp-google-maps');
5763
- __('Via Spinida, 37, 23015 Dubino SO, Italy', 'wp-google-maps');
5764
- __('Edilizia Colombini Srl', 'wp-google-maps');
5765
- __('Viale Stelvio, 2, 23018 Talamona SO, Italy', 'wp-google-maps');
5766
- __('Biomarket Srl', 'wp-google-maps');
5767
- __('Via Mulino di Pile, 4, 67100 L\'Aquila AQ, Italy', 'wp-google-maps');
5768
- __('IDRO TS Srl', 'wp-google-maps');
5769
- __('Via Michelangelo Buonarroti, 46, 20093 Cologno Monzese MI, Italy', 'wp-google-maps');
5770
- __('Elcart Distribution Spa', 'wp-google-maps');
5771
- __('Via Rasia, 833, 23030 Livigno SO, Italy', 'wp-google-maps');
5772
- __('Gemini Group Di Gemini Puntoedile Srl', 'wp-google-maps');
5773
- __('47 VIA SPINA, Castiglione Cosentino, CS 87040, 87046 Montalto Uffugo CS, Italy', 'wp-google-maps');
5774
- __('Framaro Srl', 'wp-google-maps');
5775
- __('Via Tomasi di Lampedusa, 186, 98061 Brolo ME, Italy', 'wp-google-maps');
5776
- __('Via Vittorio Emanuele III, 116 - 98061 Brolo (ME)  +39 0941 562 059', 'wp-google-maps');
5777
- __('Arte Ceramica', 'wp-google-maps');
5778
- __('Tamoil Rende Ovest, 223, 87036 Quattromiglia CS, Italy', 'wp-google-maps');
5779
- __('Rende Ovest (Tamoil)', 'wp-google-maps');
5780
- __('Via S. Michele, 37, 87024 Marina di Fuscaldo CS, Italy', 'wp-google-maps');
5781
- __('General Market Fratelli Zicarelli S.N.C.', 'wp-google-maps');
5782
- __('Corso Giuseppe Mazzini, 33, 86100 Campobasso CB, Italy', 'wp-google-maps');
5783
- __('GI.MA. DESIGN srl', 'wp-google-maps');
5784
- __('Località Cerrelli, 129, 84045 Cerrelli SA, Italy', 'wp-google-maps');
5785
- __('Idrotermoclima di Emilio Giannella', 'wp-google-maps');
5786
- __('Km. 53 Via Salaria Nuova, Poggio Moiano, RI 02037, 02037 Osteria Nuova RI, Italy', 'wp-google-maps');
5787
- __('Big Mat - Ediltutto Srl', 'wp-google-maps');
5788
- __('Viale Papa Paolo VI, 39, 96014 Floridia SR, Italy', 'wp-google-maps');
5789
- __('Guardo Angelo Srl', 'wp-google-maps');
5790
- __('Via Villafranca, 3, 00041 Ariccia RM, Italy', 'wp-google-maps');
5791
- __('Rolesco Srl', 'wp-google-maps');
5792
- __('Via Laghi, 47, 67051 Avezzano AQ, Italy', 'wp-google-maps');
5793
- __('Di Stefano Srls Unip', 'wp-google-maps');
5794
- __('Via Charels Suot 20, 7502 Bever, Switzerland', 'wp-google-maps');
5795
- __('Via Charels Suot 20 CH-7502 Bever T +41 81 851 10 80', 'wp-google-maps');
5796
- __('Jenny SA, Fierramainta', 'wp-google-maps');
5797
- __('Rue des Ardennes 89, 6780 Messancy, Belgium', 'wp-google-maps');
5798
- __('Arma Sa', 'wp-google-maps');
5799
- __('Via Antonio Meucci, 2, 20834 Nova Milanese MB, Italy', 'wp-google-maps');
5800
- __('Il Mattone Srl', 'wp-google-maps');
5801
- __('1, Via Fratelli Crespi, 24020 Gromo BG, Italy', 'wp-google-maps');
5802
- __('Gromo Edilcom (S.R.L.)', 'wp-google-maps');
5803
- __('Via Giosuè Carducci, 6, 24026 Cazzano Sant\'Andrea BG, Italy', 'wp-google-maps');
5804
- __('Centro Edilizia s.r.l.', 'wp-google-maps');
5805
- __('Via Nazionale, 575, 64026 Roseto degli Abruzzi TE, Italy', 'wp-google-maps');
5806
- __('Roseto Calcestruzzi Srl', 'wp-google-maps');
5807
- __('Via Giuseppe di Vittorio, 80, 64100 Teramo TE, Italy', 'wp-google-maps');
5808
- __('Legno E... Di Gianni E Roberto D\'Ostilio S.N.C.', 'wp-google-maps');
5809
- __('Via Nazionale, 35, 64039 Val Vomano TE, Italy', 'wp-google-maps');
5810
- __('Commercial Point Srl', 'wp-google-maps');
5811
- __('Via Castello, 26, 22020 Pellio Intelvi CO, Italy', 'wp-google-maps');
5812
- __('Bordogna Srl', 'wp-google-maps');
5813
- __('Strada Prati, 67, 65124 Pescara PE, Italy', 'wp-google-maps');
5814
- __('Vemac S.r.l.', 'wp-google-maps');
5815
- __('Strada Statale 649, 72, 66010 Fondo Valle Alento CH, Italy', 'wp-google-maps');
5816
- __('SS16, 163, 64028 Silvi TE, Italy', 'wp-google-maps');
5817
- __('Via Pasquale Taccone, 3, 64100 Teramo TE, Italy', 'wp-google-maps');
5818
- __('Traversa Via Nazionale per Teramo, 82, 64021 Mosciano Sant\'Angelo TE, Italy', 'wp-google-maps');
5819
- __('Viale dei Mori, 40, 62010 Zona Industriale Villa Mattei MC, Italy', 'wp-google-maps');
5820
- __('ULSS2 della Marca trevigiana, Distretto di Asolo- UOC Laboratorio Analisi', 'wp-google-maps');
5821
- __('Via Nazionale per Lanciano, 90, 66030 Santa Maria Imbaro CH, Italy', 'wp-google-maps');
5822
- __('Via Onorevole Giuseppe Saragat, 10, 67100 L\'Aquila AQ, Italy', 'wp-google-maps');
5823
- __('Via Alcide De Gasperi, 21, 67039 Sulmona AQ, Italy', 'wp-google-maps');
5824
- __('CIESSE INTERMEDIAZIONI sas', 'wp-google-maps');
5825
- __('Via Nazionale, 140, 23030 Villa di tirano SO, Italy', 'wp-google-maps');
5826
- __('Valtellina Rivestimenti Di Spada Michele & C. Sas', 'wp-google-maps');
5827
- __('Via A. Vici, 1, 06034 Foligno PG, Italy', 'wp-google-maps');
5828
- __('Domus Srl', 'wp-google-maps');
5829
- __('Gottstattstrasse 18, 2504 Biel, Switzerland', 'wp-google-maps');
5830
- __('F. + H. Engel AG', 'wp-google-maps');
5831
- __('Oberebenestrasse 51, 5620 Bremgarten, Switzerland', 'wp-google-maps');
5832
- __('Puag AG', 'wp-google-maps');
5833
- __('Kleine Gärtnerstraße 18, 25355 Barmstedt, Germany', 'wp-google-maps');
5834
- __('KremerGlismann GmbH & Co. KG', 'wp-google-maps');
5835
- __('Route du Risoud 7, 1348 Le Chenit, Switzerland', 'wp-google-maps');
5836
- __('Bazar De La Vallee S.a.', 'wp-google-maps');
5837
- __('Route Chez Bora 16, 1871 Monthey, Switzerland', 'wp-google-maps');
5838
- __('So Smart Product', 'wp-google-maps');
5839
- __('Via degli Artigiani, 16, 05100 Terni TR, Italy', 'wp-google-maps');
5840
- __('Printec S.r.l.', 'wp-google-maps');
5841
- __('Via Roma, 133, 24010 Sedrina BG, Italy', 'wp-google-maps');
5842
- __('Fer Edil Astro S.r.l.', 'wp-google-maps');
5843
- __('Via Militare, 19A, 22010 Carlazzo CO, Italy', 'wp-google-maps');
5844
- __('Battaglia Carmen', 'wp-google-maps');
5845
- __('Pirovano Giovanni S.R.L.', 'wp-google-maps');
5846
- __('Via della Torre, 10, 23015 Dubino SO, Italy', 'wp-google-maps');
5847
- __('Ambrosini Sas Di Ambrosini N. & C.', 'wp-google-maps');
5848
- __('Via dell\' Industria, 12, 64018 Tortoreto Lido TE, Italy', 'wp-google-maps');
5849
- __('Isocolor Srl', 'wp-google-maps');
5850
- __('Via Valeriana, 109, 23019 Traona SO, Italy', 'wp-google-maps');
5851
- __('Edil B.M. Baraiolo Srl', 'wp-google-maps');
5852
- __('Via Gabriele D\'Annunzio, 41, 65024 Manoppello Scalo PE, Italy', 'wp-google-maps');
5853
- __('Edil Ferramenta Snc', 'wp-google-maps');
5854
- __('Via Industria 1, 6934 Bioggio, Switzerland', 'wp-google-maps');
5855
- __('AB Metal-Impianti SA', 'wp-google-maps');
5856
- __('Via Laveggio 17, 6850 Mendrisio, Switzerland', 'wp-google-maps');
5857
- __('AB Metal - Impianti SA', 'wp-google-maps');
5858
- __('Campo delle Vigne 1, 6594 Gambarogno, Switzerland', 'wp-google-maps');
5859
- __('Strada Statale 36 del Lago di Como e dello Spluga, 70, 23020 San Cassiano SO, Italy', 'wp-google-maps');
5860
- __('Scaramellini Materiali Edili', 'wp-google-maps');
5861
- __('SS80, 4, 64046 Montorio Al Vomano TE, Italy', 'wp-google-maps');
5862
- __('Ferramenta Minervini', 'wp-google-maps');
5863
- __('Via Spluga, 120, 23015 Dubino SO, Italy', 'wp-google-maps');
5864
- __('De Giacomina Idea Regalo S.R.L.', 'wp-google-maps');
5865
- __('Rue Fritz-Courvoisier 1, 2300 La Chaux-de-Fonds, Switzerland', 'wp-google-maps');
5866
- __('Toulefer S.A.', 'wp-google-maps');
5867
- __('Pré Monsieur 1, 2942 Alle, Switzerland', 'wp-google-maps');
5868
- __('Quinca S.A.', 'wp-google-maps');
5869
- __('Avenue du Grand-Champsec 12, 1950 Sion, Switzerland', 'wp-google-maps');
5870
- __('Quincaillerie Walpen SA', 'wp-google-maps');
5871
- __('Place du Marché 2, 3963 Crans-Montana, Switzerland', 'wp-google-maps');
5872
- __('Quincaillerie Mabillard', 'wp-google-maps');
5873
- __('Place de l\'Union 10, 1188 Gimel, Switzerland', 'wp-google-maps');
5874
- __('Durussel & Fils S.A.', 'wp-google-maps');
5875
- __('Avenue Nestlé 25, 1800 Vevey, Switzerland', 'wp-google-maps');
5876
- __('Quincaillerie Riviera SA', 'wp-google-maps');
5877
- __('Route du Milieu du Monde 17, 1318 Pompaples, Switzerland', 'wp-google-maps');
5878
- __('Quincaillerie Les 3 Vallons', 'wp-google-maps');
5879
- __('Via Lungo Adda V Alpini, 11, 23037 Tirano SO, Italy', 'wp-google-maps');
5880
- __('VAL COLOR Snc', 'wp-google-maps');
5881
- __('Via Cecco Angiolieri, 1, 06073 Mantignana PG, Italy', 'wp-google-maps');
5882
- __('Ferramenta Bricca', 'wp-google-maps');
5883
- __('Via Nazionale Adriatica, 156, 64026 Cologna Spiaggia TE, Italy', 'wp-google-maps');
5884
- __('FERRAMENTA ADRIATICA', 'wp-google-maps');
5885
- __('Boulevard Carl-Vogt 5, 1205 Genève, Switzerland', 'wp-google-maps');
5886
- __('EDMOND BAUD CARL VOGT', 'wp-google-maps');
5887
- __('Rue de la Fontenette 25, 1227 Carouge, Switzerland', 'wp-google-maps');
5888
- __('EDMOND BAUD CAROUGE', 'wp-google-maps');
5889
- __('Rue du Grand-Pré 25, 1202 Genève, Switzerland', 'wp-google-maps');
5890
- __('Edmond Baud, Société Anonyme', 'wp-google-maps');
5891
- __('Via Mercurio, 12, 52025 Montevarchi AR, Italy', 'wp-google-maps');
5892
- __('Marziali Franco & C. Srl', 'wp-google-maps');
5893
- __('36 Viale Turati Filippo, Loro Ciuffenna, AR 52024, 52024 Loro Ciuffenna AR, Italy', 'wp-google-maps');
5894
- __('La Celebre Srl', 'wp-google-maps');
5895
- __('Via delle Acacie, 30, 05018 Ciconia TR, Italy', 'wp-google-maps');
5896
- __('R.i.m.e. S.r.l.', 'wp-google-maps');
5897
- __('SS3, 6, 06028 Località Le Pezze PG, Italy', 'wp-google-maps');
5898
- __('Mariani Giovanni Commerciale S.R.L.', 'wp-google-maps');
5899
- __('Via Rocco Chinnici, 11, 06049 Spoleto PG, Italy', 'wp-google-maps');
5900
- __('C.D.S. Amianto Spoleto', 'wp-google-maps');
5901
- __('C. da Sant\'Elena, 66026 Ortona CH, Italy', 'wp-google-maps');
5902
- __('Ceves Srl', 'wp-google-maps');
5903
- __('Via Massetana, 1, 53018 Rosia SI, Italy', 'wp-google-maps');
5904
- __('Fale Di Falchi Riccardo', 'wp-google-maps');
5905
- __('Via delle Nazioni, 3, 06083 Bastia Umbra PG, Italy', 'wp-google-maps');
5906
- __('Ferramenta l\'Utensile', 'wp-google-maps');
5907
- __('Contrada Cerreto, 99, 66010 Mezzano CH, Italy', 'wp-google-maps');
5908
- __('Mennilli e Patricelli snc', 'wp-google-maps');
5909
- __('Vicolo del Molino, 30, 52044 Cortona AR, Italy', 'wp-google-maps');
5910
- __('Antonielli Moreno', 'wp-google-maps');
5911
- __('Via del Bidente, 4, 52015 Pratovecchio AR, Italy', 'wp-google-maps');
5912
- __('Alberti Srl Ferramenta', 'wp-google-maps');
5913
- __('Via Ferriera, 62, 06089 Ferriera PG, Italy', 'wp-google-maps');
5914
- __('STARFER', 'wp-google-maps');
5915
- __('Via della Valtiera, 81, 06135 Collestrada PG, Italy', 'wp-google-maps');
5916
- __('Ticchioni srl', 'wp-google-maps');
5917
- __('SS75, 4, 06081 Santa Maria degli Angeli PG, Italy', 'wp-google-maps');
5918
- __('FERRAMENTA GRELLI', 'wp-google-maps');
5919
- __('294 Localita\' Olmo, Arezzo, AR 52100, 52100 Arezzo AR, Italy', 'wp-google-maps');
5920
- __('Meucci Edilizia Sas', 'wp-google-maps');
5921
- __('Str. della Bonifica, 16, 63085 Bonifica AP, Italy', 'wp-google-maps');
5922
- __('Ceci Siderurgica SpA', 'wp-google-maps');
5923
- __('Via Giuseppe Guarnieri, 37, 63073 Offida AP, Italy', 'wp-google-maps');
5924
- __('S.G.A. Di Catalini Luca E Andrea & C. Snc', 'wp-google-maps');
5925
- __('Via Cristoforo Colombo, 78, 63077 Monsampolo del Tronto AP, Italy', 'wp-google-maps');
5926
- __('Edilcolore Di Nespeca Alberto & C Snc', 'wp-google-maps');
5927
- __('Via Val Tiberina, 140H, 63074 San Benedetto del Tronto AP, Italy', 'wp-google-maps');
5928
- __('Delta Vernici 2', 'wp-google-maps');
5929
- __('Via Don Minzoni, 38A, 63821 Porto Sant\'Elpidio FM, Italy', 'wp-google-maps');
5930
- __('Colantonio Srl', 'wp-google-maps');
5931
- __('Via Angelo Biondi, 191, 63857 Amandola FM, Italy', 'wp-google-maps');
5932
- __('Ferramenta Fratini Fabio', 'wp-google-maps');
5933
- __('Via Villa Curti, 41, 63091 Villa Curti AP, Italy', 'wp-google-maps');
5934
- __('Edilizia Villa Curti', 'wp-google-maps');
5935
- __('Via S. Giovanni, 9, 63074 San Benedetto del Tronto AP, Italy', 'wp-google-maps');
5936
- __('La Nuova Assoedil Srl', 'wp-google-maps');
5937
- __('Via del Commercio, 30, 63100 Ascoli Piceno AP, Italy', 'wp-google-maps');
5938
- __('Viva Brico Srl', 'wp-google-maps');
5939
- __('Via Marco Polo, 28, 63074 San Benedetto del Tronto AP, Italy', 'wp-google-maps');
5940
- __('Ascolani Raffaele', 'wp-google-maps');
5941
- __('Viale Pietro Serafini, 69t, 60044 Fabriano AN, Italy', 'wp-google-maps');
5942
- __('FerMarket s.r.l.', 'wp-google-maps');
5943
- __('Via Penate 9, 6850 Mendrisio, Switzerland', 'wp-google-maps');
5944
- __('Fabio Rezzonico & CO', 'wp-google-maps');
5945
- __('FerMarket Srl', 'wp-google-maps');
5946
- __('Via della Libertà, 13, 63066 Grottammare AP, Italy', 'wp-google-maps');
5947
- __('EDILIZIA CIARROCCHI SRL', 'wp-google-maps');
5948
- __('Via Domenico Concordia, 22, 62100 Macerata MC, Italy', 'wp-google-maps');
5949
- __('Marcolini Ferramenta Srl', 'wp-google-maps');
5950
- __('Via 4 Novembre, 4, 63036 Spinetoli AP, Italy', 'wp-google-maps');
5951
- __('Italmont Srl', 'wp-google-maps');
5952
- __('Via P. la Torre, 29, 60022 Castelfidardo AN, Italy', 'wp-google-maps');
5953
- __('2m Srl Unipersonale', 'wp-google-maps');
5954
- __('Via Ancona, 73, 60027 San Biagio AN, Italy', 'wp-google-maps');
5955
- __('Effelle Di Montecchiani Fausto', 'wp-google-maps');
5956
- __('Via Maestri del Lavoro, 5, 60131 Ancona AN, Italy', 'wp-google-maps');
5957
- __('Ferramenta Moroni', 'wp-google-maps');
5958
- __('Via del Lavoro, 34, 61029 Urbino PU, Italy', 'wp-google-maps');
5959
- __('Ferramenta Biagiotti', 'wp-google-maps');
5960
- __('Via Giuseppe Mazzini, 80, 61020 Sant\'Angelo in Lizzola PU, Italy', 'wp-google-maps');
5961
- __('Euroferramenta SRL', 'wp-google-maps');
5962
- __('Via degli Abeti, 272, 61122 Pesaro PU, Italy', 'wp-google-maps');
5963
- __('Colorificio Santini Giancarlo & C. Srl', 'wp-google-maps');
5964
- __('1597/g, Via Lungarno, 52028 Lungarno AR, Italy', 'wp-google-maps');
5965
- __('Energia Impianti srl', 'wp-google-maps');
5966
- __('Via Camillo Benso Cavour, 20, 63821 Porto Sant\'Elpidio FM, Italy', 'wp-google-maps');
5967
- __('Ferramenta Braccialarghe Claudio E C. Snc', 'wp-google-maps');
5968
- __('Contrada Lago, 49, 63068 Montalto delle Marche AP, Italy', 'wp-google-maps');
5969
- __('Mattioli Albino Srl', 'wp-google-maps');
5970
- __('Via Garda, 23/25, 63813 Valtenna FM, Italy', 'wp-google-maps');
5971
- __('Mattioli Srl', 'wp-google-maps');
5972
- __('Largo Donatori Di Sangue, 10, 62012 Civitanova Marche MC, Italy', 'wp-google-maps');
5973
- __('Pavanelli Ottavio & C. s.a.s.', 'wp-google-maps');
5974
- __('Via L. Rossi, 9, 62015 Monte San Giusto MC, Italy', 'wp-google-maps');
5975
- __('Ferramenta Fer.Gi.Sa.Di Iommi S.E G. Snc', 'wp-google-maps');
5976
- __('Via Fermana Nord, 1480, 63812 Montegranaro FM, Italy', 'wp-google-maps');
5977
- __('Iommi Designer Di Iommi Adriano & C. S.A.S.', 'wp-google-maps');
5978
- __('Via Carlo Alberto Dalla Chiesa, 4, 63844 Grottazzolina FM, Italy', 'wp-google-maps');
5979
- __('FERRAMENTA SABBATINI SRL', 'wp-google-maps');
5980
- __('Via Nazario Sauro, 27, 63827 Pedaso FM, Italy', 'wp-google-maps');
5981
- __('Ferramenta Ficiarà', 'wp-google-maps');
5982
- __('Via Toscana, 51, 63074 San Benedetto del Tronto AP, Italy', 'wp-google-maps');
5983
- __('Ferramenta Caselli', 'wp-google-maps');
5984
- __('Via Nazionale, 72, 63900 Lido di Fermo FM, Italy', 'wp-google-maps');
5985
- __('Emporio Adriatico Srl', 'wp-google-maps');
5986
- __('Via Buzzacchero, Umbertide, PG 06019, 06019 Umbertide PG, Italy', 'wp-google-maps');
5987
- __('Siderpucci S. R. L.', 'wp-google-maps');
5988
- __('Via Piana 32 Rivendita Marcelli, 52045 Foiano della Chiana AR, Italy', 'wp-google-maps');
5989
- __('Marcelli Materiali Edili', 'wp-google-maps');
5990
- __('Via G. Bortolotti, 1, 04100 Latina LT, Italy', 'wp-google-maps');
5991
- __('Edil Ferramenta Pesca Srl', 'wp-google-maps');
5992
- __('Via Pantanaccio, 118, 04100 Latina LT, Italy', 'wp-google-maps');
5993
- __('Luma Snc', 'wp-google-maps');
5994
- __('Via Apollo, 31, 04011 Genio Civile LT, Italy', 'wp-google-maps');
5995
- __('Materiali Abrasivi Distribuzione Srl', 'wp-google-maps');
5996
- __('Via Vallelata, 45, 04011 Aprilia LT, Italy', 'wp-google-maps');
5997
- __('Napoli S.r.l.', 'wp-google-maps');
5998
- __('Via Belice, 10, 04100 Latina LT, Italy', 'wp-google-maps');
5999
- __('Latina Colori Di Anastasia Fabrizio Snc', 'wp-google-maps');
6000
- __('Via Ontanese, 211, 00040 Lariano RM, Italy', 'wp-google-maps');
6001
- __('Gatta Legnami Srl', 'wp-google-maps');
6002
- __('Piazza delle Iris, 24, 00171 Roma RM, Italy', 'wp-google-maps');
6003
- __('Color Parati', 'wp-google-maps');
6004
- __('Via Flaminia Ternana, 93, 05035 Narni TR, Italy', 'wp-google-maps');
6005
- __('Materiali Edili Carpinelli Roberto', 'wp-google-maps');
6006
- __('Via Maffeo Pantaleoni, 8, 00044 Frascati RM, Italy', 'wp-google-maps');
6007
- __('Ellemme di Camiletti Luigi', 'wp-google-maps');
6008
- __('Via Ramo d\'Oro, 49, 00040 Ariccia RM, Italy', 'wp-google-maps');
6009
- __('Europarati 2001 Srl', 'wp-google-maps');
6010
- __('Via della Stazione, 17, 04019 Terracina LT, Italy', 'wp-google-maps');
6011
- __('Edil BI S.r.l. Materiali Edili', 'wp-google-maps');
6012
- __('Viale Tommaso Tittoni, 114, 04017 San Felice Circeo LT, Italy', 'wp-google-maps');
6013
- __('Diva Sas di Egidio Di Cosimo', 'wp-google-maps');
6014
- __('Via Trano, 25, 04029 Sperlonga LT, Italy', 'wp-google-maps');
6015
- __('M.De Simone SRL', 'wp-google-maps');
6016
- __('Via Franco Faggiana, 1354, 04100 Latina LT, Italy', 'wp-google-maps');
6017
- __('Colori Sezzi', 'wp-google-maps');
6018
- __('Via Formia, 25, 00177 Roma RM, Italy', 'wp-google-maps');
6019
- __('FLL di FRANCONETTI & LIO\' SAS', 'wp-google-maps');
6020
- __('Lungomare degli Ardeatini, 131, 00040 Marina di Ardea RM, Italy', 'wp-google-maps');
6021
- __('Fusco Franco', 'wp-google-maps');
6022
- __('Via Pratica di Mare, 2, 00040 Ardea RM, Italy', 'wp-google-maps');
6023
- __('Edil Parroni Di Parroni Tores', 'wp-google-maps');
6024
- __('Via Guido Cavalcanti, 1, 00042 Anzio RM, Italy', 'wp-google-maps');
6025
- __('Domenicucci srl', 'wp-google-maps');
6026
- __('Via Panama, 9, 00040 Pomezia RM, Italy', 'wp-google-maps');
6027
- __('Edifer Srl', 'wp-google-maps');
6028
- __('Via Nettunense, 78, 00042 Anzio RM, Italy', 'wp-google-maps');
6029
- __('Ferramenta Miozzi - Anzio', 'wp-google-maps');
6030
- __('Via Flavia, 17, 00042 Anzio RM, Italy', 'wp-google-maps');
6031
- __('Ferramenta Flavia colori e vernici ,duplicazioni chiavi,maurer', 'wp-google-maps');
6032
- __('Via Ss.trinita\', 313, 00030 Gavignano RM, Italy', 'wp-google-maps');
6033
- __('N & L Edil Ceramica', 'wp-google-maps');
6034
- __('12 Via Lanciani Rodolfo, Roma, RM 00162, 00162 Roma RM, Italy', 'wp-google-maps');
6035
- __('Di Silvestro Mauro parati e vernici', 'wp-google-maps');
6036
- __('59, Via Martiri di Belfiore, 57, 62012 Civitanova Marche MC, Italy', 'wp-google-maps');
6037
- __('Ferramenta C.M Di Campolungo Mario E C. Snc', 'wp-google-maps');
6038
- __('Via Leopoldo Ruspoli, 36, 00149 Roma RM, Italy', 'wp-google-maps');
6039
- __('DAVOLI FRANCESCO', 'wp-google-maps');
6040
- __('35 Via Acqua Vivola, Velletri, RM 00049, 00049 Velletri RM, Italy', 'wp-google-maps');
6041
- __('Lariano Parati Snc Di Moroni Luca E C.', 'wp-google-maps');
6042
- __('SS219, 29, 06022 Gualdo Tadino PG, Italy', 'wp-google-maps');
6043
- __('Progetto Casa Srl', 'wp-google-maps');
6044
- __('SP23a, 80, 00010 Mentana RM, Italy', 'wp-google-maps');
6045
- __('COLOR PARATI DUE SRLS', 'wp-google-maps');
6046
- __('Via Francesca Vecchia, 44, 51017 Pescia PT, Italy', 'wp-google-maps');
6047
- __('Perondi Domenico Srl', 'wp-google-maps');
6048
- __('Via Ficocchio, 28, 51011 Borgo A Buggiano PT, Italy', 'wp-google-maps');
6049
- __('Paolo Polpini Materiali Edili Srl', 'wp-google-maps');
6050
- __('Via del Brentino, 795, 55054 Massarosa LU, Italy', 'wp-google-maps');
6051
- __('Saver Srl', 'wp-google-maps');
6052
- __('21, Via Del Molino Di Mezzo, Lucca, LU 55100, 55100 Lucca LU, Italy', 'wp-google-maps');
6053
- __('Espressione del Colore s.n.c', 'wp-google-maps');
6054
- __('Via Lucca Camaiore Viareggio, 2, 55041 Camaiore LU, Italy', 'wp-google-maps');
6055
- __('Altemura Giovanni & C. Srl', 'wp-google-maps');
6056
- __('Via Provinciale Pratese, 276, 51100 Pistoia PT, Italy', 'wp-google-maps');
6057
- __('B&G Immobiliare Srl', 'wp-google-maps');
6058
- __('Via Provinciale Lucchese, 59, 51017 Pescia PT, Italy', 'wp-google-maps');
6059
- __('Betti Gian Mario', 'wp-google-maps');
6060
- __('Via del Cantone, 122, 51039 Quarrata PT, Italy', 'wp-google-maps');
6061
- __('Mesticheria Sandrolini Srl', 'wp-google-maps');
6062
- __('Via E. Fermi, 90, 51100 Pistoia PT, Italy', 'wp-google-maps');
6063
- __('Cambi Luigi Scpa', 'wp-google-maps');
6064
- __('Via della Rena, 11, 55027 Gallicano LU, Italy', 'wp-google-maps');
6065
- __('Fratelli Puppa', 'wp-google-maps');
6066
- __('Piazza Ponte d\'Oro, 31, 55023 Chifenti LU, Italy', 'wp-google-maps');
6067
- __('La Zecca Di Guarascio Riccardo', 'wp-google-maps');
6068
- __('Via per Camaiore, 8113, 55100 Lucca LU, Italy', 'wp-google-maps');
6069
- __('Agraria Valfreddana s.r.l.', 'wp-google-maps');
6070
- __('Via dell\'Ave Maria, 77, 55012 Capannori LU, Italy', 'wp-google-maps');
6071
- __('Centro Edile Lucca S.R.L.', 'wp-google-maps');
6072
- __('Viale del Bozzo, 263, 55100 Lucca LU, Italy', 'wp-google-maps');
6073
- __('L\'Edilizia Srl', 'wp-google-maps');
6074
- __('Via Europa, 430, 51039 Santonuovo PT, Italy', 'wp-google-maps');
6075
- __('La Ferramenta Snc di Michelucci Giovanni C.', 'wp-google-maps');
6076
- __('Via Fratelli Rosselli, 8, 51010 Massa e Cozzile PT, Italy', 'wp-google-maps');
6077
- __('BigMat F.lli Caralli S.r.l.', 'wp-google-maps');
6078
- __('Via Antonio Gramsci, 408, 51036 San Rocco PT, Italy', 'wp-google-maps');
6079
- __('Monti Lepanto srl', 'wp-google-maps');
6080
- __('Via Vittorio Veneto, 60, 55054 Massarosa LU, Italy', 'wp-google-maps');
6081
- __('Marco Santoni - webmaster', 'wp-google-maps');
6082
- __('Via Galileo Galilei, 33, 51100 Pistoia PT, Italy', 'wp-google-maps');
6083
- __('Grani Srl', 'wp-google-maps');
6084
- __('Viale Adua, 38, 51100 Pistoia PT, Italy', 'wp-google-maps');
6085
- __('Grani Srl Viale Adua', 'wp-google-maps');
6086
- __('Via Montalbano, 409, 51039 Quarrata PT, Italy', 'wp-google-maps');
6087
- __('DANI COLOR S.R.L.', 'wp-google-maps');
6088
- __('Via Padre Giovanni Antonelli, 520, 51100 Pistoia PT, Italy', 'wp-google-maps');
6089
- __('COSE DI CASA ', 'wp-google-maps');
6090
- __('Via Statale, 3, 55035 Sant\'Anastasio LU, Italy', 'wp-google-maps');
6091
- __('Rocchiccioli Alberto E C. S.N.C.', 'wp-google-maps');
6092
- __('Via Giuseppe Garibaldi, 52, 55031 Camporgiano LU, Italy', 'wp-google-maps');
6093
- __('Edil Garfagnana', 'wp-google-maps');
6094
- __('Strada Statale 1, 324, 19021 Arcola SP, Italy', 'wp-google-maps');
6095
- __('EDILTOP SRL', 'wp-google-maps');
6096
- __('Via Angelo Salmoiraghi, 58, 00133 Roma RM, Italy', 'wp-google-maps');
6097
- __('Pf Color Di Piccini Federico', 'wp-google-maps');
6098
- __('Via Nettunense, 83, 00040 Campoleone di Lanuvio LT, Italy', 'wp-google-maps');
6099
- __('Tognetto Gino', 'wp-google-maps');
6100
- __('Via Bovalino, 21, 00132 Roma RM, Italy', 'wp-google-maps');
6101
- __('Romana 2000 Srl', 'wp-google-maps');
6102
- __('Viale Regione Siciliana, 12, 98060 Piraino ME, Italy', 'wp-google-maps');
6103
- __('T.R.Edil', 'wp-google-maps');
6104
- __('Via Ponte Monsummano, 9, 51018 Pieve A Nievole PT, Italy', 'wp-google-maps');
6105
- __('Edival S.r.l.', 'wp-google-maps');
6106
- __('Via di Brana, 90, 51039 Barba PT, Italy', 'wp-google-maps');
6107
- __('Chiovoloni Fratelli Pavimenti Rivestimenti Arredo bagno', 'wp-google-maps');
6108
- __('SP87b, 74, 04011 Campoverde LT, Italy', 'wp-google-maps');
6109
- __('EDIL CAMPOVERDE', 'wp-google-maps');
6110
- __('Via Galileo Galilei, 60, 51039 Quarrata PT, Italy', 'wp-google-maps');
6111
- __('BigMat Niccolai Silvano E Figli S.r.l.', 'wp-google-maps');
6112
- __('102 v. Provinciale Pistoiese, Buggiano, PT 51011, 51011 Borgo A Buggiano PT, Italy', 'wp-google-maps');
6113
- __('Polpini Srl', 'wp-google-maps');
6114
- __('Via Nazionale, 364, 18100 Imperia IM, Italy', 'wp-google-maps');
6115
- __('Centro Edile Imperiese S.r.l.', 'wp-google-maps');
6116
- __('Viale dei Gracchi, 34, 13040 Borgo d\'Ale VC, Italy', 'wp-google-maps');
6117
- __('REGGE s.n.c. di Regge Franca & C', 'wp-google-maps');
6118
- __('Via dei Pini, 1, 05015 Fabro TR, Italy', 'wp-google-maps');
6119
- __('Co.Mi.S. Di Franco Ambrogi & C. Snc', 'wp-google-maps');
6120
- __('Via Colonnello Aprosio, 142, 18019 Vallecrosia IM, Italy', 'wp-google-maps');
6121
- __('Rossi S.r.l.', 'wp-google-maps');
6122
- __('Via Poirino, 59, 10022 Carmagnola TO, Italy', 'wp-google-maps');
6123
- __('Effelle Edile s.r.l', 'wp-google-maps');
6124
- __('Via Racconigi, 53e, 12048 Sommariva del Bosco CN, Italy', 'wp-google-maps');
6125
- __('Edil Bosco S.r.l.', 'wp-google-maps');
6126
- __('Str. dei Magliani, 46, 12051 Alba CN, Italy', 'wp-google-maps');
6127
- __('Edilemme', 'wp-google-maps');
6128
- __('Via Pietro Mascagni, 2, 17012 Albissola Marina SV, Italy', 'wp-google-maps');
6129
- __('Materiali Edili Briano Gino', 'wp-google-maps');
6130
- __('Via Cumiana, 1, 10095 Grugliasco TO, Italy', 'wp-google-maps');
6131
- __('Famig Srl', 'wp-google-maps');
6132
- __('Via Sarzanese, 937-945, 55100 Lucca LU, Italy', 'wp-google-maps');
6133
- __('Ferramenta P.M.P. service srl', 'wp-google-maps');
6134
- __('Via Bruno Buozzi, 70, 17100 Savona SV, Italy', 'wp-google-maps');
6135
- __('F.lli Grondona', 'wp-google-maps');
6136
- __('VERCELLI C.so Prestinari/Monte Santo, 13100 Vercelli VC, Italy', 'wp-google-maps');
6137
- __('Ferramenta La Brugola di Vinardi Ivana & C. s.a.s.', 'wp-google-maps');
6138
- __('Via Giuseppe Verdi, 6, 17047 Vado Ligure SV, Italy', 'wp-google-maps');
6139
- __('Fratelli Colombino Bigmat', 'wp-google-maps');
6140
- __('Berilli Group S.N.C. Di Fabio Berilli & C.', 'wp-google-maps');
6141
- __('Via Luigi Cadorna, 42, 28845 Domodossola VB, Italy', 'wp-google-maps');
6142
- __('Centro Chiavi Di Ferraris Roberto', 'wp-google-maps');
6143
- __('Via Giuseppe Garibaldi, 1, 28865 Crevoladossola VB, Italy', 'wp-google-maps');
6144
- __('Rovaletti Srl', 'wp-google-maps');
6145
- __('Via Rue Belle, 4, 18013 Diano San Pietro IM, Italy', 'wp-google-maps');
6146
- __('Il Giardino Dell\' Edilizia', 'wp-google-maps');
6147
- __('Via La Spezia, 100, 81030 San Marcellino CE, Italy', 'wp-google-maps');
6148
- __('Edil Ferramenta S.R.L.', 'wp-google-maps');
6149
- __('Via Elvidio Prisco, 11, 00174 Roma RM, Italy', 'wp-google-maps');
6150
- __('Nuova Ferramenta Srls', 'wp-google-maps');
6151
- __('Centro Commerciale Valfreddana', 'wp-google-maps');
6152
- __('Via Saluggia, 48, 13046 Livorno Ferraris VC, Italy', 'wp-google-maps');
6153
- __('Edilizia Livornese Di Tortolone Franco & C. S.A.S.', 'wp-google-maps');
6154
- __('Via Caduti Per la Libertà, 34, 10037 Torrazza Piemonte TO, Italy', 'wp-google-maps');
6155
- __('CAREGGIO GIUSEPPE SRL', 'wp-google-maps');
6156
- __('Via XX Settembre, 132, 15033 Casale Monferrato AL, Italy', 'wp-google-maps');
6157
- __('Kromia Kolors', 'wp-google-maps');
6158
- __('Via Figino, 3, 15060 Albera ligure AL, Italy', 'wp-google-maps');
6159
- __('Franzante Lorenzo', 'wp-google-maps');
6160
- __('Via Isolabuona, 76, 16019 Isolabuona GE, Italy', 'wp-google-maps');
6161
- __('Edil E. S. T. Snc', 'wp-google-maps');
6162
- __('Viale Milite Ignoto, 4A, 16012 Busalla GE, Italy', 'wp-google-maps');
6163
- __('S.m.e.c.', 'wp-google-maps');
6164
- __('Corso Canonico Giuseppe Allamano, 36, 10095 Grugliasco TO, Italy', 'wp-google-maps');
6165
- __('Fergross S.r.l.', 'wp-google-maps');
6166
- __('Via Madonna delle Grazie, 94, 28822 Cannobio VB, Italy', 'wp-google-maps');
6167
- __('BURROSE FABIO E SILVIA e C. S.a.s', 'wp-google-maps');
6168
- __('Corso Alcide de Gasperi, 18, 12100 Cuneo CN, Italy', 'wp-google-maps');
6169
- __('Ferramenta Utensileria Ferrero Ferrero Fratelli Snc', 'wp-google-maps');
6170
- __('Via S. Marziano, 28, 15057 Tortona AL, Italy', 'wp-google-maps');
6171
- __('MASSA Srl', 'wp-google-maps');
6172
- __('via Garessio, 15, 12073 San Bernardino CN, Italy', 'wp-google-maps');
6173
- __('Rudino G. & c. Snc', 'wp-google-maps');
6174
- __('Strada Serravalle, 72, 15067 Novi Ligure AL, Italy', 'wp-google-maps');
6175
- __('Edil 2000', 'wp-google-maps');
6176
- __('Via Crevacuore, 27, 13037 Serravalle Sesia VC, Italy', 'wp-google-maps');
6177
- __('Edil - Ser S.R.L.', 'wp-google-maps');
6178
- __('SP210, 123, 15010 Moretti AL, Italy', 'wp-google-maps');
6179
- __('Moretti Srl', 'wp-google-maps');
6180
- __('Viale Giovanni XXIII, 54, 15073 Castellazzo Bormida AL, Italy', 'wp-google-maps');
6181
- __('Centro Edile Gamondio di Zancanaro R. e C. snc', 'wp-google-maps');
6182
- __('Via Francesco Petrarca, 11, 10093 Collegno TO, Italy', 'wp-google-maps');
6183
- __('Guagnini Srl', 'wp-google-maps');
6184
- __('Str. della Bonifica, 18, 63085 Bonifica AP, Italy', 'wp-google-maps');
6185
- __('CECISIDERURGICA Srl', 'wp-google-maps');
6186
- __('Strada Statale 1, 331, 16031 Sori GE, Italy', 'wp-google-maps');
6187
- __('Edil Pieve', 'wp-google-maps');
6188
- __('Via del Commercio, 25, 16047 Gattorna GE, Italy', 'wp-google-maps');
6189
- __('Edilizia Giuffra Srl ( Showroom)', 'wp-google-maps');
6190
- __('Via Dogali, 22, 16038 Santa Margherita Ligure GE, Italy', 'wp-google-maps');
6191
- __('Tassara Edilizia (S.N.C.)', 'wp-google-maps');
6192
- __('Str. Cantone Gironetta, 1, 13900 Biella BI, Italy', 'wp-google-maps');
6193
- __('BigMat Mondin Imo & Figli S.n.c.', 'wp-google-maps');
6194
- __('Via Roma, 7, 15050 Garbagna AL, Italy', 'wp-google-maps');
6195
- __('Toncini Piera Angela', 'wp-google-maps');
6196
- __('Via Circonvallazione, 76A, 15040 Occimiano AL, Italy', 'wp-google-maps');
6197
- __('Unia Carlo Di Unia Mariantonietta Di Unia Mariantonietta', 'wp-google-maps');
6198
- __('Str. del Ritano, 43, 10023 Chieri TO, Italy', 'wp-google-maps');
6199
- __('BigMat De Tommasi', 'wp-google-maps');
6200
- __('Via Molini, 3, 60020 Sirolo AN, Italy', 'wp-google-maps');
6201
- __('Canori Francesco', 'wp-google-maps');
6202
- __('B & G materiali edili', 'wp-google-maps');
6203
- __('Via Vittorio Emanuele, 56, 12079 Saliceto CN, Italy', 'wp-google-maps');
6204
- __('Edilgarello Di Garello Giorgio & C. Snc', 'wp-google-maps');
6205
- __('Str. Asti, 2, 15033 Casale Monferrato AL, Italy', 'wp-google-maps');
6206
- __('Brico Self Center', 'wp-google-maps');
6207
- __('Via di Coreglia, 113, 55025 Coreglia Antelminelli LU, Italy', 'wp-google-maps');
6208
- __('Casarreda F.T. Srl', 'wp-google-maps');
6209
- __('Strada Statale per Voghera, 33, 15057 Tortona AL, Italy', 'wp-google-maps');
6210
- __('Romana Srl', 'wp-google-maps');
6211
- __('Via Molare, 31A, 15076 Ovada AL, Italy', 'wp-google-maps');
6212
- __('Nuove Fornaci Ovadesi', 'wp-google-maps');
6213
- __('Via Virginia Woolf, 15, 44124 Ferrara FE, Italy', 'wp-google-maps');
6214
- __('Idrocenter Srl', 'wp-google-maps');
6215
- __('Via Brione, 30, 10044 Pianezza TO, Italy', 'wp-google-maps');
6216
- __('Cosso Gian Eugenio & C. (S.N.C.)', 'wp-google-maps');
6217
- __('Via Nettunense, 35, 00042 Anzio RM, Italy', 'wp-google-maps');
6218
- __('Colantuono 1918 srl', 'wp-google-maps');
6219
- __('Strada Valenza, 4H, 15033 Casale Monferrato AL, Italy', 'wp-google-maps');
6220
- __('Riva Utensili Srl', 'wp-google-maps');
6221
- __('Via dei Laghi, 67, 00043 Ciampino RM, Italy', 'wp-google-maps');
6222
- __('Boni Giovanni', 'wp-google-maps');
6223
- __('Via Papa Giovanni XXIII, 15, 06038 Spello PG, Italy', 'wp-google-maps');
6224
- __('BigMat Edilizia Ruffinelli S.r.l.', 'wp-google-maps');
6225
- __('Via Forese, 22A, 03010 La Forma FR, Italy', 'wp-google-maps');
6226
- __('Magazzino edile Minori s.r.l', 'wp-google-maps');
6227
- __('Via 1. Agosto 3, 6830 Chiasso, Switzerland', 'wp-google-maps');
6228
- __('DFWORK SAGL', 'wp-google-maps');
6229
- __('Via Verona, 130, 15121 Alessandria AL, Italy', 'wp-google-maps');
6230
- __('Esseci Tecnica Snc', 'wp-google-maps');
6231
- __('Via Roma, 49, 27045 Casteggio PV, Italy', 'wp-google-maps');
6232
- __('Giorgi Guido', 'wp-google-maps');
6233
- __('Via Adige, 20, 63811 Sant\'Elpidio a Mare FM, Italy', 'wp-google-maps');
6234
- __('FERR. TORRETTI DI TORRETTI L.&C SAS', 'wp-google-maps');
6235
- __('Via Casilina, 1875F, 00132 Roma RM, Italy', 'wp-google-maps');
6236
- __('FERRAMENTA F.LLI CENCIONI S.A.S.', 'wp-google-maps');
6237
- __('Via Fornace, 26, 04010 Roccasecca dei Volsci LT, Italy', 'wp-google-maps');
6238
- __('Marteddu Nicola Magazzino Edile', 'wp-google-maps');
6239
- __('Via Pace, 12, 67058 San Benedetto dei Marsi AQ, Italy', 'wp-google-maps');
6240
- __('Idea Colore Di Buccilli Germana C. S.N.C.', 'wp-google-maps');
6241
- __('Via degli Artigiani, 1, 22016 Lenno CO, Italy', 'wp-google-maps');
6242
- __('Valde\' S.r.l.', 'wp-google-maps');
6243
- __('Via Piana, 21a, 06061 Castiglione del lago PG, Italy', 'wp-google-maps');
6244
- __('Ferramenta Pierini Giampiero & Figli', 'wp-google-maps');
6245
- __('Via di Rocca Cencia, 273, 00132 Roma RM, Italy', 'wp-google-maps');
6246
- __('Bricofer Roma Rocca Cencia', 'wp-google-maps');
6247
- __('Via Trento, 184, 53048 Sinalunga SI, Italy', 'wp-google-maps');
6248
- __('Ferramenta Rinaldi Giovina', 'wp-google-maps');
6249
- __('Str. Battifoglia, 14m, 06132 Perugia PG, Italy', 'wp-google-maps');
6250
- __('Biondi Edilizia e Ferramenta', 'wp-google-maps');
6251
- __('Via G. B, Via Giovan Battista Venturelli, 06012 Città di Castello PG, Italy', 'wp-google-maps');
6252
- __('Ferramenta Galileo Srl', 'wp-google-maps');
6253
- __('Via Romagnoli, 40, 43056 Torrile PR, Italy', 'wp-google-maps');
6254
- __('Edil Group San Polo', 'wp-google-maps');
6255
- __('14 9 Calle, San Pedro Sula 21102, Honduras', 'wp-google-maps');
6256
- __('Official Distributor of RESOLV products in Honduras ', 'wp-google-maps');
6257
- __('Duko Laser', 'wp-google-maps');
6258
- __('Via Guglielmo Marconi, 17, 24027 Nembro BG, Italy', 'wp-google-maps');
6259
- __('Ce.I.Sa. Snc Ceramiche Sanitari Arredo Bagno Deposito', 'wp-google-maps');
6260
- __('No. 362, Zhongshan Road, Taoyuan District, Taoyuan City, Taiwan 330', 'wp-google-maps');
6261
- __('中華郵政 桃園南門郵局', 'wp-google-maps');
6262
- __('2372 Morse Ave, Irvine, CA 92614, USA', 'wp-google-maps');
6263
- __('Resolv America Corp.', 'wp-google-maps');
6264
- __('Biscayne Bd & # 14100, North Miami Beach, FL 33181, USA', 'wp-google-maps');
6265
- __('Av Balboa Esq, Calle 33 Este, Panamá, Panama', 'wp-google-maps');
6266
- __('Resolv Latam', 'wp-google-maps');
6267
- __('Calle C, Panamá, Panama', 'wp-google-maps');
6268
- __('Tecbite, Inc', 'wp-google-maps');
6269
- __('Via Ovidio, 135, 00040 Pomezia RM, Italy', 'wp-google-maps');
6270
- __('ICOS - S.r.l.', 'wp-google-maps');
6271
- __('ASL 8 BERICA OSPEDALE DI ARZIGNANO', 'wp-google-maps');
6272
- __('OSPEDALE CIVILE S. LORENZO - Aulss 8 BERICA', 'wp-google-maps');
6273
- __('1716 S Minnesota Ave, Sioux Falls, SD, USA', 'wp-google-maps');
6274
- __('<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">FOOD SPECIAL (<em>3pm-5pm</em>)</span><br /></strong>Select Appetizers <strong>1/2 Off</strong></p><br /><p style=\"text-align: center;\"><span style=\"color: #ff0000;\"><strong>FOOD SPECIAL (<em>5pm-8pm</em>)</strong></span><br />Appetizers <strong>1/2 Price</strong> <br />w/ purchase of any entr&eacute;e</p>', 'wp-google-maps');
6275
- __('https://dakotadiningdeals.com/wp-content/uploads/2019/05/Kaladis-50.png', 'wp-google-maps');
6276
- __('https://www.kaladisbistro.com/', 'wp-google-maps');
6277
- __('Kaladi\'s', 'wp-google-maps');
6278
- __('4305 W 61st St, Sioux Falls, South Dakota, USA', 'wp-google-maps');
6279
- __('<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">LUNCH SPECIAL (</span><em><span style=\"color: #ff0000;\">10:30am-2pm)</span><br /></em></strong>Shrimp Wrap &amp; Chips <strong>$7.50</strong><br />Chicken Bacon Ranch Wrap &amp; Chips&nbsp; <strong>$7.50</strong><br />Grilled Cheese &amp; Cup of Soup <strong>$7.50</strong><br />Chili Dog <em>&amp;</em> Chips <strong>$7.50</strong><br />Indian Taco <strong>$7.50<br /></strong>BBQ Pulled Pork &amp; Potato Salad <strong>$7.50</strong><br />1/3 pound Hamburger <em>&amp; </em>Flat Fries <strong>$7.50</strong><br />Spicy Pollock Sandwich &amp; Flat Fries <strong>$7.50</strong></p><br /><p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">DINNER SPECIAL (<em>5pm-10pm</em>)</span><br /></strong>12oz Hand-cut Aged Ribeye<br />Grilled to Your Preference <strong>$17.50</strong><br />w/ mashed potatoes &amp; side salad</p><br />&nbsp;<br /><p style=\"text-align: center;\"></p>', 'wp-google-maps');
6280
- __('https://dakotadiningdeals.com/wp-content/uploads/2019/05/northstar-50.png', 'wp-google-maps');
6281
- __('https://www.northstargrillandpub.com/', 'wp-google-maps');
6282
- __('Northstar Grill & Pub', 'wp-google-maps');
6283
- __('5024 South Cliff Avenue, Sioux Falls, SD', 'wp-google-maps');
6284
- __('<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">LUNCH SPECIAL (<em>11am-2pm</em>)</span><br /></strong>Any Burger on the menu&nbsp; <strong>$8<br /></strong>w/ french fries or tator tots<strong><br /></strong></p><br /><p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">FOOD SPECIAL (<em>3pm-close</em>)</span><br /></strong>Hardshell Tacos<strong> $1</strong></p>', 'wp-google-maps');
6285
- __('https://dakotadiningdeals.com/wp-content/uploads/2019/05/Stubbies-50.png', 'wp-google-maps');
6286
- __('https://www.stubbiesbar.com', 'wp-google-maps');
6287
- __('Stubbie\'s Bar & Grill', 'wp-google-maps');
6288
- __('1914 S Sycamore Ave # 104, Sioux Falls, SD', 'wp-google-maps');
6289
- __('<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">FOOD SPECIAL (<em>4pm-10pm</em>)</span><br /></strong>Chicken Strips w/ fries or tots<strong> $6.95</strong></p>', 'wp-google-maps');
6290
- __('https://dakotadiningdeals.com/wp-content/uploads/2019/05/Botskis-50.png', 'wp-google-maps');
6291
- __('Botski\'s', 'wp-google-maps');
6292
- __('308 E Willow St, Harrisburg, SD', 'wp-google-maps');
6293
- __('<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">FOOD SPECIAL (<em>5pm-9pm</em>)</span><br /></strong>Any Burger and Fries 2 for 1&nbsp;</p>', 'wp-google-maps');
6294
- __('https://dakotadiningdeals.com/wp-content/uploads/2019/08/fresh-horses-50.jpg', 'wp-google-maps');
6295
- __('Fresh Horses', 'wp-google-maps');
6296
- __('Paramount Close, Belrose NSW, Australia', 'wp-google-maps');
6297
- __('5 participants
6298
-
6299
- ', 'wp-google-maps');
6300
- __('https://www.openbasket.com.au/wp-content/uploads/2019/09/Unique-Health-Products-logo_PINK.png', 'wp-google-maps');
6301
- __('Pantry Basket', 'wp-google-maps');
6302
- __('fielding st, Collaroy NSW 2097', 'wp-google-maps');
6303
- __('just description,
6304
-
6305
- 7 participants!
6306
-
6307
- Join now! <a href=\"http://market.openbasket.com.au\">Click here</a>', 'wp-google-maps');
6308
- __('https://www.openbasket.com.au/wp-content/uploads/2019/08/Webp.net-resizeimage-1-1.png', 'wp-google-maps');
6309
- __('https://market.openbasket.com.au', 'wp-google-maps');
6310
- __('29620 Olinda Trail, Lindstrom, MN 55045', 'wp-google-maps');
6311
- __('<div class=\"googft-info-window\">
6312
- <b>Client:</b> Lakes Free Church<br>
6313
- <b>Year:</b> 2017<br>
6314
- <b>Category:</b> Church<br>
6315
- <b>Subcategory:</b> Free<br>
6316
- <b>EMC:</b> Y<br>
6317
- <b>Gas Pricer:</b> <br>
6318
- <b>EMC: Size:</b> 4x7<br>
6319
- <b>EMC: Res:</b> 16mm<br>
6320
- <b>Address:</b> 29620 Olinda Trail, Lindstrom, MN 55045<br>
6321
- <b>Icon:</b> large_green
6322
- </div>', 'wp-google-maps');
6323
- __('7611 147th Street W, Apple Valley, MN 55124', 'wp-google-maps');
6324
- __('<div class=\"googft-info-window\">
6325
- <b>Client:</b> Cabinet Store<br>
6326
- <b>Year:</b> 2019<br>
6327
- <b>Category:</b> Retail<br>
6328
- <b>Subcategory:</b> <br>
6329
- <b>EMC:</b> Y<br>
6330
- <b>Gas Pricer:</b> <br>
6331
- <b>EMC: Size:</b> 4x8<br>
6332
- <b>EMC: Res:</b> 10mm<br>
6333
- <b>Address:</b> 7611 147th Street W, Apple Valley, MN 55124<br>
6334
- <b>Icon:</b> large_green
6335
- </div>', 'wp-google-maps');
6336
- __('620 Dutch Lake Rd, Howard Lake, MN 55349', 'wp-google-maps');
6337
- __('<div class=\"googft-info-window\">
6338
- <b>Client:</b> Minnoco - Howard Lake<br>
6339
- <b>Year:</b> 2017<br>
6340
- <b>Category:</b> Gas Station<br>
6341
- <b>Subcategory:</b> Minnoco<br>
6342
- <b>EMC:</b> Y<br>
6343
- <b>Gas Pricer:</b> Y<br>
6344
- <b>EMC: Size:</b> 3x6<br>
6345
- <b>EMC: Res:</b> 16mm<br>
6346
- <b>Address:</b> 620 Dutch Lake Rd, Howard Lake, MN 55349<br>
6347
- <b>Icon:</b> large_green
6348
- </div>', 'wp-google-maps');
6349
- __('1040 Osborne Road NE, Fridley, MN 55432', 'wp-google-maps');
6350
- __('<div class=\"googft-info-window\">
6351
- <b>Client:</b> VFW - Fridley<br>
6352
- <b>Year:</b> 2019<br>
6353
- <b>Category:</b> VFW-Amer Legion<br>
6354
- <b>Subcategory:</b> VFW<br>
6355
- <b>EMC:</b> Y<br>
6356
- <b>Gas Pricer:</b> <br>
6357
- <b>EMC: Size:</b> 4x8<br>
6358
- <b>EMC: Res:</b> 16mm<br>
6359
- <b>Address:</b> 1040 Osborne Road NE, Fridley, MN 55432<br>
6360
- <b>Icon:</b> large_green
6361
- </div>', 'wp-google-maps');
6362
- __('7900 Maple Hill, Corcoran, MN 55340', 'wp-google-maps');
6363
- __('<div class=\"googft-info-window\">
6364
- <b>Client:</b> Mobile Hope<br>
6365
- <b>Year:</b> 2017<br>
6366
- <b>Category:</b> Residential<br>
6367
- <b>Subcategory:</b> Mobile Home<br>
6368
- <b>EMC:</b> Y<br>
6369
- <b>Gas Pricer:</b> <br>
6370
- <b>EMC: Size:</b> 3x5<br>
6371
- <b>EMC: Res:</b> Amber<br>
6372
- <b>Address:</b> 7900 Maple Hill, Corcoran, MN 55340<br>
6373
- <b>Icon:</b> large_red
6374
- </div>', 'wp-google-maps');
6375
- __('2911 11th St South, Moorhead, MN 56560', 'wp-google-maps');
6376
- __('<div class=\"googft-info-window\">
6377
- <b>Client:</b> Muscatell Subaru<br>
6378
- <b>Year:</b> 2017<br>
6379
- <b>Category:</b> Automotive<br>
6380
- <b>Subcategory:</b> Auto Sales<br>
6381
- <b>EMC:</b> Y<br>
6382
- <b>Gas Pricer:</b> <br>
6383
- <b>EMC: Size:</b> 10x20<br>
6384
- <b>EMC: Res:</b> 16mm<br>
6385
- <b>Address:</b> 2911 11th St South, Moorhead, MN 56560<br>
6386
- <b>Icon:</b> large_green
6387
- </div>', 'wp-google-maps');
6388
- __('1301 Riverwood Drive, Burnsville, MN 55337', 'wp-google-maps');
6389
- __('<div class=\"googft-info-window\">
6390
- <b>Client:</b> PawnWorks<br>
6391
- <b>Year:</b> 2017<br>
6392
- <b>Category:</b> Retail<br>
6393
- <b>Subcategory:</b> Pawn Shop<br>
6394
- <b>EMC:</b> Y<br>
6395
- <b>Gas Pricer:</b> <br>
6396
- <b>EMC: Size:</b> 6x12<br>
6397
- <b>EMC: Res:</b> 16mm<br>
6398
- <b>Address:</b> 1301 Riverwood Drive, Burnsville, MN 55337<br>
6399
- <b>Icon:</b> large_green
6400
- </div>', 'wp-google-maps');
6401
- __('15600 Old Rockford Rd, Plymouth, MN 55446', 'wp-google-maps');
6402
- __('<div class=\"googft-info-window\">
6403
- <b>Client:</b> St Barnabas<br>
6404
- <b>Year:</b> 2017<br>
6405
- <b>Category:</b> Church<br>
6406
- <b>Subcategory:</b> Lutheran<br>
6407
- <b>EMC:</b> Y<br>
6408
- <b>Gas Pricer:</b> <br>
6409
- <b>EMC: Size:</b> 2x7<br>
6410
- <b>EMC: Res:</b> 16mm<br>
6411
- <b>Address:</b> 15600 Old Rockford Rd, Plymouth, MN 55446<br>
6412
- <b>Icon:</b> large_green
6413
- </div>', 'wp-google-maps');
6414
- __('801 E Prairie St, Belle Plaine, MN 56011', 'wp-google-maps');
6415
- __('<div class=\"googft-info-window\">
6416
- <b>Client:</b> City of Belle Plaine<br>
6417
- <b>Year:</b> 2019<br>
6418
- <b>Category:</b> Municipal<br>
6419
- <b>Subcategory:</b> <br>
6420
- <b>EMC:</b> Y<br>
6421
- <b>Gas Pricer:</b> <br>
6422
- <b>EMC: Size:</b> 7x10<br>
6423
- <b>EMC: Res:</b> 16mm<br>
6424
- <b>Address:</b> 801 E Prairie St, Belle Plaine, MN 56011<br>
6425
- <b>Icon:</b> large_green
6426
- </div>', 'wp-google-maps');
6427
- __('511 Groveland Avenue, Minneapolis, MN 55403', 'wp-google-maps');
6428
- __('<div class=\"googft-info-window\">
6429
- <b>Client:</b> Henn Ave United Methodist Church<br>
6430
- <b>Year:</b> 2019<br>
6431
- <b>Category:</b> Church<br>
6432
- <b>Subcategory:</b> UMC<br>
6433
- <b>EMC:</b> Y<br>
6434
- <b>Gas Pricer:</b> <br>
6435
- <b>EMC: Size:</b> 4x8<br>
6436
- <b>EMC: Res:</b> 10mm<br>
6437
- <b>Address:</b> 511 Groveland Avenue, Minneapolis, MN 55403<br>
6438
- <b>Icon:</b> large_green
6439
- </div>', 'wp-google-maps');
6440
- __('2155 Old Hwy 8 NW, New Brighton, MN 55112', 'wp-google-maps');
6441
- __('<div class=\"googft-info-window\">
6442
- <b>Client:</b> Hoffman Construction<br>
6443
- <b>Year:</b> 2019<br>
6444
- <b>Category:</b> Construction<br>
6445
- <b>Subcategory:</b> <br>
6446
- <b>EMC:</b> Y<br>
6447
- <b>Gas Pricer:</b> <br>
6448
- <b>EMC: Size:</b> 9x19<br>
6449
- <b>EMC: Res:</b> 16mm<br>
6450
- <b>Address:</b> 2155 Old Hwy 8 NW, New Brighton, MN 55112<br>
6451
- <b>Icon:</b> large_green
6452
- </div>', 'wp-google-maps');
6453
- __('601 East Second Street, Waconia, MN 55387', 'wp-google-maps');
6454
- __('<div class=\"googft-info-window\">
6455
- <b>Client:</b> Trinity Lutheran<br>
6456
- <b>Year:</b> 2017<br>
6457
- <b>Category:</b> Church<br>
6458
- <b>Subcategory:</b> Lutheran<br>
6459
- <b>EMC:</b> Y<br>
6460
- <b>Gas Pricer:</b> <br>
6461
- <b>EMC: Size:</b> 4x9<br>
6462
- <b>EMC: Res:</b> 16mm<br>
6463
- <b>Address:</b> 601 East Second Street, Waconia, MN 55387<br>
6464
- <b>Icon:</b> large_green
6465
- </div>', 'wp-google-maps');
6466
- __('6400 85th Ave N, Brooklyn Park, MN 55445', 'wp-google-maps');
6467
- __('<div class=\"googft-info-window\">
6468
- <b>Client:</b> Winners Chapel<br>
6469
- <b>Year:</b> 2017<br>
6470
- <b>Category:</b> Church<br>
6471
- <b>Subcategory:</b> Winners Chapel<br>
6472
- <b>EMC:</b> Y<br>
6473
- <b>Gas Pricer:</b> <br>
6474
- <b>EMC: Size:</b> 2x7<br>
6475
- <b>EMC: Res:</b> Amber<br>
6476
- <b>Address:</b> 6400 85th Ave N, Brooklyn Park, MN 55445<br>
6477
- <b>Icon:</b> large_red
6478
- </div>', 'wp-google-maps');
6479
- __('4900 Nathan Lane, Plymouth, MN 55442', 'wp-google-maps');
6480
- __('<div class=\"googft-info-window\">
6481
- <b>Client:</b> Church of the Epiphany<br>
6482
- <b>Year:</b> 2018<br>
6483
- <b>Category:</b> Church<br>
6484
- <b>Subcategory:</b> Episcopal<br>
6485
- <b>EMC:</b> Y<br>
6486
- <b>Gas Pricer:</b> <br>
6487
- <b>EMC: Size:</b> 2x8<br>
6488
- <b>EMC: Res:</b> 12mm<br>
6489
- <b>Address:</b> 4900 Nathan Lane, Plymouth, MN 55442<`r>
6490
- <b>Icon:</b> large_green
6491
- </div>', 'wp-google-maps');
6492
- __('400 Mill Street, Clermont, IA 52135', 'wp-google-maps');
6493
- __('<div class=\"googft-info-window\">
6494
- <b>Client:</b> City of Clermont<br>
6495
- <b>Year:</b> 2018<br>
6496
- <b>Category:</b> Municipal<br>
6497
- <b>Subcategory:</b> City<br>
6498
- <b>EMC:</b> Y<br>
6499
- <b>Gas Pricer:</b> <br>
6500
- <b>EMC: Size:</b> 3x6<br>
6501
- <b>EMC: Res:</b> 12mm<br>
6502
- <b>Address:</b> 400 Mill Street, Clermont, IA 52135<br>
6503
- <b>Icon:</b> large_green
6504
- </div>', 'wp-google-maps');
6505
- __('5972 Cahill Ave., Inver Grove Heights, MN 55076', 'wp-google-maps');
6506
- __('<div class=\"googft-info-window\">
6507
- <b>Client:</b> Benke Dental Care<br>
6508
- <b>Year:</b> 2015<br>
6509
- <b>Category:</b> Medical<br>
6510
- <b>Subcategory:</b> Dental<br>
6511
- <b>EMC:</b> Y<br>
6512
- <b>Gas Pricer:</b> <br>
6513
- <b>EMC: Size:</b> 3x8<br>
6514
- <b>EMC: Res:</b> 16mm<br>
6515
- <b>Address:</b> 5972 Cahill Ave., Inver Grove Heights, MN 55076<br>
6516
- <b>Icon:</b> large_green
6517
- </div>', 'wp-google-maps');
6518
- __('8200 County Road 116, Corcoran, MN 55340', 'wp-google-maps');
6519
- __('<div class=\"googft-info-window\">
6520
- <b>Client:</b> City of Corcoran<br>
6521
- <b>Year:</b> 2018<br>
6522
- <b>Category:</b> Municipal<br>
6523
- <b>Subcategory:</b> City<br>
6524
- <b>EMC:</b> Y<br>
6525
- <b>Gas Pricer:</b> <br>
6526
- <b>EMC: Size:</b> 3x8<br>
6527
- <b>EMC: Res:</b> 16mm<br>
6528
- <b>Address:</b> 8200 County Road 116, Corcoran, MN 55340<br>
6529
- <b>Icon:</b> large_green
6530
- </div>', 'wp-google-maps');
6531
- __('14375 S Robert Trail, Rosemount, MN 55068', 'wp-google-maps');
6532
- __('<div class=\"googft-info-window\">
6533
- <b>Client:</b> City of Rosemount: Steeple Center<br>
6534
- <b>Year:</b> 2015<br>
6535
- <b>Category:</b> Municipal<br>
6536
- <b>Subcategory:</b> City<br>
6537
- <b>EMC:</b> Y<br>
6538
- <b>Gas Pricer:</b> <br>
6539
- <b>EMC: Size:</b> 3x6<br>
6540
- <b>EMC: Res:</b> 16mm<br>
6541
- <b>Address:</b> 14375 S Robert Trail, Rosemount, MN 55068<br>
6542
- <b>Icon:</b> large_green
6543
- </div>', 'wp-google-maps');
6544
- __('4800 Douglas Drive North, Crystal, MN 55429', 'wp-google-maps');
6545
- __('<div class=\"googft-info-window\">
6546
- <b>Client:</b> City of Crystal<br>
6547
- <b>Year:</b> 2018<br>
6548
- <b>Category:</b> Municipal<br>
6549
- <b>Subcategory:</b> City<br>
6550
- <b>EMC:</b> Y<br>
6551
- <b>Gas Pricer:</b> <br>
6552
- <b>EMC: Size:</b> 3x8<br>
6553
- <b>EMC: Res:</b> 16mm<br>
6554
- <b>Address:</b> 4800 Douglas Drive North, Crystal, MN 55429<br>
6555
- <b>Icon:</b> large_green
6556
- </div>', 'wp-google-maps');
6557
- __('1206 East College Drive, Marshall, MN 56258', 'wp-google-maps');
6558
- __('<div class=\"googft-info-window\">
6559
- <b>Client:</b> Dairy Queen - Marshall MN<br>
6560
- <b>Year:</b> 2015<br>
6561
- <b>Category:</b> Restaurant<br>
6562
- <b>Subcategory:</b> Quick Serve<br>
6563
- <b>EMC:</b> Y<br>
6564
- <b>Gas Pricer:</b> <br>
6565
- <b>EMC: Size:</b> 3x7<br>
6566
- <b>EMC: Res:</b> 19mm<br>
6567
- <b>Address:</b> 1206 East College Drive, Marshall, MN 56258<br>
6568
- <b>Icon:</b> large_green
6569
- </div>', 'wp-google-maps');
6570
- __('15051 Weaver Lake Road, Maple Grove, MN, 55311', 'wp-google-maps');
6571
- __('<div class=\"googft-info-window\">
6572
- <b>Client:</b> Cross Winds UMC<br>
6573
- <b>Year:</b> 2018<br>
6574
- <b>Category:</b> Church<br>
6575
- <b>Subcategory:</b> UMC<br>
6576
- <b>EMC:</b> Y<br>
6577
- <b>Gas Pricer:</b> <br>
6578
- <b>EMC: Size:</b> 2x9<br>
6579
- <b>EMC: Res:</b> 12mm<br>
6580
- <b>Address:</b> 15051 Weaver Lake Road, Maple Grove, MN, 55311<br>
6581
- <b>Icon:</b> large_green
6582
- </div>', 'wp-google-maps');
6583
- __('3978 West Broadway, Robbinsdale, MN 55422', 'wp-google-maps');
6584
- __('<div class=\"googft-info-window\">
6585
- <b>Client:</b> Elim Lutheran Church<br>
6586
- <b>Year:</b> 2015<br>
6587
- <b>Category:</b> Church<br>
6588
- <b>Subcategory:</b> Lutheran<br>
6589
- <b>EMC:</b> Y<br>
6590
- <b>Gas Pricer:</b> <br>
6591
- <b>EMC: Size:</b> 3x8<br>
6592
- <b>EMC: Res:</b> 16mm<br>
6593
- <b>Address:</b> 3978 West Broadway, Robbinsdale, MN 55422<br>
6594
- <b>Icon:</b> large_green
6595
- </div>', 'wp-google-maps');
6596
- __('6401 Wayzata Blvd, St Louis Park, MN 55426', 'wp-google-maps');
6597
- __('<div class=\"googft-info-window\">
6598
- <b>Client:</b> EdinAlarm<br>
6599
- <b>Year:</b> 2018<br>
6600
- <b>Category:</b> Retail<br>
6601
- <b>Subcategory:</b> Home Security<br>
6602
- <b>EMC:</b> Y<br>
6603
- <b>Gas Pricer:</b> <br>
6604
- <b>EMC: Size:</b> 5x8<br>
6605
- <b>EMC: Res:</b> 10mm<br>
6606
- <b>Address:</b> 6401 Wayzata Blvd, St Louis Park, MN 55426<br>
6607
- <b>Icon:</b> large_green
6608
- </div>', 'wp-google-maps');
6609
- __('14520 60th St. North, Oak Park Heights, MN 55082', 'wp-google-maps');
6610
- __('<div class=\"googft-info-window\">
6611
- <b>Client:</b> Fred&#39;s Tire &amp; Auto<br>
6612
- <b>Year:</b> 2015<br>
6613
- <b>Category:</b> Automotive<br>
6614
- <b>Subcategory:</b> Tire &amp; Auto<br>
6615
- <b>EMC:</b> Y<br>
6616
- <b>Gas Pricer:</b> <br>
6617
- <b>EMC: Size:</b> 3x10<br>
6618
- <b>EMC: Res:</b> 19mm<br>
6619
- <b>Address:</b> 14520 60th St. North, Oak Park Heights, MN 55082<br>
6620
- <b>Icon:</b> large_green
6621
- </div>', 'wp-google-maps');
6622
- __('700 Snelling Ave S, St. Paul, MN 55116', 'wp-google-maps');
6623
- __('<div class=\"googft-info-window\">
6624
- <b>Client:</b> Gloria Dei Lutheran Church<br>
6625
- <b>Year:</b> 2018<br>
6626
- <b>Category:</b> Church<br>
6627
- <b>Subcategory:</b> Lutheran<br>
6628
- <b>EMC:</b> Y<br>
6629
- <b>Gas Pricer:</b> <br>
6630
- <b>EMC: Size:</b> 3x8<br>
6631
- <b>EMC: Res:</b> 10mm<br>
6632
- <b>Address:</b> 700 Snelling Ave S, St. Paul, MN 55116<br>
6633
- <b>Icon:</b> large_green
6634
- </div>', 'wp-google-maps');
6635
- __('12908 Minnetonka Blvd, Minnetonka, MN 55305', 'wp-google-maps');
6636
- __('<div class=\"googft-info-window\">
6637
- <b>Client:</b> Minnoco - Glenn\'s 1-Stop<br>
6638
- <b>Year:</b> 2015<br>
6639
- <b>Category:</b> Gas Station<br>
6640
- <b>Subcategory:</b> Minnoco<br>
6641
- <b>EMC:</b> Y<br>
6642
- <b>Gas Pricer:</b> Y<br>
6643
- <b>EMC: Size:</b> 2x5<br>
6644
- <b>EMC: Res:</b> 16mm<br>
6645
- <b>Address:</b> 12908 Minnetonka Blvd, Minnetonka, MN 55305<br>
6646
- <b>Icon:</b> large_green
6647
- </div>', 'wp-google-maps');
6648
- __('1633 County Highway 10, Spring Lake Park, MN 55432', 'wp-google-maps');
6649
- __('<div class=\"googft-info-window\">
6650
- <b>Client:</b> Gopher State Agency<br>
6651
- <b>Year:</b> 2018<br>
6652
- <b>Category:</b> Retail<br>
6653
- <b>Subcategory:</b> Insurance<br>
6654
- <b>EMC:</b> Y<br>
6655
- <b>Gas Pricer:</b> <br>
6656
- <b>EMC: Size:</b> 5x10<br>
6657
- <b>EMC: Res:</b> 16mm<br>
6658
- <b>Address:</b> 1633 County Highway 10, Spring Lake Park, MN 55432<br>
6659
- <b>Icon:</b> large_green
6660
- </div>', 'wp-google-maps');
6661
- __('6744 Penn Avenue S., Richfield, MN 55423', 'wp-google-maps');
6662
- __('<div class=\"googft-info-window\">
6663
- <b>Client:</b> Minnoco - Richfield<br>
6664
- <b>Year:</b> 2015<br>
6665
- <b>Category:</b> Gas Station<br>
6666
- <b>Subcategory:</b> Minnoco<br>
6667
- <b>EMC:</b> N<br>
6668
- <b>Gas Pricer:</b> Y<br>
6669
- <b>EMC: Size:</b> <br>
6670
- <b>EMC: Res:</b> <br>
6671
- <b>Address:</b> 6744 Penn Avenue S., Richfield, MN 55423<br>
6672
- <b>Icon:</b> large_yellow
6673
- </div>', 'wp-google-maps');
6674
- __('809 Selby Avenue, St Paul, MN 55104', 'wp-google-maps');
6675
- __('<div class=\"googft-info-window\">
6676
- <b>Client:</b> Minnoco - Tobasi (Selby)<br>
6677
- <b>Year:</b> 2015<br>
6678
- <b>Category:</b> Gas Station<br>
6679
- <b>Subcategory:</b> Minnoco<br>
6680
- <b>EMC:</b> N<br>
6681
- <b>Gas Pricer:</b> Y<br>
6682
- <b>EMC: Size:</b> <br>
6683
- <b>EMC: Res:</b> <br>
6684
- <b>Address:</b> 809 Selby Avenue, St Paul, MN 55104<br>
6685
- <b>Icon:</b> large_yellow
6686
- </div>', 'wp-google-maps');
6687
- __('1550 3rd Ave SE, Rochester, MN 55904', 'wp-google-maps');
6688
- __('<div class=\"googft-info-window\">
6689
- <b>Client:</b> Rochester Feed<br>
6690
- <b>Year:</b> 2015<br>
6691
- <b>Category:</b> Retail<br>
6692
- <b>Subcategory:</b> Pet Food<br>
6693
- <b>EMC:</b> Y<br>
6694
- <b>Gas Pricer:</b> <br>
6695
- <b>EMC: Size:</b> 5x10<br>
6696
- <b>EMC: Res:</b> 16mm<br>
6697
- <b>Address:</b> 1550 3rd Ave SE, Rochester, MN 55904<br>
6698
- <b>Icon:</b> large_green
6699
- </div>', 'wp-google-maps');
6700
- __('7900 97th Street South, Cottage Grove, MN 55016', 'wp-google-maps');
6701
- __('<div class=\"googft-info-window\">
6702
- <b>Client:</b> South St. Paul Agri Properties<br>
6703
- <b>Year:</b> 2015<br>
6704
- <b>Category:</b> Gas Station<br>
6705
- <b>Subcategory:</b> Independent<br>
6706
- <b>EMC:</b> N<br>
6707
- <b>Gas Pricer:</b> Y<br>
6708
- <b>EMC: Size:</b> <br>
6709
- <b>EMC: Res:</b> <br>
6710
- <b>Address:</b> 7900 97th Street South, Cottage Grove, MN 55016<br>
6711
- <b>Icon:</b> large_yellow
6712
- </div>', 'wp-google-maps');
6713
- __('7700 Nicollet Ave S, Richfield, MN 55423', 'wp-google-maps');
6714
- __('<div class=\"googft-info-window\">
6715
- <b>Client:</b> Cinco de Mayo Mercado (Daktronics)<br>
6716
- <b>Year:</b> 2013<br>
6717
- <b>Category:</b> Retail<br>
6718
- <b>Subcategory:</b> Restaurant<br>
6719
- <b>EMC:</b> Y<br>
6720
- <b>Gas Pricer:</b> <br>
6721
- <b>EMC: Size:</b> 4x6<br>
6722
- <b>EMC: Res:</b> 20mm<br>
6723
- <b>Address:</b> 7700 Nicollet Ave S, Richfield, MN 55423<br>
6724
- <b>Icon:</b> large_green
6725
- </div>', 'wp-google-maps');
6726
- __('3355 Columbia Dr, Eagan, MN 55121', 'wp-google-maps');
6727
- __('<div class=\"googft-info-window\">
6728
- <b>Client:</b> Faithful Shepherd Catholic School<br>
6729
- <b>Year:</b> 2014<br>
6730
- <b>Category:</b> School<br>
6731
- <b>Subcategory:</b> Catholic<br>
6732
- <b>EMC:</b> Y<br>
6733
- <b>Gas Pricer:</b> <br>
6734
- <b>EMC: Size:</b> 2x7<br>
6735
- <b>EMC: Res:</b> Red<br>
6736
- <b>Address:</b> 3355 Columbia Dr, Eagan, MN 55121<br>
6737
- <b>Icon:</b> large_red
6738
- </div>', 'wp-google-maps');
6739
- __('5835 Lyndale Ave S, Minneapolis, MN 55419', 'wp-google-maps');
6740
- __('<div class=\"googft-info-window\">
6741
- <b>Client:</b> Richfield United Methodist Church<br>
6742
- <b>Year:</b> 2014<br>
6743
- <b>Category:</b> Church<br>
6744
- <b>Subcategory:</b> Methodist<br>
6745
- <b>EMC:</b> Y<br>
6746
- <b>Gas Pricer:</b> <br>
6747
- <b>EMC: Size:</b> 2x7<br>
6748
- <b>EMC: Res:</b> 19mm<br>
6749
- <b>Address:</b> 5835 Lyndale Ave S, Minneapolis, MN 55419<br>
6750
- <b>Icon:</b> large_green
6751
- </div>', 'wp-google-maps');
6752
- __('5421 France Ave S, Edina, MN 55410', 'wp-google-maps');
6753
- __('<div class=\"googft-info-window\">
6754
- <b>Client:</b> St Peter\'s Lutheran Church<br>
6755
- <b>Year:</b> 2014<br>
6756
- <b>Category:</b> Church<br>
6757
- <b>Subcategory:</b> Lutheran<br>
6758
- <b>EMC:</b> Y<br>
6759
- <b>Gas Pricer:</b> <br>
6760
- <b>EMC: Size:</b> 3x6<br>
6761
- <b>EMC: Res:</b> 16mm<br>
6762
- <b>Address:</b> 5421 France Ave S, Edina, MN 55410<br>
6763
- <b>Icon:</b> large_green
6764
- </div>', 'wp-google-maps');
6765
- __('7301 Bass Lake Road, Crystal, MN 55428', 'wp-google-maps');
6766
- __('<div class=\"googft-info-window\">
6767
- <b>Client:</b> St Raphael Catholic Church and School<br>
6768
- <b>Year:</b> 2014<br>
6769
- <b>Category:</b> Church<br>
6770
- <b>Subcategory:</b> Catholic<br>
6771
- <b>EMC:</b> Y<br>
6772
- <b>Gas Pricer:</b> <br>
6773
- <b>EMC: Size:</b> 3x8<br>
6774
- <b>EMC: Res:</b> 19mm<br>
6775
- <b>Address:</b> 7301 Bass Lake Road, Crystal, MN 55428<br>
6776
- <b>Icon:</b> large_green
6777
- </div>', 'wp-google-maps');
6778
- __('5800 Omaha Avenue N, Oak Park Heights, MN 55082', 'wp-google-maps');
6779
- __('<div class=\"googft-info-window\">
6780
- <b>Client:</b> The Heights Hall &amp; Club<br>
6781
- <b>Year:</b> 2014<br>
6782
- <b>Category:</b> Hospitality<br>
6783
- <b>Subcategory:</b> Events<br>
6784
- <b>EMC:</b> Y<br>
6785
- <b>Gas Pricer:</b> <br>
6786
- <b>EMC: Size:</b> 3x7<br>
6787
- <b>EMC: Res:</b> 16mm<br>
6788
- <b>Address:</b> 5800 Omaha Avenue N, Oak Park Heights, MN 55082<br>
6789
- <b>Icon:</b> large_green
6790
- </div>', 'wp-google-maps');
6791
- __('17603 Minnetonka Blvd, Minnetonka, MN 55391', 'wp-google-maps');
6792
- __('<div class=\"googft-info-window\">
6793
- <b>Client:</b> The Lindsay Group<br>
6794
- <b>Year:</b> 2014<br>
6795
- <b>Category:</b> Retail<br>
6796
- <b>Subcategory:</b> Strip Mall<br>
6797
- <b>EMC:</b> Y<br>
6798
- <b>Gas Pricer:</b> <br>
6799
- <b>EMC: Size:</b> 4x5<br>
6800
- <b>EMC: Res:</b> 10mm<br>
6801
- <b>Address:</b> 17603 Minnetonka Blvd, Minnetonka, MN 55391<br>
6802
- <b>Icon:</b> large_green
6803
- </div>', 'wp-google-maps');
6804
- __('404 Wilson Ave NW, Faribault, MN 55021', 'wp-google-maps');
6805
- __('<div class=\"googft-info-window\">
6806
- <b>Client:</b> A&amp;W_Faribault<br>
6807
- <b>Year:</b> 2015<br>
6808
- <b>Category:</b> Restaurant<br>
6809
- <b>Subcategory:</b> Quick Serve<br>
6810
- <b>EMC:</b> Y<br>
6811
- <b>Gas Pricer:</b> <br>
6812
- <b>EMC: Size:</b> 4x8<br>
6813
- <b>EMC: Res:</b> 19mm<br>
6814
- <b>Address:</b> 404 Wilson Ave NW, Faribault, MN 55021<br>
6815
- <b>Icon:</b> large_green
6816
- </div>', 'wp-google-maps');
6817
- __('15655 Bass Lake Road, Maple Grove, MN 55311', 'wp-google-maps');
6818
- __('<div class=\"googft-info-window\">
6819
- <b>Client:</b> Heritage Christian Academy<br>
6820
- <b>Year:</b> 2018<br>
6821
- <b>Category:</b> School<br>
6822
- <b>Subcategory:</b> Christian<br>
6823
- <b>EMC:</b> Y<br>
6824
- <b>Gas Pricer:</b> <br>
6825
- <b>EMC: Size:</b> 3x6<br>
6826
- <b>EMC: Res:</b> 10mm<br>
6827
- <b>Address:</b> 15655 Bass Lake Road, Maple Grove, MN 55311<br>
6828
- <b>Icon:</b> large_green
6829
- </div>', 'wp-google-maps');
6830
- __('4880 Hodgson Road, Shoreview, MN 55126', 'wp-google-maps');
6831
- __('<div class=\"googft-info-window\">
6832
- <b>Client:</b> Incarnation Lutheran Church<br>
6833
- <b>Year:</b> 2018<br>
6834
- <b>Category:</b> Church<br>
6835
- <b>Subcategory:</b> Lutheran<br>
6836
- <b>EMC:</b> Y<br>
6837
- <b>Gas Pricer:</b> <br>
6838
- <b>EMC: Size:</b> 2x7<br>
6839
- <b>EMC: Res:</b> 16mm<br>
6840
- <b>Address:</b> 4880 Hodgson Road, Shoreview, MN 55126<br>
6841
- <b>Icon:</b> large_green
6842
- </div>', 'wp-google-maps');
6843
- __('6000 Duluth Street, Golden Valley, MN 55422', 'wp-google-maps');
6844
- __('<div class=\"googft-info-window\">
6845
- <b>Client:</b> King of Grace Lutheran Church<br>
6846
- <b>Year:</b> 2018<br>
6847
- <b>Category:</b> Church<br>
6848
- <b>Subcategory:</b> Lutheran<br>
6849
- <b>EMC:</b> Y<br>
6850
- <b>Gas Pricer:</b> <br>
6851
- <b>EMC: Size:</b> 4x8<br>
6852
- <b>EMC: Res:</b> 16mm<br>
6853
- <b>Address:</b> 6000 Duluth Street, Golden Valley, MN 55422<br>
6854
- <b>Icon:</b> large_green
6855
- </div>', 'wp-google-maps');
6856
- __('7111 West Broadway Avenue, Brooklyn Park, MN 55428', 'wp-google-maps');
6857
- __('<div class=\"googft-info-window\">
6858
- <b>Client:</b> Office Liquidators<br>
6859
- <b>Year:</b> 2018<br>
6860
- <b>Category:</b> Retail<br>
6861
- <b>Subcategory:</b> Furniture<br>
6862
- <b>EMC:</b> Y<br>
6863
- <b>Gas Pricer:</b> <br>
6864
- <b>EMC: Size:</b> 6x8<br>
6865
- <b>EMC: Res:</b> 16mm<br>
6866
- <b>Address:</b> 7111 West Broadway Avenue, Brooklyn Park, MN 55428<br>
6867
- <b>Icon:</b> large_green
6868
- </div>', 'wp-google-maps');
6869
- __('2817 Brookdale Drive, Brooklyn Park, MN 55444', 'wp-google-maps');
6870
- __('<div class=\"googft-info-window\">
6871
- <b>Client:</b> VFW - Brooklyn Park Post 3915<br>
6872
- <b>Year:</b> 2015<br>
6873
- <b>Category:</b> VFW-Amer Legion<br>
6874
- <b>Subcategory:</b> VFW<br>
6875
- <b>EMC:</b> Y<br>
6876
- <b>Gas Pricer:</b> <br>
6877
- <b>EMC: Size:</b> 3x7<br>
6878
- <b>EMC: Res:</b> 19mm<br>
6879
- <b>Address:</b> 2817 Brookdale Drive, Brooklyn Park, MN 55444<br>
6880
- <b>Icon:</b> large_green
6881
- </div>', 'wp-google-maps');
6882
- __('14898 Energy Way, Apple Valley, MN 55124', 'wp-google-maps');
6883
- __('<div class=\"googft-info-window\">
6884
- <b>Client:</b> River Valley Church: Apple Valley<br>
6885
- <b>Year:</b> 2018<br>
6886
- <b>Category:</b> Church<br>
6887
- <b>Subcategory:</b> Nondeminational<br>
6888
- <b>EMC:</b> N<br>
6889
- <b>Gas Pricer:</b> <br>
6890
- <b>EMC: Size:</b> <br>
6891
- <b>EMC: Res:</b> <br>
6892
- <b>Address:</b> 14898 Energy Way, Apple Valley, MN 55124<br>
6893
- <b>Icon:</b> large_blue
6894
- </div>', 'wp-google-maps');
6895
- __('200 Lilac Drive N, Golden Valley, MN 55422', 'wp-google-maps');
6896
- __('<div class=\"googft-info-window\">
6897
- <b>Client:</b> American Legion - GV<br>
6898
- <b>Year:</b> 2016<br>
6899
- <b>Category:</b> VFW-Amer Legion<br>
6900
- <b>Subcategory:</b> American Legion<br>
6901
- <b>EMC:</b> Y<br>
6902
- <b>Gas Pricer:</b> <br>
6903
- <b>EMC: Size:</b> 4x8<br>
6904
- <b>EMC: Res:</b> 19mm<br>
6905
- <b>Address:</b> 200 Lilac Drive N, Golden Valley, MN 55422<br>
6906
- <b>Icon:</b> large_green
6907
- </div>', 'wp-google-maps');
6908
- __('10801 Red Circle Drive, Hopkins, MN 55343', 'wp-google-maps');
6909
- __('<div class=\"googft-info-window\">
6910
- <b>Client:</b> River Valley Church: Minnetonka<br>
6911
- <b>Year:</b> 2018<br>
6912
- <b>Category:</b> Church<br>
6913
- <b>Subcategory:</b> Nondeminational<br>
6914
- <b>EMC:</b> N<br>
6915
- <b>Gas Pricer:</b> <br>
6916
- <b>EMC: Size:</b> <br>
6917
- <b>EMC: Res:</b> <br>
6918
- <b>Address:</b> 10801 Red Circle Drive, Hopkins, MN 55343<br>
6919
- <b>Icon:</b> large_blue
6920
- </div>', 'wp-google-maps');
6921
- __('904 MN-33, Cloquet, MN 55720', 'wp-google-maps');
6922
- __('<div class=\"googft-info-window\">
6923
- <b>Client:</b> Cold One Liquor<br>
6924
- <b>Year:</b> 2016<br>
6925
- <b>Category:</b> Retail<br>
6926
- <b>Subcategory:</b> Liquor<br>
6927
- <b>EMC:</b> Y<br>
6928
- <b>Gas Pricer:</b> <br>
6929
- <b>EMC: Size:</b> 10x16<br>
6930
- <b>EMC: Res:</b> 16mm<br>
6931
- <b>Address:</b> 904 MN-33, Cloquet, MN 55720<br>
6932
- <b>Icon:</b> large_green
6933
- </div>', 'wp-google-maps');
6934
- __('1800 County Road 42, Burnsville, MN 55337', 'wp-google-maps');
6935
- __('<div class=\"googft-info-window\">
6936
- <b>Client:</b> SouthCross Community Church<br>
6937
- <b>Year:</b> 2018<br>
6938
- <b>Category:</b> Church<br>
6939
- <b>Subcategory:</b> Nondeminational<br>
6940
- <b>EMC:</b> Y<br>
6941
- <b>Gas Pricer:</b> <br>
6942
- <b>EMC: Size:</b> 4x10<br>
6943
- <b>EMC: Res:</b> 16mm<br>
6944
- <b>Address:</b> 1800 County Road 42, Burnsville, MN 55337<br>
6945
- <b>Icon:</b> large_green
6946
- </div>', 'wp-google-maps');
6947
- __('7600 Cahill Avenue, Inver Grove Heights, MN 55076', 'wp-google-maps');
6948
- __('<div class=\"googft-info-window\">
6949
- <b>Client:</b> Good Shepherd Lutheran_IGH<br>
6950
- <b>Year:</b> 2016<br>
6951
- <b>Category:</b> Church<br>
6952
- <b>Subcategory:</b> Lutheran<br>
6953
- <b>EMC:</b> Y<br>
6954
- <b>Gas Pricer:</b> <br>
6955
- <b>EMC: Size:</b> 4x8<br>
6956
- <b>EMC: Res:</b> 16mm<br>
6957
- <b>Address:</b> 7600 Cahill Avenue, Inver Grove Heights, MN 55076<br>
6958
- <b>Icon:</b> large_green
6959
- </div>', 'wp-google-maps');
6960
- __('380 Little Canada Road, Little Canada, MN 55117', 'wp-google-maps');
6961
- __('<div class=\"googft-info-window\">
6962
- <b>Client:</b> St John\'s Little Canada<br>
6963
- <b>Year:</b> 2018<br>
6964
- <b>Category:</b> Church<br>
6965
- <b>Subcategory:</b> Catholic<br>
6966
- <b>EMC:</b> Y<br>
6967
- <b>Gas Pricer:</b> <br>
6968
- <b>EMC: Size:</b> 3x5<br>
6969
- <b>EMC: Res:</b> 8mm<br>
6970
- <b>Address:</b> 380 Little Canada Road, Little Canada, MN 55117<br>
6971
- <b>Icon:</b> large_green
6972
- </div>', 'wp-google-maps');
6973
- __('3900 Winnetka Ave N, New Hope, MN 55427', 'wp-google-maps');
6974
- __('<div class=\"googft-info-window\">
6975
- <b>Client:</b> Holy Nativity Lutheran Church<br>
6976
- <b>Year:</b> 2016<br>
6977
- <b>Category:</b> Church<br>
6978
- <b>Subcategory:</b> Lutheran<br>
6979
- <b>EMC:</b> Y<br>
6980
- <b>Gas Pricer:</b> <br>
6981
- <b>EMC: Size:</b> 3x7<br>
6982
- <b>EMC: Res:</b> 19mm<br>
6983
- <b>Address:</b> 3900 Winnetka Ave N, New Hope, MN 55427<br>
6984
- <b>Icon:</b> large_green
6985
- </div>', 'wp-google-maps');
6986
- __('7805 Hudson Road, Woodbury, MN 55125', 'wp-google-maps');
6987
- __('<div class=\"googft-info-window\">
6988
- <b>Client:</b> River Valley Church: Woodbury<br>
6989
- <b>Year:</b> 2019<br>
6990
- <b>Category:</b> Church<br>
6991
- <b>Subcategory:</b> Nondeminational<br>
6992
- <b>EMC:</b> N<br>
6993
- <b>Gas Pricer:</b> <br>
6994
- <b>EMC: Size:</b> <br>
6995
- <b>EMC: Res:</b> <br>
6996
- <b>Address:</b> 7805 Hudson Road, Woodbury, MN 55125<br>
6997
- <b>Icon:</b> large_blue
6998
- </div>', 'wp-google-maps');
6999
- __('1820 Xenium Lane N, Plymouth, MN 55441', 'wp-google-maps');
7000
- __('<div class=\"googft-info-window\">
7001
- <b>Client:</b> Intermediate District 287<br>
7002
- <b>Year:</b> 2016<br>
7003
- <b>Category:</b> School<br>
7004
- <b>Subcategory:</b> Public<br>
7005
- <b>EMC:</b> Y<br>
7006
- <b>Gas Pricer:</b> <br>
7007
- <b>EMC: Size:</b> 4x8<br>
7008
- <b>EMC: Res:</b> 16mm<br>
7009
- <b>Address:</b> 1820 Xenium Lane N, Plymouth, MN 55441<br>
7010
- <b>Icon:</b> large_green
7011
- </div>', 'wp-google-maps');
7012
- __('180 County Road F, Shoreview, MN 55126', 'wp-google-maps');
7013
- __('<div class=\"googft-info-window\">
7014
- <b>Client:</b> New Life Evangelical<br>
7015
- <b>Year:</b> 2019<br>
7016
- <b>Category:</b> Church<br>
7017
- <b>Subcategory:</b> Lutheran<br>
7018
- <b>EMC:</b> Y<br>
7019
- <b>Gas Pricer:</b> <br>
7020
- <b>EMC: Size:</b> 4x9<br>
7021
- <b>EMC: Res:</b> 16mm<br>
7022
- <b>Address:</b> 180 County Road F, Shoreview, MN 55126<br>
7023
- <b>Icon:</b> large_green
7024
- </div>', 'wp-google-maps');
7025
- __('901 4th Avenue NE, Austin, MN 55912', 'wp-google-maps');
7026
- __('<div class=\"googft-info-window\">
7027
- <b>Client:</b> Minnoco - Austin<br>
7028
- <b>Year:</b> 2016<br>
7029
- <b>Category:</b> Gas Station<br>
7030
- <b>Subcategory:</b> Minnoco<br>
7031
- <b>EMC:</b> N<br>
7032
- <b>Gas Pricer:</b> Y<br>
7033
- <b>EMC: Size:</b> <br>
7034
- <b>EMC: Res:</b> <br>
7035
- <b>Address:</b> 901 4th Avenue NE, Austin, MN 55912<br>
7036
- <b>Icon:</b> large_yellow
7037
- </div>', 'wp-google-maps');
7038
- __('37455 Park Trail, Center City, MN 55012', 'wp-google-maps');
7039
- __('<div class=\"googft-info-window\">
7040
- <b>Client:</b> Minnoco - Center City<br>
7041
- <b>Year:</b> 2016<br>
7042
- <b>Category:</b> Gas Station<br>
7043
- <b>Subcategory:</b> Minnoco<br>
7044
- <b>EMC:</b> N<br>
7045
- <b>Gas Pricer:</b> <br>
7046
- <b>EMC: Size:</b> <br>
7047
- <b>EMC: Res:</b> <br>
7048
- <b>Address:</b> 37455 Park Trail, Center City, MN 55012<br>
7049
- <b>Icon:</b> large_yellow
7050
- </div>', 'wp-google-maps');
7051
- __('3999 Rice Street, St Paul, MN 55126', 'wp-google-maps');
7052
- __('<div class=\"googft-info-window\">
7053
- <b>Client:</b> Minnoco - Gramsie Corner Mart<br>
7054
- <b>Year:</b> 2016<br>
7055
- <b>Category:</b> Gas Station<br>
7056
- <b>Subcategory:</b> Minnoco<br>
7057
- <b>EMC:</b> N<br>
7058
- <b>Gas Pricer:</b> Y<br>
7059
- <b>EMC: Size:</b> <br>
7060
- <b>EMC: Res:</b> <br>
7061
- <b>Address:</b> 3999 Rice Street, St Paul, MN 55126<br>
7062
- <b>Icon:</b> large_yellow
7063
- </div>', 'wp-google-maps');
7064
- __('933 West Minnehaha Ave, St Paul, MN 55104', 'wp-google-maps');
7065
- __('<div class=\"googft-info-window\">
7066
- <b>Client:</b> Minnoco - Tobasi (Minnehaha)<br>
7067
- <b>Year:</b> 2016<br>
7068
- <b>Category:</b> Gas Station<br>
7069
- <b>Subcategory:</b> Minnoco<br>
7070
- <b>EMC:</b> N<br>
7071
- <b>Gas Pricer:</b> Y<br>
7072
- <b>EMC: Size:</b> <br>
7073
- <b>EMC: Res:</b> <br>
7074
- <b>Address:</b> 933 West Minnehaha Ave, St Paul, MN 55104<br>
7075
- <b>Icon:</b> large_yellow
7076
- </div>', 'wp-google-maps');
7077
- __('17 W 7th Place, St Paul, MN 55102', 'wp-google-maps');
7078
- __('<div class=\"googft-info-window\">
7079
- <b>Client:</b> Palace Theatre<br>
7080
- <b>Year:</b> 2019<br>
7081
- <b>Category:</b> Entertainment<br>
7082
- <b>Subcategory:</b> Music<br>
7083
- <b>EMC:</b> Y<br>
7084
- <b>Gas Pricer:</b> <br>
7085
- <b>EMC: Size:</b> 5x10<br>
7086
- <b>EMC: Res:</b> 8mm<br>
7087
- <b>Address:</b> 17 W 7th Place, St Paul, MN 55102<br>
7088
- <b>Icon:</b> large_green
7089
- </div>', 'wp-google-maps');
7090
- __('1052 East Minnehaha Avenue, St Paul, MN 55106', 'wp-google-maps');
7091
- __('<div class=\"googft-info-window\">
7092
- <b>Client:</b> St Paul Eastside<br>
7093
- <b>Year:</b> 2019<br>
7094
- <b>Category:</b> Church<br>
7095
- <b>Subcategory:</b> 7th Day Adventist<br>
7096
- <b>EMC:</b> Y<br>
7097
- <b>Gas Pricer:</b> <br>
7098
- <b>EMC: Size:</b> 2x7<br>
7099
- <b>EMC: Res:</b> 8mm<br>
7100
- <b>Address:</b> 1052 East Minnehaha Avenue, St Paul, MN 55106<br>
7101
- <b>Icon:</b> large_green
7102
- </div>', 'wp-google-maps');
7103
- __('1595 220th Street East, Farmington, MN 55024', 'wp-google-maps');
7104
- __('<div class=\"googft-info-window\">
7105
- <b>Client:</b> Glenhaven Events<br>
7106
- <b>Year:</b> 2019<br>
7107
- <b>Category:</b> Event<br>
7108
- <b>Subcategory:</b> Weddings<br>
7109
- <b>EMC:</b> Y<br>
7110
- <b>Gas Pricer:</b> <br>
7111
- <b>EMC: Size:</b> 4x10<br>
7112
- <b>EMC: Res:</b> 8mm<br>
7113
- <b>Address:</b> 1595 220th Street East, Farmington, MN 55024<br>
7114
- <b>Icon:</b> large_green
7115
- </div>', 'wp-google-maps');
7116
- __('6885 160th St W, Apple Valley, MN 55124', 'wp-google-maps');
7117
- __('<div class=\"googft-info-window\">
7118
- <b>Client:</b> Pahl\'s Market<br>
7119
- <b>Year:</b> 2019<br>
7120
- <b>Category:</b> Retail<br>
7121
- <b>Subcategory:</b> Garden Center<br>
7122
- <b>EMC:</b> Y<br>
7123
- <b>Gas Pricer:</b> <br>
7124
- <b>EMC: Size:</b> 5x8<br>
7125
- <b>EMC: Res:</b> 16mm<br>
7126
- <b>Address:</b> 6885 160th St W, Apple Valley, MN 55124<br>
7127
- <b>Icon:</b> large_green
7128
- </div>', 'wp-google-maps');
7129
- __('574 Old Hwy 8, New Brighton, MN 55112', 'wp-google-maps');
7130
- __('<div class=\"googft-info-window\">
7131
- <b>Client:</b> Minnoco - Tobasi (New Brighton)<br>
7132
- <b>Year:</b> 2016<br>
7133
- <b>Category:</b> Gas Station<br>
7134
- <b>Subcategory:</b> Minnoco<br>
7135
- <b>EMC:</b> N<br>
7136
- <b>Gas Pricer:</b> Y<br>
7137
- <b>EMC: Size:</b> <br>
7138
- <b>EMC: Res:</b> <br>
7139
- <b>Address:</b> 574 Old Hwy 8, New Brighton, MN 55112<br>
7140
- <b>Icon:</b> large_yellow
7141
- </div>', 'wp-google-maps');
7142
- __('9225 Jason Ave NE, Monticello, MN 55362', 'wp-google-maps');
7143
- __('<div class=\"googft-info-window\">
7144
- <b>Client:</b> Community United Methodist Church<br>
7145
- <b>Year:</b> 2019<br>
7146
- <b>Category:</b> Church<br>
7147
- <b>Subcategory:</b> UMC<br>
7148
- <b>EMC:</b> Y<br>
7149
- <b>Gas Pricer:</b> <br>
7150
- <b>EMC: Size:</b> 3x7<br>
7151
- <b>EMC: Res:</b> 10mm<br>
7152
- <b>Address:</b> 9225 Jason Ave NE, Monticello, MN 55362<br>
7153
- <b>Icon:</b> large_green
7154
- </div>', 'wp-google-maps');
7155
- __('608 Huff St., Winona, MN 55987', 'wp-google-maps');
7156
- __('<div class=\"googft-info-window\">
7157
- <b>Client:</b> Minnoco - Winona<br>
7158
- <b>Year:</b> 2016<br>
7159
- <b>Category:</b> Gas Station<br>
7160
- <b>Subcategory:</b> Minnoco<br>
7161
- <b>EMC:</b> Y<br>
7162
- <b>Gas Pricer:</b> Y<br>
7163
- <b>EMC: Size:</b> 3x6<br>
7164
- <b>EMC: Res:</b> 16mm<br>
7165
- <b>Address:</b> 608 Huff St., Winona, MN 55987<br>
7166
- <b>Icon:</b> large_green
7167
- </div>', 'wp-google-maps');
7168
- __('865 Ferndale Road North, Wayzata, MN 55391', 'wp-google-maps');
7169
- __('<div class=\"googft-info-window\">
7170
- <b>Client:</b> St Edward\'s<br>
7171
- <b>Year:</b> 2019<br>
7172
- <b>Category:</b> Church<br>
7173
- <b>Subcategory:</b> Episcopal<br>
7174
- <b>EMC:</b> Y<br>
7175
- <b>Gas Pricer:</b> <br>
7176
- <b>EMC: Size:</b> 1x8<br>
7177
- <b>EMC: Res:</b> 19mm<br>
7178
- <b>Address:</b> 865 Ferndale Road North, Wayzata, MN 55391<br>
7179
- <b>Icon:</b> large_green
7180
- </div>', 'wp-google-maps');
7181
- __('5925 Excelsior Blvd, St. Louis Park, MN 55416', 'wp-google-maps');
7182
- __('<div class=\"googft-info-window\">
7183
- <b>Client:</b> Minnoco - Youngstedt\'s<br>
7184
- <b>Year:</b> 2016<br>
7185
- <b>Category:</b> Gas Station<br>
7186
- <b>Subcategory:</b> Minnoco<br>
7187
- <b>EMC:</b> Y<br>
7188
- <b>Gas Pricer:</b> Y<br>
7189
- <b>EMC: Size:</b> 4x5<br>
7190
- <b>EMC: Res:</b> 16mm<br>
7191
- <b>Address:</b> 5925 Excelsior Blvd, St. Louis Park, MN 55416<br>
7192
- <b>Icon:</b> large_green
7193
- </div>', 'wp-google-maps');
7194
- __('13400 Maple Knoll Way, Maple Grove, MN 55369', 'wp-google-maps');
7195
- __('<div class=\"googft-info-window\">
7196
- <b>Client:</b> Maple Ridge Church<br>
7197
- <b>Year:</b> 2019<br>
7198
- <b>Category:</b> Church<br>
7199
- <b>Subcategory:</b> Nondeminational<br>
7200
- <b>EMC:</b> Y<br>
7201
- <b>Gas Pricer:</b> <br>
7202
- <b>EMC: Size:</b> 2x9<br>
7203
- <b>EMC: Res:</b> 10mm<br>
7204
- <b>Address:</b> 13400 Maple Knoll Way, Maple Grove, MN 55369<br>
7205
- <b>Icon:</b> large_green
7206
- </div>', 'wp-google-maps');
7207
- __('631 Minuteman Drive, St. Paul, MN 55111', 'wp-google-maps');
7208
- __('<div class=\"googft-info-window\">
7209
- <b>Client:</b> MN Air Guard<br>
7210
- <b>Year:</b> 2016<br>
7211
- <b>Category:</b> Municipal<br>
7212
- <b>Subcategory:</b> Military<br>
7213
- <b>EMC:</b> Y<br>
7214
- <b>Gas Pricer:</b> <br>
7215
- <b>EMC: Size:</b> 2x5<br>
7216
- <b>EMC: Res:</b> Red<br>
7217
- <b>Address:</b> 631 Minuteman Drive, St. Paul, MN 55111<br>
7218
- <b>Icon:</b> large_red
7219
- </div>', 'wp-google-maps');
7220
- __('7700 Monroe Street NE, Spring Lake Park, MN 55432', 'wp-google-maps');
7221
- __('<div class=\"googft-info-window\">
7222
- <b>Client:</b> Prince of Peace<br>
7223
- <b>Year:</b> 2019<br>
7224
- <b>Category:</b> Church<br>
7225
- <b>Subcategory:</b> Lutheran<br>
7226
- <b>EMC:</b> Y<br>
7227
- <b>Gas Pricer:</b> <br>
7228
- <b>EMC: Size:</b> 3x8<br>
7229
- <b>EMC: Res:</b> 16mm<br>
7230
- <b>Address:</b> 7700 Monroe Street NE, Spring Lake Park, MN 55432<br>
7231
- <b>Icon:</b> large_green
7232
- </div>', 'wp-google-maps');
7233
- __('4100 Douglas Dr N, Crystal, MN 55422', 'wp-google-maps');
7234
- __('<div class=\"googft-info-window\">
7235
- <b>Client:</b> Serenity Village Community Church<br>
7236
- <b>Year:</b> 2016<br>
7237
- <b>Category:</b> Church<br>
7238
- <b>Subcategory:</b> Christian<br>
7239
- <b>EMC:</b> Y<br>
7240
- <b>Gas Pricer:</b> <br>
7241
- <b>EMC: Size:</b> 3x7<br>
7242
- <b>EMC: Res:</b> 10mm<br>
7243
- <b>Address:</b> 4100 Douglas Dr N, Crystal, MN 55422<br>
7244
- <b>Icon:</b> large_green
7245
- </div>', 'wp-google-maps');
7246
- __('29400 Olinda Trail, Lindstrom, MN 55045', 'wp-google-maps');
7247
- __('<div class=\"googft-info-window\">
7248
- <b>Client:</b> Chisago Lakes CC<br>
7249
- <b>Year:</b> 2019<br>
7250
- <b>Category:</b> Municipal<br>
7251
- <b>Subcategory:</b> Community Center<br>
7252
- <b>EMC:</b> Y<br>
7253
- <b>Gas Pricer:</b> <br>
7254
- <b>EMC: Size:</b> 5x10<br>
7255
- <b>EMC: Res:</b> 16mm<br>
7256
- <b>Address:</b> 29400 Olinda Trail, Lindstrom, MN 55045<br>
7257
- <b>Icon:</b> large_green
7258
- </div>', 'wp-google-maps');
7259
- __('1919 Coon Rapids Blvd NW, Coon Rapids, MN 55433', 'wp-google-maps');
7260
- __('<div class=\"googft-info-window\">
7261
- <b>Client:</b> VFW - Coon Rapids<br>
7262
- <b>Year:</b> 2016<br>
7263
- <b>Category:</b> VFW-Amer Legion<br>
7264
- <b>Subcategory:</b> VFW<br>
7265
- <b>EMC:</b> Y<br>
7266
- <b>Gas Pricer:</b> <br>
7267
- <b>EMC: Size:</b> 3x7<br>
7268
- <b>EMC: Res:</b> 16mm<br>
7269
- <b>Address:</b> 1919 Coon Rapids Blvd NW, Coon Rapids, MN 55433<br>
7270
- <b>Icon:</b> large_green
7271
- </div>', 'wp-google-maps');
7272
- __('4300 Vicksburg Lane N, Plymouth, MN 55446', 'wp-google-maps');
7273
- __('<div class=\"googft-info-window\">
7274
- <b>Client:</b> Plymouth Covenant<br>
7275
- <b>Year:</b> 2019<br>
7276
- <b>Category:</b> Church<br>
7277
- <b>Subcategory:</b> Covenant<br>
7278
- <b>EMC:</b> Y<br>
7279
- <b>Gas Pricer:</b> <br>
7280
- <b>EMC: Size:</b> 3x7<br>
7281
- <b>EMC: Res:</b> 16mm<br>
7282
- <b>Address:</b> 4300 Vicksburg Lane N, Plymouth, MN 55446<br>
7283
- <b>Icon:</b> large_green
7284
- </div>', 'wp-google-maps');
7285
- __('100 Shady Oak Rd S, Hopkins, MN 55343', 'wp-google-maps');
7286
- __('<div class=\"googft-info-window\">
7287
- <b>Client:</b> VFW - Hopkins<br>
7288
- <b>Year:</b> 2016<br>
7289
- <b>Category:</b> VFW-Amer Legion<br>
7290
- <b>Subcategory:</b> VFW<br>
7291
- <b>EMC:</b> Y<br>
7292
- <b>Gas Pricer:</b> <br>
7293
- <b>EMC: Size:</b> 3x6<br>
7294
- <b>EMC: Res:</b> 16mm<br>
7295
- <b>Address:</b> 100 Shady Oak Rd S, Hopkins, MN 55343<br>
7296
- <b>Icon:</b> large_green
7297
- </div>', 'wp-google-maps');
7298
- __('720 Washington Avenue SE, Minneapolis, MN 55454', 'wp-google-maps');
7299
- __('<div class=\"googft-info-window\">
7300
- <b>Client:</b> Afro Deli<br>
7301
- <b>Year:</b> 2017<br>
7302
- <b>Category:</b> Restaurant<br>
7303
- <b>Subcategory:</b> Independent<br>
7304
- <b>EMC:</b> N<br>
7305
- <b>Gas Pricer:</b> <br>
7306
- <b>EMC: Size:</b> <br>
7307
- <b>EMC: Res:</b> <br>
7308
- <b>Address:</b> 720 Washington Avenue SE, Minneapolis, MN 55454<br>
7309
- <b>Icon:</b> large_blue
7310
- </div>', 'wp-google-maps');
7311
- __('5333 University Ave NE, Fridley, MN 55421', 'wp-google-maps');
7312
- __('<div class=\"googft-info-window\">
7313
- <b>Client:</b> Bona Brothers<br>
7314
- <b>Year:</b> 2017<br>
7315
- <b>Category:</b> Automotive<br>
7316
- <b>Subcategory:</b> Auto Service<br>
7317
- <b>EMC:</b> Y<br>
7318
- <b>Gas Pricer:</b> <br>
7319
- <b>EMC: Size:</b> 6x13<br>
7320
- <b>EMC: Res:</b> 16mm<br>
7321
- <b>Address:</b> 5333 University Ave NE, Fridley, MN 55421<br>
7322
- <b>Icon:</b> large_green
7323
- </div>', 'wp-google-maps');
7324
- __('2875 145thSt W, Rosemount, MN 55068', 'wp-google-maps');
7325
- __('<div class=\"googft-info-window\">
7326
- <b>Client:</b> City of Rosemount: City Hall<br>
7327
- <b>Year:</b> 2017<br>
7328
- <b>Category:</b> Municipal<br>
7329
- <b>Subcategory:</b> City<br>
7330
- <b>EMC:</b> Y<br>
7331
- <b>Gas Pricer:</b> <br>
7332
- <b>EMC: Size:</b> 3x7<br>
7333
- <b>EMC: Res:</b> 16mm<br>
7334
- <b>Address:</b> 2875 145thSt W, Rosemount, MN 55068<br>
7335
- <b>Icon:</b> large_green
7336
- </div>', 'wp-google-maps');
7337
- __('3695 County Road 101 N, Plymouth, MN 55446', 'wp-google-maps');
7338
- __('<div class=\"googft-info-window\">
7339
- <b>Client:</b> Peace Lutheran<br>
7340
- <b>Year:</b> 2019<br>
7341
- <b>Category:</b> Church<br>
7342
- <b>Subcategory:</b> Lutheran<br>
7343
- <b>EMC:</b> Y<br>
7344
- <b>Gas Pricer:</b> <br>
7345
- <b>EMC: Size:</b> 3x6<br>
7346
- <b>EMC: Res:</b> 10mm<br>
7347
- <b>Address:</b> 3695 County Road 101 N, Plymouth, MN 55446<br>
7348
- <b>Icon:</b> large_green
7349
- </div>', 'wp-google-maps');
7350
- __('7621 US-10, Ramsey, MN 55303', 'wp-google-maps');
7351
- __('<div class=\"googft-info-window\">
7352
- <b>Client:</b> City of Ramsey<br>
7353
- <b>Year:</b> 2019<br>
7354
- <b>Category:</b> Municipal<br>
7355
- <b>Subcategory:</b> City<br>
7356
- <b>EMC:</b> Y<br>
7357
- <b>Gas Pricer:</b> <br>
7358
- <b>EMC: Size:</b> 11x11<br>
7359
- <b>EMC: Res:</b> 16mm<br>
7360
- <b>Address:</b> 7621 US-10, Ramsey, MN 55303<br>
7361
- <b>Icon:</b> large_green
7362
- </div>', 'wp-google-maps');
7363
- __('13900 Biscayne Ave W, Rosemount, MN 55068', 'wp-google-maps');
7364
- __('<div class=\"googft-info-window\">
7365
- <b>Client:</b> St Joseph Catholic Church and School<br>
7366
- <b>Year:</b> 2019<br>
7367
- <b>Category:</b> Church<br>
7368
- <b>Subcategory:</b> Catholic<br>
7369
- <b>EMC:</b> Y<br>
7370
- <b>Gas Pricer:</b> <br>
7371
- <b>EMC: Size:</b> 2x12<br>
7372
- <b>EMC: Res:</b> 16mm<br>
7373
- <b>Address:</b> 13900 Biscayne Ave W, Rosemount, MN 55068<br>
7374
- <b>Icon:</b> large_green
7375
- </div>', 'wp-google-maps');
7376
- __('16700 Valley View Road, Eden Prairie, MN 55346', 'wp-google-maps');
7377
- __('<div class=\"googft-info-window\">
7378
- <b>Client:</b> Eden Prairie CC<br>
7379
- <b>Year:</b> 2019<br>
7380
- <b>Category:</b> Municipal<br>
7381
- <b>Subcategory:</b> Community Center<br>
7382
- <b>EMC:</b> Y<br>
7383
- <b>Gas Pricer:</b> <br>
7384
- <b>EMC: Size:</b> 3x8<br>
7385
- <b>EMC: Res:</b> 10mm<br>
7386
- <b>Address:</b> 16700 Valley View Road, Eden Prairie, MN 55346<br>
7387
- <b>Icon:</b> large_green
7388
- </div>', 'wp-google-maps');
7389
- __('6030 Sturgeon Lake Rd, Welch, MN 55089', 'wp-google-maps');
7390
- __('<div class=\"googft-info-window\">
7391
- <b>Client:</b> Dakota Station<br>
7392
- <b>Year:</b> 2017<br>
7393
- <b>Category:</b> Gas Station<br>
7394
- <b>Subcategory:</b> Independent<br>
7395
- <b>EMC:</b> Y<br>
7396
- <b>Gas Pricer:</b> <br>
7397
- <b>EMC: Size:</b> 3x7<br>
7398
- <b>EMC: Res:</b> 16mm<br>
7399
- <b>Address:</b> 6030 Sturgeon Lake Rd, Welch, MN 55089<br>
7400
- <b>Icon:</b> large_green
7401
- </div>', 'wp-google-maps');
7402
- __('7460 Victoria Drive, Victoria, MN 55386', 'wp-google-maps');
7403
- __('<div class=\"googft-info-window\">
7404
- <b>Client:</b> Lake Auburn Church<br>
7405
- <b>Year:</b> 2019<br>
7406
- <b>Category:</b> Church<br>
7407
- <b>Subcategory:</b> Moravian<br>
7408
- <b>EMC:</b> Y<br>
7409
- <b>Gas Pricer:</b> <br>
7410
- <b>EMC: Size:</b> 3x7<br>
7411
- <b>EMC: Res:</b> 10mm<br>
7412
- <b>Address:</b> 7460 Victoria Drive, Victoria, MN 55386<br>
7413
- <b>Icon:</b> large_green
7414
- </div>', 'wp-google-maps');
7415
- __('12130 Business Park Blvd N, Champlin, MN 55316', 'wp-google-maps');
7416
- __('<div class=\"googft-info-window\">
7417
- <b>Client:</b> Frauenshuh: Champlin<br>
7418
- <b>Year:</b> 2017<br>
7419
- <b>Category:</b> Office<br>
7420
- <b>Subcategory:</b> Mulit-Tenant<br>
7421
- <b>EMC:</b> Y<br>
7422
- <b>Gas Pricer:</b> <br>
7423
- <b>EMC: Size:</b> 2x8<br>
7424
- <b>EMC: Res:</b> 19mm<br>
7425
- <b>Address:</b> 12130 Business Park Blvd N, Champlin, MN 55316<br>
7426
- <b>Icon:</b> large_green
7427
- </div>', 'wp-google-maps');
7428
- __('4625 West 125th Street, Savage, MN 55378', 'wp-google-maps');
7429
- __('<div class=\"googft-info-window\">
7430
- <b>Client:</b> St John the Baptist<br>
7431
- <b>Year:</b> 2019<br>
7432
- <b>Category:</b> Church<br>
7433
- <b>Subcategory:</b> Catholic<br>
7434
- <b>EMC:</b> Y<br>
7435
- <b>Gas Pricer:</b> <br>
7436
- <b>EMC: Size:</b> 3x7<br>
7437
- <b>EMC: Res:</b> 16mm<br>
7438
- <b>Address:</b> 4625 West 125th Street, Savage, MN 55378<br>
7439
- <b>Icon:</b> large_green
7440
- </div>', 'wp-google-maps');
7441
- __('7700 France Avenue S., Edina, MN 55435', 'wp-google-maps');
7442
- __('<div class=\"googft-info-window\">
7443
- <b>Client:</b> Frauenshuh: Edina<br>
7444
- <b>Year:</b> 2017<br>
7445
- <b>Category:</b> Office<br>
7446
- <b>Subcategory:</b> Mulit-Tenant<br>
7447
- <b>EMC:</b> Y<br>
7448
- <b>Gas Pricer:</b> <br>
7449
- <b>EMC: Size:</b> 4x10<br>
7450
- <b>EMC: Res:</b> 12mm<br>
7451
- <b>Address:</b> 7700 France Avenue S., Edina, MN 55435<br>
7452
- <b>Icon:</b> large_green
7453
- </div>', 'wp-google-maps');
7454
- __('1700 Henry Avenue, South St Paul, MN 55075', 'wp-google-maps');
7455
- __('<div class=\"googft-info-window\">
7456
- <b>Client:</b> Wipaire<br>
7457
- <b>Year:</b> 2019<br>
7458
- <b>Category:</b> Aviation<br>
7459
- <b>Subcategory:</b> <br>
7460
- <b>EMC:</b> Y<br>
7461
- <b>Gas Pricer:</b> <br>
7462
- <b>EMC: Size:</b> 1x12<br>
7463
- <b>EMC: Res:</b> 16mm<br>
7464
- <b>Address:</b> 1700 Henry Avenue, South St Paul, MN 55075<br>
7465
- <b>Icon:</b> large_green
7466
- </div>', 'wp-google-maps');
7467
- __('510 County Road D West, New Brighton, MN 55112', 'wp-google-maps');
7468
- __('<div class=\"googft-info-window\">
7469
- <b>Client:</b> Habitat for Humanity<br>
7470
- <b>Year:</b> 2017<br>
7471
- <b>Category:</b> Retail<br>
7472
- <b>Subcategory:</b> Used-Donated<br>
7473
- <b>EMC:</b> Y<br>
7474
- <b>Gas Pricer:</b> <br>
7475
- <b>EMC: Size:</b> 1x8<br>
7476
- <b>EMC: Res:</b> 16mm<br>
7477
- <b>Address:</b> 510 County Road D West, New Brighton, MN 55112<br>
7478
- <b>Icon:</b> large_green
7479
- </div>', 'wp-google-maps');
7480
- __('8465 Plaza Blvd NE, Spring Lake Park, MN 55432', 'wp-google-maps');
7481
- __('<div class=\"googft-info-window\">
7482
- <b>Client:</b> SMC<br>
7483
- <b>Year:</b> 2019<br>
7484
- <b>Category:</b> Construction<br>
7485
- <b>Subcategory:</b> <br>
7486
- <b>EMC:</b> Y<br>
7487
- <b>Gas Pricer:</b> <br>
7488
- <b>EMC: Size:</b> 5x10<br>
7489
- <b>EMC: Res:</b> 10mm<br>
7490
- <b>Address:</b> 8465 Plaza Blvd NE, Spring Lake Park, MN 55432<br>
7491
- <b>Icon:</b> large_green
7492
- </div>', 'wp-google-maps');
7493
- __('1350 Crossings Blvd, Shakopee, MN 55379', 'wp-google-maps');
7494
- __('<div class=\"googft-info-window\">
7495
- <b>Client:</b> River Valley Church: Shakopee<br>
7496
- <b>Year:</b> 2019<br>
7497
- <b>Category:</b> Church<br>
7498
- <b>Subcategory:</b> Nondeminational<br>
7499
- <b>EMC:</b> N<br>
7500
- <b>Gas Pricer:</b> <br>
7501
- <b>EMC: Size:</b> <br>
7502
- <b>EMC: Res:</b> <br>
7503
- <b>Address:</b> 1350 Crossings Blvd, Shakopee, MN 55379<br>
7504
- <b>Icon:</b> large_blue
7505
- </div>', 'wp-google-maps');
7506
- __('Schwefel 84, 6850 Dornbirn, Österreich', 'wp-google-maps');
7507
- __('Hong Kong', 'wp-google-maps');
7508
- __('Wan Chai', 'wp-google-maps');
7509
- __('Yau Tsim Mong', 'wp-google-maps');
7510
- __('Cuisine', 'wp-google-maps');
7511
- __('Asian', 'wp-google-maps');
7512
- __('Hotel', 'wp-google-maps');
7513
- __('Western', 'wp-google-maps');
7514
- __('Vegetarian', 'wp-google-maps');
7515
- __('Region/Country', 'wp-google-maps');
7516
- __('Central and Western', 'wp-google-maps');
7517
- __('Eastern', 'wp-google-maps');
7518
- __('Southern', 'wp-google-maps');
7519
- __('Kowloon City', 'wp-google-maps');
7520
- __('Kwun Tong', 'wp-google-maps');
7521
- __('Sham Shui Po', 'wp-google-maps');
7522
- __('Wong Tai Sin', 'wp-google-maps');
7523
- __('Islands', 'wp-google-maps');
7524
- __('Kwai Tsing', 'wp-google-maps');
7525
- __('North', 'wp-google-maps');
7526
- __('Sai Kung', 'wp-google-maps');
7527
- __('Sha Tin', 'wp-google-maps');
7528
- __('Tai Po', 'wp-google-maps');
7529
- __('Tsuen Wan', 'wp-google-maps');
7530
- __('Tuen Mun', 'wp-google-maps');
7531
- __('Yuen Long', 'wp-google-maps');
7532
- __('a', 'wp-google-maps');
7533
- __('http://localhost:8888/new-wordpress-2/wordpress/wp-content/uploads/2019/08/1.png', 'wp-google-maps');
7534
- __('b', 'wp-google-maps');
7535
- __('c', 'wp-google-maps');
7536
- __('d', 'wp-google-maps');
7537
- __('http://localhost/wp-content/uploads/2019/11/5dd3c9b7155c11.25617690-1.png', 'wp-google-maps');
7538
- __('Farm', 'wp-google-maps');
7539
- __('http://localhost/wp-content/uploads/2019/11/5de10066953294.41805180-1.png', 'wp-google-maps');
7540
- __('Church', 'wp-google-maps');
7541
- __('http://localhost/wp-content/uploads/2019/11/5de1009bcb6858.58857940-1.png', 'wp-google-maps');
7542
- __('http://localhost/wp-content/uploads/2019/11/5de100cf1e4bb3.30436893-1.png', 'wp-google-maps');
7543
- __('Pantry', 'wp-google-maps');
7544
- __('UHP', 'wp-google-maps');
7545
- __('phone', 'wp-google-maps');
7546
- __('none', 'wp-google-maps');
7547
- __('Year', 'wp-google-maps');
7548
- __('Category', 'wp-google-maps');
7549
- __('Subcategory', 'wp-google-maps');
7550
- __('EMC', 'wp-google-maps');
7551
- __('Gas Pricer', 'wp-google-maps');
7552
- __('EMC: Size', 'wp-google-maps');
7553
- __('EMC: Res', 'wp-google-maps');
7554
- __('Icon', 'wp-google-maps');
7555
- __('My first map', 'wp-google-maps');
7556
- __('\\%', 'wp-google-maps');
7557
- __('px', 'wp-google-maps');
7558
- __('Deployment in Europe Mk2', 'wp-google-maps');
7559
- __('Single European Sky Deployment', 'wp-google-maps');
7560
- __('Deployment in Europe', 'wp-google-maps');
7561
- __('Main Map', 'wp-google-maps');
7562
- __('New Imported Map', 'wp-google-maps');
7563
- __('Examplegeocoded.csv', 'wp-google-maps');
7564
- __('New Map', 'wp-google-maps');
7565
- __('tclmapsmaster-1.csv', 'wp-google-maps');
7566
- __('Example-1.csv', 'wp-google-maps');
7567
- __('Map-Upload-File-CRLF-Map-Upload-File-CRLF.csv', 'wp-google-maps');
7568
- __('//localhost/wp-content/uploads/2019/11/5dc2b0fa1c07d6.81109704-1.png', 'wp-google-maps');
7569
- __('30ff5aa39b5bc298-pyrotest_wpgmza-pyrotest_wpgmza.csv', 'wp-google-maps');
7570
- __('placeholder', 'wp-google-maps');
7571
- __('Resolv-Stores-2.kml', 'wp-google-maps');
7572
- __('Wednesday-food.csv', 'wp-google-maps');
7573
- __('Public Baskets', 'wp-google-maps');
7574
- __('Retail', 'wp-google-maps');
7575
- __('Gas Station', 'wp-google-maps');
7576
- __('VFW-Amer Legion', 'wp-google-maps');
7577
- __('Residential', 'wp-google-maps');
7578
- __('Automotive', 'wp-google-maps');
7579
- __('Municipal', 'wp-google-maps');
7580
- __('Construction', 'wp-google-maps');
7581
- __('Medical', 'wp-google-maps');
7582
- __('Restaurant', 'wp-google-maps');
7583
- __('School', 'wp-google-maps');
7584
- __('Hospitality', 'wp-google-maps');
7585
- __('Entertainment', 'wp-google-maps');
7586
- __('Event', 'wp-google-maps');
7587
- __('Office', 'wp-google-maps');
7588
- __('Aviation', 'wp-google-maps');
7589
- __('Free', 'wp-google-maps');
7590
- __('Minnoco', 'wp-google-maps');
7591
- __('VFW', 'wp-google-maps');
7592
- __('Mobile Home', 'wp-google-maps');
7593
- __('Auto Sales', 'wp-google-maps');
7594
- __('Pawn Shop', 'wp-google-maps');
7595
- __('Lutheran', 'wp-google-maps');
7596
- __('UMC', 'wp-google-maps');
7597
- __('Winners Chapel', 'wp-google-maps');
7598
- __('Episcopal', 'wp-google-maps');
7599
- __('City', 'wp-google-maps');
7600
- __('Dental', 'wp-google-maps');
7601
- __('Quick Serve', 'wp-google-maps');
7602
- __('Home Security', 'wp-google-maps');
7603
- __('Tire & Auto', 'wp-google-maps');
7604
- __('Insurance', 'wp-google-maps');
7605
- __('Pet Food', 'wp-google-maps');
7606
- __('Independent', 'wp-google-maps');
7607
- __('Catholic', 'wp-google-maps');
7608
- __('Methodist', 'wp-google-maps');
7609
- __('Events', 'wp-google-maps');
7610
- __('Strip Mall', 'wp-google-maps');
7611
- __('Christian', 'wp-google-maps');
7612
- __('Furniture', 'wp-google-maps');
7613
- __('Nondeminational', 'wp-google-maps');
7614
- __('American Legion', 'wp-google-maps');
7615
- __('Liquor', 'wp-google-maps');
7616
- __('Public', 'wp-google-maps');
7617
- __('Music', 'wp-google-maps');
7618
- __('7th Day Adventist', 'wp-google-maps');
7619
- __('Weddings', 'wp-google-maps');
7620
- __('Garden Center', 'wp-google-maps');
7621
- __('Military', 'wp-google-maps');
7622
- __('Community Center', 'wp-google-maps');
7623
- __('Covenant', 'wp-google-maps');
7624
- __('Auto Service', 'wp-google-maps');
7625
- __('Moravian', 'wp-google-maps');
7626
- __('Mulit-Tenant', 'wp-google-maps');
7627
- __('Used-Donated', 'wp-google-maps');
7628
- __('Y', 'wp-google-maps');
7629
- __('N', 'wp-google-maps');
7630
- __('4x7', 'wp-google-maps');
7631
- __('4x8', 'wp-google-maps');
7632
- __('3x6', 'wp-google-maps');
7633
- __('3x5', 'wp-google-maps');
7634
- __('10x20', 'wp-google-maps');
7635
- __('6x12', 'wp-google-maps');
7636
- __('2x7', 'wp-google-maps');
7637
- __('7x10', 'wp-google-maps');
7638
- __('9x19', 'wp-google-maps');
7639
- __('4x9', 'wp-google-maps');
7640
- __('2x8', 'wp-google-maps');
7641
- __('3x8', 'wp-google-maps');
7642
- __('3x7', 'wp-google-maps');
7643
- __('2x9', 'wp-google-maps');
7644
- __('5x8', 'wp-google-maps');
7645
- __('3x10', 'wp-google-maps');
7646
- __('2x5', 'wp-google-maps');
7647
- __('5x10', 'wp-google-maps');
7648
- __('4x6', 'wp-google-maps');
7649
- __('4x5', 'wp-google-maps');
7650
- __('6x8', 'wp-google-maps');
7651
- __('10x16', 'wp-google-maps');
7652
- __('4x10', 'wp-google-maps');
7653
- __('1x8', 'wp-google-maps');
7654
- __('6x13', 'wp-google-maps');
7655
- __('11x11', 'wp-google-maps');
7656
- __('2x12', 'wp-google-maps');
7657
- __('1x12', 'wp-google-maps');
7658
- __('16mm', 'wp-google-maps');
7659
- __('10mm', 'wp-google-maps');
7660
- __('Amber', 'wp-google-maps');
7661
- __('12mm', 'wp-google-maps');
7662
- __('19mm', 'wp-google-maps');
7663
- __('20mm', 'wp-google-maps');
7664
- __('Red', 'wp-google-maps');
7665
- __('8mm', 'wp-google-maps');
7666
- __('large_green', 'wp-google-maps');
7667
- __('large_red', 'wp-google-maps');
7668
- __('large_yellow', 'wp-google-maps');
7669
- __('large_blue', 'wp-google-maps');
7670
- __('C9EA35', 'wp-google-maps');
7671
- __('MD', 'wp-google-maps');
7672
- __('B0B0B0', 'wp-google-maps');
7673
- __('MN', 'wp-google-maps');
7674
- __('MT', 'wp-google-maps');
7675
- __('ND', 'wp-google-maps');
7676
- __('HI', 'wp-google-maps');
7677
- __('ID', 'wp-google-maps');
7678
- __('CE9892', 'wp-google-maps');
7679
- __('WA', 'wp-google-maps');
7680
- __('AZ', 'wp-google-maps');
7681
- __('CA', 'wp-google-maps');
7682
- __('CO', 'wp-google-maps');
7683
- __('NV', 'wp-google-maps');
7684
- __('NM', 'wp-google-maps');
7685
- __('OR', 'wp-google-maps');
7686
- __('WY', 'wp-google-maps');
7687
- __('94441F', 'wp-google-maps');
7688
- __('AR', 'wp-google-maps');
7689
- __('D5A070', 'wp-google-maps');
7690
- __('IA', 'wp-google-maps');
7691
- __('KS', 'wp-google-maps');
7692
- __('MO', 'wp-google-maps');
7693
- __('NE', 'wp-google-maps');
7694
- __('OK', 'wp-google-maps');
7695
- __('SD', 'wp-google-maps');
7696
- __('LA', 'wp-google-maps');
7697
- __('TX', 'wp-google-maps');
7698
- __('E07209', 'wp-google-maps');
7699
- __('CT', 'wp-google-maps');
7700
- __('MA', 'wp-google-maps');
7701
- __('NH', 'wp-google-maps');
7702
- __('RI', 'wp-google-maps');
7703
- __('VT', 'wp-google-maps');
7704
- __('AL', 'wp-google-maps');
7705
- __('63164F', 'wp-google-maps');
7706
- __('FL', 'wp-google-maps');
7707
- __('AC3127', 'wp-google-maps');
7708
- __('GA', 'wp-google-maps');
7709
- __('MS', 'wp-google-maps');
7710
- __('SC', 'wp-google-maps');
7711
- __('IL', 'wp-google-maps');
7712
- __('IN', 'wp-google-maps');
7713
- __('298E2E', 'wp-google-maps');
7714
- __('KY', 'wp-google-maps');
7715
- __('NC', 'wp-google-maps');
7716
- __('OH', 'wp-google-maps');
7717
- __('TN', 'wp-google-maps');
7718
- __('WI', 'wp-google-maps');
7719
- __('WV', 'wp-google-maps');
7720
- __('DE', 'wp-google-maps');
7721
- __('NJ', 'wp-google-maps');
7722
- __('NY', 'wp-google-maps');
7723
- __('PA', 'wp-google-maps');
7724
- __('ME', 'wp-google-maps');
7725
- __('MI', 'wp-google-maps');
7726
- __('AK', 'wp-google-maps');
7727
- __('VA', 'wp-google-maps');
7728
- __('DC', 'wp-google-maps');
7729
- __('UT', 'wp-google-maps');
7730
- __('66FF00', 'wp-google-maps');
7731
- __('57FF78', 'wp-google-maps');
7732
- __('Perth WA to Brisbane QLD', 'wp-google-maps');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -220,6 +220,10 @@ Please upgrade your version of WP Google Maps to version 6.0.27 as it includes m
220
 
221
  == Changelog ==
222
 
 
 
 
 
223
  = 8.0.13 :- 2020-01-07 :- Low priority =
224
  * Tested up to WordPress 5.3.2
225
  * Relaxed "invalid route" check in RestAPI to allow external JSON to be used
@@ -1427,6 +1431,9 @@ For more, please view the WP Google Maps site
1427
 
1428
 
1429
 
 
 
 
1430
 
1431
 
1432
 
220
 
221
  == Changelog ==
222
 
223
+ = 8.0.14 :- 2020-01-13 :- Medium priority =
224
+ * Added Gesture Handling (Ctrl + Zoom and Two-finger pan) for OpenLayers
225
+ * "No Google Maps API key entered" message will no longer obscure map for new users
226
+
227
  = 8.0.13 :- 2020-01-07 :- Low priority =
228
  * Tested up to WordPress 5.3.2
229
  * Relaxed "invalid route" check in RestAPI to allow external JSON to be used
1431
 
1432
 
1433
 
1434
+
1435
+
1436
+
1437
 
1438
 
1439
 
wpGoogleMaps.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Google Maps
4
  Plugin URI: https://www.wpgmaps.com
5
  Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
6
- Version: 8.0.13
7
  Author: WP Google Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
@@ -11,6 +11,10 @@ Domain Path: /languages
11
  */
12
 
13
  /*
 
 
 
 
14
  * 8.0.13 :- 2020-01-07 :- Low priority
15
  * Tested up to WordPress 5.3.2
16
  * Relaxed "invalid route" check in RestAPI to allow external JSON to be used
3
  Plugin Name: WP Google Maps
4
  Plugin URI: https://www.wpgmaps.com
5
  Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
6
+ Version: 8.0.14
7
  Author: WP Google Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
11
  */
12
 
13
  /*
14
+ * 8.0.14 :- 2020-01-13 :- Medium priority
15
+ * Added Gesture Handling (Ctrl + Zoom and Two-finger pan) for OpenLayers
16
+ * "No Google Maps API key entered" message will no longer obscure map for new users
17
+ *
18
  * 8.0.13 :- 2020-01-07 :- Low priority
19
  * Tested up to WordPress 5.3.2
20
  * Relaxed "invalid route" check in RestAPI to allow external JSON to be used