PluginProbe
Leaflet Map / 3.4.5
Leaflet Map v3.4.5
3.4.7 3.4.6 trunk 2.10.0 2.10.1 2.11.0 2.11.1 2.11.2 2.11.3 2.11.4 2.11.5 2.12.0 2.13.0 2.14.0 2.15.0 2.16.0 2.16.1 2.16.2 2.17.0 2.17.1 2.17.2 2.17.3 2.18.0 2.19.0 2.19.1 All 49 releases
← All changes | shortcodes/class.kml-shortcode.php +2 -4 2.17.23.4.5 View file →
@@ -2,10 +2,8 @@
2 2 /**
3 3 * KML/KMZ Shortcode
4 4 *
5 5 * Use with [leaflet-kml src="..."]
6 - *
7 - * PHP Version 5.5
8 6 *
9 7 * @category Shortcode
10 8 * @author Benjamin J DeLong <ben@bozdoz.com>
11 9 */
@@ -27,9 +25,9 @@
27 25 * How leaflet renders the src
28 26 *
29 27 * @var string $type
30 28 */
31 - public static $type = 'kml';
29 + protected $type = 'kml';
32 30
33 31 /**
34 32 * Default src
35 33 *
@@ -34,6 +32,6 @@
34 32 * Default src
35 33 *
36 34 * @var string $default_src
37 35 */
38 - public static $default_src = '';
36 + protected $default_src = 'https://cdn.jsdelivr.net/gh/mapbox/togeojson@master/test/data/polygon.kml';
39 37 }