1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| import { _ } from './gettext';
|
| export default [
| {
| attribution: "Map data: © Google Maps",
| subdomains: ["mt0", "mt1", "mt2", "mt3"],
| maxZoom: 21,
| minZoom: 0,
| label: _("Google Maps Hybrid"),
| url: "//{s}.google.com/vt/lyrs=s,h&x={x}&y={y}&z={z}"
| },
| {
| attribution:
| "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community",
| maxZoom: 21,
| minZoom: 0,
| label: _("ESRI Satellite"),
| url:
| "//server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}"
| },
| {
| attribution:
| '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>',
| maxZoom: 19,
| minZoom: 0,
| label: _("OpenStreetMap"),
| url: "//tile.openstreetmap.org/{z}/{x}/{y}.png"
| }
| ];
|
|