forked from CodeCabin/wp-google-maps
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1294 lines (1291 loc) · 59.6 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Legacy change logs are archived here, to ensure the primary readme and PHP files remain minimal and clean
Last Edit: 2022-05-30 (All version before 8.1.0)
Logs are archived in their PHP format (comments)
/*
* 8.0.31 - 2020-12-22 - Medium priority
* Added PHP 8 compatibility notice. PHP 8 is not currently supported, and the plugin will be disabled to prevent fatal errors in these cases. Support will be added soon
*
* 8.0.30 - 2020-12-17 - Medium priority
* Adds DOMElement support for PHP 8
* Fixed GDPR message showing multiple times on some installations
* Fixed issue with undefined variables in polygon creator panel
* Fixed an issue with hiding POI locations in Google Maps Engine
*
* 8.0.29 - 2020-12-10 - High priority
* Tested up to WordPress 5.6
* Added support for jQuery 3
*
* 8.0.28 - 2020-11-26 - Low priority
* Tested the plugin with WP5.6 RC1 - All seems in order
* Modified the Google Places Autocomplete functionality to reduce the amount of API calls originating from basic users
*
* 8.0.27 - 2020-10-15 - Medium priority
* Changes have been made to limit the amount of API calls we process for users using our API key (for new users). For more information please see https://www.wpgmaps.com/documentation/autocomplete-disabled/
*
* 8.0.26 - 2020-08-25 - High priority
* Tested up to WordPress 5.5
* Patched a vulnerability, thank you WP.org for identifying it!
* Fixed a bug that stopped markers from being deleted on some WP installations (thank you Gary Boulter!)
* Fixed a bug where editing a marker would cause a JS error in some instances
*
* 8.0.25 :- 2020-06-12 :- Medium priority
* Tested up to WordPress 5.4.2
* Fixed Google Autocomplete not working due to failed check in minified code
*
* 8.0.24 :- 2020-06-10 :- Medium priority
* Added fallback for datatables when language file cannot be loaded
* Plugin now loads unminified version of text.js due to IE issues with minified version
* Notice is issued for users using expired Cloud API keys
* Fixed __isset returning false for ID on Crud class
* Fixed notice in Gutenberg module when passing array shortcode attributes
*
* 8.0.23 :- 2020-05-07 :- Medium priority
* Added experimental integrity check class (currently unused)
* Added links to settings tabs in "No API key" message
* Tested up to WordPress 5.4.1
* Fixed IIS failing under certain conditions (+ now URL encoded for IIS servers in compressed path variables)
* Fixed lowercase finnish.json filename breaking DataTables on Finnish installations
*
* 8.0.22 :- 2020-04-07 :- Medium priority
* Added tooltip to OpenLayer markers
* Removed calls to wpgmza_enqueue_fontawesome (deprecated)
* Added constants WPGMZA_PLUGIN_DIR_PATH and WPGMZA_PLUGIN_DIR_URL
* Corrected typo in class.map.php (scoreLocator)
* Added imageFolderURL to WPGMZA
* Corrected paths in legacy circle and rectangle PHP files
* Corrected Autoptimize typo
* Debug OpenLayers no longer bundled or supported
* Fixed "google is undefined" for users who had disabled legacy Pro, switched to OpenLayers and re-enabled legacy Pro
*
* 8.0.21 :- 2020-03-19 :- Medium priority
* Developer Mode is now inaccessible
* Tested up to WordPress 5.4
* Removed experimental lnglat column
* Fixed 404 preventing circle and rectangle add/edit pages from working
* Fixed Cannot use 'in' operator to search for 'x' in undefined when pressing enter on OpenLayers modern style store locator
* Fixed ol.Sphere is not a constructor preventing OpenLayers store locator w/legacy radius from working correctly
* Fixed issues with map not displaying when no engine set (solves issues with Pro 6 map loading)
*
* 8.0.20 :- 2020-03-06 :- Medium priority
* Re-factored store locator into new class
* Removed hard coded zoom level when editing marker
* Improved OpenLayers gesture handling UX to prevent browser zooming when Ctrl is pressed over map viewport when the gesture notice is visible
* WPGMZA.Distance.between now accepts latlng literals
* Updated bundled OpenLayers library to 6.2.1
* Fixed old marker not removed after editing location
* Fixed OpenLayers longitude not wrapping properly causing markers to disappear when moving outside -180 to +180
* Fixed UI style setting not changing
*
* 8.0.19 :- 2020-02-12 :- Medium priority
* Fixed issue with modern store locator and large number of sub-categories
* Made zoom limit controls live
* Changed UI style dropdown to radio buttons and added descriptions
* All PO files rescanned to allow translation of new strings
* esc_html__ and esc_html_e added to PO keywords
* PO files now use relative paths
* Fixed escaping issues in PO files
*
* 8.0.18 :- 2020-02-06 :- Medium priority
* Added center on marker button to the marker listing in the backend to center on marker location
* UX improvements to the map listing page
* UX improvements to the map editor page
* Fixed a bug with the "move marker location" feature
* Added sanitization calls to the move marker location feature
* Removed ol-debug.js and ol.js.map (reduced plugin size)
*
* 8.0.17 :- 2020-02-03 :- Medium priority
* Google Maps API now loaded from maps.googleapis.com, including for Simplified Chinese locale
* Database installer now uses WordPress' character set and collation, rather than the databases default
* Fixed JavaScript error preventing OpenLayers InfoWindow from opening correctly
*
* 8.0.16 :- 2020-01-30 :- Medium priority
* Added functionality to customize DataTables language strings in non-english locales
* Adjusted approval button permission callback to allow button access for the selected user access level
* Added error message popup for when Geocoding library is not enabled on map edit page
* Removed width limit on about text and legacy badge from Welcome Page
* Fixed greedy gesture handling not respected by OpenLayers
* Temporarily removed two finger panning for OpenLayers due to inconsistent behaviour across touch devices
* Fixed notice on welcome page
*
* 8.0.15 :- 2020-01-21 :- Medium priority
* Added functionality to re-enable interactions in backend
* Added disabled_interactions_notice, interactions_enabled_notice, disabled_interactions_button to our strings file
* Re-branded logo and banner
* Renamed "Disable Two-Finger Pan" to "Greedy Gesture Handling"
* Updated screenshots on welcome page
* Updated Google Maps API instructional video link
* Added new banner to map edit page
*
* 8.0.14 :- 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
*
* 8.0.13 :- 2020-01-07 :- Low priority
* Tested up to WordPress 5.3.2
* Relaxed "invalid route" check in RestAPI to allow external JSON to be used
* Database no longer specifies InnoDB as database engine, enabling support for MyISAM
* Database no longer specifies UTF-8 as character set for tables, the default for the database will be used
*
* 8.0.12 :- 2020-01-02 :- Medium priority
* New event on window - ready.wpgmza. This fires when all modules are ready, but maps haven't started loading
* WPGMZA.LatLng.fromString is now static
* Removed console logging on theme panel when theme data is invalid
* WPGMZA.EventDispatcher can now unbind all event listeners with off / removeEventListener
* Fixed incompatibility with GTranslate due to no check for google.maps in MYMAP.init
* Fixed OpenLayers geocoder trying to geocode coordinates resulting in markers added by coordinates moving
* Fixed redirection loop after entering Google Maps API key into prompt on map edit page
* Fixed "Cannot read property 'markerFilter' of undefined" in modern-store-locator.js
* Fixed OpenLayers HTML marker in wrong position after refreshing and switching tabs during load
* Fixed infowindowclose.wpgmza being dispatched from the map, rather than the infowindow
* Fixed OpenLayers polyline not displayed
*
* 8.0.11 :- 2019-12-11 :- Medium priority
* Added WPGMZA.LatLngBounds.prototype.toLiteral
* Rest API now removes trailing = on compressed path variable requests as certain security suites and servers would block this as Forbidden
* Increased map_title to 256 characters, fixes imports not working on files with long filenames
* Fixed user roles below admin cannot save map settings by correcting permissions check
* Fixed modern store locator always showing alert
* Fixed modern store locator "not found" alert blank
* Fixed experimental vector source layer markers firing multiple click events when their icons overlap
*
* 8.0.10 :- 2019-11-26 :- Medium priority
* Added animated panning effect for OpenLayers infowindows, including a dynamic offset to make infowindows fully visible on click
* Removed var_dump from wp-google-maps-polylines.php
* Restricted include/exclude Maps API on page inputs to comma separated integers
* Changed default map alignment to "None"
* Dropped legacy store locator marker and circle code, module now controls this fully
* Fixed array shorthand parse error in PHP < 5.4
* Fixed getCurrentPosition only calling the supplied error callback function on the first failure
* Fixed autocomplete not initialising when global settings have not been saved
* Fixed shapes not being added when global settings have never been saved
* Fixed Store Locator setting "show bouncing icon" not working
* Fixed trashing a map redirects user to map edit page for the trashed map
* Fixed store locator circles too small when using miles as distance units
* Fixed store locator not found message not showing
*
* 8.0.9 :- 2019-11-12 :- Medium priority
* Updated Dutch translations
* Changed Humanitarian tileserver URL to https://
* Added workaround for syntax error in class.marker.php on PHP versions 5.5 and below
* Fixed "No API key" error showing until the page is refreshed after entering API key in notice
* Fixed getCurrentPosition is not a function on setups which don't have this function on the navigator
* Fixed issue with OpenLayers circle fill color
*
* 8.0.8 :- 2019-11-04 :- Medium priority
* Fixed AJAX fallback routes not registered for GET only REST routes
* Fixed some REST API routes 404ing with plain permalinks when route URL + is replaced with space
* Fixed ?skip_cache=1 breaking plain permalink REST URLs by detecting when query variables are in use
*
* 8.0.7 :- 2019-10-25 :- Medium priority
* Tested up to WordPress 5.3
* Localized all remote images
* Separated all inline JavaScript and PHP
* Removed developer documentation
* Removed redundant files
* Removed legacy bundled jQuery
*
* 8.0.6 :- 2019-10-22 :- Low priority
* Legacy UI style InfoWindow text width fix now only applies to Google Maps engine
* Google API script loader now adds data-usercentrics attribute
* InfoWindow now tracks open / closed state in this.state
* InfoWindow no longer dispatches infowindowclose.wpgmza event if already closed
*
* 8.0.5 :- 2019-10-17 :- Medium priority
* Fixed additional "undefined" infowindow appearing when using XML cache
* Fixed XML cache not regenerated when POSTing to marker endpoint
*
* 8.0.4 :- 2019-10-15 :- Medium priority
* Now tested up to WordPress 5.2.4
* Added REST endpoints for counting and removing duplicate markers
* Safeguards added to switch back to DB pull if execution time limit or memory limit is reached during XML cache generation
* Theme parser will now attempt to strip slashes before abandoning parsing
*
* 8.0.3 :- 2019-10-13 :- Medium priority
* Added workaround for Enfold theme issue with Safari preventing map from loading
* Relaxed CRUD class to issue warning when ID is passed in with field data instead creating a new object
* Fixed edit marker button not working on map edit page
*
* 8.0.2 :- 2019-10-10 :- Medium priority
* Fixed file not found on settings page when using OpenLayers engine
* Fixed translation strings not being applied
* Fixed dragging a marker also pans map when using OpenLayers
*
* 8.0.1 :- 2019-10-08 :- Medium priority
* Fixed Warning: unserialize() expects parameter 1 to be string, array given
* Fixed restructured code preventing marker delete and approve buttons from working
* Fixed markers not being removed from map panel following deletion
*
* 8.0.0 :- 2019-10-07 :- Medium priority
* New theme panel and theme editor
* New User Interface Style setting and variety of UI styles added
* Several user experience improvements
* Significant performance improvements and optimizations
* Significantly enhanced REST API
*
* 7.11.53 :- 2019-10-03 :- Low priority
* Fixed "All" missing from datatables page size dropdown
* Fixed bundled translations only loaded on backend since 7.11.45
* Added polyfill for slice on Uint8Array, fixing issues with compressed path variables and IE
* Added no-op JS to wpgmza_data.js
* Added isFilterable property to Marker
* Removed .gitattributes from production build
*
* 7.11.52 :- 2019-09-24 :- Medium priority
* Added Astra theme compatibilty module, fixes InfoWindows not opening with Astra theme
* Added fallback for older versions of WordPress where wp_doing_ajax is not present, fixes fatal error on WordPress < 4.7
*
* 7.11.51 :- 2019-09-19 :- Medium Priority
* Fixed Modern Store Locator Radius causing Safari (mobile) to reload page
*
* 7.11.50 :- 2019-09-13 :- Medium priority
* Fixed markers not visible in Internet Explorer when using OpenLayers (append is not a method)
*
* 7.11.49 :- 2019-09-10 :- Medium priority
* Added warning when "Do not enqueue datatables" is selected, but dataTables library is not loaded
* Added comment to wpgmza_data.js to fix issues with empty files and Safari
* Altered "zero-results" message to "No results found for this address"
* Fixed skipNonceCheck flag being ignored when Live Tracking App is used
*
* 7.11.48 :- 2019-08-28 :- Low priority
* Fixed polygons and polylines not displaying back end before global settings have been saved
* Increased link column to accept 2083 characters
*
* 7.11.47 :- 2019-08-09 :- Medium priority
* Fixed map engine dialog submission not working
* Fixed WPGMZA.EventDispatcher not handing some native events over to DOM correctly
*
* 7.11.46 :- 2019-08-08 :- Medium priority
* Fixed conflict with WooCommerce effecting checkout page on installations with debug notices turned on
* Fixed WPGMZA.getQueryParamValue matching location hash on last parameter
*
* 7.11.45 :- 2019-08-07 :- Medium priority
* Added ABSPATH checks to .html.php files, class.settings.php and backwards_compat_v6.php
* Fixed add shape buttons disabled for Google when global settings have never been saved
* Fixed permissions issues when attempting to save global settings (HTTP error 401)
* Fixed permissions issues preventing users without manage_options capability from logging in
*
* 7.11.44 :- 2019-08-01 :- Low priority
* Added REST API parameter skipNonceCheck for Live Tracking App
* Fixed map type settings not "live" in map edit page
* Fixed map type setting not reflected when map edit page initialises
*
* 7.11.43 :- 2019-07-31 :- Low priority
* RestAPI now exposes registerRoute as a public function for add-ons to register REST API routes
* New action wpgmza_register_rest_api_routes added
*
* 7.11.42 :- 2019-07-30 :- Medium priority
* Added checks for ABSPATH to all PHP modules
* Added a console warning when Array prototype has been improperly extended, which breaks for ... in loops
* Improved parameter sanitization
* Dropped deprecated usage tracking function
* Dropped unused GoogleGeocoder class
* Dropped old admin head function, added update notice for users running Pro < 5.24
* Fixed AJAX REST API POST calls always failing nonce security check
*
* 7.11.41 :- 2019-07-29 :- Medium priority
* Fixed store locator not working in OpenLayers since 7.11.40 due to missing nonce
*
* 7.11.40 :- 2019-07-29 :- Medium priority
* REST API security enhanced with additional per-route nonces
* getScrollAnimationOffset now accounts for WP admin bar height
* removeMarker now closes marker InfoWindow before removing it
* Fixed notice on map edit page on setups with E_NOTICE error display
* Fixed markers not removed from map panel following bulk delete
* Fixed GoogleHTMLOverlay is not a constructor when WPGMZA.settings.engine is null
*
* 7.11.39 :- 2019-07-25 :- Medium priority
* Added code to update OpenLayers marker position following icon loading
* Fixed marker being off-position before user interaction on certain setups
* Fixed dataTables translations not working
* Fixed fatal error on map pages when GDPR notice filter returns an empty string
* Fixed category icon not respected in map panel when running Pro <= 6.*
*
* 7.11.38 :- 2019-07-22 :- Low priority
* Removed advisory REST AJAX notice due to false positives
*
* 7.11.37 :- 2019-07-16 :- Low priority
* Fixed polyline color control not "live" on polygon edit page
*
* 7.11.36 :- 2019-07-11 :- Low priority
* Re-added admin-ajax fallback for when REST API is blocked
* Fixed Polyline color issue
*
* 7.11.35 :- 2019-07-08 :- High priority
* Security vulnerabilities fixed (Thank you Plugin Review Team at WordPress.org and pluginvulnerabilities.com)
*
* 7.11.34 :- 2019-07-07 :- Medium priority
* Fixed DataTable sort order unpredictable with mixture of numeric and non-numeric data
* Rolled back admin-ajax changes pending review
*
* 7.11.33 :- 2019-07-02 :- Low priority
* Added admin-ajax fallback for when REST API is blocked
* Fixed characters such as accents showing as plain text HTML entities in DOMElement
* Fixed object must implement countable notice on QueryFragment
* Regenerated temporary API key
* Removed unreachable code
*
* 7.11.32 :- 2019-06-21 :- Low priority
* Added mechanism to report 403 Forbidden on REST API, this is usually caused by security plugins blocking REST requests for non-logged in users
*
* 7.11.31 :- 2019-06-18 :- Low priority
* Added checkbox to disable Autoptimize workaround for setups where the workaround prevents CSS aggregation
* DataTable module now uses RestAPI module to make AJAX requests
* Fixed "Permalink Manager Lite" breaking admin marker table when POST requests are used
* Fixed welcome screen not working
*
* 7.11.30 :- 2019-06-12 :- Medium priority
* Added /decompress REST API endpoint for debugging compressed path variable requests
* Added integration with WP REST Cache by Acato
* Added Elias Fano encoding modules for efficient transmission of marker ID's on compressed path variable requests
* REST API module now no longer loads the entire WP REST API client side library
* Moved clearInterval on Google infowindow to before event is triggered, the event will no longer fire repeatedly if any attached listeners cause an error
* Fixed bulk delete not working
* Removed performance intensive regex checks on template_redirect. Short code flag is now set by short code callbacks
* Fixed notice in legacy-core.php when no map ID present on shortcode
* Fixed cannot use scalar value as array when localizing legacy current map ID global
* Fixed issues with older versions of Pro add-on and admin marker table
*
* 7.11.29 :- 2019-06-06 :- Low priority
* Added support for compressed path variables on REST API module (experimental)
*
* 7.11.28 :- 2019-06-03 :- Medium priority
* Added nonce to settings form on admin post action
* Fixed errors on PHP installations where documentElement is not a property on DOMDocument
*
* 7.11.27 :- 2019-05-29 :- Medium priority
* Added keypress listener for enter on store locator for configurations which don't emit keydown
* Changed (experimental) compressed REST datatables GET request to use a cachable path variable rather than query string
* Fixed classes that subclass WPGMZA.AdvancedTableDataTable not having "Show X items" setting applied in Pro
* Fixed missing spatial function prefixes in WPGMZA\MarkerFilter::applyRadiusClause, now works with MySQL 8.*
* Fixed "no results found" not showing when new MarkerFilter returns zero results
* DataTables AJAX route no longer issues notice when used without a HTTP_REFERER
*
* 7.11.26 - 2019-05-22 :- Medium Priority
* Tested with WordPress 5.2.1
* REST API only passes map ID to child classes of MarkerListing and AdvancedTable
* Fixed admin marker table not loading due to the above
*
* 7.11.25 - 2019-05-21 :- Low priority
* Added CSS max width fix to override themes breaking OpenLayers markers
* Added WPGMZA.Text and WPGMZA.GoogleText modules
* Added experimental setting WPGMZA.settings.useCompressedDataTablesRequests
* Developer mode and SCRIPT_DEBUG will now enqueue OpenLayers unminified
* WPGMZA.LatLngBounds can now take an instance of WPGMZA.LatLngBounds in constructor arguments
* Renamed deletePolygon, deletePolyline to removePolygon, removePolyline etc. on WPGMZA.Map
* wpgmaps_check_shortcode no longer sets short_code_active to false
* Fixed links not clickable in Pro InfoWindows
* Fixed issue with WPGMZA.LatLngBounds around 180th meridian
* Fixed various typos
* Fixed error where _gdprCompliance on Plugin class would be empty for Gutenberg integration
*
* 7.11.24 :- 2019-05-20 :- Medium priority
* Store Locator module no longer triggers a filter update when the address was not found
*
* 7.21.23
* Tested with WordPress 5.2
* Added more robust error handling for missing files and failed initialisations (when NOT in developer mode)
* Fixed LatLngBounds issue with 180th meridian
* Fixed "undefined" in map edit page infowindows
*
* 7.11.22 :- 2019-05-08 :- Low priority
* Added the ability to toggle auto night mode as well as a theme
* Added a min height to backend map so that it does not break when height is set to 100%
* Added shift-click range selection to admin marker table
* Added code to automatically regenerate readme.txt changelog
* Fixed ModernStoreLocator creating OpenLayers store locator when engine setting is null and defaulting to Google
* Fixed beforeunload listener always bound on map edit page (fixed Save Changes? prompt shown even if no changes were made)
* Dropped logging in ScriptLoader module
*
* 7.11.21 :- 2019-04-16 :- Low priority
* Added serializeFormData to DOMDocument and DOMElement
* Added new event for InfoWindows - domready.wpgmza
* Added new function WPGMZA.extend for shorthand extension of modules
* Added warning when WPGMZA.RestAPI.call is called (as opposed to WPGMZA.restAPI.call)
* Implemented factory method for map settings page JS module
* Changed RestAPI to not throw an error when a call is aborted
* Changed DB version checks to use global version string (this module is currently not used)
* Fixed missing comma in DB installation code preventing marker table from being created (this module is currently not used)
*
* 7.11.20 :- 2019-04-09 :- Low priority
* Added Mexican Spanish (es_MX) translations
* Added revert back to DB pull when XML folder not present
* Updated PO files from sources
* Fixed rectangles not working when using v6 of Pro
*
* 7.11.19 :- 2019-04-02 :- Low priority
* Readme.txt Upgrade Notice updated
* Fixed markers sometimes off position when using OpenLayers
*
* 7.11.18 :- 2019-04-02 :- High priority
* Fixed potential REST API exploit (affects 7.11.00 - 7.11.17 - with thanks to Thomas Chauchefoin)
*
* 7.11.17 :- 2019-04-02 :- Low priority
* Added shortcode attribute classname
* Fixed Custom CSS classes in Gutenberg editor not being applied
*
* 7.11.16 :- 2019-03-28 :- Low priority
* Added Catalan translation files
* Added hide POI logic to WPGMZA.GoogleMap
* Added new global setting WPGMZA.settings.hide_points_of_interest
*
* 7.11.15 :- 2019-03-25 :- Medium priority
* Added caching warning to GDPR Compliance settings panel
* Added check for wp.components in Gutenberg module
* Renamed Croation translations to correct -hr.* suffix
* Fixed incorrect logic causing unapproved markers to appear in Pro marker listings
* Relaxed "combined file would be blank" from exception to an admin notice when in the WordPress environment
*
* 7.11.14 :- 2019-03-14 :- Low priority
* Added convenience function WPGMZA.getQueryParamValue
* Most PHP now uses isInDeveloperMode() rather than referencing the setting directly
* Fixed setting developer mode cookie would set developer mode in database
*
* 7.11.13 :- 2019-03-11 :- Low priority
* Fixed adding "select" function to Array prototype colliding with "select" event listener for markers
* Fixed sorting direction not respected in AjaxTable following 7.11.11 changes
*
* 7.11.12 :- 2019-03-08 :- Low priority
* Removed debugging code from class.query.php
* Fixed mismatched setting name for Store Locator distance units causing "miles" to be ignored
*
* 7.11.11 :- 2019-03-07 :- Low priority
* Allowed LatLngBounds to wrap around 180th meridian, Gold now clusters correctly on wide or zoomed out maps
* Altered AjaxTable to treat text fields containing numeric data as numeric, giving more natural sort order on those fields
* Fixed wildcard not being used when no fields passed to Query
* Fixed notices and inconsistencies with Elementor integration
*
* 7.11.10 :- 2019-03-05 :- Low priority
* Changed Google Maps API error handler to render in a panel rather than in a modal dialog
* Removed "In light of recent GDPR regulation" admin notice
* Fixed clicking listen item outside link has no effect on map edit page tabs
*
* 7.11.09 :- 2019-02-28 :- Medium priority
* Added disableInfoWindow to map objects which is used by InfoWindow.prototype.open
* Added LatLng.fromCurrentPosition
* Added warning and explanation when Google Maps is selected but API loader is not allowed to load the API
* Non-standard jQuery versions now issue console warning rather than cancelling map initialisation
* Map element now fires infowindow close event
* Fixed infowindow close event firing after infowindow element removed
*
* 7.11.08 :- 2019-02-25 :- Medium priority
* Google Maps API error dialog is now shown when in developer mode
* Fixed missing link on "No API Keys" message in Google Maps API error dialog
* Fixed "undefined" InfoWindow opening
* Removed 100px minimum width from InfoWindows
*
* 7.11.07 :- 2019-02-22 :- Medium priority
* Added Distance class
* Added property storeLocatorDistanceUnits to WPGMZA\Map
* Fixed Spatial function prefix not applied for version 8 due to wrong operator
* Fixed MarkerFilter radius clause ignoring store locator distance units setting
* Removed console.log call in GoogleMarker setVisible
*
* 7.11.06 :- 2019-02-20 :- Low priority
* WPGMZA.RestAPI.prototype.call now returns xhr
* Improved modern store locator UX by switching reset button back to search button when text is inputted into address field
* Fixed "disable double click zoom" logic flipped
* Fixed undefined notice in AjaxTable breaking carousel marker listing in Pro when display_errors is true
* Fixed bulk delete not working due to removed legacy function
*
* 7.11.05 :- 2019-02-15 :- Medium priority
* Improved WP Migrate DB integration by adding our plugin to their whitelist when WP Migrate DB is activated
* Re-added data-wpgmza-datatable-options attribute to datatables
* Fixed encoding issues in marker listing caused by UTF-8 to HTML entities conversion not being used
*
* 7.11.04 :- 2019-02-13 :- Medium priority
* Added extra functions to LatLngBounds to support upcoming Gold patch (extendByPixelMargin, contains)
* Added Caltopo to tile servers
* Added Latvian translation
* Shortcode attributes are now passed to map element through data-shortcode-attributes
* DataTables loads unminified in developer mode
* DataTables no longer enqueued twice on map edit page
* DataTables translation re-applied following new AJAX implementation
* Changed wrong text domains in translation functions in tile-server-fieldset.html.php
*
* 7.11.03 :- 2019-02-06 :- Low priority
* DataTables issue no longer present when running Developer Mode
* Fixed "display all" breaking admin marker table
* Fixed "Map Type" not being applied
*
* 7.11.02 :- 2019-01-31 :- High priority
* Added override method to Settings module so settings are overridable without altering database
* Fixed fatal error in legacy-core.php when running older versions of Pro without Custom Fields
*
* 7.11.01 :- 2019-01-30 :- Medium priority
* Fixed undefined notice in AjaxTable when using Pro marker listings
* Fixed legacy Google error message breaking Gutenberg editor when no key is present
* Fixed legacy compatibility issue with Global Settings module
*
* 7.11.00 :- 2019-01-30 :- Medium priority
* Added new GlobalSettings module
* Optimized marker tables and listings giving significant performance boost when viewing marker listings, editing, adding and deleting markers
* Nominatim Cache now records country restriction
* Improved robusticity of data-settings attribute handling
* Added WPGMZA.LatLng.prototype.toLatLngLiteral
* Added check for jQuery slider in wpgmaps_tabs.js
* Added check for WordPress REST API and notices where that is not present
* Removed 5,000 marker live edit limit following performance optimizations
* Deprecated redundant WPGMZA_SETTINGS option
* Moved all code from main PHP file to legacy-core.php
* Checks for namespace, DOMDocument and WP REST API added in main file, a warning is issued if these are missing rather than a fatal error
* Fixed undefined index wpgmza_settings_marker_pull on new installations
* Fixed country restriction broken in OpenLayers
* Fixed interaction controls (disable pan, double click zoom and mousewheel) ignored in OpenLayers due to wrong scope
* Fixed zoom limits not respected in OpenLayers
* Fixed zoom limits incorrectly interpreted by Google
* Fixed "minZoom cannot exceed maxZoom" breaking Google maps when settings are reversed
* Fixed country restriction not respected by OpenLayers
*
* 7.10.58 :- 2019-01-18 :- Low priority
* Added code to catch Geocoding Service errors in GoogleAPIErrorHandler
* Fixed wrong database prefix in wpgmaps_return_markers when running on a multisite installation
*
* 7.10.57
* Corrected year in 7.10.56 changelog
*
* 7.10.56 :- 2019-01-09 :- Medium Priority
* Added function WPGMZA.Distance.between
* Removed code to disable TLS verification in WPGMZA\GoogleGeocoder
*
* 7.10.55 :- 2018-12-27 :- Medium priority
* Changed GoogleMap fitBounds to accept a WPGMZA.LatLngBounds
* Changed OLMap fitBounds to accept a WPGMZA.LatLngBounds
* Fixed WPGMZA.LatLngBounds setting individual coordinates to LatLngs
* Fixed WPGMZA.GoogleMap.fitBounds not working with native LatLngBounds
*
* 7.10.54 :- 2018-12-20 :- Medium priority
* Fixed default OpenLayers tiles being fetched over relative URL
*
* 7.10.53 :- 2018-12-17 :- Medium priority
* Added missing file /html/tile-server-fieldset.html.php
*
* 7.10.52 :- 2018-12-14 :- Low priority
* Fixed undefined errors when running Elementor
* Fixed "Cannot read property 'wpgmza_iw_type' of undefined" preventing infowindow opening
* Fixed missing spatial prefix on Marker::update_latlng
* Added class wpgmza-gdpr-compliance to GDPR compliance notice parent div
* Dynamic content removed from translation strings, printf now used instead
*
* 7.10.51 :- 2018-12-11 :- Low priority
* Added tile server URL setting for OpenLayers
* Fixed Google vertex context menu preventing OpenLayers engine loading in developer mode
* Fixed Gutenberg integration module always loading scripts on front end
*
* 7.10.50 :- 2018-12-10 :- Low priority
* Added blank alt attribute to OpenLayers marker img element
* Updated WP version supported to 5.0
*
* 7.10.49 :- 2018-12-05 :- Low priority
* Improved Gutenberg integration (new buttons added)
*
* 7.10.48 :- 2018-12-03 :- Low priority
* Added a check for wp.editor in Gutenberg JS module
* Fixed InfoWindow not initialized before open called when using marker open by default setting
* Fixed WPGMZA.OLMap returning zoom one level too far in (fixes map zooms in one level on save)
*
* 7.10.47 :- 2018-11-22 :- Low priority
* Removed all redundant calls to getPlace
* Places AutoCompletes now only request the "name" and "formatted_address" fields
* Changed "Create an API key now" link
*
* 7.10.46 :- 2018-11-20 :- Medium priority
* Fixed store locator circle and radius not displayed when no markers are present
* Fixed browser compatibility code causing Gutenberg dependency failure
* Google API version is now fixed at "Quarterly" (solves RetiredVersion notice)
* Unified store locator circle and radius logic for both XML and DB marker pull
* All PHP classes and methods now have documentation blocks
* Server side documentation added in /docs/php
* Client side documentation added in /docs/js
*
* 7.10.45 :- 2018-11-12 :- Medium priority
* Fixed places autocomplete not initializing with modern store locator
* Fixed conflict with Autoptimize with large amounts of data by bypassing CSS optimization where shortcode is present
* Enter key now triggers search on modern store locator
*
* 7.10.44 :- 2018-11-05 :- Medium priority
* Fixed Modern Store Locator Circle not working when Google Maps geometry library not loaded
* Fixed legacy-map-edit-page.js not enqueued when Gold add-on activated (with Pro >= 7.10.30)
* Fixed store locator circle color settings not respected in OpenLayers
* Improved unresolved dependency report, now reports requirements
*
* 7.10.43 :- 2018-10-31 :- High priority
* Improved previous security fix
*
* 7.10.42 :- 2018-10-25 :- High priority
* Closed potential XSS vulnerability in PHP_SELF on map edit page
*
* 7.10.41 :- 2018-10-24 :- Medium priority
* Changed exception to notice when v8 dependencies are missing (fixes issue with Pro < 7.10.37 in developer mode)
*
* 7.10.40 :- 2018-10-17 :- Medium priority
* Added temporary fix for Gutenberg module dependencies preventing wpgmaps.js from loading when in Developer Mode
* Fixed Infowindow not opening on touch device when using "hover" action
*
* 7.10.39 :- 2018-10-15 :- High priority
* Fixed JS error when Gutenberg framework not loaded
*
* 7.10.38 :- Medium priority
* Gutenberg integration
* Added factory class
* Added DIVI compatibility fix
* Added new table name constants
* Adjusted script loader to support external dependencies
* Fixed trailing slash breaking rest API routes on some setups
* Fixed wpgmza_basic_get_admin_path causing URL wrapper not supported
*
* 7.10.37 :- 2018-09-27 :- Medium priority
* Fixed undefined variable on iOS breaking store locator
* Fixed edit marker using REST API not working when API route has two slashes
* Fixed map not appearing with particular versions of dataTables where the packaged version is not used
*
* 7.10.36 :- 2018-09-25 :- Medium Priority
* Fixed change in 7.10.35 causing problems with OLMarker click event, preventing infowindow opening
* Dropped .gitignore which was causing deployment issues, now using .gitattributes to ignore minified files
*
* 7.10.35 :- 2018-09-20 :- Medium priority
* Added links to new API troubleshooting documentation to Google Maps API Error dialog
* Fixed marker dispatching click event after drag when using OpenLayers
* Fixed map dispatching click event after drag when using OpenLayers
* Fixed map editor right click marker appearing multiple times
* Fixed map editor right click marker disappearing after map drag
* Fixed modern store locator circle crashing some iOS devices by disabling this feature on iOS devices
* Fixed gesture handling setting not respected when theme data is set in
*
* 7.10.34 :- 2018-09-17 :- Low priority
* Added descriptive error messages when Google API is required but not loaded
* Added "I agree" translation to German files
* Added getPluginScripts to Scriptloader module
* jQuery 3.x document ready compatibility
* Changed wpgmza_google_api_status to be passed via wp_localize_script to prevent redirection issues in some circumstances
* Prevented UGM e-mail address being transmitted in WPGMZA_localized_data
* Removed redundant locationSelect dropdown
*
* 7.10.33 :- 2018-09-05 :- Medium priority
* Fixed OpenLayers InfoWindow not opening
*
* 7.10.32 :- 2018-08-31 :- Medium priority
* Fixed redundant setting wpgmza_gdpr_enabled causing "user consent not given" to be flagged erroneously
*
* 7.10.31 :- 2018-08-30 :- Medium priority
* Fixed NaN zoom level causing Google Maps to hang
*
* 7.10.30 :- 2018-08-29 :- Medium priority
* Fixed "Access to undeclared static property" on some PHP versions
* Fixed google-maps-api-error-dialog.html.php does not exist
*
* 7.10.29
* Improved return_polygon_array function making edit polygon page more robust
*
* 7.10.28 :- 2018-08-20 :- Low priority
* Fixed engine being switched to OpenLayers following saving settings on a fresh install
* Added CSS fix for recent Google UI changes for MacOS / iOS + Safari
*
* 7.10.27 :- 2018-08-17 :- Low priority
* Added wpgmza_xml_cache_generated filter
* Added wpgmza_xml_cache_saved action
* Improved return_polyline_array function making edit polyline page more robust
* Fixed Google API loading before consent given when "Require consent before load" checked
*
* 7.10.27 :- 2018-08-17 :- Low priority
* Added wpgmza_xml_cache_generated filter
* Added wpgmza_xml_cache_saved action
* Improved return_polyline_array function making edit polyline page more robust
* Fixed Google API loading before consent given when "Require consent before load" checked
*
* 7.10.26 :- 2018-08-15 :- Low priority
* Improved Google API error handling back end, module issues more comprehensive alerts
* GoogleAPIErrorHandler moved to /js/v8/google-api-error-handler.js
* Added CSS fix for recent Google UI changes (Buttons in triplicate)
*
* 7.10.25 :- 2018-08-10 :- Low priority
* Fixed "Undefined variable" notice
*
* 7.10.24 :- 2018-07-31 :- Low Priority
* Added regex callback for class autoloader for installations where token_get_all is not available
* Added spatial function prefix to spatial data migration function
* Added lat and lng properties to GoogleGeocoder result (for Pro 5 & UGM compatibility)
* Altered Map module to deserialize other_settings and merge into the map settings object
* Altered parent:: to \Exception:: in CSS selector parser
* Fixed version detection for MySQL 8
*
* 7.10.23 :- 2018-07-23 :- Low priority
* Fixed REST API endpoint URL incorrect for installations in subfolders
* Fixed WPGMZA\Parent not found
* Added PHP version requirement 5.3 to readme.txt
*
* 7.10.22 :- 2018-07-18 :- Medium priority
* Added filter wpgmza_localized_strings
* Added beginnings for REST API
* Added scroll animation when edit marker is clicked
* Fixed UTF-8 characters not being decoded into PHPs native charset before passing them to loadHTML in GDPR compliance module
* Fixed edit marker button not re-enabled following unsuccessful geocode
*
* 7.10.21 :- 2018-07-09 :- Medium priority
* Added MySQL version check and dropped ST_ function prefixes for versions < 8.0
* Fixed markers not appearing front end and back end marker table empty for servers running old MySQL versions
*
* 7.10.20 :- 2018-07-05 :- Low priority
* Added hook for new GDPR tab content
* Added JavaScript for VGM GDPR controls
* Fixed WPGMZA\DOMDocument::saveInnerBody not saving text nodes
*
* 7.10.19 - 2018-07-05 :- Medium Priority
* Added new event "userlocationfound" dispatched from WPGMZA.events
* Added fall back to convert UTF-8 to HTML entities on installations without multibyte functions available
* Changed GDPR settings UI, removed redundant compliance setting, added default notice
* Fixed media="1" attribute not validating
* Fixed nominatim geocoder not giving expected response to callback
* Fixed ScriptLoader module always enqueuing FontAwesome 4.*
* Fixed debug code breaking WP Migrate DB integration
* Fixed custom fields blank in marker listing
* Replaced deprecated MySQL functions with ST_ functions
* Replaced deprecated jQuery(window).load functions
* Removed Google autocomplete when using OpenLayers
* Removed protocol from marker icons / fixed marker icons disappear after switching to https://
*
* 7.10.18 - 2018-07-02 :- Medium Priority
* Fixed GDPR back end warning appearing when GDPR compliance is enabled
*
* 7.10.17 - 2018-06-29 :- Medium Priority
* Fixed country restriction broken in store locator
* Added dismissable admin GDPR warning when GDPR compliance has been switched off
* Fixed GDPR settings blank by default on some installations
*
* 7.10.16 - 2018-06-21 :- Medium priority
* Fixed global settings lost
* Fixed whitespace matched in version variable
*
* 7.10.15 - 2018-06-14 :- Medium priority
* Fixed GDPR consent notice bypassed when "prevent other plugins and theme enqueueing maps API" is not set
*
* 7.10.14 - 2018-06-14 :- Medium priority
* Fixed incompatibilities with UGM
*
* 7.10.13 - 2018-06-13 :- Low priority
* Fixed can't save Modern Store Locator
* Fixed store locator reset not working
* Fixed disabling map controls not working
* Fixed store locator radio button
*
* 7.10.12 - 2018-06-12 :- Low priority
* Handed FontAwesome loading over to ScriptLoader module
* Deprecated global function wpgmza_enqueue_fontawesome
* Fixed circles and rectangles only working on map ID 1
*
* 7.10.11 - 2018-06-08 :- Low priority
* Fixed JS error when passing non-string value to document.write
* Temporary workaround for "Unexpected token % in JSON"
* API consent no longer required on back-end
*
* 7.10.10 - 2018-06-01 :- Medium Priority
* Adding setting "Prevent other plugins and theme loading API"
*
* 7.10.09 - 2018-06-01 :- Medium Priority
* Fixed unterminated comment warning
* Fixed map edit page creating Google places autocomplete when engine is set to OpenLayers
* Fixed icon not draggable in edit marker location page
*
* 7.10.08 - 2018-05-31 :- Medium Priority
* Fixed cannot edit marker in Basic only
*
* 7.10.07 - 2018-05-31 :- Medium Priority
* Fixed issue where map engine was different on back end
*
* 7.10.06 - 2018-05-31 :- Medium Priority
* Added "require consent before API load" to GDPR settings
*
* 7.10.05 - 2018-05-30 :- Low Priority
* Fixed Using $this when not in object context when using older PHP version
* Fixed google sometimes not defined when selected engine is OpenLayers
* Fixed can't edit GDPR fields
*
* 7.10.04 - 2018-05-30 :- Medium Priority
* Fixed geocode response coordinates not interpreted properly
* Italian translation updated
*
* 7.10.03 - 2018-05-30 :- High Priority
* Fixed InfoWindow not opening when max width set in
* Fixed $this not in context inside closure when using older PHP versions
* Fixed Gold add-on clustering settings blank
* Altered map engine selection dialog
*
* 7.10.02 - 2018-05-29
* Engine defaults to Google Maps
*
* 7.10.01 - 2018-05-29 :- Medium Prority
* Fixed undefined index notice in GDPR module
*
* 7.10.00 - 2018-05-29 :- Medium Priority
* Added new Javascript modules
* Added new PHP modules
* Class AutoLoading implemented
* OpenLayers / OpenStreetMap integration
* Fixed Edit Marker Position not working with Pro 6.*
* Fixed some strings not being translated in German
* JS Minification
* Added "Developer mode"
*
* 7.0.05
* Added GoogleMapsAPILoader module which now controls Google Maps API enqueueing and relevant settings
* Added integration with WP Migrate DB to handle spatial types
* Added support for shortcodes in marker description
* Bug fixes
*
* 7.0.04 - 2018-05-07
* Fixed PHP notice regarding store locator default radius
*
* 7.0.03 - 2018-04-20
* Improved spatial data migration function to be more robust
* Fixed undefined index use_fontawesome
*
* 7.0.02 - 2018-04-15
* Added option to select FontAwesome version
* Fixed bug with circle data array
*
* 7.0.01 - 2018-04-11
* Switched to WebFont / CSS FontAwesome 5 for compatibility reasons
* Fixed JS error in for ... in loop when adding methods to Array prototype
* Fixed FontAwesome CSS being enqueued as script
* Added functionality to fit map to bounds when editing shapes
*
* 7.0.00 - 2018-04-04
* Added arbitrary radii control to Maps -> Settings -> Store Locator
* Added modern store locator look and feel
* Added modern store locator radius
* Added custom JS field in Maps -> Settings -> Advanced
* Added spatial types to marker table
* Added Google API Error handler and alert
* Added code to display custom fields in infowindow when Pro is installed
* Fresh install "My First Map" defaults to modern store locator and radius
* Relaxed theme data parsing
* Disabled Street View, zoom controls, pan controls and map type controls on fresh installs
*
* 6.4.08 - 2018-01-14 - Medium priority
* Update Google Maps API versions to include 3.30 and 3.31
* On first installation, users are now taken to the welcome page
* Updated contributors
* Updated credits page
* Fixed broken support links
* Got things ready for the new Version 7 that is on its way
*
* 6.4.07 - 2018-01-08 - Low priority
* Added a deactivation survey to gain insight before moving to Version 7
* Tested on WP 4.9.1
*
* 6.4.06 - 2017-09-07 - Medium Priority
* Bug Fix: Zoom level is not respected when saving
*
* 6.4.05 - 2017-06-13 - Medium priority
* Fixed the bug that caused JS errors to show up in the map editor
* Fixed a bug that caused the XML File option (for markers) to cause issues when trying to add a marker in the backend
* Allowed users to hide the subscribe feature in the plugins page
* New feature: Bulk delete markers
* Autocomplete now works when adding markers
* Autocomplete now works for the store locator on the front end
* Fixed a bug that caused the map to not load in the map editor for new installations
*
* 6.4.04 - 2017-06-08 - Low priority
* Tested on WordPress 4.8
* Refactored the admin JS code
*
* 6.4.03 - 2017-02-17 - Low priority
* Added the ability for affiliates to make use of their affiliate IDs in the pro links
* Added better SSL support
* Added shortcode support for XML marker files
*
* 6.4.02 - 2017-01-20 - Low priority
* Removed an echo that was incorrectly placed
*
* 6.4.01 - 2017-01-20 - Low priority
* Added the ability for users to subscribe to our mailing list
*
* 6.4.00 - 2017-01-11 - Low priority
* Documented all PHP functions
* Added an option to set default store locator address
* Full screen map functionality added
* Fixed a bug that caused custom css to be incorrectly escaped
* Fixed the bug that caused the "save marker" button to not revert when an address couldnt be geocoded
* Added caching notices to notify users to clear their cache when a marker is added or edited or when map settings were changed
* Estonian translation added
* Fixed the incorrect locale setting with the Google Maps API
* Fixed a bug that caused the admin style sheet to load on all admin pages
* Added the ability to change the gesture input
* Fixed a bug that caused PHP warnings when a polygon or polyline had no polydata
* Fixed a bug that caused non-utf8 characters within an address to cause the insertion of the marker to fail
*
* 6.3.20 - 2016-09-27
* Fixed a big that prevented the map from loading in a widget
* Refactored code used to load the Google Maps API and Script files
*
* 6.3.19 - 2016-09-21
* Fixed a bug that caused some maps to not load markers on page load
*
* 6.3.18 - 2016-09-15
* Chinese support - when your language is set to Chinese (ZN_cn), the map will now load from maps.google.cn
* Hebrew language code fixed when accessing the Google Maps API in Hebrew
* Added support for the KML layer to be visible when adding/editing polygons or polylines
* Fixed a bug with the store locator not using miles when selected
* Moved up to versions 3.25 and 3.26 of the Google Maps JavaScript API
* Datatables updated
* When a marker is deleted, the view does not reset
* User javascript has been ported over to a JavaScript file
* A minimifed and unminified version of the user-side JS file is now included - The minifed version is used by default
* You can now set the zoom level via the shortcode. Example: [wpgmza id='1' zoom=8]
* Fixed a PHP warning on the error log page
*
* 6.3.17 - 2016-08-07 - Medium priority
* Added a temporary Google Maps JavaScript API key for users so that the UX is not negatively affected on the user's first attempt at using the plugin.
* Added a check to the front end to only display the map if there is an Google Maps JavaScript API key saved
* Fixed bugs that caused PHP warnings within the store locator
* UX improvements to the welcome page
* Fixed a bug that caused a JS error as a result of the previous versions new tab support
*
* 6.3.16 - 2016-08-02 - Low priority
* API key is now used on the edit polyline page
* Removed the resizing script that caused the map to flicker on mobile devices
* Added additional tab support (tri-tabs-nav span)
* Fixed a bug in the store locator country restriction list
*
* 6.3.15 - 2016-07-31 - High priority
* Security patches
* Code refactoring
*
* 6.3.14 - 2016-07-13 - High priority
* Many security patches - thank you Gerard Arall
* Bug fix - trim whitespace before and api the Google Maps API key
* Additional tab support added
* Corrected PHP noticess
*
* 6.3.13 - 2016-07-05 - Medium priority
* Revised Maps API Dequeue Script Added
* Remove Style dequeue script as this was causing UI conflicts
* Added option to disable Maps API from being loaded on front end
*
* 6.3.12 - 2016-06-27 - Medium priority
* Modified the API key notification to make it simpler and more intuitive
*
* 6.3.11 - 2016-06-24 - Medium Priority
* Small activation bug fixed
* all polygons and polylines are now viewable when editing or creating a new polygon or polyline
* Notifications of Google Maps API key requirements
*
* 6.3.10 - 2016-05-03 - Low priority
* Added event listeners for both jQuery and accordions so that the map can init correctly when placed in a tab or accordion
* Added checks to stop themes and plugins from loading the Google Maps API over and above our call to the API on pages that contain the map shortcode
* Fixed an SSL issue with the marker URL (Thank you David Clough)
* Fixed a bug that caused the CSS file to be loaded on all front end pages
* Added SSL support to the jQuery CDN file
*
* 6.3.09 - 2016-04-15 - High priority
* Deprecated google maps api 3.14 and 3.15, added 3.23 and 3.24
*
* 6.3.08 - 2016-04-14 - Medium Priority
* Provides a workaround for users experiencing issues with their maps loading after updating to WordPress 4.5
*
* 6.3.07 - 2016-04-13 - Low Priority
* Tested on WordPress 4.5
* You can now use your own Google Maps API key for your maps
*
* 6.3.06 - 2016-04-04 - Low Priority
* Indonesian Translation added - Thank you Neno
* Swedish Translation added - Thank you Martin Sleipner
* Bulgarian Translation added - Thank you Lyubomir Kolev
* Google Maps API sensor removed from API call
*
* 6.3.05 - 2016-01-14 - Low priority
* Multiple tab compatibility added
*