Version Description
Download this release
Release Info
Developer | codeinwp |
Plugin | Google Maps Plugin by Intergeo |
Version | 2.1.3 |
Comparing to | |
See all releases |
Code changes from version 2.1.2 to 2.1.3
- CHANGELOG.md +12 -4
- css/frontend.css +1 -1
- index.php +5 -5
- readme.txt +9 -7
CHANGELOG.md
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
|
|
|
|
|
|
|
2 |
-
|
|
|
|
|
|
|
3 |
-
|
|
|
|
|
|
|
4 |
-
|
5 |
|
6 |
|
7 |
|
8 |
-
Fixed issue when editing map.
|
1 |
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
|
15 |
|
16 |
|
|
css/frontend.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
* Version: 2.1.
|
3 |
*/
|
4 |
|
5 |
.intergeo_map_canvas img {
|
1 |
/*
|
2 |
+
* Version: 2.1.3
|
3 |
*/
|
4 |
|
5 |
.intergeo_map_canvas img {
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Intergeo - Google Maps Plugin
|
4 |
Plugin URI: http://themeisle.com/plugins/intergeo-maps-lite/
|
5 |
Description: A simple, easy and quite powerful Google Map tool to create, manage and embed custom Google Maps into your WordPress posts and pages. The plugin allows you to deeply customize look and feel of a map, add overlays like markers, rectangles, circles, polylines and polygons to your map. It could even be integraded with your Google Adsense account and show ad on your maps.
|
6 |
-
Version: 2.1.
|
7 |
Author: Themeisle
|
8 |
Author URI: http://themeisle.com
|
9 |
License: GPL v2.0 or later
|
@@ -13,7 +13,7 @@ Domain Path: /languages
|
|
13 |
*/
|
14 |
// <editor-fold defaultstate="collapsed" desc="constants">
|
15 |
define( 'INTERGEO_PLUGIN_NAME', 'intergeo' ); // don't change it whatever
|
16 |
-
define( 'INTERGEO_VERSION', '2.1.
|
17 |
define( 'INTERGEO_ABSPATH', dirname( __FILE__ ) );
|
18 |
define( 'INTERGEO_ABSURL', plugins_url( '/', __FILE__ ) );
|
19 |
defined( 'WPLANG' ) || define( 'WPLANG', '' );
|
@@ -116,7 +116,7 @@ function intergeo_settings_init_map() {
|
|
116 |
printf( esc_html__( ' Below shows how to find your API Key, after retrieving your key add it to the "Maps API Key" input box.', 'intergeo-maps' ) );
|
117 |
?></p>
|
118 |
|
119 |
-
<iframe width="560" height="315" src="https://www.youtube.com/embed/
|
120 |
allowfullscreen></iframe>
|
121 |
<?php
|
122 |
}
|
@@ -1352,7 +1352,7 @@ function intergeo_is_personal() {
|
|
1352 |
|
1353 |
function intergeo_is_developer() {
|
1354 |
if ( intergeo_is_personal() ) {
|
1355 |
-
$plan = get_option( '
|
1356 |
$plan = intval( $plan );
|
1357 |
if ( $plan > 0 ) {
|
1358 |
return true;
|
@@ -1365,7 +1365,7 @@ function intergeo_is_developer() {
|
|
1365 |
|
1366 |
function intergeo_is_agency() {
|
1367 |
if ( intergeo_is_developer() ) {
|
1368 |
-
$plan = get_option( '
|
1369 |
$plan = intval( $plan );
|
1370 |
if ( $plan > 2 ) {
|
1371 |
return true;
|
3 |
Plugin Name: Intergeo - Google Maps Plugin
|
4 |
Plugin URI: http://themeisle.com/plugins/intergeo-maps-lite/
|
5 |
Description: A simple, easy and quite powerful Google Map tool to create, manage and embed custom Google Maps into your WordPress posts and pages. The plugin allows you to deeply customize look and feel of a map, add overlays like markers, rectangles, circles, polylines and polygons to your map. It could even be integraded with your Google Adsense account and show ad on your maps.
|
6 |
+
Version: 2.1.3
|
7 |
Author: Themeisle
|
8 |
Author URI: http://themeisle.com
|
9 |
License: GPL v2.0 or later
|
13 |
*/
|
14 |
// <editor-fold defaultstate="collapsed" desc="constants">
|
15 |
define( 'INTERGEO_PLUGIN_NAME', 'intergeo' ); // don't change it whatever
|
16 |
+
define( 'INTERGEO_VERSION', '2.1.3' );
|
17 |
define( 'INTERGEO_ABSPATH', dirname( __FILE__ ) );
|
18 |
define( 'INTERGEO_ABSURL', plugins_url( '/', __FILE__ ) );
|
19 |
defined( 'WPLANG' ) || define( 'WPLANG', '' );
|
116 |
printf( esc_html__( ' Below shows how to find your API Key, after retrieving your key add it to the "Maps API Key" input box.', 'intergeo-maps' ) );
|
117 |
?></p>
|
118 |
|
119 |
+
<iframe width="560" height="315" src="https://www.youtube.com/embed/rqucit5YHNk?start=030" frameborder="0"
|
120 |
allowfullscreen></iframe>
|
121 |
<?php
|
122 |
}
|
1352 |
|
1353 |
function intergeo_is_developer() {
|
1354 |
if ( intergeo_is_personal() ) {
|
1355 |
+
$plan = get_option( 'intergeo_maps_pro_license_plan', 0 );
|
1356 |
$plan = intval( $plan );
|
1357 |
if ( $plan > 0 ) {
|
1358 |
return true;
|
1365 |
|
1366 |
function intergeo_is_agency() {
|
1367 |
if ( intergeo_is_developer() ) {
|
1368 |
+
$plan = get_option( 'intergeo_maps_pro_license_plan', 0 );
|
1369 |
$plan = intval( $plan );
|
1370 |
if ( $plan > 2 ) {
|
1371 |
return true;
|
readme.txt
CHANGED
@@ -1,23 +1,25 @@
|
|
1 |
-
===
|
2 |
-
Contributors: codeinwp,
|
3 |
Tags: directions, easy map, google, google map, google map plugin, google maps, latitude, location, longitude, map, map directions, map markers, map plugin, map widget, maps, marker, polygons, polylines, routes, store locator, streetview, wp google map, wp google maps, wp maps,plugin,admin,widget,shortcode,google maps, maps, map, map markers, google, google map, maps api, wp maps, wp google maps, easy map, embed, marker, placemark, icon, geocode, shortcode, custom post type, multisite, marker clustering
|
4 |
Requires at least: 3.5
|
5 |
-
Tested up to: 4.
|
6 |
Stable tag: trunk
|
7 |
License: GPL v2.0 or later
|
8 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
9 |
|
10 |
-
A simple, easy and quite powerful Google Maps tool to create, manage and embed custom Google Maps into your WordPress posts and pages.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
-
The Intergeo Google Maps WordPress plugin is
|
15 |
We've also built some fantastic <a href="http://themeisle.com/wordpress-themes/business/" rel="nofollow" target="_blank">business themes</a> that integrate with Intergeo Google Maps perfectly, check them out.
|
16 |
|
17 |
The powerful UI builder allows users to:
|
18 |
|
19 |
* Setup initial position and zooming level of a map;
|
20 |
* Adjust controls settings and positioning;
|
|
|
|
|
21 |
* Setup map color styles by using predefined color schemes or by using custom color settings;
|
22 |
* Add markers;
|
23 |
|
@@ -32,7 +34,7 @@ The powerful UI builder allows users to:
|
|
32 |
> * Custom Layers
|
33 |
> * Support and updates for 12 months
|
34 |
>
|
35 |
-
> **[Learn more about
|
36 |
|
37 |
|
38 |
### Create Google maps with shortcode ###
|
@@ -63,7 +65,7 @@ This attribute allows users to setup their own filter, which will be used to fil
|
|
63 |
|
64 |
So your shortcode could looks like this one:
|
65 |
|
66 |
-
`[intergeo zoom
|
67 |
|
68 |
Check-out the <a href="http://themeisle.com/plugins/intergeo-maps-lite/" rel="nofollow">#1 free Google Maps plugin</a>
|
69 |
|
1 |
+
=== Google Maps Plugin by Intergeo ===
|
2 |
+
Contributors: codeinwp,intergeomaps,hardeepasrani,themeisle,Madalin_ThemeIsle,uriahs-victor
|
3 |
Tags: directions, easy map, google, google map, google map plugin, google maps, latitude, location, longitude, map, map directions, map markers, map plugin, map widget, maps, marker, polygons, polylines, routes, store locator, streetview, wp google map, wp google maps, wp maps,plugin,admin,widget,shortcode,google maps, maps, map, map markers, google, google map, maps api, wp maps, wp google maps, easy map, embed, marker, placemark, icon, geocode, shortcode, custom post type, multisite, marker clustering
|
4 |
Requires at least: 3.5
|
5 |
+
Tested up to: 4.8
|
6 |
Stable tag: trunk
|
7 |
License: GPL v2.0 or later
|
8 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
9 |
|
10 |
+
A simple, easy and quite powerful Google Maps tool to create, manage and embed custom Google Maps & markers into your WordPress posts and pages.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
The Intergeo Google Maps WordPress plugin is the best tool for handling Google Maps in your website. This simple WordPress map plugin allow users to create new custom maps by using powerful UI map builder. Created maps could be easily edited and saved with new settings. To increase the speed of creation process the plugin has ability to clone a map with all it's settings. Finally the plugin has attractive library which allows users to browse all maps in the system and delete unnecessary maps.
|
15 |
We've also built some fantastic <a href="http://themeisle.com/wordpress-themes/business/" rel="nofollow" target="_blank">business themes</a> that integrate with Intergeo Google Maps perfectly, check them out.
|
16 |
|
17 |
The powerful UI builder allows users to:
|
18 |
|
19 |
* Setup initial position and zooming level of a map;
|
20 |
* Adjust controls settings and positioning;
|
21 |
+
* Add multiple locations
|
22 |
+
* WordPress location custom map
|
23 |
* Setup map color styles by using predefined color schemes or by using custom color settings;
|
24 |
* Add markers;
|
25 |
|
34 |
> * Custom Layers
|
35 |
> * Support and updates for 12 months
|
36 |
>
|
37 |
+
> **[Learn more about Intergeo Maps Pro version]( https://themeisle.com/plugins/intergeo-maps/ )**
|
38 |
|
39 |
|
40 |
### Create Google maps with shortcode ###
|
65 |
|
66 |
So your shortcode could looks like this one:
|
67 |
|
68 |
+
`[intergeo zoom="12" width="50%" height="400px" style="border: 3px solid red; margin: 0 auto;"]Central Park, NY[/intergeo]`
|
69 |
|
70 |
Check-out the <a href="http://themeisle.com/plugins/intergeo-maps-lite/" rel="nofollow">#1 free Google Maps plugin</a>
|
71 |
|