2015-05-15 18:41:10 +00:00
|
|
|
<?php
|
2017-12-13 21:38:14 +00:00
|
|
|
/**
|
|
|
|
* @file src/Util/Map.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Util;
|
2015-05-15 18:41:10 +00:00
|
|
|
|
2018-12-26 06:06:24 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-01-17 18:42:40 +00:00
|
|
|
|
2015-05-15 18:41:10 +00:00
|
|
|
/**
|
|
|
|
* Leaflet Map related functions
|
|
|
|
*/
|
2017-12-13 21:38:14 +00:00
|
|
|
class Map {
|
2018-03-20 06:32:17 +00:00
|
|
|
public static function byCoordinates($coord, $html_mode = 0) {
|
2017-12-13 21:38:14 +00:00
|
|
|
$coord = trim($coord);
|
2018-01-15 13:05:12 +00:00
|
|
|
$coord = str_replace([',','/',' '],[' ',' ',' '],$coord);
|
2018-03-20 06:32:17 +00:00
|
|
|
$arr = ['lat' => trim(substr($coord,0,strpos($coord,' '))), 'lon' => trim(substr($coord,strpos($coord,' ')+1)), 'mode' => $html_mode, 'html' => ''];
|
2018-12-26 06:06:24 +00:00
|
|
|
Hook::callAll('generate_map',$arr);
|
2017-12-13 21:38:14 +00:00
|
|
|
return ($arr['html']) ? $arr['html'] : $coord;
|
|
|
|
}
|
|
|
|
|
2018-03-20 06:32:17 +00:00
|
|
|
public static function byLocation($location, $html_mode = 0) {
|
|
|
|
$arr = ['location' => $location, 'mode' => $html_mode, 'html' => ''];
|
2018-12-26 06:06:24 +00:00
|
|
|
Hook::callAll('generate_named_map',$arr);
|
2017-12-13 21:38:14 +00:00
|
|
|
return ($arr['html']) ? $arr['html'] : $location;
|
|
|
|
}
|
2018-03-20 06:32:17 +00:00
|
|
|
|
|
|
|
public static function getCoordinates($location) {
|
|
|
|
$arr = ['location' => $location, 'lat' => false, 'lon' => false];
|
2018-12-26 06:06:24 +00:00
|
|
|
Hook::callAll('Map::getCoordinates', $arr);
|
2018-03-20 06:32:17 +00:00
|
|
|
return $arr;
|
|
|
|
}
|
2015-05-15 18:41:10 +00:00
|
|
|
}
|