PluginProbe
Leaflet Map / 2.11.5
Leaflet Map v2.11.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
leaflet-map / shortcodes / class.kml-shortcode.php

class.kml-shortcode.php in Leaflet Map 2.11.5, at shortcodes/class.kml-shortcode.php

39 lines 729 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * KML/KMZ Shortcode
4 *
5 * Use with [leaflet-kml src="..."]
6 *
7 * PHP Version 5.5
8 *
9 * @category Shortcode
10 * @author Benjamin J DeLong <ben@bozdoz.com>
11 */
12
13 // Exit if accessed directly
14 if (!defined('ABSPATH')) {
15 exit;
16 }
17
18 require_once LEAFLET_MAP__PLUGIN_DIR . 'shortcodes/class.geojson-shortcode.php';
19
20 /**
21 * Leaflet KML Shortcode
22 */
23 class Leaflet_Kml_Shortcode extends Leaflet_Geojson_Shortcode
24 {
25
26 /**
27 * How leaflet renders the src
28 *
29 * @var string $type
30 */
31 public static $type = 'kml';
32
33 /**
34 * Default src
35 *
36 * @var string $default_src
37 */
38 public static $default_src = 'https://cdn.rawgit.com/mapbox/togeojson/master/test/data/polygon.kml';
39 }