Total Complexity | 84 |
Total Lines | 835 |
Duplicated Lines | 0 % |
Changes | 8 | ||
Bugs | 3 | Features | 0 |
Complex classes like StaticMap often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use StaticMap, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
32 | class StaticMap { |
||
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' => 'http://tile.stamen.com/toner-lite/{Z}/{X}/{Y}.png' |
||
68 | ), |
||
69 | 'terrain' => array( |
||
70 | 'txt' => 'Stamen tiles', |
||
71 | 'logo' => 'stamen.png', |
||
72 | 'url' => 'http://tile.stamen.com/terrain/{Z}/{X}/{Y}.png' |
||
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( |
||
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 | $zoomFactorPowered = ($this->height / 2) / (40.7436654315252 * ($vy1 - $vy0)); |
||
301 | $resolutionVertical = 360 / ($zoomFactorPowered * $this->tileSize); |
||
302 | // determine horizontal resolution |
||
303 | $resolutionHorizontal = ($bbox ['maxx'] - $bbox ['minx']) / $this->width; |
||
304 | $resolution = max($resolutionHorizontal, $resolutionVertical) * $paddingFactor; |
||
305 | $zoom = log(360 / ($resolution * $this->tileSize), 2); |
||
306 | |||
307 | if(is_finite($zoom) && $zoom < 15 && $zoom > 2) { |
||
308 | $this->zoom = floor($zoom); |
||
309 | } |
||
310 | $this->lon = $centroid->getX(); |
||
311 | $this->lat = $centroid->getY(); |
||
312 | dbglog("StaticMap::autoZoom: Set autozoom options to: z: $this->zoom, lon: $this->lon, lat: $this->lat"); |
||
313 | } |
||
314 | |||
315 | public function checkMapCache(): bool { |
||
316 | // side effect: set the mapCacheID |
||
317 | $this->mapCacheID = md5($this->serializeParams()); |
||
318 | $filename = $this->mapCacheIDToFilename(); |
||
319 | return file_exists($filename); |
||
320 | } |
||
321 | |||
322 | public function serializeParams(): string { |
||
323 | return join( |
||
324 | "&", array( |
||
325 | $this->zoom, |
||
326 | $this->lat, |
||
327 | $this->lon, |
||
328 | $this->width, |
||
329 | $this->height, |
||
330 | serialize($this->markers), |
||
331 | $this->maptype, |
||
332 | $this->kmlFileName, |
||
333 | $this->gpxFileName, |
||
334 | $this->geojsonFileName |
||
335 | ) |
||
336 | ); |
||
337 | } |
||
338 | |||
339 | public function mapCacheIDToFilename(): string { |
||
340 | if(!$this->mapCacheFile) { |
||
341 | $this->mapCacheFile = $this->mapCacheBaseDir . "/" . $this->maptype . "/" . $this->zoom . "/cache_" |
||
342 | . substr($this->mapCacheID, 0, 2) . "/" . substr($this->mapCacheID, 2, 2) |
||
343 | . "/" . substr($this->mapCacheID, 4); |
||
344 | } |
||
345 | return $this->mapCacheFile . "." . $this->mapCacheExtension; |
||
346 | } |
||
347 | |||
348 | /** |
||
349 | * make the map. |
||
350 | */ |
||
351 | public function makeMap(): void { |
||
352 | $this->initCoords(); |
||
353 | $this->createBaseMap(); |
||
354 | if(!empty ($this->markers)) |
||
355 | $this->placeMarkers(); |
||
356 | if(file_exists($this->kmlFileName)) |
||
357 | $this->drawKML(); |
||
358 | if(file_exists($this->gpxFileName)) |
||
359 | $this->drawGPX(); |
||
360 | if(file_exists($this->geojsonFileName)) |
||
361 | $this->drawGeojson(); |
||
362 | |||
363 | $this->drawCopyright(); |
||
364 | } |
||
365 | |||
366 | /** |
||
367 | */ |
||
368 | public function initCoords(): void { |
||
369 | $this->centerX = $this->lonToTile($this->lon, $this->zoom); |
||
370 | $this->centerY = $this->latToTile($this->lat, $this->zoom); |
||
371 | $this->offsetX = floor((floor($this->centerX) - $this->centerX) * $this->tileSize); |
||
372 | $this->offsetY = floor((floor($this->centerY) - $this->centerY) * $this->tileSize); |
||
373 | } |
||
374 | |||
375 | /** |
||
376 | * |
||
377 | * @param float $long |
||
378 | * @param int $zoom |
||
379 | * @return float|int |
||
380 | */ |
||
381 | public function lonToTile(float $long, int $zoom) { |
||
383 | } |
||
384 | |||
385 | /** |
||
386 | * |
||
387 | * @param float $lat |
||
388 | * @param int $zoom |
||
389 | * @return float|int |
||
390 | */ |
||
391 | public function latToTile(float $lat, int $zoom) { |
||
392 | return (1 - log(tan($lat * pi() / 180) + 1 / cos($lat * M_PI / 180)) / M_PI) / 2 * pow(2, $zoom); |
||
393 | } |
||
394 | |||
395 | /** |
||
396 | * make basemap image. |
||
397 | */ |
||
398 | public function createBaseMap(): void { |
||
439 | ); |
||
440 | } |
||
441 | } |
||
442 | } |
||
443 | |||
444 | /** |
||
445 | * Fetch a tile and (if configured) store it in the cache. |
||
446 | * @param string $url |
||
447 | * @return bool|string |
||
448 | * @todo refactor this to use dokuwiki\HTTP\HTTPClient or dokuwiki\HTTP\DokuHTTPClient |
||
449 | * for better proxy handling... |
||
450 | */ |
||
451 | public function fetchTile(string $url) { |
||
452 | if($this->useTileCache && ($cached = $this->checkTileCache($url))) |
||
453 | return $cached; |
||
454 | |||
455 | $_UA = 'Mozilla/4.0 (compatible; DokuWikiSpatial HTTP Client; ' . PHP_OS . ')'; |
||
456 | if(function_exists("curl_init")) { |
||
457 | // use cUrl |
||
458 | $ch = curl_init(); |
||
459 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
||
460 | curl_setopt($ch, CURLOPT_USERAGENT, $_UA); |
||
461 | curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); |
||
462 | curl_setopt($ch, CURLOPT_URL, $url . $this->apikey); |
||
463 | dbglog("StaticMap::fetchTile: getting: $url using curl_exec"); |
||
464 | $tile = curl_exec($ch); |
||
465 | curl_close($ch); |
||
466 | } else { |
||
467 | // use file_get_contents |
||
468 | global $conf; |
||
469 | $opts = array( |
||
470 | 'http' => array( |
||
471 | 'method' => "GET", |
||
472 | 'header' => "Accept-language: en\r\n" . "User-Agent: $_UA\r\n" . "accept: image/png\r\n", |
||
473 | 'request_fulluri' => true |
||
474 | ) |
||
475 | ); |
||
476 | if(isset($conf['proxy']['host'], $conf['proxy']['port']) |
||
477 | && $conf['proxy']['host'] !== '' |
||
478 | && $conf['proxy']['port'] !== '') { |
||
479 | $opts['http'] += ['proxy' => "tcp://" . $conf['proxy']['host'] . ":" . $conf['proxy']['port']]; |
||
480 | } |
||
481 | |||
482 | $context = stream_context_create($opts); |
||
483 | dbglog("StaticMap::fetchTile: getting: $url . $this->apikey using file_get_contents and options $opts"); |
||
484 | $tile = file_get_contents($url . $this->apikey, false, $context); |
||
485 | } |
||
486 | if($tile && $this->useTileCache) { |
||
487 | $this->writeTileToCache($url, $tile); |
||
488 | } |
||
489 | return $tile; |
||
490 | } |
||
491 | |||
492 | /** |
||
493 | * |
||
494 | * @param string $url |
||
495 | * @return string|false |
||
496 | */ |
||
497 | public function checkTileCache(string $url) { |
||
498 | $filename = $this->tileUrlToFilename($url); |
||
499 | if(file_exists($filename)) { |
||
500 | return file_get_contents($filename); |
||
501 | } |
||
502 | return false; |
||
503 | } |
||
504 | |||
505 | /** |
||
506 | * |
||
507 | * @param string $url |
||
508 | * @return string |
||
509 | */ |
||
510 | public function tileUrlToFilename(string $url): string { |
||
511 | return $this->tileCacheBaseDir . "/" . substr($url, strpos($url, '/') + 1); |
||
512 | } |
||
513 | |||
514 | /** |
||
515 | * Write a tile into the cache. |
||
516 | * |
||
517 | * @param string $url |
||
518 | * @param mixed $data |
||
519 | */ |
||
520 | public function writeTileToCache($url, $data): void { |
||
521 | $filename = $this->tileUrlToFilename($url); |
||
522 | $this->mkdirRecursive(dirname($filename), 0777); |
||
523 | file_put_contents($filename, $data); |
||
524 | } |
||
525 | |||
526 | /** |
||
527 | * Recursively create the directory. |
||
528 | * |
||
529 | * @param string $pathname |
||
530 | * The directory path. |
||
531 | * @param int $mode |
||
532 | * File access mode. For more information on modes, read the details on the chmod manpage. |
||
533 | */ |
||
534 | public function mkdirRecursive(string $pathname, int $mode): bool { |
||
535 | is_dir(dirname($pathname)) || $this->mkdirRecursive(dirname($pathname), $mode); |
||
536 | return is_dir($pathname) || mkdir($pathname, $mode) || is_dir($pathname); |
||
537 | } |
||
538 | |||
539 | /** |
||
540 | * Place markers on the map and number them in the same order as they are listed in the html. |
||
541 | */ |
||
542 | public function placeMarkers(): void { |
||
543 | $count = 0; |
||
544 | $color = imagecolorallocate($this->image, 0, 0, 0); |
||
545 | $bgcolor = imagecolorallocate($this->image, 200, 200, 200); |
||
546 | $markerBaseDir = __DIR__ . '/icons'; |
||
547 | // loop thru marker array |
||
548 | foreach($this->markers as $marker) { |
||
549 | // set some local variables |
||
550 | $markerLat = $marker ['lat']; |
||
551 | $markerLon = $marker ['lon']; |
||
552 | $markerType = $marker ['type']; |
||
553 | // clear variables from previous loops |
||
554 | $markerFilename = ''; |
||
555 | $markerShadow = ''; |
||
556 | $matches = false; |
||
557 | // check for marker type, get settings from markerPrototypes |
||
558 | if($markerType) { |
||
559 | foreach($this->markerPrototypes as $markerPrototype) { |
||
560 | if(preg_match($markerPrototype ['regex'], $markerType, $matches)) { |
||
561 | $markerFilename = $matches [0] . $markerPrototype ['extension']; |
||
562 | if($markerPrototype ['offsetImage']) { |
||
563 | list ($markerImageOffsetX, $markerImageOffsetY) = explode( |
||
564 | ",", |
||
565 | $markerPrototype ['offsetImage'] |
||
566 | ); |
||
567 | } |
||
568 | $markerShadow = $markerPrototype ['shadow']; |
||
569 | if($markerShadow) { |
||
570 | list ($markerShadowOffsetX, $markerShadowOffsetY) = explode( |
||
571 | ",", |
||
572 | $markerPrototype ['offsetShadow'] |
||
573 | ); |
||
574 | } |
||
575 | } |
||
576 | } |
||
577 | } |
||
578 | // create img resource |
||
579 | if(file_exists($markerBaseDir . '/' . $markerFilename)) { |
||
580 | $markerImg = imagecreatefrompng($markerBaseDir . '/' . $markerFilename); |
||
581 | } else { |
||
582 | $markerImg = imagecreatefrompng($markerBaseDir . '/marker.png'); |
||
583 | } |
||
584 | // check for shadow + create shadow recource |
||
585 | if($markerShadow && file_exists($markerBaseDir . '/' . $markerShadow)) { |
||
586 | $markerShadowImg = imagecreatefrompng($markerBaseDir . '/' . $markerShadow); |
||
587 | } |
||
588 | // calc position |
||
589 | $destX = floor( |
||
590 | ($this->width / 2) - |
||
591 | $this->tileSize * ($this->centerX - $this->lonToTile($markerLon, $this->zoom)) |
||
592 | ); |
||
593 | $destY = floor( |
||
594 | ($this->height / 2) - |
||
595 | $this->tileSize * ($this->centerY - $this->latToTile($markerLat, $this->zoom)) |
||
596 | ); |
||
597 | // copy shadow on basemap |
||
598 | if($markerShadow && $markerShadowImg) { |
||
599 | imagecopy( |
||
600 | $this->image, |
||
601 | $markerShadowImg, |
||
602 | $destX + (int) $markerShadowOffsetX, |
||
603 | $destY + (int) $markerShadowOffsetY, |
||
604 | 0, |
||
605 | 0, |
||
606 | imagesx($markerShadowImg), |
||
607 | imagesy($markerShadowImg) |
||
608 | ); |
||
609 | } |
||
610 | // copy marker on basemap above shadow |
||
611 | imagecopy( |
||
612 | $this->image, |
||
613 | $markerImg, |
||
614 | $destX + (int) $markerImageOffsetX, |
||
615 | $destY + (int) $markerImageOffsetY, |
||
616 | 0, |
||
617 | 0, |
||
618 | imagesx($markerImg), |
||
619 | imagesy($markerImg) |
||
620 | ); |
||
621 | // add label |
||
622 | imagestring( |
||
623 | $this->image, |
||
624 | 3, |
||
625 | $destX - imagesx($markerImg) + 1, |
||
626 | $destY + (int) $markerImageOffsetY + 1, |
||
627 | ++$count, |
||
628 | $bgcolor |
||
629 | ); |
||
630 | imagestring( |
||
631 | $this->image, |
||
632 | 3, |
||
633 | $destX - imagesx($markerImg), |
||
634 | $destY + (int) $markerImageOffsetY, |
||
635 | $count, |
||
636 | $color |
||
637 | ); |
||
638 | } |
||
639 | } |
||
640 | |||
641 | /** |
||
642 | * Draw kml trace on the map. |
||
643 | */ |
||
644 | public function drawKML(): void { |
||
645 | // TODO get colour from kml node (not currently supported in geoPHP) |
||
646 | $col = imagecolorallocatealpha($this->image, 255, 0, 0, .4 * 127); |
||
647 | $kmlgeom = geoPHP::load(file_get_contents($this->kmlFileName), 'kml'); |
||
648 | $this->drawGeometry($kmlgeom, $col); |
||
649 | } |
||
650 | |||
651 | /** |
||
652 | * Draw geometry or geometry collection on the map. |
||
653 | * |
||
654 | * @param Geometry $geom |
||
655 | * @param int $colour |
||
656 | * drawing colour |
||
657 | */ |
||
658 | private function drawGeometry(Geometry $geom, int $colour): void { |
||
659 | if(empty($geom)) { |
||
660 | return; |
||
661 | } |
||
662 | |||
663 | switch($geom->geometryType()) { |
||
664 | case 'GeometryCollection' : |
||
665 | // recursively draw part of the collection |
||
666 | for($i = 1; $i < $geom->numGeometries() + 1; $i++) { |
||
667 | $_geom = $geom->geometryN($i); |
||
668 | $this->drawGeometry($_geom, $colour); |
||
669 | } |
||
670 | break; |
||
671 | case 'MultiPolygon' : |
||
672 | case 'MultiLineString' : |
||
673 | case 'MultiPoint' : |
||
674 | // TODO implement / do nothing |
||
675 | break; |
||
676 | case 'Polygon' : |
||
677 | $this->drawPolygon($geom, $colour); |
||
678 | break; |
||
679 | case 'LineString' : |
||
680 | $this->drawLineString($geom, $colour); |
||
681 | break; |
||
682 | case 'Point' : |
||
683 | $this->drawPoint($geom, $colour); |
||
684 | break; |
||
685 | default : |
||
686 | // draw nothing |
||
687 | break; |
||
688 | } |
||
689 | } |
||
690 | |||
691 | /** |
||
692 | * Draw a polygon on the map. |
||
693 | * |
||
694 | * @param Polygon $polygon |
||
695 | * @param int $colour |
||
696 | * drawing colour |
||
697 | */ |
||
698 | private function drawPolygon($polygon, int $colour) { |
||
699 | // TODO implementation of drawing holes, |
||
700 | // maybe draw the polygon to an in-memory image and use imagecopy, draw polygon in col., draw holes in bgcol? |
||
701 | |||
702 | // print_r('Polygon:<br />'); |
||
703 | // print_r($polygon); |
||
704 | $extPoints = array(); |
||
705 | // extring is a linestring actually.. |
||
706 | $extRing = $polygon->exteriorRing(); |
||
707 | |||
708 | for($i = 1; $i < $extRing->numGeometries(); $i++) { |
||
709 | $p1 = $extRing->geometryN($i); |
||
710 | $x = floor( |
||
711 | ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p1->x(), $this->zoom)) |
||
712 | ); |
||
713 | $y = floor( |
||
714 | ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p1->y(), $this->zoom)) |
||
715 | ); |
||
716 | $extPoints [] = $x; |
||
717 | $extPoints [] = $y; |
||
718 | } |
||
719 | // print_r('points:('.($i-1).')<br />'); |
||
720 | // print_r($extPoints); |
||
721 | // imagepolygon ($this->image, $extPoints, $i-1, $colour ); |
||
722 | imagefilledpolygon($this->image, $extPoints, $i - 1, $colour); |
||
723 | } |
||
724 | |||
725 | /** |
||
726 | * Draw a line on the map. |
||
727 | * |
||
728 | * @param LineString $line |
||
729 | * @param int $colour |
||
730 | * drawing colour |
||
731 | */ |
||
732 | private function drawLineString($line, $colour) { |
||
733 | imagesetthickness($this->image, 2); |
||
734 | for($p = 1; $p < $line->numGeometries(); $p++) { |
||
735 | // get first pair of points |
||
736 | $p1 = $line->geometryN($p); |
||
737 | $p2 = $line->geometryN($p + 1); |
||
738 | // translate to paper space |
||
739 | $x1 = floor( |
||
740 | ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p1->x(), $this->zoom)) |
||
741 | ); |
||
742 | $y1 = floor( |
||
743 | ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p1->y(), $this->zoom)) |
||
744 | ); |
||
745 | $x2 = floor( |
||
746 | ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($p2->x(), $this->zoom)) |
||
747 | ); |
||
748 | $y2 = floor( |
||
749 | ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($p2->y(), $this->zoom)) |
||
750 | ); |
||
751 | // draw to image |
||
752 | imageline($this->image, $x1, $y1, $x2, $y2, $colour); |
||
753 | } |
||
754 | imagesetthickness($this->image, 1); |
||
755 | } |
||
756 | |||
757 | /** |
||
758 | * Draw a point on the map. |
||
759 | * |
||
760 | * @param Point $point |
||
761 | * @param int $colour |
||
762 | * drawing colour |
||
763 | */ |
||
764 | private function drawPoint($point, $colour) { |
||
765 | imagesetthickness($this->image, 2); |
||
766 | // translate to paper space |
||
767 | $cx = floor( |
||
768 | ($this->width / 2) - $this->tileSize * ($this->centerX - $this->lonToTile($point->x(), $this->zoom)) |
||
769 | ); |
||
770 | $cy = floor( |
||
771 | ($this->height / 2) - $this->tileSize * ($this->centerY - $this->latToTile($point->y(), $this->zoom)) |
||
772 | ); |
||
773 | $r = 5; |
||
774 | // draw to image |
||
775 | // imageellipse($this->image, $cx, $cy,$r, $r, $colour); |
||
776 | imagefilledellipse($this->image, $cx, $cy, $r, $r, $colour); |
||
777 | // don't use imageellipse because the imagesetthickness function has |
||
778 | // no effect. So the better workaround is to use imagearc. |
||
779 | imagearc($this->image, $cx, $cy, $r, $r, 0, 359, $colour); |
||
780 | imagesetthickness($this->image, 1); |
||
781 | } |
||
782 | |||
783 | /** |
||
784 | * Draw gpx trace on the map. |
||
785 | */ |
||
786 | public function drawGPX() { |
||
790 | } |
||
791 | |||
792 | /** |
||
793 | * Draw geojson on the map. |
||
794 | */ |
||
795 | public function drawGeojson() { |
||
796 | $col = imagecolorallocatealpha($this->image, 255, 0, 255, .4 * 127); |
||
799 | } |
||
800 | |||
801 | /** |
||
802 | * add copyright and origin notice and icons to the map. |
||
803 | */ |
||
804 | public function drawCopyright() { |
||
867 | ); |
||
868 | |||
871 |