Passed
Push — master ( 875a29...97ebf2 )
by Mark
03:13
created
icons/index.php 1 patch
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.
_test/general.test.php 1 patch
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.
admin/purge.php 1 patch
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.
helper/staticmap.php 1 patch
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.
syntax/osmlayer.php 1 patch
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.
syntax/agslayer.php 1 patch
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.
syntax/wmslayer.php 1 patch
Indentation   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -22,113 +22,113 @@
 block discarded – undo
22 22
  */
23 23
 class syntax_plugin_openlayersmap_wmslayer 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
-        'version'     => '1.3.0',
34
-        'format'      => 'image/png',
35
-        'transparent' => 'true'
36
-    );
25
+	private $dflt = array(
26
+		'id'          => 'olmap',
27
+		'name'        => '',
28
+		'url'         => '',
29
+		'opacity'     => 0.8,
30
+		'attribution' => '',
31
+		'visible'     => false,
32
+		'layers'      => '',
33
+		'version'     => '1.3.0',
34
+		'format'      => 'image/png',
35
+		'transparent' => 'true'
36
+	);
37 37
 
38
-    /**
39
-     * (non-PHPdoc)
40
-     *
41
-     * @see DokuWiki_Syntax_Plugin::getPType()
42
-     */
43
-    public function getPType(): string
44
-    {
45
-        return 'block';
46
-    }
38
+	/**
39
+	 * (non-PHPdoc)
40
+	 *
41
+	 * @see DokuWiki_Syntax_Plugin::getPType()
42
+	 */
43
+	public function getPType(): string
44
+	{
45
+		return 'block';
46
+	}
47 47
 
48
-    /**
49
-     * (non-PHPdoc)
50
-     *
51
-     * @see DokuWiki_Syntax_Plugin::getType()
52
-     */
53
-    public function getType(): string
54
-    {
55
-        // return 'FIXME: container|baseonly|formatting|substition|protected|disabled|paragraphs';
56
-        return 'baseonly';
57
-    }
48
+	/**
49
+	 * (non-PHPdoc)
50
+	 *
51
+	 * @see DokuWiki_Syntax_Plugin::getType()
52
+	 */
53
+	public function getType(): string
54
+	{
55
+		// return 'FIXME: container|baseonly|formatting|substition|protected|disabled|paragraphs';
56
+		return 'baseonly';
57
+	}
58 58
 
59
-    /**
60
-     * (non-PHPdoc)
61
-     *
62
-     * @see Doku_Parser_Mode::getSort()
63
-     */
64
-    public function getSort(): int
65
-    {
66
-        return 902;
67
-    }
59
+	/**
60
+	 * (non-PHPdoc)
61
+	 *
62
+	 * @see Doku_Parser_Mode::getSort()
63
+	 */
64
+	public function getSort(): int
65
+	{
66
+		return 902;
67
+	}
68 68
 
69
-    /**
70
-     * Connect to our special pattern.
71
-     *
72
-     * @see Doku_Parser_Mode::connectTo()
73
-     */
74
-    public function connectTo($mode): void
75
-    {
76
-        // look for: <olmap_wmslayer id="olmap" name="cloud" url="http://openweathermap.org/t/tile.cgi?SERVICE=WMS"
77
-        // attribution="OpenWeatherMap" visible="true" layers="GLBETA_PR"></olmap_wmslayer>
78
-        $this->Lexer->addSpecialPattern(
79
-            '<olmap_wmslayer ?[^>\n]*>.*?</olmap_wmslayer>',
80
-            $mode,
81
-            'plugin_openlayersmap_wmslayer'
82
-        );
83
-    }
69
+	/**
70
+	 * Connect to our special pattern.
71
+	 *
72
+	 * @see Doku_Parser_Mode::connectTo()
73
+	 */
74
+	public function connectTo($mode): void
75
+	{
76
+		// look for: <olmap_wmslayer id="olmap" name="cloud" url="http://openweathermap.org/t/tile.cgi?SERVICE=WMS"
77
+		// attribution="OpenWeatherMap" visible="true" layers="GLBETA_PR"></olmap_wmslayer>
78
+		$this->Lexer->addSpecialPattern(
79
+			'<olmap_wmslayer ?[^>\n]*>.*?</olmap_wmslayer>',
80
+			$mode,
81
+			'plugin_openlayersmap_wmslayer'
82
+		);
83
+	}
84 84
 
85
-    /**
86
-     * (non-PHPdoc)
87
-     *
88
-     * @see DokuWiki_Syntax_Plugin::handle()
89
-     */
90
-    public function handle($match, $state, $pos, Doku_Handler $handler): array
91
-    {
92
-        $param = array();
93
-        $data  = $this->dflt;
85
+	/**
86
+	 * (non-PHPdoc)
87
+	 *
88
+	 * @see DokuWiki_Syntax_Plugin::handle()
89
+	 */
90
+	public function handle($match, $state, $pos, Doku_Handler $handler): array
91
+	{
92
+		$param = array();
93
+		$data  = $this->dflt;
94 94
 
95
-        preg_match_all('/(\w*)="(.*?)"/us', $match, $param, PREG_SET_ORDER);
95
+		preg_match_all('/(\w*)="(.*?)"/us', $match, $param, PREG_SET_ORDER);
96 96
 
97
-        foreach ($param as $kvpair) {
98
-            list ($matched, $key, $val) = $kvpair;
99
-            if (isset ($data [$key])) {
100
-                $key         = strtolower($key);
101
-                $data [$key] = $val;
102
-            }
103
-        }
104
-        // dbglog($data,'syntax_plugin_overlayer::handle: parsed data is:');
105
-        return $data;
106
-    }
97
+		foreach ($param as $kvpair) {
98
+			list ($matched, $key, $val) = $kvpair;
99
+			if (isset ($data [$key])) {
100
+				$key         = strtolower($key);
101
+				$data [$key] = $val;
102
+			}
103
+		}
104
+		// dbglog($data,'syntax_plugin_overlayer::handle: parsed data is:');
105
+		return $data;
106
+	}
107 107
 
108
-    /**
109
-     * (non-PHPdoc)
110
-     *
111
-     * @see DokuWiki_Syntax_Plugin::render()
112
-     */
113
-    public function render($format, Doku_Renderer $renderer, $data): bool
114
-    {
115
-        if ($format !== 'xhtml') {
116
-            return false;
117
-        }
108
+	/**
109
+	 * (non-PHPdoc)
110
+	 *
111
+	 * @see DokuWiki_Syntax_Plugin::render()
112
+	 */
113
+	public function render($format, Doku_Renderer $renderer, $data): bool
114
+	{
115
+		if ($format !== 'xhtml') {
116
+			return false;
117
+		}
118 118
 
119
-        // incremented for each olmap_wmslayer tag in the page source
120
-        static $overlaynumber = 0;
119
+		// incremented for each olmap_wmslayer tag in the page source
120
+		static $overlaynumber = 0;
121 121
 
122
-        list ($id, $url, $name, $visible) = $data;
123
-        $renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
124
-        $str           = '{';
125
-        foreach ($data as $key => $val) {
126
-            $str .= "'" . $key . "' : '" . $val . "',";
127
-        }
128
-        $str           .= "'type':'wms'}";
129
-        $renderer->doc .= base64_encode("olMapOverlays['wms" . $overlaynumber . "'] = " . $str . ";")
130
-            . '"></script>';
131
-        $overlaynumber++;
132
-        return true;
133
-    }
122
+		list ($id, $url, $name, $visible) = $data;
123
+		$renderer->doc .= DOKU_LF . '<script defer="defer" src="data:text/javascript;base64,';
124
+		$str           = '{';
125
+		foreach ($data as $key => $val) {
126
+			$str .= "'" . $key . "' : '" . $val . "',";
127
+		}
128
+		$str           .= "'type':'wms'}";
129
+		$renderer->doc .= base64_encode("olMapOverlays['wms" . $overlaynumber . "'] = " . $str . ";")
130
+			. '"></script>';
131
+		$overlaynumber++;
132
+		return true;
133
+	}
134 134
 }
135 135
\ No newline at end of file
Please login to merge, or discard this patch.
StaticMap.php 1 patch
Indentation   +869 added lines, -869 removed lines patch added patch discarded remove patch
@@ -31,873 +31,873 @@
 block discarded – undo
31 31
  */
32 32
 class StaticMap {
33 33
 
34
-    // the final output
35
-    private $tileSize = 256;
36
-    private $tileInfo = array(
37
-        // OSM sources
38
-        'openstreetmap' => array(
39
-            'txt'  => '(c) OpenStreetMap data/ODbl',
40
-            'logo' => 'osm_logo.png',
41
-            'url'  => 'https://tile.openstreetmap.org/{Z}/{X}/{Y}.png'
42
-        ),
43
-        // OCM sources
44
-        'cycle'         => array(
45
-            'txt'  => '(c) Thunderforest maps',
46
-            'logo' => 'tf_logo.png',
47
-            'url'  => 'https://tile.thunderforest.com/cycle/{Z}/{X}/{Y}.png'
48
-        ),
49
-        'transport'     => array(
50
-            'txt'  => '(c) Thunderforest maps',
51
-            'logo' => 'tf_logo.png',
52
-            'url'  => 'https://tile.thunderforest.com/transport/{Z}/{X}/{Y}.png'
53
-        ),
54
-        'landscape'     => array(
55
-            'txt'  => '(c) Thunderforest maps',
56
-            'logo' => 'tf_logo.png',
57
-            'url'  => 'https://tile.thunderforest.com/landscape/{Z}/{X}/{Y}.png'
58
-        ),
59
-        'outdoors'      => array(
60
-            'txt'  => '(c) Thunderforest maps',
61
-            'logo' => 'tf_logo.png',
62
-            'url'  => 'https://tile.thunderforest.com/outdoors/{Z}/{X}/{Y}.png'
63
-        ),
64
-        'toner-lite'    => array(
65
-            'txt'  => 'Stamen tiles',
66
-            'logo' => 'stamen.png',
67
-            'url'  => 'https://stamen-tiles.a.ssl.fastly.net/toner/{Z}/{X}/{Y}.png'
68
-        ),
69
-        'terrain'       => array(
70
-            'txt'  => 'Stamen tiles',
71
-            'logo' => 'stamen.png',
72
-            'url'  => 'https://stamen-tiles.a.ssl.fastly.net/terrain/{Z}/{X}/{Y}.jpg'
73
-        )
74
-        //,
75
-        // 'piste'=>array(
76
-        // 'txt'=>'OpenPisteMap tiles',
77
-        // 'logo'=>'piste_logo.png',
78
-        // 'url'=>''),
79
-        // 'sea'=>array(
80
-        // 'txt'=>'OpenSeaMap tiles',
81
-        // 'logo'=>'sea_logo.png',
82
-        // 'url'=>''),
83
-        // H&B sources
84
-        //          'hikeandbike' => array (
85
-        //                  'txt' => 'Hike & Bike Map',
86
-        //                  'logo' => 'hnb_logo.png',
87
-        //                  //'url' => 'http://toolserver.org/tiles/hikebike/{Z}/{X}/{Y}.png'
88
-        //                  //moved to: https://www.toolserver.org/tiles/hikebike/12/2105/1388.png
89
-        //                  'url' => 'http://c.tiles.wmflabs.org/hikebike/{Z}/{X}/{Y}.png'
90
-        //          )
91
-    );
92
-    private $tileDefaultSrc = 'openstreetmap';
93
-
94
-    // set up markers
95
-    private $markerPrototypes = array(
96
-        // found at http://www.mapito.net/map-marker-icons.html
97
-        // these are 17x19 px with a pointer at the bottom left
98
-        'lightblue' => array(
99
-            'regex'        => '/^lightblue([0-9]+)$/',
100
-            'extension'    => '.png',
101
-            'shadow'       => false,
102
-            'offsetImage'  => '0,-19',
103
-            'offsetShadow' => false
104
-        ),
105
-        // openlayers std markers are 21x25px with shadow
106
-        'ol-marker' => array(
107
-            'regex'        => '/^marker(|-blue|-gold|-green|-red)+$/',
108
-            'extension'    => '.png',
109
-            'shadow'       => 'marker_shadow.png',
110
-            'offsetImage'  => '-10,-25',
111
-            'offsetShadow' => '-1,-13'
112
-        ),
113
-        // these are 16x16 px
114
-        'ww_icon'   => array(
115
-            'regex'        => '/ww_\S+$/',
116
-            'extension'    => '.png',
117
-            'shadow'       => false,
118
-            'offsetImage'  => '-8,-8',
119
-            'offsetShadow' => false
120
-        ),
121
-        // assume these are 16x16 px
122
-        'rest'      => array(
123
-            'regex'        => '/^(?!lightblue([0-9]+)$)(?!(ww_\S+$))(?!marker(|-blue|-gold|-green|-red)+$)(.*)/',
124
-            'extension'    => '.png',
125
-            'shadow'       => 'marker_shadow.png',
126
-            'offsetImage'  => '-8,-8',
127
-            'offsetShadow' => '-1,-1'
128
-        )
129
-    );
130
-    private $centerX;
131
-    private $centerY;
132
-    private $offsetX;
133
-    private $offsetY;
134
-    private $image;
135
-    private $zoom;
136
-    private $lat;
137
-    private $lon;
138
-    private $width;
139
-    private $height;
140
-    private $markers;
141
-    private $maptype;
142
-    private $kmlFileName;
143
-    private $gpxFileName;
144
-    private $geojsonFileName;
145
-    private $autoZoomExtent;
146
-    private $apikey;
147
-    private $tileCacheBaseDir;
148
-    private $mapCacheBaseDir;
149
-    private $mediaBaseDir;
150
-    private $useTileCache;
151
-    private $mapCacheID = '';
152
-    private $mapCacheFile = '';
153
-    private $mapCacheExtension = 'png';
154
-
155
-    /**
156
-     * Constructor.
157
-     *
158
-     * @param float  $lat
159
-     *            Latitude (x) of center of map
160
-     * @param float  $lon
161
-     *            Longitude (y) of center of map
162
-     * @param int    $zoom
163
-     *            Zoomlevel
164
-     * @param int    $width
165
-     *            Width in pixels
166
-     * @param int    $height
167
-     *            Height in pixels
168
-     * @param string $maptype
169
-     *            Name of the map
170
-     * @param array  $markers
171
-     *            array of markers
172
-     * @param string $gpx
173
-     *            GPX filename
174
-     * @param string $kml
175
-     *            KML filename
176
-     * @param string $geojson
177
-     * @param string $mediaDir
178
-     *            Directory to store/cache maps
179
-     * @param string $tileCacheBaseDir
180
-     *            Directory to cache map tiles
181
-     * @param bool   $autoZoomExtent
182
-     *            Wheter or not to override zoom/lat/lon and zoom to the extent of gpx/kml and markers
183
-     * @param string $apikey
184
-     */
185
-    public function __construct(
186
-        float $lat,
187
-        float $lon,
188
-        int $zoom,
189
-        int $width,
190
-        int $height,
191
-        string $maptype,
192
-        array $markers,
193
-        string $gpx,
194
-        string $kml,
195
-        string $geojson,
196
-        string $mediaDir,
197
-        string $tileCacheBaseDir,
198
-        bool $autoZoomExtent = true,
199
-        string $apikey = ''
200
-    ) {
201
-        $this->zoom   = $zoom;
202
-        $this->lat    = $lat;
203
-        $this->lon    = $lon;
204
-        $this->width  = $width;
205
-        $this->height = $height;
206
-        // validate + set maptype
207
-        $this->maptype = $this->tileDefaultSrc;
208
-        if(array_key_exists($maptype, $this->tileInfo)) {
209
-            $this->maptype = $maptype;
210
-        }
211
-        $this->markers          = $markers;
212
-        $this->kmlFileName      = $kml;
213
-        $this->gpxFileName      = $gpx;
214
-        $this->geojsonFileName  = $geojson;
215
-        $this->mediaBaseDir     = $mediaDir;
216
-        $this->tileCacheBaseDir = $tileCacheBaseDir . '/olmaptiles';
217
-        $this->useTileCache     = $this->tileCacheBaseDir !== '';
218
-        $this->mapCacheBaseDir  = $mediaDir . '/olmapmaps';
219
-        $this->autoZoomExtent   = $autoZoomExtent;
220
-        $this->apikey           = $apikey;
221
-    }
222
-
223
-    /**
224
-     * get the map, this may return a reference to a cached copy.
225
-     *
226
-     * @return string url relative to media dir
227
-     */
228
-    public function getMap(): string {
229
-        try {
230
-            if($this->autoZoomExtent) {
231
-                $this->autoZoom();
232
-            }
233
-        } catch(Exception $e) {
234
-            dbglog($e);
235
-        }
236
-
237
-        // use map cache, so check cache for map
238
-        if(!$this->checkMapCache()) {
239
-            // map is not in cache, needs to be build
240
-            $this->makeMap();
241
-            $this->mkdirRecursive(dirname($this->mapCacheIDToFilename()), 0777);
242
-            imagepng($this->image, $this->mapCacheIDToFilename(), 9);
243
-        }
244
-        $doc = $this->mapCacheIDToFilename();
245
-        // make url relative to media dir
246
-        return str_replace($this->mediaBaseDir, '', $doc);
247
-    }
248
-
249
-    /**
250
-     * Calculate the lat/lon/zoom values to make sure that all of the markers and gpx/kml are on the map.
251
-     * can throw an error like
252
-     * "Fatal error: Uncaught Exception: Cannot create a collection with non-geometries in
253
-     * D:\www\wild-water.nl\www\dokuwiki\lib\plugins\geophp\geoPHP\lib\geometry\Collection.class.php:29"
254
-     *
255
-     * @param float $paddingFactor
256
-     *            buffer constant to enlarge (>1.0) the zoom level
257
-     * @throws Exception
258
-     */
259
-    private function autoZoom(float $paddingFactor = 1.0): void {
260
-        $geoms    = array();
261
-        $geoms [] = new Point ($this->lon, $this->lat);
262
-        if(!empty ($this->markers)) {
263
-            foreach($this->markers as $marker) {
264
-                $geoms [] = new Point ($marker ['lon'], $marker ['lat']);
265
-            }
266
-        }
267
-        if(file_exists($this->kmlFileName)) {
268
-            $g = geoPHP::load(file_get_contents($this->kmlFileName), 'kml');
269
-            if($g !== false) {
270
-                $geoms [] = $g;
271
-            }
272
-        }
273
-        if(file_exists($this->gpxFileName)) {
274
-            $g = geoPHP::load(file_get_contents($this->gpxFileName), 'gpx');
275
-            if($g !== false) {
276
-                $geoms [] = $g;
277
-            }
278
-        }
279
-        if(file_exists($this->geojsonFileName)) {
280
-            $g = geoPHP::load(file_get_contents($this->geojsonFileName), 'geojson');
281
-            if($g !== false) {
282
-                $geoms [] = $g;
283
-            }
284
-        }
285
-
286
-        if(count($geoms) <= 1) {
287
-            dbglog($geoms, "StaticMap::autoZoom: Skip setting autozoom options");
288
-            return;
289
-        }
290
-
291
-        $geom     = new GeometryCollection ($geoms);
292
-        $centroid = $geom->centroid();
293
-        $bbox     = $geom->getBBox();
294
-
295
-        // determine vertical resolution, this depends on the distance from the equator
296
-        // $vy00 = log(tan(M_PI*(0.25 + $centroid->getY()/360)));
297
-        $vy0 = log(tan(M_PI * (0.25 + $bbox ['miny'] / 360)));
298
-        $vy1 = log(tan(M_PI * (0.25 + $bbox ['maxy'] / 360)));
299
-        dbglog("StaticMap::autoZoom: vertical resolution: $vy0, $vy1");
300
-        if ($vy1 - $vy0 === 0.0){
301
-            $resolutionVertical = 0;
302
-            dbglog("StaticMap::autoZoom: using $resolutionVertical");
303
-        } else {
304
-            $zoomFactorPowered  = ($this->height / 2) / (40.7436654315252 * ($vy1 - $vy0));
305
-            $resolutionVertical = 360 / ($zoomFactorPowered * $this->tileSize);
306
-        }
307
-        // determine horizontal resolution
308
-        $resolutionHorizontal = ($bbox ['maxx'] - $bbox ['minx']) / $this->width;
309
-        dbglog("StaticMap::autoZoom: using $resolutionHorizontal");
310
-        $resolution           = max($resolutionHorizontal, $resolutionVertical) * $paddingFactor;
311
-        $zoom                 = $this->zoom;
312
-        if ($resolution > 0){
313
-            $zoom             = log(360 / ($resolution * $this->tileSize), 2);
314
-        }
315
-
316
-        if(is_finite($zoom) && $zoom < 15 && $zoom > 2) {
317
-            $this->zoom = floor($zoom);
318
-        }
319
-        $this->lon = $centroid->getX();
320
-        $this->lat = $centroid->getY();
321
-        dbglog("StaticMap::autoZoom: Set autozoom options to: z: $this->zoom, lon: $this->lon, lat: $this->lat");
322
-    }
323
-
324
-    public function checkMapCache(): bool {
325
-        // side effect: set the mapCacheID
326
-        $this->mapCacheID = md5($this->serializeParams());
327
-        $filename         = $this->mapCacheIDToFilename();
328
-        return file_exists($filename);
329
-    }
330
-
331
-    public function serializeParams(): string {
332
-        return implode(
333
-            "&", array(
334
-                   $this->zoom,
335
-                   $this->lat,
336
-                   $this->lon,
337
-                   $this->width,
338
-                   $this->height,
339
-                   serialize($this->markers),
340
-                   $this->maptype,
341
-                   $this->kmlFileName,
342
-                   $this->gpxFileName,
343
-                   $this->geojsonFileName
344
-               )
345
-        );
346
-    }
347
-
348
-    public function mapCacheIDToFilename(): string {
349
-        if(!$this->mapCacheFile) {
350
-            $this->mapCacheFile = $this->mapCacheBaseDir . "/" . $this->maptype . "/" . $this->zoom . "/cache_"
351
-                . substr($this->mapCacheID, 0, 2) . "/" . substr($this->mapCacheID, 2, 2)
352
-                . "/" . substr($this->mapCacheID, 4);
353
-        }
354
-        return $this->mapCacheFile . "." . $this->mapCacheExtension;
355
-    }
356
-
357
-    /**
358
-     * make the map.
359
-     */
360
-    public function makeMap(): void {
361
-        $this->initCoords();
362
-        $this->createBaseMap();
363
-        if(!empty ($this->markers)) {
364
-            $this->placeMarkers();
365
-        }
366
-        if (file_exists($this->kmlFileName)) {
367
-            try {
368
-                $this->drawKML();
369
-            } catch (exception $e) {
370
-                dbglog('failed to load KML file', $e);
371
-            }
372
-        }
373
-        if (file_exists($this->gpxFileName)) {
374
-            try {
375
-                $this->drawGPX();
376
-            } catch (exception $e) {
377
-                dbglog('failed to load GPX file', $e);
378
-            }
379
-        }
380
-        if (file_exists($this->geojsonFileName)) {
381
-            try {
382
-                $this->drawGeojson();
383
-            } catch (exception $e) {
384
-                dbglog('failed to load GeoJSON file', $e);
385
-            }
386
-        }
387
-
388
-        $this->drawCopyright();
389
-    }
390
-
391
-    /**
392
-     */
393
-    public function initCoords(): void {
394
-        $this->centerX = $this->lonToTile($this->lon, $this->zoom);
395
-        $this->centerY = $this->latToTile($this->lat, $this->zoom);
396
-        $this->offsetX = floor((floor($this->centerX) - $this->centerX) * $this->tileSize);
397
-        $this->offsetY = floor((floor($this->centerY) - $this->centerY) * $this->tileSize);
398
-    }
399
-
400
-    /**
401
-     *
402
-     * @param float $long
403
-     * @param int   $zoom
404
-     * @return float|int
405
-     */
406
-    public function lonToTile(float $long, int $zoom) {
407
-        return (($long + 180) / 360) * pow(2, $zoom);
408
-    }
409
-
410
-    /**
411
-     *
412
-     * @param float $lat
413
-     * @param int   $zoom
414
-     * @return float|int
415
-     */
416
-    public function latToTile(float $lat, int $zoom) {
417
-        return (1 - log(tan($lat * pi() / 180) + 1 / cos($lat * M_PI / 180)) / M_PI) / 2 * pow(2, $zoom);
418
-    }
419
-
420
-    /**
421
-     * make basemap image.
422
-     */
423
-    public function createBaseMap(): void {
424
-        $this->image   = imagecreatetruecolor($this->width, $this->height);
425
-        $startX        = floor($this->centerX - ($this->width / $this->tileSize) / 2);
426
-        $startY        = floor($this->centerY - ($this->height / $this->tileSize) / 2);
427
-        $endX          = ceil($this->centerX + ($this->width / $this->tileSize) / 2);
428
-        $endY          = ceil($this->centerY + ($this->height / $this->tileSize) / 2);
429
-        $this->offsetX = -floor(($this->centerX - floor($this->centerX)) * $this->tileSize);
430
-        $this->offsetY = -floor(($this->centerY - floor($this->centerY)) * $this->tileSize);
431
-        $this->offsetX += floor($this->width / 2);
432
-        $this->offsetY += floor($this->height / 2);
433
-        $this->offsetX += floor($startX - floor($this->centerX)) * $this->tileSize;
434
-        $this->offsetY += floor($startY - floor($this->centerY)) * $this->tileSize;
435
-
436
-        for($x = $startX; $x <= $endX; $x++) {
437
-            for($y = $startY; $y <= $endY; $y++) {
438
-                $url = str_replace(
439
-                    array(
440
-                        '{Z}',
441
-                        '{X}',
442
-                        '{Y}'
443
-                    ), array(
444
-                        $this->zoom,
445
-                        $x,
446
-                        $y
447
-                    ), $this->tileInfo [$this->maptype] ['url']
448
-                );
449
-
450
-                $tileData = $this->fetchTile($url);
451
-                if($tileData) {
452
-                    $tileImage = imagecreatefromstring($tileData);
453
-                } else {
454
-                    $tileImage = imagecreate($this->tileSize, $this->tileSize);
455
-                    $color     = imagecolorallocate($tileImage, 255, 255, 255);
456
-                    @imagestring($tileImage, 1, 127, 127, 'err', $color);
457
-                }
458
-                $destX = ($x - $startX) * $this->tileSize + $this->offsetX;
459
-                $destY = ($y - $startY) * $this->tileSize + $this->offsetY;
460
-                dbglog($this->tileSize, "imagecopy tile into image: $destX, $destY");
461
-                imagecopy(
462
-                    $this->image, $tileImage, $destX, $destY, 0, 0, $this->tileSize,
463
-                    $this->tileSize
464
-                );
465
-            }
466
-        }
467
-    }
468
-
469
-    /**
470
-     * Fetch a tile and (if configured) store it in the cache.
471
-     * @param string $url
472
-     * @return bool|string
473
-     * @todo refactor this to use dokuwiki\HTTP\HTTPClient or dokuwiki\HTTP\DokuHTTPClient
474
-     *          for better proxy handling...
475
-     */
476
-    public function fetchTile(string $url) {
477
-        if($this->useTileCache && ($cached = $this->checkTileCache($url)))
478
-            return $cached;
479
-
480
-        $_UA = 'Mozilla/4.0 (compatible; DokuWikiSpatial HTTP Client; ' . PHP_OS . ')';
481
-        if(function_exists("curl_init")) {
482
-            // use cUrl
483
-            $ch = curl_init();
484
-            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
485
-            curl_setopt($ch, CURLOPT_USERAGENT, $_UA);
486
-            curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
487
-            curl_setopt($ch, CURLOPT_URL, $url . $this->apikey);
488
-            dbglog("StaticMap::fetchTile: getting: $url using curl_exec");
489
-            $tile = curl_exec($ch);
490
-            curl_close($ch);
491
-        } else {
492
-            // use file_get_contents
493
-            global $conf;
494
-            $opts = array(
495
-                'http' => array(
496
-                    'method'          => "GET",
497
-                    'header'          => "Accept-language: en\r\n" . "User-Agent: $_UA\r\n" . "accept: image/png\r\n",
498
-                    'request_fulluri' => true
499
-                )
500
-            );
501
-            if(isset($conf['proxy']['host'], $conf['proxy']['port'])
502
-                && $conf['proxy']['host'] !== ''
503
-                && $conf['proxy']['port'] !== '') {
504
-                $opts['http'] += ['proxy' => "tcp://" . $conf['proxy']['host'] . ":" . $conf['proxy']['port']];
505
-            }
506
-
507
-            $context = stream_context_create($opts);
508
-            dbglog("StaticMap::fetchTile: getting: $url . $this->apikey using file_get_contents and options $opts");
509
-            $tile = file_get_contents($url . $this->apikey, false, $context);
510
-        }
511
-        if($tile && $this->useTileCache) {
512
-            $this->writeTileToCache($url, $tile);
513
-        }
514
-        return $tile;
515
-    }
516
-
517
-    /**
518
-     *
519
-     * @param string $url
520
-     * @return string|false
521
-     */
522
-    public function checkTileCache(string $url) {
523
-        $filename = $this->tileUrlToFilename($url);
524
-        if(file_exists($filename)) {
525
-            return file_get_contents($filename);
526
-        }
527
-        return false;
528
-    }
529
-
530
-    /**
531
-     *
532
-     * @param string $url
533
-     * @return string
534
-     */
535
-    public function tileUrlToFilename(string $url): string {
536
-        return $this->tileCacheBaseDir . "/" . substr($url, strpos($url, '/') + 1);
537
-    }
538
-
539
-    /**
540
-     * Write a tile into the cache.
541
-     *
542
-     * @param string $url
543
-     * @param mixed  $data
544
-     */
545
-    public function writeTileToCache($url, $data): void {
546
-        $filename = $this->tileUrlToFilename($url);
547
-        $this->mkdirRecursive(dirname($filename), 0777);
548
-        file_put_contents($filename, $data);
549
-    }
550
-
551
-    /**
552
-     * Recursively create the directory.
553
-     *
554
-     * @param string $pathname
555
-     *            The directory path.
556
-     * @param int    $mode
557
-     *            File access mode. For more information on modes, read the details on the chmod manpage.
558
-     */
559
-    public function mkdirRecursive(string $pathname, int $mode): bool {
560
-        is_dir(dirname($pathname)) || $this->mkdirRecursive(dirname($pathname), $mode);
561
-        return is_dir($pathname) || mkdir($pathname, $mode) || is_dir($pathname);
562
-    }
563
-
564
-    /**
565
-     * Place markers on the map and number them in the same order as they are listed in the html.
566
-     */
567
-    public function placeMarkers(): void {
568
-        $count         = 0;
569
-        $color         = imagecolorallocate($this->image, 0, 0, 0);
570
-        $bgcolor       = imagecolorallocate($this->image, 200, 200, 200);
571
-        $markerBaseDir = __DIR__ . '/icons';
572
-        $markerImageOffsetX  = 0;
573
-        $markerImageOffsetY  = 0;
574
-        $markerShadowOffsetX = 0;
575
-        $markerShadowOffsetY = 0;
576
-        $markerShadowImg     = null;
577
-        // loop thru marker array
578
-        foreach($this->markers as $marker) {
579
-            // set some local variables
580
-            $markerLat  = $marker ['lat'];
581
-            $markerLon  = $marker ['lon'];
582
-            $markerType = $marker ['type'];
583
-            // clear variables from previous loops
584
-            $markerFilename = '';
585
-            $markerShadow   = '';
586
-            $matches        = false;
587
-            // check for marker type, get settings from markerPrototypes
588
-            if($markerType) {
589
-                foreach($this->markerPrototypes as $markerPrototype) {
590
-                    if(preg_match($markerPrototype ['regex'], $markerType, $matches)) {
591
-                        $markerFilename = $matches [0] . $markerPrototype ['extension'];
592
-                        if($markerPrototype ['offsetImage']) {
593
-                            list ($markerImageOffsetX, $markerImageOffsetY) = explode(
594
-                                ",",
595
-                                $markerPrototype ['offsetImage']
596
-                            );
597
-                        }
598
-                        $markerShadow = $markerPrototype ['shadow'];
599
-                        if($markerShadow) {
600
-                            list ($markerShadowOffsetX, $markerShadowOffsetY) = explode(
601
-                                ",",
602
-                                $markerPrototype ['offsetShadow']
603
-                            );
604
-                        }
605
-                    }
606
-                }
607
-            }
608
-            // create img resource
609
-            if(file_exists($markerBaseDir . '/' . $markerFilename)) {
610
-                $markerImg = imagecreatefrompng($markerBaseDir . '/' . $markerFilename);
611
-            } else {
612
-                $markerImg = imagecreatefrompng($markerBaseDir . '/marker.png');
613
-            }
614
-            // check for shadow + create shadow recource
615
-            if($markerShadow && file_exists($markerBaseDir . '/' . $markerShadow)) {
616
-                $markerShadowImg = imagecreatefrompng($markerBaseDir . '/' . $markerShadow);
617
-            }
618
-            // calc position
619
-            $destX = floor(
620
-                ($this->width / 2) -
621
-                $this->tileSize * ($this->centerX - $this->lonToTile($markerLon, $this->zoom))
622
-            );
623
-            $destY = floor(
624
-                ($this->height / 2) -
625
-                $this->tileSize * ($this->centerY - $this->latToTile($markerLat, $this->zoom))
626
-            );
627
-            // copy shadow on basemap
628
-            if($markerShadow && $markerShadowImg) {
629
-                imagecopy(
630
-                    $this->image,
631
-                    $markerShadowImg,
632
-                    $destX + (int) $markerShadowOffsetX,
633
-                    $destY + (int) $markerShadowOffsetY,
634
-                    0,
635
-                    0,
636
-                    imagesx($markerShadowImg),
637
-                    imagesy($markerShadowImg)
638
-                );
639
-            }
640
-            // copy marker on basemap above shadow
641
-            imagecopy(
642
-                $this->image,
643
-                $markerImg,
644
-                $destX + (int) $markerImageOffsetX,
645
-                $destY + (int) $markerImageOffsetY,
646
-                0,
647
-                0,
648
-                imagesx($markerImg),
649
-                imagesy($markerImg)
650
-            );
651
-            // add label
652
-            imagestring(
653
-                $this->image,
654
-                3,
655
-                $destX - imagesx($markerImg) + 1,
656
-                $destY + (int) $markerImageOffsetY + 1,
657
-                ++$count,
658
-                $bgcolor
659
-            );
660
-            imagestring(
661
-                $this->image,
662
-                3,
663
-                $destX - imagesx($markerImg),
664
-                $destY + (int) $markerImageOffsetY,
665
-                $count,
666
-                $color
667
-            );
668
-        }
669
-    }
670
-
671
-    /**
672
-     * Draw kml trace on the map.
673
-     * @throws exception when loading the KML fails
674
-     */
675
-    public function drawKML(): void {
676
-        // TODO get colour from kml node (not currently supported in geoPHP)
677
-        $col     = imagecolorallocatealpha($this->image, 255, 0, 0, .4 * 127);
678
-        $kmlgeom = geoPHP::load(file_get_contents($this->kmlFileName), 'kml');
679
-        $this->drawGeometry($kmlgeom, $col);
680
-    }
681
-
682
-    /**
683
-     * Draw geometry or geometry collection on the map.
684
-     *
685
-     * @param Geometry $geom
686
-     * @param int      $colour
687
-     *            drawing colour
688
-     */
689
-    private function drawGeometry(Geometry $geom, int $colour): void {
690
-        if(empty($geom)) {
691
-            return;
692
-        }
693
-
694
-        switch($geom->geometryType()) {
695
-            case 'GeometryCollection' :
696
-                // recursively draw part of the collection
697
-                for($i = 1; $i < $geom->numGeometries() + 1; $i++) {
698
-                    $_geom = $geom->geometryN($i);
699
-                    $this->drawGeometry($_geom, $colour);
700
-                }
701
-                break;
702
-            case 'MultiPolygon' :
703
-            case 'MultiLineString' :
704
-            case 'MultiPoint' :
705
-                // TODO implement / do nothing
706
-                break;
707
-            case 'Polygon' :
708
-                $this->drawPolygon($geom, $colour);
709
-                break;
710
-            case 'LineString' :
711
-                $this->drawLineString($geom, $colour);
712
-                break;
713
-            case 'Point' :
714
-                $this->drawPoint($geom, $colour);
715
-                break;
716
-            default :
717
-                // draw nothing
718
-                break;
719
-        }
720
-    }
721
-
722
-    /**
723
-     * Draw a polygon on the map.
724
-     *
725
-     * @param Polygon $polygon
726
-     * @param int     $colour
727
-     *            drawing colour
728
-     */
729
-    private function drawPolygon($polygon, int $colour) {
730
-        // TODO implementation of drawing holes,
731
-        // maybe draw the polygon to an in-memory image and use imagecopy, draw polygon in col., draw holes in bgcol?
732
-
733
-        // print_r('Polygon:<br />');
734
-        // print_r($polygon);
735
-        $extPoints = array();
736
-        // extring is a linestring actually..
737
-        $extRing = $polygon->exteriorRing();
738
-
739
-        for($i = 1; $i < $extRing->numGeometries(); $i++) {
740
-            $p1           = $extRing->geometryN($i);
741
-            $x            = floor(
742
-                ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p1->x(), $this->zoom))
743
-            );
744
-            $y            = floor(
745
-                ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p1->y(), $this->zoom))
746
-            );
747
-            $extPoints [] = $x;
748
-            $extPoints [] = $y;
749
-        }
750
-        // print_r('points:('.($i-1).')<br />');
751
-        // print_r($extPoints);
752
-        // imagepolygon ($this->image, $extPoints, $i-1, $colour );
753
-        imagefilledpolygon($this->image, $extPoints, $i - 1, $colour);
754
-    }
755
-
756
-    /**
757
-     * Draw a line on the map.
758
-     *
759
-     * @param LineString $line
760
-     * @param int        $colour
761
-     *            drawing colour
762
-     */
763
-    private function drawLineString($line, $colour) {
764
-        imagesetthickness($this->image, 2);
765
-        for($p = 1; $p < $line->numGeometries(); $p++) {
766
-            // get first pair of points
767
-            $p1 = $line->geometryN($p);
768
-            $p2 = $line->geometryN($p + 1);
769
-            // translate to paper space
770
-            $x1 = floor(
771
-                ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p1->x(), $this->zoom))
772
-            );
773
-            $y1 = floor(
774
-                ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p1->y(), $this->zoom))
775
-            );
776
-            $x2 = floor(
777
-                ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p2->x(), $this->zoom))
778
-            );
779
-            $y2 = floor(
780
-                ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p2->y(), $this->zoom))
781
-            );
782
-            // draw to image
783
-            imageline($this->image, $x1, $y1, $x2, $y2, $colour);
784
-        }
785
-        imagesetthickness($this->image, 1);
786
-    }
787
-
788
-    /**
789
-     * Draw a point on the map.
790
-     *
791
-     * @param Point $point
792
-     * @param int   $colour
793
-     *            drawing colour
794
-     */
795
-    private function drawPoint($point, $colour) {
796
-        imagesetthickness($this->image, 2);
797
-        // translate to paper space
798
-        $cx = floor(
799
-            ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($point->x(), $this->zoom))
800
-        );
801
-        $cy = floor(
802
-            ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($point->y(), $this->zoom))
803
-        );
804
-        $r  = 5;
805
-        // draw to image
806
-        // imageellipse($this->image, $cx, $cy,$r, $r, $colour);
807
-        imagefilledellipse($this->image, $cx, $cy, $r, $r, $colour);
808
-        // don't use imageellipse because the imagesetthickness function has
809
-        // no effect. So the better workaround is to use imagearc.
810
-        imagearc($this->image, $cx, $cy, $r, $r, 0, 359, $colour);
811
-        imagesetthickness($this->image, 1);
812
-    }
813
-
814
-    /**
815
-     * Draw gpx trace on the map.
816
-     * @throws exception when loading the GPX fails
817
-     */
818
-    public function drawGPX() {
819
-        $col     = imagecolorallocatealpha($this->image, 0, 0, 255, .4 * 127);
820
-        $gpxgeom = geoPHP::load(file_get_contents($this->gpxFileName), 'gpx');
821
-        $this->drawGeometry($gpxgeom, $col);
822
-    }
823
-
824
-    /**
825
-     * Draw geojson on the map.
826
-     * @throws exception when loading the JSON fails
827
-     */
828
-    public function drawGeojson() {
829
-        $col     = imagecolorallocatealpha($this->image, 255, 0, 255, .4 * 127);
830
-        $gpxgeom = geoPHP::load(file_get_contents($this->geojsonFileName), 'json');
831
-        $this->drawGeometry($gpxgeom, $col);
832
-    }
833
-
834
-    /**
835
-     * add copyright and origin notice and icons to the map.
836
-     */
837
-    public function drawCopyright() {
838
-        $logoBaseDir = dirname(__FILE__) . '/' . 'logo/';
839
-        $logoImg     = imagecreatefrompng($logoBaseDir . $this->tileInfo ['openstreetmap'] ['logo']);
840
-        $textcolor   = imagecolorallocate($this->image, 0, 0, 0);
841
-        $bgcolor     = imagecolorallocate($this->image, 200, 200, 200);
842
-
843
-        imagecopy(
844
-            $this->image,
845
-            $logoImg,
846
-            0,
847
-            imagesy($this->image) - imagesy($logoImg),
848
-            0,
849
-            0,
850
-            imagesx($logoImg),
851
-            imagesy($logoImg)
852
-        );
853
-        imagestring(
854
-            $this->image,
855
-            1,
856
-            imagesx($logoImg) + 2,
857
-            imagesy($this->image) - imagesy($logoImg) + 1,
858
-            $this->tileInfo ['openstreetmap'] ['txt'],
859
-            $bgcolor
860
-        );
861
-        imagestring(
862
-            $this->image,
863
-            1,
864
-            imagesx($logoImg) + 1,
865
-            imagesy($this->image) - imagesy($logoImg),
866
-            $this->tileInfo ['openstreetmap'] ['txt'],
867
-            $textcolor
868
-        );
869
-
870
-        // additional tile source info, ie. who created/hosted the tiles
871
-        $xIconOffset = 0;
872
-        if($this->maptype === 'openstreetmap') {
873
-            $mapAuthor = "(c) OpenStreetMap maps/CC BY-SA";
874
-        } else {
875
-            $mapAuthor   = $this->tileInfo [$this->maptype] ['txt'];
876
-            $iconImg     = imagecreatefrompng($logoBaseDir . $this->tileInfo [$this->maptype] ['logo']);
877
-            $xIconOffset = imagesx($iconImg);
878
-            imagecopy(
879
-                $this->image,
880
-                $iconImg, imagesx($logoImg) + 1,
881
-                imagesy($this->image) - imagesy($iconImg),
882
-                0,
883
-                0,
884
-                imagesx($iconImg), imagesy($iconImg)
885
-            );
886
-        }
887
-        imagestring(
888
-            $this->image,
889
-            1, imagesx($logoImg) + $xIconOffset + 4,
890
-            imagesy($this->image) - ceil(imagesy($logoImg) / 2) + 1,
891
-            $mapAuthor,
892
-            $bgcolor
893
-        );
894
-        imagestring(
895
-            $this->image,
896
-            1, imagesx($logoImg) + $xIconOffset + 3,
897
-            imagesy($this->image) - ceil(imagesy($logoImg) / 2),
898
-            $mapAuthor,
899
-            $textcolor
900
-        );
901
-
902
-    }
34
+	// the final output
35
+	private $tileSize = 256;
36
+	private $tileInfo = array(
37
+		// OSM sources
38
+		'openstreetmap' => array(
39
+			'txt'  => '(c) OpenStreetMap data/ODbl',
40
+			'logo' => 'osm_logo.png',
41
+			'url'  => 'https://tile.openstreetmap.org/{Z}/{X}/{Y}.png'
42
+		),
43
+		// OCM sources
44
+		'cycle'         => array(
45
+			'txt'  => '(c) Thunderforest maps',
46
+			'logo' => 'tf_logo.png',
47
+			'url'  => 'https://tile.thunderforest.com/cycle/{Z}/{X}/{Y}.png'
48
+		),
49
+		'transport'     => array(
50
+			'txt'  => '(c) Thunderforest maps',
51
+			'logo' => 'tf_logo.png',
52
+			'url'  => 'https://tile.thunderforest.com/transport/{Z}/{X}/{Y}.png'
53
+		),
54
+		'landscape'     => array(
55
+			'txt'  => '(c) Thunderforest maps',
56
+			'logo' => 'tf_logo.png',
57
+			'url'  => 'https://tile.thunderforest.com/landscape/{Z}/{X}/{Y}.png'
58
+		),
59
+		'outdoors'      => array(
60
+			'txt'  => '(c) Thunderforest maps',
61
+			'logo' => 'tf_logo.png',
62
+			'url'  => 'https://tile.thunderforest.com/outdoors/{Z}/{X}/{Y}.png'
63
+		),
64
+		'toner-lite'    => array(
65
+			'txt'  => 'Stamen tiles',
66
+			'logo' => 'stamen.png',
67
+			'url'  => 'https://stamen-tiles.a.ssl.fastly.net/toner/{Z}/{X}/{Y}.png'
68
+		),
69
+		'terrain'       => array(
70
+			'txt'  => 'Stamen tiles',
71
+			'logo' => 'stamen.png',
72
+			'url'  => 'https://stamen-tiles.a.ssl.fastly.net/terrain/{Z}/{X}/{Y}.jpg'
73
+		)
74
+		//,
75
+		// 'piste'=>array(
76
+		// 'txt'=>'OpenPisteMap tiles',
77
+		// 'logo'=>'piste_logo.png',
78
+		// 'url'=>''),
79
+		// 'sea'=>array(
80
+		// 'txt'=>'OpenSeaMap tiles',
81
+		// 'logo'=>'sea_logo.png',
82
+		// 'url'=>''),
83
+		// H&B sources
84
+		//          'hikeandbike' => array (
85
+		//                  'txt' => 'Hike & Bike Map',
86
+		//                  'logo' => 'hnb_logo.png',
87
+		//                  //'url' => 'http://toolserver.org/tiles/hikebike/{Z}/{X}/{Y}.png'
88
+		//                  //moved to: https://www.toolserver.org/tiles/hikebike/12/2105/1388.png
89
+		//                  'url' => 'http://c.tiles.wmflabs.org/hikebike/{Z}/{X}/{Y}.png'
90
+		//          )
91
+	);
92
+	private $tileDefaultSrc = 'openstreetmap';
93
+
94
+	// set up markers
95
+	private $markerPrototypes = array(
96
+		// found at http://www.mapito.net/map-marker-icons.html
97
+		// these are 17x19 px with a pointer at the bottom left
98
+		'lightblue' => array(
99
+			'regex'        => '/^lightblue([0-9]+)$/',
100
+			'extension'    => '.png',
101
+			'shadow'       => false,
102
+			'offsetImage'  => '0,-19',
103
+			'offsetShadow' => false
104
+		),
105
+		// openlayers std markers are 21x25px with shadow
106
+		'ol-marker' => array(
107
+			'regex'        => '/^marker(|-blue|-gold|-green|-red)+$/',
108
+			'extension'    => '.png',
109
+			'shadow'       => 'marker_shadow.png',
110
+			'offsetImage'  => '-10,-25',
111
+			'offsetShadow' => '-1,-13'
112
+		),
113
+		// these are 16x16 px
114
+		'ww_icon'   => array(
115
+			'regex'        => '/ww_\S+$/',
116
+			'extension'    => '.png',
117
+			'shadow'       => false,
118
+			'offsetImage'  => '-8,-8',
119
+			'offsetShadow' => false
120
+		),
121
+		// assume these are 16x16 px
122
+		'rest'      => array(
123
+			'regex'        => '/^(?!lightblue([0-9]+)$)(?!(ww_\S+$))(?!marker(|-blue|-gold|-green|-red)+$)(.*)/',
124
+			'extension'    => '.png',
125
+			'shadow'       => 'marker_shadow.png',
126
+			'offsetImage'  => '-8,-8',
127
+			'offsetShadow' => '-1,-1'
128
+		)
129
+	);
130
+	private $centerX;
131
+	private $centerY;
132
+	private $offsetX;
133
+	private $offsetY;
134
+	private $image;
135
+	private $zoom;
136
+	private $lat;
137
+	private $lon;
138
+	private $width;
139
+	private $height;
140
+	private $markers;
141
+	private $maptype;
142
+	private $kmlFileName;
143
+	private $gpxFileName;
144
+	private $geojsonFileName;
145
+	private $autoZoomExtent;
146
+	private $apikey;
147
+	private $tileCacheBaseDir;
148
+	private $mapCacheBaseDir;
149
+	private $mediaBaseDir;
150
+	private $useTileCache;
151
+	private $mapCacheID = '';
152
+	private $mapCacheFile = '';
153
+	private $mapCacheExtension = 'png';
154
+
155
+	/**
156
+	 * Constructor.
157
+	 *
158
+	 * @param float  $lat
159
+	 *            Latitude (x) of center of map
160
+	 * @param float  $lon
161
+	 *            Longitude (y) of center of map
162
+	 * @param int    $zoom
163
+	 *            Zoomlevel
164
+	 * @param int    $width
165
+	 *            Width in pixels
166
+	 * @param int    $height
167
+	 *            Height in pixels
168
+	 * @param string $maptype
169
+	 *            Name of the map
170
+	 * @param array  $markers
171
+	 *            array of markers
172
+	 * @param string $gpx
173
+	 *            GPX filename
174
+	 * @param string $kml
175
+	 *            KML filename
176
+	 * @param string $geojson
177
+	 * @param string $mediaDir
178
+	 *            Directory to store/cache maps
179
+	 * @param string $tileCacheBaseDir
180
+	 *            Directory to cache map tiles
181
+	 * @param bool   $autoZoomExtent
182
+	 *            Wheter or not to override zoom/lat/lon and zoom to the extent of gpx/kml and markers
183
+	 * @param string $apikey
184
+	 */
185
+	public function __construct(
186
+		float $lat,
187
+		float $lon,
188
+		int $zoom,
189
+		int $width,
190
+		int $height,
191
+		string $maptype,
192
+		array $markers,
193
+		string $gpx,
194
+		string $kml,
195
+		string $geojson,
196
+		string $mediaDir,
197
+		string $tileCacheBaseDir,
198
+		bool $autoZoomExtent = true,
199
+		string $apikey = ''
200
+	) {
201
+		$this->zoom   = $zoom;
202
+		$this->lat    = $lat;
203
+		$this->lon    = $lon;
204
+		$this->width  = $width;
205
+		$this->height = $height;
206
+		// validate + set maptype
207
+		$this->maptype = $this->tileDefaultSrc;
208
+		if(array_key_exists($maptype, $this->tileInfo)) {
209
+			$this->maptype = $maptype;
210
+		}
211
+		$this->markers          = $markers;
212
+		$this->kmlFileName      = $kml;
213
+		$this->gpxFileName      = $gpx;
214
+		$this->geojsonFileName  = $geojson;
215
+		$this->mediaBaseDir     = $mediaDir;
216
+		$this->tileCacheBaseDir = $tileCacheBaseDir . '/olmaptiles';
217
+		$this->useTileCache     = $this->tileCacheBaseDir !== '';
218
+		$this->mapCacheBaseDir  = $mediaDir . '/olmapmaps';
219
+		$this->autoZoomExtent   = $autoZoomExtent;
220
+		$this->apikey           = $apikey;
221
+	}
222
+
223
+	/**
224
+	 * get the map, this may return a reference to a cached copy.
225
+	 *
226
+	 * @return string url relative to media dir
227
+	 */
228
+	public function getMap(): string {
229
+		try {
230
+			if($this->autoZoomExtent) {
231
+				$this->autoZoom();
232
+			}
233
+		} catch(Exception $e) {
234
+			dbglog($e);
235
+		}
236
+
237
+		// use map cache, so check cache for map
238
+		if(!$this->checkMapCache()) {
239
+			// map is not in cache, needs to be build
240
+			$this->makeMap();
241
+			$this->mkdirRecursive(dirname($this->mapCacheIDToFilename()), 0777);
242
+			imagepng($this->image, $this->mapCacheIDToFilename(), 9);
243
+		}
244
+		$doc = $this->mapCacheIDToFilename();
245
+		// make url relative to media dir
246
+		return str_replace($this->mediaBaseDir, '', $doc);
247
+	}
248
+
249
+	/**
250
+	 * Calculate the lat/lon/zoom values to make sure that all of the markers and gpx/kml are on the map.
251
+	 * can throw an error like
252
+	 * "Fatal error: Uncaught Exception: Cannot create a collection with non-geometries in
253
+	 * D:\www\wild-water.nl\www\dokuwiki\lib\plugins\geophp\geoPHP\lib\geometry\Collection.class.php:29"
254
+	 *
255
+	 * @param float $paddingFactor
256
+	 *            buffer constant to enlarge (>1.0) the zoom level
257
+	 * @throws Exception
258
+	 */
259
+	private function autoZoom(float $paddingFactor = 1.0): void {
260
+		$geoms    = array();
261
+		$geoms [] = new Point ($this->lon, $this->lat);
262
+		if(!empty ($this->markers)) {
263
+			foreach($this->markers as $marker) {
264
+				$geoms [] = new Point ($marker ['lon'], $marker ['lat']);
265
+			}
266
+		}
267
+		if(file_exists($this->kmlFileName)) {
268
+			$g = geoPHP::load(file_get_contents($this->kmlFileName), 'kml');
269
+			if($g !== false) {
270
+				$geoms [] = $g;
271
+			}
272
+		}
273
+		if(file_exists($this->gpxFileName)) {
274
+			$g = geoPHP::load(file_get_contents($this->gpxFileName), 'gpx');
275
+			if($g !== false) {
276
+				$geoms [] = $g;
277
+			}
278
+		}
279
+		if(file_exists($this->geojsonFileName)) {
280
+			$g = geoPHP::load(file_get_contents($this->geojsonFileName), 'geojson');
281
+			if($g !== false) {
282
+				$geoms [] = $g;
283
+			}
284
+		}
285
+
286
+		if(count($geoms) <= 1) {
287
+			dbglog($geoms, "StaticMap::autoZoom: Skip setting autozoom options");
288
+			return;
289
+		}
290
+
291
+		$geom     = new GeometryCollection ($geoms);
292
+		$centroid = $geom->centroid();
293
+		$bbox     = $geom->getBBox();
294
+
295
+		// determine vertical resolution, this depends on the distance from the equator
296
+		// $vy00 = log(tan(M_PI*(0.25 + $centroid->getY()/360)));
297
+		$vy0 = log(tan(M_PI * (0.25 + $bbox ['miny'] / 360)));
298
+		$vy1 = log(tan(M_PI * (0.25 + $bbox ['maxy'] / 360)));
299
+		dbglog("StaticMap::autoZoom: vertical resolution: $vy0, $vy1");
300
+		if ($vy1 - $vy0 === 0.0){
301
+			$resolutionVertical = 0;
302
+			dbglog("StaticMap::autoZoom: using $resolutionVertical");
303
+		} else {
304
+			$zoomFactorPowered  = ($this->height / 2) / (40.7436654315252 * ($vy1 - $vy0));
305
+			$resolutionVertical = 360 / ($zoomFactorPowered * $this->tileSize);
306
+		}
307
+		// determine horizontal resolution
308
+		$resolutionHorizontal = ($bbox ['maxx'] - $bbox ['minx']) / $this->width;
309
+		dbglog("StaticMap::autoZoom: using $resolutionHorizontal");
310
+		$resolution           = max($resolutionHorizontal, $resolutionVertical) * $paddingFactor;
311
+		$zoom                 = $this->zoom;
312
+		if ($resolution > 0){
313
+			$zoom             = log(360 / ($resolution * $this->tileSize), 2);
314
+		}
315
+
316
+		if(is_finite($zoom) && $zoom < 15 && $zoom > 2) {
317
+			$this->zoom = floor($zoom);
318
+		}
319
+		$this->lon = $centroid->getX();
320
+		$this->lat = $centroid->getY();
321
+		dbglog("StaticMap::autoZoom: Set autozoom options to: z: $this->zoom, lon: $this->lon, lat: $this->lat");
322
+	}
323
+
324
+	public function checkMapCache(): bool {
325
+		// side effect: set the mapCacheID
326
+		$this->mapCacheID = md5($this->serializeParams());
327
+		$filename         = $this->mapCacheIDToFilename();
328
+		return file_exists($filename);
329
+	}
330
+
331
+	public function serializeParams(): string {
332
+		return implode(
333
+			"&", array(
334
+				   $this->zoom,
335
+				   $this->lat,
336
+				   $this->lon,
337
+				   $this->width,
338
+				   $this->height,
339
+				   serialize($this->markers),
340
+				   $this->maptype,
341
+				   $this->kmlFileName,
342
+				   $this->gpxFileName,
343
+				   $this->geojsonFileName
344
+			   )
345
+		);
346
+	}
347
+
348
+	public function mapCacheIDToFilename(): string {
349
+		if(!$this->mapCacheFile) {
350
+			$this->mapCacheFile = $this->mapCacheBaseDir . "/" . $this->maptype . "/" . $this->zoom . "/cache_"
351
+				. substr($this->mapCacheID, 0, 2) . "/" . substr($this->mapCacheID, 2, 2)
352
+				. "/" . substr($this->mapCacheID, 4);
353
+		}
354
+		return $this->mapCacheFile . "." . $this->mapCacheExtension;
355
+	}
356
+
357
+	/**
358
+	 * make the map.
359
+	 */
360
+	public function makeMap(): void {
361
+		$this->initCoords();
362
+		$this->createBaseMap();
363
+		if(!empty ($this->markers)) {
364
+			$this->placeMarkers();
365
+		}
366
+		if (file_exists($this->kmlFileName)) {
367
+			try {
368
+				$this->drawKML();
369
+			} catch (exception $e) {
370
+				dbglog('failed to load KML file', $e);
371
+			}
372
+		}
373
+		if (file_exists($this->gpxFileName)) {
374
+			try {
375
+				$this->drawGPX();
376
+			} catch (exception $e) {
377
+				dbglog('failed to load GPX file', $e);
378
+			}
379
+		}
380
+		if (file_exists($this->geojsonFileName)) {
381
+			try {
382
+				$this->drawGeojson();
383
+			} catch (exception $e) {
384
+				dbglog('failed to load GeoJSON file', $e);
385
+			}
386
+		}
387
+
388
+		$this->drawCopyright();
389
+	}
390
+
391
+	/**
392
+	 */
393
+	public function initCoords(): void {
394
+		$this->centerX = $this->lonToTile($this->lon, $this->zoom);
395
+		$this->centerY = $this->latToTile($this->lat, $this->zoom);
396
+		$this->offsetX = floor((floor($this->centerX) - $this->centerX) * $this->tileSize);
397
+		$this->offsetY = floor((floor($this->centerY) - $this->centerY) * $this->tileSize);
398
+	}
399
+
400
+	/**
401
+	 *
402
+	 * @param float $long
403
+	 * @param int   $zoom
404
+	 * @return float|int
405
+	 */
406
+	public function lonToTile(float $long, int $zoom) {
407
+		return (($long + 180) / 360) * pow(2, $zoom);
408
+	}
409
+
410
+	/**
411
+	 *
412
+	 * @param float $lat
413
+	 * @param int   $zoom
414
+	 * @return float|int
415
+	 */
416
+	public function latToTile(float $lat, int $zoom) {
417
+		return (1 - log(tan($lat * pi() / 180) + 1 / cos($lat * M_PI / 180)) / M_PI) / 2 * pow(2, $zoom);
418
+	}
419
+
420
+	/**
421
+	 * make basemap image.
422
+	 */
423
+	public function createBaseMap(): void {
424
+		$this->image   = imagecreatetruecolor($this->width, $this->height);
425
+		$startX        = floor($this->centerX - ($this->width / $this->tileSize) / 2);
426
+		$startY        = floor($this->centerY - ($this->height / $this->tileSize) / 2);
427
+		$endX          = ceil($this->centerX + ($this->width / $this->tileSize) / 2);
428
+		$endY          = ceil($this->centerY + ($this->height / $this->tileSize) / 2);
429
+		$this->offsetX = -floor(($this->centerX - floor($this->centerX)) * $this->tileSize);
430
+		$this->offsetY = -floor(($this->centerY - floor($this->centerY)) * $this->tileSize);
431
+		$this->offsetX += floor($this->width / 2);
432
+		$this->offsetY += floor($this->height / 2);
433
+		$this->offsetX += floor($startX - floor($this->centerX)) * $this->tileSize;
434
+		$this->offsetY += floor($startY - floor($this->centerY)) * $this->tileSize;
435
+
436
+		for($x = $startX; $x <= $endX; $x++) {
437
+			for($y = $startY; $y <= $endY; $y++) {
438
+				$url = str_replace(
439
+					array(
440
+						'{Z}',
441
+						'{X}',
442
+						'{Y}'
443
+					), array(
444
+						$this->zoom,
445
+						$x,
446
+						$y
447
+					), $this->tileInfo [$this->maptype] ['url']
448
+				);
449
+
450
+				$tileData = $this->fetchTile($url);
451
+				if($tileData) {
452
+					$tileImage = imagecreatefromstring($tileData);
453
+				} else {
454
+					$tileImage = imagecreate($this->tileSize, $this->tileSize);
455
+					$color     = imagecolorallocate($tileImage, 255, 255, 255);
456
+					@imagestring($tileImage, 1, 127, 127, 'err', $color);
457
+				}
458
+				$destX = ($x - $startX) * $this->tileSize + $this->offsetX;
459
+				$destY = ($y - $startY) * $this->tileSize + $this->offsetY;
460
+				dbglog($this->tileSize, "imagecopy tile into image: $destX, $destY");
461
+				imagecopy(
462
+					$this->image, $tileImage, $destX, $destY, 0, 0, $this->tileSize,
463
+					$this->tileSize
464
+				);
465
+			}
466
+		}
467
+	}
468
+
469
+	/**
470
+	 * Fetch a tile and (if configured) store it in the cache.
471
+	 * @param string $url
472
+	 * @return bool|string
473
+	 * @todo refactor this to use dokuwiki\HTTP\HTTPClient or dokuwiki\HTTP\DokuHTTPClient
474
+	 *          for better proxy handling...
475
+	 */
476
+	public function fetchTile(string $url) {
477
+		if($this->useTileCache && ($cached = $this->checkTileCache($url)))
478
+			return $cached;
479
+
480
+		$_UA = 'Mozilla/4.0 (compatible; DokuWikiSpatial HTTP Client; ' . PHP_OS . ')';
481
+		if(function_exists("curl_init")) {
482
+			// use cUrl
483
+			$ch = curl_init();
484
+			curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
485
+			curl_setopt($ch, CURLOPT_USERAGENT, $_UA);
486
+			curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
487
+			curl_setopt($ch, CURLOPT_URL, $url . $this->apikey);
488
+			dbglog("StaticMap::fetchTile: getting: $url using curl_exec");
489
+			$tile = curl_exec($ch);
490
+			curl_close($ch);
491
+		} else {
492
+			// use file_get_contents
493
+			global $conf;
494
+			$opts = array(
495
+				'http' => array(
496
+					'method'          => "GET",
497
+					'header'          => "Accept-language: en\r\n" . "User-Agent: $_UA\r\n" . "accept: image/png\r\n",
498
+					'request_fulluri' => true
499
+				)
500
+			);
501
+			if(isset($conf['proxy']['host'], $conf['proxy']['port'])
502
+				&& $conf['proxy']['host'] !== ''
503
+				&& $conf['proxy']['port'] !== '') {
504
+				$opts['http'] += ['proxy' => "tcp://" . $conf['proxy']['host'] . ":" . $conf['proxy']['port']];
505
+			}
506
+
507
+			$context = stream_context_create($opts);
508
+			dbglog("StaticMap::fetchTile: getting: $url . $this->apikey using file_get_contents and options $opts");
509
+			$tile = file_get_contents($url . $this->apikey, false, $context);
510
+		}
511
+		if($tile && $this->useTileCache) {
512
+			$this->writeTileToCache($url, $tile);
513
+		}
514
+		return $tile;
515
+	}
516
+
517
+	/**
518
+	 *
519
+	 * @param string $url
520
+	 * @return string|false
521
+	 */
522
+	public function checkTileCache(string $url) {
523
+		$filename = $this->tileUrlToFilename($url);
524
+		if(file_exists($filename)) {
525
+			return file_get_contents($filename);
526
+		}
527
+		return false;
528
+	}
529
+
530
+	/**
531
+	 *
532
+	 * @param string $url
533
+	 * @return string
534
+	 */
535
+	public function tileUrlToFilename(string $url): string {
536
+		return $this->tileCacheBaseDir . "/" . substr($url, strpos($url, '/') + 1);
537
+	}
538
+
539
+	/**
540
+	 * Write a tile into the cache.
541
+	 *
542
+	 * @param string $url
543
+	 * @param mixed  $data
544
+	 */
545
+	public function writeTileToCache($url, $data): void {
546
+		$filename = $this->tileUrlToFilename($url);
547
+		$this->mkdirRecursive(dirname($filename), 0777);
548
+		file_put_contents($filename, $data);
549
+	}
550
+
551
+	/**
552
+	 * Recursively create the directory.
553
+	 *
554
+	 * @param string $pathname
555
+	 *            The directory path.
556
+	 * @param int    $mode
557
+	 *            File access mode. For more information on modes, read the details on the chmod manpage.
558
+	 */
559
+	public function mkdirRecursive(string $pathname, int $mode): bool {
560
+		is_dir(dirname($pathname)) || $this->mkdirRecursive(dirname($pathname), $mode);
561
+		return is_dir($pathname) || mkdir($pathname, $mode) || is_dir($pathname);
562
+	}
563
+
564
+	/**
565
+	 * Place markers on the map and number them in the same order as they are listed in the html.
566
+	 */
567
+	public function placeMarkers(): void {
568
+		$count         = 0;
569
+		$color         = imagecolorallocate($this->image, 0, 0, 0);
570
+		$bgcolor       = imagecolorallocate($this->image, 200, 200, 200);
571
+		$markerBaseDir = __DIR__ . '/icons';
572
+		$markerImageOffsetX  = 0;
573
+		$markerImageOffsetY  = 0;
574
+		$markerShadowOffsetX = 0;
575
+		$markerShadowOffsetY = 0;
576
+		$markerShadowImg     = null;
577
+		// loop thru marker array
578
+		foreach($this->markers as $marker) {
579
+			// set some local variables
580
+			$markerLat  = $marker ['lat'];
581
+			$markerLon  = $marker ['lon'];
582
+			$markerType = $marker ['type'];
583
+			// clear variables from previous loops
584
+			$markerFilename = '';
585
+			$markerShadow   = '';
586
+			$matches        = false;
587
+			// check for marker type, get settings from markerPrototypes
588
+			if($markerType) {
589
+				foreach($this->markerPrototypes as $markerPrototype) {
590
+					if(preg_match($markerPrototype ['regex'], $markerType, $matches)) {
591
+						$markerFilename = $matches [0] . $markerPrototype ['extension'];
592
+						if($markerPrototype ['offsetImage']) {
593
+							list ($markerImageOffsetX, $markerImageOffsetY) = explode(
594
+								",",
595
+								$markerPrototype ['offsetImage']
596
+							);
597
+						}
598
+						$markerShadow = $markerPrototype ['shadow'];
599
+						if($markerShadow) {
600
+							list ($markerShadowOffsetX, $markerShadowOffsetY) = explode(
601
+								",",
602
+								$markerPrototype ['offsetShadow']
603
+							);
604
+						}
605
+					}
606
+				}
607
+			}
608
+			// create img resource
609
+			if(file_exists($markerBaseDir . '/' . $markerFilename)) {
610
+				$markerImg = imagecreatefrompng($markerBaseDir . '/' . $markerFilename);
611
+			} else {
612
+				$markerImg = imagecreatefrompng($markerBaseDir . '/marker.png');
613
+			}
614
+			// check for shadow + create shadow recource
615
+			if($markerShadow && file_exists($markerBaseDir . '/' . $markerShadow)) {
616
+				$markerShadowImg = imagecreatefrompng($markerBaseDir . '/' . $markerShadow);
617
+			}
618
+			// calc position
619
+			$destX = floor(
620
+				($this->width / 2) -
621
+				$this->tileSize * ($this->centerX - $this->lonToTile($markerLon, $this->zoom))
622
+			);
623
+			$destY = floor(
624
+				($this->height / 2) -
625
+				$this->tileSize * ($this->centerY - $this->latToTile($markerLat, $this->zoom))
626
+			);
627
+			// copy shadow on basemap
628
+			if($markerShadow && $markerShadowImg) {
629
+				imagecopy(
630
+					$this->image,
631
+					$markerShadowImg,
632
+					$destX + (int) $markerShadowOffsetX,
633
+					$destY + (int) $markerShadowOffsetY,
634
+					0,
635
+					0,
636
+					imagesx($markerShadowImg),
637
+					imagesy($markerShadowImg)
638
+				);
639
+			}
640
+			// copy marker on basemap above shadow
641
+			imagecopy(
642
+				$this->image,
643
+				$markerImg,
644
+				$destX + (int) $markerImageOffsetX,
645
+				$destY + (int) $markerImageOffsetY,
646
+				0,
647
+				0,
648
+				imagesx($markerImg),
649
+				imagesy($markerImg)
650
+			);
651
+			// add label
652
+			imagestring(
653
+				$this->image,
654
+				3,
655
+				$destX - imagesx($markerImg) + 1,
656
+				$destY + (int) $markerImageOffsetY + 1,
657
+				++$count,
658
+				$bgcolor
659
+			);
660
+			imagestring(
661
+				$this->image,
662
+				3,
663
+				$destX - imagesx($markerImg),
664
+				$destY + (int) $markerImageOffsetY,
665
+				$count,
666
+				$color
667
+			);
668
+		}
669
+	}
670
+
671
+	/**
672
+	 * Draw kml trace on the map.
673
+	 * @throws exception when loading the KML fails
674
+	 */
675
+	public function drawKML(): void {
676
+		// TODO get colour from kml node (not currently supported in geoPHP)
677
+		$col     = imagecolorallocatealpha($this->image, 255, 0, 0, .4 * 127);
678
+		$kmlgeom = geoPHP::load(file_get_contents($this->kmlFileName), 'kml');
679
+		$this->drawGeometry($kmlgeom, $col);
680
+	}
681
+
682
+	/**
683
+	 * Draw geometry or geometry collection on the map.
684
+	 *
685
+	 * @param Geometry $geom
686
+	 * @param int      $colour
687
+	 *            drawing colour
688
+	 */
689
+	private function drawGeometry(Geometry $geom, int $colour): void {
690
+		if(empty($geom)) {
691
+			return;
692
+		}
693
+
694
+		switch($geom->geometryType()) {
695
+			case 'GeometryCollection' :
696
+				// recursively draw part of the collection
697
+				for($i = 1; $i < $geom->numGeometries() + 1; $i++) {
698
+					$_geom = $geom->geometryN($i);
699
+					$this->drawGeometry($_geom, $colour);
700
+				}
701
+				break;
702
+			case 'MultiPolygon' :
703
+			case 'MultiLineString' :
704
+			case 'MultiPoint' :
705
+				// TODO implement / do nothing
706
+				break;
707
+			case 'Polygon' :
708
+				$this->drawPolygon($geom, $colour);
709
+				break;
710
+			case 'LineString' :
711
+				$this->drawLineString($geom, $colour);
712
+				break;
713
+			case 'Point' :
714
+				$this->drawPoint($geom, $colour);
715
+				break;
716
+			default :
717
+				// draw nothing
718
+				break;
719
+		}
720
+	}
721
+
722
+	/**
723
+	 * Draw a polygon on the map.
724
+	 *
725
+	 * @param Polygon $polygon
726
+	 * @param int     $colour
727
+	 *            drawing colour
728
+	 */
729
+	private function drawPolygon($polygon, int $colour) {
730
+		// TODO implementation of drawing holes,
731
+		// maybe draw the polygon to an in-memory image and use imagecopy, draw polygon in col., draw holes in bgcol?
732
+
733
+		// print_r('Polygon:<br />');
734
+		// print_r($polygon);
735
+		$extPoints = array();
736
+		// extring is a linestring actually..
737
+		$extRing = $polygon->exteriorRing();
738
+
739
+		for($i = 1; $i < $extRing->numGeometries(); $i++) {
740
+			$p1           = $extRing->geometryN($i);
741
+			$x            = floor(
742
+				($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p1->x(), $this->zoom))
743
+			);
744
+			$y            = floor(
745
+				($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p1->y(), $this->zoom))
746
+			);
747
+			$extPoints [] = $x;
748
+			$extPoints [] = $y;
749
+		}
750
+		// print_r('points:('.($i-1).')<br />');
751
+		// print_r($extPoints);
752
+		// imagepolygon ($this->image, $extPoints, $i-1, $colour );
753
+		imagefilledpolygon($this->image, $extPoints, $i - 1, $colour);
754
+	}
755
+
756
+	/**
757
+	 * Draw a line on the map.
758
+	 *
759
+	 * @param LineString $line
760
+	 * @param int        $colour
761
+	 *            drawing colour
762
+	 */
763
+	private function drawLineString($line, $colour) {
764
+		imagesetthickness($this->image, 2);
765
+		for($p = 1; $p < $line->numGeometries(); $p++) {
766
+			// get first pair of points
767
+			$p1 = $line->geometryN($p);
768
+			$p2 = $line->geometryN($p + 1);
769
+			// translate to paper space
770
+			$x1 = floor(
771
+				($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p1->x(), $this->zoom))
772
+			);
773
+			$y1 = floor(
774
+				($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p1->y(), $this->zoom))
775
+			);
776
+			$x2 = floor(
777
+				($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p2->x(), $this->zoom))
778
+			);
779
+			$y2 = floor(
780
+				($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p2->y(), $this->zoom))
781
+			);
782
+			// draw to image
783
+			imageline($this->image, $x1, $y1, $x2, $y2, $colour);
784
+		}
785
+		imagesetthickness($this->image, 1);
786
+	}
787
+
788
+	/**
789
+	 * Draw a point on the map.
790
+	 *
791
+	 * @param Point $point
792
+	 * @param int   $colour
793
+	 *            drawing colour
794
+	 */
795
+	private function drawPoint($point, $colour) {
796
+		imagesetthickness($this->image, 2);
797
+		// translate to paper space
798
+		$cx = floor(
799
+			($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($point->x(), $this->zoom))
800
+		);
801
+		$cy = floor(
802
+			($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($point->y(), $this->zoom))
803
+		);
804
+		$r  = 5;
805
+		// draw to image
806
+		// imageellipse($this->image, $cx, $cy,$r, $r, $colour);
807
+		imagefilledellipse($this->image, $cx, $cy, $r, $r, $colour);
808
+		// don't use imageellipse because the imagesetthickness function has
809
+		// no effect. So the better workaround is to use imagearc.
810
+		imagearc($this->image, $cx, $cy, $r, $r, 0, 359, $colour);
811
+		imagesetthickness($this->image, 1);
812
+	}
813
+
814
+	/**
815
+	 * Draw gpx trace on the map.
816
+	 * @throws exception when loading the GPX fails
817
+	 */
818
+	public function drawGPX() {
819
+		$col     = imagecolorallocatealpha($this->image, 0, 0, 255, .4 * 127);
820
+		$gpxgeom = geoPHP::load(file_get_contents($this->gpxFileName), 'gpx');
821
+		$this->drawGeometry($gpxgeom, $col);
822
+	}
823
+
824
+	/**
825
+	 * Draw geojson on the map.
826
+	 * @throws exception when loading the JSON fails
827
+	 */
828
+	public function drawGeojson() {
829
+		$col     = imagecolorallocatealpha($this->image, 255, 0, 255, .4 * 127);
830
+		$gpxgeom = geoPHP::load(file_get_contents($this->geojsonFileName), 'json');
831
+		$this->drawGeometry($gpxgeom, $col);
832
+	}
833
+
834
+	/**
835
+	 * add copyright and origin notice and icons to the map.
836
+	 */
837
+	public function drawCopyright() {
838
+		$logoBaseDir = dirname(__FILE__) . '/' . 'logo/';
839
+		$logoImg     = imagecreatefrompng($logoBaseDir . $this->tileInfo ['openstreetmap'] ['logo']);
840
+		$textcolor   = imagecolorallocate($this->image, 0, 0, 0);
841
+		$bgcolor     = imagecolorallocate($this->image, 200, 200, 200);
842
+
843
+		imagecopy(
844
+			$this->image,
845
+			$logoImg,
846
+			0,
847
+			imagesy($this->image) - imagesy($logoImg),
848
+			0,
849
+			0,
850
+			imagesx($logoImg),
851
+			imagesy($logoImg)
852
+		);
853
+		imagestring(
854
+			$this->image,
855
+			1,
856
+			imagesx($logoImg) + 2,
857
+			imagesy($this->image) - imagesy($logoImg) + 1,
858
+			$this->tileInfo ['openstreetmap'] ['txt'],
859
+			$bgcolor
860
+		);
861
+		imagestring(
862
+			$this->image,
863
+			1,
864
+			imagesx($logoImg) + 1,
865
+			imagesy($this->image) - imagesy($logoImg),
866
+			$this->tileInfo ['openstreetmap'] ['txt'],
867
+			$textcolor
868
+		);
869
+
870
+		// additional tile source info, ie. who created/hosted the tiles
871
+		$xIconOffset = 0;
872
+		if($this->maptype === 'openstreetmap') {
873
+			$mapAuthor = "(c) OpenStreetMap maps/CC BY-SA";
874
+		} else {
875
+			$mapAuthor   = $this->tileInfo [$this->maptype] ['txt'];
876
+			$iconImg     = imagecreatefrompng($logoBaseDir . $this->tileInfo [$this->maptype] ['logo']);
877
+			$xIconOffset = imagesx($iconImg);
878
+			imagecopy(
879
+				$this->image,
880
+				$iconImg, imagesx($logoImg) + 1,
881
+				imagesy($this->image) - imagesy($iconImg),
882
+				0,
883
+				0,
884
+				imagesx($iconImg), imagesy($iconImg)
885
+			);
886
+		}
887
+		imagestring(
888
+			$this->image,
889
+			1, imagesx($logoImg) + $xIconOffset + 4,
890
+			imagesy($this->image) - ceil(imagesy($logoImg) / 2) + 1,
891
+			$mapAuthor,
892
+			$bgcolor
893
+		);
894
+		imagestring(
895
+			$this->image,
896
+			1, imagesx($logoImg) + $xIconOffset + 3,
897
+			imagesy($this->image) - ceil(imagesy($logoImg) / 2),
898
+			$mapAuthor,
899
+			$textcolor
900
+		);
901
+
902
+	}
903 903
 }
Please login to merge, or discard this patch.
conf/metadata.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,63 +22,63 @@
 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_controls']      = array(
74
-    'onoff'
74
+	'onoff'
75 75
 );
76 76
 $meta ['default_kmlfile']       = array(
77
-    'string'
77
+	'string'
78 78
 );
79 79
 $meta ['default_gpxfile']       = array(
80
-    'string'
80
+	'string'
81 81
 );
82 82
 $meta ['default_geojsonfile']   = array(
83
-    'string'
83
+	'string'
84 84
 );
Please login to merge, or discard this patch.