diff --git a/README.md b/README.md index 6fde0b2..61d3299 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,4 @@ License: GNU GPL v2 ## Further documentation -Read it all up in the [readme.txt](https://github.com/ginsterbusch/ui-leaflet-integration/blob/master/readme.txt) - or in the wiki of this repo :) +Read it all up in the [readme.txt](https://github.com/ginsterbusch/ui-leaflet-integration/blob/master/readme.txt) - or [in the wiki](https://github.com/ginsterbusch/ui-leaflet-integration/wiki) of this repo :) diff --git a/assets/plugin.js b/assets/plugin.js index af8fdbd..0876a6d 100644 --- a/assets/plugin.js +++ b/assets/plugin.js @@ -1,8 +1,11 @@ /** * Leaflet handler (theoretically requires no jQuery, but we use it anyway, just because ;) :P ) * - * @version 0.5 + * @version 0.6.1 * Changelog: + * v0.6.1: + * - bugfix for search control position + * * v0.6: * - integration of geocoder / geosearch * diff --git a/includes/leaflet-map.class.php b/includes/leaflet-map.class.php index 81c937e..b513795 100644 --- a/includes/leaflet-map.class.php +++ b/includes/leaflet-map.class.php @@ -2,14 +2,14 @@ /** * Insert leaflet map plus options into post (or anywhere else) * - * @version 0.8 + * @version 0.8.1 */ class _ui_LeafletIntegration extends _ui_LeafletBase { public $pluginPrefix = 'ui_leaflet_', $pluginPath = '', $pluginURL = '', - $pluginVersion = '0.8'; + $pluginVersion = '0.8.1'; public static function init() { diff --git a/plugin.php b/plugin.php index adb7fc6..8affc49 100644 --- a/plugin.php +++ b/plugin.php @@ -4,7 +4,7 @@ Plugin URI: https://github.com/ginsterbusch/ui-leaflet-integration Description: The most less excessive Leaflet map integration. Keeping it simple with a shortcode (and in the future, a shortcode generator interface). Uses the latest Leaflet libary (1.6). Compatible with ClassicPress 1.x. Tags: map, maps, Leaflet, OpenStreetMap, location, geocoding, geolocation, OpenLayers, geotagging, position, google maps, classicpress -Version: 0.8 +Version: 0.8.1 Author: Fabian Wolf Author URI: https://usability-idealist.net License: GNU GPL v2 diff --git a/readme.txt b/readme.txt index f9c327b..ff8cc6c 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: usability.idealist Tags: map, maps, Leaflet, shortcode, OpenStreetMap, OSM, opendata, open data, location, geo, geocoding, geolocation, mapnik, mapquest, mapbox, OpenLayers, mapping, coordinates, geocoding, geotagging, latitude, longitude, position, google maps, googlemaps, gmaps, google map, wms, tms, marker, layer, karte, custom marker text, leaflet map, map shortcode Requires at least: 4.1 -Tested up to: 5.0-nightly +Tested up to: 5.3 Stable tag: trunk License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -38,7 +38,7 @@ Currently implemented features: = Website = -http://f2w.de/ui-leaflet-integration +https://github.com/ginsterbusch/ui-leaflet-integration = Please Vote and Enjoy = @@ -73,6 +73,8 @@ All available shortcode attributes: * id - The ID template for the leaflet map. Defaults to 'ui-leaflet-map-id-%s'. %s is being replaced by the current map count. * marker_id - Marker ID template. Defaults to 'ui-leaflet-map-id-%s'. %s is replaced with a combination of the map count and marker count. * height - Height of the map. Defaults to '300px'. Please do NOT forget about adding a unit. Just a plain number, eg. 300, DOES NOT work. +* use_search - set to 'true', 'yes' or '1' to enable the optional search field control in the frontend +* search_position - where to position the search field control; available options are: 'topleft', 'topright', 'bottomleft', 'bottomright' = Available tile service handles = @@ -146,7 +148,7 @@ add_filter( 'ui_leaflet_css_url', 'my_custom_leaflet_css' ); = Q. I have a question = A. Chances are, someone else has asked it. Either check out the support forum at WP or take a look at the official issue tracker: -http://github.com/ginsterbusch/ui-leaflet-integration/issues +https://github.com/ginsterbusch/ui-leaflet-integration/issues == Screenshots == @@ -157,6 +159,15 @@ http://github.com/ginsterbusch/ui-leaflet-integration/issues == Changelog == += 0.8.1 = + +* Bugfix: Search control position + += 0.8 = + +* Added optional simple search field overlay using Leaflet Control Geocoder by Per Liedman (https://github.com/perliedman/leaflet-control-geocoder) +* Updated Leaflet.js to the latest stable version (1.6) + = 0.6 = * Updated leaflet.js to the latest stable version (1.3.3)