Version Description
- Fixed: infowindows issue
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.0.28 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.27 to 1.0.28
- gmwd_admin_class.php +1 -1
- js/init_map.js +1 -1
- js/init_map_admin.js +2 -2
- js/markers_gmwd.js +2 -1
- readme.txt +4 -1
- wd-google-maps.php +1 -1
gmwd_admin_class.php
CHANGED
|
@@ -11,7 +11,7 @@ class GMWDAdmin{
|
|
| 11 |
// Variables //
|
| 12 |
////////////////////////////////////////////////////////////////////////////////////////
|
| 13 |
protected static $instance = null;
|
| 14 |
-
private static $version = '1.0.
|
| 15 |
////////////////////////////////////////////////////////////////////////////////////////
|
| 16 |
// Constructor & Destructor //
|
| 17 |
////////////////////////////////////////////////////////////////////////////////////////
|
| 11 |
// Variables //
|
| 12 |
////////////////////////////////////////////////////////////////////////////////////////
|
| 13 |
protected static $instance = null;
|
| 14 |
+
private static $version = '1.0.28';
|
| 15 |
////////////////////////////////////////////////////////////////////////////////////////
|
| 16 |
// Constructor & Destructor //
|
| 17 |
////////////////////////////////////////////////////////////////////////////////////////
|
js/init_map.js
CHANGED
|
@@ -93,7 +93,7 @@ function gmwdSetMapMarkers(_key){
|
|
| 93 |
|
| 94 |
infoWindow = new google.maps.InfoWindow({
|
| 95 |
content: contentString,
|
| 96 |
-
disableAutoPan:
|
| 97 |
});
|
| 98 |
if(mapMarker.info_window_open == 1){
|
| 99 |
infoWindow.open(gmwdmapData["main_map" + _key], marker);
|
| 93 |
|
| 94 |
infoWindow = new google.maps.InfoWindow({
|
| 95 |
content: contentString,
|
| 96 |
+
disableAutoPan: false
|
| 97 |
});
|
| 98 |
if(mapMarker.info_window_open == 1){
|
| 99 |
infoWindow.open(gmwdmapData["main_map" + _key], marker);
|
js/init_map_admin.js
CHANGED
|
@@ -27,7 +27,7 @@ function gmwdInitMainMap(el, excludeOverlays){
|
|
| 27 |
minZoom: minZoom,
|
| 28 |
scrollwheel: mapWhellScrolling,
|
| 29 |
draggable: mapDragable,
|
| 30 |
-
|
| 31 |
zoomControl: enableZoomControl,
|
| 32 |
mapTypeControl: enableMapTypeControl,
|
| 33 |
scaleControl: enableScaleControl,
|
|
@@ -136,7 +136,7 @@ function gmwdSetMapMarkers(){
|
|
| 136 |
}
|
| 137 |
infoWindow = new google.maps.InfoWindow({
|
| 138 |
content: contentString,
|
| 139 |
-
disableAutoPan:
|
| 140 |
});
|
| 141 |
if(mapMarker.info_window_open == 1){
|
| 142 |
infoWindow.open(map, marker);
|
| 27 |
minZoom: minZoom,
|
| 28 |
scrollwheel: mapWhellScrolling,
|
| 29 |
draggable: mapDragable,
|
| 30 |
+
disableDoubleClickZoom: mapDbClickZoom,
|
| 31 |
zoomControl: enableZoomControl,
|
| 32 |
mapTypeControl: enableMapTypeControl,
|
| 33 |
scaleControl: enableScaleControl,
|
| 136 |
}
|
| 137 |
infoWindow = new google.maps.InfoWindow({
|
| 138 |
content: contentString,
|
| 139 |
+
disableAutoPan: false
|
| 140 |
});
|
| 141 |
if(mapMarker.info_window_open == 1){
|
| 142 |
infoWindow.open(map, marker);
|
js/markers_gmwd.js
CHANGED
|
@@ -123,7 +123,8 @@ function gmwdCreateInfoWindow(){
|
|
| 123 |
}
|
| 124 |
else{
|
| 125 |
infoWindow = new google.maps.InfoWindow({
|
| 126 |
-
content: contentString
|
|
|
|
| 127 |
});
|
| 128 |
}
|
| 129 |
|
| 123 |
}
|
| 124 |
else{
|
| 125 |
infoWindow = new google.maps.InfoWindow({
|
| 126 |
+
content: contentString,
|
| 127 |
+
disableAutoPan: false
|
| 128 |
});
|
| 129 |
}
|
| 130 |
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
|
| 4 |
Tags: directions, google map, google map plugin, google maps, google maps plugin, map, map markers, map plugin, map widget, maps, wp google map, wp google maps
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.7
|
| 7 |
-
Stable tag: 1.0.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -113,6 +113,9 @@ After downloading the ZIP file of the Google Maps WD plugin,
|
|
| 113 |
|
| 114 |
== Changelog ==
|
| 115 |
|
|
|
|
|
|
|
|
|
|
| 116 |
= 1.0.27 =
|
| 117 |
* Fixed: Image max_width issue from themes
|
| 118 |
|
| 4 |
Tags: directions, google map, google map plugin, google maps, google maps plugin, map, map markers, map plugin, map widget, maps, wp google map, wp google maps
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.7
|
| 7 |
+
Stable tag: 1.0.28
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 113 |
|
| 114 |
== Changelog ==
|
| 115 |
|
| 116 |
+
= 1.0.28 =
|
| 117 |
+
* Fixed: infowindows issue
|
| 118 |
+
|
| 119 |
= 1.0.27 =
|
| 120 |
* Fixed: Image max_width issue from themes
|
| 121 |
|
wd-google-maps.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Plugin Name: Google Maps WD
|
| 5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
| 6 |
* Description: Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
| 7 |
-
* Version: 1.0.
|
| 8 |
* Author: WebDorado
|
| 9 |
* Author URI: http://web-dorado.com/
|
| 10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 4 |
* Plugin Name: Google Maps WD
|
| 5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
| 6 |
* Description: Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
| 7 |
+
* Version: 1.0.28
|
| 8 |
* Author: WebDorado
|
| 9 |
* Author URI: http://web-dorado.com/
|
| 10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
