import geopandas as gpd
import pandas as pd
Week 4B: Interactive Web Maps
- Section 401
- Wednesday, September 27, 2023
Interactive maps in Python
Haven’t we already done this?
Yes! So far, we’ve used hvplot, geopandas, & altair to create interactive map-based visualizations.
Why do we need something more?
The benefits of Leaflet
- The leading open-source mapping library
- Simple and powerful
- Leverage the open-source community and lots of powerful plugins
Folium: Leaflet in Python
Pros - Create Leaflet.js maps directly from Python - Combine power of Leaflet.js with the data wrangling ease of Python
Cons - A wrapper for most, but not all of Leaflet’s functionality - Can be difficult to debug and find errors
Check out the Folium docs for more info.
We’ve already seen choropleth maps with Folium
The geopandas .explore()
function, which makes interactive choropleth maps, produces Folium maps!
Let’s load the median property assessment data by neighborhood from last lecture’s exercise:
# Load the data from a CSV file into a pandas DataFrame
= pd.read_csv(
trash_requests_df "data/trash_311_requests_2020.csv", # Use the file path relative to the current folder
)
# Remove rows with missing geometry
= trash_requests_df.dropna(subset=["lat", "lon"])
trash_requests_df
# Create our GeoDataFrame with geometry column created from lon/lat
= gpd.GeoDataFrame(
trash_requests
trash_requests_df,=gpd.points_from_xy(trash_requests_df["lon"], trash_requests_df["lat"]),
geometry="EPSG:4326",
crs )
Load neighborhoods and do the spatial join to associate a neighborhood with each ticket:
# Load the neighborhoods
= gpd.read_file("data/zillow_neighborhoods.geojson")
neighborhoods
# Do the spatial join to add the "ZillowName" column
= gpd.sjoin(
requests_with_hood
trash_requests,
neighborhoods.to_crs(trash_requests.crs),="within",
predicate )
Group by neighborhood, calculate the number of tickets per neighborhood, and then merge neighborhood geometries.
= pd.merge(
requests_by_hood # GeoDataFrame is left
neighborhoods,# DataFrame is right: This is the number of tickets per neighborhood
"ZillowName", as_index=False).size(),
requests_with_hood.groupby(# Merge column,
="ZillowName",
on
).rename(# Rename size column
={"size": "num_tickets"}
columns
)
# Get the area of each geometry in sq. meters
# NOTE: we are converting to EPSG:3857 which has units of meters
= requests_by_hood.to_crs(epsg=3857).geometry.area
area
# Normalize by area
"num_tickets_per_area"] = requests_by_hood["num_tickets"] / area * 1e4 requests_by_hood[
requests_by_hood.head()
ZillowName | geometry | num_tickets | num_tickets_per_area | |
---|---|---|---|---|
0 | Academy Gardens | POLYGON ((-74.99851 40.06435, -74.99456 40.061... | 84 | 0.350561 |
1 | Allegheny West | POLYGON ((-75.16592 40.00327, -75.16596 40.003... | 330 | 0.646749 |
2 | Andorra | POLYGON ((-75.22463 40.06686, -75.22588 40.065... | 83 | 0.212905 |
3 | Aston Woodbridge | POLYGON ((-75.00860 40.05369, -75.00861 40.053... | 110 | 0.486609 |
4 | Bartram Village | POLYGON ((-75.20733 39.93350, -75.20733 39.933... | 35 | 0.155914 |
The .explore()
function is a wrapper around Folium/leaflet.js
= requests_by_hood.explore(column="num_tickets_per_area", tiles="Cartodb positron")
m
m
The object returned by .explore()
a Folium map!
type(m)
folium.folium.Map
The explore() function
The .explore()
function is a powerful wrapper around folium with a lot of the same functionality of the plot()
function in geopandas. In my experience, it is much easier to work with than folium directly. My recommendation is to use the .explore()
function when you can.
Classification schemes
You can use the same classification schemes to bin your data when using the explore()
function. For example:
= requests_by_hood.explore(
m ="num_tickets_per_area",
column="Cartodb positron",
tiles="FisherJenks", # NEW: the classification scheme
scheme=5, # NEW: the number of bins
k
)
m
Style options
The explore()
function allows you to specify dictionaries with style keywords for the GeoJSON. The allowed options come directly from the leaflet.js library. Check out the documentation for the .explore()
function for more info. You can see the allowed values for GeoJSON on the leaflet documentation.
For example, let’s plot our neighborhood GeoJSON and apply a default style, as well as as a style for when the user hover (highlights) a polygon.
= hoods.explore(
m ="Cartodb dark matter",
tiles# NEW: The style dictionary
={
style_kwds"weight": 2,
"color": "lightblue",
"fillOpacity": 0.1,
},=True, # NEW: turn on highlighting
highlight# NEW: The style dict to apply when hovering
={
highlight_kwds"weight": 2,
"color": "red",
},
)
m
You can also perform styling via functions that take in a GeoJSON feature and return a dictionary of style options. This allows you to style GeoJSON features differently based on the .properties
attribute of the GeoJSON feature.
For example:
def my_style_function(feature):
"""Change the style based on whether the number of tickets > 500."""
# Data attributes stored in properties dict
= feature["properties"]
properties
# Shared style
= {"weight": 2, "fillOpacity": 0.8, "color": "white"}
style
# Change fillColor
if properties["num_tickets"] > 500:
"fillColor"] = "red"
style[else:
"fillColor"] = "lightblue"
style[
# Return style dict
return style
= requests_by_hood.explore(
m ="Cartodb dark matter",
tiles={"style_function": my_style_function}, # NEW: The style function
style_kwds
)
m
More Folium features
We’ll cover a few more of the key features of Folium today…
Things we’ll cover: 1. Creating a base map with tiles 1. Overlaying GeoJSON features with layer control 1. Examples of Folium plugins
import folium
1. Creating a Folium map
Key function: folium.Map
Lots of configuration options
Some key ones: - location: the center location of the map - zoom_start: the initial zoom level of the map - tiles: the name of the tile provider
Let’s take a look at the help message:
folium.Map?
Init signature: folium.Map( location=None, width='100%', height='100%', left='0%', top='0%', position='relative', tiles='OpenStreetMap', attr=None, min_zoom=0, max_zoom=18, zoom_start=10, min_lat=-90, max_lat=90, min_lon=-180, max_lon=180, max_bounds=False, crs='EPSG3857', control_scale=False, prefer_canvas=False, no_touch=False, disable_3d=False, png_enabled=False, zoom_control=True, **kwargs, ) Docstring: Create a Map with Folium and Leaflet.js Generate a base map of given width and height with either default tilesets or a custom tileset URL. The following tilesets are built-in to Folium. Pass any of the following to the "tiles" keyword: - "OpenStreetMap" - "Mapbox Bright" (Limited levels of zoom for free tiles) - "Mapbox Control Room" (Limited levels of zoom for free tiles) - "Stamen" (Terrain, Toner, and Watercolor) - "Cloudmade" (Must pass API key) - "Mapbox" (Must pass API key) - "CartoDB" (positron and dark_matter) You can pass a custom tileset to Folium by passing a :class:`xyzservices.TileProvider` or a Leaflet-style URL to the tiles parameter: ``http://{s}.yourtiles.com/{z}/{x}/{y}.png``. You can find a list of free tile providers here: ``http://leaflet-extras.github.io/leaflet-providers/preview/``. Be sure to check their terms and conditions and to provide attribution with the `attr` keyword. Parameters ---------- location: tuple or list, default None Latitude and Longitude of Map (Northing, Easting). width: pixel int or percentage string (default: '100%') Width of the map. height: pixel int or percentage string (default: '100%') Height of the map. tiles: str or TileLayer or :class:`xyzservices.TileProvider`, default 'OpenStreetMap' Map tileset to use. Can choose from a list of built-in tiles, pass a :class:`xyzservices.TileProvider`, pass a custom URL, pass a TileLayer object, or pass `None` to create a map without tiles. For more advanced tile layer options, use the `TileLayer` class. min_zoom: int, default 0 Minimum allowed zoom level for the tile layer that is created. max_zoom: int, default 18 Maximum allowed zoom level for the tile layer that is created. zoom_start: int, default 10 Initial zoom level for the map. attr: string, default None Map tile attribution; only required if passing custom tile URL. crs : str, default 'EPSG3857' Defines coordinate reference systems for projecting geographical points into pixel (screen) coordinates and back. You can use Leaflet's values : * EPSG3857 : The most common CRS for online maps, used by almost all free and commercial tile providers. Uses Spherical Mercator projection. Set in by default in Map's crs option. * EPSG4326 : A common CRS among GIS enthusiasts. Uses simple Equirectangular projection. * EPSG3395 : Rarely used by some commercial tile providers. Uses Elliptical Mercator projection. * Simple : A simple CRS that maps longitude and latitude into x and y directly. May be used for maps of flat surfaces (e.g. game maps). Note that the y axis should still be inverted (going from bottom to top). control_scale : bool, default False Whether to add a control scale on the map. prefer_canvas : bool, default False Forces Leaflet to use the Canvas back-end (if available) for vector layers instead of SVG. This can increase performance considerably in some cases (e.g. many thousands of circle markers on the map). no_touch : bool, default False Forces Leaflet to not use touch events even if it detects them. disable_3d : bool, default False Forces Leaflet to not use hardware-accelerated CSS 3D transforms for positioning (which may cause glitches in some rare environments) even if they're supported. zoom_control : bool, default True Display zoom controls on the map. **kwargs Additional keyword arguments are passed to Leaflets Map class: https://leafletjs.com/reference.html#map Returns ------- Folium Map Object Examples -------- >>> m = folium.Map(location=[45.523, -122.675], width=750, height=500) >>> m = folium.Map(location=[45.523, -122.675], tiles="cartodb positron") >>> m = folium.Map( ... location=[45.523, -122.675], ... zoom_start=2, ... tiles="https://api.mapbox.com/v4/mapbox.streets/{z}/{x}/{y}.png?access_token=mytoken", ... attr="Mapbox attribution", ... ) File: ~/mambaforge/envs/musa-550-fall-2023/lib/python3.10/site-packages/folium/folium.py Type: type Subclasses:
The default tiles: OpenStreetMap
# let's center the map on Philadelphia
= folium.Map(location=[39.99, -75.13], zoom_start=11)
m
m
= folium.Map(location=[39.99, -75.13], zoom_start=11, tiles="StamenWaterColor")
m
m
Other tile providers
Check out the xyzservices.providers
for all of the available options. You can pass any of these built-in tile providers to Folium.Map()
or the .explore()
function.
Here is a very useful demo of common tile providers: https://leaflet-extras.github.io/leaflet-providers/preview
import xyzservices
xyzservices.providers
-
xyzservices.Bunch7 items
-
xyzservices.TileProviderOpenStreetMap.Mapnik
- url
- https://tile.openstreetmap.org/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap contributors
-
xyzservices.TileProviderOpenStreetMap.DE
- url
- https://tile.openstreetmap.de/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap contributors
-
xyzservices.TileProviderOpenStreetMap.CH
- url
- https://tile.osm.ch/switzerland/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap contributors
- bounds
- [[45, 5], [48, 11]]
-
xyzservices.TileProviderOpenStreetMap.France
- url
- https://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png
- max_zoom
- 20
- html_attribution
- © OpenStreetMap France | © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap France | (C) OpenStreetMap contributors
-
xyzservices.TileProviderOpenStreetMap.HOT
- url
- https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- © OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France
- attribution
- (C) OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France
-
xyzservices.TileProviderOpenStreetMap.BZH
- url
- https://tile.openstreetmap.bzh/br/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- © OpenStreetMap contributors, Tiles courtesy of Breton OpenStreetMap Team
- attribution
- (C) OpenStreetMap contributors, Tiles courtesy of Breton OpenStreetMap Team
- bounds
- [[46.2, -5.5], [50, 0.7]]
-
xyzservices.TileProviderOpenStreetMap.BlackAndWhite
- url
- http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png
- max_zoom
- 18
- attribution
- (C) OpenStreetMap contributors
- html_attribution
- © OpenStreetMap contributors
-
-
xyzservices.Bunch3 items
-
xyzservices.TileProviderMapTilesAPI.OSMEnglish
- url
- https://maptiles.p.rapidapi.com/{variant}/{z}/{x}/{y}.png?rapidapi-key={apikey}
- html_attribution
- © MapTiles API, © OpenStreetMap contributors
- attribution
- (C) MapTiles API, (C) OpenStreetMap contributors
- variant
- en/map/v1
- apikey
- max_zoom
- 19
-
xyzservices.TileProviderMapTilesAPI.OSMFrancais
- url
- https://maptiles.p.rapidapi.com/{variant}/{z}/{x}/{y}.png?rapidapi-key={apikey}
- html_attribution
- © MapTiles API, © OpenStreetMap contributors
- attribution
- (C) MapTiles API, (C) OpenStreetMap contributors
- variant
- fr/map/v1
- apikey
- max_zoom
- 19
-
xyzservices.TileProviderMapTilesAPI.OSMEspagnol
- url
- https://maptiles.p.rapidapi.com/{variant}/{z}/{x}/{y}.png?rapidapi-key={apikey}
- html_attribution
- © MapTiles API, © OpenStreetMap contributors
- attribution
- (C) MapTiles API, (C) OpenStreetMap contributors
- variant
- es/map/v1
- apikey
- max_zoom
- 19
-
-
xyzservices.TileProviderOpenSeaMap
- url
- https://tiles.openseamap.org/seamark/{z}/{x}/{y}.png
- html_attribution
- Map data: © OpenSeaMap contributors
- attribution
- Map data: (C) OpenSeaMap contributors
-
xyzservices.TileProviderOPNVKarte
- url
- https://tileserver.memomaps.de/tilegen/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- Map memomaps.de CC-BY-SA, map data © OpenStreetMap contributors
- attribution
- Map memomaps.de CC-BY-SA, map data (C) OpenStreetMap contributors
-
xyzservices.TileProviderOpenTopoMap
- url
- https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png
- max_zoom
- 17
- html_attribution
- Map data: © OpenStreetMap contributors, SRTM | Map style: © OpenTopoMap (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors, SRTM | Map style: (C) OpenTopoMap (CC-BY-SA)
-
xyzservices.TileProviderOpenRailwayMap
- url
- https://{s}.tiles.openrailwaymap.org/standard/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © OpenRailwayMap (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) OpenRailwayMap (CC-BY-SA)
-
xyzservices.TileProviderOpenFireMap
- url
- http://openfiremap.org/hytiles/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © OpenFireMap (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) OpenFireMap (CC-BY-SA)
-
xyzservices.TileProviderSafeCast
- url
- https://s3.amazonaws.com/te512.safecast.org/{z}/{x}/{y}.png
- max_zoom
- 16
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © SafeCast (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) SafeCast (CC-BY-SA)
-
xyzservices.Bunch4 items
-
xyzservices.TileProviderStadia.AlidadeSmooth
- url
- https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png
- max_zoom
- 20
- html_attribution
- © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
- attribution
- (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
-
xyzservices.TileProviderStadia.AlidadeSmoothDark
- url
- https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png
- max_zoom
- 20
- html_attribution
- © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
- attribution
- (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
-
xyzservices.TileProviderStadia.OSMBright
- url
- https://tiles.stadiamaps.com/tiles/osm_bright/{z}/{x}/{y}{r}.png
- max_zoom
- 20
- html_attribution
- © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
- attribution
- (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
-
xyzservices.TileProviderStadia.Outdoors
- url
- https://tiles.stadiamaps.com/tiles/outdoors/{z}/{x}/{y}{r}.png
- max_zoom
- 20
- html_attribution
- © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
- attribution
- (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
-
-
xyzservices.Bunch9 items
-
xyzservices.TileProviderThunderforest.OpenCycleMap
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- cycle
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.Transport
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- transport
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.TransportDark
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- transport-dark
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.SpinalMap
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- spinal-map
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.Landscape
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- landscape
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.Outdoors
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- outdoors
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.Pioneer
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- pioneer
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.MobileAtlas
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- mobile-atlas
- apikey
- max_zoom
- 22
-
xyzservices.TileProviderThunderforest.Neighbourhood
- url
- https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
- html_attribution
- © Thunderforest, © OpenStreetMap contributors
- attribution
- (C) Thunderforest, (C) OpenStreetMap contributors
- variant
- neighbourhood
- apikey
- max_zoom
- 22
-
-
xyzservices.TileProviderCyclOSM
- url
- https://{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png
- max_zoom
- 20
- html_attribution
- CyclOSM | Map data: © OpenStreetMap contributors
- attribution
- CyclOSM | Map data: (C) OpenStreetMap contributors
-
xyzservices.Bunch6 items
-
xyzservices.TileProviderJawg.Streets
- url
- https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
- html_attribution
- © JawgMaps © OpenStreetMap contributors
- attribution
- (C) **Jawg** Maps (C) OpenStreetMap contributors
- min_zoom
- 0
- max_zoom
- 22
- subdomains
- abcd
- variant
- jawg-streets
- accessToken
-
xyzservices.TileProviderJawg.Terrain
- url
- https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
- html_attribution
- © JawgMaps © OpenStreetMap contributors
- attribution
- (C) **Jawg** Maps (C) OpenStreetMap contributors
- min_zoom
- 0
- max_zoom
- 22
- subdomains
- abcd
- variant
- jawg-terrain
- accessToken
-
xyzservices.TileProviderJawg.Sunny
- url
- https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
- html_attribution
- © JawgMaps © OpenStreetMap contributors
- attribution
- (C) **Jawg** Maps (C) OpenStreetMap contributors
- min_zoom
- 0
- max_zoom
- 22
- subdomains
- abcd
- variant
- jawg-sunny
- accessToken
-
xyzservices.TileProviderJawg.Dark
- url
- https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
- html_attribution
- © JawgMaps © OpenStreetMap contributors
- attribution
- (C) **Jawg** Maps (C) OpenStreetMap contributors
- min_zoom
- 0
- max_zoom
- 22
- subdomains
- abcd
- variant
- jawg-dark
- accessToken
-
xyzservices.TileProviderJawg.Light
- url
- https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
- html_attribution
- © JawgMaps © OpenStreetMap contributors
- attribution
- (C) **Jawg** Maps (C) OpenStreetMap contributors
- min_zoom
- 0
- max_zoom
- 22
- subdomains
- abcd
- variant
- jawg-light
- accessToken
-
xyzservices.TileProviderJawg.Matrix
- url
- https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
- html_attribution
- © JawgMaps © OpenStreetMap contributors
- attribution
- (C) **Jawg** Maps (C) OpenStreetMap contributors
- min_zoom
- 0
- max_zoom
- 22
- subdomains
- abcd
- variant
- jawg-matrix
- accessToken
-
-
xyzservices.TileProviderMapBox
- url
- https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}{r}?access_token={accessToken}
- html_attribution
- © Mapbox © OpenStreetMap contributors Improve this map
- attribution
- (C) Mapbox (C) OpenStreetMap contributors Improve this map
- tileSize
- 512
- max_zoom
- 18
- zoomOffset
- -1
- id
- mapbox/streets-v11
- accessToken
-
xyzservices.Bunch15 items
-
xyzservices.TileProviderMapTiler.Streets
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- streets
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Basic
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- basic
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Bright
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- bright
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Pastel
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- pastel
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Positron
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- positron
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Hybrid
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- hybrid
- ext
- jpg
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Toner
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- toner
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Topo
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- topo
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Voyager
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- voyager
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Basic4326
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- basic-4326
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
- crs
- EPSG:4326
-
xyzservices.TileProviderMapTiler.Outdoor
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- outdoor
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Topographique
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- topographique
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Winter
- url
- https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- winter
- ext
- png
- key
- tileSize
- 512
- zoomOffset
- -1
- min_zoom
- 0
- max_zoom
- 21
-
xyzservices.TileProviderMapTiler.Satellite
- url
- https://api.maptiler.com/tiles/{variant}/{z}/{x}/{y}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- satellite-v2
- ext
- jpg
- key
- min_zoom
- 0
- max_zoom
- 20
-
xyzservices.TileProviderMapTiler.Terrain
- url
- https://api.maptiler.com/tiles/{variant}/{z}/{x}/{y}.{ext}?key={key}
- html_attribution
- © MapTiler © OpenStreetMap contributors
- attribution
- (C) MapTiler (C) OpenStreetMap contributors
- variant
- terrain-rgb
- ext
- png
- key
- min_zoom
- 0
- max_zoom
- 12
-
-
xyzservices.Bunch12 items
-
xyzservices.TileProviderStamen.Toner
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toner
- ext
- png
-
xyzservices.TileProviderStamen.TonerBackground
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toner-background
- ext
- png
-
xyzservices.TileProviderStamen.TonerHybrid
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toner-hybrid
- ext
- png
-
xyzservices.TileProviderStamen.TonerLines
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toner-lines
- ext
- png
-
xyzservices.TileProviderStamen.TonerLabels
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toner-labels
- ext
- png
-
xyzservices.TileProviderStamen.TonerLite
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toner-lite
- ext
- png
-
xyzservices.TileProviderStamen.Watercolor
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 1
- max_zoom
- 16
- variant
- watercolor
- ext
- jpg
-
xyzservices.TileProviderStamen.Terrain
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 18
- variant
- terrain
- ext
- png
-
xyzservices.TileProviderStamen.TerrainBackground
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 18
- variant
- terrain-background
- ext
- png
-
xyzservices.TileProviderStamen.TerrainLabels
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 18
- variant
- terrain-labels
- ext
- png
-
xyzservices.TileProviderStamen.TopOSMRelief
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toposm-color-relief
- ext
- jpg
- bounds
- [[22, -132], [51, -56]]
-
xyzservices.TileProviderStamen.TopOSMFeatures
- url
- https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
- html_attribution
- Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
- attribution
- Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
- subdomains
- abcd
- min_zoom
- 0
- max_zoom
- 20
- variant
- toposm-features
- ext
- png
- bounds
- [[22, -132], [51, -56]]
- opacity
- 0.9
-
-
xyzservices.Bunch3 items
-
xyzservices.TileProviderTomTom.Basic
- url
- https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}
- variant
- basic
- max_zoom
- 22
- html_attribution
- © 1992 - 2023 TomTom.
- attribution
- (C) 1992 - 2023 TomTom.
- subdomains
- abcd
- style
- main
- ext
- png
- apikey
-
xyzservices.TileProviderTomTom.Hybrid
- url
- https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}
- variant
- hybrid
- max_zoom
- 22
- html_attribution
- © 1992 - 2023 TomTom.
- attribution
- (C) 1992 - 2023 TomTom.
- subdomains
- abcd
- style
- main
- ext
- png
- apikey
-
xyzservices.TileProviderTomTom.Labels
- url
- https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}
- variant
- labels
- max_zoom
- 22
- html_attribution
- © 1992 - 2023 TomTom.
- attribution
- (C) 1992 - 2023 TomTom.
- subdomains
- abcd
- style
- main
- ext
- png
- apikey
-
-
xyzservices.Bunch15 items
-
xyzservices.TileProviderEsri.WorldStreetMap
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- World_Street_Map
- html_attribution
- Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012
- attribution
- Tiles (C) Esri -- Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012
-
xyzservices.TileProviderEsri.DeLorme
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- Specialty/DeLorme_World_Base_Map
- html_attribution
- Tiles © Esri — Copyright: ©2012 DeLorme
- attribution
- Tiles (C) Esri -- Copyright: (C)2012 DeLorme
- min_zoom
- 1
- max_zoom
- 11
-
xyzservices.TileProviderEsri.WorldTopoMap
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- World_Topo_Map
- html_attribution
- Tiles © Esri — 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
- attribution
- Tiles (C) Esri -- 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
-
xyzservices.TileProviderEsri.WorldImagery
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- World_Imagery
- html_attribution
- Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community
- attribution
- Tiles (C) Esri -- Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community
-
xyzservices.TileProviderEsri.WorldTerrain
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- World_Terrain_Base
- html_attribution
- Tiles © Esri — Source: USGS, Esri, TANA, DeLorme, and NPS
- attribution
- Tiles (C) Esri -- Source: USGS, Esri, TANA, DeLorme, and NPS
- max_zoom
- 13
-
xyzservices.TileProviderEsri.WorldShadedRelief
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- World_Shaded_Relief
- html_attribution
- Tiles © Esri — Source: Esri
- attribution
- Tiles (C) Esri -- Source: Esri
- max_zoom
- 13
-
xyzservices.TileProviderEsri.WorldPhysical
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- World_Physical_Map
- html_attribution
- Tiles © Esri — Source: US National Park Service
- attribution
- Tiles (C) Esri -- Source: US National Park Service
- max_zoom
- 8
-
xyzservices.TileProviderEsri.OceanBasemap
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- Ocean/World_Ocean_Base
- html_attribution
- Tiles © Esri — Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri
- attribution
- Tiles (C) Esri -- Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri
- max_zoom
- 13
-
xyzservices.TileProviderEsri.NatGeoWorldMap
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- NatGeo_World_Map
- html_attribution
- Tiles © Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC
- attribution
- Tiles (C) Esri -- National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC
- max_zoom
- 16
-
xyzservices.TileProviderEsri.WorldGrayCanvas
- url
- https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
- variant
- Canvas/World_Light_Gray_Base
- html_attribution
- Tiles © Esri — Esri, DeLorme, NAVTEQ
- attribution
- Tiles (C) Esri -- Esri, DeLorme, NAVTEQ
- max_zoom
- 16
-
xyzservices.TileProviderEsri.ArcticImagery
- url
- http://server.arcgisonline.com/ArcGIS/rest/services/Polar/Arctic_Imagery/MapServer/tile/{z}/{y}/{x}
- variant
- Arctic_Imagery
- html_attribution
- Earthstar Geographics
- attribution
- Earthstar Geographics
- max_zoom
- 24
- crs
- EPSG:5936
- bounds
- [[-2623285.8808999993, -2623285.8808999993], [6623285.8803, 6623285.8803]]
-
xyzservices.TileProviderEsri.ArcticOceanBase
- url
- http://server.arcgisonline.com/ArcGIS/rest/services/Polar/Arctic_Ocean_Base/MapServer/tile/{z}/{y}/{x}
- variant
- Arctic_Ocean_Base
- html_attribution
- Tiles © Esri — 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
- attribution
- Tiles © Esri — 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
- max_zoom
- 24
- crs
- EPSG:5936
- bounds
- [[-2623285.8808999993, -2623285.8808999993], [6623285.8803, 6623285.8803]]
-
xyzservices.TileProviderEsri.ArcticOceanReference
- url
- http://server.arcgisonline.com/ArcGIS/rest/services/Polar/Arctic_Ocean_Reference/MapServer/tile/{z}/{y}/{x}
- variant
- Arctic_Ocean_Reference
- html_attribution
- Tiles © Esri — 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
- attribution
- Tiles © Esri — 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
- max_zoom
- 24
- crs
- EPSG:5936
- bounds
- [[-2623285.8808999993, -2623285.8808999993], [6623285.8803, 6623285.8803]]
-
xyzservices.TileProviderEsri.AntarcticImagery
- url
- http://server.arcgisonline.com/ArcGIS/rest/services/Polar/Antarctic_Imagery/MapServer/tile/{z}/{y}/{x}
- variant
- Antarctic_Imagery
- html_attribution
- Earthstar Geographics
- attribution
- Earthstar Geographics
- max_zoom
- 24
- crs
- EPSG:3031
- bounds
- [[-9913957.327914657, -5730886.461772691], [9913957.327914657, 5730886.461773157]]
-
xyzservices.TileProviderEsri.AntarcticBasemap
- url
- https://tiles.arcgis.com/tiles/C8EMgrsFcRFL6LrL/arcgis/rest/services/Antarctic_Basemap/MapServer/tile/{z}/{y}/{x}
- variant
- Antarctic_Basemap
- html_attribution
- Imagery provided by NOAA National Centers for Environmental Information (NCEI); International Bathymetric Chart of the Southern Ocean (IBCSO); General Bathymetric Chart of the Oceans (GEBCO).
- attribution
- Imagery provided by NOAA National Centers for Environmental Information (NCEI); International Bathymetric Chart of the Southern Ocean (IBCSO); General Bathymetric Chart of the Oceans (GEBCO).
- max_zoom
- 9
- crs
- EPSG:3031
- bounds
- [[-4524583.19363305, -4524449.487765655], [4524449.4877656475, 4524583.193633042]]
-
-
xyzservices.Bunch11 items
-
xyzservices.TileProviderOpenWeatherMap.Clouds
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- clouds
-
xyzservices.TileProviderOpenWeatherMap.CloudsClassic
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- clouds_cls
-
xyzservices.TileProviderOpenWeatherMap.Precipitation
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- precipitation
-
xyzservices.TileProviderOpenWeatherMap.PrecipitationClassic
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- precipitation_cls
-
xyzservices.TileProviderOpenWeatherMap.Rain
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- rain
-
xyzservices.TileProviderOpenWeatherMap.RainClassic
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- rain_cls
-
xyzservices.TileProviderOpenWeatherMap.Pressure
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- pressure
-
xyzservices.TileProviderOpenWeatherMap.PressureContour
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- pressure_cntr
-
xyzservices.TileProviderOpenWeatherMap.Wind
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- wind
-
xyzservices.TileProviderOpenWeatherMap.Temperature
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- temp
-
xyzservices.TileProviderOpenWeatherMap.Snow
- url
- http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
- max_zoom
- 19
- html_attribution
- Map data © OpenWeatherMap
- attribution
- Map data (C) OpenWeatherMap
- apiKey
- opacity
- 0.5
- variant
- snow
-
-
xyzservices.Bunch30 items
-
xyzservices.TileProviderHERE.normalDay
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalDayCustom
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day.custom
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalDayGrey
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day.grey
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalDayMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalDayGreyMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day.grey.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalDayTransit
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day.transit
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalDayTransitMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day.transit.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalDayTraffic
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- traffic
- variant
- normal.traffic.day
- max_zoom
- 20
- type
- traffictile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalNight
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.night
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalNightMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.night.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalNightGrey
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.night.grey
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalNightGreyMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.night.grey.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalNightTransit
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.night.transit
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.normalNightTransitMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.night.transit.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.reducedDay
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- reduced.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.reducedNight
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- reduced.night
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.basicMap
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day
- max_zoom
- 20
- type
- basetile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.mapLabels
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- normal.day
- max_zoom
- 20
- type
- labeltile
- language
- eng
- format
- png
- size
- 256
-
xyzservices.TileProviderHERE.trafficFlow
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- traffic
- variant
- normal.day
- max_zoom
- 20
- type
- flowtile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.carnavDayGrey
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- carnav.day.grey
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.hybridDay
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- aerial
- variant
- hybrid.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.hybridDayMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- aerial
- variant
- hybrid.day.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.hybridDayTransit
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- aerial
- variant
- hybrid.day.transit
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.hybridDayGrey
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- aerial
- variant
- hybrid.grey.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.hybridDayTraffic
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- traffic
- variant
- hybrid.traffic.day
- max_zoom
- 20
- type
- traffictile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.pedestrianDay
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- pedestrian.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.pedestrianNight
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- base
- variant
- pedestrian.night
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.satelliteDay
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- aerial
- variant
- satellite.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.terrainDay
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- aerial
- variant
- terrain.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHERE.terrainDayMobile
- url
- https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- app_id
- app_code
- base
- aerial
- variant
- terrain.day.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
-
xyzservices.Bunch28 items
-
xyzservices.TileProviderHEREv3.normalDay
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalDayCustom
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day.custom
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalDayGrey
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day.grey
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalDayMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalDayGreyMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day.grey.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalDayTransit
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day.transit
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalDayTransitMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day.transit.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalNight
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.night
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalNightMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.night.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalNightGrey
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.night.grey
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalNightGreyMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.night.grey.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalNightTransit
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.night.transit
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.normalNightTransitMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.night.transit.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.reducedDay
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- reduced.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.reducedNight
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- reduced.night
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.basicMap
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day
- max_zoom
- 20
- type
- basetile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.mapLabels
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- normal.day
- max_zoom
- 20
- type
- labeltile
- language
- eng
- format
- png
- size
- 256
-
xyzservices.TileProviderHEREv3.trafficFlow
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- traffic
- variant
- normal.day
- max_zoom
- 20
- type
- flowtile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.carnavDayGrey
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- carnav.day.grey
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.hybridDay
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- aerial
- variant
- hybrid.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.hybridDayMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- aerial
- variant
- hybrid.day.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.hybridDayTransit
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- aerial
- variant
- hybrid.day.transit
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.hybridDayGrey
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- aerial
- variant
- hybrid.grey.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.pedestrianDay
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- pedestrian.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.pedestrianNight
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- base
- variant
- pedestrian.night
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.satelliteDay
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- aerial
- variant
- satellite.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.terrainDay
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- aerial
- variant
- terrain.day
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
xyzservices.TileProviderHEREv3.terrainDayMobile
- url
- https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
- html_attribution
- Map © 1987-2023 HERE
- attribution
- Map (C) 1987-2023 HERE
- subdomains
- 1234
- mapID
- newest
- apiKey
- base
- aerial
- variant
- terrain.day.mobile
- max_zoom
- 20
- type
- maptile
- language
- eng
- format
- png8
- size
- 256
-
-
xyzservices.TileProviderFreeMapSK
- url
- https://{s}.freemap.sk/T/{z}/{x}/{y}.jpeg
- min_zoom
- 8
- max_zoom
- 16
- subdomains
- abcd
- bounds
- [[47.204642, 15.996093], [49.830896, 22.576904]]
- html_attribution
- © OpenStreetMap contributors, visualization CC-By-SA 2.0 Freemap.sk
- attribution
- (C) OpenStreetMap contributors, visualization CC-By-SA 2.0 Freemap.sk
-
xyzservices.TileProviderMtbMap
- url
- http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png
- html_attribution
- © OpenStreetMap contributors & USGS
- attribution
- (C) OpenStreetMap contributors & USGS
-
xyzservices.Bunch10 items
-
xyzservices.TileProviderCartoDB.Positron
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- light_all
-
xyzservices.TileProviderCartoDB.PositronNoLabels
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- light_nolabels
-
xyzservices.TileProviderCartoDB.PositronOnlyLabels
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- light_only_labels
-
xyzservices.TileProviderCartoDB.DarkMatter
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- dark_all
-
xyzservices.TileProviderCartoDB.DarkMatterNoLabels
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- dark_nolabels
-
xyzservices.TileProviderCartoDB.DarkMatterOnlyLabels
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- dark_only_labels
-
xyzservices.TileProviderCartoDB.Voyager
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- rastertiles/voyager
-
xyzservices.TileProviderCartoDB.VoyagerNoLabels
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- rastertiles/voyager_nolabels
-
xyzservices.TileProviderCartoDB.VoyagerOnlyLabels
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- rastertiles/voyager_only_labels
-
xyzservices.TileProviderCartoDB.VoyagerLabelsUnder
- url
- https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
- html_attribution
- © OpenStreetMap contributors © CARTO
- attribution
- (C) OpenStreetMap contributors (C) CARTO
- subdomains
- abcd
- max_zoom
- 20
- variant
- rastertiles/voyager_labels_under
-
-
xyzservices.Bunch2 items
-
xyzservices.TileProviderHikeBike.HikeBike
- url
- https://tiles.wmflabs.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap contributors
- variant
- hikebike
-
xyzservices.TileProviderHikeBike.HillShading
- url
- https://tiles.wmflabs.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 15
- html_attribution
- © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap contributors
- variant
- hillshading
-
-
xyzservices.Bunch7 items
-
xyzservices.TileProviderBasemapAT.basemap
- url
- https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
- max_zoom
- 20
- html_attribution
- Datenquelle: basemap.at
- attribution
- Datenquelle: basemap.at
- subdomains
- ['', '1', '2', '3', '4']
- type
- normal
- format
- png
- bounds
- [[46.35877, 8.782379], [49.037872, 17.189532]]
- variant
- geolandbasemap
-
xyzservices.TileProviderBasemapAT.grau
- url
- https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
- max_zoom
- 19
- html_attribution
- Datenquelle: basemap.at
- attribution
- Datenquelle: basemap.at
- subdomains
- ['', '1', '2', '3', '4']
- type
- normal
- format
- png
- bounds
- [[46.35877, 8.782379], [49.037872, 17.189532]]
- variant
- bmapgrau
-
xyzservices.TileProviderBasemapAT.overlay
- url
- https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
- max_zoom
- 19
- html_attribution
- Datenquelle: basemap.at
- attribution
- Datenquelle: basemap.at
- subdomains
- ['', '1', '2', '3', '4']
- type
- normal
- format
- png
- bounds
- [[46.35877, 8.782379], [49.037872, 17.189532]]
- variant
- bmapoverlay
-
xyzservices.TileProviderBasemapAT.terrain
- url
- https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
- max_zoom
- 19
- html_attribution
- Datenquelle: basemap.at
- attribution
- Datenquelle: basemap.at
- subdomains
- ['', '1', '2', '3', '4']
- type
- grau
- format
- jpeg
- bounds
- [[46.35877, 8.782379], [49.037872, 17.189532]]
- variant
- bmapgelaende
-
xyzservices.TileProviderBasemapAT.surface
- url
- https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
- max_zoom
- 19
- html_attribution
- Datenquelle: basemap.at
- attribution
- Datenquelle: basemap.at
- subdomains
- ['', '1', '2', '3', '4']
- type
- grau
- format
- jpeg
- bounds
- [[46.35877, 8.782379], [49.037872, 17.189532]]
- variant
- bmapoberflaeche
-
xyzservices.TileProviderBasemapAT.highdpi
- url
- https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
- max_zoom
- 19
- html_attribution
- Datenquelle: basemap.at
- attribution
- Datenquelle: basemap.at
- subdomains
- ['', '1', '2', '3', '4']
- type
- normal
- format
- jpeg
- bounds
- [[46.35877, 8.782379], [49.037872, 17.189532]]
- variant
- bmaphidpi
-
xyzservices.TileProviderBasemapAT.orthofoto
- url
- https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
- max_zoom
- 20
- html_attribution
- Datenquelle: basemap.at
- attribution
- Datenquelle: basemap.at
- subdomains
- ['', '1', '2', '3', '4']
- type
- normal
- format
- jpeg
- bounds
- [[46.35877, 8.782379], [49.037872, 17.189532]]
- variant
- bmaporthofoto30cm
-
-
xyzservices.Bunch5 items
-
xyzservices.TileProvidernlmaps.standaard
- url
- https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/{variant}/EPSG:3857/{z}/{x}/{y}.png
- min_zoom
- 6
- max_zoom
- 19
- bounds
- [[50.5, 3.25], [54, 7.6]]
- html_attribution
- Kaartgegevens © Kadaster
- attribution
- Kaartgegevens (C) Kadaster
- variant
- standaard
-
xyzservices.TileProvidernlmaps.pastel
- url
- https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/{variant}/EPSG:3857/{z}/{x}/{y}.png
- min_zoom
- 6
- max_zoom
- 19
- bounds
- [[50.5, 3.25], [54, 7.6]]
- html_attribution
- Kaartgegevens © Kadaster
- attribution
- Kaartgegevens (C) Kadaster
- variant
- pastel
-
xyzservices.TileProvidernlmaps.grijs
- url
- https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/{variant}/EPSG:3857/{z}/{x}/{y}.png
- min_zoom
- 6
- max_zoom
- 19
- bounds
- [[50.5, 3.25], [54, 7.6]]
- html_attribution
- Kaartgegevens © Kadaster
- attribution
- Kaartgegevens (C) Kadaster
- variant
- grijs
-
xyzservices.TileProvidernlmaps.water
- url
- https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/{variant}/EPSG:3857/{z}/{x}/{y}.png
- min_zoom
- 6
- max_zoom
- 19
- bounds
- [[50.5, 3.25], [54, 7.6]]
- html_attribution
- Kaartgegevens © Kadaster
- attribution
- Kaartgegevens (C) Kadaster
- variant
- water
-
xyzservices.TileProvidernlmaps.luchtfoto
- url
- https://service.pdok.nl/hwh/luchtfotorgb/wmts/v1_0/Actueel_ortho25/EPSG:3857/{z}/{x}/{y}.jpeg
- min_zoom
- 6
- max_zoom
- 19
- bounds
- [[50.5, 3.25], [54, 7.6]]
- html_attribution
- Kaartgegevens © Kadaster
- attribution
- Kaartgegevens (C) Kadaster
-
-
xyzservices.Bunch15 items
-
xyzservices.TileProviderNASAGIBS.ModisTerraTrueColorCR
- url
- https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- bounds
- [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
- min_zoom
- 1
- max_zoom
- 9
- format
- jpg
- time
- tilematrixset
- GoogleMapsCompatible_Level
- variant
- MODIS_Terra_CorrectedReflectance_TrueColor
-
xyzservices.TileProviderNASAGIBS.ModisTerraBands367CR
- url
- https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- bounds
- [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
- min_zoom
- 1
- max_zoom
- 9
- format
- jpg
- time
- tilematrixset
- GoogleMapsCompatible_Level
- variant
- MODIS_Terra_CorrectedReflectance_Bands367
-
xyzservices.TileProviderNASAGIBS.ViirsEarthAtNight2012
- url
- https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- bounds
- [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
- min_zoom
- 1
- max_zoom
- 8
- format
- jpg
- time
- tilematrixset
- GoogleMapsCompatible_Level
- variant
- VIIRS_CityLights_2012
-
xyzservices.TileProviderNASAGIBS.ModisTerraLSTDay
- url
- https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- bounds
- [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
- min_zoom
- 1
- max_zoom
- 7
- format
- png
- time
- tilematrixset
- GoogleMapsCompatible_Level
- variant
- MODIS_Terra_Land_Surface_Temp_Day
- opacity
- 0.75
-
xyzservices.TileProviderNASAGIBS.ModisTerraSnowCover
- url
- https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- bounds
- [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
- min_zoom
- 1
- max_zoom
- 8
- format
- png
- time
- tilematrixset
- GoogleMapsCompatible_Level
- variant
- MODIS_Terra_NDSI_Snow_Cover
- opacity
- 0.75
-
xyzservices.TileProviderNASAGIBS.ModisTerraAOD
- url
- https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- bounds
- [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
- min_zoom
- 1
- max_zoom
- 6
- format
- png
- time
- tilematrixset
- GoogleMapsCompatible_Level
- variant
- MODIS_Terra_Aerosol
- opacity
- 0.75
-
xyzservices.TileProviderNASAGIBS.ModisTerraChlorophyll
- url
- https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- bounds
- [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
- min_zoom
- 1
- max_zoom
- 7
- format
- png
- time
- tilematrixset
- GoogleMapsCompatible_Level
- variant
- MODIS_Terra_Chlorophyll_A
- opacity
- 0.75
-
xyzservices.TileProviderNASAGIBS.ModisTerraBands721CR
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands721/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
- max_zoom
- 9
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- time
-
xyzservices.TileProviderNASAGIBS.ModisAquaTrueColorCR
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_TrueColor/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
- max_zoom
- 9
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- time
-
xyzservices.TileProviderNASAGIBS.ModisAquaBands721CR
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_Bands721/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
- max_zoom
- 9
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- time
-
xyzservices.TileProviderNASAGIBS.ViirsTrueColorCR
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_SNPP_CorrectedReflectance_TrueColor/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
- max_zoom
- 9
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- time
-
xyzservices.TileProviderNASAGIBS.BlueMarble3413
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3413/best/BlueMarble_NextGeneration/default/EPSG3413_500m/{z}/{y}/{x}.jpeg
- max_zoom
- 5
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- crs
- EPSG:3413
-
xyzservices.TileProviderNASAGIBS.BlueMarble3031
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3031/best/BlueMarble_NextGeneration/default/EPSG3031_500m/{z}/{y}/{x}.jpeg
- max_zoom
- 5
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- crs
- EPSG:3031
-
xyzservices.TileProviderNASAGIBS.BlueMarble
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/BlueMarble_NextGeneration/default/EPSG3857_500m/{z}/{y}/{x}.jpeg
- max_zoom
- 8
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
-
xyzservices.TileProviderNASAGIBS.ASTER_GDEM_Greyscale_Shaded_Relief
- url
- https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/ASTER_GDEM_Greyscale_Shaded_Relief/default/GoogleMapsCompatible_Level12/{z}/{y}/{x}.jpg
- max_zoom
- 12
- attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
- html_attribution
- Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
-
-
xyzservices.TileProviderNLS
- url
- https://nls-{s}.tileserver.com/nls/{z}/{x}/{y}.jpg
- html_attribution
- National Library of Scotland Historic Maps
- attribution
- National Library of Scotland Historic Maps
- bounds
- [[49.6, -12], [61.7, 3]]
- min_zoom
- 1
- max_zoom
- 18
- subdomains
- 0123
-
xyzservices.Bunch9 items
-
xyzservices.TileProviderJusticeMap.income
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- income
-
xyzservices.TileProviderJusticeMap.americanIndian
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- indian
-
xyzservices.TileProviderJusticeMap.asian
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- asian
-
xyzservices.TileProviderJusticeMap.black
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- black
-
xyzservices.TileProviderJusticeMap.hispanic
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- hispanic
-
xyzservices.TileProviderJusticeMap.multi
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- multi
-
xyzservices.TileProviderJusticeMap.nonWhite
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- nonwhite
-
xyzservices.TileProviderJusticeMap.white
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- white
-
xyzservices.TileProviderJusticeMap.plurality
- url
- https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
- html_attribution
- Justice Map
- attribution
- Justice Map
- size
- county
- bounds
- [[14, -180], [72, -56]]
- variant
- plural
-
-
xyzservices.Bunch271 items
-
xyzservices.TileProviderGeoportailFrance.plan
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-85.0, -175.0], [85.0, 175.0]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- essentiels
- format
- image/png
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.parcels
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- essentiels
- format
- image/png
- style
- normal
- variant
- CADASTRALPARCELS.PARCELLAIRE_EXPRESS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.orthos
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 21
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Adminexpress_cog_carto_Latest
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- administratif
- format
- image/png
- style
- normal
- variant
- ADMINEXPRESS-COG-CARTO.LATEST
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Adminexpress_cog_Latest
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- administratif
- format
- image/png
- style
- normal
- variant
- ADMINEXPRESS-COG.LATEST
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Limites_administratives_express_Latest
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- administratif
- format
- image/png
- style
- normal
- variant
- LIMITES_ADMINISTRATIVES_EXPRESS.LATEST
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Slopes_Pac
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.5446, -63.1614], [51.0991, 56.0018]]
- min_zoom
- 0
- max_zoom
- 15
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.SLOPES.PAC
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Hydrography_Bcae_Latest
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- HYDROGRAPHY.BCAE.LATEST
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture_Latest
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE.LATEST
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2007
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.419, -63.2635], [51.2203, 56.0237]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2007
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2008
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.419, -63.2635], [51.2203, 56.0237]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2008
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2009
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.419, -63.2635], [51.2203, 56.0237]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2009
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2010
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2010
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2011
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2011
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2012
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2012
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2013
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2013
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2014
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2015
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2015
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2018
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2018
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2020
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2020
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landuse_Agriculture2021
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- normal
- variant
- LANDUSE.AGRICULTURE2021
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Prairies_Sensibles_Bcae
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- agriculture
- format
- image/png
- style
- nolegend
- variant
- PRAIRIES.SENSIBLES.BCAE
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Elevation_Contour_Line
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- altimetrie
- format
- image/png
- style
- normal
- variant
- ELEVATION.CONTOUR.LINE
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Elevation_Elevationgridcoverage_Shadow
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4069, -63.187], [50.9218, 55.8884]]
- min_zoom
- 0
- max_zoom
- 15
- apikey
- altimetrie
- format
- image/png
- style
- estompage_grayscale
- variant
- ELEVATION.ELEVATIONGRIDCOVERAGE.SHADOW
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Elevation_Elevationgridcoverage_Threshold
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 3
- max_zoom
- 17
- apikey
- altimetrie
- format
- image/png
- style
- ELEVATION.ELEVATIONGRIDCOVERAGE.THRESHOLD
- variant
- ELEVATION.ELEVATIONGRIDCOVERAGE.THRESHOLD
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Elevation_Level0
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.51, -63.2529], [51.1388, 55.9472]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- altimetrie
- format
- image/png
- style
- normal
- variant
- ELEVATION.LEVEL0
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Elevation_Slopes
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-22.5952, -178.206], [50.9308, 167.432]]
- min_zoom
- 6
- max_zoom
- 14
- apikey
- altimetrie
- format
- image/jpeg
- style
- normal
- variant
- ELEVATION.SLOPES
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Elevationgridcoverage_Highres_Quality
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- altimetrie
- format
- image/png
- style
- Graphe de source du RGE Alti
- variant
- ELEVATIONGRIDCOVERAGE.HIGHRES.QUALITY
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Slopes_Mountain
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.5446, -63.1614], [51.0991, 56.0018]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- altimetrie
- format
- image/png
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.SLOPES.MOUNTAIN
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_1900typemaps
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[48.4726, 1.62941], [49.1548, 3.0]]
- min_zoom
- 10
- max_zoom
- 15
- apikey
- cartes
- format
- image/jpeg
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.1900TYPEMAPS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Bonne
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-0.49941, -55.9127], [7.88966, -50.0835]]
- min_zoom
- 0
- max_zoom
- 10
- apikey
- cartes
- format
- image/jpeg
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.BONNE
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Etatmajor10
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[48.3847, 1.82682], [49.5142, 2.79738]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- cartes
- format
- image/jpeg
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.ETATMAJOR10
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Etatmajor40
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.1844, -6.08889], [51.2745, 10.961]]
- min_zoom
- 6
- max_zoom
- 15
- apikey
- cartes
- format
- image/jpeg
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.ETATMAJOR40
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Maps_Bduni_J1
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- cartes
- format
- image/png
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.MAPS.BDUNI.J1
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Maps_Overview
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 1
- max_zoom
- 8
- apikey
- cartes
- format
- image/jpeg
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEMS.MAPS.OVERVIEW
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Maps_Scan50_1950
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 3
- max_zoom
- 15
- apikey
- cartes
- format
- image/jpeg
- style
- SCAN50_1950
- variant
- GEOGRAPHICALGRIDSYSTEMS.MAPS.SCAN50.1950
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Terrier_v1
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.2568, 8.36284], [43.1174, 9.75281]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- cartes
- format
- image/png
- style
- nolegend
- variant
- GEOGRAPHICALGRIDSYSTEMS.TERRIER_V1
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystems_Terrier_v2
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.2568, 8.36284], [43.1174, 9.75282]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- cartes
- format
- image/png
- style
- nolegend
- variant
- GEOGRAPHICALGRIDSYSTEMS.TERRIER_V2
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha00_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CHA00_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha06_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CHA06_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha06_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CHA06_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha12_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CHA12_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha12_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CHA12_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha18
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.4428, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover
- variant
- LANDCOVER.CHA18
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha18_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CHA18_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Cha18_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CHA18_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc00r_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC00R_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc00_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CLC00_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc00_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC00_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc06r_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CLC06R_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc06r_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC06R_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc06_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CLC06_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc06_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC06_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc12
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.4428, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CLC12
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc12r
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.4428, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover
- variant
- LANDCOVER.CLC12R
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc12r_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CLC12R_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc12r_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC12R_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc12_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CLC12_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc12_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC12_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc18
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.4428, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover
- variant
- LANDCOVER.CLC18
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc18_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [47.1747, 55.9259]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.CLC18_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc18_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC18_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Clc90_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.CLC90_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc00
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4825, -61.9063], [51.1827, 55.9362]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover
- variant
- LANDCOVER.GRID.CLC00
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc00r_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.1779, -5.68494], [51.1827, 10.8556]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.GRID.CLC00R_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc00_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4825, -61.9063], [16.6077, 55.9362]]
- min_zoom
- 0
- max_zoom
- 12
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.GRID.CLC00_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc00_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.1779, -5.68494], [51.1827, 10.8556]]
- min_zoom
- 0
- max_zoom
- 12
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.GRID.CLC00_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc06
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4825, -61.9063], [51.1827, 55.9362]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover
- variant
- LANDCOVER.GRID.CLC06
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc06r
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4825, -61.9063], [51.2963, 55.9362]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover
- variant
- LANDCOVER.GRID.CLC06R
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc06r_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4825, -61.9063], [16.6077, 55.9362]]
- min_zoom
- 0
- max_zoom
- 12
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.GRID.CLC06R_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc06r_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.0278, -5.91689], [51.2963, 11.0883]]
- min_zoom
- 0
- max_zoom
- 12
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.GRID.CLC06R_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc06_dom
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4825, -61.9063], [16.6077, 55.9362]]
- min_zoom
- 0
- max_zoom
- 12
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - DOM
- variant
- LANDCOVER.GRID.CLC06_DOM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc06_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.1779, -5.68494], [51.1827, 10.8556]]
- min_zoom
- 0
- max_zoom
- 12
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.GRID.CLC06_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc12
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4825, -61.9063], [51.2963, 55.9362]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover
- variant
- LANDCOVER.GRID.CLC12
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Grid_Clc90_fr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.1779, -5.68494], [51.1827, 10.8556]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - France métropolitaine
- variant
- LANDCOVER.GRID.CLC90_FR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Dlt_Clc12
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.572, -62.3602], [51.4949, 55.8441]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - type de forêts
- variant
- LANDCOVER.HR.DLT.CLC12
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Dlt_Clc15
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.572, -62.3602], [51.4949, 55.8441]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - type de forêts
- variant
- LANDCOVER.HR.DLT.CLC15
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Gra_Clc15
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.3925, -61.8133], [51.4949, 55.84]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - prairies
- variant
- LANDCOVER.HR.GRA.CLC15
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Imd_Clc12
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.5758, -62.3609], [51.4952, 56.1791]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - taux d'imperméabilisation des sols
- variant
- LANDCOVER.HR.IMD.CLC12
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Imd_Clc15
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.5758, -62.3609], [51.4952, 56.1791]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - taux d'imperméabilisation des sols
- variant
- LANDCOVER.HR.IMD.CLC15
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Tcd_Clc12
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.572, -62.3602], [51.4949, 55.8441]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - taux de couvert arboré
- variant
- LANDCOVER.HR.TCD.CLC12
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Tcd_Clc15
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.572, -62.3602], [51.4949, 55.8441]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - taux de couvert arboré
- variant
- LANDCOVER.HR.TCD.CLC15
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Hr_Waw_Clc15
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.572, -62.3602], [51.4949, 55.8441]]
- min_zoom
- 0
- max_zoom
- 13
- apikey
- clc
- format
- image/png
- style
- CORINE Land Cover - HR - zones humides et surfaces en eaux permanentes
- variant
- LANDCOVER.HR.WAW.CLC15
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Areamanagement_Zfu
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- normal
- variant
- AREAMANAGEMENT.ZFU
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Areamanagement_Zus
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- normal
- variant
- AREAMANAGEMENT.ZUS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Communes_Prioritydisctrict
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- economie
- format
- image/png
- style
- normal
- variant
- COMMUNES.PRIORITYDISCTRICT
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Dreal_Zonage_pinel
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[47.2719, -5.15012], [48.9064, -1.00687]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- economie
- format
- image/png
- style
- normal
- variant
- DREAL.ZONAGE_PINEL
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Enfants_0_17_Ans_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.ENFANTS.0.17.ANS.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Logements_Surface_Moyenne_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.LOGEMENTS.SURFACE.MOYENNE.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Niveau_De_Vie_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.NIVEAU.DE.VIE.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Familles_Monoparentales_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.FAMILLES.MONOPARENTALES.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Individus_25_39_Ans_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.INDIVIDUS.25.39.ANS.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Individus_40_54_Ans_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.INDIVIDUS.40.54.ANS.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Individus_55_64_Ans_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.INDIVIDUS.55.64.ANS.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Logements_Apres_1990_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.LOGEMENTS.APRES.1990.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Logements_Avant_1945_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.LOGEMENTS.AVANT.1945.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Logements_Collectifs_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.LOGEMENTS.COLLECTIFS.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Logements_Construits_1945_1970_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.LOGEMENTS.CONSTRUITS.1945.1970.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Logements_Construits_1970_1990_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.LOGEMENTS.CONSTRUITS.1970.1990.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Logements_Sociaux_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.LOGEMENTS.SOCIAUX.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Menages_1_Personne_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.MENAGES.1.PERSONNE.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Menages_5_Personnes_Ouplus_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.MENAGES.5.PERSONNES.OUPLUS.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Menages_Maison_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.MENAGES.MAISON.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Menages_Pauvres_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.MENAGES.PAUVRES.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Menages_Proprietaires_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.MENAGES.PROPRIETAIRES.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Part_Plus_65_Ans_Secret
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.PART.PLUS.65.ANS.SECRET
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Insee_Filosofi_Population
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- economie
- format
- image/png
- style
- INSEE
- variant
- INSEE.FILOSOFI.POPULATION
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Debroussaillement
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- environnement
- format
- image/png
- style
- nolegend
- variant
- DEBROUSSAILLEMENT
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Forets_Publiques
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 3
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- FORETS PUBLIQUES ONF
- variant
- FORETS.PUBLIQUES
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalgridsystem_Dfci
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- GEOGRAPHICALGRIDSYSTEM.DFCI
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Forestareas
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- LANDCOVER.FORESTAREAS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Forestinventory_V1
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- LANDCOVER.FORESTINVENTORY.V1
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Forestinventory_V2
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- LANDCOVER.FORESTINVENTORY.V2
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Sylvoecoregions
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- LANDCOVER.SYLVOECOREGIONS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Landcover_Sylvoecoregions_Alluvium
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- LANDCOVER.SYLVOECOREGIONS.ALLUVIUM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Apb
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.APB
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Apg
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.APG
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Aphn
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-53.6279, -63.3725], [51.3121, 82.645]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.APHN
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Aplg
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-53.6279, -63.3725], [51.3121, 82.645]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- nolegend
- variant
- PROTECTEDAREAS.APLG
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Bios
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.BIOS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Gp
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.GP
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Inpg
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-53.6279, -63.3725], [51.3121, 82.645]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.INPG
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Mnhn_Cdl_Parcels
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.MNHN.CDL.PARCELS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Mnhn_Cdl_Perimeter
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.MNHN.CDL.PERIMETER
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Mnhn_Conservatoires
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.MNHN.CONSERVATOIRES
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Mnhn_Rn_Perimeter
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-53.6279, -63.3725], [51.3121, 82.645]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.MNHN.RN.PERIMETER
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Pn
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.PN
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Pnm
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.PNM
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Pnr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.PNR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Prsf
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- environnement
- format
- image/png
- style
- POINT RENCONTRE SECOURS FORET
- variant
- PROTECTEDAREAS.PRSF
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Ramsar
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.RAMSAR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Rb
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.RB
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Ripn
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.RIPN
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Rn
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-53.6279, -63.3725], [51.3121, 82.645]]
- min_zoom
- 0
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.RN
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Rnc
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.RNC
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Rncf
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.RNCF
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Sic
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.SIC
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Znieff1
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.ZNIEFF1
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Znieff1_Sea
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.ZNIEFF1.SEA
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Znieff2
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.ZNIEFF2
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Znieff2_Sea
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.ZNIEFF2.SEA
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Zpr
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-53.6279, -63.3725], [51.3121, 82.645]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- nolegend
- variant
- PROTECTEDAREAS.ZPR
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedareas_Zps
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDAREAS.ZPS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Protectedsites_Mnhn_Reserves_regionales
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- environnement
- format
- image/png
- style
- normal
- variant
- PROTECTEDSITES.MNHN.RESERVES-REGIONALES
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[14.2395, -61.6644], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- normal
- variant
- OCSGE.CONSTRUCTIONS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions_2002
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.366, -5.13902], [51.089, 9.55982]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.CONSTRUCTIONS.2002
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions_2010
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.CONSTRUCTIONS.2010
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions_2011
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.CONSTRUCTIONS.2011
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions_2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.366, -5.13902], [51.089, 9.55982]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.CONSTRUCTIONS.2014
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions_2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.CONSTRUCTIONS.2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions_2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[14.2395, -61.6644], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.CONSTRUCTIONS.2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Constructions_2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.3043, -0.291052], [44.0864, 1.2122]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.CONSTRUCTIONS.2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[14.2395, -61.6644], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- normal
- variant
- OCSGE.COUVERTURE
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture_2002
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.366, -5.13902], [51.089, 9.55982]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- normal
- variant
- OCSGE.COUVERTURE.2002
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture_2010
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.COUVERTURE.2010
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture_2011
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.COUVERTURE.2011
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture_2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.366, -5.13902], [51.089, 9.55982]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.COUVERTURE.2014
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture_2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.COUVERTURE.2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture_2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[14.2395, -61.6644], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.COUVERTURE.2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Couverture_2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.3043, -0.291052], [44.0864, 1.2122]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.COUVERTURE.2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[14.2395, -61.6644], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- normal
- variant
- OCSGE.USAGE
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage_2002
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.366, -5.13902], [51.089, 9.55982]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- normal
- variant
- OCSGE.USAGE.2002
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage_2010
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.USAGE.2010
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage_2011
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.USAGE.2011
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage_2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.366, -5.13902], [51.089, 9.55982]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- normal
- variant
- OCSGE.USAGE.2014
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage_2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.USAGE.2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage_2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[14.2395, -61.6644], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.USAGE.2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Usage_2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.3043, -0.291052], [44.0864, 1.2122]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.USAGE.2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Visu_2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.2815, -0.318517], [44.0543, 1.22575]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.VISU.2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Ocsge_Visu_2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.2815, -0.321664], [44.1082, 1.22575]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- ocsge
- format
- image/png
- style
- nolegend
- variant
- OCSGE.VISU.2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Hr_Orthoimagery_Orthophotos
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -63.1607], [51.1124, 55.8464]]
- min_zoom
- 6
- max_zoom
- 19
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- HR.ORTHOIMAGERY.ORTHOPHOTOS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophos_Restrictedareas
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-22.9723, -178.309], [51.3121, 168.298]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- ortho
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOS.RESTRICTEDAREAS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Bdortho
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-22.7643, -178.187], [51.1124, 168.19]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.BDORTHO
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Coast2000
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.301, -5.21565], [51.1233, 2.60783]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- ortho
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.COAST2000
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ilesdunord
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[17.8626, -63.1986], [18.1701, -62.7828]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- ortho
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ILESDUNORD
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -62.9717], [51.1124, 55.8464]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_express_2022
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC-EXPRESS.2022
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_express_2023
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[47.4719, 1.48832], [48.3543, 3.13499]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC-EXPRESS.2023
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ortho_asp_pac2022
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ORTHO-ASP_PAC2022
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ortho_asp_pac2023
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ORTHO-ASP_PAC2023
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ortho_express_2022
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ORTHO-EXPRESS.2022
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ortho_express_2023
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[47.4719, 1.48832], [48.3543, 3.13499]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ORTHO-EXPRESS.2023
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Pcrs_Lamb93
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.6976, -3.80779], [48.8107, 6.92319]]
- min_zoom
- 6
- max_zoom
- 21
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- PCRS.LAMB93
- TileMatrixSet
- LAMB93_5cm_EPSG
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Thr_Orthoimagery_Orthophotos
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.4378, -6.92466], [51.9098, 11.4965]]
- min_zoom
- 6
- max_zoom
- 21
- apikey
- ortho
- format
- image/jpeg
- style
- normal
- variant
- THR.ORTHOIMAGERY.ORTHOPHOTOS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_1950_1965
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -67.7214], [51.0945, 55.8464]]
- min_zoom
- 3
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.1950-1965
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_1980_1995
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3125, -2.37153], [49.7785, 9.67536]]
- min_zoom
- 3
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/png
- style
- BDORTHOHISTORIQUE
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.1980-1995
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_express_2021
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC-EXPRESS.2021
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2013
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.5538, -3.74871], [50.3767, 7.17132]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2013
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.1508, -2.37153], [49.6341, 7.22637]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2014
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2015
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.3163, -5.20863], [51.0945, 8.25674]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2015
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3215, -3.74871], [50.1839, 9.66314]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.9454, -0.185295], [46.4137, 7.74363]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2018
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.3163, -5.19371], [51.1124, 8.25765]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2018
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3125, -3.74871], [50.1928, 9.66314]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Irc_2020
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.9454, -2.68142], [49.4512, 7.74363]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.IRC.2020
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ortho_asp_pac2020
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ORTHO-ASP_PAC2020
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ortho_asp_pac2021
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ORTHO-ASP_PAC2021
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Ortho_express_2021
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 20
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.ORTHO-EXPRESS.2021
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Socle_asp_2018
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.SOCLE-ASP.2018
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos_Urgence_Alex
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[43.8095, 7.07917], [44.1903, 7.64199]]
- min_zoom
- 6
- max_zoom
- 20
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS.URGENCE.ALEX
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2000
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2000
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2000_2005
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -178.187], [64.0698, 55.8561]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2000-2005
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2001
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[4.47153, -61.2472], [50.3765, 7.23234]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2001
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2002
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[4.49867, -61.2472], [50.3765, 9.68861]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2002
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2003
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2003
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2004
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -178.187], [51.091, 55.8561]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2004
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2005
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -178.187], [51.091, 55.8561]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2005
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2006
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -178.187], [51.091, 55.8561]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2006
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2006_2010
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2006-2010
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2007
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2007
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2008
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -178.187], [51.091, 55.8561]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2008
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2009
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2009
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2010
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2010
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2011
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2011
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2011_2015
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -178.187], [51.0945, 55.8561]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2011-2015
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2012
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2012
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2013
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2013
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2014
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2015
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2015
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -63.1607], [50.3856, 55.8464]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2018
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.3163, -5.20863], [51.1124, 8.25765]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2018
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3125, -3.74871], [50.1928, 9.66314]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Orthophotos2020
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.9454, -2.68142], [49.4512, 7.74363]]
- min_zoom
- 6
- max_zoom
- 19
- apikey
- orthohisto
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHOPHOTOS2020
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2012
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.3539, -53.2686], [50.6037, 55.5544]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2012
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2013
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2013
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2014
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2015
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2015
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.32, -54.1373], [50.6549, 55.8441]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4013, -63.1796], [51.1117, 55.8465]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2018
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4094, -63.1702], [51.0841, 55.8649]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2018
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4094, -63.1702], [51.1117, 55.8649]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2020
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-13.0169, -63.1724], [51.1117, 45.3136]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2020
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2021
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 19
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2021
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Pleiades_2022
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.3733, -67.7132], [69.3108, 55.7216]]
- min_zoom
- 0
- max_zoom
- 18
- apikey
- satellite
- format
- image/png
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2022
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Rapideye_2010
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.2014, -5.80725], [50.9218, 10.961]]
- min_zoom
- 0
- max_zoom
- 15
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.RAPIDEYE.2010
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Rapideye_2011
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.0227, -5.80725], [51.1752, 10.961]]
- min_zoom
- 0
- max_zoom
- 15
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.RAPIDEYE.2011
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2013
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[44.8809, 0.563585], [50.3879, 4.29191]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2013
- TileMatrixSet
- PM
- status
- broken
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2014
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-75.0, -179.5], [75.0, 179.5]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2014
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2015
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4104, -61.8141], [51.106, 55.856]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2015
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2016
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4104, -61.85], [51.1123, 55.8562]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2016
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2017
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4104, -61.8534], [51.1123, 55.8562]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2017
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2018
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.2593, -5.57103], [51.1123, 10.7394]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2018
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2019
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.2593, -5.57103], [51.1123, 10.7394]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2019
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2020
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.2593, -5.57103], [51.1123, 10.7394]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2020
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Orthoimagery_Ortho_sat_Spot_2021
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.2593, -5.57103], [51.1123, 10.7394]]
- min_zoom
- 0
- max_zoom
- 17
- apikey
- satellite
- format
- image/jpeg
- style
- normal
- variant
- ORTHOIMAGERY.ORTHO-SAT.SPOT.2021
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Bdcarto_etat_major_Niveau3
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[42.6423, -5.15012], [51.0938, 7.19384]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- sol
- format
- image/png
- style
- normal
- variant
- BDCARTO_ETAT-MAJOR.NIVEAU3
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Bdcarto_etat_major_Niveau4
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[41.3252, -5.15047], [51.0991, 9.57054]]
- min_zoom
- 6
- max_zoom
- 16
- apikey
- sol
- format
- image/png
- style
- normal
- variant
- BDCARTO_ETAT-MAJOR.NIVEAU4
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Buildings_Buildings
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4969, -63.9692], [71.5841, 55.9644]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- BUILDINGS.BUILDINGS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Geographicalnames_Names
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4969, -63.9692], [71.5841, 55.9644]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- GEOGRAPHICALNAMES.NAMES
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Hydrography_Hydrography
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4969, -63.9692], [71.5841, 55.9644]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- HYDROGRAPHY.HYDROGRAPHY
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Transportnetwork_Commontransportelements_Markerpost
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 10
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- TRANSPORTNETWORK.COMMONTRANSPORTELEMENTS.MARKERPOST
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Transportnetworks_Railways
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4969, -63.9692], [71.5841, 55.9644]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- TRANSPORTNETWORKS.RAILWAYS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Transportnetworks_Roads
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4969, -63.9692], [71.5841, 55.9644]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- TRANSPORTNETWORKS.ROADS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Transportnetworks_Runways
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4969, -63.9692], [71.5841, 55.9644]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- TRANSPORTNETWORKS.RUNWAYS
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Utilityandgovernmentalservices_All
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [71.5841, 55.9259]]
- min_zoom
- 6
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- UTILITYANDGOVERNMENTALSERVICES.ALL
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Hedge_Hedge
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 7
- max_zoom
- 18
- apikey
- topographie
- format
- image/png
- style
- normal
- variant
- hedge.hedge
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_1te
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 4
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- RESEAU ROUTIER 1TE
- variant
- SECUROUTE.TE.1TE
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_2te48
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- RESEAU ROUTIER 2TE48
- variant
- SECUROUTE.TE.2TE48
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_All
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- TOUS LES FRANCHISSEMENTS
- variant
- SECUROUTE.TE.ALL
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_Oa
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- AUTRES FRANCHISSEMENTS
- variant
- SECUROUTE.TE.OA
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_Pn
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- FRANCHISSEMENTS PASSAGE A NIVEAU
- variant
- SECUROUTE.TE.PN
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_Pnd
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- FRANCHISSEMENTS PASSAGE A NIVEAU DIFFICILE
- variant
- SECUROUTE.TE.PND
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_Te120
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- RESEAU ROUTIER TE120
- variant
- SECUROUTE.TE.TE120
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_Te72
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- RESEAU ROUTIER TE72
- variant
- SECUROUTE.TE.TE72
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Securoute_Te_Te94
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 6
- max_zoom
- 17
- apikey
- transports
- format
- image/png
- style
- RESEAU ROUTIER TE94
- variant
- SECUROUTE.TE.TE94
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Transportnetworks_Roads_Direction
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[-21.4756, -63.3725], [51.3121, 55.9259]]
- min_zoom
- 15
- max_zoom
- 18
- apikey
- transports
- format
- image/png
- style
- normal
- variant
- TRANSPORTNETWORKS.ROADS.DIRECTION
- TileMatrixSet
- PM
-
xyzservices.TileProviderGeoportailFrance.Transports_Drones_Restrictions
- url
- https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET={TileMatrixSet}&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
- html_attribution
- Geoportail France
- attribution
- Geoportail France
- bounds
- [[40.576, -9.88147], [51.4428, 11.6781]]
- min_zoom
- 3
- max_zoom
- 15
- apikey
- transports
- format
- image/png
- style
- normal
- variant
- TRANSPORTS.DRONES.RESTRICTIONS
- TileMatrixSet
- PM
-
-
xyzservices.Bunch5 items
-
xyzservices.TileProviderOneMapSG.Default
- url
- https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
- variant
- Default
- min_zoom
- 11
- max_zoom
- 18
- bounds
- [[1.56073, 104.11475], [1.16, 103.502]]
- html_attribution
- New OneMap | Map data © contributors, Singapore Land Authority
- attribution
- ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.Night
- url
- https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
- variant
- Night
- min_zoom
- 11
- max_zoom
- 18
- bounds
- [[1.56073, 104.11475], [1.16, 103.502]]
- html_attribution
- New OneMap | Map data © contributors, Singapore Land Authority
- attribution
- ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.Original
- url
- https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
- variant
- Original
- min_zoom
- 11
- max_zoom
- 18
- bounds
- [[1.56073, 104.11475], [1.16, 103.502]]
- html_attribution
- New OneMap | Map data © contributors, Singapore Land Authority
- attribution
- ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.Grey
- url
- https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
- variant
- Grey
- min_zoom
- 11
- max_zoom
- 18
- bounds
- [[1.56073, 104.11475], [1.16, 103.502]]
- html_attribution
- New OneMap | Map data © contributors, Singapore Land Authority
- attribution
- ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.LandLot
- url
- https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
- variant
- LandLot
- min_zoom
- 11
- max_zoom
- 18
- bounds
- [[1.56073, 104.11475], [1.16, 103.502]]
- html_attribution
- New OneMap | Map data © contributors, Singapore Land Authority
- attribution
- ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
-
-
xyzservices.Bunch3 items
-
xyzservices.TileProviderUSGS.USTopo
- url
- https://basemap.nationalmap.gov/arcgis/rest/services/USGSTopo/MapServer/tile/{z}/{y}/{x}
- max_zoom
- 20
- html_attribution
- Tiles courtesy of the U.S. Geological Survey
- attribution
- Tiles courtesy of the U.S. Geological Survey
-
xyzservices.TileProviderUSGS.USImagery
- url
- https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}
- max_zoom
- 20
- html_attribution
- Tiles courtesy of the U.S. Geological Survey
- attribution
- Tiles courtesy of the U.S. Geological Survey
-
xyzservices.TileProviderUSGS.USImageryTopo
- url
- https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryTopo/MapServer/tile/{z}/{y}/{x}
- max_zoom
- 20
- html_attribution
- Tiles courtesy of the U.S. Geological Survey
- attribution
- Tiles courtesy of the U.S. Geological Survey
-
-
xyzservices.Bunch6 items
-
xyzservices.TileProviderWaymarkedTrails.hiking
- url
- https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
- variant
- hiking
-
xyzservices.TileProviderWaymarkedTrails.cycling
- url
- https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
- variant
- cycling
-
xyzservices.TileProviderWaymarkedTrails.mtb
- url
- https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
- variant
- mtb
-
xyzservices.TileProviderWaymarkedTrails.slopes
- url
- https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
- variant
- slopes
-
xyzservices.TileProviderWaymarkedTrails.riding
- url
- https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
- variant
- riding
-
xyzservices.TileProviderWaymarkedTrails.skating
- url
- https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
- max_zoom
- 18
- html_attribution
- Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
- attribution
- Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
- variant
- skating
-
-
xyzservices.TileProviderOpenAIP
- url
- https://{s}.tile.maps.openaip.net/geowebcache/service/tms/1.0.0/openaip_basemap@EPSG%3A900913@png/{z}/{x}/{y}.{ext}
- html_attribution
- openAIP Data (CC-BY-NC-SA)
- attribution
- openAIP Data (CC-BY-NC-SA)
- ext
- png
- min_zoom
- 4
- max_zoom
- 14
- tms
- True
- detectRetina
- True
- subdomains
- 12
-
xyzservices.Bunch1 items
-
xyzservices.TileProviderOpenSnowMap.pistes
- url
- https://tiles.opensnowmap.org/{variant}/{z}/{x}/{y}.png
- min_zoom
- 9
- max_zoom
- 18
- html_attribution
- Map data: © OpenStreetMap contributors & ODbL, © www.opensnowmap.org CC-BY-SA
- attribution
- Map data: (C) OpenStreetMap contributors & ODbL, (C) www.opensnowmap.org CC-BY-SA
- variant
- pistes
-
-
xyzservices.Bunch7 items
-
xyzservices.TileProviderAzureMaps.MicrosoftImagery
- url
- https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
- html_attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- apiVersion
- 2.0
- variant
- microsoft.imagery
- subscriptionKey
- language
- en-US
-
xyzservices.TileProviderAzureMaps.MicrosoftBaseDarkGrey
- url
- https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
- html_attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- apiVersion
- 2.0
- variant
- microsoft.base.darkgrey
- subscriptionKey
- language
- en-US
-
xyzservices.TileProviderAzureMaps.MicrosoftBaseRoad
- url
- https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
- html_attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- apiVersion
- 2.0
- variant
- microsoft.base.road
- subscriptionKey
- language
- en-US
-
xyzservices.TileProviderAzureMaps.MicrosoftBaseHybridRoad
- url
- https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
- html_attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- apiVersion
- 2.0
- variant
- microsoft.base.hybrid.road
- subscriptionKey
- language
- en-US
-
xyzservices.TileProviderAzureMaps.MicrosoftTerraMain
- url
- https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
- html_attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.
- apiVersion
- 2.0
- variant
- microsoft.terra.main
- subscriptionKey
- language
- en-US
-
xyzservices.TileProviderAzureMaps.MicrosoftWeatherInfraredMain
- url
- https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&timeStamp={timeStamp}&language={language}&subscription-key={subscriptionKey}
- html_attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.
- attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.
- apiVersion
- 2.0
- variant
- microsoft.weather.infrared.main
- subscriptionKey
- language
- en-US
- timeStamp
- 2021-05-08T09:03:00Z
-
xyzservices.TileProviderAzureMaps.MicrosoftWeatherRadarMain
- url
- https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&timeStamp={timeStamp}&language={language}&subscription-key={subscriptionKey}
- html_attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.
- attribution
- See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.
- apiVersion
- 2.0
- variant
- microsoft.weather.radar.main
- subscriptionKey
- language
- en-US
- timeStamp
- 2021-05-08T09:03:00Z
-
-
xyzservices.Bunch4 items
-
xyzservices.TileProviderSwissFederalGeoportal.NationalMapColor
- url
- https://wmts.geo.admin.ch/1.0.0/ch.swisstopo.pixelkarte-farbe/default/current/3857/{z}/{x}/{y}.jpeg
- html_attribution
- swisstopo
- attribution
- © swisstopo
- bounds
- [[45.398181, 5.140242], [48.230651, 11.47757]]
- min_zoom
- 2
- max_zoom
- 18
-
xyzservices.TileProviderSwissFederalGeoportal.NationalMapGrey
- url
- https://wmts.geo.admin.ch/1.0.0/ch.swisstopo.pixelkarte-grau/default/current/3857/{z}/{x}/{y}.jpeg
- html_attribution
- swisstopo
- attribution
- © swisstopo
- bounds
- [[45.398181, 5.140242], [48.230651, 11.47757]]
- min_zoom
- 2
- max_zoom
- 18
-
xyzservices.TileProviderSwissFederalGeoportal.SWISSIMAGE
- url
- https://wmts.geo.admin.ch/1.0.0/ch.swisstopo.swissimage/default/current/3857/{z}/{x}/{y}.jpeg
- html_attribution
- swisstopo
- attribution
- © swisstopo
- bounds
- [[45.398181, 5.140242], [48.230651, 11.47757]]
- min_zoom
- 2
- max_zoom
- 19
-
xyzservices.TileProviderSwissFederalGeoportal.JourneyThroughTime
- url
- https://wmts.geo.admin.ch/1.0.0/ch.swisstopo.zeitreihen/default/{time}/3857/{z}/{x}/{y}.png
- html_attribution
- swisstopo
- attribution
- © swisstopo
- bounds
- [[45.398181, 5.140242], [48.230651, 11.47757]]
- min_zoom
- 2
- max_zoom
- 18
- time
- 18641231
-
-
xyzservices.Bunch2 items
-
xyzservices.Bunch5 items
-
xyzservices.TileProviderStrava.All
- url
- https://heatmap-external-a.strava.com/tiles/all/hot/{z}/{x}/{y}.png
- max_zoom
- 15
- attribution
- Map tiles by Strava 2021
- html_attribution
- Map tiles by Strava 2021
-
xyzservices.TileProviderStrava.Ride
- url
- https://heatmap-external-a.strava.com/tiles/ride/hot/{z}/{x}/{y}.png
- max_zoom
- 15
- attribution
- Map tiles by Strava 2021
- html_attribution
- Map tiles by Strava 2021
-
xyzservices.TileProviderStrava.Run
- url
- https://heatmap-external-a.strava.com/tiles/run/bluered/{z}/{x}/{y}.png
- max_zoom
- 15
- attribution
- Map tiles by Strava 2021
- html_attribution
- Map tiles by Strava 2021
-
xyzservices.TileProviderStrava.Water
- url
- https://heatmap-external-a.strava.com/tiles/water/blue/{z}/{x}/{y}.png
- max_zoom
- 15
- attribution
- Map tiles by Strava 2021
- html_attribution
- Map tiles by Strava 2021
-
xyzservices.TileProviderStrava.Winter
- url
- https://heatmap-external-a.strava.com/tiles/winter/hot/{z}/{x}/{y}.png
- max_zoom
- 15
- attribution
- Map tiles by Strava 2021
- html_attribution
- Map tiles by Strava 2021
-
-
xyzservices.Bunch7 items
-
xyzservices.TileProviderOrdnanceSurvey.Road
- url
- https://api.os.uk/maps/raster/v1/zxy/Road_3857/{z}/{x}/{y}.png?key={key}
- html_attribution
- Contains OS data © Crown copyright and database right 2023
- attribution
- Contains OS data (C) Crown copyright and database right 2023
- key
- min_zoom
- 7
- max_zoom
- 16
- max_zoom_premium
- 20
- bounds
- [[49.766807, -9.496386], [61.465189, 3.634745]]
-
xyzservices.TileProviderOrdnanceSurvey.Road_27700
- url
- https://api.os.uk/maps/raster/v1/zxy/Road_27700/{z}/{x}/{y}.png?key={key}
- html_attribution
- Contains OS data © Crown copyright and database right 2023
- attribution
- Contains OS data (C) Crown copyright and database right 2023
- key
- crs
- EPSG:27700
- min_zoom
- 0
- max_zoom
- 9
- max_zoom_premium
- 13
- bounds
- [[0, 0], [700000, 1300000]]
-
xyzservices.TileProviderOrdnanceSurvey.Outdoor
- url
- https://api.os.uk/maps/raster/v1/zxy/Outdoor_3857/{z}/{x}/{y}.png?key={key}
- html_attribution
- Contains OS data © Crown copyright and database right 2023
- attribution
- Contains OS data (C) Crown copyright and database right 2023
- key
- min_zoom
- 7
- max_zoom
- 16
- max_zoom_premium
- 20
- bounds
- [[49.766807, -9.496386], [61.465189, 3.634745]]
-
xyzservices.TileProviderOrdnanceSurvey.Outdoor_27700
- url
- https://api.os.uk/maps/raster/v1/zxy/Outdoor_27700/{z}/{x}/{y}.png?key={key}
- html_attribution
- Contains OS data © Crown copyright and database right 2023
- attribution
- Contains OS data (C) Crown copyright and database right 2023
- key
- crs
- EPSG:27700
- min_zoom
- 0
- max_zoom
- 9
- max_zoom_premium
- 13
- bounds
- [[0, 0], [700000, 1300000]]
-
xyzservices.TileProviderOrdnanceSurvey.Light
- url
- https://api.os.uk/maps/raster/v1/zxy/Light_3857/{z}/{x}/{y}.png?key={key}
- html_attribution
- Contains OS data © Crown copyright and database right 2023
- attribution
- Contains OS data (C) Crown copyright and database right 2023
- key
- min_zoom
- 7
- max_zoom
- 16
- max_zoom_premium
- 20
- bounds
- [[49.766807, -9.496386], [61.465189, 3.634745]]
-
xyzservices.TileProviderOrdnanceSurvey.Light_27700
- url
- https://api.os.uk/maps/raster/v1/zxy/Light_27700/{z}/{x}/{y}.png?key={key}
- html_attribution
- Contains OS data © Crown copyright and database right 2023
- attribution
- Contains OS data (C) Crown copyright and database right 2023
- key
- crs
- EPSG:27700
- min_zoom
- 0
- max_zoom
- 9
- max_zoom_premium
- 13
- bounds
- [[0, 0], [700000, 1300000]]
-
xyzservices.TileProviderOrdnanceSurvey.Leisure_27700
- url
- https://api.os.uk/maps/raster/v1/zxy/Leisure_27700/{z}/{x}/{y}.png?key={key}
- html_attribution
- Contains OS data © Crown copyright and database right 2023
- attribution
- Contains OS data (C) Crown copyright and database right 2023
- key
- crs
- EPSG:27700
- min_zoom
- 0
- max_zoom
- 5
- max_zoom_premium
- 9
- bounds
- [[0, 0], [700000, 1300000]]
-
Let’s try out a couple of examples:
USGS Topo:
= folium.Map(
m =[39.99, -75.13], zoom_start=11, tiles=xyzservices.providers.USGS.USTopo
location
)
m
Esri National Geographic World Map:
= folium.Map(
m =[39.99, -75.13],
location=11,
zoom_start=xyzservices.providers.Esri.NatGeoWorldMap,
tiles
)
m
CartoDB Dark Matter:
= folium.Map(
m =[39.99, -75.13],
location=11,
zoom_start=xyzservices.providers.CartoDB.DarkMatter,
tiles
)
m
2. Overlaying multiple GeoJSON layers on a folium map
The .explore()
function can handle points in addition to polygon geometry objects. And you can layer multiple types of GeoJSON on the same folium map, and add a widget to control which layers are active on the map.
As an example, we’ll keep exploring our trash-related 311 ticket dataset. Let’s take a look at the top 10 neighborhoods in terms of the number of tickets per neighborhood area:
="num_tickets_per_area", ascending=False).head(n=10) requests_by_hood.sort_values(by
ZillowName | geometry | num_tickets | num_tickets_per_area | |
---|---|---|---|---|
57 | Greenwich | POLYGON ((-75.15294 39.92465, -75.15342 39.922... | 214 | 6.781077 |
31 | East Passyunk | POLYGON ((-75.16971 39.92442, -75.16835 39.930... | 648 | 6.222775 |
86 | Newbold | POLYGON ((-75.16971 39.92442, -75.17023 39.921... | 525 | 5.712863 |
72 | Lower Moyamensing | POLYGON ((-75.15660 39.92271, -75.15827 39.915... | 881 | 5.366825 |
5 | Bella Vista | POLYGON ((-75.15865 39.94277, -75.15757 39.942... | 416 | 5.082199 |
25 | Dunlap | POLYGON ((-75.22457 39.96492, -75.21995 39.963... | 189 | 4.983522 |
139 | West Passyunk | POLYGON ((-75.18528 39.93020, -75.17533 39.928... | 495 | 4.888462 |
108 | Point Breeze | POLYGON ((-75.18495 39.94013, -75.17622 39.939... | 1154 | 4.308334 |
103 | Pennsport | POLYGON ((-75.14531 39.93361, -75.14532 39.933... | 447 | 4.062493 |
142 | Whitman | POLYGON ((-75.14766 39.91674, -75.14825 39.913... | 476 | 3.983558 |
The Greenwich neighborhood has the highest number of tickets per area, but a relatively low number of overall tickets. Let’s take a look at the tickets in closer detail.
# Extract out the point tickets for Greenwich
= requests_with_hood.query("ZillowName == 'Greenwich'") greenwich_tickets
# Get the neighborhood boundary for Greenwich
= neighborhoods.query("ZillowName == 'Greenwich'") greenwich_geo
If you are using the .explore()
function in geopandas, you if you have an existing Folium map, you can pass it to the explore()
function using the m=
keyword. See the docs for more info.
# Plot the neighborhood boundary
= greenwich_geo.explore(
m ={"weight": 4, "color": "black", "fillColor": "none"},
style_kwds="Neighborhood boundary",
name=xyzservices.providers.CartoDB.Voyager,
tiles
)
# Add the individual tickets as circle markers and style them
greenwich_tickets.explore(=m, # Add to the existing map!
m={"radius": 7, "fill": True, "color": "crimson"},
marker_kwds="circle_marker", # or 'marker' or 'circle'
marker_type="Tickets",
name
)
# Hse folium to add layer control
folium.LayerControl().add_to(m)
# show map m
Interesting! There are definitely spatial clusters of 311 tickets, e.g., hot spots. But these tickets are from all of 2020…
Question: I wonder if they were clustered in time as well as space, e.g., a large number of tickets in a short period of time. This could be indicative of a couple bad weeks of trash collections, and a few “power users” putting in lots of repeat 311 tickets to the City if the issue was resolved.
Let’s use the folium/leaflet plugin ecosystem to try to answer this question!
3. Leaflet/Folium plugins
One of leaflet’s strengths: a rich set of open-source plugins
https://leafletjs.com/plugins.html
Many of these are available in Folium! Check out the plugins gallery on the folium documentation for examples.
3A. Time-stamped GeoJSON
The folium.plugins.TimestampedGeoJson()
object can plot a GeoJSON collection over time, adding a slider to control what time frame is currently shown.
Let’s use this to examine the trends in tickets in Greenwich by month in 2020…
There’s a few things we’ll need to do to prepare:
- Add a “time” column that includes the datetime for each point. We can rename our “requested_datetime” column.
- Pass in GeoJSON to the function, not the GeoDataFrame. We can use the
.to_json()
function to convert. - Choose a time period to show on the slider, e.g., how many time slices to show. We will use a monthly interval below.
# Select only the two columns we need and rename to "time"
= (
ticket_timestamps "requested_datetime", "geometry"]]
greenwich_tickets[[={"requested_datetime": "time"})
.rename(columns )
# Plot the neighborhood boundary first
= greenwich_geo.explore(
m ={"weight": 4, "color": "black", "fillColor": "none"},
style_kwds="Neighborhood boundary",
name=xyzservices.providers.CartoDB.Voyager,
tiles
)
# Add the time-stamped GeoJSON
folium.plugins.TimestampedGeoJson(# Convert to GeoJSON
ticket_timestamps.to_json(), ="P1M", # Show the data in one month intervals
period="P1M", # Only show points for 1 month and then remove them
duration=False, # Don't start playing by default
auto_play=False, # Loop the animation
loop=1, # Max frame speed
max_speed=True, # Show a loop button
loop_button=500, # Time between frames in ms
transition_time
).add_to(m)
m
Ah! The summer months, July and August in particular, saw a lot of requests, just as we saw before with the citywide data! By September or October the number of tickets declines, showing that the trash-related problems were a short-term issue.
A brief deep dive, feel free to keep moving!
Styling the markers in this case is much harder to do than when we were working with the .explore()
function. We need to add the style dictionary we want as a attribute of each feature’s property dictionary. So we’ll need to convert to a GeoJSON dict, and then manually loop over each feature and add the style we want.
The example below really illustrates how .explore()
is often the best option for its ease of use!
The .to_json()
function returns a string version of the GeoJSON dict. We can parse it into a Python dict by using the json.loads()
function.
import json
# This is our GeoJSON points as a dict
= json.loads(ticket_timestamps.to_json()) geosjon_dict
geosjon_dict
{'type': 'FeatureCollection',
'features': [{'id': '842',
'type': 'Feature',
'properties': {'time': '2020-01-06 10:42:43'},
'geometry': {'type': 'Point',
'coordinates': [-75.155657471, 39.923776419]}},
{'id': '1168',
'type': 'Feature',
'properties': {'time': '2020-07-13 21:30:03'},
'geometry': {'type': 'Point',
'coordinates': [-75.153858572, 39.924485692]}},
{'id': '1171',
'type': 'Feature',
'properties': {'time': '2020-03-05 17:35:06'},
'geometry': {'type': 'Point',
'coordinates': [-75.160990158, 39.924627016]}},
{'id': '1172',
'type': 'Feature',
'properties': {'time': '2020-03-05 13:15:21'},
'geometry': {'type': 'Point',
'coordinates': [-75.160990158, 39.924627016]}},
{'id': '1183',
'type': 'Feature',
'properties': {'time': '2020-03-27 14:22:31'},
'geometry': {'type': 'Point',
'coordinates': [-75.155498831, 39.924592881]}},
{'id': '1467',
'type': 'Feature',
'properties': {'time': '2020-01-03 14:18:31'},
'geometry': {'type': 'Point', 'coordinates': [-75.161230033, 39.92354383]}},
{'id': '2389',
'type': 'Feature',
'properties': {'time': '2020-01-24 13:47:48'},
'geometry': {'type': 'Point',
'coordinates': [-75.158356253, 39.923713663]}},
{'id': '2706',
'type': 'Feature',
'properties': {'time': '2020-01-16 13:30:19'},
'geometry': {'type': 'Point',
'coordinates': [-75.160874798, 39.925369821]}},
{'id': '2710',
'type': 'Feature',
'properties': {'time': '2020-01-16 13:59:33'},
'geometry': {'type': 'Point',
'coordinates': [-75.159921056, 39.924371679]}},
{'id': '3025',
'type': 'Feature',
'properties': {'time': '2020-01-28 13:13:58'},
'geometry': {'type': 'Point', 'coordinates': [-75.16083836, 39.925317048]}},
{'id': '3033',
'type': 'Feature',
'properties': {'time': '2020-01-28 13:15:41'},
'geometry': {'type': 'Point',
'coordinates': [-75.159065146, 39.925475093]}},
{'id': '3074',
'type': 'Feature',
'properties': {'time': '2020-01-24 13:49:33'},
'geometry': {'type': 'Point',
'coordinates': [-75.158356253, 39.923713663]}},
{'id': '3119',
'type': 'Feature',
'properties': {'time': '2020-01-25 20:10:35'},
'geometry': {'type': 'Point',
'coordinates': [-75.155601389, 39.924585621]}},
{'id': '3267',
'type': 'Feature',
'properties': {'time': '2020-01-30 11:34:41'},
'geometry': {'type': 'Point',
'coordinates': [-75.155621249, 39.923806944]}},
{'id': '4697',
'type': 'Feature',
'properties': {'time': '2020-02-22 13:35:35'},
'geometry': {'type': 'Point',
'coordinates': [-75.157024208, 39.923213738]}},
{'id': '4715',
'type': 'Feature',
'properties': {'time': '2020-02-21 17:49:57'},
'geometry': {'type': 'Point',
'coordinates': [-75.159090002, 39.923460988]}},
{'id': '4740',
'type': 'Feature',
'properties': {'time': '2020-02-22 13:33:17'},
'geometry': {'type': 'Point', 'coordinates': [-75.15719156, 39.923235233]}},
{'id': '4741',
'type': 'Feature',
'properties': {'time': '2020-02-22 13:34:09'},
'geometry': {'type': 'Point', 'coordinates': [-75.15719156, 39.923235233]}},
{'id': '4742',
'type': 'Feature',
'properties': {'time': '2020-02-24 13:36:54'},
'geometry': {'type': 'Point', 'coordinates': [-75.15719156, 39.923235233]}},
{'id': '4743',
'type': 'Feature',
'properties': {'time': '2020-02-22 13:34:57'},
'geometry': {'type': 'Point',
'coordinates': [-75.157077985, 39.923220645]}},
{'id': '4760',
'type': 'Feature',
'properties': {'time': '2020-02-24 08:13:43'},
'geometry': {'type': 'Point', 'coordinates': [-75.156003433, 39.92385723]}},
{'id': '4990',
'type': 'Feature',
'properties': {'time': '2020-02-08 10:24:59'},
'geometry': {'type': 'Point', 'coordinates': [-75.15301445, 39.92446812]}},
{'id': '5448',
'type': 'Feature',
'properties': {'time': '2020-02-13 13:31:52'},
'geometry': {'type': 'Point',
'coordinates': [-75.156957121, 39.925199659]}},
{'id': '5450',
'type': 'Feature',
'properties': {'time': '2020-02-14 16:32:01'},
'geometry': {'type': 'Point',
'coordinates': [-75.156248603, 39.924521633]}},
{'id': '5451',
'type': 'Feature',
'properties': {'time': '2020-02-14 16:32:02'},
'geometry': {'type': 'Point',
'coordinates': [-75.156248603, 39.924521633]}},
{'id': '5533',
'type': 'Feature',
'properties': {'time': '2020-02-27 13:37:15'},
'geometry': {'type': 'Point',
'coordinates': [-75.156957121, 39.925199659]}},
{'id': '5620',
'type': 'Feature',
'properties': {'time': '2020-08-03 18:19:45'},
'geometry': {'type': 'Point',
'coordinates': [-75.155023658, 39.922932009]}},
{'id': '5812',
'type': 'Feature',
'properties': {'time': '2020-07-13 11:04:22'},
'geometry': {'type': 'Point',
'coordinates': [-75.153809538, 39.924111537]}},
{'id': '5830',
'type': 'Feature',
'properties': {'time': '2020-03-06 08:20:49'},
'geometry': {'type': 'Point',
'coordinates': [-75.157364304, 39.923604389]}},
{'id': '6017',
'type': 'Feature',
'properties': {'time': '2020-02-28 08:47:44'},
'geometry': {'type': 'Point',
'coordinates': [-75.155498831, 39.924592881]}},
{'id': '6345',
'type': 'Feature',
'properties': {'time': '2020-03-06 14:51:03'},
'geometry': {'type': 'Point',
'coordinates': [-75.156902105, 39.923525037]}},
{'id': '6376',
'type': 'Feature',
'properties': {'time': '2020-02-14 15:02:25'},
'geometry': {'type': 'Point',
'coordinates': [-75.154104498, 39.922402842]}},
{'id': '6874',
'type': 'Feature',
'properties': {'time': '2020-04-04 15:27:59'},
'geometry': {'type': 'Point',
'coordinates': [-75.154131141, 39.924046876]}},
{'id': '6930',
'type': 'Feature',
'properties': {'time': '2020-03-19 21:59:44'},
'geometry': {'type': 'Point',
'coordinates': [-75.158978062, 39.923446741]}},
{'id': '7296',
'type': 'Feature',
'properties': {'time': '2020-06-03 08:22:37'},
'geometry': {'type': 'Point',
'coordinates': [-75.157577753, 39.923519941]}},
{'id': '7608',
'type': 'Feature',
'properties': {'time': '2020-03-26 17:15:28'},
'geometry': {'type': 'Point', 'coordinates': [-75.15719156, 39.923235233]}},
{'id': '7609',
'type': 'Feature',
'properties': {'time': '2020-03-27 08:51:24'},
'geometry': {'type': 'Point',
'coordinates': [-75.156438954, 39.924548585]}},
{'id': '7778',
'type': 'Feature',
'properties': {'time': '2020-03-19 22:01:26'},
'geometry': {'type': 'Point', 'coordinates': [-75.159015515, 39.92346995]}},
{'id': '7853',
'type': 'Feature',
'properties': {'time': '2020-03-26 10:51:55'},
'geometry': {'type': 'Point', 'coordinates': [-75.15833899, 39.924966002]}},
{'id': '7856',
'type': 'Feature',
'properties': {'time': '2020-04-04 09:11:40'},
'geometry': {'type': 'Point', 'coordinates': [-75.15403205, 39.924033923]}},
{'id': '7990',
'type': 'Feature',
'properties': {'time': '2020-03-21 10:02:18'},
'geometry': {'type': 'Point', 'coordinates': [-75.15903372, 39.923453825]}},
{'id': '7991',
'type': 'Feature',
'properties': {'time': '2020-03-20 12:13:06'},
'geometry': {'type': 'Point',
'coordinates': [-75.154375886, 39.924079416]}},
{'id': '8026',
'type': 'Feature',
'properties': {'time': '2020-03-17 15:02:06'},
'geometry': {'type': 'Point',
'coordinates': [-75.160026577, 39.924385293]}},
{'id': '8917',
'type': 'Feature',
'properties': {'time': '2020-04-03 14:43:13'},
'geometry': {'type': 'Point',
'coordinates': [-75.159163322, 39.923836319]}},
{'id': '9544',
'type': 'Feature',
'properties': {'time': '2020-04-04 11:11:51'},
'geometry': {'type': 'Point',
'coordinates': [-75.153881217, 39.924382902]}},
{'id': '10058',
'type': 'Feature',
'properties': {'time': '2020-04-05 11:59:07'},
'geometry': {'type': 'Point',
'coordinates': [-75.155827759, 39.924250865]}},
{'id': '10178',
'type': 'Feature',
'properties': {'time': '2020-04-04 10:43:20'},
'geometry': {'type': 'Point',
'coordinates': [-75.154169742, 39.924830538]}},
{'id': '10479',
'type': 'Feature',
'properties': {'time': '2020-04-16 16:44:58'},
'geometry': {'type': 'Point',
'coordinates': [-75.159310994, 39.924926742]}},
{'id': '10480',
'type': 'Feature',
'properties': {'time': '2020-04-16 16:44:56'},
'geometry': {'type': 'Point',
'coordinates': [-75.159310994, 39.924926742]}},
{'id': '10481',
'type': 'Feature',
'properties': {'time': '2020-04-16 19:01:23'},
'geometry': {'type': 'Point',
'coordinates': [-75.157077985, 39.923220645]}},
{'id': '10569',
'type': 'Feature',
'properties': {'time': '2020-04-17 08:04:01'},
'geometry': {'type': 'Point',
'coordinates': [-75.157518089, 39.924466016]}},
{'id': '10590',
'type': 'Feature',
'properties': {'time': '2020-04-16 13:35:01'},
'geometry': {'type': 'Point',
'coordinates': [-75.156965035, 39.923983859]}},
{'id': '10659',
'type': 'Feature',
'properties': {'time': '2020-04-16 09:58:54'},
'geometry': {'type': 'Point',
'coordinates': [-75.156568155, 39.925147821]}},
{'id': '10806',
'type': 'Feature',
'properties': {'time': '2020-04-04 10:05:01'},
'geometry': {'type': 'Point',
'coordinates': [-75.153979574, 39.924395817]}},
{'id': '10807',
'type': 'Feature',
'properties': {'time': '2020-04-04 10:52:05'},
'geometry': {'type': 'Point',
'coordinates': [-75.155332714, 39.924204962]}},
{'id': '10808',
'type': 'Feature',
'properties': {'time': '2020-04-04 10:52:48'},
'geometry': {'type': 'Point',
'coordinates': [-75.155332714, 39.924204962]}},
{'id': '10814',
'type': 'Feature',
'properties': {'time': '2020-04-17 06:32:17'},
'geometry': {'type': 'Point',
'coordinates': [-75.160980797, 39.924670551]}},
{'id': '10815',
'type': 'Feature',
'properties': {'time': '2020-04-17 11:11:30'},
'geometry': {'type': 'Point',
'coordinates': [-75.157124075, 39.925221629]}},
{'id': '11315',
'type': 'Feature',
'properties': {'time': '2020-03-24 11:45:33'},
'geometry': {'type': 'Point',
'coordinates': [-75.160176117, 39.923179212]}},
{'id': '11316',
'type': 'Feature',
'properties': {'time': '2020-03-24 11:45:32'},
'geometry': {'type': 'Point',
'coordinates': [-75.160176117, 39.923179212]}},
{'id': '11601',
'type': 'Feature',
'properties': {'time': '2020-06-02 17:02:50'},
'geometry': {'type': 'Point',
'coordinates': [-75.157557781, 39.923610892]}},
{'id': '12063',
'type': 'Feature',
'properties': {'time': '2020-04-02 19:15:40'},
'geometry': {'type': 'Point', 'coordinates': [-75.15664771, 39.923165179]}},
{'id': '12291',
'type': 'Feature',
'properties': {'time': '2020-04-04 15:29:46'},
'geometry': {'type': 'Point',
'coordinates': [-75.153499985, 39.923944783]}},
{'id': '12292',
'type': 'Feature',
'properties': {'time': '2020-04-04 15:30:15'},
'geometry': {'type': 'Point',
'coordinates': [-75.153499985, 39.923944783]}},
{'id': '12293',
'type': 'Feature',
'properties': {'time': '2020-04-05 10:09:14'},
'geometry': {'type': 'Point',
'coordinates': [-75.153499985, 39.923944783]}},
{'id': '12294',
'type': 'Feature',
'properties': {'time': '2020-04-04 09:12:26'},
'geometry': {'type': 'Point',
'coordinates': [-75.153499985, 39.923944783]}},
{'id': '13161',
'type': 'Feature',
'properties': {'time': '2020-04-04 11:11:22'},
'geometry': {'type': 'Point',
'coordinates': [-75.153881217, 39.924382902]}},
{'id': '13275',
'type': 'Feature',
'properties': {'time': '2020-05-01 10:06:52'},
'geometry': {'type': 'Point', 'coordinates': [-75.15664771, 39.923165179]}},
{'id': '13289',
'type': 'Feature',
'properties': {'time': '2020-05-16 17:59:04'},
'geometry': {'type': 'Point',
'coordinates': [-75.154077824, 39.924408385]}},
{'id': '13511',
'type': 'Feature',
'properties': {'time': '2020-05-01 12:04:47'},
'geometry': {'type': 'Point',
'coordinates': [-75.156837048, 39.923290606]}},
{'id': '13513',
'type': 'Feature',
'properties': {'time': '2020-05-02 15:34:39'},
'geometry': {'type': 'Point',
'coordinates': [-75.155859936, 39.922624416]}},
{'id': '13569',
'type': 'Feature',
'properties': {'time': '2020-04-30 12:09:46'},
'geometry': {'type': 'Point',
'coordinates': [-75.158815108, 39.923444183]}},
{'id': '13925',
'type': 'Feature',
'properties': {'time': '2020-05-15 15:24:57'},
'geometry': {'type': 'Point',
'coordinates': [-75.157056895, 39.923318322]}},
{'id': '13951',
'type': 'Feature',
'properties': {'time': '2020-05-01 15:13:35'},
'geometry': {'type': 'Point',
'coordinates': [-75.157124075, 39.925221629]}},
{'id': '13972',
'type': 'Feature',
'properties': {'time': '2020-05-01 12:24:22'},
'geometry': {'type': 'Point',
'coordinates': [-75.160588898, 39.923794337]}},
{'id': '14093',
'type': 'Feature',
'properties': {'time': '2020-05-01 13:56:05'},
'geometry': {'type': 'Point',
'coordinates': [-75.160812357, 39.925634333]}},
{'id': '14163',
'type': 'Feature',
'properties': {'time': '2020-05-02 08:08:32'},
'geometry': {'type': 'Point',
'coordinates': [-75.160980797, 39.924670551]}},
{'id': '14705',
'type': 'Feature',
'properties': {'time': '2020-06-29 14:26:09'},
'geometry': {'type': 'Point',
'coordinates': [-75.156637474, 39.924372543]}},
{'id': '14707',
'type': 'Feature',
'properties': {'time': '2020-06-29 08:07:47'},
'geometry': {'type': 'Point',
'coordinates': [-75.157315393, 39.923597994]}},
{'id': '15071',
'type': 'Feature',
'properties': {'time': '2020-12-22 10:43:01'},
'geometry': {'type': 'Point',
'coordinates': [-75.158322098, 39.924575654]}},
{'id': '15072',
'type': 'Feature',
'properties': {'time': '2020-12-22 10:42:59'},
'geometry': {'type': 'Point',
'coordinates': [-75.158322098, 39.924575654]}},
{'id': '16753',
'type': 'Feature',
'properties': {'time': '2020-05-20 15:55:59'},
'geometry': {'type': 'Point', 'coordinates': [-75.15548647, 39.923753757]}},
{'id': '16754',
'type': 'Feature',
'properties': {'time': '2020-05-20 15:55:58'},
'geometry': {'type': 'Point', 'coordinates': [-75.15548647, 39.923753757]}},
{'id': '16881',
'type': 'Feature',
'properties': {'time': '2020-05-30 17:02:46'},
'geometry': {'type': 'Point',
'coordinates': [-75.156549668, 39.923130888]}},
{'id': '17122',
'type': 'Feature',
'properties': {'time': '2020-05-16 07:54:11'},
'geometry': {'type': 'Point',
'coordinates': [-75.160812357, 39.925634333]}},
{'id': '17124',
'type': 'Feature',
'properties': {'time': '2020-05-14 22:40:51'},
'geometry': {'type': 'Point',
'coordinates': [-75.160812357, 39.925634333]}},
{'id': '17422',
'type': 'Feature',
'properties': {'time': '2020-07-19 17:25:57'},
'geometry': {'type': 'Point',
'coordinates': [-75.161109322, 39.924099102]}},
{'id': '17588',
'type': 'Feature',
'properties': {'time': '2020-05-15 20:35:31'},
'geometry': {'type': 'Point',
'coordinates': [-75.156914363, 39.923199629]}},
{'id': '18232',
'type': 'Feature',
'properties': {'time': '2020-05-31 19:53:43'},
'geometry': {'type': 'Point',
'coordinates': [-75.153860582, 39.924652984]}},
{'id': '18912',
'type': 'Feature',
'properties': {'time': '2020-05-15 17:12:10'},
'geometry': {'type': 'Point',
'coordinates': [-75.157330149, 39.923996888]}},
{'id': '19708',
'type': 'Feature',
'properties': {'time': '2020-08-17 09:38:15'},
'geometry': {'type': 'Point',
'coordinates': [-75.154962254, 39.922821818]}},
{'id': '19797',
'type': 'Feature',
'properties': {'time': '2020-05-31 10:22:59'},
'geometry': {'type': 'Point',
'coordinates': [-75.157056895, 39.923318322]}},
{'id': '20314',
'type': 'Feature',
'properties': {'time': '2020-07-18 17:50:54'},
'geometry': {'type': 'Point',
'coordinates': [-75.160900125, 39.924068323]}},
{'id': '21421',
'type': 'Feature',
'properties': {'time': '2020-05-17 14:29:59'},
'geometry': {'type': 'Point', 'coordinates': [-75.15548647, 39.923753757]}},
{'id': '21909',
'type': 'Feature',
'properties': {'time': '2020-06-01 09:44:59'},
'geometry': {'type': 'Point',
'coordinates': [-75.158810025, 39.924639382]}},
{'id': '22434',
'type': 'Feature',
'properties': {'time': '2020-06-01 17:48:49'},
'geometry': {'type': 'Point',
'coordinates': [-75.155411307, 39.924089141]}},
{'id': '22469',
'type': 'Feature',
'properties': {'time': '2020-08-17 13:52:37'},
'geometry': {'type': 'Point',
'coordinates': [-75.155234368, 39.924192004]}},
{'id': '22637',
'type': 'Feature',
'properties': {'time': '2020-06-01 09:33:48'},
'geometry': {'type': 'Point',
'coordinates': [-75.160071606, 39.923165322]}},
{'id': '22794',
'type': 'Feature',
'properties': {'time': '2020-06-01 13:31:14'},
'geometry': {'type': 'Point',
'coordinates': [-75.153314987, 39.923059177]}},
{'id': '22867',
'type': 'Feature',
'properties': {'time': '2020-06-01 09:17:34'},
'geometry': {'type': 'Point',
'coordinates': [-75.157170491, 39.923332813]}},
{'id': '23015',
'type': 'Feature',
'properties': {'time': '2020-06-01 09:24:37'},
'geometry': {'type': 'Point',
'coordinates': [-75.160437665, 39.923852075]}},
{'id': '23154',
'type': 'Feature',
'properties': {'time': '2020-06-02 10:16:27'},
'geometry': {'type': 'Point',
'coordinates': [-75.158931238, 39.925043988]}},
{'id': '23155',
'type': 'Feature',
'properties': {'time': '2020-06-02 11:22:30'},
'geometry': {'type': 'Point',
'coordinates': [-75.156902105, 39.923525037]}},
{'id': '23403',
'type': 'Feature',
'properties': {'time': '2020-07-20 23:32:40'},
'geometry': {'type': 'Point',
'coordinates': [-75.155554339, 39.924343244]}},
{'id': '23454',
'type': 'Feature',
'properties': {'time': '2020-07-11 01:55:34'},
'geometry': {'type': 'Point',
'coordinates': [-75.160891854, 39.925284406]}},
{'id': '23662',
'type': 'Feature',
'properties': {'time': '2020-07-30 11:18:50'},
'geometry': {'type': 'Point',
'coordinates': [-75.156549668, 39.923130888]}},
{'id': '23702',
'type': 'Feature',
'properties': {'time': '2020-07-13 17:15:04'},
'geometry': {'type': 'Point',
'coordinates': [-75.153858572, 39.924485692]}},
{'id': '23704',
'type': 'Feature',
'properties': {'time': '2020-07-13 14:16:57'},
'geometry': {'type': 'Point',
'coordinates': [-75.155554339, 39.924343244]}},
{'id': '23862',
'type': 'Feature',
'properties': {'time': '2020-07-12 16:08:55'},
'geometry': {'type': 'Point',
'coordinates': [-75.155736278, 39.924896355]}},
{'id': '23866',
'type': 'Feature',
'properties': {'time': '2020-07-11 12:05:56'},
'geometry': {'type': 'Point',
'coordinates': [-75.155411307, 39.924089141]}},
{'id': '23939',
'type': 'Feature',
'properties': {'time': '2020-07-26 17:38:46'},
'geometry': {'type': 'Point',
'coordinates': [-75.160808254, 39.924695498]}},
{'id': '24877',
'type': 'Feature',
'properties': {'time': '2020-07-13 15:37:52'},
'geometry': {'type': 'Point',
'coordinates': [-75.154963261, 39.924501776]}},
{'id': '24878',
'type': 'Feature',
'properties': {'time': '2020-07-13 15:38:41'},
'geometry': {'type': 'Point',
'coordinates': [-75.154963261, 39.924501776]}},
{'id': '25276',
'type': 'Feature',
'properties': {'time': '2020-07-29 15:19:29'},
'geometry': {'type': 'Point',
'coordinates': [-75.153979411, 39.924270134]}},
{'id': '25469',
'type': 'Feature',
'properties': {'time': '2020-07-12 20:47:51'},
'geometry': {'type': 'Point',
'coordinates': [-75.153907955, 39.924492308]}},
{'id': '25553',
'type': 'Feature',
'properties': {'time': '2020-07-20 09:16:51'},
'geometry': {'type': 'Point', 'coordinates': [-75.16096195, 39.924758202]}},
{'id': '26129',
'type': 'Feature',
'properties': {'time': '2020-08-20 10:15:56'},
'geometry': {'type': 'Point',
'coordinates': [-75.156754525, 39.924263169]}},
{'id': '26172',
'type': 'Feature',
'properties': {'time': '2020-08-19 09:15:17'},
'geometry': {'type': 'Point',
'coordinates': [-75.156966092, 39.924904549]}},
{'id': '26348',
'type': 'Feature',
'properties': {'time': '2020-08-01 14:28:48'},
'geometry': {'type': 'Point',
'coordinates': [-75.153956852, 39.924498958]}},
{'id': '26581',
'type': 'Feature',
'properties': {'time': '2020-08-20 14:26:44'},
'geometry': {'type': 'Point',
'coordinates': [-75.159153753, 39.923583213]}},
{'id': '26925',
'type': 'Feature',
'properties': {'time': '2020-07-31 16:55:06'},
'geometry': {'type': 'Point',
'coordinates': [-75.160083334, 39.925209334]}},
{'id': '27122',
'type': 'Feature',
'properties': {'time': '2020-07-31 10:41:44'},
'geometry': {'type': 'Point',
'coordinates': [-75.158888726, 39.923335123]}},
{'id': '27453',
'type': 'Feature',
'properties': {'time': '2020-08-03 06:44:08'},
'geometry': {'type': 'Point',
'coordinates': [-75.154011991, 39.923907612]}},
{'id': '27463',
'type': 'Feature',
'properties': {'time': '2020-07-31 10:06:15'},
'geometry': {'type': 'Point',
'coordinates': [-75.160083334, 39.925209334]}},
{'id': '27714',
'type': 'Feature',
'properties': {'time': '2020-10-29 15:40:18'},
'geometry': {'type': 'Point',
'coordinates': [-75.160041874, 39.924796408]}},
{'id': '28300',
'type': 'Feature',
'properties': {'time': '2020-06-18 15:35:23'},
'geometry': {'type': 'Point', 'coordinates': [-75.15664771, 39.923165179]}},
{'id': '28534',
'type': 'Feature',
'properties': {'time': '2020-06-26 19:27:38'},
'geometry': {'type': 'Point',
'coordinates': [-75.159143275, 39.923929199]}},
{'id': '28556',
'type': 'Feature',
'properties': {'time': '2020-06-20 15:01:59'},
'geometry': {'type': 'Point', 'coordinates': [-75.15548647, 39.923753757]}},
{'id': '28750',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:08:39'},
'geometry': {'type': 'Point',
'coordinates': [-75.153960556, 39.924130395]}},
{'id': '28751',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:06:23'},
'geometry': {'type': 'Point',
'coordinates': [-75.154207959, 39.923933074]}},
{'id': '28869',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:07:07'},
'geometry': {'type': 'Point',
'coordinates': [-75.154108707, 39.924149572]}},
{'id': '28871',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:09:16'},
'geometry': {'type': 'Point',
'coordinates': [-75.153911239, 39.924124379]}},
{'id': '28872',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:11:10'},
'geometry': {'type': 'Point',
'coordinates': [-75.153759161, 39.924105005]}},
{'id': '28873',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:12:44'},
'geometry': {'type': 'Point',
'coordinates': [-75.154061074, 39.923913234]}},
{'id': '29085',
'type': 'Feature',
'properties': {'time': '2020-06-27 12:21:10'},
'geometry': {'type': 'Point',
'coordinates': [-75.157056895, 39.923318322]}},
{'id': '29131',
'type': 'Feature',
'properties': {'time': '2020-06-29 10:02:02'},
'geometry': {'type': 'Point',
'coordinates': [-75.154837138, 39.923594654]}},
{'id': '29149',
'type': 'Feature',
'properties': {'time': '2020-06-25 20:20:02'},
'geometry': {'type': 'Point',
'coordinates': [-75.156549668, 39.923130888]}},
{'id': '29226',
'type': 'Feature',
'properties': {'time': '2020-06-16 11:59:33'},
'geometry': {'type': 'Point', 'coordinates': [-75.15719156, 39.923235233]}},
{'id': '29252',
'type': 'Feature',
'properties': {'time': '2020-06-29 09:32:09'},
'geometry': {'type': 'Point',
'coordinates': [-75.154717979, 39.924100221]}},
{'id': '29282',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:42:03'},
'geometry': {'type': 'Point',
'coordinates': [-75.154009514, 39.924137084]}},
{'id': '29291',
'type': 'Feature',
'properties': {'time': '2020-06-25 20:19:21'},
'geometry': {'type': 'Point',
'coordinates': [-75.156549668, 39.923130888]}},
{'id': '29465',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:41:25'},
'geometry': {'type': 'Point', 'coordinates': [-75.15405894, 39.924143332]}},
{'id': '29628',
'type': 'Feature',
'properties': {'time': '2020-08-03 17:08:20'},
'geometry': {'type': 'Point',
'coordinates': [-75.153930291, 39.924264078]}},
{'id': '29666',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:40:51'},
'geometry': {'type': 'Point',
'coordinates': [-75.154109783, 39.923920377]}},
{'id': '29667',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:42:36'},
'geometry': {'type': 'Point',
'coordinates': [-75.154108707, 39.924149572]}},
{'id': '29668',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:43:50'},
'geometry': {'type': 'Point',
'coordinates': [-75.153960556, 39.924130395]}},
{'id': '29669',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:44:33'},
'geometry': {'type': 'Point',
'coordinates': [-75.154061074, 39.923913234]}},
{'id': '29670',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:45:07'},
'geometry': {'type': 'Point',
'coordinates': [-75.154011991, 39.923907612]}},
{'id': '29672',
'type': 'Feature',
'properties': {'time': '2020-06-29 07:53:44'},
'geometry': {'type': 'Point',
'coordinates': [-75.154255453, 39.924169321]}},
{'id': '29824',
'type': 'Feature',
'properties': {'time': '2020-06-28 15:25:34'},
'geometry': {'type': 'Point',
'coordinates': [-75.158745882, 39.923531097]}},
{'id': '29847',
'type': 'Feature',
'properties': {'time': '2020-06-29 20:36:14'},
'geometry': {'type': 'Point', 'coordinates': [-75.155753237, 39.92413529]}},
{'id': '29981',
'type': 'Feature',
'properties': {'time': '2020-07-20 16:00:58'},
'geometry': {'type': 'Point',
'coordinates': [-75.155872892, 39.924256778]}},
{'id': '30020',
'type': 'Feature',
'properties': {'time': '2020-06-26 19:53:04'},
'geometry': {'type': 'Point',
'coordinates': [-75.160083334, 39.925209334]}},
{'id': '30175',
'type': 'Feature',
'properties': {'time': '2020-06-27 13:05:14'},
'geometry': {'type': 'Point',
'coordinates': [-75.157112673, 39.923325114]}},
{'id': '30191',
'type': 'Feature',
'properties': {'time': '2020-07-10 11:21:49'},
'geometry': {'type': 'Point', 'coordinates': [-75.15719156, 39.923235233]}},
{'id': '30238',
'type': 'Feature',
'properties': {'time': '2020-06-26 18:41:30'},
'geometry': {'type': 'Point',
'coordinates': [-75.158912273, 39.923456676]}},
{'id': '30416',
'type': 'Feature',
'properties': {'time': '2020-06-28 11:43:04'},
'geometry': {'type': 'Point',
'coordinates': [-75.153956852, 39.924498958]}},
{'id': '30598',
'type': 'Feature',
'properties': {'time': '2020-06-27 09:44:56'},
'geometry': {'type': 'Point',
'coordinates': [-75.157170491, 39.923332813]}},
{'id': '30600',
'type': 'Feature',
'properties': {'time': '2020-06-27 09:46:40'},
'geometry': {'type': 'Point',
'coordinates': [-75.157056895, 39.923318322]}},
{'id': '30603',
'type': 'Feature',
'properties': {'time': '2020-06-27 09:53:50'},
'geometry': {'type': 'Point',
'coordinates': [-75.157330551, 39.923353019]}},
{'id': '30704',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:09:40'},
'geometry': {'type': 'Point',
'coordinates': [-75.153859892, 39.924121205]}},
{'id': '30705',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:05:38'},
'geometry': {'type': 'Point',
'coordinates': [-75.154108707, 39.924149572]}},
{'id': '30706',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:07:32'},
'geometry': {'type': 'Point', 'coordinates': [-75.15405894, 39.924143332]}},
{'id': '30915',
'type': 'Feature',
'properties': {'time': '2020-06-26 13:58:05'},
'geometry': {'type': 'Point',
'coordinates': [-75.156549668, 39.923130888]}},
{'id': '31244',
'type': 'Feature',
'properties': {'time': '2020-06-29 18:10:16'},
'geometry': {'type': 'Point',
'coordinates': [-75.153809538, 39.924111537]}},
{'id': '31282',
'type': 'Feature',
'properties': {'time': '2020-06-29 09:59:02'},
'geometry': {'type': 'Point', 'coordinates': [-75.15573512, 39.922937895]}},
{'id': '31286',
'type': 'Feature',
'properties': {'time': '2020-06-29 12:29:56'},
'geometry': {'type': 'Point',
'coordinates': [-75.154029191, 39.924277681]}},
{'id': '31408',
'type': 'Feature',
'properties': {'time': '2020-07-29 20:48:54'},
'geometry': {'type': 'Point',
'coordinates': [-75.160083334, 39.925209334]}},
{'id': '31541',
'type': 'Feature',
'properties': {'time': '2020-07-29 07:58:37'},
'geometry': {'type': 'Point',
'coordinates': [-75.160083334, 39.925209334]}},
{'id': '31623',
'type': 'Feature',
'properties': {'time': '2020-07-20 09:17:30'},
'geometry': {'type': 'Point',
'coordinates': [-75.160971402, 39.924714243]}},
{'id': '31644',
'type': 'Feature',
'properties': {'time': '2020-08-05 15:20:54'},
'geometry': {'type': 'Point',
'coordinates': [-75.156677739, 39.925162427]}},
{'id': '31944',
'type': 'Feature',
'properties': {'time': '2020-05-31 11:29:36'},
'geometry': {'type': 'Point',
'coordinates': [-75.157269636, 39.924456406]}},
{'id': '32329',
'type': 'Feature',
'properties': {'time': '2020-07-19 17:27:10'},
'geometry': {'type': 'Point',
'coordinates': [-75.161120366, 39.924049232]}},
{'id': '32408',
'type': 'Feature',
'properties': {'time': '2020-07-27 10:24:39'},
'geometry': {'type': 'Point',
'coordinates': [-75.153876231, 39.923134799]}},
{'id': '32820',
'type': 'Feature',
'properties': {'time': '2020-07-18 08:30:10'},
'geometry': {'type': 'Point',
'coordinates': [-75.156549668, 39.923130888]}},
{'id': '33199',
'type': 'Feature',
'properties': {'time': '2020-08-05 15:20:53'},
'geometry': {'type': 'Point',
'coordinates': [-75.156677739, 39.925162427]}},
{'id': '34138',
'type': 'Feature',
'properties': {'time': '2020-07-11 20:12:05'},
'geometry': {'type': 'Point',
'coordinates': [-75.155736278, 39.924896355]}},
{'id': '34438',
'type': 'Feature',
'properties': {'time': '2020-07-26 17:39:54'},
'geometry': {'type': 'Point',
'coordinates': [-75.160818745, 39.924651932]}},
{'id': '34600',
'type': 'Feature',
'properties': {'time': '2020-07-26 00:03:14'},
'geometry': {'type': 'Point',
'coordinates': [-75.157170491, 39.923332813]}},
{'id': '34732',
'type': 'Feature',
'properties': {'time': '2020-07-20 16:35:09'},
'geometry': {'type': 'Point',
'coordinates': [-75.155736278, 39.924896355]}},
{'id': '34734',
'type': 'Feature',
'properties': {'time': '2020-07-20 15:49:50'},
'geometry': {'type': 'Point', 'coordinates': [-75.15403205, 39.924033923]}},
{'id': '37615',
'type': 'Feature',
'properties': {'time': '2020-08-16 10:13:28'},
'geometry': {'type': 'Point',
'coordinates': [-75.160437665, 39.923852075]}},
{'id': '37951',
'type': 'Feature',
'properties': {'time': '2020-09-01 09:40:31'},
'geometry': {'type': 'Point',
'coordinates': [-75.159173895, 39.923490379]}},
{'id': '38344',
'type': 'Feature',
'properties': {'time': '2020-08-13 16:06:44'},
'geometry': {'type': 'Point', 'coordinates': [-75.159102441, 39.92357609]}},
{'id': '38484',
'type': 'Feature',
'properties': {'time': '2020-08-03 06:44:57'},
'geometry': {'type': 'Point',
'coordinates': [-75.153499985, 39.923944783]}},
{'id': '38580',
'type': 'Feature',
'properties': {'time': '2020-08-14 19:06:30'},
'geometry': {'type': 'Point',
'coordinates': [-75.160083334, 39.925209334]}},
{'id': '38582',
'type': 'Feature',
'properties': {'time': '2020-08-15 07:23:03'},
'geometry': {'type': 'Point',
'coordinates': [-75.160261348, 39.923792909]}},
{'id': '39358',
'type': 'Feature',
'properties': {'time': '2020-06-11 23:46:27'},
'geometry': {'type': 'Point', 'coordinates': [-75.16083836, 39.925317048]}},
{'id': '39359',
'type': 'Feature',
'properties': {'time': '2020-06-11 23:46:09'},
'geometry': {'type': 'Point', 'coordinates': [-75.16083836, 39.925317048]}},
{'id': '39507',
'type': 'Feature',
'properties': {'time': '2020-06-05 16:48:01'},
'geometry': {'type': 'Point',
'coordinates': [-75.157589557, 39.923729024]}},
{'id': '39558',
'type': 'Feature',
'properties': {'time': '2020-06-04 08:12:46'},
'geometry': {'type': 'Point',
'coordinates': [-75.156902105, 39.923525037]}},
{'id': '39850',
'type': 'Feature',
'properties': {'time': '2020-06-05 08:15:43'},
'geometry': {'type': 'Point',
'coordinates': [-75.157577753, 39.923519941]}},
{'id': '39939',
'type': 'Feature',
'properties': {'time': '2020-06-11 09:43:29'},
'geometry': {'type': 'Point',
'coordinates': [-75.158323993, 39.924127357]}},
{'id': '40030',
'type': 'Feature',
'properties': {'time': '2020-05-31 13:50:05'},
'geometry': {'type': 'Point',
'coordinates': [-75.159566175, 39.923769955]}},
{'id': '40461',
'type': 'Feature',
'properties': {'time': '2020-10-05 12:23:43'},
'geometry': {'type': 'Point',
'coordinates': [-75.154837138, 39.923594654]}},
{'id': '40536',
'type': 'Feature',
'properties': {'time': '2020-10-02 18:37:33'},
'geometry': {'type': 'Point',
'coordinates': [-75.152994536, 39.924554195]}},
{'id': '41306',
'type': 'Feature',
'properties': {'time': '2020-09-01 09:40:42'},
'geometry': {'type': 'Point',
'coordinates': [-75.159173895, 39.923490379]}},
{'id': '41610',
'type': 'Feature',
'properties': {'time': '2020-09-11 12:05:33'},
'geometry': {'type': 'Point',
'coordinates': [-75.160608015, 39.923808727]}},
{'id': '41671',
'type': 'Feature',
'properties': {'time': '2020-09-03 09:41:39'},
'geometry': {'type': 'Point',
'coordinates': [-75.160608015, 39.923808727]}},
{'id': '41752',
'type': 'Feature',
'properties': {'time': '2020-10-30 08:08:15'},
'geometry': {'type': 'Point',
'coordinates': [-75.156819059, 39.923964673]}},
{'id': '41899',
'type': 'Feature',
'properties': {'time': '2020-10-10 10:02:21'},
'geometry': {'type': 'Point',
'coordinates': [-75.160297641, 39.923631336]}},
{'id': '41948',
'type': 'Feature',
'properties': {'time': '2020-09-11 18:50:12'},
'geometry': {'type': 'Point',
'coordinates': [-75.161039253, 39.924401708]}},
{'id': '43231',
'type': 'Feature',
'properties': {'time': '2020-09-25 15:18:28'},
'geometry': {'type': 'Point',
'coordinates': [-75.153781774, 39.924001494]}},
{'id': '43636',
'type': 'Feature',
'properties': {'time': '2020-10-16 22:34:10'},
'geometry': {'type': 'Point',
'coordinates': [-75.160297641, 39.923631336]}},
{'id': '44666',
'type': 'Feature',
'properties': {'time': '2020-11-14 09:21:53'},
'geometry': {'type': 'Point',
'coordinates': [-75.157170491, 39.923332813]}},
{'id': '45168',
'type': 'Feature',
'properties': {'time': '2020-12-21 10:57:40'},
'geometry': {'type': 'Point',
'coordinates': [-75.155295349, 39.923085778]}},
{'id': '45312',
'type': 'Feature',
'properties': {'time': '2020-12-04 13:48:00'},
'geometry': {'type': 'Point',
'coordinates': [-75.155190902, 39.924166639]}},
{'id': '45341',
'type': 'Feature',
'properties': {'time': '2020-11-05 14:30:34'},
'geometry': {'type': 'Point',
'coordinates': [-75.156278488, 39.924393198]}},
{'id': '45452',
'type': 'Feature',
'properties': {'time': '2020-12-21 09:51:03'},
'geometry': {'type': 'Point',
'coordinates': [-75.157861201, 39.924512434]}},
{'id': '45668',
'type': 'Feature',
'properties': {'time': '2020-11-20 15:43:48'},
'geometry': {'type': 'Point',
'coordinates': [-75.160297641, 39.923631336]}},
{'id': '46048',
'type': 'Feature',
'properties': {'time': '2020-12-04 13:27:54'},
'geometry': {'type': 'Point',
'coordinates': [-75.155190902, 39.924166639]}},
{'id': '47267',
'type': 'Feature',
'properties': {'time': '2020-12-21 11:06:43'},
'geometry': {'type': 'Point',
'coordinates': [-75.159687979, 39.924749294]}},
{'id': '47642',
'type': 'Feature',
'properties': {'time': '2020-12-21 13:42:09'},
'geometry': {'type': 'Point',
'coordinates': [-75.153748975, 39.922764685]}},
{'id': '47643',
'type': 'Feature',
'properties': {'time': '2020-12-21 13:42:08'},
'geometry': {'type': 'Point',
'coordinates': [-75.153748975, 39.922764685]}}]}
Now loop over each feature and add the style:
for feature in geosjon_dict["features"]:
# Use a circle for each icon
"properties"]["icon"] = "circle"
feature[
# Style the circles
"properties"]["style"] = {"radius": 10, "fill": True, "color": "crimson"} feature[
# Plot the neighborhood boundary first
= greenwich_geo.explore(
m ={"weight": 4, "color": "black", "fillColor": "none"},
style_kwds="Neighborhood boundary",
name=xyzservices.providers.CartoDB.Voyager,
tiles
)
# Add the time-stamped GeoJSON
folium.plugins.TimestampedGeoJson(# NEW: use the styled GeoJSON
geosjon_dict, ="P1M",
period="P1M",
duration=False,
auto_play=False,
loop=1,
max_speed=True,
loop_button=500,
transition_time
).add_to(m)
m
3B. Heatmaps
folium.plugins.HeatMap?
Init signature: folium.plugins.HeatMap( data, name=None, min_opacity=0.5, max_zoom=18, radius=25, blur=15, gradient=None, overlay=True, control=True, show=True, **kwargs, ) Docstring: Create a Heatmap layer Parameters ---------- data : list of points of the form [lat, lng] or [lat, lng, weight] The points you want to plot. You can also provide a numpy.array of shape (n,2) or (n,3). name : string, default None The name of the Layer, as it will appear in LayerControls. min_opacity : default 1. The minimum opacity the heat will start at. max_zoom : default 18 Zoom level where the points reach maximum intensity (as intensity scales with zoom), equals maxZoom of the map by default radius : int, default 25 Radius of each "point" of the heatmap blur : int, default 15 Amount of blur gradient : dict, default None Color gradient config. e.g. {0.4: 'blue', 0.65: 'lime', 1: 'red'} overlay : bool, default True Adds the layer as an optional overlay (True) or the base layer (False). control : bool, default True Whether the Layer will be included in LayerControls. show: bool, default True Whether the layer will be shown on opening (only for overlays). File: ~/mambaforge/envs/musa-550-fall-2023/lib/python3.10/site-packages/folium/plugins/heat_map.py Type: type Subclasses:
= greenwich_tickets[['lat', 'lon']] coords
# Plot the neighborhood boundary first
= greenwich_geo.explore(
m ={"weight": 4, "color": "black", "fillColor": "none"},
style_kwds="Neighborhood boundary",
name=xyzservices.providers.CartoDB.Voyager,
tiles
)
# Add heat map coordinates
=20).add_to(m)
folium.plugins.HeatMap(coords.values, radius
# Show map
m
3C: Marker clusters
Question: Can we visualize all tickets citywide in 2020 at once?
len(trash_requests)
47690
Let’s try the heat map plugin:
# let's center the map on Philadelphia
= folium.Map(
m =[39.99, -75.13], zoom_start=11, tiles=xyzservices.providers.CartoDB.Voyager
location
)
# All coords
= trash_requests[["lat", "lon"]] # Remember, (lat, lon) order
coords
# Add heat map coordinates
=20).add_to(m)
folium.plugins.HeatMap(coords.values, radius
# Show map
m
…Not great! There are too many points to properly visualize all of the data at once.
Instead, let’s check out folium.plugins.FastMarkerCluster()
. This plugin clusters the data automatically for each zoom level, and can easily handle thousands of points at once without crashing your browser.
# let's center the map on Philadelphia
= folium.Map(
m =[39.99, -75.13], zoom_start=11, tiles=xyzservices.providers.CartoDB.DarkMatter
location
)
=coords).add_to(m)
folium.plugins.FastMarkerCluster(data
m
Check out the plugins gallery on the folium documentation for the available plugins and examples for each.
That’s it!
- See you next week for more geospatial analysis
- We’ll dive into urban street networks and raster data