Changeset 1563632
- Timestamp:
- 12/28/2016 05:38:32 PM (9 years ago)
- Location:
- dml-easy-map/trunk
- Files:
-
- 2 edited
-
dmlmap.php (modified) (3 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dml-easy-map/trunk/dmlmap.php
r1559950 r1563632 5 5 Plugin URI: https://wordpress.org/plugins/dml-easy-map/ 6 6 Description: DML easy map lets you integrate easily a Google Map to the wordpress projects. This version lets you pin locations, customize markers and map easily. 7 Version: 1.1. 07 Version: 1.1.1 8 8 Author: Ozkan ARDIL 9 9 Author URI: http://googlemap.webmountain.net/index.php … … 379 379 $dml_field2 = sanitize_text_field( $_POST['dml_field2'] ); // Field2 name for update query 380 380 $dml_value2 = sanitize_text_field( $_POST['dml_value2'] ); // Lng data 381 382 if ( isset( $dml_page_link ) && isset( $dml_post_id ) && isset( $dml_field1 ) && isset( $dml_value1 ) && isset( $dml_field2 ) && isset( $dml_value2 ) ) { 381 $dml_field_num = absint( $_POST['dml_field_num'] ); 382 383 if ( isset( $dml_page_link ) && isset( $dml_post_id ) && isset( $dml_field1 ) && isset( $dml_value1 ) && isset( $dml_field2 ) && isset( $dml_value2 ) && isset( $dml_field_num ) ) { 383 384 try { 384 385 $centerData = array( … … 388 389 'dml_field2' => $dml_field2, 389 390 'dml_value2' => $dml_value2, 391 'dml_field_num' => $dml_field_num, 390 392 ); 391 393 -
dml-easy-map/trunk/readme.txt
r1559950 r1563632 5 5 Requires at least: 4.6 6 6 Tested up to: 4.6.1 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 15 15 Add a customized Google map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No iFrames and super easy to use! Perfect for contact page maps, routes, maps showing delivery areas and any other use you can think of! 16 16 17 Features : 18 17 = Features = 19 18 * Place Google map on a page / post with shortcode, 20 19 * Responsive design, … … 25 24 * Customizable map zoom feature, 26 25 * Customizable map height, 27 * Marker cluster. 26 * Marker cluster, 27 28 = Pro Version Features = 29 * Add multiple lines on the same map, 30 * Change line color with just one click, 31 * Draw multiple polygons, 32 * Change polygon fill color according to your needs, 33 * Change polygon border color, 34 * Add descripiton for each polygon, 35 36 [Demo Page](http://googlemap.webmountain.net/index.php) 28 37 29 38 … … 89 98 == Upgrade Notice == 90 99 100 = 1.1.1 = 101 * Fıxed: Bug where center map function 102 91 103 = 1.1.0 = 92 * New -Marker cluster104 * Added: Marker cluster 93 105 94 106 = 1.0 = 95 First release107 * First release 96 108 97 109 == Arbitrary section ==
Note: See TracChangeset
for help on using the changeset viewer.