Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class MapGenerator |
||
9 | { |
||
10 | /** |
||
11 | * Generates an OpenStreetMap embedding link with |
||
12 | * it's view more or less centered around a given |
||
13 | * point. |
||
14 | * |
||
15 | * @param float $latitude |
||
16 | * @param float $longitude |
||
17 | * @return string |
||
18 | */ |
||
19 | 1 | public function MakeLink(float $latitude, float $longitude) : string |
|
32 |