friendica/src/Util/Map.php

25 lines
667 B
PHP
Raw Normal View History

2015-05-15 20:41:10 +02:00
<?php
2017-12-13 22:38:14 +01:00
/**
* @file src/Util/Map.php
*/
namespace Friendica\Util;
2015-05-15 20:41:10 +02:00
/**
* Leaflet Map related functions
*/
2017-12-13 22:38:14 +01:00
class Map {
public static function byCoordinates($coord) {
$coord = trim($coord);
$coord = str_replace([',','/',' '],[' ',' ',' '],$coord);
$arr = ['lat' => trim(substr($coord,0,strpos($coord,' '))), 'lon' => trim(substr($coord,strpos($coord,' ')+1)), 'html' => ''];
2017-12-13 22:38:14 +01:00
call_hooks('generate_map',$arr);
return ($arr['html']) ? $arr['html'] : $coord;
}
public static function byLocation($location) {
$arr = ['location' => $location, 'html' => ''];
2017-12-13 22:38:14 +01:00
call_hooks('generate_named_map',$arr);
return ($arr['html']) ? $arr['html'] : $location;
}
2015-05-15 20:41:10 +02:00
}