Version Description
- Added: Helper bar
Download this release
Release Info
Developer | webdorado |
Plugin | WD Google Maps – Google Maps builder Plugin |
Version | 1.0.38 |
Comparing to | |
See all releases |
Code changes from version 1.0.37 to 1.0.38
- admin/views/GMWDViewMaps_gmwd.php +2 -9
- admin/views/GMWDViewOptions_gmwd.php +1 -4
- css/admin_main.css +26 -11
- framework/functions.php +37 -11
- gmwd_admin_class.php +4 -1
- images/i_support.png +0 -0
- readme.txt +29 -20
- wd-google-maps.php +1 -1
- wd/README.md +1 -1
- wd/includes/deactivate.php +1 -1
- wd/templates/display_overview_support.php +1 -1
admin/views/GMWDViewMaps_gmwd.php
CHANGED
@@ -31,10 +31,7 @@ class GMWDViewMaps_gmwd extends GMWDView{
|
|
31 |
?>
|
32 |
|
33 |
<div class="gmwd">
|
34 |
-
|
35 |
-
<?php _e(" This section allows you to create, edit and delete maps.","gmwd");?>
|
36 |
-
<a style="color: #00A0D2; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-google-maps/creating-map.html"><?php _e("Read More in User Manual.","gmwd");?></a>
|
37 |
-
</div>
|
38 |
<form method="post" action="" id="adminForm">
|
39 |
<?php wp_nonce_field('nonce_gmwd', 'nonce_gmwd'); ?>
|
40 |
<!-- header -->
|
@@ -185,11 +182,7 @@ class GMWDViewMaps_gmwd extends GMWDView{
|
|
185 |
<div class="gmwd_opacity_div">
|
186 |
<div class="gmwd_opacity_div_loading"><img src="<?php echo GMWD_URL."/images/loading.gif";?>"></div>
|
187 |
</div>
|
188 |
-
<div class="gmwd_edit">
|
189 |
-
<div style="font-size: 14px; font-weight: bold;">
|
190 |
-
<?php _e(" This section allows you to add/edit map.","gmwd");?>
|
191 |
-
<a style="color: #00A0D2; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-google-maps/creating-map.html"><?php _e("Read More in User Manual.","gmwd");?></a>
|
192 |
-
</div>
|
193 |
<h2>
|
194 |
<img src="<?php echo GMWD_URL . '/images/icon-map.png';?>" width="30" style="vertical-align:middle;">
|
195 |
<span>
|
31 |
?>
|
32 |
|
33 |
<div class="gmwd">
|
34 |
+
|
|
|
|
|
|
|
35 |
<form method="post" action="" id="adminForm">
|
36 |
<?php wp_nonce_field('nonce_gmwd', 'nonce_gmwd'); ?>
|
37 |
<!-- header -->
|
182 |
<div class="gmwd_opacity_div">
|
183 |
<div class="gmwd_opacity_div_loading"><img src="<?php echo GMWD_URL."/images/loading.gif";?>"></div>
|
184 |
</div>
|
185 |
+
<div class="gmwd_edit">
|
|
|
|
|
|
|
|
|
186 |
<h2>
|
187 |
<img src="<?php echo GMWD_URL . '/images/icon-map.png';?>" width="30" style="vertical-align:middle;">
|
188 |
<span>
|
admin/views/GMWDViewOptions_gmwd.php
CHANGED
@@ -23,10 +23,7 @@ class GMWDViewOptions_gmwd extends GMWDView{
|
|
23 |
$lists = $this->model->get_lists();
|
24 |
?>
|
25 |
<div class="gmwd_edit">
|
26 |
-
|
27 |
-
<?php _e("This section allows you to change general options.","gmwd");?>
|
28 |
-
<a style="color: #00A0D2; text-decoration: none;" target="_blank" href="https://web-dorado.com/wordpress-google-maps/installation-wizard-options-menu.html"><?php _e("Read More in User Manual.","gmwd");?></a>
|
29 |
-
</div>
|
30 |
<h2>
|
31 |
<img src="<?php echo GMWD_URL . '/images/general_options.png';?>" width="30" style="vertical-align:middle;">
|
32 |
<span><?php _e("General Options","gmwd");?></span>
|
23 |
$lists = $this->model->get_lists();
|
24 |
?>
|
25 |
<div class="gmwd_edit">
|
26 |
+
|
|
|
|
|
|
|
27 |
<h2>
|
28 |
<img src="<?php echo GMWD_URL . '/images/general_options.png';?>" width="30" style="vertical-align:middle;">
|
29 |
<span><?php _e("General Options","gmwd");?></span>
|
css/admin_main.css
CHANGED
@@ -29,23 +29,38 @@ h1, h2, h3, h4{
|
|
29 |
}
|
30 |
.gmwd_upgrade{
|
31 |
clear: both;
|
32 |
-
padding: 15px
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
38 |
}
|
|
|
39 |
.gmwd_upgrade .wd-cell:first-child{
|
40 |
-
padding-right:
|
41 |
-
text-transform: uppercase;
|
42 |
-
color: #236592;
|
43 |
-
font-weight: bold;
|
44 |
-
font-size: 11px;
|
45 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
.gmwd_upgrade a, .gmwd_upgrade a:hover {
|
47 |
text-decoration: none !important;
|
48 |
}
|
|
|
|
|
49 |
.gmwd_pro_option{
|
50 |
color:#dd3d36 ;
|
51 |
}
|
29 |
}
|
30 |
.gmwd_upgrade{
|
31 |
clear: both;
|
32 |
+
padding: 15px;
|
33 |
+
background: #fff;
|
34 |
+
margin: 6px 15px;
|
35 |
+
color: #6e7990;
|
36 |
+
font-size: 14px;
|
37 |
+
font-weight: bold;
|
38 |
+
line-height: 30px;
|
39 |
}
|
40 |
+
|
41 |
.gmwd_upgrade .wd-cell:first-child{
|
42 |
+
padding-right: 14px;
|
|
|
|
|
|
|
|
|
43 |
}
|
44 |
+
.gmwd_upgrade .wd-cell:first-child img{
|
45 |
+
vertical-align:middle;
|
46 |
+
}
|
47 |
+
.gmwd_upgrade .wd-cell:first-child a{
|
48 |
+
color: #72777c !important;
|
49 |
+
}
|
50 |
+
.gmwd_upgrade .wd-cell:last-child{
|
51 |
+
background: #45A6B7;
|
52 |
+
}
|
53 |
+
.gmwd_upgrade .wd-cell:last-child a{
|
54 |
+
color: #fff !important;
|
55 |
+
padding: 18px;
|
56 |
+
}
|
57 |
+
|
58 |
+
|
59 |
.gmwd_upgrade a, .gmwd_upgrade a:hover {
|
60 |
text-decoration: none !important;
|
61 |
}
|
62 |
+
|
63 |
+
|
64 |
.gmwd_pro_option{
|
65 |
color:#dd3d36 ;
|
66 |
}
|
framework/functions.php
CHANGED
@@ -19,20 +19,46 @@ function gmwd_get_option($option_name){
|
|
19 |
return false;
|
20 |
}
|
21 |
function upgrade_pro($text = false){
|
|
|
22 |
?>
|
23 |
<div class="gmwd_upgrade wd-clear" >
|
24 |
-
<div class="wd-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
29 |
</div>
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
</div>
|
37 |
</div>
|
38 |
<?php if($text){
|
19 |
return false;
|
20 |
}
|
21 |
function upgrade_pro($text = false){
|
22 |
+
$page = isset($_GET["page"]) ? $_GET["page"] : "";
|
23 |
?>
|
24 |
<div class="gmwd_upgrade wd-clear" >
|
25 |
+
<div class="wd-left">
|
26 |
+
<?php
|
27 |
+
switch($page){
|
28 |
+
case "maps_gmwd":
|
29 |
+
?>
|
30 |
+
<div style="font-size: 14px;">
|
31 |
+
<?php _e(" This section allows you to create, edit and delete maps.","gmwd");?>
|
32 |
+
<a style="color: #5CAEBD; text-decoration: none;border-bottom: 1px dotted;" target="_blank" href="https://web-dorado.com/wordpress-google-maps/creating-map.html"><?php _e("Read More in User Manual.","gmwd");?></a>
|
33 |
</div>
|
34 |
+
<?php
|
35 |
+
break;
|
36 |
+
case "options_gmwd":
|
37 |
+
?>
|
38 |
+
<div style="font-size: 14px;">
|
39 |
+
<?php _e("This section allows you to change general options.","gmwd");?>
|
40 |
+
<a style="color: #5CAEBD; text-decoration: none;border-bottom: 1px dotted;" target="_blank" href="https://web-dorado.com/wordpress-google-maps/installation-wizard-options-menu.html"><?php _e("Read More in User Manual.","gmwd");?></a>
|
41 |
+
</div>
|
42 |
+
<?php
|
43 |
+
break;
|
44 |
+
}
|
45 |
+
?>
|
46 |
+
</div>
|
47 |
+
<div class="wd-right">
|
48 |
+
<div class="wd-table">
|
49 |
+
<div class="wd-cell wd-cell-valign-middle">
|
50 |
+
<a href="https://wordpress.org/support/plugin/wd-google-maps" target="_blank">
|
51 |
+
<img src="<?php echo GMWD_URL; ?>/images/i_support.png" >
|
52 |
+
<?php _e("Support Forum", "gmwd"); ?>
|
53 |
+
</a>
|
54 |
+
</div>
|
55 |
+
<div class="wd-cell wd-cell-valign-middle">
|
56 |
+
<a href="https://web-dorado.com/products/wordpress-google-maps-plugin.html" target="_blank">
|
57 |
+
<?php _e("UPGRADE TO PAID VERSION", "gmwd"); ?>
|
58 |
+
</a>
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
|
62 |
</div>
|
63 |
</div>
|
64 |
<?php if($text){
|
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 |
////////////////////////////////////////////////////////////////////////////////////////
|
@@ -107,6 +107,9 @@ class GMWDAdmin{
|
|
107 |
if (get_option('gmwd_do_activation_set_up_redirect')) {
|
108 |
update_option('gmwd_do_activation_set_up_redirect',0);
|
109 |
//wp_safe_redirect( admin_url( 'index.php?page=gmwd_setup' ) );
|
|
|
|
|
|
|
110 |
wp_safe_redirect( admin_url( 'index.php?page=gmwd_subscribe' ) );
|
111 |
exit;
|
112 |
}
|
11 |
// Variables //
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
protected static $instance = null;
|
14 |
+
private static $version = '1.0.38';
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
// Constructor & Destructor //
|
17 |
////////////////////////////////////////////////////////////////////////////////////////
|
107 |
if (get_option('gmwd_do_activation_set_up_redirect')) {
|
108 |
update_option('gmwd_do_activation_set_up_redirect',0);
|
109 |
//wp_safe_redirect( admin_url( 'index.php?page=gmwd_setup' ) );
|
110 |
+
if(get_option( "gmwd_subscribe_done" ) == 1){
|
111 |
+
return;
|
112 |
+
}
|
113 |
wp_safe_redirect( admin_url( 'index.php?page=gmwd_subscribe' ) );
|
114 |
exit;
|
115 |
}
|
images/i_support.png
ADDED
Binary file
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Google Maps WD – Google Maps builder Plugin ===
|
2 |
Contributors: webdorado, wdsupport
|
3 |
Donate link: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
4 |
-
Tags: google map,
|
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 |
|
@@ -24,11 +24,14 @@ https://www.youtube.com/watch?v=acaexefeP7o
|
|
24 |
[GMWD Marker Clustering Add-on](https://web-dorado.com/products/wordpress-google-maps-plugin/add-ons/marker-clustering.html)
|
25 |
|
26 |
|
27 |
-
Google Maps WD is a user-friendly, responsive
|
28 |
|
29 |
-
|
30 |
|
31 |
-
|
|
|
|
|
|
|
32 |
|
33 |
###IMPORTANT:
|
34 |
If you think you found a bug in Google Maps WD or have any problem/question concerning this plugin, please check out [Support Forum](https://web-dorado.com/forum/wordpress-google-maps-wd.html) in our website. If you do not find a solution here, do not hesitate to [click here to contact us](https://web-dorado.com/support/contact-us.html).
|
@@ -42,29 +45,30 @@ If you think you found a bug in Google Maps WD or have any problem/question conc
|
|
42 |
* Instant live previews of changes you make in the working area on the Google Maps WD back end
|
43 |
* Unlimited maps for posts and pages
|
44 |
* Support for different Google maps styles: road, traffic, satellite, terrain and hybrid
|
45 |
-
* Unlimited number of markers per map, possibility to add markers filling out address or alternatively right clicking on the map
|
46 |
* Drag and drop feature for markers, custom animation support
|
47 |
* Polygon layer, which allows to add multi-edge shape overlay over selected area of the map with markers
|
48 |
-
* Polyline layer, which allows to add mark certain area on the map with line overlay without covering marked area with fill color
|
49 |
-
* Full support of controls of the Google map, such as zoom control, map type control, scale control, street view control, fullscreen and
|
50 |
-
* Google Maps standard Bicycle, traffic and transit layers
|
51 |
-
* Store locator for allowing map users to find nearest stores with provided radius overlay
|
52 |
* User geolocation
|
53 |
|
54 |
Upgrade to [Google Maps Pro](https://web-dorado.com/products/wordpress-google-maps-plugin.html) to get access to:
|
55 |
|
56 |
* Customizable Google maps skins
|
57 |
* Possibility to add new Google Maps themes/customize existing themes based on detailed styles and colors section
|
58 |
-
* Get directions feature for allowing users to get detailed directions for moving from point A to point B using one of the modes (Walking, Driving, Bicycling and Transit)
|
59 |
* Circle and Rectangle layers over the map
|
60 |
* Multi-level marker categories: created marker category can serve as a parent for newly-created marker
|
61 |
* Custom Marker icon builder (100+ marker icons + option to add your own icons)
|
62 |
-
* Custom icon, description, images and link support for the markers
|
63 |
* Marker, Circle, Rectangle, Polygon, Polyline Export/Import option from one map to another
|
64 |
* Marker listing ( Basic listing, Advanced Listing and Carousel view) for easier access of categorized markers
|
65 |
* Marker listing display within the map as a map legend
|
66 |
* Advanced layer support (layers based on GeoRSS, KML URLs, Fusion Table Id)
|
67 |
|
|
|
68 |
= Google Maps WD Demos =
|
69 |
[Basic Google Maps](http://wpdemo.web-dorado.com/google-maps/)
|
70 |
[Google Maps Directions ](http://wpdemo.web-dorado.com/directions/)
|
@@ -113,6 +117,9 @@ After downloading the ZIP file of the Google Maps WD plugin,
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
116 |
= 1.0.37 =
|
117 |
* Fixed: Minor bugs
|
118 |
|
@@ -314,13 +321,15 @@ Zoom Level. Google Maps has an integer 'zoom level' which is the resolution of t
|
|
314 |
Wheel Scrolling. Allow zooming in and out for Google Maps using mouse scroll or not.
|
315 |
Map Draggable. Allow using mouse for dragging Google maps up/down or not.
|
316 |
|
317 |
-
Afterwards you can go on to your first map creation using Google Maps plugin.
|
|
|
|
|
318 |
|
319 |
= Settings =
|
320 |
You need to configure settings of the map in advance to moving to the rest of Google Maps WD plugin sections.
|
321 |
|
322 |
General
|
323 |
-
Map type. Choose
|
324 |
Roadmap displays 2D road map. This is default map type for Google Map.
|
325 |
Satellite displays Google Earth satellite images.
|
326 |
Hybrid displays mixture of roadmap and satellite views- photographic map with roads and city name indication.
|
@@ -349,9 +358,9 @@ Rotate Control feature is only available with Google Maps Satellite mode, when y
|
|
349 |
|
350 |
Layers
|
351 |
|
352 |
-
Enable Bicycle Layer.
|
353 |
-
Enable Traffic Layer. Real-time traffic information of the route will be highlighted on map as a layer. The timing is based on the actual request time. In cases if traffic layer is not available with that certain area on Google Maps, the
|
354 |
-
Enable Transit Layer. Transit routes will be highlighted on the map.This will display the public transit network of the city. The information will be displayed with thick lines. The list of the supported cities can be found at official developers site of Google Maps.
|
355 |
GeoRSS URL. Providing the URL to created Geographically encoded objects of RSS (http://www.georss.org/) feed you can add RSS-feed based layers on your Google Maps.
|
356 |
KML URL. KML is a file format created on the basis of Google Earth. It might contain rich data, such as trails/locations, images and tips related to the locations, etc. After creating the file you can provide the URL here.
|
357 |
Fusion Table Id. You can create your own Google Fusion table and provide its ID here. Fusion tables is overall an application used for sharing, visualizing, and publishing tabular data.
|
@@ -366,7 +375,7 @@ Direction Window Position. Choose the position of the directions window from pos
|
|
366 |
|
367 |
Store Locator
|
368 |
|
369 |
-
Store locator will add a circular overlay over the Google maps with filled centre and radius. Than you can see the markers which are located within this circle:
|
370 |
Enable Store Locator. Choose whether to have store locator feature enabled for the Google maps or not.
|
371 |
Window Width. Choose fixed size for the store locator window in pixels either percentage of content area.
|
372 |
Window Position. Chose the Store location window position relative to Google maps.
|
@@ -403,7 +412,7 @@ Markers are used for indicating specific location on Google maps. The icon of th
|
|
403 |
Note that all changes made here will be previewed on small Google maps sample on the right side of the screen.
|
404 |
Title. You can provide a title for the marker. The title will be included in Information window of the marker.
|
405 |
Link URL. You can link Google Maps Marker to any URL, so that when site visitor hits the marker they will be redirected to mentioned URL. The link will be opened in a new window.
|
406 |
-
Address. There are three ways of adding the marker location- providing address, filling in longitude and latitude or right-clicking on the location on the map.
|
407 |
Description. Description of the marker will be displayed alongside its title within Information window of the Google Maps.
|
408 |
Marker Description Image. The marker information window can also contain an image. Here you can upload the images to be used.
|
409 |
Category. Here you can specify the marker category. More about marker categories can be found at Marker Category section.
|
@@ -571,4 +580,4 @@ To Insert Google Maps into a Page or Post you should open the post/page from Adm
|
|
571 |
Here select the Map and press Insert button:
|
572 |
Alternatively you can copy the shortcode available in Google Maps WD>Maps section. Go your Post/Page. Change the content box from Visual to Text tab and add the Google Map code here.
|
573 |
If you want to add Google map to custom area on your site please instead use php shortcode. Copy and paste it to .php file, where you plan to include the map.
|
574 |
-
For adding Google Maps as a widget go to Appearance>Widgets. Here find Google Maps WD and assign it to a custom position. After that set up Google Maps settings, choose the Google Map to add and press Save button. This way Google Maps will be added to selected area.
|
1 |
=== Google Maps WD – Google Maps builder Plugin ===
|
2 |
Contributors: webdorado, wdsupport
|
3 |
Donate link: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
4 |
+
Tags: google map, google maps, map, map markers, maps, directions, google map plugin, google maps plugin, map plugin, map widget, wp google map, wp google maps, google map widget, google map shortcode, wp map, google maps directions, google maps builder, google places, google places api, google maps api, google places reviews, contact page map, custom google map, loaction by address, location, map direction, map styles, polygons, simple google map, gmap, google map embed, best google maps, custom google maps
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.0.38
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
24 |
[GMWD Marker Clustering Add-on](https://web-dorado.com/products/wordpress-google-maps-plugin/add-ons/marker-clustering.html)
|
25 |
|
26 |
|
27 |
+
Google Maps WD is a user-friendly, responsive WP Google maps plugin. It is very simple in use, doesn’t require any coding skills or complex customization processes and allows to easily add custom Google maps to your website. Using this simple Google map WordPress plugin you can showcase any location, display related or categorized locations with markers or showcase coverage areas with the help of layers and overlays.
|
28 |
|
29 |
+
Need to add a contact page map or any kind of custom google map to your WordPress pages or posts? With an intuitive and user friendly interface, Google Maps is an easy map plugin and one of the best google maps solutions available.
|
30 |
|
31 |
+
It solves the necessity of adding different plugins for individual Google Maps related features combining marker maps plugin, store locator plugin, location highlighting WP map plugin in a single package.
|
32 |
+
|
33 |
+
The WP google map plugin allows to add multiple map markers or placemarks, adding information, such as address, location by latitude/longitude description, links, images, get map directions and much more. If you need to display a large number of markers on your map and don't want to overload the map, you can user the market clustering add-on (commercial version). Marker Clustering will help you group close markers for more user-friendly display over the map. The gmap plugin allows you to create different map styles, display different map layers on the maps, highlight traffic/bike lanes and more.
|
34 |
+
To add Google Maps to your post/page all you need is to copy the Google map shortcode or php code from Map listing and add it to your post/page or php file. You can also add the plugin as a map widget to have Google Map embedded to a custom position.
|
35 |
|
36 |
###IMPORTANT:
|
37 |
If you think you found a bug in Google Maps WD or have any problem/question concerning this plugin, please check out [Support Forum](https://web-dorado.com/forum/wordpress-google-maps-wd.html) in our website. If you do not find a solution here, do not hesitate to [click here to contact us](https://web-dorado.com/support/contact-us.html).
|
45 |
* Instant live previews of changes you make in the working area on the Google Maps WD back end
|
46 |
* Unlimited maps for posts and pages
|
47 |
* Support for different Google maps styles: road, traffic, satellite, terrain and hybrid
|
48 |
+
* Unlimited number of markers per map (placemarks or map point), possibility to add markers filling out location by address or alternatively right clicking on the map
|
49 |
* Drag and drop feature for markers, custom animation support
|
50 |
* Polygon layer, which allows to add multi-edge shape overlay over selected area of the map with markers
|
51 |
+
* Polyline layer, which allows to add mark certain area on the map with line overlay without covering marked area with fill color
|
52 |
+
* Full support of controls of the Google map, such as zoom control, map type control, scale control, street view control, fullscreen and rotate (only available with zoomed satellite map) control
|
53 |
+
* Google Maps standard Bicycle, traffic and transit layers highlighting bike lanes and traffic lanes
|
54 |
+
* Store locator for allowing WP map users to find nearest stores with provided radius overlay * Possibility to define cycle line color, width, opacity for store locator
|
55 |
* User geolocation
|
56 |
|
57 |
Upgrade to [Google Maps Pro](https://web-dorado.com/products/wordpress-google-maps-plugin.html) to get access to:
|
58 |
|
59 |
* Customizable Google maps skins
|
60 |
* Possibility to add new Google Maps themes/customize existing themes based on detailed styles and colors section
|
61 |
+
* Get directions feature for allowing users to get detailed map directions for moving from point A to point B using one of the modes (Walking, Driving, Bicycling and Transit)
|
62 |
* Circle and Rectangle layers over the map
|
63 |
* Multi-level marker categories: created marker category can serve as a parent for newly-created marker
|
64 |
* Custom Marker icon builder (100+ marker icons + option to add your own icons)
|
65 |
+
* Custom icon, custom marker text/description, images and link support for the markers
|
66 |
* Marker, Circle, Rectangle, Polygon, Polyline Export/Import option from one map to another
|
67 |
* Marker listing ( Basic listing, Advanced Listing and Carousel view) for easier access of categorized markers
|
68 |
* Marker listing display within the map as a map legend
|
69 |
* Advanced layer support (layers based on GeoRSS, KML URLs, Fusion Table Id)
|
70 |
|
71 |
+
|
72 |
= Google Maps WD Demos =
|
73 |
[Basic Google Maps](http://wpdemo.web-dorado.com/google-maps/)
|
74 |
[Google Maps Directions ](http://wpdemo.web-dorado.com/directions/)
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 1.0.38 =
|
121 |
+
* Added: Helper bar
|
122 |
+
|
123 |
= 1.0.37 =
|
124 |
* Fixed: Minor bugs
|
125 |
|
321 |
Wheel Scrolling. Allow zooming in and out for Google Maps using mouse scroll or not.
|
322 |
Map Draggable. Allow using mouse for dragging Google maps up/down or not.
|
323 |
|
324 |
+
Afterwards you can go on to your first map creation using Google Maps plugin. Configuring Map API Key
|
325 |
+
Starting June 22, 2016 API keys are required for Google Maps API functioning. If you want to create a map API key, login to Google API Console. Start a project by clicking the Create project button if you are a new user or choose one of the existing projects if you're a returning user.
|
326 |
+
Follow the steps and fill in the form. Copy the API key and fill them in Google Maps WD > Options.
|
327 |
|
328 |
= Settings =
|
329 |
You need to configure settings of the map in advance to moving to the rest of Google Maps WD plugin sections.
|
330 |
|
331 |
General
|
332 |
+
Map type. Choose the type of WP map embedded based on available Google Maps options:
|
333 |
Roadmap displays 2D road map. This is default map type for Google Map.
|
334 |
Satellite displays Google Earth satellite images.
|
335 |
Hybrid displays mixture of roadmap and satellite views- photographic map with roads and city name indication.
|
358 |
|
359 |
Layers
|
360 |
|
361 |
+
Enable Bicycle Layer. Bike lanes will be highlighted on the map. Usually suggested routes will be highlighted as well. In cases if bicycle layer is not available with that certain area on Google Maps, the layer will be disabled.
|
362 |
+
Enable Traffic Layer. Real-time traffic information of the route will be highlighted on map as a layer. The timing is based on the actual request time. In cases if traffic layer is not available with that certain area on Google Maps, the traffic lanes will be disabled.
|
363 |
+
Enable Transit Layer. Transit routes will be highlighted on the map. This will display the public transit network of the city. The information will be displayed with thick lines. The list of the supported cities can be found at official developers site of Google Maps.
|
364 |
GeoRSS URL. Providing the URL to created Geographically encoded objects of RSS (http://www.georss.org/) feed you can add RSS-feed based layers on your Google Maps.
|
365 |
KML URL. KML is a file format created on the basis of Google Earth. It might contain rich data, such as trails/locations, images and tips related to the locations, etc. After creating the file you can provide the URL here.
|
366 |
Fusion Table Id. You can create your own Google Fusion table and provide its ID here. Fusion tables is overall an application used for sharing, visualizing, and publishing tabular data.
|
375 |
|
376 |
Store Locator
|
377 |
|
378 |
+
Store locator will add a circular overlay over the Google maps with filled centre and radius. Than you can see the markers (placemarks) which are located within this circle:
|
379 |
Enable Store Locator. Choose whether to have store locator feature enabled for the Google maps or not.
|
380 |
Window Width. Choose fixed size for the store locator window in pixels either percentage of content area.
|
381 |
Window Position. Chose the Store location window position relative to Google maps.
|
412 |
Note that all changes made here will be previewed on small Google maps sample on the right side of the screen.
|
413 |
Title. You can provide a title for the marker. The title will be included in Information window of the marker.
|
414 |
Link URL. You can link Google Maps Marker to any URL, so that when site visitor hits the marker they will be redirected to mentioned URL. The link will be opened in a new window.
|
415 |
+
Address. There are three ways of adding the marker location- providing address, filling in longitude and latitude (GPS coordinates) or right-clicking on the location on the map.
|
416 |
Description. Description of the marker will be displayed alongside its title within Information window of the Google Maps.
|
417 |
Marker Description Image. The marker information window can also contain an image. Here you can upload the images to be used.
|
418 |
Category. Here you can specify the marker category. More about marker categories can be found at Marker Category section.
|
580 |
Here select the Map and press Insert button:
|
581 |
Alternatively you can copy the shortcode available in Google Maps WD>Maps section. Go your Post/Page. Change the content box from Visual to Text tab and add the Google Map code here.
|
582 |
If you want to add Google map to custom area on your site please instead use php shortcode. Copy and paste it to .php file, where you plan to include the map.
|
583 |
+
For adding Google Maps as a widget go to Appearance>Widgets. Here find Google Maps WD and assign it to a custom position. After that set up Google Maps settings, choose the Google Map to add and press Save button. This way Google Maps will be added to selected area.
|
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.38
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
wd/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
Version: 1.0.
|
2 |
|
3 |
|
4 |
Usage:
|
1 |
+
Version: 1.0.7
|
2 |
|
3 |
|
4 |
Usage:
|
wd/includes/deactivate.php
CHANGED
@@ -108,7 +108,7 @@
|
|
108 |
|
109 |
$data["reason"] = isset($_POST[$wd_options->prefix . "_reasons"]) ? $_POST[$wd_options->prefix . "_reasons"] : "";
|
110 |
$data["site_url"] = site_url();
|
111 |
-
$data["
|
112 |
|
113 |
$data["additional_details"] = isset($_POST[$wd_options->prefix . "_additional_details"]) ? $_POST[$wd_options->prefix . "_additional_details"] : "";
|
114 |
$admin_data = wp_get_current_user();
|
108 |
|
109 |
$data["reason"] = isset($_POST[$wd_options->prefix . "_reasons"]) ? $_POST[$wd_options->prefix . "_reasons"] : "";
|
110 |
$data["site_url"] = site_url();
|
111 |
+
$data["plugin_id"] = $wd_options->wd_plugin_id;
|
112 |
|
113 |
$data["additional_details"] = isset($_POST[$wd_options->prefix . "_additional_details"]) ? $_POST[$wd_options->prefix . "_additional_details"] : "";
|
114 |
$admin_data = wp_get_current_user();
|
wd/templates/display_overview_support.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<?php echo sprintf( __("You may contact us by filling in this form or by email %s any time you need professional support or have any questions. You can also fill in the form to leave your comments or feedback.", $wd_options->prefix), "<span class='support_email'>(support@web-dorado.com)</span>") ;?>
|
4 |
</p>
|
5 |
<div class="wd-overview-site-deatils">
|
6 |
-
<h2><?php _e( "Site
|
7 |
<p>
|
8 |
<?php _e( "When contacting support, consider copying and pasting this information in your support request.", $wd_options->prefix ); ?>
|
9 |
<br>
|
3 |
<?php echo sprintf( __("You may contact us by filling in this form or by email %s any time you need professional support or have any questions. You can also fill in the form to leave your comments or feedback.", $wd_options->prefix), "<span class='support_email'>(support@web-dorado.com)</span>") ;?>
|
4 |
</p>
|
5 |
<div class="wd-overview-site-deatils">
|
6 |
+
<h2><?php _e( "Site Details", $wd_options->prefix ); ?></h2>
|
7 |
<p>
|
8 |
<?php _e( "When contacting support, consider copying and pasting this information in your support request.", $wd_options->prefix ); ?>
|
9 |
<br>
|