18 lines
296 B
PHP
18 lines
296 B
PHP
<?php
|
|
|
|
namespace OCA\Gestion\Helpers;
|
|
|
|
use DateTime;
|
|
use DateTimeZone;
|
|
use Exception;
|
|
use IntlDateFormatter;
|
|
|
|
class GeoHelpers
|
|
{
|
|
public static function getPointsTextFromLatitudeAndLongitude($latitude,$longitude): string
|
|
{
|
|
return (string)$latitude.','.(string)$longitude;
|
|
}
|
|
|
|
}
|