Issues (2564)

app/Module/EsriMaps.php (1 issue)

Labels
Severity
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2025 webtrees development team
6
 * This program is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
 * GNU General Public License for more details.
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16
 */
17
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Module;
21
22
use Fisharebest\Webtrees\I18N;
0 ignored issues
show
The type Fisharebest\Webtrees\I18N was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
23
24
/**
25
 * Class EsriMaps - use maps within webtrees
26
 */
27
class EsriMaps extends AbstractModule implements ModuleMapProviderInterface
28
{
29
    use ModuleMapProviderTrait;
30
31
    /**
32
     * Name of the map provider.
33
     *
34
     * @return string
35
     */
36
    public function title(): string
37
    {
38
        return /* I18N: Name of a mapping organisation */ I18N::translate('Esri/ArcGIS');
39
    }
40
41
    /**
42
     * Name of the map provider.
43
     *
44
     * @return string
45
     */
46
    public function description(): string
47
    {
48
        $link = '<a href="https://maps.esri.com" dir="ltr">maps.esri.com</a>';
49
50
        // I18N: %s is a link/URL
51
        return I18N::translate('Create maps using %s.', $link);
52
    }
53
54
    public function isEnabledByDefault(): bool
55
    {
56
        return false;
57
    }
58
59
    /**
60
     * Parameters to create a TileLayer in LeafletJs.
61
     *
62
     * @return array<object>
63
     */
64
    public function leafletJsTileLayers(): array
65
    {
66
        return [
67
            (object) [
68
                'attribution' => 'Tiles ©Esri &mdash; Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012',
69
                'default'     => true,
70
                'label'       => 'WorldStreetMap',
71
                'maxZoom'     => 17,
72
                'minZoom'     => 2,
73
                'url'         => 'https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}',
74
            ],
75
            (object) [
76
                'attribution' => 'Tiles ©Esri &mdash; Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community',
77
                'default'     => false,
78
                'label'       => 'WorldTopoMap',
79
                'maxZoom'     => 17,
80
                'minZoom'     => 2,
81
                'url'         => 'https://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}',
82
            ],
83
            (object) [
84
                'attribution' => 'Tiles &copy; Esri &mdash; National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC',
85
                'default'     => false,
86
                'label'       => 'NatGeoWorldMap',
87
                'maxZoom'     => 12,
88
                'minZoom'     => 2,
89
                'url'         => 'https://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}',
90
            ],
91
        ];
92
    }
93
}
94