Completed
Push — master ( 01760c...8030d8 )
by Mark
15s queued 13s
created
conf/metadata.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -22,72 +22,72 @@
 block discarded – undo
22 22
  */
23 23
 
24 24
 $meta['enableOSM']                = array(
25
-    'onoff'
25
+	'onoff'
26 26
 );
27 27
 $meta['enableStamen']             = array(
28
-    'onoff'
28
+	'onoff'
29 29
 );
30 30
 $meta['enableGoogle']             = array(
31
-    'onoff'
31
+	'onoff'
32 32
 );
33 33
 $meta['googleAPIkey']             = array(
34
-    'string'
34
+	'string'
35 35
 );
36 36
 $meta['enableBing']               = array(
37
-    'onoff'
37
+	'onoff'
38 38
 );
39 39
 $meta['bingAPIKey']               = array(
40
-    'string'
40
+	'string'
41 41
 );
42 42
 $meta['tfApiKey']                 = array(
43
-    'string'
43
+	'string'
44 44
 );
45 45
 $meta['iconUrlOverload']          = array(
46
-    'string'
46
+	'string'
47 47
 );
48 48
 $meta['enableA11y']               = array(
49
-    'onoff'
49
+	'onoff'
50 50
 );
51 51
 $meta['optionStaticMapGenerator'] = array(
52
-    'multichoice', '_choices' => array('local', 'remote')
52
+	'multichoice', '_choices' => array('local', 'remote')
53 53
 );
54 54
 $meta['autoZoomMap']              = array(
55
-    'onoff'
55
+	'onoff'
56 56
 );
57 57
 $meta ['displayformat']           = array(
58
-    'multichoice', '_choices' => array('DD', 'DMS')
58
+	'multichoice', '_choices' => array('DD', 'DMS')
59 59
 );
60 60
 
61 61
 $meta ['default_width']         = array(
62
-    'string'
62
+	'string'
63 63
 );
64 64
 $meta ['default_height']        = array(
65
-    'string'
65
+	'string'
66 66
 );
67 67
 $meta ['default_zoom']          = array(
68
-    'string'
68
+	'string'
69 69
 );
70 70
 $meta ['default_autozoom']      = array(
71
-    'onoff'
71
+	'onoff'
72 72
 );
73 73
 $meta ['default_statusbar']     = array(
74
-    'onoff'
74
+	'onoff'
75 75
 );
76 76
 $meta ['default_toolbar']       = array(
77
-    'onoff'
77
+	'onoff'
78 78
 );
79 79
 $meta ['default_controls']      = array(
80
-    'onoff'
80
+	'onoff'
81 81
 );
82 82
 $meta ['default_poihoverstyle'] = array(
83
-    'onoff'
83
+	'onoff'
84 84
 );
85 85
 $meta ['default_kmlfile']       = array(
86
-    'string'
86
+	'string'
87 87
 );
88 88
 $meta ['default_gpxfile']       = array(
89
-    'string'
89
+	'string'
90 90
 );
91 91
 $meta ['default_geojsonfile']   = array(
92
-    'string'
92
+	'string'
93 93
 );
Please login to merge, or discard this patch.
action.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * @param Doku_Event $event the DokuWiki event
40 40
      */
41 41
     public function insertButton(Doku_Event $event, $param) {
42
-        $strOpen       = '<olmap id="olMapOne" width="550px" height="450px" lat="50.0" ';
42
+        $strOpen = '<olmap id="olMapOne" width="550px" height="450px" lat="50.0" ';
43 43
         $strOpen       .= 'lon="5.1" zoom="12" statusbar="1" controls="1" poihoverstyle="0" ';
44 44
         $strOpen       .= 'baselyr="OpenStreetMap" gpxfile="" kmlfile="" geojsonfile="" summary="" >\n';
45 45
         $strOpen       .= '~~ Plugin olmap help.\n';
Please login to merge, or discard this patch.
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -24,43 +24,43 @@
 block discarded – undo
24 24
  */
25 25
 class action_plugin_openlayersmap extends DokuWiki_Action_Plugin {
26 26
 
27
-    /**
28
-     * plugin should use this method to register its handlers with the DokuWiki's event controller
29
-     *
30
-     * @param    $controller DokuWiki's event controller object. Also available as global $EVENT_HANDLER
31
-     */
32
-    public function register(Doku_Event_Handler $controller) {
33
-        $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'insertButton', array());
34
-        $controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'insertCSSSniffer');
35
-    }
27
+	/**
28
+	 * plugin should use this method to register its handlers with the DokuWiki's event controller
29
+	 *
30
+	 * @param    $controller DokuWiki's event controller object. Also available as global $EVENT_HANDLER
31
+	 */
32
+	public function register(Doku_Event_Handler $controller) {
33
+		$controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'insertButton', array());
34
+		$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'insertCSSSniffer');
35
+	}
36 36
 
37
-    /**
38
-     * Inserts the toolbar button.
39
-     * @param Doku_Event $event the DokuWiki event
40
-     */
41
-    public function insertButton(Doku_Event $event, $param) {
42
-        $strOpen       = '<olmap id="olMapOne" width="550px" height="450px" lat="50.0" ';
43
-        $strOpen       .= 'lon="5.1" zoom="12" statusbar="1" controls="1" poihoverstyle="0" ';
44
-        $strOpen       .= 'baselyr="OpenStreetMap" gpxfile="" kmlfile="" geojsonfile="" summary="" >\n';
45
-        $strOpen       .= '~~ Plugin olmap help.\n';
46
-        $strOpen       .= '~~ Required in the above tag are values for: id (unique on this page), width, heigth.\n';
47
-        $strOpen       .= '~~ Also you will want to enter zoomlevel and lat, lon values that make sense for where you';
48
-        $strOpen       .= '~~ want the map to start.\n\n';
49
-        $strOpen       .= '~~ Below is an example of a POI, you can add as many as you want. ';
50
-        $strOpen       .= '~~ More examples: https://dokuwiki.org/plugin:openlayersmap \n';
51
-        $event->data[] = array(
52
-            'type'   => 'format',
53
-            'title'  => $this->getLang('openlayersmap'),
54
-            'icon'   => '../../plugins/openlayersmap/toolbar/map.png',
55
-            'open'   => $strOpen,
56
-            'sample' => '50.0117,5.1287,-90,.8,marker-green.png,Pont de Barbouillons; Daverdisse \\\\ external link: 
37
+	/**
38
+	 * Inserts the toolbar button.
39
+	 * @param Doku_Event $event the DokuWiki event
40
+	 */
41
+	public function insertButton(Doku_Event $event, $param) {
42
+		$strOpen       = '<olmap id="olMapOne" width="550px" height="450px" lat="50.0" ';
43
+		$strOpen       .= 'lon="5.1" zoom="12" statusbar="1" controls="1" poihoverstyle="0" ';
44
+		$strOpen       .= 'baselyr="OpenStreetMap" gpxfile="" kmlfile="" geojsonfile="" summary="" >\n';
45
+		$strOpen       .= '~~ Plugin olmap help.\n';
46
+		$strOpen       .= '~~ Required in the above tag are values for: id (unique on this page), width, heigth.\n';
47
+		$strOpen       .= '~~ Also you will want to enter zoomlevel and lat, lon values that make sense for where you';
48
+		$strOpen       .= '~~ want the map to start.\n\n';
49
+		$strOpen       .= '~~ Below is an example of a POI, you can add as many as you want. ';
50
+		$strOpen       .= '~~ More examples: https://dokuwiki.org/plugin:openlayersmap \n';
51
+		$event->data[] = array(
52
+			'type'   => 'format',
53
+			'title'  => $this->getLang('openlayersmap'),
54
+			'icon'   => '../../plugins/openlayersmap/toolbar/map.png',
55
+			'open'   => $strOpen,
56
+			'sample' => '50.0117,5.1287,-90,.8,marker-green.png,Pont de Barbouillons; Daverdisse \\\\ external link: 
57 57
                         [[https://test.com|test.com]] \\\\ internal link: [[::start]]\\\\ **DW Formatting** \n',
58
-            'close'  => '</olmap>\n',
59
-        );
60
-    }
58
+			'close'  => '</olmap>\n',
59
+		);
60
+	}
61 61
 
62
-    /** add a snippet of javascript into the head to do a css operation we can check for later on.*/
63
-    public function insertCSSSniffer(Doku_Event $event, $param) {
64
-        $event->data["script"][] = array("_data" => "document.documentElement.className += ' olCSSsupported';");
65
-    }
62
+	/** add a snippet of javascript into the head to do a css operation we can check for later on.*/
63
+	public function insertCSSSniffer(Doku_Event $event, $param) {
64
+		$event->data["script"][] = array("_data" => "document.documentElement.className += ' olCSSsupported';");
65
+	}
66 66
 }
Please login to merge, or discard this patch.
icons/index.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
 </head>
43 43
 <body>
44 44
 <div class="box"><?php
45
-    foreach(glob('*.png') as $img) {
46
-        echo '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
47
-    }
48
-    ?></div>
45
+	foreach(glob('*.png') as $img) {
46
+		echo '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
47
+	}
48
+	?></div>
49 49
 </body>
50 50
 </html>
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@
 block discarded – undo
42 42
 </head>
43 43
 <body>
44 44
 <div class="box"><?php
45
-    foreach(glob('*.png') as $img) {
46
-        echo '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
45
+    foreach (glob('*.png') as $img) {
46
+        echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
47 47
     }
48 48
     ?></div>
49 49
 </body>
Please login to merge, or discard this patch.
_test/general.test.php 2 patches
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -24,42 +24,42 @@
 block discarded – undo
24 24
  */
25 25
 class general_plugin_openlayersmap_test extends DokuWikiTest {
26 26
 
27
-    protected $pluginsEnabled = array('openlayersmap', 'geophp');
27
+	protected $pluginsEnabled = array('openlayersmap', 'geophp');
28 28
 
29
-    /**
30
-     * Simple test to make sure the plugin.info.txt is in correct format.
31
-     */
32
-    final public function test_plugininfo(): void {
33
-        $file = __DIR__ . '/../plugin.info.txt';
34
-        self::assertFileExists($file);
29
+	/**
30
+	 * Simple test to make sure the plugin.info.txt is in correct format.
31
+	 */
32
+	final public function test_plugininfo(): void {
33
+		$file = __DIR__ . '/../plugin.info.txt';
34
+		self::assertFileExists($file);
35 35
 
36
-        $info = confToHash($file);
36
+		$info = confToHash($file);
37 37
 
38
-        self::assertArrayHasKey('base', $info);
39
-        self::assertArrayHasKey('author', $info);
40
-        self::assertArrayHasKey('email', $info);
41
-        self::assertArrayHasKey('date', $info);
42
-        self::assertArrayHasKey('name', $info);
43
-        self::assertArrayHasKey('desc', $info);
44
-        self::assertArrayHasKey('url', $info);
38
+		self::assertArrayHasKey('base', $info);
39
+		self::assertArrayHasKey('author', $info);
40
+		self::assertArrayHasKey('email', $info);
41
+		self::assertArrayHasKey('date', $info);
42
+		self::assertArrayHasKey('name', $info);
43
+		self::assertArrayHasKey('desc', $info);
44
+		self::assertArrayHasKey('url', $info);
45 45
 
46
-        self::assertEquals('openlayersmap', $info['base']);
47
-        self::assertRegExp('/^https?:\/\//', $info['url']);
48
-        self::assertTrue(mail_isvalid($info['email']));
49
-        self::assertRegExp('/^\d\d\d\d-\d\d-\d\d$/', $info['date']);
50
-        self::assertTrue(false !== strtotime($info['date']));
51
-    }
46
+		self::assertEquals('openlayersmap', $info['base']);
47
+		self::assertRegExp('/^https?:\/\//', $info['url']);
48
+		self::assertTrue(mail_isvalid($info['email']));
49
+		self::assertRegExp('/^\d\d\d\d-\d\d-\d\d$/', $info['date']);
50
+		self::assertTrue(false !== strtotime($info['date']));
51
+	}
52 52
 
53
-    /**
54
-     * test if plugin is loaded.
55
-     */
56
-    final public function test_plugin_openlayersmap_isloaded(): void {
57
-        global $plugin_controller;
58
-        self::assertContains(
59
-            'geophp', $plugin_controller->getList(), "geophp plugin is loaded"
60
-        );
61
-        self::assertContains(
62
-            'openlayersmap', $plugin_controller->getList(), "openlayersmap plugin is loaded"
63
-        );
64
-    }
53
+	/**
54
+	 * test if plugin is loaded.
55
+	 */
56
+	final public function test_plugin_openlayersmap_isloaded(): void {
57
+		global $plugin_controller;
58
+		self::assertContains(
59
+			'geophp', $plugin_controller->getList(), "geophp plugin is loaded"
60
+		);
61
+		self::assertContains(
62
+			'openlayersmap', $plugin_controller->getList(), "openlayersmap plugin is loaded"
63
+		);
64
+	}
65 65
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      * Simple test to make sure the plugin.info.txt is in correct format.
31 31
      */
32 32
     final public function test_plugininfo(): void {
33
-        $file = __DIR__ . '/../plugin.info.txt';
33
+        $file = __DIR__.'/../plugin.info.txt';
34 34
         self::assertFileExists($file);
35 35
 
36 36
         $info = confToHash($file);
Please login to merge, or discard this patch.
syntax/olmap.php 3 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -617,8 +617,9 @@
 block discarded – undo
617 617
                 . "%2C" . $bbox ['maxlon'];
618 618
             $imgUrl .= "&dcl=1";
619 619
         }
620
-        if(strpos($imgUrl, "?") === false)
621
-            $imgUrl .= "?";
620
+        if(strpos($imgUrl, "?") === false) {
621
+                    $imgUrl .= "?";
622
+        }
622 623
 
623 624
         //$imgUrl .= "&ms=" . str_replace ( "px", "", $gmap ['width'] ) . ","
624 625
         //          . str_replace ( "px", "", $gmap ['height'] );
Please login to merge, or discard this patch.
Indentation   +724 added lines, -724 removed lines patch added patch discarded remove patch
@@ -25,108 +25,108 @@  discard block
 block discarded – undo
25 25
  */
26 26
 class syntax_plugin_openlayersmap_olmap extends DokuWiki_Syntax_Plugin {
27 27
 
28
-    /**
29
-     * defaults of the known attributes of the olmap tag.
30
-     */
31
-    private $dflt = array(
32
-        'id'            => 'olmap',
33
-        'width'         => '550px',
34
-        'height'        => '450px',
35
-        'lat'           => 50.0,
36
-        'lon'           => 5.1,
37
-        'zoom'          => 12,
38
-        'autozoom'      => 1,
39
-        'statusbar'     => true,
40
-        'toolbar'       => true,
41
-        'controls'      => true,
42
-        'poihoverstyle' => false,
43
-        'baselyr'       => 'OpenStreetMap',
44
-        'gpxfile'       => '',
45
-        'kmlfile'       => '',
46
-        'geojsonfile'   => '',
47
-        'summary'       => ''
48
-    );
49
-
50
-    /**
51
-     *
52
-     * @see DokuWiki_Syntax_Plugin::getType()
53
-     */
54
-    public function getType(): string {
55
-        return 'substition';
56
-    }
57
-
58
-    /**
59
-     *
60
-     * @see DokuWiki_Syntax_Plugin::getPType()
61
-     */
62
-    public function getPType(): string {
63
-        return 'block';
64
-    }
65
-
66
-    /**
67
-     *
68
-     * @see Doku_Parser_Mode::getSort()
69
-     */
70
-    public function getSort(): int {
71
-        return 901;
72
-    }
73
-
74
-    /**
75
-     *
76
-     * @see Doku_Parser_Mode::connectTo()
77
-     */
78
-    public function connectTo($mode) {
79
-        $this->Lexer->addSpecialPattern(
80
-            '<olmap ?[^>\n]*>.*?</olmap>', $mode,
81
-            'plugin_openlayersmap_olmap'
82
-        );
83
-    }
84
-
85
-    /**
86
-     *
87
-     * @see DokuWiki_Syntax_Plugin::handle()
88
-     */
89
-    public function handle($match, $state, $pos, Doku_Handler $handler): array {
90
-        // break matched cdata into its components
91
-        list ($str_params, $str_points) = explode('>', substr($match, 7, -9), 2);
92
-        // get the lat/lon for adding them to the metadata (used by geotag)
93
-        preg_match('(lat[:|=]\"-?\d*\.?\d*\")', $match, $mainLat);
94
-        preg_match('(lon[:|=]\"-?\d*\.?\d*\")', $match, $mainLon);
95
-        $mainLat = substr($mainLat [0], 5, -1);
96
-        $mainLon = substr($mainLon [0], 5, -1);
97
-        if(!is_numeric($mainLat)) {
98
-            $mainLat = $this->dflt ['lat'];
99
-        }
100
-        if(!is_numeric($mainLon)) {
101
-            $mainLon = $this->dflt ['lon'];
102
-        }
103
-
104
-        $gmap          = $this->extractParams($str_params);
105
-        $overlay       = $this->extractPoints($str_points);
106
-        $_firstimageID = '';
107
-
108
-        $_nocache = false;
109
-        // choose maptype based on the specified tag
110
-        $imgUrl = "{{";
111
-        if(stripos($gmap ['baselyr'], 'google') !== false) {
112
-            // Google
113
-            $imgUrl .= $this->getGoogle($gmap, $overlay);
114
-            $imgUrl .= "&.png";
115
-        } elseif(stripos($gmap ['baselyr'], 'bing') !== false) {
116
-            // Bing
117
-            if(!$this->getConf('bingAPIKey')) {
118
-                // in case there is no Bing api key we'll use OSM
119
-                $_firstimageID = $this->getStaticOSM($gmap, $overlay);
120
-                $imgUrl        .= $_firstimageID;
121
-                if($this->getConf('optionStaticMapGenerator') == 'remote') {
122
-                    $imgUrl .= "&.png";
123
-                }
124
-            } else {
125
-                // seems that Bing doesn't like the DW client, turn off caching
126
-                $_nocache = true;
127
-                $imgUrl   .= $this->getBing($gmap, $overlay) . "&.png";
128
-            }
129
-        } /* elseif (stripos ( $gmap ['baselyr'], 'mapquest' ) !== false) {
28
+	/**
29
+	 * defaults of the known attributes of the olmap tag.
30
+	 */
31
+	private $dflt = array(
32
+		'id'            => 'olmap',
33
+		'width'         => '550px',
34
+		'height'        => '450px',
35
+		'lat'           => 50.0,
36
+		'lon'           => 5.1,
37
+		'zoom'          => 12,
38
+		'autozoom'      => 1,
39
+		'statusbar'     => true,
40
+		'toolbar'       => true,
41
+		'controls'      => true,
42
+		'poihoverstyle' => false,
43
+		'baselyr'       => 'OpenStreetMap',
44
+		'gpxfile'       => '',
45
+		'kmlfile'       => '',
46
+		'geojsonfile'   => '',
47
+		'summary'       => ''
48
+	);
49
+
50
+	/**
51
+	 *
52
+	 * @see DokuWiki_Syntax_Plugin::getType()
53
+	 */
54
+	public function getType(): string {
55
+		return 'substition';
56
+	}
57
+
58
+	/**
59
+	 *
60
+	 * @see DokuWiki_Syntax_Plugin::getPType()
61
+	 */
62
+	public function getPType(): string {
63
+		return 'block';
64
+	}
65
+
66
+	/**
67
+	 *
68
+	 * @see Doku_Parser_Mode::getSort()
69
+	 */
70
+	public function getSort(): int {
71
+		return 901;
72
+	}
73
+
74
+	/**
75
+	 *
76
+	 * @see Doku_Parser_Mode::connectTo()
77
+	 */
78
+	public function connectTo($mode) {
79
+		$this->Lexer->addSpecialPattern(
80
+			'<olmap ?[^>\n]*>.*?</olmap>', $mode,
81
+			'plugin_openlayersmap_olmap'
82
+		);
83
+	}
84
+
85
+	/**
86
+	 *
87
+	 * @see DokuWiki_Syntax_Plugin::handle()
88
+	 */
89
+	public function handle($match, $state, $pos, Doku_Handler $handler): array {
90
+		// break matched cdata into its components
91
+		list ($str_params, $str_points) = explode('>', substr($match, 7, -9), 2);
92
+		// get the lat/lon for adding them to the metadata (used by geotag)
93
+		preg_match('(lat[:|=]\"-?\d*\.?\d*\")', $match, $mainLat);
94
+		preg_match('(lon[:|=]\"-?\d*\.?\d*\")', $match, $mainLon);
95
+		$mainLat = substr($mainLat [0], 5, -1);
96
+		$mainLon = substr($mainLon [0], 5, -1);
97
+		if(!is_numeric($mainLat)) {
98
+			$mainLat = $this->dflt ['lat'];
99
+		}
100
+		if(!is_numeric($mainLon)) {
101
+			$mainLon = $this->dflt ['lon'];
102
+		}
103
+
104
+		$gmap          = $this->extractParams($str_params);
105
+		$overlay       = $this->extractPoints($str_points);
106
+		$_firstimageID = '';
107
+
108
+		$_nocache = false;
109
+		// choose maptype based on the specified tag
110
+		$imgUrl = "{{";
111
+		if(stripos($gmap ['baselyr'], 'google') !== false) {
112
+			// Google
113
+			$imgUrl .= $this->getGoogle($gmap, $overlay);
114
+			$imgUrl .= "&.png";
115
+		} elseif(stripos($gmap ['baselyr'], 'bing') !== false) {
116
+			// Bing
117
+			if(!$this->getConf('bingAPIKey')) {
118
+				// in case there is no Bing api key we'll use OSM
119
+				$_firstimageID = $this->getStaticOSM($gmap, $overlay);
120
+				$imgUrl        .= $_firstimageID;
121
+				if($this->getConf('optionStaticMapGenerator') == 'remote') {
122
+					$imgUrl .= "&.png";
123
+				}
124
+			} else {
125
+				// seems that Bing doesn't like the DW client, turn off caching
126
+				$_nocache = true;
127
+				$imgUrl   .= $this->getBing($gmap, $overlay) . "&.png";
128
+			}
129
+		} /* elseif (stripos ( $gmap ['baselyr'], 'mapquest' ) !== false) {
130 130
             // MapQuest
131 131
             if (! $this->getConf ( 'mapquestAPIKey' )) {
132 132
                 // no API key for MapQuest, use OSM
@@ -140,169 +140,169 @@  discard block
 block discarded – undo
140 140
                 $imgUrl .= "&.png";
141 141
             }
142 142
         } */ else {
143
-            // default OSM
144
-            $_firstimageID = $this->getStaticOSM($gmap, $overlay);
145
-            $imgUrl        .= $_firstimageID;
146
-            if($this->getConf('optionStaticMapGenerator') == 'remote') {
147
-                $imgUrl .= "&.png";
148
-            }
149
-        }
150
-
151
-        // append dw p_render specific params and render
152
-        $imgUrl .= "?" . str_replace("px", "", $gmap ['width']) . "x"
153
-            . str_replace("px", "", $gmap ['height']);
154
-        $imgUrl .= "&nolink";
155
-
156
-        // add nocache option for selected services
157
-        if($_nocache) {
158
-            $imgUrl .= "&nocache";
159
-        }
160
-
161
-        $imgUrl .= " |" . $gmap ['summary'] . " }}";
162
-
163
-        // dbglog($imgUrl,"complete image tags is:");
164
-
165
-        $mapid = $gmap ['id'];
166
-        // create a javascript parameter string for the map
167
-        $param = '';
168
-        foreach($gmap as $key => $val) {
169
-            $param .= is_numeric($val) ? "$key: $val, " : "$key: '" . hsc($val) . "', ";
170
-        }
171
-        if(!empty ($param)) {
172
-            $param = substr($param, 0, -2);
173
-        }
174
-        unset ($gmap ['id']);
175
-
176
-        // create a javascript serialisation of the point data
177
-        $poi      = '';
178
-        $poitable = '';
179
-        $rowId    = 0;
180
-        if(!empty ($overlay)) {
181
-            foreach($overlay as $data) {
182
-                list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
183
-                $rowId++;
184
-                $poi .= ", {lat:$lat,lon:$lon,txt:'$text',angle:$angle,opacity:$opacity,img:'$img',rowId: $rowId}";
185
-
186
-                if($this->getConf('displayformat') === 'DMS') {
187
-                    $lat = $this->convertLat($lat);
188
-                    $lon = $this->convertLon($lon);
189
-                } else {
190
-                    $lat .= 'º';
191
-                    $lon .= 'º';
192
-                }
193
-
194
-                $poitable .= '
143
+			// default OSM
144
+			$_firstimageID = $this->getStaticOSM($gmap, $overlay);
145
+			$imgUrl        .= $_firstimageID;
146
+			if($this->getConf('optionStaticMapGenerator') == 'remote') {
147
+				$imgUrl .= "&.png";
148
+			}
149
+		}
150
+
151
+		// append dw p_render specific params and render
152
+		$imgUrl .= "?" . str_replace("px", "", $gmap ['width']) . "x"
153
+			. str_replace("px", "", $gmap ['height']);
154
+		$imgUrl .= "&nolink";
155
+
156
+		// add nocache option for selected services
157
+		if($_nocache) {
158
+			$imgUrl .= "&nocache";
159
+		}
160
+
161
+		$imgUrl .= " |" . $gmap ['summary'] . " }}";
162
+
163
+		// dbglog($imgUrl,"complete image tags is:");
164
+
165
+		$mapid = $gmap ['id'];
166
+		// create a javascript parameter string for the map
167
+		$param = '';
168
+		foreach($gmap as $key => $val) {
169
+			$param .= is_numeric($val) ? "$key: $val, " : "$key: '" . hsc($val) . "', ";
170
+		}
171
+		if(!empty ($param)) {
172
+			$param = substr($param, 0, -2);
173
+		}
174
+		unset ($gmap ['id']);
175
+
176
+		// create a javascript serialisation of the point data
177
+		$poi      = '';
178
+		$poitable = '';
179
+		$rowId    = 0;
180
+		if(!empty ($overlay)) {
181
+			foreach($overlay as $data) {
182
+				list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
183
+				$rowId++;
184
+				$poi .= ", {lat:$lat,lon:$lon,txt:'$text',angle:$angle,opacity:$opacity,img:'$img',rowId: $rowId}";
185
+
186
+				if($this->getConf('displayformat') === 'DMS') {
187
+					$lat = $this->convertLat($lat);
188
+					$lon = $this->convertLon($lon);
189
+				} else {
190
+					$lat .= 'º';
191
+					$lon .= 'º';
192
+				}
193
+
194
+				$poitable .= '
195 195
                     <tr>
196 196
                     <td class="rowId">' . $rowId . '</td>
197 197
                     <td class="icon"><img src="' . DOKU_BASE . 'lib/plugins/openlayersmap/icons/' . $img . '" alt="'
198
-                    . substr($img, 0, -4) . $this->getlang('alt_legend_poi') . '" /></td>
198
+					. substr($img, 0, -4) . $this->getlang('alt_legend_poi') . '" /></td>
199 199
                     <td class="lat" title="' . $this->getLang('olmapPOIlatTitle') . '">' . $lat . '</td>
200 200
                     <td class="lon" title="' . $this->getLang('olmapPOIlonTitle') . '">' . $lon . '</td>
201 201
                     <td class="txt">' . $text . '</td>
202 202
                     </tr>';
203
-            }
204
-            $poi = substr($poi, 2);
205
-        }
206
-        if(!empty ($gmap ['kmlfile'])) {
207
-            $poitable .= '
203
+			}
204
+			$poi = substr($poi, 2);
205
+		}
206
+		if(!empty ($gmap ['kmlfile'])) {
207
+			$poitable .= '
208 208
                     <tr>
209 209
                     <td class="rowId"><img src="' . DOKU_BASE
210
-                . 'lib/plugins/openlayersmap/toolbar/kml_file.png" alt="KML file" /></td>
210
+				. 'lib/plugins/openlayersmap/toolbar/kml_file.png" alt="KML file" /></td>
211 211
                     <td class="icon"><img src="' . DOKU_BASE . 'lib/plugins/openlayersmap/toolbar/kml_line.png" alt="'
212
-                . $this->getlang('alt_legend_kml') . '" /></td>
212
+				. $this->getlang('alt_legend_kml') . '" /></td>
213 213
                     <td class="txt" colspan="3">KML track: ' . $this->getFileName($gmap ['kmlfile']) . '</td>
214 214
                     </tr>';
215
-        }
216
-        if(!empty ($gmap ['gpxfile'])) {
217
-            $poitable .= '
215
+		}
216
+		if(!empty ($gmap ['gpxfile'])) {
217
+			$poitable .= '
218 218
                     <tr>
219 219
                     <td class="rowId"><img src="' . DOKU_BASE
220
-                . 'lib/plugins/openlayersmap/toolbar/gpx_file.png" alt="GPX file" /></td>
220
+				. 'lib/plugins/openlayersmap/toolbar/gpx_file.png" alt="GPX file" /></td>
221 221
                     <td class="icon"><img src="' . DOKU_BASE
222
-                . 'lib/plugins/openlayersmap/toolbar/gpx_line.png" alt="'
223
-                . $this->getlang('alt_legend_gpx') . '" /></td>
222
+				. 'lib/plugins/openlayersmap/toolbar/gpx_line.png" alt="'
223
+				. $this->getlang('alt_legend_gpx') . '" /></td>
224 224
                     <td class="txt" colspan="3">GPX track: ' . $this->getFileName($gmap ['gpxfile']) . '</td>
225 225
                     </tr>';
226
-        }
227
-        if(!empty ($gmap ['geojsonfile'])) {
228
-            $poitable .= '
226
+		}
227
+		if(!empty ($gmap ['geojsonfile'])) {
228
+			$poitable .= '
229 229
                     <tr>
230 230
                     <td class="rowId"><img src="' . DOKU_BASE
231
-                . 'lib/plugins/openlayersmap/toolbar/geojson_file.png" alt="GeoJSON file" /></td>
231
+				. 'lib/plugins/openlayersmap/toolbar/geojson_file.png" alt="GeoJSON file" /></td>
232 232
                     <td class="icon"><img src="' . DOKU_BASE
233
-                . 'lib/plugins/openlayersmap/toolbar/geojson_line.png" alt="'
234
-                . $this->getlang('alt_legend_geojson') . '" /></td>
233
+				. 'lib/plugins/openlayersmap/toolbar/geojson_line.png" alt="'
234
+				. $this->getlang('alt_legend_geojson') . '" /></td>
235 235
                     <td class="txt" colspan="3">GeoJSON track: ' . $this->getFileName($gmap ['geojsonfile']) . '</td>
236 236
                     </tr>';
237
-        }
238
-
239
-        $autozoom = empty ($gmap ['autozoom']) ? $this->getConf('autoZoomMap') : $gmap ['autozoom'];
240
-        $js       = "{mapOpts: {" . $param . ", displayformat: '" . $this->getConf('displayformat')
241
-            . "', autozoom: " . $autozoom . "}, poi: [$poi]};";
242
-        // unescape the json
243
-        $poitable = stripslashes($poitable);
244
-
245
-        return array(
246
-            $mapid,
247
-            $js,
248
-            $mainLat,
249
-            $mainLon,
250
-            $poitable,
251
-            $gmap ['summary'],
252
-            $imgUrl,
253
-            $_firstimageID
254
-        );
255
-    }
256
-
257
-    /**
258
-     * extract parameters for the map from the parameter string
259
-     *
260
-     * @param string $str_params
261
-     *            string of key="value" pairs
262
-     * @return array associative array of parameters key=>value
263
-     */
264
-    private function extractParams(string $str_params): array {
265
-        $param = array();
266
-        preg_match_all('/(\w*)="(.*?)"/us', $str_params, $param, PREG_SET_ORDER);
267
-        // parse match for instructions, break into key value pairs
268
-        $gmap = $this->dflt;
269
-        foreach($gmap as $key => &$value) {
270
-            $defval = $this->getConf('default_' . $key);
271
-            if($defval !== '') {
272
-                $value = $defval;
273
-            }
274
-        }
275
-        unset ($value);
276
-        foreach($param as $kvpair) {
277
-            list ($match, $key, $val) = $kvpair;
278
-            $key = strtolower($key);
279
-            if(isset ($gmap [$key])) {
280
-                if($key == 'summary') {
281
-                    // preserve case for summary field
282
-                    $gmap [$key] = $val;
283
-                } elseif($key == 'id') {
284
-                    // preserve case for id field
285
-                    $gmap [$key] = $val;
286
-                } else {
287
-                    $gmap [$key] = strtolower($val);
288
-                }
289
-            }
290
-        }
291
-        return $gmap;
292
-    }
293
-
294
-    /**
295
-     * extract overlay points for the map from the wiki syntax data
296
-     *
297
-     * @param string $str_points
298
-     *            multi-line string of lat,lon,text triplets
299
-     * @return array multi-dimensional array of lat,lon,text triplets
300
-     */
301
-    private function extractPoints(string $str_points): array {
302
-        $point = array();
303
-        // preg_match_all('/^([+-]?[0-9].*?),\s*([+-]?[0-9].*?),(.*?),(.*?),(.*?),(.*)$/um',
304
-        //      $str_points, $point, PREG_SET_ORDER);
305
-        /*
237
+		}
238
+
239
+		$autozoom = empty ($gmap ['autozoom']) ? $this->getConf('autoZoomMap') : $gmap ['autozoom'];
240
+		$js       = "{mapOpts: {" . $param . ", displayformat: '" . $this->getConf('displayformat')
241
+			. "', autozoom: " . $autozoom . "}, poi: [$poi]};";
242
+		// unescape the json
243
+		$poitable = stripslashes($poitable);
244
+
245
+		return array(
246
+			$mapid,
247
+			$js,
248
+			$mainLat,
249
+			$mainLon,
250
+			$poitable,
251
+			$gmap ['summary'],
252
+			$imgUrl,
253
+			$_firstimageID
254
+		);
255
+	}
256
+
257
+	/**
258
+	 * extract parameters for the map from the parameter string
259
+	 *
260
+	 * @param string $str_params
261
+	 *            string of key="value" pairs
262
+	 * @return array associative array of parameters key=>value
263
+	 */
264
+	private function extractParams(string $str_params): array {
265
+		$param = array();
266
+		preg_match_all('/(\w*)="(.*?)"/us', $str_params, $param, PREG_SET_ORDER);
267
+		// parse match for instructions, break into key value pairs
268
+		$gmap = $this->dflt;
269
+		foreach($gmap as $key => &$value) {
270
+			$defval = $this->getConf('default_' . $key);
271
+			if($defval !== '') {
272
+				$value = $defval;
273
+			}
274
+		}
275
+		unset ($value);
276
+		foreach($param as $kvpair) {
277
+			list ($match, $key, $val) = $kvpair;
278
+			$key = strtolower($key);
279
+			if(isset ($gmap [$key])) {
280
+				if($key == 'summary') {
281
+					// preserve case for summary field
282
+					$gmap [$key] = $val;
283
+				} elseif($key == 'id') {
284
+					// preserve case for id field
285
+					$gmap [$key] = $val;
286
+				} else {
287
+					$gmap [$key] = strtolower($val);
288
+				}
289
+			}
290
+		}
291
+		return $gmap;
292
+	}
293
+
294
+	/**
295
+	 * extract overlay points for the map from the wiki syntax data
296
+	 *
297
+	 * @param string $str_points
298
+	 *            multi-line string of lat,lon,text triplets
299
+	 * @return array multi-dimensional array of lat,lon,text triplets
300
+	 */
301
+	private function extractPoints(string $str_points): array {
302
+		$point = array();
303
+		// preg_match_all('/^([+-]?[0-9].*?),\s*([+-]?[0-9].*?),(.*?),(.*?),(.*?),(.*)$/um',
304
+		//      $str_points, $point, PREG_SET_ORDER);
305
+		/*
306 306
          * group 1: ([+-]?[0-9]+(?:\.[0-9]*)?)
307 307
          * group 2: ([+-]?[0-9]+(?:\.[0-9]*)?)
308 308
          * group 3: (.*?)
@@ -310,104 +310,104 @@  discard block
 block discarded – undo
310 310
          * group 5: (.*?)
311 311
          * group 6: (.*)
312 312
          */
313
-        preg_match_all(
314
-            '/^([+-]?[0-9]+(?:\.[0-9]*)?),\s*([+-]?[0-9]+(?:\.[0-9]*)?),(.*?),(.*?),(.*?),(.*)$/um',
315
-            $str_points, $point, PREG_SET_ORDER
316
-        );
317
-        // create poi array
318
-        $overlay = array();
319
-        foreach($point as $pt) {
320
-            list ($match, $lat, $lon, $angle, $opacity, $img, $text) = $pt;
321
-            $lat     = is_numeric($lat) ? $lat : 0;
322
-            $lon     = is_numeric($lon) ? $lon : 0;
323
-            $angle   = is_numeric($angle) ? $angle : 0;
324
-            $opacity = is_numeric($opacity) ? $opacity : 0.8;
325
-            // TODO validate using exist & set up default img?
326
-            $img  = trim($img);
327
-            $text = p_get_instructions($text);
328
-            // dbg ( $text );
329
-            $text = p_render("xhtml", $text, $info);
330
-            // dbg ( $text );
331
-            $text       = addslashes(str_replace("\n", "", $text));
332
-            $overlay [] = array(
333
-                $lat,
334
-                $lon,
335
-                $text,
336
-                $angle,
337
-                $opacity,
338
-                $img
339
-            );
340
-        }
341
-        return $overlay;
342
-    }
343
-
344
-    /**
345
-     * Create a Google maps static image url w/ the poi.
346
-     *
347
-     * @param array $gmap
348
-     * @param array $overlay
349
-     * @return string
350
-     */
351
-    private function getGoogle(array $gmap, array $overlay): string {
352
-        $sUrl = $this->getConf('iconUrlOverload');
353
-        if(!$sUrl) {
354
-            $sUrl = DOKU_URL;
355
-        }
356
-        switch($gmap ['baselyr']) {
357
-            case 'google hybrid' :
358
-                $maptype = 'hybrid';
359
-                break;
360
-            case 'google sat' :
361
-                $maptype = 'satellite';
362
-                break;
363
-            case 'terrain' :
364
-            case 'google relief' :
365
-                $maptype = 'terrain';
366
-                break;
367
-            case 'google road' :
368
-            default :
369
-                $maptype = 'roadmap';
370
-                break;
371
-        }
372
-        // TODO maybe use viewport / visible instead of center/zoom,
373
-        // see: https://developers.google.com/maps/documentation/staticmaps/index#Viewports
374
-        // http://maps.google.com/maps/api/staticmap?center=51.565690,5.456756&zoom=16&size=600x400&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/marker.png|label:1|51.565690,5.456756&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/marker-blue.png|51.566197,5.458966|label:2&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.567177,5.457909|label:3&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.566283,5.457330|label:4&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.565630,5.457695|label:5&sensor=false&format=png&maptype=roadmap
375
-        $imgUrl = "https://maps.googleapis.com/maps/api/staticmap?";
376
-        $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
377
-            . str_replace("px", "", $gmap ['height']);
378
-        //if (!$this->getConf( 'autoZoomMap')) { // no need for center & zoom params }
379
-        $imgUrl .= "&center=" . $gmap ['lat'] . "," . $gmap ['lon'];
380
-        // max is 21 (== building scale), but that's overkill..
381
-        if($gmap ['zoom'] > 17) {
382
-            $imgUrl .= "&zoom=17";
383
-        } else {
384
-            $imgUrl .= "&zoom=" . $gmap ['zoom'];
385
-        }
386
-        if(!empty ($overlay)) {
387
-            $rowId = 0;
388
-            foreach($overlay as $data) {
389
-                list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
390
-                $imgUrl .= "&markers=icon%3a" . $sUrl . "lib/plugins/openlayersmap/icons/" . $img . "%7c"
391
-                    . $lat . "," . $lon . "%7clabel%3a" . ++$rowId;
392
-            }
393
-        }
394
-        $imgUrl .= "&format=png&maptype=" . $maptype;
395
-        global $conf;
396
-        $imgUrl .= "&language=" . $conf ['lang'];
397
-        if($this->getConf('googleAPIkey')) {
398
-            $imgUrl .= "&key=" . $this->getConf('googleAPIkey');
399
-        }
400
-        // dbglog($imgUrl,'syntax_plugin_openlayersmap_olmap::getGoogle: Google image url is:');
401
-        return $imgUrl;
402
-    }
403
-
404
-    /**
405
-     * Create a MapQuest static map API image url.
406
-     *
407
-     * @param array $gmap
408
-     * @param array $overlay
409
-     */
410
-    /*
313
+		preg_match_all(
314
+			'/^([+-]?[0-9]+(?:\.[0-9]*)?),\s*([+-]?[0-9]+(?:\.[0-9]*)?),(.*?),(.*?),(.*?),(.*)$/um',
315
+			$str_points, $point, PREG_SET_ORDER
316
+		);
317
+		// create poi array
318
+		$overlay = array();
319
+		foreach($point as $pt) {
320
+			list ($match, $lat, $lon, $angle, $opacity, $img, $text) = $pt;
321
+			$lat     = is_numeric($lat) ? $lat : 0;
322
+			$lon     = is_numeric($lon) ? $lon : 0;
323
+			$angle   = is_numeric($angle) ? $angle : 0;
324
+			$opacity = is_numeric($opacity) ? $opacity : 0.8;
325
+			// TODO validate using exist & set up default img?
326
+			$img  = trim($img);
327
+			$text = p_get_instructions($text);
328
+			// dbg ( $text );
329
+			$text = p_render("xhtml", $text, $info);
330
+			// dbg ( $text );
331
+			$text       = addslashes(str_replace("\n", "", $text));
332
+			$overlay [] = array(
333
+				$lat,
334
+				$lon,
335
+				$text,
336
+				$angle,
337
+				$opacity,
338
+				$img
339
+			);
340
+		}
341
+		return $overlay;
342
+	}
343
+
344
+	/**
345
+	 * Create a Google maps static image url w/ the poi.
346
+	 *
347
+	 * @param array $gmap
348
+	 * @param array $overlay
349
+	 * @return string
350
+	 */
351
+	private function getGoogle(array $gmap, array $overlay): string {
352
+		$sUrl = $this->getConf('iconUrlOverload');
353
+		if(!$sUrl) {
354
+			$sUrl = DOKU_URL;
355
+		}
356
+		switch($gmap ['baselyr']) {
357
+			case 'google hybrid' :
358
+				$maptype = 'hybrid';
359
+				break;
360
+			case 'google sat' :
361
+				$maptype = 'satellite';
362
+				break;
363
+			case 'terrain' :
364
+			case 'google relief' :
365
+				$maptype = 'terrain';
366
+				break;
367
+			case 'google road' :
368
+			default :
369
+				$maptype = 'roadmap';
370
+				break;
371
+		}
372
+		// TODO maybe use viewport / visible instead of center/zoom,
373
+		// see: https://developers.google.com/maps/documentation/staticmaps/index#Viewports
374
+		// http://maps.google.com/maps/api/staticmap?center=51.565690,5.456756&zoom=16&size=600x400&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/marker.png|label:1|51.565690,5.456756&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/marker-blue.png|51.566197,5.458966|label:2&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.567177,5.457909|label:3&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.566283,5.457330|label:4&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.565630,5.457695|label:5&sensor=false&format=png&maptype=roadmap
375
+		$imgUrl = "https://maps.googleapis.com/maps/api/staticmap?";
376
+		$imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
377
+			. str_replace("px", "", $gmap ['height']);
378
+		//if (!$this->getConf( 'autoZoomMap')) { // no need for center & zoom params }
379
+		$imgUrl .= "&center=" . $gmap ['lat'] . "," . $gmap ['lon'];
380
+		// max is 21 (== building scale), but that's overkill..
381
+		if($gmap ['zoom'] > 17) {
382
+			$imgUrl .= "&zoom=17";
383
+		} else {
384
+			$imgUrl .= "&zoom=" . $gmap ['zoom'];
385
+		}
386
+		if(!empty ($overlay)) {
387
+			$rowId = 0;
388
+			foreach($overlay as $data) {
389
+				list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
390
+				$imgUrl .= "&markers=icon%3a" . $sUrl . "lib/plugins/openlayersmap/icons/" . $img . "%7c"
391
+					. $lat . "," . $lon . "%7clabel%3a" . ++$rowId;
392
+			}
393
+		}
394
+		$imgUrl .= "&format=png&maptype=" . $maptype;
395
+		global $conf;
396
+		$imgUrl .= "&language=" . $conf ['lang'];
397
+		if($this->getConf('googleAPIkey')) {
398
+			$imgUrl .= "&key=" . $this->getConf('googleAPIkey');
399
+		}
400
+		// dbglog($imgUrl,'syntax_plugin_openlayersmap_olmap::getGoogle: Google image url is:');
401
+		return $imgUrl;
402
+	}
403
+
404
+	/**
405
+	 * Create a MapQuest static map API image url.
406
+	 *
407
+	 * @param array $gmap
408
+	 * @param array $overlay
409
+	 */
410
+	/*
411 411
    private function _getMapQuest($gmap, $overlay) {
412 412
        $sUrl = $this->getConf ( 'iconUrlOverload' );
413 413
        if (! $sUrl) {
@@ -465,337 +465,337 @@  discard block
 block discarded – undo
465 465
    }
466 466
    */
467 467
 
468
-    /**
469
-     * Create a static OSM map image url w/ the poi from http://staticmap.openstreetmap.de (staticMapLite)
470
-     * use http://staticmap.openstreetmap.de "staticMapLite" or a local version
471
-     *
472
-     * @param array $gmap
473
-     * @param array $overlay
474
-     *
475
-     * @return false|string
476
-     * @todo implementation for http://ojw.dev.openstreetmap.org/StaticMapDev/
477
-     */
478
-    private function getStaticOSM(array $gmap, array $overlay) {
479
-        global $conf;
480
-
481
-        if($this->getConf('optionStaticMapGenerator') == 'local') {
482
-            // using local basemap composer
483
-            if(!$myMap = plugin_load('helper', 'openlayersmap_staticmap')) {
484
-                dbglog(
485
-                    $myMap,
486
-                    'openlayersmap_staticmap plugin is not available for use.'
487
-                );
488
-            }
489
-            if(!$geophp = plugin_load('helper', 'geophp')) {
490
-                dbglog($geophp, 'geophp plugin is not available for use.');
491
-            }
492
-            $size = str_replace("px", "", $gmap ['width']) . "x"
493
-                . str_replace("px", "", $gmap ['height']);
494
-
495
-            $markers = array();
496
-            if(!empty ($overlay)) {
497
-                foreach($overlay as $data) {
498
-                    list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
499
-                    $iconStyle  = substr($img, 0, strlen($img) - 4);
500
-                    $markers [] = array(
501
-                        'lat'  => $lat,
502
-                        'lon'  => $lon,
503
-                        'type' => $iconStyle
504
-                    );
505
-                }
506
-            }
507
-
508
-            $apikey = '';
509
-            switch($gmap ['baselyr']) {
510
-                case 'mapnik' :
511
-                case 'openstreetmap' :
512
-                    $maptype = 'openstreetmap';
513
-                    break;
514
-                case 'transport' :
515
-                    $maptype = 'transport';
516
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
517
-                    break;
518
-                case 'landscape' :
519
-                    $maptype = 'landscape';
520
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
521
-                    break;
522
-                case 'outdoors' :
523
-                    $maptype = 'outdoors';
524
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
525
-                    break;
526
-                case 'cycle map' :
527
-                    $maptype = 'cycle';
528
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
529
-                    break;
530
-                case 'hike and bike map' :
531
-                    $maptype = 'hikeandbike';
532
-                    break;
533
-                case 'mapquest hybrid' :
534
-                case 'mapquest road' :
535
-                case 'mapquest sat' :
536
-                    $maptype = 'mapquest';
537
-                    break;
538
-                default :
539
-                    $maptype = '';
540
-                    break;
541
-            }
542
-
543
-            $result = $myMap->getMap(
544
-                $gmap ['lat'], $gmap ['lon'], $gmap ['zoom'], $size, $maptype, $markers,
545
-                $gmap ['gpxfile'], $gmap ['kmlfile'], $gmap ['geojsonfile'], $apikey
546
-            );
547
-        } else {
548
-            // using external basemap composer
549
-
550
-            // https://staticmap.openstreetmap.de/staticmap.php?center=47.000622235634,10
551
-            //.117187497601&zoom=5&size=500x350
552
-            // &markers=48.999812532766,8.3593749976708,lightblue1|43.154850037315,17.499999997306,
553
-            //  lightblue1|49.487527053077,10.820312497573,ltblu-pushpin|47.951071133739,15.917968747369,
554
-            //  ol-marker|47.921629720114,18.027343747285,ol-marker-gold|47.951071133739,19.257812497236,
555
-            //  ol-marker-blue|47.180141361692,19.257812497236,ol-marker-green
556
-            $imgUrl = "https://staticmap.openstreetmap.de/staticmap.php";
557
-            $imgUrl .= "?center=" . $gmap ['lat'] . "," . $gmap ['lon'];
558
-            $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
559
-                . str_replace("px", "", $gmap ['height']);
560
-
561
-            if($gmap ['zoom'] > 16) {
562
-                // actually this could even be 18, but that seems overkill
563
-                $imgUrl .= "&zoom=16";
564
-            } else {
565
-                $imgUrl .= "&zoom=" . $gmap ['zoom'];
566
-            }
567
-
568
-            if(!empty ($overlay)) {
569
-                $rowId  = 0;
570
-                $imgUrl .= "&markers=";
571
-                foreach($overlay as $data) {
572
-                    list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
573
-                    $rowId++;
574
-                    $iconStyle = "lightblue$rowId";
575
-                    $imgUrl    .= "$lat,$lon,$iconStyle%7c";
576
-                }
577
-                $imgUrl = substr($imgUrl, 0, -3);
578
-            }
579
-
580
-            $result = $imgUrl;
581
-        }
582
-        // dbglog ( $result, 'syntax_plugin_openlayersmap_olmap::getStaticOSM: osm image url is:' );
583
-        return $result;
584
-    }
585
-
586
-    /**
587
-     * Create a Bing maps static image url w/ the poi.
588
-     *
589
-     * @param array $gmap
590
-     * @param array $overlay
591
-     * @return string
592
-     */
593
-    private function getBing(array $gmap, array $overlay): string {
594
-        switch($gmap ['baselyr']) {
595
-            case 've hybrid' :
596
-            case 'bing hybrid' :
597
-                $maptype = 'AerialWithLabels';
598
-                break;
599
-            case 've sat' :
600
-            case 'bing sat' :
601
-                $maptype = 'Aerial';
602
-                break;
603
-            case 've normal' :
604
-            case 've road' :
605
-            case 've' :
606
-            case 'bing road' :
607
-            default :
608
-                $maptype = 'Road';
609
-                break;
610
-        }
611
-        $imgUrl = "https://dev.virtualearth.net/REST/v1/Imagery/Map/" . $maptype;// . "/";
612
-        if($this->getConf('autoZoomMap')) {
613
-            $bbox = $this->calcBBOX($overlay, $gmap ['lat'], $gmap ['lon']);
614
-            //$imgUrl .= "?ma=" . $bbox ['minlat'] . "," . $bbox ['minlon'] . ","
615
-            //          . $bbox ['maxlat'] . "," . $bbox ['maxlon'];
616
-            $imgUrl .= "?ma=" . $bbox ['minlat'] . "%2C" . $bbox ['minlon'] . "%2C" . $bbox ['maxlat']
617
-                . "%2C" . $bbox ['maxlon'];
618
-            $imgUrl .= "&dcl=1";
619
-        }
620
-        if(strpos($imgUrl, "?") === false)
621
-            $imgUrl .= "?";
622
-
623
-        //$imgUrl .= "&ms=" . str_replace ( "px", "", $gmap ['width'] ) . ","
624
-        //          . str_replace ( "px", "", $gmap ['height'] );
625
-        $imgUrl .= "&ms=" . str_replace("px", "", $gmap ['width']) . "%2C"
626
-            . str_replace("px", "", $gmap ['height']);
627
-        $imgUrl .= "&key=" . $this->getConf('bingAPIKey');
628
-        if(!empty ($overlay)) {
629
-            $rowId = 0;
630
-            foreach($overlay as $data) {
631
-                list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
632
-                // TODO icon style lookup, see: http://msdn.microsoft.com/en-us/library/ff701719.aspx for iconStyle
633
-                $iconStyle = 32;
634
-                $rowId++;
635
-                // NOTE: the max number of pushpins is 18! or we have to use POST
636
-                //  (http://msdn.microsoft.com/en-us/library/ff701724.aspx)
637
-                if($rowId == 18) {
638
-                    break;
639
-                }
640
-                //$imgUrl .= "&pp=$lat,$lon;$iconStyle;$rowId";
641
-                $imgUrl .= "&pp=$lat%2C$lon%3B$iconStyle%3B$rowId";
642
-
643
-            }
644
-        }
645
-        global $conf;
646
-        $imgUrl .= "&fmt=png";
647
-        $imgUrl .= "&c=" . $conf ['lang'];
648
-        // dbglog($imgUrl,'syntax_plugin_openlayersmap_olmap::getBing: bing image url is:');
649
-        return $imgUrl;
650
-    }
651
-
652
-    /**
653
-     * Calculate the minimum bbox for a start location + poi.
654
-     *
655
-     * @param array $overlay
656
-     *            multi-dimensional array of array($lat, $lon, $text, $angle, $opacity, $img)
657
-     * @param float $lat
658
-     *            latitude for map center
659
-     * @param float $lon
660
-     *            longitude for map center
661
-     * @return array :float array describing the mbr and center point
662
-     */
663
-    private function calcBBOX(array $overlay, float $lat, float $lon): array {
664
-        $lats = array($lat);
665
-        $lons = array($lon);
666
-        foreach($overlay as $data) {
667
-            list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
668
-            $lats [] = $lat;
669
-            $lons [] = $lon;
670
-        }
671
-        sort($lats);
672
-        sort($lons);
673
-        // TODO: make edge/wrap around cases work
674
-        $centerlat = $lats [0] + ($lats [count($lats) - 1] - $lats [0]);
675
-        $centerlon = $lons [0] + ($lons [count($lats) - 1] - $lons [0]);
676
-        return array(
677
-            'minlat'    => $lats [0],
678
-            'minlon'    => $lons [0],
679
-            'maxlat'    => $lats [count($lats) - 1],
680
-            'maxlon'    => $lons [count($lats) - 1],
681
-            'centerlat' => $centerlat,
682
-            'centerlon' => $centerlon
683
-        );
684
-    }
685
-
686
-    /**
687
-     * convert latitude in decimal degrees to DMS+hemisphere.
688
-     *
689
-     * @param float $decimaldegrees
690
-     * @return string
691
-     * @todo move this into a shared library
692
-     */
693
-    private function convertLat(float $decimaldegrees): string {
694
-        if(strpos($decimaldegrees, '-') !== false) {
695
-            $latPos = "S";
696
-        } else {
697
-            $latPos = "N";
698
-        }
699
-        $dms = $this->convertDDtoDMS(abs($decimaldegrees));
700
-        return hsc($dms . $latPos);
701
-    }
702
-
703
-    /**
704
-     * Convert decimal degrees to degrees, minutes, seconds format
705
-     *
706
-     * @param float $decimaldegrees
707
-     * @return string dms
708
-     * @todo move this into a shared library
709
-     */
710
-    private function convertDDtoDMS(float $decimaldegrees): string {
711
-        $dms  = floor($decimaldegrees);
712
-        $secs = ($decimaldegrees - $dms) * 3600;
713
-        $min  = floor($secs / 60);
714
-        $sec  = round($secs - ($min * 60), 3);
715
-        $dms  .= 'º' . $min . '\'' . $sec . '"';
716
-        return $dms;
717
-    }
718
-
719
-    /**
720
-     * convert longitude in decimal degrees to DMS+hemisphere.
721
-     *
722
-     * @param float $decimaldegrees
723
-     * @return string
724
-     * @todo move this into a shared library
725
-     */
726
-    private function convertLon(float $decimaldegrees): string {
727
-        if(strpos($decimaldegrees, '-') !== false) {
728
-            $lonPos = "W";
729
-        } else {
730
-            $lonPos = "E";
731
-        }
732
-        $dms = $this->convertDDtoDMS(abs($decimaldegrees));
733
-        return hsc($dms . $lonPos);
734
-    }
735
-
736
-    /**
737
-     * Figures out the base filename of a media path.
738
-     *
739
-     * @param string $mediaLink
740
-     * @return string
741
-     */
742
-    private function getFileName(string $mediaLink): string {
743
-        $mediaLink = str_replace('[[', '', $mediaLink);
744
-        $mediaLink = str_replace(']]', '', $mediaLink);
745
-        $mediaLink = substr($mediaLink, 0, -4);
746
-        $parts     = explode(':', $mediaLink);
747
-        $mediaLink = end($parts);
748
-        return str_replace('_', ' ', $mediaLink);
749
-    }
750
-
751
-    /**
752
-     *
753
-     * @see DokuWiki_Syntax_Plugin::render()
754
-     */
755
-    public function render($format, Doku_Renderer $renderer, $data): bool {
756
-        // set to true after external scripts tags are written
757
-        static $initialised = false;
758
-        // incremented for each map tag in the page source so we can keep track of each map in this page
759
-        static $mapnumber = 0;
760
-
761
-        // dbglog($data, 'olmap::render() data.');
762
-        list ($mapid, $param, $mainLat, $mainLon, $poitable, $poitabledesc, $staticImgUrl, $_firstimage) = $data;
763
-
764
-        if($format == 'xhtml') {
765
-            $olscript     = '';
766
-            $stamenEnable = $this->getConf('enableStamen');
767
-            $osmEnable    = $this->getConf('enableOSM');
768
-            $enableBing   = $this->getConf('enableBing');
769
-
770
-            $scriptEnable = '';
771
-            if(!$initialised) {
772
-                $initialised = true;
773
-                // render necessary script tags only once
774
-                $olscript = '<script defer="defer" src="' . DOKU_BASE . 'lib/plugins/openlayersmap/ol6/ol.js"></script>
468
+	/**
469
+	 * Create a static OSM map image url w/ the poi from http://staticmap.openstreetmap.de (staticMapLite)
470
+	 * use http://staticmap.openstreetmap.de "staticMapLite" or a local version
471
+	 *
472
+	 * @param array $gmap
473
+	 * @param array $overlay
474
+	 *
475
+	 * @return false|string
476
+	 * @todo implementation for http://ojw.dev.openstreetmap.org/StaticMapDev/
477
+	 */
478
+	private function getStaticOSM(array $gmap, array $overlay) {
479
+		global $conf;
480
+
481
+		if($this->getConf('optionStaticMapGenerator') == 'local') {
482
+			// using local basemap composer
483
+			if(!$myMap = plugin_load('helper', 'openlayersmap_staticmap')) {
484
+				dbglog(
485
+					$myMap,
486
+					'openlayersmap_staticmap plugin is not available for use.'
487
+				);
488
+			}
489
+			if(!$geophp = plugin_load('helper', 'geophp')) {
490
+				dbglog($geophp, 'geophp plugin is not available for use.');
491
+			}
492
+			$size = str_replace("px", "", $gmap ['width']) . "x"
493
+				. str_replace("px", "", $gmap ['height']);
494
+
495
+			$markers = array();
496
+			if(!empty ($overlay)) {
497
+				foreach($overlay as $data) {
498
+					list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
499
+					$iconStyle  = substr($img, 0, strlen($img) - 4);
500
+					$markers [] = array(
501
+						'lat'  => $lat,
502
+						'lon'  => $lon,
503
+						'type' => $iconStyle
504
+					);
505
+				}
506
+			}
507
+
508
+			$apikey = '';
509
+			switch($gmap ['baselyr']) {
510
+				case 'mapnik' :
511
+				case 'openstreetmap' :
512
+					$maptype = 'openstreetmap';
513
+					break;
514
+				case 'transport' :
515
+					$maptype = 'transport';
516
+					$apikey  = '?apikey=' . $this->getConf('tfApiKey');
517
+					break;
518
+				case 'landscape' :
519
+					$maptype = 'landscape';
520
+					$apikey  = '?apikey=' . $this->getConf('tfApiKey');
521
+					break;
522
+				case 'outdoors' :
523
+					$maptype = 'outdoors';
524
+					$apikey  = '?apikey=' . $this->getConf('tfApiKey');
525
+					break;
526
+				case 'cycle map' :
527
+					$maptype = 'cycle';
528
+					$apikey  = '?apikey=' . $this->getConf('tfApiKey');
529
+					break;
530
+				case 'hike and bike map' :
531
+					$maptype = 'hikeandbike';
532
+					break;
533
+				case 'mapquest hybrid' :
534
+				case 'mapquest road' :
535
+				case 'mapquest sat' :
536
+					$maptype = 'mapquest';
537
+					break;
538
+				default :
539
+					$maptype = '';
540
+					break;
541
+			}
542
+
543
+			$result = $myMap->getMap(
544
+				$gmap ['lat'], $gmap ['lon'], $gmap ['zoom'], $size, $maptype, $markers,
545
+				$gmap ['gpxfile'], $gmap ['kmlfile'], $gmap ['geojsonfile'], $apikey
546
+			);
547
+		} else {
548
+			// using external basemap composer
549
+
550
+			// https://staticmap.openstreetmap.de/staticmap.php?center=47.000622235634,10
551
+			//.117187497601&zoom=5&size=500x350
552
+			// &markers=48.999812532766,8.3593749976708,lightblue1|43.154850037315,17.499999997306,
553
+			//  lightblue1|49.487527053077,10.820312497573,ltblu-pushpin|47.951071133739,15.917968747369,
554
+			//  ol-marker|47.921629720114,18.027343747285,ol-marker-gold|47.951071133739,19.257812497236,
555
+			//  ol-marker-blue|47.180141361692,19.257812497236,ol-marker-green
556
+			$imgUrl = "https://staticmap.openstreetmap.de/staticmap.php";
557
+			$imgUrl .= "?center=" . $gmap ['lat'] . "," . $gmap ['lon'];
558
+			$imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
559
+				. str_replace("px", "", $gmap ['height']);
560
+
561
+			if($gmap ['zoom'] > 16) {
562
+				// actually this could even be 18, but that seems overkill
563
+				$imgUrl .= "&zoom=16";
564
+			} else {
565
+				$imgUrl .= "&zoom=" . $gmap ['zoom'];
566
+			}
567
+
568
+			if(!empty ($overlay)) {
569
+				$rowId  = 0;
570
+				$imgUrl .= "&markers=";
571
+				foreach($overlay as $data) {
572
+					list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
573
+					$rowId++;
574
+					$iconStyle = "lightblue$rowId";
575
+					$imgUrl    .= "$lat,$lon,$iconStyle%7c";
576
+				}
577
+				$imgUrl = substr($imgUrl, 0, -3);
578
+			}
579
+
580
+			$result = $imgUrl;
581
+		}
582
+		// dbglog ( $result, 'syntax_plugin_openlayersmap_olmap::getStaticOSM: osm image url is:' );
583
+		return $result;
584
+	}
585
+
586
+	/**
587
+	 * Create a Bing maps static image url w/ the poi.
588
+	 *
589
+	 * @param array $gmap
590
+	 * @param array $overlay
591
+	 * @return string
592
+	 */
593
+	private function getBing(array $gmap, array $overlay): string {
594
+		switch($gmap ['baselyr']) {
595
+			case 've hybrid' :
596
+			case 'bing hybrid' :
597
+				$maptype = 'AerialWithLabels';
598
+				break;
599
+			case 've sat' :
600
+			case 'bing sat' :
601
+				$maptype = 'Aerial';
602
+				break;
603
+			case 've normal' :
604
+			case 've road' :
605
+			case 've' :
606
+			case 'bing road' :
607
+			default :
608
+				$maptype = 'Road';
609
+				break;
610
+		}
611
+		$imgUrl = "https://dev.virtualearth.net/REST/v1/Imagery/Map/" . $maptype;// . "/";
612
+		if($this->getConf('autoZoomMap')) {
613
+			$bbox = $this->calcBBOX($overlay, $gmap ['lat'], $gmap ['lon']);
614
+			//$imgUrl .= "?ma=" . $bbox ['minlat'] . "," . $bbox ['minlon'] . ","
615
+			//          . $bbox ['maxlat'] . "," . $bbox ['maxlon'];
616
+			$imgUrl .= "?ma=" . $bbox ['minlat'] . "%2C" . $bbox ['minlon'] . "%2C" . $bbox ['maxlat']
617
+				. "%2C" . $bbox ['maxlon'];
618
+			$imgUrl .= "&dcl=1";
619
+		}
620
+		if(strpos($imgUrl, "?") === false)
621
+			$imgUrl .= "?";
622
+
623
+		//$imgUrl .= "&ms=" . str_replace ( "px", "", $gmap ['width'] ) . ","
624
+		//          . str_replace ( "px", "", $gmap ['height'] );
625
+		$imgUrl .= "&ms=" . str_replace("px", "", $gmap ['width']) . "%2C"
626
+			. str_replace("px", "", $gmap ['height']);
627
+		$imgUrl .= "&key=" . $this->getConf('bingAPIKey');
628
+		if(!empty ($overlay)) {
629
+			$rowId = 0;
630
+			foreach($overlay as $data) {
631
+				list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
632
+				// TODO icon style lookup, see: http://msdn.microsoft.com/en-us/library/ff701719.aspx for iconStyle
633
+				$iconStyle = 32;
634
+				$rowId++;
635
+				// NOTE: the max number of pushpins is 18! or we have to use POST
636
+				//  (http://msdn.microsoft.com/en-us/library/ff701724.aspx)
637
+				if($rowId == 18) {
638
+					break;
639
+				}
640
+				//$imgUrl .= "&pp=$lat,$lon;$iconStyle;$rowId";
641
+				$imgUrl .= "&pp=$lat%2C$lon%3B$iconStyle%3B$rowId";
642
+
643
+			}
644
+		}
645
+		global $conf;
646
+		$imgUrl .= "&fmt=png";
647
+		$imgUrl .= "&c=" . $conf ['lang'];
648
+		// dbglog($imgUrl,'syntax_plugin_openlayersmap_olmap::getBing: bing image url is:');
649
+		return $imgUrl;
650
+	}
651
+
652
+	/**
653
+	 * Calculate the minimum bbox for a start location + poi.
654
+	 *
655
+	 * @param array $overlay
656
+	 *            multi-dimensional array of array($lat, $lon, $text, $angle, $opacity, $img)
657
+	 * @param float $lat
658
+	 *            latitude for map center
659
+	 * @param float $lon
660
+	 *            longitude for map center
661
+	 * @return array :float array describing the mbr and center point
662
+	 */
663
+	private function calcBBOX(array $overlay, float $lat, float $lon): array {
664
+		$lats = array($lat);
665
+		$lons = array($lon);
666
+		foreach($overlay as $data) {
667
+			list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
668
+			$lats [] = $lat;
669
+			$lons [] = $lon;
670
+		}
671
+		sort($lats);
672
+		sort($lons);
673
+		// TODO: make edge/wrap around cases work
674
+		$centerlat = $lats [0] + ($lats [count($lats) - 1] - $lats [0]);
675
+		$centerlon = $lons [0] + ($lons [count($lats) - 1] - $lons [0]);
676
+		return array(
677
+			'minlat'    => $lats [0],
678
+			'minlon'    => $lons [0],
679
+			'maxlat'    => $lats [count($lats) - 1],
680
+			'maxlon'    => $lons [count($lats) - 1],
681
+			'centerlat' => $centerlat,
682
+			'centerlon' => $centerlon
683
+		);
684
+	}
685
+
686
+	/**
687
+	 * convert latitude in decimal degrees to DMS+hemisphere.
688
+	 *
689
+	 * @param float $decimaldegrees
690
+	 * @return string
691
+	 * @todo move this into a shared library
692
+	 */
693
+	private function convertLat(float $decimaldegrees): string {
694
+		if(strpos($decimaldegrees, '-') !== false) {
695
+			$latPos = "S";
696
+		} else {
697
+			$latPos = "N";
698
+		}
699
+		$dms = $this->convertDDtoDMS(abs($decimaldegrees));
700
+		return hsc($dms . $latPos);
701
+	}
702
+
703
+	/**
704
+	 * Convert decimal degrees to degrees, minutes, seconds format
705
+	 *
706
+	 * @param float $decimaldegrees
707
+	 * @return string dms
708
+	 * @todo move this into a shared library
709
+	 */
710
+	private function convertDDtoDMS(float $decimaldegrees): string {
711
+		$dms  = floor($decimaldegrees);
712
+		$secs = ($decimaldegrees - $dms) * 3600;
713
+		$min  = floor($secs / 60);
714
+		$sec  = round($secs - ($min * 60), 3);
715
+		$dms  .= 'º' . $min . '\'' . $sec . '"';
716
+		return $dms;
717
+	}
718
+
719
+	/**
720
+	 * convert longitude in decimal degrees to DMS+hemisphere.
721
+	 *
722
+	 * @param float $decimaldegrees
723
+	 * @return string
724
+	 * @todo move this into a shared library
725
+	 */
726
+	private function convertLon(float $decimaldegrees): string {
727
+		if(strpos($decimaldegrees, '-') !== false) {
728
+			$lonPos = "W";
729
+		} else {
730
+			$lonPos = "E";
731
+		}
732
+		$dms = $this->convertDDtoDMS(abs($decimaldegrees));
733
+		return hsc($dms . $lonPos);
734
+	}
735
+
736
+	/**
737
+	 * Figures out the base filename of a media path.
738
+	 *
739
+	 * @param string $mediaLink
740
+	 * @return string
741
+	 */
742
+	private function getFileName(string $mediaLink): string {
743
+		$mediaLink = str_replace('[[', '', $mediaLink);
744
+		$mediaLink = str_replace(']]', '', $mediaLink);
745
+		$mediaLink = substr($mediaLink, 0, -4);
746
+		$parts     = explode(':', $mediaLink);
747
+		$mediaLink = end($parts);
748
+		return str_replace('_', ' ', $mediaLink);
749
+	}
750
+
751
+	/**
752
+	 *
753
+	 * @see DokuWiki_Syntax_Plugin::render()
754
+	 */
755
+	public function render($format, Doku_Renderer $renderer, $data): bool {
756
+		// set to true after external scripts tags are written
757
+		static $initialised = false;
758
+		// incremented for each map tag in the page source so we can keep track of each map in this page
759
+		static $mapnumber = 0;
760
+
761
+		// dbglog($data, 'olmap::render() data.');
762
+		list ($mapid, $param, $mainLat, $mainLon, $poitable, $poitabledesc, $staticImgUrl, $_firstimage) = $data;
763
+
764
+		if($format == 'xhtml') {
765
+			$olscript     = '';
766
+			$stamenEnable = $this->getConf('enableStamen');
767
+			$osmEnable    = $this->getConf('enableOSM');
768
+			$enableBing   = $this->getConf('enableBing');
769
+
770
+			$scriptEnable = '';
771
+			if(!$initialised) {
772
+				$initialised = true;
773
+				// render necessary script tags only once
774
+				$olscript = '<script defer="defer" src="' . DOKU_BASE . 'lib/plugins/openlayersmap/ol6/ol.js"></script>
775 775
 <script defer="defer" src="' . DOKU_BASE . 'lib/plugins/openlayersmap/ol6/ol-layerswitcher.js"></script>';
776 776
 
777
-                $scriptEnable = '<script defer="defer" src="data:text/javascript;base64,';
778
-                $scriptSrc    = $olscript ? 'const olEnable=true;' : 'const olEnable=false;';
779
-                $scriptSrc    .= 'const osmEnable=' . ($osmEnable ? 'true' : 'false') . ';';
780
-                $scriptSrc    .= 'const stamenEnable=' . ($stamenEnable ? 'true' : 'false') . ';';
781
-                $scriptSrc    .= 'const bEnable=' . ($enableBing ? 'true' : 'false') . ';';
782
-                $scriptSrc    .= 'const bApiKey="' . $this->getConf('bingAPIKey') . '";';
783
-                $scriptSrc    .= 'const tfApiKey="' . $this->getConf('tfApiKey') . '";';
784
-                $scriptSrc    .= 'const gApiKey="' . $this->getConf('googleAPIkey') . '";';
785
-                $scriptSrc    .= 'olMapData = []; let olMaps = {}; let olMapOverlays = {};';
786
-                $scriptEnable .= base64_encode($scriptSrc);
787
-                $scriptEnable .= '"></script>';
788
-            }
789
-            $renderer->doc .= "$olscript\n$scriptEnable";
790
-            $renderer->doc .= '<div class="olMapHelp">' . $this->locale_xhtml("help") . '</div>';
791
-            if($this->getConf('enableA11y')) {
792
-                $renderer->doc .= '<div id="' . $mapid . '-static" class="olStaticMap">'
793
-                    . p_render($format, p_get_instructions($staticImgUrl), $info) . '</div>';
794
-            }
795
-            $renderer->doc .= '<div id="' . $mapid . '-clearer" class="clearer"><p>&nbsp;</p></div>';
796
-            if($this->getConf('enableA11y')) {
797
-                // render a table of the POI for the print and a11y presentation, it is hidden using javascript
798
-                $renderer->doc .= '
777
+				$scriptEnable = '<script defer="defer" src="data:text/javascript;base64,';
778
+				$scriptSrc    = $olscript ? 'const olEnable=true;' : 'const olEnable=false;';
779
+				$scriptSrc    .= 'const osmEnable=' . ($osmEnable ? 'true' : 'false') . ';';
780
+				$scriptSrc    .= 'const stamenEnable=' . ($stamenEnable ? 'true' : 'false') . ';';
781
+				$scriptSrc    .= 'const bEnable=' . ($enableBing ? 'true' : 'false') . ';';
782
+				$scriptSrc    .= 'const bApiKey="' . $this->getConf('bingAPIKey') . '";';
783
+				$scriptSrc    .= 'const tfApiKey="' . $this->getConf('tfApiKey') . '";';
784
+				$scriptSrc    .= 'const gApiKey="' . $this->getConf('googleAPIkey') . '";';
785
+				$scriptSrc    .= 'olMapData = []; let olMaps = {}; let olMapOverlays = {};';
786
+				$scriptEnable .= base64_encode($scriptSrc);
787
+				$scriptEnable .= '"></script>';
788
+			}
789
+			$renderer->doc .= "$olscript\n$scriptEnable";
790
+			$renderer->doc .= '<div class="olMapHelp">' . $this->locale_xhtml("help") . '</div>';
791
+			if($this->getConf('enableA11y')) {
792
+				$renderer->doc .= '<div id="' . $mapid . '-static" class="olStaticMap">'
793
+					. p_render($format, p_get_instructions($staticImgUrl), $info) . '</div>';
794
+			}
795
+			$renderer->doc .= '<div id="' . $mapid . '-clearer" class="clearer"><p>&nbsp;</p></div>';
796
+			if($this->getConf('enableA11y')) {
797
+				// render a table of the POI for the print and a11y presentation, it is hidden using javascript
798
+				$renderer->doc .= '
799 799
                 <div class="olPOItableSpan" id="' . $mapid . '-table-span">
800 800
                     <table class="olPOItable" id="' . $mapid . '-table">
801 801
                     <caption class="olPOITblCaption">' . $this->getLang('olmapPOItitle') . '</caption>
@@ -804,64 +804,64 @@  discard block
 block discarded – undo
804 804
                     <th class="rowId" scope="col">id</th>
805 805
                     <th class="icon" scope="col">' . $this->getLang('olmapPOIicon') . '</th>
806 806
                     <th class="lat" scope="col" title="' . $this->getLang('olmapPOIlatTitle') . '">'
807
-                    . $this->getLang('olmapPOIlat') . '</th>
807
+					. $this->getLang('olmapPOIlat') . '</th>
808 808
                     <th class="lon" scope="col" title="' . $this->getLang('olmapPOIlonTitle') . '">'
809
-                    . $this->getLang('olmapPOIlon') . '</th>
809
+					. $this->getLang('olmapPOIlon') . '</th>
810 810
                     <th class="txt" scope="col">' . $this->getLang('olmapPOItxt') . '</th>
811 811
                     </tr>
812 812
                     </thead>';
813
-                if($poitabledesc != '') {
814
-                    $renderer->doc .= '<tfoot class="olPOITblFooter"><tr><td colspan="5">' . $poitabledesc
815
-                        . '</td></tr></tfoot>';
816
-                }
817
-                $renderer->doc .= '<tbody class="olPOITblBody">' . $poitable . '</tbody>
813
+				if($poitabledesc != '') {
814
+					$renderer->doc .= '<tfoot class="olPOITblFooter"><tr><td colspan="5">' . $poitabledesc
815
+						. '</td></tr></tfoot>';
816
+				}
817
+				$renderer->doc .= '<tbody class="olPOITblBody">' . $poitable . '</tbody>
818 818
                     </table>
819 819
                 </div>';
820
-                $renderer->doc .= "\n";
821
-            }
822
-            // render inline mapscript parts
823
-            $renderer->doc .= '<script defer="defer" src="data:text/javascript;base64,';
824
-            $renderer->doc .= base64_encode("olMapData[$mapnumber] = $param");
825
-            $renderer->doc .= '"></script>';
826
-            $mapnumber++;
827
-            return true;
828
-        } elseif($format == 'metadata') {
829
-            if(!(($this->dflt ['lat'] == $mainLat) && ($this->dflt ['lon'] == $mainLon))) {
830
-                // render geo metadata, unless they are the default
831
-                $renderer->meta ['geo'] ['lat'] = $mainLat;
832
-                $renderer->meta ['geo'] ['lon'] = $mainLon;
833
-                if($geophp = plugin_load('helper', 'geophp')) {
834
-                    // if we have the geoPHP helper, add the geohash
835
-
836
-                    // fails with older php versions..
837
-                    // $renderer->meta['geo']['geohash'] = (new Point($mainLon,$mainLat))->out('geohash');
838
-                    $p                                  = new Point ($mainLon, $mainLat);
839
-                    $renderer->meta ['geo'] ['geohash'] = $p->out('geohash');
840
-                }
841
-            }
842
-
843
-            if(($this->getConf('enableA11y')) && (!empty ($_firstimage))) {
844
-                // add map local image into relation/firstimage if not already filled and when it is a local image
845
-
846
-                global $ID;
847
-                $rel = p_get_metadata($ID, 'relation', METADATA_RENDER_USING_CACHE);
848
-                $img = $rel ['firstimage'];
849
-                if(empty ($img) /* || $img == $_firstimage*/) {
850
-                    //dbglog ( $_firstimage,
851
-                    // 'olmap::render#rendering image relation metadata for _firstimage as $img was empty or same.' );
852
-                    // This seems to never work; the firstimage entry in the .meta file is empty
853
-                    // $renderer->meta['relation']['firstimage'] = $_firstimage;
854
-
855
-                    // ... and neither does this; the firstimage entry in the .meta file is empty
856
-                    // $relation = array('relation'=>array('firstimage'=>$_firstimage));
857
-                    // p_set_metadata($ID, $relation, false, false);
858
-
859
-                    // ... this works
860
-                    $renderer->internalmedia($_firstimage, $poitabledesc);
861
-                }
862
-            }
863
-            return true;
864
-        }
865
-        return false;
866
-    }
820
+				$renderer->doc .= "\n";
821
+			}
822
+			// render inline mapscript parts
823
+			$renderer->doc .= '<script defer="defer" src="data:text/javascript;base64,';
824
+			$renderer->doc .= base64_encode("olMapData[$mapnumber] = $param");
825
+			$renderer->doc .= '"></script>';
826
+			$mapnumber++;
827
+			return true;
828
+		} elseif($format == 'metadata') {
829
+			if(!(($this->dflt ['lat'] == $mainLat) && ($this->dflt ['lon'] == $mainLon))) {
830
+				// render geo metadata, unless they are the default
831
+				$renderer->meta ['geo'] ['lat'] = $mainLat;
832
+				$renderer->meta ['geo'] ['lon'] = $mainLon;
833
+				if($geophp = plugin_load('helper', 'geophp')) {
834
+					// if we have the geoPHP helper, add the geohash
835
+
836
+					// fails with older php versions..
837
+					// $renderer->meta['geo']['geohash'] = (new Point($mainLon,$mainLat))->out('geohash');
838
+					$p                                  = new Point ($mainLon, $mainLat);
839
+					$renderer->meta ['geo'] ['geohash'] = $p->out('geohash');
840
+				}
841
+			}
842
+
843
+			if(($this->getConf('enableA11y')) && (!empty ($_firstimage))) {
844
+				// add map local image into relation/firstimage if not already filled and when it is a local image
845
+
846
+				global $ID;
847
+				$rel = p_get_metadata($ID, 'relation', METADATA_RENDER_USING_CACHE);
848
+				$img = $rel ['firstimage'];
849
+				if(empty ($img) /* || $img == $_firstimage*/) {
850
+					//dbglog ( $_firstimage,
851
+					// 'olmap::render#rendering image relation metadata for _firstimage as $img was empty or same.' );
852
+					// This seems to never work; the firstimage entry in the .meta file is empty
853
+					// $renderer->meta['relation']['firstimage'] = $_firstimage;
854
+
855
+					// ... and neither does this; the firstimage entry in the .meta file is empty
856
+					// $relation = array('relation'=>array('firstimage'=>$_firstimage));
857
+					// p_set_metadata($ID, $relation, false, false);
858
+
859
+					// ... this works
860
+					$renderer->internalmedia($_firstimage, $poitabledesc);
861
+				}
862
+			}
863
+			return true;
864
+		}
865
+		return false;
866
+	}
867 867
 }
Please login to merge, or discard this patch.
Spacing   +130 added lines, -130 removed lines patch added patch discarded remove patch
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
         preg_match('(lon[:|=]\"-?\d*\.?\d*\")', $match, $mainLon);
95 95
         $mainLat = substr($mainLat [0], 5, -1);
96 96
         $mainLon = substr($mainLon [0], 5, -1);
97
-        if(!is_numeric($mainLat)) {
97
+        if (!is_numeric($mainLat)) {
98 98
             $mainLat = $this->dflt ['lat'];
99 99
         }
100
-        if(!is_numeric($mainLon)) {
100
+        if (!is_numeric($mainLon)) {
101 101
             $mainLon = $this->dflt ['lon'];
102 102
         }
103 103
 
@@ -108,23 +108,23 @@  discard block
 block discarded – undo
108 108
         $_nocache = false;
109 109
         // choose maptype based on the specified tag
110 110
         $imgUrl = "{{";
111
-        if(stripos($gmap ['baselyr'], 'google') !== false) {
111
+        if (stripos($gmap ['baselyr'], 'google') !== false) {
112 112
             // Google
113 113
             $imgUrl .= $this->getGoogle($gmap, $overlay);
114 114
             $imgUrl .= "&.png";
115
-        } elseif(stripos($gmap ['baselyr'], 'bing') !== false) {
115
+        } elseif (stripos($gmap ['baselyr'], 'bing') !== false) {
116 116
             // Bing
117
-            if(!$this->getConf('bingAPIKey')) {
117
+            if (!$this->getConf('bingAPIKey')) {
118 118
                 // in case there is no Bing api key we'll use OSM
119 119
                 $_firstimageID = $this->getStaticOSM($gmap, $overlay);
120
-                $imgUrl        .= $_firstimageID;
121
-                if($this->getConf('optionStaticMapGenerator') == 'remote') {
120
+                $imgUrl .= $_firstimageID;
121
+                if ($this->getConf('optionStaticMapGenerator') == 'remote') {
122 122
                     $imgUrl .= "&.png";
123 123
                 }
124 124
             } else {
125 125
                 // seems that Bing doesn't like the DW client, turn off caching
126 126
                 $_nocache = true;
127
-                $imgUrl   .= $this->getBing($gmap, $overlay) . "&.png";
127
+                $imgUrl .= $this->getBing($gmap, $overlay)."&.png";
128 128
             }
129 129
         } /* elseif (stripos ( $gmap ['baselyr'], 'mapquest' ) !== false) {
130 130
             // MapQuest
@@ -142,33 +142,33 @@  discard block
 block discarded – undo
142 142
         } */ else {
143 143
             // default OSM
144 144
             $_firstimageID = $this->getStaticOSM($gmap, $overlay);
145
-            $imgUrl        .= $_firstimageID;
146
-            if($this->getConf('optionStaticMapGenerator') == 'remote') {
145
+            $imgUrl .= $_firstimageID;
146
+            if ($this->getConf('optionStaticMapGenerator') == 'remote') {
147 147
                 $imgUrl .= "&.png";
148 148
             }
149 149
         }
150 150
 
151 151
         // append dw p_render specific params and render
152
-        $imgUrl .= "?" . str_replace("px", "", $gmap ['width']) . "x"
152
+        $imgUrl .= "?".str_replace("px", "", $gmap ['width'])."x"
153 153
             . str_replace("px", "", $gmap ['height']);
154 154
         $imgUrl .= "&nolink";
155 155
 
156 156
         // add nocache option for selected services
157
-        if($_nocache) {
157
+        if ($_nocache) {
158 158
             $imgUrl .= "&nocache";
159 159
         }
160 160
 
161
-        $imgUrl .= " |" . $gmap ['summary'] . " }}";
161
+        $imgUrl .= " |".$gmap ['summary']." }}";
162 162
 
163 163
         // dbglog($imgUrl,"complete image tags is:");
164 164
 
165 165
         $mapid = $gmap ['id'];
166 166
         // create a javascript parameter string for the map
167 167
         $param = '';
168
-        foreach($gmap as $key => $val) {
169
-            $param .= is_numeric($val) ? "$key: $val, " : "$key: '" . hsc($val) . "', ";
168
+        foreach ($gmap as $key => $val) {
169
+            $param .= is_numeric($val) ? "$key: $val, " : "$key: '".hsc($val)."', ";
170 170
         }
171
-        if(!empty ($param)) {
171
+        if (!empty ($param)) {
172 172
             $param = substr($param, 0, -2);
173 173
         }
174 174
         unset ($gmap ['id']);
@@ -177,13 +177,13 @@  discard block
 block discarded – undo
177 177
         $poi      = '';
178 178
         $poitable = '';
179 179
         $rowId    = 0;
180
-        if(!empty ($overlay)) {
181
-            foreach($overlay as $data) {
180
+        if (!empty ($overlay)) {
181
+            foreach ($overlay as $data) {
182 182
                 list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
183 183
                 $rowId++;
184 184
                 $poi .= ", {lat:$lat,lon:$lon,txt:'$text',angle:$angle,opacity:$opacity,img:'$img',rowId: $rowId}";
185 185
 
186
-                if($this->getConf('displayformat') === 'DMS') {
186
+                if ($this->getConf('displayformat') === 'DMS') {
187 187
                     $lat = $this->convertLat($lat);
188 188
                     $lon = $this->convertLon($lon);
189 189
                 } else {
@@ -193,52 +193,52 @@  discard block
 block discarded – undo
193 193
 
194 194
                 $poitable .= '
195 195
                     <tr>
196
-                    <td class="rowId">' . $rowId . '</td>
197
-                    <td class="icon"><img src="' . DOKU_BASE . 'lib/plugins/openlayersmap/icons/' . $img . '" alt="'
198
-                    . substr($img, 0, -4) . $this->getlang('alt_legend_poi') . '" /></td>
199
-                    <td class="lat" title="' . $this->getLang('olmapPOIlatTitle') . '">' . $lat . '</td>
200
-                    <td class="lon" title="' . $this->getLang('olmapPOIlonTitle') . '">' . $lon . '</td>
201
-                    <td class="txt">' . $text . '</td>
196
+                    <td class="rowId">' . $rowId.'</td>
197
+                    <td class="icon"><img src="' . DOKU_BASE.'lib/plugins/openlayersmap/icons/'.$img.'" alt="'
198
+                    . substr($img, 0, -4).$this->getlang('alt_legend_poi').'" /></td>
199
+                    <td class="lat" title="' . $this->getLang('olmapPOIlatTitle').'">'.$lat.'</td>
200
+                    <td class="lon" title="' . $this->getLang('olmapPOIlonTitle').'">'.$lon.'</td>
201
+                    <td class="txt">' . $text.'</td>
202 202
                     </tr>';
203 203
             }
204 204
             $poi = substr($poi, 2);
205 205
         }
206
-        if(!empty ($gmap ['kmlfile'])) {
206
+        if (!empty ($gmap ['kmlfile'])) {
207 207
             $poitable .= '
208 208
                     <tr>
209 209
                     <td class="rowId"><img src="' . DOKU_BASE
210 210
                 . 'lib/plugins/openlayersmap/toolbar/kml_file.png" alt="KML file" /></td>
211
-                    <td class="icon"><img src="' . DOKU_BASE . 'lib/plugins/openlayersmap/toolbar/kml_line.png" alt="'
212
-                . $this->getlang('alt_legend_kml') . '" /></td>
213
-                    <td class="txt" colspan="3">KML track: ' . $this->getFileName($gmap ['kmlfile']) . '</td>
211
+                    <td class="icon"><img src="' . DOKU_BASE.'lib/plugins/openlayersmap/toolbar/kml_line.png" alt="'
212
+                . $this->getlang('alt_legend_kml').'" /></td>
213
+                    <td class="txt" colspan="3">KML track: ' . $this->getFileName($gmap ['kmlfile']).'</td>
214 214
                     </tr>';
215 215
         }
216
-        if(!empty ($gmap ['gpxfile'])) {
216
+        if (!empty ($gmap ['gpxfile'])) {
217 217
             $poitable .= '
218 218
                     <tr>
219 219
                     <td class="rowId"><img src="' . DOKU_BASE
220 220
                 . 'lib/plugins/openlayersmap/toolbar/gpx_file.png" alt="GPX file" /></td>
221 221
                     <td class="icon"><img src="' . DOKU_BASE
222 222
                 . 'lib/plugins/openlayersmap/toolbar/gpx_line.png" alt="'
223
-                . $this->getlang('alt_legend_gpx') . '" /></td>
224
-                    <td class="txt" colspan="3">GPX track: ' . $this->getFileName($gmap ['gpxfile']) . '</td>
223
+                . $this->getlang('alt_legend_gpx').'" /></td>
224
+                    <td class="txt" colspan="3">GPX track: ' . $this->getFileName($gmap ['gpxfile']).'</td>
225 225
                     </tr>';
226 226
         }
227
-        if(!empty ($gmap ['geojsonfile'])) {
227
+        if (!empty ($gmap ['geojsonfile'])) {
228 228
             $poitable .= '
229 229
                     <tr>
230 230
                     <td class="rowId"><img src="' . DOKU_BASE
231 231
                 . 'lib/plugins/openlayersmap/toolbar/geojson_file.png" alt="GeoJSON file" /></td>
232 232
                     <td class="icon"><img src="' . DOKU_BASE
233 233
                 . 'lib/plugins/openlayersmap/toolbar/geojson_line.png" alt="'
234
-                . $this->getlang('alt_legend_geojson') . '" /></td>
235
-                    <td class="txt" colspan="3">GeoJSON track: ' . $this->getFileName($gmap ['geojsonfile']) . '</td>
234
+                . $this->getlang('alt_legend_geojson').'" /></td>
235
+                    <td class="txt" colspan="3">GeoJSON track: ' . $this->getFileName($gmap ['geojsonfile']).'</td>
236 236
                     </tr>';
237 237
         }
238 238
 
239 239
         $autozoom = empty ($gmap ['autozoom']) ? $this->getConf('autoZoomMap') : $gmap ['autozoom'];
240
-        $js       = "{mapOpts: {" . $param . ", displayformat: '" . $this->getConf('displayformat')
241
-            . "', autozoom: " . $autozoom . "}, poi: [$poi]};";
240
+        $js       = "{mapOpts: {".$param.", displayformat: '".$this->getConf('displayformat')
241
+            . "', autozoom: ".$autozoom."}, poi: [$poi]};";
242 242
         // unescape the json
243 243
         $poitable = stripslashes($poitable);
244 244
 
@@ -266,21 +266,21 @@  discard block
 block discarded – undo
266 266
         preg_match_all('/(\w*)="(.*?)"/us', $str_params, $param, PREG_SET_ORDER);
267 267
         // parse match for instructions, break into key value pairs
268 268
         $gmap = $this->dflt;
269
-        foreach($gmap as $key => &$value) {
270
-            $defval = $this->getConf('default_' . $key);
271
-            if($defval !== '') {
269
+        foreach ($gmap as $key => &$value) {
270
+            $defval = $this->getConf('default_'.$key);
271
+            if ($defval !== '') {
272 272
                 $value = $defval;
273 273
             }
274 274
         }
275 275
         unset ($value);
276
-        foreach($param as $kvpair) {
276
+        foreach ($param as $kvpair) {
277 277
             list ($match, $key, $val) = $kvpair;
278 278
             $key = strtolower($key);
279
-            if(isset ($gmap [$key])) {
280
-                if($key == 'summary') {
279
+            if (isset ($gmap [$key])) {
280
+                if ($key == 'summary') {
281 281
                     // preserve case for summary field
282 282
                     $gmap [$key] = $val;
283
-                } elseif($key == 'id') {
283
+                } elseif ($key == 'id') {
284 284
                     // preserve case for id field
285 285
                     $gmap [$key] = $val;
286 286
                 } else {
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         );
317 317
         // create poi array
318 318
         $overlay = array();
319
-        foreach($point as $pt) {
319
+        foreach ($point as $pt) {
320 320
             list ($match, $lat, $lon, $angle, $opacity, $img, $text) = $pt;
321 321
             $lat     = is_numeric($lat) ? $lat : 0;
322 322
             $lon     = is_numeric($lon) ? $lon : 0;
@@ -350,10 +350,10 @@  discard block
 block discarded – undo
350 350
      */
351 351
     private function getGoogle(array $gmap, array $overlay): string {
352 352
         $sUrl = $this->getConf('iconUrlOverload');
353
-        if(!$sUrl) {
353
+        if (!$sUrl) {
354 354
             $sUrl = DOKU_URL;
355 355
         }
356
-        switch($gmap ['baselyr']) {
356
+        switch ($gmap ['baselyr']) {
357 357
             case 'google hybrid' :
358 358
                 $maptype = 'hybrid';
359 359
                 break;
@@ -373,29 +373,29 @@  discard block
 block discarded – undo
373 373
         // see: https://developers.google.com/maps/documentation/staticmaps/index#Viewports
374 374
         // http://maps.google.com/maps/api/staticmap?center=51.565690,5.456756&zoom=16&size=600x400&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/marker.png|label:1|51.565690,5.456756&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/marker-blue.png|51.566197,5.458966|label:2&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.567177,5.457909|label:3&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.566283,5.457330|label:4&markers=icon:http://wild-water.nl/dokuwiki/lib/plugins/openlayersmap/icons/parking.png|51.565630,5.457695|label:5&sensor=false&format=png&maptype=roadmap
375 375
         $imgUrl = "https://maps.googleapis.com/maps/api/staticmap?";
376
-        $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
376
+        $imgUrl .= "&size=".str_replace("px", "", $gmap ['width'])."x"
377 377
             . str_replace("px", "", $gmap ['height']);
378 378
         //if (!$this->getConf( 'autoZoomMap')) { // no need for center & zoom params }
379
-        $imgUrl .= "&center=" . $gmap ['lat'] . "," . $gmap ['lon'];
379
+        $imgUrl .= "&center=".$gmap ['lat'].",".$gmap ['lon'];
380 380
         // max is 21 (== building scale), but that's overkill..
381
-        if($gmap ['zoom'] > 17) {
381
+        if ($gmap ['zoom'] > 17) {
382 382
             $imgUrl .= "&zoom=17";
383 383
         } else {
384
-            $imgUrl .= "&zoom=" . $gmap ['zoom'];
384
+            $imgUrl .= "&zoom=".$gmap ['zoom'];
385 385
         }
386
-        if(!empty ($overlay)) {
386
+        if (!empty ($overlay)) {
387 387
             $rowId = 0;
388
-            foreach($overlay as $data) {
388
+            foreach ($overlay as $data) {
389 389
                 list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
390
-                $imgUrl .= "&markers=icon%3a" . $sUrl . "lib/plugins/openlayersmap/icons/" . $img . "%7c"
391
-                    . $lat . "," . $lon . "%7clabel%3a" . ++$rowId;
390
+                $imgUrl .= "&markers=icon%3a".$sUrl."lib/plugins/openlayersmap/icons/".$img."%7c"
391
+                    . $lat.",".$lon."%7clabel%3a".++$rowId;
392 392
             }
393 393
         }
394
-        $imgUrl .= "&format=png&maptype=" . $maptype;
394
+        $imgUrl .= "&format=png&maptype=".$maptype;
395 395
         global $conf;
396
-        $imgUrl .= "&language=" . $conf ['lang'];
397
-        if($this->getConf('googleAPIkey')) {
398
-            $imgUrl .= "&key=" . $this->getConf('googleAPIkey');
396
+        $imgUrl .= "&language=".$conf ['lang'];
397
+        if ($this->getConf('googleAPIkey')) {
398
+            $imgUrl .= "&key=".$this->getConf('googleAPIkey');
399 399
         }
400 400
         // dbglog($imgUrl,'syntax_plugin_openlayersmap_olmap::getGoogle: Google image url is:');
401 401
         return $imgUrl;
@@ -478,23 +478,23 @@  discard block
 block discarded – undo
478 478
     private function getStaticOSM(array $gmap, array $overlay) {
479 479
         global $conf;
480 480
 
481
-        if($this->getConf('optionStaticMapGenerator') == 'local') {
481
+        if ($this->getConf('optionStaticMapGenerator') == 'local') {
482 482
             // using local basemap composer
483
-            if(!$myMap = plugin_load('helper', 'openlayersmap_staticmap')) {
483
+            if (!$myMap = plugin_load('helper', 'openlayersmap_staticmap')) {
484 484
                 dbglog(
485 485
                     $myMap,
486 486
                     'openlayersmap_staticmap plugin is not available for use.'
487 487
                 );
488 488
             }
489
-            if(!$geophp = plugin_load('helper', 'geophp')) {
489
+            if (!$geophp = plugin_load('helper', 'geophp')) {
490 490
                 dbglog($geophp, 'geophp plugin is not available for use.');
491 491
             }
492
-            $size = str_replace("px", "", $gmap ['width']) . "x"
492
+            $size = str_replace("px", "", $gmap ['width'])."x"
493 493
                 . str_replace("px", "", $gmap ['height']);
494 494
 
495 495
             $markers = array();
496
-            if(!empty ($overlay)) {
497
-                foreach($overlay as $data) {
496
+            if (!empty ($overlay)) {
497
+                foreach ($overlay as $data) {
498 498
                     list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
499 499
                     $iconStyle  = substr($img, 0, strlen($img) - 4);
500 500
                     $markers [] = array(
@@ -506,26 +506,26 @@  discard block
 block discarded – undo
506 506
             }
507 507
 
508 508
             $apikey = '';
509
-            switch($gmap ['baselyr']) {
509
+            switch ($gmap ['baselyr']) {
510 510
                 case 'mapnik' :
511 511
                 case 'openstreetmap' :
512 512
                     $maptype = 'openstreetmap';
513 513
                     break;
514 514
                 case 'transport' :
515 515
                     $maptype = 'transport';
516
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
516
+                    $apikey  = '?apikey='.$this->getConf('tfApiKey');
517 517
                     break;
518 518
                 case 'landscape' :
519 519
                     $maptype = 'landscape';
520
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
520
+                    $apikey  = '?apikey='.$this->getConf('tfApiKey');
521 521
                     break;
522 522
                 case 'outdoors' :
523 523
                     $maptype = 'outdoors';
524
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
524
+                    $apikey  = '?apikey='.$this->getConf('tfApiKey');
525 525
                     break;
526 526
                 case 'cycle map' :
527 527
                     $maptype = 'cycle';
528
-                    $apikey  = '?apikey=' . $this->getConf('tfApiKey');
528
+                    $apikey  = '?apikey='.$this->getConf('tfApiKey');
529 529
                     break;
530 530
                 case 'hike and bike map' :
531 531
                     $maptype = 'hikeandbike';
@@ -554,25 +554,25 @@  discard block
 block discarded – undo
554 554
             //  ol-marker|47.921629720114,18.027343747285,ol-marker-gold|47.951071133739,19.257812497236,
555 555
             //  ol-marker-blue|47.180141361692,19.257812497236,ol-marker-green
556 556
             $imgUrl = "https://staticmap.openstreetmap.de/staticmap.php";
557
-            $imgUrl .= "?center=" . $gmap ['lat'] . "," . $gmap ['lon'];
558
-            $imgUrl .= "&size=" . str_replace("px", "", $gmap ['width']) . "x"
557
+            $imgUrl .= "?center=".$gmap ['lat'].",".$gmap ['lon'];
558
+            $imgUrl .= "&size=".str_replace("px", "", $gmap ['width'])."x"
559 559
                 . str_replace("px", "", $gmap ['height']);
560 560
 
561
-            if($gmap ['zoom'] > 16) {
561
+            if ($gmap ['zoom'] > 16) {
562 562
                 // actually this could even be 18, but that seems overkill
563 563
                 $imgUrl .= "&zoom=16";
564 564
             } else {
565
-                $imgUrl .= "&zoom=" . $gmap ['zoom'];
565
+                $imgUrl .= "&zoom=".$gmap ['zoom'];
566 566
             }
567 567
 
568
-            if(!empty ($overlay)) {
569
-                $rowId  = 0;
568
+            if (!empty ($overlay)) {
569
+                $rowId = 0;
570 570
                 $imgUrl .= "&markers=";
571
-                foreach($overlay as $data) {
571
+                foreach ($overlay as $data) {
572 572
                     list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
573 573
                     $rowId++;
574 574
                     $iconStyle = "lightblue$rowId";
575
-                    $imgUrl    .= "$lat,$lon,$iconStyle%7c";
575
+                    $imgUrl .= "$lat,$lon,$iconStyle%7c";
576 576
                 }
577 577
                 $imgUrl = substr($imgUrl, 0, -3);
578 578
             }
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
      * @return string
592 592
      */
593 593
     private function getBing(array $gmap, array $overlay): string {
594
-        switch($gmap ['baselyr']) {
594
+        switch ($gmap ['baselyr']) {
595 595
             case 've hybrid' :
596 596
             case 'bing hybrid' :
597 597
                 $maptype = 'AerialWithLabels';
@@ -608,33 +608,33 @@  discard block
 block discarded – undo
608 608
                 $maptype = 'Road';
609 609
                 break;
610 610
         }
611
-        $imgUrl = "https://dev.virtualearth.net/REST/v1/Imagery/Map/" . $maptype;// . "/";
612
-        if($this->getConf('autoZoomMap')) {
611
+        $imgUrl = "https://dev.virtualearth.net/REST/v1/Imagery/Map/".$maptype; // . "/";
612
+        if ($this->getConf('autoZoomMap')) {
613 613
             $bbox = $this->calcBBOX($overlay, $gmap ['lat'], $gmap ['lon']);
614 614
             //$imgUrl .= "?ma=" . $bbox ['minlat'] . "," . $bbox ['minlon'] . ","
615 615
             //          . $bbox ['maxlat'] . "," . $bbox ['maxlon'];
616
-            $imgUrl .= "?ma=" . $bbox ['minlat'] . "%2C" . $bbox ['minlon'] . "%2C" . $bbox ['maxlat']
617
-                . "%2C" . $bbox ['maxlon'];
616
+            $imgUrl .= "?ma=".$bbox ['minlat']."%2C".$bbox ['minlon']."%2C".$bbox ['maxlat']
617
+                . "%2C".$bbox ['maxlon'];
618 618
             $imgUrl .= "&dcl=1";
619 619
         }
620
-        if(strpos($imgUrl, "?") === false)
620
+        if (strpos($imgUrl, "?") === false)
621 621
             $imgUrl .= "?";
622 622
 
623 623
         //$imgUrl .= "&ms=" . str_replace ( "px", "", $gmap ['width'] ) . ","
624 624
         //          . str_replace ( "px", "", $gmap ['height'] );
625
-        $imgUrl .= "&ms=" . str_replace("px", "", $gmap ['width']) . "%2C"
625
+        $imgUrl .= "&ms=".str_replace("px", "", $gmap ['width'])."%2C"
626 626
             . str_replace("px", "", $gmap ['height']);
627
-        $imgUrl .= "&key=" . $this->getConf('bingAPIKey');
628
-        if(!empty ($overlay)) {
627
+        $imgUrl .= "&key=".$this->getConf('bingAPIKey');
628
+        if (!empty ($overlay)) {
629 629
             $rowId = 0;
630
-            foreach($overlay as $data) {
630
+            foreach ($overlay as $data) {
631 631
                 list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
632 632
                 // TODO icon style lookup, see: http://msdn.microsoft.com/en-us/library/ff701719.aspx for iconStyle
633 633
                 $iconStyle = 32;
634 634
                 $rowId++;
635 635
                 // NOTE: the max number of pushpins is 18! or we have to use POST
636 636
                 //  (http://msdn.microsoft.com/en-us/library/ff701724.aspx)
637
-                if($rowId == 18) {
637
+                if ($rowId == 18) {
638 638
                     break;
639 639
                 }
640 640
                 //$imgUrl .= "&pp=$lat,$lon;$iconStyle;$rowId";
@@ -644,7 +644,7 @@  discard block
 block discarded – undo
644 644
         }
645 645
         global $conf;
646 646
         $imgUrl .= "&fmt=png";
647
-        $imgUrl .= "&c=" . $conf ['lang'];
647
+        $imgUrl .= "&c=".$conf ['lang'];
648 648
         // dbglog($imgUrl,'syntax_plugin_openlayersmap_olmap::getBing: bing image url is:');
649 649
         return $imgUrl;
650 650
     }
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
     private function calcBBOX(array $overlay, float $lat, float $lon): array {
664 664
         $lats = array($lat);
665 665
         $lons = array($lon);
666
-        foreach($overlay as $data) {
666
+        foreach ($overlay as $data) {
667 667
             list ($lat, $lon, $text, $angle, $opacity, $img) = $data;
668 668
             $lats [] = $lat;
669 669
             $lons [] = $lon;
@@ -691,13 +691,13 @@  discard block
 block discarded – undo
691 691
      * @todo move this into a shared library
692 692
      */
693 693
     private function convertLat(float $decimaldegrees): string {
694
-        if(strpos($decimaldegrees, '-') !== false) {
694
+        if (strpos($decimaldegrees, '-') !== false) {
695 695
             $latPos = "S";
696 696
         } else {
697 697
             $latPos = "N";
698 698
         }
699 699
         $dms = $this->convertDDtoDMS(abs($decimaldegrees));
700
-        return hsc($dms . $latPos);
700
+        return hsc($dms.$latPos);
701 701
     }
702 702
 
703 703
     /**
@@ -712,7 +712,7 @@  discard block
 block discarded – undo
712 712
         $secs = ($decimaldegrees - $dms) * 3600;
713 713
         $min  = floor($secs / 60);
714 714
         $sec  = round($secs - ($min * 60), 3);
715
-        $dms  .= 'º' . $min . '\'' . $sec . '"';
715
+        $dms .= 'º'.$min.'\''.$sec.'"';
716 716
         return $dms;
717 717
     }
718 718
 
@@ -724,13 +724,13 @@  discard block
 block discarded – undo
724 724
      * @todo move this into a shared library
725 725
      */
726 726
     private function convertLon(float $decimaldegrees): string {
727
-        if(strpos($decimaldegrees, '-') !== false) {
727
+        if (strpos($decimaldegrees, '-') !== false) {
728 728
             $lonPos = "W";
729 729
         } else {
730 730
             $lonPos = "E";
731 731
         }
732 732
         $dms = $this->convertDDtoDMS(abs($decimaldegrees));
733
-        return hsc($dms . $lonPos);
733
+        return hsc($dms.$lonPos);
734 734
     }
735 735
 
736 736
     /**
@@ -761,60 +761,60 @@  discard block
 block discarded – undo
761 761
         // dbglog($data, 'olmap::render() data.');
762 762
         list ($mapid, $param, $mainLat, $mainLon, $poitable, $poitabledesc, $staticImgUrl, $_firstimage) = $data;
763 763
 
764
-        if($format == 'xhtml') {
764
+        if ($format == 'xhtml') {
765 765
             $olscript     = '';
766 766
             $stamenEnable = $this->getConf('enableStamen');
767 767
             $osmEnable    = $this->getConf('enableOSM');
768 768
             $enableBing   = $this->getConf('enableBing');
769 769
 
770 770
             $scriptEnable = '';
771
-            if(!$initialised) {
771
+            if (!$initialised) {
772 772
                 $initialised = true;
773 773
                 // render necessary script tags only once
774
-                $olscript = '<script defer="defer" src="' . DOKU_BASE . 'lib/plugins/openlayersmap/ol6/ol.js"></script>
775
-<script defer="defer" src="' . DOKU_BASE . 'lib/plugins/openlayersmap/ol6/ol-layerswitcher.js"></script>';
774
+                $olscript = '<script defer="defer" src="'.DOKU_BASE.'lib/plugins/openlayersmap/ol6/ol.js"></script>
775
+<script defer="defer" src="' . DOKU_BASE.'lib/plugins/openlayersmap/ol6/ol-layerswitcher.js"></script>';
776 776
 
777 777
                 $scriptEnable = '<script defer="defer" src="data:text/javascript;base64,';
778 778
                 $scriptSrc    = $olscript ? 'const olEnable=true;' : 'const olEnable=false;';
779
-                $scriptSrc    .= 'const osmEnable=' . ($osmEnable ? 'true' : 'false') . ';';
780
-                $scriptSrc    .= 'const stamenEnable=' . ($stamenEnable ? 'true' : 'false') . ';';
781
-                $scriptSrc    .= 'const bEnable=' . ($enableBing ? 'true' : 'false') . ';';
782
-                $scriptSrc    .= 'const bApiKey="' . $this->getConf('bingAPIKey') . '";';
783
-                $scriptSrc    .= 'const tfApiKey="' . $this->getConf('tfApiKey') . '";';
784
-                $scriptSrc    .= 'const gApiKey="' . $this->getConf('googleAPIkey') . '";';
779
+                $scriptSrc    .= 'const osmEnable='.($osmEnable ? 'true' : 'false').';';
780
+                $scriptSrc    .= 'const stamenEnable='.($stamenEnable ? 'true' : 'false').';';
781
+                $scriptSrc    .= 'const bEnable='.($enableBing ? 'true' : 'false').';';
782
+                $scriptSrc    .= 'const bApiKey="'.$this->getConf('bingAPIKey').'";';
783
+                $scriptSrc    .= 'const tfApiKey="'.$this->getConf('tfApiKey').'";';
784
+                $scriptSrc    .= 'const gApiKey="'.$this->getConf('googleAPIkey').'";';
785 785
                 $scriptSrc    .= 'olMapData = []; let olMaps = {}; let olMapOverlays = {};';
786 786
                 $scriptEnable .= base64_encode($scriptSrc);
787 787
                 $scriptEnable .= '"></script>';
788 788
             }
789 789
             $renderer->doc .= "$olscript\n$scriptEnable";
790
-            $renderer->doc .= '<div class="olMapHelp">' . $this->locale_xhtml("help") . '</div>';
791
-            if($this->getConf('enableA11y')) {
792
-                $renderer->doc .= '<div id="' . $mapid . '-static" class="olStaticMap">'
793
-                    . p_render($format, p_get_instructions($staticImgUrl), $info) . '</div>';
790
+            $renderer->doc .= '<div class="olMapHelp">'.$this->locale_xhtml("help").'</div>';
791
+            if ($this->getConf('enableA11y')) {
792
+                $renderer->doc .= '<div id="'.$mapid.'-static" class="olStaticMap">'
793
+                    . p_render($format, p_get_instructions($staticImgUrl), $info).'</div>';
794 794
             }
795
-            $renderer->doc .= '<div id="' . $mapid . '-clearer" class="clearer"><p>&nbsp;</p></div>';
796
-            if($this->getConf('enableA11y')) {
795
+            $renderer->doc .= '<div id="'.$mapid.'-clearer" class="clearer"><p>&nbsp;</p></div>';
796
+            if ($this->getConf('enableA11y')) {
797 797
                 // render a table of the POI for the print and a11y presentation, it is hidden using javascript
798 798
                 $renderer->doc .= '
799
-                <div class="olPOItableSpan" id="' . $mapid . '-table-span">
800
-                    <table class="olPOItable" id="' . $mapid . '-table">
801
-                    <caption class="olPOITblCaption">' . $this->getLang('olmapPOItitle') . '</caption>
799
+                <div class="olPOItableSpan" id="' . $mapid.'-table-span">
800
+                    <table class="olPOItable" id="' . $mapid.'-table">
801
+                    <caption class="olPOITblCaption">' . $this->getLang('olmapPOItitle').'</caption>
802 802
                     <thead class="olPOITblHeader">
803 803
                     <tr>
804 804
                     <th class="rowId" scope="col">id</th>
805
-                    <th class="icon" scope="col">' . $this->getLang('olmapPOIicon') . '</th>
806
-                    <th class="lat" scope="col" title="' . $this->getLang('olmapPOIlatTitle') . '">'
807
-                    . $this->getLang('olmapPOIlat') . '</th>
808
-                    <th class="lon" scope="col" title="' . $this->getLang('olmapPOIlonTitle') . '">'
809
-                    . $this->getLang('olmapPOIlon') . '</th>
810
-                    <th class="txt" scope="col">' . $this->getLang('olmapPOItxt') . '</th>
805
+                    <th class="icon" scope="col">' . $this->getLang('olmapPOIicon').'</th>
806
+                    <th class="lat" scope="col" title="' . $this->getLang('olmapPOIlatTitle').'">'
807
+                    . $this->getLang('olmapPOIlat').'</th>
808
+                    <th class="lon" scope="col" title="' . $this->getLang('olmapPOIlonTitle').'">'
809
+                    . $this->getLang('olmapPOIlon').'</th>
810
+                    <th class="txt" scope="col">' . $this->getLang('olmapPOItxt').'</th>
811 811
                     </tr>
812 812
                     </thead>';
813
-                if($poitabledesc != '') {
814
-                    $renderer->doc .= '<tfoot class="olPOITblFooter"><tr><td colspan="5">' . $poitabledesc
813
+                if ($poitabledesc != '') {
814
+                    $renderer->doc .= '<tfoot class="olPOITblFooter"><tr><td colspan="5">'.$poitabledesc
815 815
                         . '</td></tr></tfoot>';
816 816
                 }
817
-                $renderer->doc .= '<tbody class="olPOITblBody">' . $poitable . '</tbody>
817
+                $renderer->doc .= '<tbody class="olPOITblBody">'.$poitable.'</tbody>
818 818
                     </table>
819 819
                 </div>';
820 820
                 $renderer->doc .= "\n";
@@ -825,28 +825,28 @@  discard block
 block discarded – undo
825 825
             $renderer->doc .= '"></script>';
826 826
             $mapnumber++;
827 827
             return true;
828
-        } elseif($format == 'metadata') {
829
-            if(!(($this->dflt ['lat'] == $mainLat) && ($this->dflt ['lon'] == $mainLon))) {
828
+        } elseif ($format == 'metadata') {
829
+            if (!(($this->dflt ['lat'] == $mainLat) && ($this->dflt ['lon'] == $mainLon))) {
830 830
                 // render geo metadata, unless they are the default
831 831
                 $renderer->meta ['geo'] ['lat'] = $mainLat;
832 832
                 $renderer->meta ['geo'] ['lon'] = $mainLon;
833
-                if($geophp = plugin_load('helper', 'geophp')) {
833
+                if ($geophp = plugin_load('helper', 'geophp')) {
834 834
                     // if we have the geoPHP helper, add the geohash
835 835
 
836 836
                     // fails with older php versions..
837 837
                     // $renderer->meta['geo']['geohash'] = (new Point($mainLon,$mainLat))->out('geohash');
838
-                    $p                                  = new Point ($mainLon, $mainLat);
838
+                    $p                                  = new Point($mainLon, $mainLat);
839 839
                     $renderer->meta ['geo'] ['geohash'] = $p->out('geohash');
840 840
                 }
841 841
             }
842 842
 
843
-            if(($this->getConf('enableA11y')) && (!empty ($_firstimage))) {
843
+            if (($this->getConf('enableA11y')) && (!empty ($_firstimage))) {
844 844
                 // add map local image into relation/firstimage if not already filled and when it is a local image
845 845
 
846 846
                 global $ID;
847 847
                 $rel = p_get_metadata($ID, 'relation', METADATA_RENDER_USING_CACHE);
848 848
                 $img = $rel ['firstimage'];
849
-                if(empty ($img) /* || $img == $_firstimage*/) {
849
+                if (empty ($img) /* || $img == $_firstimage*/) {
850 850
                     //dbglog ( $_firstimage,
851 851
                     // 'olmap::render#rendering image relation metadata for _firstimage as $img was empty or same.' );
852 852
                     // This seems to never work; the firstimage entry in the .meta file is empty
Please login to merge, or discard this patch.
admin/purge.php 2 patches
Indentation   +90 added lines, -90 removed lines patch added patch discarded remove patch
@@ -24,101 +24,101 @@
 block discarded – undo
24 24
  * @author Mark Prins
25 25
  */
26 26
 class admin_plugin_openlayersmap_purge extends DokuWiki_Admin_Plugin {
27
-    /**
28
-     * (non-PHPdoc)
29
-     * @see DokuWiki_Admin_Plugin::getMenuSort()
30
-     */
31
-    public function getMenuSort(): int {
32
-        return 800;
33
-    }
27
+	/**
28
+	 * (non-PHPdoc)
29
+	 * @see DokuWiki_Admin_Plugin::getMenuSort()
30
+	 */
31
+	public function getMenuSort(): int {
32
+		return 800;
33
+	}
34 34
 
35
-    public function getMenuIcon(): string {
36
-        $plugin = $this->getPluginName();
37
-        return DOKU_PLUGIN . $plugin . '/admin/purge.svg';
38
-    }
35
+	public function getMenuIcon(): string {
36
+		$plugin = $this->getPluginName();
37
+		return DOKU_PLUGIN . $plugin . '/admin/purge.svg';
38
+	}
39 39
 
40
-    /**
41
-     * (non-PHPdoc)
42
-     * @see DokuWiki_Admin_Plugin::handle()
43
-     */
44
-    public function handle(): void {
45
-        global $conf;
46
-        if(!isset($_REQUEST['continue']) || !checkSecurityToken()) {
47
-            return;
48
-        }
49
-        if(isset($_REQUEST['purgetiles'])) {
50
-            $path = $conf['cachedir'] . '/olmaptiles';
51
-            if($this->rrmdir($path)) {
52
-                msg($this->getLang('admin_purged_tiles'), 0);
53
-            }
54
-        }
55
-        if(isset($_REQUEST['purgemaps'])) {
56
-            $path = $conf['mediadir'] . '/olmapmaps';
57
-            if($this->rrmdir($path)) {
58
-                msg($this->getLang('admin_purged_maps'), 0);
59
-            }
60
-        }
61
-    }
40
+	/**
41
+	 * (non-PHPdoc)
42
+	 * @see DokuWiki_Admin_Plugin::handle()
43
+	 */
44
+	public function handle(): void {
45
+		global $conf;
46
+		if(!isset($_REQUEST['continue']) || !checkSecurityToken()) {
47
+			return;
48
+		}
49
+		if(isset($_REQUEST['purgetiles'])) {
50
+			$path = $conf['cachedir'] . '/olmaptiles';
51
+			if($this->rrmdir($path)) {
52
+				msg($this->getLang('admin_purged_tiles'), 0);
53
+			}
54
+		}
55
+		if(isset($_REQUEST['purgemaps'])) {
56
+			$path = $conf['mediadir'] . '/olmapmaps';
57
+			if($this->rrmdir($path)) {
58
+				msg($this->getLang('admin_purged_maps'), 0);
59
+			}
60
+		}
61
+	}
62 62
 
63
-    /**
64
-     * Recursively delete the directory.
65
-     * @param string $sDir directory path
66
-     * @return boolean true when succesful
67
-     */
68
-    private function rrmdir(string $sDir): bool {
69
-        if(is_dir($sDir)) {
70
-            dbglog($sDir, 'admin_plugin_openlayersmap_purge::rrmdir: recursively removing path: ');
71
-            $sDir = rtrim($sDir, '/');
72
-            $oDir = dir($sDir);
73
-            while(($sFile = $oDir->read()) !== false) {
74
-                if($sFile !== '.' && $sFile !== '..') {
75
-                    (!is_link("$sDir/$sFile") && is_dir("$sDir/$sFile")) ?
76
-                        $this->rrmdir("$sDir/$sFile") : unlink("$sDir/$sFile");
77
-                }
78
-            }
79
-            $oDir->close();
80
-            rmdir($sDir);
81
-            return true;
82
-        }
83
-        return false;
84
-    }
63
+	/**
64
+	 * Recursively delete the directory.
65
+	 * @param string $sDir directory path
66
+	 * @return boolean true when succesful
67
+	 */
68
+	private function rrmdir(string $sDir): bool {
69
+		if(is_dir($sDir)) {
70
+			dbglog($sDir, 'admin_plugin_openlayersmap_purge::rrmdir: recursively removing path: ');
71
+			$sDir = rtrim($sDir, '/');
72
+			$oDir = dir($sDir);
73
+			while(($sFile = $oDir->read()) !== false) {
74
+				if($sFile !== '.' && $sFile !== '..') {
75
+					(!is_link("$sDir/$sFile") && is_dir("$sDir/$sFile")) ?
76
+						$this->rrmdir("$sDir/$sFile") : unlink("$sDir/$sFile");
77
+				}
78
+			}
79
+			$oDir->close();
80
+			rmdir($sDir);
81
+			return true;
82
+		}
83
+		return false;
84
+	}
85 85
 
86
-    /**
87
-     * (non-PHPdoc)
88
-     * @see DokuWiki_Admin_Plugin::html()
89
-     */
90
-    public function html(): void {
91
-        echo $this->locale_xhtml('admin_intro');
92
-        $form = new Doku_Form(array('id' => 'olmap_purgeform', 'method' => 'post'));
93
-        $form->addHidden('continue', 'go');
86
+	/**
87
+	 * (non-PHPdoc)
88
+	 * @see DokuWiki_Admin_Plugin::html()
89
+	 */
90
+	public function html(): void {
91
+		echo $this->locale_xhtml('admin_intro');
92
+		$form = new Doku_Form(array('id' => 'olmap_purgeform', 'method' => 'post'));
93
+		$form->addHidden('continue', 'go');
94 94
 
95
-        $form->startFieldset($this->getLang('admin_tiles'));
96
-        $form->addElement('<p>');
97
-        $form->addElement(
98
-            '<input id="purgetiles" name="purgetiles" type="checkbox" value="1" class="checkbox" />'
99
-        );
100
-        $form->addElement(
101
-            '<label for="purgetiles" class="label">' . $this->getLang('admin_purge_tiles')
102
-            . '</label>'
103
-        );
104
-        $form->addElement('</p>');
105
-        $form->endFieldset();
95
+		$form->startFieldset($this->getLang('admin_tiles'));
96
+		$form->addElement('<p>');
97
+		$form->addElement(
98
+			'<input id="purgetiles" name="purgetiles" type="checkbox" value="1" class="checkbox" />'
99
+		);
100
+		$form->addElement(
101
+			'<label for="purgetiles" class="label">' . $this->getLang('admin_purge_tiles')
102
+			. '</label>'
103
+		);
104
+		$form->addElement('</p>');
105
+		$form->endFieldset();
106 106
 
107
-        $form->startFieldset($this->getLang('admin_maps'));
108
-        $form->addElement('<p>');
109
-        $form->addElement('<input id="purgemaps" name="purgemaps" type="checkbox" value="1" class="checkbox" />');
110
-        $form->addElement(
111
-            '<label for="purgemaps" class="label">' . $this->getLang('admin_purge_maps') . '</label>'
112
-        );
113
-        $form->addElement('</p>');
114
-        $form->endFieldset();
107
+		$form->startFieldset($this->getLang('admin_maps'));
108
+		$form->addElement('<p>');
109
+		$form->addElement('<input id="purgemaps" name="purgemaps" type="checkbox" value="1" class="checkbox" />');
110
+		$form->addElement(
111
+			'<label for="purgemaps" class="label">' . $this->getLang('admin_purge_maps') . '</label>'
112
+		);
113
+		$form->addElement('</p>');
114
+		$form->endFieldset();
115 115
 
116
-        $form->addElement(
117
-            form_makeButton(
118
-                'submit', 'admin', $this->getLang('admin_submit'),
119
-                array('accesskey' => 'p', 'title' => $this->getLang('admin_submit'))
120
-            )
121
-        );
122
-        $form->printForm();
123
-    }
116
+		$form->addElement(
117
+			form_makeButton(
118
+				'submit', 'admin', $this->getLang('admin_submit'),
119
+				array('accesskey' => 'p', 'title' => $this->getLang('admin_submit'))
120
+			)
121
+		);
122
+		$form->printForm();
123
+	}
124 124
 }
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function getMenuIcon(): string {
36 36
         $plugin = $this->getPluginName();
37
-        return DOKU_PLUGIN . $plugin . '/admin/purge.svg';
37
+        return DOKU_PLUGIN.$plugin.'/admin/purge.svg';
38 38
     }
39 39
 
40 40
     /**
@@ -43,18 +43,18 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function handle(): void {
45 45
         global $conf;
46
-        if(!isset($_REQUEST['continue']) || !checkSecurityToken()) {
46
+        if (!isset($_REQUEST['continue']) || !checkSecurityToken()) {
47 47
             return;
48 48
         }
49
-        if(isset($_REQUEST['purgetiles'])) {
50
-            $path = $conf['cachedir'] . '/olmaptiles';
51
-            if($this->rrmdir($path)) {
49
+        if (isset($_REQUEST['purgetiles'])) {
50
+            $path = $conf['cachedir'].'/olmaptiles';
51
+            if ($this->rrmdir($path)) {
52 52
                 msg($this->getLang('admin_purged_tiles'), 0);
53 53
             }
54 54
         }
55
-        if(isset($_REQUEST['purgemaps'])) {
56
-            $path = $conf['mediadir'] . '/olmapmaps';
57
-            if($this->rrmdir($path)) {
55
+        if (isset($_REQUEST['purgemaps'])) {
56
+            $path = $conf['mediadir'].'/olmapmaps';
57
+            if ($this->rrmdir($path)) {
58 58
                 msg($this->getLang('admin_purged_maps'), 0);
59 59
             }
60 60
         }
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
      * @return boolean true when succesful
67 67
      */
68 68
     private function rrmdir(string $sDir): bool {
69
-        if(is_dir($sDir)) {
69
+        if (is_dir($sDir)) {
70 70
             dbglog($sDir, 'admin_plugin_openlayersmap_purge::rrmdir: recursively removing path: ');
71 71
             $sDir = rtrim($sDir, '/');
72 72
             $oDir = dir($sDir);
73
-            while(($sFile = $oDir->read()) !== false) {
74
-                if($sFile !== '.' && $sFile !== '..') {
73
+            while (($sFile = $oDir->read()) !== false) {
74
+                if ($sFile !== '.' && $sFile !== '..') {
75 75
                     (!is_link("$sDir/$sFile") && is_dir("$sDir/$sFile")) ?
76 76
                         $this->rrmdir("$sDir/$sFile") : unlink("$sDir/$sFile");
77 77
                 }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             '<input id="purgetiles" name="purgetiles" type="checkbox" value="1" class="checkbox" />'
99 99
         );
100 100
         $form->addElement(
101
-            '<label for="purgetiles" class="label">' . $this->getLang('admin_purge_tiles')
101
+            '<label for="purgetiles" class="label">'.$this->getLang('admin_purge_tiles')
102 102
             . '</label>'
103 103
         );
104 104
         $form->addElement('</p>');
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         $form->addElement('<p>');
109 109
         $form->addElement('<input id="purgemaps" name="purgemaps" type="checkbox" value="1" class="checkbox" />');
110 110
         $form->addElement(
111
-            '<label for="purgemaps" class="label">' . $this->getLang('admin_purge_maps') . '</label>'
111
+            '<label for="purgemaps" class="label">'.$this->getLang('admin_purge_maps').'</label>'
112 112
         );
113 113
         $form->addElement('</p>');
114 114
         $form->endFieldset();
Please login to merge, or discard this patch.
helper/staticmap.php 2 patches
Indentation   +114 added lines, -114 removed lines patch added patch discarded remove patch
@@ -24,125 +24,125 @@
 block discarded – undo
24 24
  * @author Mark Prins
25 25
  */
26 26
 class helper_plugin_openlayersmap_staticmap extends DokuWiki_Plugin {
27
-    /** maximum width of the resulting image. */
28
-    private $maxWidth = 1024;
29
-    /** maximum heigth of the resulting image. */
30
-    private $maxHeight = 1024;
27
+	/** maximum width of the resulting image. */
28
+	private $maxWidth = 1024;
29
+	/** maximum heigth of the resulting image. */
30
+	private $maxHeight = 1024;
31 31
 
32
-    /**
33
-     * Provide metadata of the public methods of this class.
34
-     *
35
-     * @return array Information to all provided methods.
36
-     */
37
-    public function getMethods(): array {
38
-        $result   = array();
39
-        $result[] = array(
40
-            'name'   => 'getMap',
41
-            'desc'   => 'returns url to the image',
42
-            'params' => array(
43
-                'lat'     => 'float',
44
-                'lon'     => 'float',
45
-                'zoom'    => 'integer',
46
-                'size'    => 'string',
47
-                'maptype' => 'string',
48
-                'markers' => 'string',
49
-                'gpx'     => 'string',
50
-                'kml'     => 'string',
51
-                'geojson' => 'string',
52
-                'apikey'  => 'string'
53
-            ),
54
-            'return' => array('image' => 'string'),
55
-        );
56
-        return $result;
57
-    }
32
+	/**
33
+	 * Provide metadata of the public methods of this class.
34
+	 *
35
+	 * @return array Information to all provided methods.
36
+	 */
37
+	public function getMethods(): array {
38
+		$result   = array();
39
+		$result[] = array(
40
+			'name'   => 'getMap',
41
+			'desc'   => 'returns url to the image',
42
+			'params' => array(
43
+				'lat'     => 'float',
44
+				'lon'     => 'float',
45
+				'zoom'    => 'integer',
46
+				'size'    => 'string',
47
+				'maptype' => 'string',
48
+				'markers' => 'string',
49
+				'gpx'     => 'string',
50
+				'kml'     => 'string',
51
+				'geojson' => 'string',
52
+				'apikey'  => 'string'
53
+			),
54
+			'return' => array('image' => 'string'),
55
+		);
56
+		return $result;
57
+	}
58 58
 
59
-    /**
60
-     * Create the map.
61
-     *
62
-     * @param float  $lat     the latitude of the map's center, eg. 40.714728
63
-     * @param float  $lon     the longitude of the map's center, eg -73.998672
64
-     * @param int    $zoom    the zoom level in the tile cache, eg. 14
65
-     * @param string $size    the size in WxH px, eg. 512x512
66
-     * @param string $maptype the maptype, eg. cycle
67
-     * @param array  $markers associative array of markers, array('lat'=>$lat,'lon'=>$lon,'type'=>$iconStyle),
68
-     *                        eg. array('lat'=>40.702147,'lon'=>-74.015794,'type'=>lightblue1);
69
-     * @param string $gpx     media link
70
-     * @param string $kml     media link
71
-     * @param string $geojson media link
72
-     * @param string $apikey  optional API key eg. for Thunderforest maps
73
-     *
74
-     * @return string
75
-     */
76
-    public function getMap(
77
-        float $lat,
78
-        float $lon,
79
-        int $zoom,
80
-        string $size,
81
-        string $maptype,
82
-        array $markers,
83
-        string $gpx,
84
-        string $kml,
85
-        string $geojson,
86
-        string $apikey = ''
87
-    ): string {
88
-        global $conf;
89
-        // dbglog($markers,'helper_plugin_openlayersmap_staticmap::getMap: markers :');
59
+	/**
60
+	 * Create the map.
61
+	 *
62
+	 * @param float  $lat     the latitude of the map's center, eg. 40.714728
63
+	 * @param float  $lon     the longitude of the map's center, eg -73.998672
64
+	 * @param int    $zoom    the zoom level in the tile cache, eg. 14
65
+	 * @param string $size    the size in WxH px, eg. 512x512
66
+	 * @param string $maptype the maptype, eg. cycle
67
+	 * @param array  $markers associative array of markers, array('lat'=>$lat,'lon'=>$lon,'type'=>$iconStyle),
68
+	 *                        eg. array('lat'=>40.702147,'lon'=>-74.015794,'type'=>lightblue1);
69
+	 * @param string $gpx     media link
70
+	 * @param string $kml     media link
71
+	 * @param string $geojson media link
72
+	 * @param string $apikey  optional API key eg. for Thunderforest maps
73
+	 *
74
+	 * @return string
75
+	 */
76
+	public function getMap(
77
+		float $lat,
78
+		float $lon,
79
+		int $zoom,
80
+		string $size,
81
+		string $maptype,
82
+		array $markers,
83
+		string $gpx,
84
+		string $kml,
85
+		string $geojson,
86
+		string $apikey = ''
87
+	): string {
88
+		global $conf;
89
+		// dbglog($markers,'helper_plugin_openlayersmap_staticmap::getMap: markers :');
90 90
 
91
-        // normalize zoom
92
-        $zoom = $zoom ?: 0;
93
-        if($zoom > 18) {
94
-            $zoom = 18;
95
-        }
96
-        // normalize WxH
97
-        list($width, $height) = explode('x', $size);
98
-        $width = (int) $width;
99
-        if($width > $this->maxWidth) {
100
-            $width = $this->maxWidth;
101
-        }
102
-        $height = (int) $height;
103
-        if($height > $this->maxHeight) {
104
-            $height = $this->maxHeight;
105
-        }
91
+		// normalize zoom
92
+		$zoom = $zoom ?: 0;
93
+		if($zoom > 18) {
94
+			$zoom = 18;
95
+		}
96
+		// normalize WxH
97
+		list($width, $height) = explode('x', $size);
98
+		$width = (int) $width;
99
+		if($width > $this->maxWidth) {
100
+			$width = $this->maxWidth;
101
+		}
102
+		$height = (int) $height;
103
+		if($height > $this->maxHeight) {
104
+			$height = $this->maxHeight;
105
+		}
106 106
 
107
-        // cleanup/validate gpx/kml
108
-        $kml = $this->mediaIdToPath($kml);
109
-        // dbglog($kml,'helper_plugin_openlayersmap_staticmap::getMap: kml file:');
110
-        $gpx = $this->mediaIdToPath($gpx);
111
-        // dbglog($gpx,'helper_plugin_openlayersmap_staticmap::getMap: gpx file:');
112
-        $geojson = $this->mediaIdToPath($geojson);
107
+		// cleanup/validate gpx/kml
108
+		$kml = $this->mediaIdToPath($kml);
109
+		// dbglog($kml,'helper_plugin_openlayersmap_staticmap::getMap: kml file:');
110
+		$gpx = $this->mediaIdToPath($gpx);
111
+		// dbglog($gpx,'helper_plugin_openlayersmap_staticmap::getMap: gpx file:');
112
+		$geojson = $this->mediaIdToPath($geojson);
113 113
 
114
-        // create map
115
-        require_once DOKU_PLUGIN . 'openlayersmap/StaticMap.php';
116
-        $map = new StaticMap(
117
-            $lat, $lon, $zoom, $width, $height, $maptype,
118
-            $markers, $gpx, $kml, $geojson, $conf['mediadir'], $conf['cachedir'],
119
-            $this->getConf('autoZoomMap'), $apikey
120
-        );
114
+		// create map
115
+		require_once DOKU_PLUGIN . 'openlayersmap/StaticMap.php';
116
+		$map = new StaticMap(
117
+			$lat, $lon, $zoom, $width, $height, $maptype,
118
+			$markers, $gpx, $kml, $geojson, $conf['mediadir'], $conf['cachedir'],
119
+			$this->getConf('autoZoomMap'), $apikey
120
+		);
121 121
 
122
-        // return the media id url
123
-        // $mediaId = str_replace('/', ':', $map->getMap());
124
-        // if($this->startsWith($mediaId,':')) {
125
-        //     $mediaId = substr($mediaId, 1);
126
-        // }
127
-        // return $mediaId;
128
-        return str_replace('/', ':', $map->getMap());
129
-    }
122
+		// return the media id url
123
+		// $mediaId = str_replace('/', ':', $map->getMap());
124
+		// if($this->startsWith($mediaId,':')) {
125
+		//     $mediaId = substr($mediaId, 1);
126
+		// }
127
+		// return $mediaId;
128
+		return str_replace('/', ':', $map->getMap());
129
+	}
130 130
 
131
-    /**
132
-     * Constructs the path to a file.
133
-     * @param string $id the DW media id
134
-     * @return string the path to the file
135
-     */
136
-    private function mediaIdToPath(string $id): string {
137
-        global $conf;
138
-        if(empty($id)) {
139
-            return "";
140
-        }
141
-        $id = str_replace(array("[[", "]]"), "", $id);
142
-        if((strpos($id, ':') === 0)) {
143
-            $id = substr($id, 1);
144
-        }
145
-        $id = str_replace(":", "/", $id);
146
-        return $conf['mediadir'] . '/' . $id;
147
-    }
131
+	/**
132
+	 * Constructs the path to a file.
133
+	 * @param string $id the DW media id
134
+	 * @return string the path to the file
135
+	 */
136
+	private function mediaIdToPath(string $id): string {
137
+		global $conf;
138
+		if(empty($id)) {
139
+			return "";
140
+		}
141
+		$id = str_replace(array("[[", "]]"), "", $id);
142
+		if((strpos($id, ':') === 0)) {
143
+			$id = substr($id, 1);
144
+		}
145
+		$id = str_replace(":", "/", $id);
146
+		return $conf['mediadir'] . '/' . $id;
147
+	}
148 148
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -90,17 +90,17 @@  discard block
 block discarded – undo
90 90
 
91 91
         // normalize zoom
92 92
         $zoom = $zoom ?: 0;
93
-        if($zoom > 18) {
93
+        if ($zoom > 18) {
94 94
             $zoom = 18;
95 95
         }
96 96
         // normalize WxH
97 97
         list($width, $height) = explode('x', $size);
98 98
         $width = (int) $width;
99
-        if($width > $this->maxWidth) {
99
+        if ($width > $this->maxWidth) {
100 100
             $width = $this->maxWidth;
101 101
         }
102 102
         $height = (int) $height;
103
-        if($height > $this->maxHeight) {
103
+        if ($height > $this->maxHeight) {
104 104
             $height = $this->maxHeight;
105 105
         }
106 106
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $geojson = $this->mediaIdToPath($geojson);
113 113
 
114 114
         // create map
115
-        require_once DOKU_PLUGIN . 'openlayersmap/StaticMap.php';
115
+        require_once DOKU_PLUGIN.'openlayersmap/StaticMap.php';
116 116
         $map = new StaticMap(
117 117
             $lat, $lon, $zoom, $width, $height, $maptype,
118 118
             $markers, $gpx, $kml, $geojson, $conf['mediadir'], $conf['cachedir'],
@@ -135,14 +135,14 @@  discard block
 block discarded – undo
135 135
      */
136 136
     private function mediaIdToPath(string $id): string {
137 137
         global $conf;
138
-        if(empty($id)) {
138
+        if (empty($id)) {
139 139
             return "";
140 140
         }
141 141
         $id = str_replace(array("[[", "]]"), "", $id);
142
-        if((strpos($id, ':') === 0)) {
142
+        if ((strpos($id, ':') === 0)) {
143 143
             $id = substr($id, 1);
144 144
         }
145 145
         $id = str_replace(":", "/", $id);
146
-        return $conf['mediadir'] . '/' . $id;
146
+        return $conf['mediadir'].'/'.$id;
147 147
     }
148 148
 }
Please login to merge, or discard this patch.
syntax/osmlayer.php 2 patches
Indentation   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -22,110 +22,110 @@
 block discarded – undo
22 22
  */
23 23
 class syntax_plugin_openlayersmap_osmlayer extends DokuWiki_Syntax_Plugin
24 24
 {
25
-    private $dflt = array(
26
-        'id'          => 'olmap',
27
-        'name'        => '',
28
-        'url'         => '',
29
-        'opacity'     => 0.8,
30
-        'attribution' => '',
31
-        'visible'     => false,
32
-        'cors'        => null
33
-    );
25
+	private $dflt = array(
26
+		'id'          => 'olmap',
27
+		'name'        => '',
28
+		'url'         => '',
29
+		'opacity'     => 0.8,
30
+		'attribution' => '',
31
+		'visible'     => false,
32
+		'cors'        => null
33
+	);
34 34
 
35
-    /**
36
-     * (non-PHPdoc)
37
-     *
38
-     * @see DokuWiki_Syntax_Plugin::getPType()
39
-     */
40
-    public function getPType(): string
41
-    {
42
-        return 'block';
43
-    }
35
+	/**
36
+	 * (non-PHPdoc)
37
+	 *
38
+	 * @see DokuWiki_Syntax_Plugin::getPType()
39
+	 */
40
+	public function getPType(): string
41
+	{
42
+		return 'block';
43
+	}
44 44
 
45
-    /**
46
-     * (non-PHPdoc)
47
-     *
48
-     * @see DokuWiki_Syntax_Plugin::getType()
49
-     */
50
-    public function getType(): string
51
-    {
52
-        // return 'FIXME: container|baseonly|formatting|substition|protected|disabled|paragraphs';
53
-        return 'baseonly';
54
-    }
45
+	/**
46
+	 * (non-PHPdoc)
47
+	 *
48
+	 * @see DokuWiki_Syntax_Plugin::getType()
49
+	 */
50
+	public function getType(): string
51
+	{
52
+		// return 'FIXME: container|baseonly|formatting|substition|protected|disabled|paragraphs';
53
+		return 'baseonly';
54
+	}
55 55
 
56
-    /**
57
-     * (non-PHPdoc)
58
-     *
59
-     * @see Doku_Parser_Mode::getSort()
60
-     */
61
-    public function getSort(): int
62
-    {
63
-        return 902;
64
-    }
56
+	/**
57
+	 * (non-PHPdoc)
58
+	 *
59
+	 * @see Doku_Parser_Mode::getSort()
60
+	 */
61
+	public function getSort(): int
62
+	{
63
+		return 902;
64
+	}
65 65
 
66
-    /**
67
-     * Connect to our special pattern.
68
-     *
69
-     * @see Doku_Parser_Mode::connectTo()
70
-     */
71
-    public function connectTo($mode): void
72
-    {
73
-        // look for: <olmap_osmlayer id="olmap" name="sport" url="http://tiles.openseamap.org/sport/${z}/${x}/${y}.png"
74
-        // visible="false" opacity=0.6 attribution="Some attribution"></olmap_osmlayer>
75
-        $this->Lexer->addSpecialPattern(
76
-            '<olmap_osmlayer ?[^>\n]*>.*?</olmap_osmlayer>',
77
-            $mode,
78
-            'plugin_openlayersmap_osmlayer'
79
-        );
80
-    }
66
+	/**
67
+	 * Connect to our special pattern.
68
+	 *
69
+	 * @see Doku_Parser_Mode::connectTo()
70
+	 */
71
+	public function connectTo($mode): void
72
+	{
73
+		// look for: <olmap_osmlayer id="olmap" name="sport" url="http://tiles.openseamap.org/sport/${z}/${x}/${y}.png"
74
+		// visible="false" opacity=0.6 attribution="Some attribution"></olmap_osmlayer>
75
+		$this->Lexer->addSpecialPattern(
76
+			'<olmap_osmlayer ?[^>\n]*>.*?</olmap_osmlayer>',
77
+			$mode,
78
+			'plugin_openlayersmap_osmlayer'
79
+		);
80
+	}
81 81
 
82
-    /**
83
-     * (non-PHPdoc)
84
-     *
85
-     * @see DokuWiki_Syntax_Plugin::handle()
86
-     */
87
-    public function handle($match, $state, $pos, Doku_Handler $handler): array
88
-    {
89
-        $param = array();
90
-        $data  = $this->dflt;
82
+	/**
83
+	 * (non-PHPdoc)
84
+	 *
85
+	 * @see DokuWiki_Syntax_Plugin::handle()
86
+	 */
87
+	public function handle($match, $state, $pos, Doku_Handler $handler): array
88
+	{
89
+		$param = array();
90
+		$data  = $this->dflt;
91 91
 
92
-        preg_match_all('/(\w*)="(.*?)"/us', $match, $param, PREG_SET_ORDER);
92
+		preg_match_all('/(\w*)="(.*?)"/us', $match, $param, PREG_SET_ORDER);
93 93
 
94
-        foreach ($param as $kvpair) {
95
-            list ($matched, $key, $val) = $kvpair;
96
-            if (isset ($data [$key])) {
97
-                $key         = strtolower($key);
98
-                $data [$key] = $val;
99
-            }
100
-        }
101
-        // dbglog($data,'syntax_plugin_overlayer::handle: parsed data is:');
102
-        return $data;
103
-    }
94
+		foreach ($param as $kvpair) {
95
+			list ($matched, $key, $val) = $kvpair;
96
+			if (isset ($data [$key])) {
97
+				$key         = strtolower($key);
98
+				$data [$key] = $val;
99
+			}
100
+		}
101
+		// dbglog($data,'syntax_plugin_overlayer::handle: parsed data is:');
102
+		return $data;
103
+	}
104 104
 
105
-    /**
106
-     * (non-PHPdoc)
107
-     *
108
-     * @see DokuWiki_Syntax_Plugin::render()
109
-     */
110
-    public function render($format, Doku_Renderer $renderer, $data): bool
111
-    {
112
-        if ($format !== 'xhtml') {
113
-            return false;
114
-        }
105
+	/**
106
+	 * (non-PHPdoc)
107
+	 *
108
+	 * @see DokuWiki_Syntax_Plugin::render()
109
+	 */
110
+	public function render($format, Doku_Renderer $renderer, $data): bool
111
+	{
112
+		if ($format !== 'xhtml') {
113
+			return false;
114
+		}
115 115
 
116
-        // incremented for each olmap_osmlayer tag in the page source
117
-        static $overlaynumber = 0;
116
+		// incremented for each olmap_osmlayer tag in the page source
117
+		static $overlaynumber = 0;
118 118
 
119
-        list ($id, $url, $name, $visible) = $data;
120
-        $renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
121
-        $str           = '{';
122
-        foreach ($data as $key => $val) {
123
-            $str .= "'" . $key . "' : '" . $val . "',";
124
-        }
125
-        $str           .= '"type":"osm"}';
126
-        $renderer->doc .= base64_encode("olMapOverlays['osm" . $overlaynumber . "'] = " . $str . ";")
127
-            . '"></script>';
128
-        $overlaynumber++;
129
-        return true;
130
-    }
119
+		list ($id, $url, $name, $visible) = $data;
120
+		$renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
121
+		$str           = '{';
122
+		foreach ($data as $key => $val) {
123
+			$str .= "'" . $key . "' : '" . $val . "',";
124
+		}
125
+		$str           .= '"type":"osm"}';
126
+		$renderer->doc .= base64_encode("olMapOverlays['osm" . $overlaynumber . "'] = " . $str . ";")
127
+			. '"></script>';
128
+		$overlaynumber++;
129
+		return true;
130
+	}
131 131
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -117,13 +117,13 @@
 block discarded – undo
117 117
         static $overlaynumber = 0;
118 118
 
119 119
         list ($id, $url, $name, $visible) = $data;
120
-        $renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
121
-        $str           = '{';
120
+        $renderer->doc .= DOKU_LF.'<script defer="defer" src="data:text/javascript;base64,';
121
+        $str = '{';
122 122
         foreach ($data as $key => $val) {
123
-            $str .= "'" . $key . "' : '" . $val . "',";
123
+            $str .= "'".$key."' : '".$val."',";
124 124
         }
125 125
         $str           .= '"type":"osm"}';
126
-        $renderer->doc .= base64_encode("olMapOverlays['osm" . $overlaynumber . "'] = " . $str . ";")
126
+        $renderer->doc .= base64_encode("olMapOverlays['osm".$overlaynumber."'] = ".$str.";")
127 127
             . '"></script>';
128 128
         $overlaynumber++;
129 129
         return true;
Please login to merge, or discard this patch.
syntax/agslayer.php 2 patches
Indentation   +100 added lines, -100 removed lines patch added patch discarded remove patch
@@ -22,114 +22,114 @@
 block discarded – undo
22 22
  */
23 23
 class syntax_plugin_openlayersmap_agslayer extends DokuWiki_Syntax_Plugin
24 24
 {
25
-    private $dflt = array(
26
-        'id'          => 'olmap',
27
-        'name'        => '',
28
-        'url'         => '',
29
-        'opacity'     => 0.8,
30
-        'attribution' => '',
31
-        'visible'     => false,
32
-        'layers'      => '',
33
-        'format'      => 'png',
34
-        'transparent' => 'true'
35
-    );
25
+	private $dflt = array(
26
+		'id'          => 'olmap',
27
+		'name'        => '',
28
+		'url'         => '',
29
+		'opacity'     => 0.8,
30
+		'attribution' => '',
31
+		'visible'     => false,
32
+		'layers'      => '',
33
+		'format'      => 'png',
34
+		'transparent' => 'true'
35
+	);
36 36
 
37
-    /**
38
-     * (non-PHPdoc)
39
-     *
40
-     * @see DokuWiki_Syntax_Plugin::getPType()
41
-     */
42
-    public function getPType(): string
43
-    {
44
-        return 'block';
45
-    }
37
+	/**
38
+	 * (non-PHPdoc)
39
+	 *
40
+	 * @see DokuWiki_Syntax_Plugin::getPType()
41
+	 */
42
+	public function getPType(): string
43
+	{
44
+		return 'block';
45
+	}
46 46
 
47
-    /**
48
-     * (non-PHPdoc)
49
-     *
50
-     * @see DokuWiki_Syntax_Plugin::getType()
51
-     */
52
-    public function getType(): string
53
-    {
54
-        // return 'FIXME: container|baseonly|formatting|substition|protected|disabled|paragraphs';
55
-        return 'baseonly';
56
-    }
47
+	/**
48
+	 * (non-PHPdoc)
49
+	 *
50
+	 * @see DokuWiki_Syntax_Plugin::getType()
51
+	 */
52
+	public function getType(): string
53
+	{
54
+		// return 'FIXME: container|baseonly|formatting|substition|protected|disabled|paragraphs';
55
+		return 'baseonly';
56
+	}
57 57
 
58
-    /**
59
-     * (non-PHPdoc)
60
-     *
61
-     * @see Doku_Parser_Mode::getSort()
62
-     */
63
-    public function getSort(): int
64
-    {
65
-        return 904;
66
-    }
58
+	/**
59
+	 * (non-PHPdoc)
60
+	 *
61
+	 * @see Doku_Parser_Mode::getSort()
62
+	 */
63
+	public function getSort(): int
64
+	{
65
+		return 904;
66
+	}
67 67
 
68
-    /**
69
-     * Connect to our special pattern.
70
-     *
71
-     * @see Doku_Parser_Mode::connectTo()
72
-     */
73
-    public function connectTo($mode): void
74
-    {
75
-        // look for: <olmap_agslayer id="olmap" name="cloud"
76
-        // url="http://geoservices2.wallonie.be/arcgis/rest/services/APP_KAYAK/KAYAK/MapServer/export"
77
-        // attribution="wallonie.be" visible="true" layers="show:0,1,2,3,4,7"></olmap_agslayer>
78
-        // sample:
79
-        // http://geoservices2.wallonie.be/arcgis/rest/services/APP_KAYAK/KAYAK/MapServer/export?LAYERS=show%3A0%2C1%2C2%2C3%2C4%2C7&TRANSPARENT=true&FORMAT=png&BBOX=643294.029959%2C6467184.088252%2C645740.014863%2C6469630.073157&SIZE=256%2C256&F=html&BBOXSR=3857&IMAGESR=3857
80
-        $this->Lexer->addSpecialPattern(
81
-            '<olmap_agslayer ?[^>\n]*>.*?</olmap_agslayer>',
82
-            $mode,
83
-            'plugin_openlayersmap_agslayer'
84
-        );
85
-    }
68
+	/**
69
+	 * Connect to our special pattern.
70
+	 *
71
+	 * @see Doku_Parser_Mode::connectTo()
72
+	 */
73
+	public function connectTo($mode): void
74
+	{
75
+		// look for: <olmap_agslayer id="olmap" name="cloud"
76
+		// url="http://geoservices2.wallonie.be/arcgis/rest/services/APP_KAYAK/KAYAK/MapServer/export"
77
+		// attribution="wallonie.be" visible="true" layers="show:0,1,2,3,4,7"></olmap_agslayer>
78
+		// sample:
79
+		// http://geoservices2.wallonie.be/arcgis/rest/services/APP_KAYAK/KAYAK/MapServer/export?LAYERS=show%3A0%2C1%2C2%2C3%2C4%2C7&TRANSPARENT=true&FORMAT=png&BBOX=643294.029959%2C6467184.088252%2C645740.014863%2C6469630.073157&SIZE=256%2C256&F=html&BBOXSR=3857&IMAGESR=3857
80
+		$this->Lexer->addSpecialPattern(
81
+			'<olmap_agslayer ?[^>\n]*>.*?</olmap_agslayer>',
82
+			$mode,
83
+			'plugin_openlayersmap_agslayer'
84
+		);
85
+	}
86 86
 
87
-    /**
88
-     * (non-PHPdoc)
89
-     *
90
-     * @see DokuWiki_Syntax_Plugin::handle()
91
-     */
92
-    public function handle($match, $state, $pos, Doku_Handler $handler): array
93
-    {
94
-        $param = array();
95
-        $data  = $this->dflt;
87
+	/**
88
+	 * (non-PHPdoc)
89
+	 *
90
+	 * @see DokuWiki_Syntax_Plugin::handle()
91
+	 */
92
+	public function handle($match, $state, $pos, Doku_Handler $handler): array
93
+	{
94
+		$param = array();
95
+		$data  = $this->dflt;
96 96
 
97
-        preg_match_all('/(\w*)="(.*?)"/us', $match, $param, PREG_SET_ORDER);
97
+		preg_match_all('/(\w*)="(.*?)"/us', $match, $param, PREG_SET_ORDER);
98 98
 
99
-        foreach ($param as $kvpair) {
100
-            list ($matched, $key, $val) = $kvpair;
101
-            if (isset ($data [$key])) {
102
-                $key         = strtolower($key);
103
-                $data [$key] = $val;
104
-            }
105
-        }
106
-        return $data;
107
-    }
99
+		foreach ($param as $kvpair) {
100
+			list ($matched, $key, $val) = $kvpair;
101
+			if (isset ($data [$key])) {
102
+				$key         = strtolower($key);
103
+				$data [$key] = $val;
104
+			}
105
+		}
106
+		return $data;
107
+	}
108 108
 
109
-    /**
110
-     * (non-PHPdoc)
111
-     *
112
-     * @see DokuWiki_Syntax_Plugin::render()
113
-     */
114
-    public function render($format, Doku_Renderer $renderer, $data): bool
115
-    {
116
-        if ($format !== 'xhtml') {
117
-            return false;
118
-        }
109
+	/**
110
+	 * (non-PHPdoc)
111
+	 *
112
+	 * @see DokuWiki_Syntax_Plugin::render()
113
+	 */
114
+	public function render($format, Doku_Renderer $renderer, $data): bool
115
+	{
116
+		if ($format !== 'xhtml') {
117
+			return false;
118
+		}
119 119
 
120
-        // incremented for each olmap_agslayer tag in the page source
121
-        static $overlaynumber = 0;
120
+		// incremented for each olmap_agslayer tag in the page source
121
+		static $overlaynumber = 0;
122 122
 
123
-        list ($id, $url, $name, $visible) = $data;
124
-        $renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
125
-        $str           = '{';
126
-        foreach ($data as $key => $val) {
127
-            $str .= "'" . $key . "' : '" . $val . "',";
128
-        }
129
-        $str           .= "'type':'ags'}";
130
-        $renderer->doc .= base64_encode("olMapOverlays['ags" . $overlaynumber . "'] = " . $str . ";")
131
-            . '"></script>';
132
-        $overlaynumber++;
133
-        return true;
134
-    }
123
+		list ($id, $url, $name, $visible) = $data;
124
+		$renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
125
+		$str           = '{';
126
+		foreach ($data as $key => $val) {
127
+			$str .= "'" . $key . "' : '" . $val . "',";
128
+		}
129
+		$str           .= "'type':'ags'}";
130
+		$renderer->doc .= base64_encode("olMapOverlays['ags" . $overlaynumber . "'] = " . $str . ";")
131
+			. '"></script>';
132
+		$overlaynumber++;
133
+		return true;
134
+	}
135 135
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,13 +121,13 @@
 block discarded – undo
121 121
         static $overlaynumber = 0;
122 122
 
123 123
         list ($id, $url, $name, $visible) = $data;
124
-        $renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
125
-        $str           = '{';
124
+        $renderer->doc .= DOKU_LF.'<script defer="defer" src="data:text/javascript;base64,';
125
+        $str = '{';
126 126
         foreach ($data as $key => $val) {
127
-            $str .= "'" . $key . "' : '" . $val . "',";
127
+            $str .= "'".$key."' : '".$val."',";
128 128
         }
129 129
         $str           .= "'type':'ags'}";
130
-        $renderer->doc .= base64_encode("olMapOverlays['ags" . $overlaynumber . "'] = " . $str . ";")
130
+        $renderer->doc .= base64_encode("olMapOverlays['ags".$overlaynumber."'] = ".$str.";")
131 131
             . '"></script>';
132 132
         $overlaynumber++;
133 133
         return true;
Please login to merge, or discard this patch.