Version Description
- Add custom map marker image with
icon
attribute - Add default custom map marker image via plugin settings page
- Remove direction to address from info window.
Download this release
Release Info
Developer | gwelser |
Plugin | Simple Google Map |
Version | 3.3 |
Comparing to | |
See all releases |
Code changes from version 3.2.2 to 3.3
- README.txt +2 -2
- includes/class-simple-google-map.php +7 -1
- simple-google-map.php +1 -1
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://clarknikdelpowell.com/pay
|
|
4 |
Tags: google, google map, google maps, simple google map, no api key
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 4.5.3
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -51,7 +51,7 @@ The shortcode name is SGM and here are the options..
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
-
= 3.
|
55 |
* Add custom map marker image with `icon` attribute
|
56 |
* Add default custom map marker image via plugin settings page
|
57 |
* Remove direction to address from info window.
|
4 |
Tags: google, google map, google maps, simple google map, no api key
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 4.5.3
|
7 |
+
Stable tag: 3.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 3.3 =
|
55 |
* Add custom map marker image with `icon` attribute
|
56 |
* Add default custom map marker image via plugin settings page
|
57 |
* Remove direction to address from info window.
|
includes/class-simple-google-map.php
CHANGED
@@ -74,6 +74,12 @@ class Simple_Google_Map {
|
|
74 |
*/
|
75 |
protected $version;
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
static $default_options = array(
|
78 |
'zoom' => '12',
|
79 |
'type' => 'ROADMAP',
|
@@ -94,7 +100,7 @@ class Simple_Google_Map {
|
|
94 |
public function __construct() {
|
95 |
|
96 |
$this->plugin_name = 'simple-google-map';
|
97 |
-
$this->version = '3.
|
98 |
|
99 |
$this->load_dependencies();
|
100 |
$this->set_locale();
|
74 |
*/
|
75 |
protected $version;
|
76 |
|
77 |
+
/**
|
78 |
+
* Default map options
|
79 |
+
*
|
80 |
+
* @since 3.3
|
81 |
+
* @var array
|
82 |
+
*/
|
83 |
static $default_options = array(
|
84 |
'zoom' => '12',
|
85 |
'type' => 'ROADMAP',
|
100 |
public function __construct() {
|
101 |
|
102 |
$this->plugin_name = 'simple-google-map';
|
103 |
+
$this->version = '3.3';
|
104 |
|
105 |
$this->load_dependencies();
|
106 |
$this->set_locale();
|
simple-google-map.php
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
* Plugin Name: Simple Google Map
|
17 |
* Plugin URI: http://clarknikdelpowell.com/wordpress/simple-google-map
|
18 |
* Description: Embed a google map using shortcode or as a widget.
|
19 |
-
* Version: 3.
|
20 |
* Author: Taylor Gorman, Glenn Welser
|
21 |
* Author URI: http://clarknikdelpowell.com
|
22 |
* License: GPL-2.0+
|
16 |
* Plugin Name: Simple Google Map
|
17 |
* Plugin URI: http://clarknikdelpowell.com/wordpress/simple-google-map
|
18 |
* Description: Embed a google map using shortcode or as a widget.
|
19 |
+
* Version: 3.3
|
20 |
* Author: Taylor Gorman, Glenn Welser
|
21 |
* Author URI: http://clarknikdelpowell.com
|
22 |
* License: GPL-2.0+
|