Imagery sources
Table of Contents
This wiki page provides imagery sources for JOSM. You can add more WMS, TMS and WMTS sources to the list below by editing the corresponding county specific subpage (or the subpage for worldwide sources), but always make sure the OpenStreetMap community is allowed to use them . Please get in contact with the OSM community if you are unsure about the license/permission. Please read the following documentation before adding or editing sources.
Documentation
General properties
General properties of <entry>
: (<name>
, <id>
, <category>
, <type>
and <url>
are mandatory.)
Property | Description |
---|---|
name | The name of the imagery source. Use English here only. These names can then be translated into all supported languages via Launchpad. (Optional attribute: lang containing the language code to give a translated name here in the xml file. However this should be avoided. This also overrides the translation from Launchpad.)
|
id | Unique identifier of a map to allow automatic updates of map data in JOSM. Don't use white spaces and special characters here (except - and _ ). Never change an existing id as this would break the idea behind the id.
|
oldid | In case renaming is necessary this can contain an old id. The attribute date containing an ISO data like 2018-08-14 is required. Multiple entries are possible.
|
category | Type of imagery: photo aerial or satellite photo, map a map, historicmap historic or otherwise outdated map, osmbasedmap map based on OSM data, historicphoto historic or otherwise outdated aerial or satellite photo, elevation a map of digital terrain model, digital surface model or contour lines, qa map for quality assurance, other any other type or WMTS/wms_endpoint sources containing layers of different categories. |
description | Description of the imagery source, when not self explaining - i.e. when not aerial imagery or other relevant specific information, required attribute: lang containing the language code. The first description must be in English with the language code en for translation in Launchpad. The description is displayed in JOSM in the mouse over tool tip in the imagery preferences, the Imagery menu and in the toolbar.
|
type | The type. Can be tms , wmts , wms , wms_endpoint and mvt . If wms_endpoint is used then the user can choose one of the provided wms layers when adding the entry as background. In addition, there are the special types bing and scanex with hardcoded behaviour.
|
url | The URL of the service. Can contain templates, e.g. {zoom} will be replaced by the current zoom level (see below). The list of services is a XML document, so if the URL contains a & character, the URL must be wrapped in <![CDATA[...]]> . (Technically alternatively the & character could be replaced by & but that makes comparing urls harder and is therefore strongly discouraged.)
|
custom-http-header | HTTP headers to be sent to server (replacement of {header(header, value)}). It has two attributes header-name and header-value . Might be specified multiple times.
|
default | If set to "true", the entry is in the users list by default. (Only josm wiki administrators can change default entries.) |
date | Creation date of imagery in form YYYY-MM-DD;YYYY-MM-DD. DD and MM as well as a second date are optional. a single "-" marks an unknown or open timespan. Examples 2015 or 2015;2016 or 2015-10;2016-01 or 2015;-. The date is displayed in JOSM in the mouse over tool tip in the imagery preferences, the Imagery menu and in the toolbar. |
bounds | The area of use, e.g. <bounds min-lat='45.7' min-lon='5.9' max-lat='55.0' max-lon='17.3'/>
|
shape | A non-rectangular area of use inside the <bounds> , defined by an ordered list of <point> s. This allows a more precise display in Imagery preferences. To easily create the shape xml code you can use the Imagery-XML-Bounds plugin.
|
point | A lat/lon point, part of its parent <shape> , e.g <point lat='45.4023663' lon='2.4599585' />
|
permission-ref | Provide a source that this background can be used for OSM. A page on the OSM-wiki with additional explanation and further references is preferred, but other sources (for example the license text) can also be linked. The document does not have to be in English. Please always use this property when adding new entries so it is easier for others to review. |
eula | A link to an EULA text that has to be accepted by the user, before the imagery source is added. Can contain {lang} to be replaced by a current user language wiki code (like FR:) or an empty string for the default English text. |
attribution-url | A link that is opened, when the user clicks on the attribution text. If attribution-url is set also attribution-text must be set, else no attribution will be displayed. |
attribution-text | The attribution text to be shown all the time in the mapview. |
logo-url | A link that is opened, when the user clicks on the attribution image |
logo-image | A URL for an image, that is displayed in the mapview for attribution |
terms-of-use-url | A link that is opened, when the user clicks on the terms-of-use text |
terms-of-use-text | Customized text for the terms of use link (default is "Background Terms of Use") |
country-code | The ISO 3166-1 alpha-2 country code |
icon | A menu/toolbar icon specified either as URL or data URL (RFC2397) |
mirror | A different mirror of the data, e.g. a TMS for WMS servers. Supports <type> , <id> , <url> , <projections> , <min-zoom> , <max-zoom> and <privacy-policy-url> properties.
|
no-tile-header | Specifies a header returned by tile server, when no tiles are available at this zoom level. name attribute contains name of the header, and value attribute contains regex, that should match header value.
|
no-tile-checksum | Specify a checksum for tiles, which aren't real tiles. type is the digest type and can be MD5, SHA-1, SHA-256, SHA-384 and SHA-512, value is the hex encoded checksum in lower case. To create a checksum save the tile as file and upload it to e.g. https://defuse.ca/checksums.htm.
|
metadata-header | header-name attribute specifies a header returned by tile server, that will be shown as metadata-key attribute in Show Tile Info dialog
|
valid-georeference | Set to true if imagery source is properly aligned and does not need imagery offset adjustments. This is used for OSM based sources too.
|
minimum-tile-expire | minimum expiry time for tiles in seconds. The larger the value, the longer entry in cache will be considered valid Since r13733. |
privacy-policy-url | A link to the privacy policy of the operator. Since r16127 This property is not used within JOSM but other services may use it. |
Attribute | Description |
eli-best | Set to "true", when marked as best in GitHub project Editor Layer Index. A hint is then displayed in JOSM in the mouse over tool tip in the imagery preferences, the Imagery menu and in the toolbar. |
overlay | This entry is an overlay (i.e. mainly transparent) |
Attributes are included directly within the <entry>
property, e.g. <entry eli-best="true">
`.
When {header(header,value)} is included in the URL, this part is stripped and send as HTTP header to the server. (Deprecated, use custom-http-headers
instead.)
Tile Map Services (TMS)
Properties specific to Tile Map Service:
Property | Description |
---|---|
tile-size | Size of individual tiles delivered by this service, defaults to 256. |
min-zoom | The minimum zoom level |
max-zoom | The maximum zoom level. For higher scales, the images of the maximum level are enlarged. Default value is 20. |
mod-tile-features | Whether tiles status can be accessed by appending /status to the tile URL and can be submitted for re-rendering by appending /dirty . Since r13272.
|
For TMS you can specify tile URL template. Following patterns are supported:
- {zoom} is replaced by tile zoom level, also supported:
- offsets to the zoom level: {zoom+1} or {zoom-1}
- reversed zoom level: {19-zoom}
- Since revision 6951 also {z} and variants are supported for compatibility with other applications (however you should use {zoom} in this wiki)
- {x} is replaced by X-coordinate of the tile
- {y} is replaced by Y-coordinate of the tile
- {!y} is replaced by 2zoom-1 - 1 - Y (Yahoo style Y coordinate)
- {-y} is replaced by 2zoom - 1 - Y (OSGeo Tile Map Service Specification style Y coordinate)
- {switch:...} is replaced by a random selection from the given comma separated list, e.g. {switch:a,b,c} or {switch:1,2,3,4}. This allows several simultaneous HTTP connections by splitting the download to several subdomains which makes the tile download faster.
- {apikey} is replaced by the JOSM custom API Key for the given id, if defined on the JOSM web server
Web Map Services (WMS)
Properties specific to Web Map Service:
Property | Description |
---|---|
tile-size | Size of individual tiles requested, defaults to the "tile size" preference from Help/Preferences/Imagery#Settings (512). |
min-zoom | The minimum zoom level |
max-zoom | The maximum zoom level. For higher scales, the images of the maximum level are enlarged. Default value is 20. |
projections | A list of supported projections (inside <code> tags)
|
code | A projection name, part of its parent <projections> , e.g <code>EPSG:4326</code>
|
default-layers | default layer to open (when using WMS_ENDPOINT type). Contains list of layer tag with two attributes - name and style , (not allowed in <mirror> tag). E.g.: <default-layers> <layer name="Basisdata_NP_Basiskart_JanMayen_WMTS_25829" style="default" /> </default-layers>
|
format | format to use when connecting tile server (when using WMS_ENDPOINT type) |
transparent | accepts two values - true and false . If true transparent tiles will be requested from server
|
Projections can be tested within the JOSM wiki by adding &epsg=... to the view URL. Small numbers refer to the projection specified in the wiki entry and large numbers directly to the EPSG code. So &epsg=3 means the 3rd projection in the wiki entry list and &epsg=4326 means EPSG:4326. With the second variant you can also test projections which are not (yet) part of the wiki entry list.
For WMS you can specify tile URL template. Following patterns are supported:
- {proj} is replaced by projection.
- {bbox} is replaced by bounding box using projected coordinates
- {width} is requested display width
- {height} is requested display height
- {time} asks user to input a time filter such as
2020-01-10T00:00:00Z/2020-01-20T00:00:00Z
- {w},{s},{n},{e} are replaced by corresponding coordinates
- {wkid} is replaced by projection "well known id", i.e. {proj} with "EPSG:" string stripped of
- {apikey} is replaced by the JOSM custom API Key for the given id, if defined on the JOSM web server
To find out all the needed parameters of a WMS open the GetCapabilities URL. It usually looks like this http://...service=wms&request=getcapabilities
The wiki can help you to find projection codes. When adding or changing a WMS entry you may add EXTRACTEPSG
as only content of the line after the WMS URL. Then preview the changes. You will get a XML validation error, but the preview contains the standard projections supported by the server.
Web Map Tile Services (WMTS)
Properties specific to Web Map Tile Service:
Property | Description |
---|---|
projections | A list of supported projections (inside <code> tags)
|
code | A projection name, part of its parent <projections> , e.g <code>EPSG:4326</code> (see also projection hints in the WMS section above)
|
default-layers | default layer to open (when using WMS_ENDPOINT type). Contains list of layer tag with three attributes - name , style and tile-matrix-set , (not allowed in <mirror> tag). E.g.: <default-layers> <layer name="Basisdata_NP_Basiskart_JanMayen_WMTS_25829" style="default" tile-matrix-set="default028mm" /> </default-layers>
|
For WMTS you specify the URL to the GetCapabilities document. JOSM will fetch the document and interpret all the data there. If there is more than one layer within one service, JOSM will ask the user, which tile he wants to work with. Multiple styles are not yet supported.
For WMTS you can specify tile URL template. Following patterns are supported:
- {apikey} is replaced by the JOSM custom API Key for the given id, if defined on the JOSM web server
Mapbox Vector Tile Services (MVT)
Properties specific to Mapbox Vector Tile Services:
Property | Description |
---|---|
min-zoom | The minimum zoom level |
max-zoom | The maximum zoom level. For higher scales, the images of the maximum level are enlarged. Default value is 20. |
MVT services use the same template information as seen in #TileMapServicesTMS.
For MVT services, you may specific a url to a Mapbox Vector Style sheet. If a vector tile style sheet is specified, max-zoom
and min-zoom
properties do not need to be specified, as the vector tile style sheet should include that information for all the sources and layers in the vector tile style sheet.
At this time (2021-08-04) it is preferred that non-shared style sheets be stored in JOSM plugin SVN.
Other important information
- Please use the preferred order of properties for better readability:
name
,id
,oldid
(if present),category
, then everything else, and at the endicon
,bounds
. (The last two are usually the longest.) - JOSM uses this URL to fetch the imagery sources. The URL can be customized in the advanced preferences (key
imagery.layers.sites
). Using multiple sources at the same time is possible. - Normally JOSM ignores any elements that it does not recognize. However, it will skip the entire imagery entry, when one of the unsupported tags has the attribute
mandatory='true'
. This is only relevant, when essential new features are added, but old versions of JOSM are still in use. - The OSM editors iD, Potlatch 2 and Vespucci use the imagery list provided by the GitHub project Editor Layer Index. Differences between this list and the JOSM list are detected by ImageryCompare and synced manually. This page includes some sanity checks too. After you made changes or additions to imagery sources check this page for red marked errors/conflicts which must be resolved!
- Additional to the XML database there is also an geojson output which can be found here: pretty and default, and a Potlatch-format output which can be found here: pretty and default.
- License: Like the whole wiki (see page footer) the imagery database is licensed under Creative Commons (CC-BY-SA). Content since April 2014 is dual licensed with LGPL (except contents copied from ELI, which is only CC-BY-SA).
List of sources
- Maps
- Maps/Albania
- imagico.de: Prokletije Mountains {view}
- Municipality of Tirana (Open Labs GeoPortal) {view}
- Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay) {view}
- Image of Base Maps, Topographic Map - Durrës and Tirana
- ORTHOPHOTO 2018 8CM Durrës and Tirana
- Ortofoto 2015 (20cm) of Albania
- Statistical units, Census Local Government Units (INSTAT) {view}
- Adress System Albania (ASIG) {view}
- Maps/Antarctica
- imagico.de: Antarctic Peninsula {view}
- imagico.de: Belgica Mountains evening {view}
- imagico.de: Bunger Hills {view}
- imagico.de: Cape Adare {view}
- imagico.de: Elephant Island/Clarence Island {view}
- imagico.de: Enderby Land and Kemp Coast {view}
- imagico.de: Far southern Transantarctic Mnts. east {view}
- imagico.de: Far southern Transantarctic Mnts. west {view}
- imagico.de: Lambert Glacier east {view}
- imagico.de: Lambert Glacier west {view}
- imagico.de: Larsen C ice shelf after calving {view}
- imagico.de: Lützow-Holm Bay {view}
- imagico.de: McMurdo Sound and Dry Valleys {view}
- imagico.de: Ohio Range {view}
- imagico.de: Patuxent Range {view}
- imagico.de: Pensacola Mountains {view}
- imagico.de: Southern Transantarctic Mountains {view}
- imagico.de: Sturge Island/Buckle Island March 2019 {view}
- imagico.de: USGS 50k Topos McMurdo Dry Valleys {view}
- imagico.de: USGS 250k Topos Antarctica {view}
- imagico.de: USGS 500k Antarctica maps {view}
- imagico.de: Victoria Land east {view}
- imagico.de: Victoria Land west {view}
- imagico.de: Yamato/Queen Fabiola Mountains {view}
- imagico.de: Young Island/Buckle Island January 2020 {view}
- imagico.de: Young Island March 2020 {view}
- Maps/Argentina
- National Geographic Institute Argenmap (TMS) {view}
- National Geographic Institute Argenmap (WMTS)
- National Geographic Institute Argenmap gray {view}
- National Geographic Institute (WMS)
- National Geographic Institute Atlas Argentina 500k (TMS) {view}
- National Geographic Institute Atlas Tucumán 100k (TMS) {view}
- National Geographic Institute Mosaic 100k (TMS) {view}
- National Geographic Institute Mosaic 250k (TMS) {view}
- National Geographic Institute Mosaic 500k (TMS) {view}
- National Geographic Institute Mosaic 50k (TMS) {view}
- National Geographic Institute Orthophotos (WMS)
- National Geographic Institute Orthophotos Mosaic {view}
- National Geographic Institute UAV Orthophotos (WMS)
- National Geographic Institute UAV photos mosaic {view}
- San Juan SDI (WMTS)
- Santa Cruz SDI (WMTS)
- CABA ortofotos 2017 (TMS) {view}
- CABA ortofotos 2021 (TMS) {view}
- National Parks Administration (WMS)
- geoARBA - Buenos Aires Province Tax Agency (WMS)
- National Glacier Inventory (WMTS)
- Educational map (WMS)
- Ministry of Agroindustry (WMS)
- Ministry of Energy and Mining (WMS)
- imagico.de: Bahía Blanca (low tide) {view}
- imagico.de: Bahía Blanca (high tide) {view}
- Maps/Australia
- AGRI black-and-white 2.5m {view} {mirror}
- Launceston OrthoPhoto 2008 {view}
- Launceston OrthoPhoto 2011 {view}
- Launceston OrthoPhoto 2013 {view}
- DCS NSW Base Map {view}
- DCS NSW Topographic Map {view}
- DCS NSW Imagery {view}
- DCS NSW Administrative Boundaries Suburb {view}
- DCS NSW Administrative Boundaries LGA {view}
- DCS NSW Administrative Boundaries County {view}
- DCS NSW Administrative Boundaries Parish {view}
- DCS NSW Administrative Boundaries State Forest {view}
- DCS NSW Administrative Boundaries NPWS Reserve {view}
- DCS NSW Floods 2021 {view}
- ACTmapi Imagery 2023-05
- ACTmapi Imagery 2023-09
- ACTmapi Imagery 2023-11
- ACTmapi Imagery 2024-02 {mirror}
- City of Melbourne May 2018 {view}
- City of Melbourne Feb 2019 {view}
- Main Roads WA Road Hierarchy {view}
- imagico.de: Northwest Heard Island {view}
- imagico.de: Heard Island coast {view}
- Vicmap Transport - Road Network {view}
- Vicmap Lite - Public Land (Parks and Reserves) {view}
- Vicmap Vegetation - Tree Density 1:25,000 {view}
- Vicmap Vegetation - Tree Density - Dense {view}
- Vicmap Hydro - Watercourse Network 1:25,000 {view}
- Maxar 2019-2020 Australian Bushfires Pre-event {view}
- ARA Bushfires 2020 {view}
- Maps/Austria
- imagico.de: Eastern Alps autumn colors 2019 {view}
- basemap.at {view}
- basemap.at Grey/Contour lines {view}
- basemap.at Orthofoto {view}
- basemap.at Overlay {view}
- basemap.at Terrain {view}
- basemap.at Surface {view}
- Geoimage.at MaxRes {view}
- Steiermark Orthophoto {view}
- Steiermark Terrain {view}
- Steiermark Surface {view}
- Tiris: DGM (Terrain model) {view}
- Tiris: DOM (Surface model) {view}
- Tiris: contour lines {view}
- Tiris: orthophoto {view}
- Tiris: orthophoto infrared {view}
- Vienna: General purpose {view}
- Vienna: Annotations {view}
- Vienna: Aerial image {view}
- VoGIS: Real color image 2018 (10cm) {view}
- VoGIS: Real color image 2020 (10cm) {view}
- VoGIS: Aerial image
- VoGIS: Zoning plan
- VoGIS: Heights and Terrain
- Maps/Belgium
- OpenStreetMap (Belgian Style) {view}
- OpenStreetMap (Belgian Style - French) {view}
- OpenStreetMap (Belgian Style - Dutch) {view}
- Digitaal Vlaanderen preliminary aerial imagery {view} {mirror}
- Digitaal Vlaanderen most recent aerial imagery {view} {mirror}
- Digitaal Vlaanderen 2023 aerial imagery {view}
- Digitaal Vlaanderen 2022 aerial imagery {view}
- Digitaal Vlaanderen 2021 aerial imagery {view}
- Digitaal Vlaanderen 2020 aerial imagery {view}
- Digitaal Vlaanderen 2019 aerial imagery {view}
- Digitaal Vlaanderen 2018 aerial imagery {view}
- Digitaal Vlaanderen 2017 aerial imagery {view}
- Digitaal Vlaanderen 2016 aerial imagery {view}
- Digitaal Vlaanderen 2013-2015 aerial imagery 10cm {view}
- Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m {view}
- Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m {view}
- Digitaal Vlaanderen GRB {view}
- URBIS numerical imagery {view}
- URBISfr numerical imagery {view}
- URBISnl numerical imagery {view}
- URBIS most recent aerial imagery {view}
- URBIS 2023 aerial imagery {view}
- URBIS 2022 aerial imagery (north-south) {view}
- URBIS 2022 aerial imagery (east-west) {view}
- URBIS 2021 aerial imagery (north-south) {view}
- URBIS 2021 aerial imagery (east-west) {view}
- URBIS 2020 aerial imagery {view}
- URBIS 2019 aerial imagery {view}
- URBIS 2018 aerial imagery {view}
- URBIS 2017 aerial imagery {view}
- URBIS 2016 aerial imagery {view}
- URBIS 2015 aerial imagery {view}
- URBIS 2014 aerial imagery {view}
- URBIS 2012 aerial imagery {view}
- URBIS 2009 aerial imagery {view}
- URBIS 2004 aerial imagery {view}
- SPW(allonie) PICC numerical imagery {view}
- SPW(allonie) most recent aerial imagery {view}
- SPW(allonie) 2023 aerial imagery {view}
- SPW(allonie) 2022 aerial imagery {view}
- SPW(allonie) 2021 aerial imagery {view}
- SPW(allonie) 2020 aerial imagery {view}
- SPW(allonie) 2019 aerial imagery {view}
- SPW(allonie) 2018 aerial imagery {view}
- SPW(allonie) 2016 aerial imagery {view}
- SPW(allonie) 2015 aerial imagery {view}
- SPW(allonie) 2012-2013 aerial imagery {view}
- SPW(allonie) 2009-2010 aerial imagery {view}
- SPW(allonie) shaded relief {view}
- SPW(allonie) Réseau Hydrologique Wallon {view}
- Relief Wallonie - MNS 2021-2022 - 50cm {view}
- TEC bus lines {view}
- TEC bus stops {view}
- Maps/Benin
- Maps/Bouvet Island
- Maps/Brazil
- IBGE Map of urban areas {view}
- IBGE Map of rural areas {view}
- IBGE Street Names {view}
- Brazilian Army Topographic Maps {view}
- DER-ES {view}
- IBGE BC250 - Isolated Rural Locations {view}
- IBGE BC250 - Rivers and Drainage {view}
- IBGE BC250 - Highways Stretches {view}
- IBGE BC250 - Indigenous Lands {view}
- IBGE BC250 - Sustainable Use Units {view}
- IBGE BC250 - Villages {view}
- IBGE BC250 - Electrical Power Plant Generator {view}
- IBGE BC250 - Municipalities {view}
- IBGE Federal District addresses {view} {mirror}
- Belo Horizonte Orthophoto 2015 {view}
- Dourados Orthophotos {view}
- Dourados Street Names {view}
- Fortaleza Orthophoto 2010 {view}
- Fortaleza Orthophoto 2016 {view}
- Fortaleza Street Names {view}
- GeoPortal DF 2015 {view}
- GeoPortal DF 2016 {view}
- GeoPortal DF 2019 {view}
- GeoPortal DF 2021 {view}
- Jaraguá do Sul Orthomosaic 2020 {view}
- Rio Mosaic 2019 {view}
- Rio Mosaic 2022 {view}
- BA. Paulo Afonso. 2022 Urban Map with suburbs {view}
- RS. Agudo. 2014 master plan {view}
- RS. Candelâria. Maxar 2023-02-01 {view}
- RS. Candelâria. Maxar 2024-05-15 {view}
- RS. Ibirubá. 2019 master plan. Urban zoning {view}
- RS. Jacarezinho, Encantado, Roca Sales, Palma. Maxar 2023-03-02 {view}
- RS. Porto Alegre. Maxar 2024-02-02 {view}
- RS. Quaraí. 2006 master plan. Neighborhoods and Villages {view}
- RS. Relvado, Nova Bréscia, Travesseiro, Conventos. Maxar 2023-06-23 {view}
- Sobral Orthophoto 2017 {view}
- Curitiba Orthophoto 2019 {view}
- Maps/Bulgaria
- Maps/Canada
- Geobase Hydrography - English {view}
- Geobase Hydrography - French {view}
- Geobase Roads - English {view}
- Geobase Roads - French {view}
- Canvec - English {view}
- Canvec - French {view}
- imagico.de: Eastern Devon Island coast {view}
- imagico.de: Northern Ellesmere Island {view}
- imagico.de: Northern Ellesmere Island July 2016 {view}
- Toronto Orthorectified Imagery - Most current year {view}
- Maps/Cape Verde
- Maps/Chile
- Maps/Colombia
- Maps/Croatia
- osm-hr: Knin 2007 Aerial imagery {view}
- osm-hr: Orbview {view}
- osm-hr: US Topo 50 {view}
- osm-hr: Zagreb 2012 Aerial imagery {view}
- osm-hr: Zagreb 2018 Aerial imagery {view}
- dgu.hr: Croatia 2011 Aerial imagery {view}
- dgu.hr: Croatia 2014-2016 Aerial imagery {view}
- dgu.hr: Croatia 2017-2018 aerial imagery {view}
- dgu.hr: Croatia 2019-2020 aerial imagery {view}
- dgu.hr: HOK {view}
- dgu.hr: Topo 100 {view}
- dgu.hr: Topo 200 {view}
- dgu.hr: Topo 25 new {view}
- dgu.hr: Topo 25 {view}
- Maps/Cyprus
- Maps/Czech Republic
- Czechia CUZK orthophoto {view}
- Czechia CUZK terrain DMR 5G greyscale {view}
- Czech CUZK:KM {view} {mirror}
- Czech RUIAN budovy {view}
- Czech RUIAN parcely {view}
- Czech pLPIS {view}
- Praha IPR latest orthophoto {view} {mirror}
- Praha IPR low-vegetation orthophoto {view} {mirror}
- Praha-surroundings IPR orthophoto 2019 {view}
- Maps/Denmark
- Maps/Ecuador
- Maps/Estonia
- Maps/Finland
- MML Topographic Map {view}
- MML Background Map {view}
- MML Orthophoto {view}
- Helsinki region orthophoto {view}
- FTIA Road Network (overlay) {view}
- FTIA Road Network (Digiroad) options (overlay)
- Turku 2022 True ortho {view}
- Turku region aerial imagery 2018 {view}
- Turku orthophoto 2021 {view}
- Kaarina, Paimio, and Lieto orthophoto {view}
- Turku zoning plan {view}
- Turku topographic map {view}
- Turku map service
- Nordic snowmobile overlay {view}
- Turku region aerial imagery 2023 {view}
- Maps/France
- Estompage RGE Alti Metropolitain (relief) {view}
- BANO {view}
- BAN
- BD Carthage {view}
- BD Parcellaire Image Histo {view}
- BD Topo {view}
- Volta {view}
- BDOrtho IGN {view}
- ORTHO Express IGN 2024 {view}
- ORTHO Express IGN 2023 {view}
- PCRS raster ouvert {view}
- Cadastre {view}
- Géolittoral - Orthophotos 2000 {view}
- Géolittoral V2 - Orthophotos 2011-2014 {view}
- Géolittoral - Sentier du littoral {view}
- OpenStreetMap (Basque Style) {view}
- OpenStreetMap (Breton Style) {view}
- OpenStreetMap (Occitan Style) {view}
- Ortho HR IGN {view}
- Ortho HR IGN 2023 {view}
- Ortho HR IGN 2022 {view}
- Ortho HR IGN 2021 {view}
- Ortho HR IGN 2020 {view}
- Ortho HR IGN 2019 {view}
- Ortho HR IGN 2018 {view}
- Ortho HR IGN 2018 Antilles {view}
- Ortho HR IGN 2017 Antilles {view}
- Ortho HR IGN 2017 {view}
- Ortho HR IGN 2016 {view}
- Ortho HR IGN 2015 {view}
- Ortho HR IGN 2014 {view}
- Ortho HR IGN 2013 {view}
- Route 500 {view}
- Grand Angoulême 2019 {view}
- Alpes-de-Haute-Provence 2010 {view}
- Alpes-Maritimes 2009 {view}
- Alpes-Maritimes 2020 (Storm Alex) {view}
- Anglet 2022 {view}
- CRAIG - 2019 {view}
- Auvergne 2016 25cm CRAIG {view} {mirror}
- Auvergne 2013 25cm CRAIG {view} {mirror}
- Bassin d Arcachon 2018 {view}
- Bayonne - 2016 {view}
- Bayonne - Petit et Grand Bayonne 2019 {view}
- Bordeaux - 2020 {view}
- Bordeaux - 2016 {view}
- Bordeaux - 2012 {view}
- Bouches-du-Rhône 2009 {view}
- Brest - 2004 {view}
- Enedis {view}
- Grand Est {view}
- CA Haguenau 2019 {view}
- Hautes-Alpes 2010 {view}
- Loire-Atlantique - Orthophotos 2016 - 10 cm {view}
- Métropole Européenne de Lille 2020 {view}
- Lyon Orthophoto 2022 {view}
- Lyon Orthophoto 2018 {view}
- Lyon Orthophoto 2015/2018 {view}
- Lyon Orthophoto 2015 {view}
- Métropole de Metz 2024 {view}
- Métropole de Metz 2022 {view}
- Métropole de Metz 2019 {view}
- Grand Montauban 2020 {view}
- Mulhouse - 2018 {view}
- Nancy - Orthophoto - 2023 {view}
- Nancy - Orthophoto - 2022 {view}
- Nancy - Orthophoto {view}
- Nancy - Orthophoto - 2016 {view}
- Nancy - Orthophoto - 2012 {view}
- Nancy - Orthophoto - 2008 {view}
- Nancy - Orthophoto - 2005 {view}
- Nancy - Orthophoto - 2002 {view}
- Nancy - Orthophoto - 2001 {view}
- Nancy - Orthophoto - 1999 {view}
- Nancy - Orthophoto - 1994 {view}
- Rennes - 2021
- Rennes - 2020 {view}
- Rennes - 2018 {view}
- Rennes - 2014 {view}
- Toulouse - Orthophotoplan 2022 {view}
- Toulouse - Orthophotoplan 2019 {view}
- Toulouse - Orthophotoplan 2017 {view}
- Toulouse - Orthophotoplan 2015 {view}
- Toulouse - Orthophotoplan 2013 {view}
- Toulouse - Orthophotoplan 2011 {view}
- Toulouse - Orthophotoplan 2007 {view}
- Tours Métropole 2023 {view}
- Tours - Orthophotos 2013 {view}
- Tours - Orthophotos 2008-2010 {view}
- Vaucluse 2010 {view}
- Vercors (Réserve naturelle des Hauts-Plateaux du Vercors) - Orthophoto - 1999 - 1 m {view}
- Vichy 2021 CRAIG {view}
- Maps/Germany
- Hamburg DOP 20cm (HH LGV DOP20 2022) {view}
- Hamburg DK5 (HH LGV DK5 2022) {view}
- Berlin/Geoportal DOP20RGB (2011) {view}
- Berlin/Geoportal DOP20RGB (2014) {view} {mirror}
- Berlin/Geoportal DOP20RGB (2015) {view} {mirror}
- Berlin/Geoportal DOP20RGB (2016) {view} {mirror}
- Berlin/Geoportal DOP20CIR (2016 infrared) {view}
- Berlin/Geoportal DOP20RGB (2017) {view} {mirror}
- Berlin/Geoportal DOP20RGB (2018) {view}
- Berlin/Geoportal DOP20RGB (2019) {view}
- Berlin/Geoportal TrueDOP20RGB (2020) {view}
- Berlin/Geoportal DOP20RGBI (2021) {view}
- Berlin/Geoportal TrueDOP20RGBI (2022) {view} {mirror}
- Berlin/Geoportal TrueDOP20RGBI (2023) {view} {mirror}
- Brandenburg GeoBasis-DE/LGB (2024): DOP20c {view}
- Brandenburg GeoBasis-DE/LGB (2024): DGM 1m {view}
- Brandenburg GeoBasis-DE/LGB (2024): WebAtlasDE BE/BB {view}
- Brandenburg GeoBasis-DE/LGB (2024): Georeferenzierte Adresse
- Deutsche Bahn VzG lines January 2017 {view}
- Erlangen aerial imagery (2022 20 cm) {view}
- Erlangen aerial imagery (2020 5,0 cm) {view}
- Erlangen aerial imagery (2018 5.0 cm) {view}
- Erlangen aerial imagery (2016 5.0 cm) {view}
- Metropole Ruhr aerial imagery {view}
- Metropole Ruhr aerial imagery partial coverage 2023 {view}
- Metropole Ruhr historical aerial imagery 2021 {view}
- Metropole Ruhr historical aerial imagery 2020 {view}
- Metropole Ruhr historical aerial imagery 2019 {view}
- Metropole Ruhr historical aerial imagery 2017 {view}
- Metropole Ruhr historical aerial imagery 2015 {view}
- Metropole Ruhr historical aerial imagery 2013 {view}
- Metropole Ruhr historical aerial imagery 2011 {view}
- Metropole Ruhr historical aerial imagery 2009 {view}
- Metropole Ruhr historical aerial imagery 2006 {view}
- North Rhine-Westphalia aerial photograph {mirror}
- North Rhine-Westphalia ALKIS {view}
- North Rhine-Westphalia DTM hillshade {view}
- North Rhine-Westphalia iDOP color {view}
- North Rhine-Westphalia iDOP color-infrared {view}
- North Rhine-Westphalia iDOP near-infrared {view}
- North Rhine-Westphalia iDOP metadata {view}
- North Rhine-Westphalia vDOP color {view}
- North Rhine-Westphalia vDOP color-infrared {view}
- North Rhine-Westphalia vDOP near-infrared {view}
- North Rhine-Westphalia vDOP metadata {view}
- imagico.de: Northern German west coast tidalflats {view}
- imagico.de: Northern German west coast tidalflats (infrared) {view}
- imagico.de: North Sea Coast 2016 {view}
- imagico.de: North Sea Coast 2017 {view}
- imagico.de: North Sea Coast spring 2018 {view}
- Saxony latest aerial imagery {view}
- Saxony unprocessed aerial imagery
- Saxony latest aerial imagery infrared {view}
- Saxony historical aerial imagery 2021-2022 {view}
- Saxony historical aerial imagery 2018-2020 {view}
- Saxony historical aerial imagery 2015-2017 {view}
- Saxony historical aerial imagery 2012-2014 {view}
- Saxony historical aerial imagery 2005 {view}
- Saxony WebAtlasSN {view}
- Saxony topographic map {view}
- Saxony digital terrain model
- Saxony parcels and districts
- Saxony-Anhalt, LVermGeo, DOP20 {view}
- Saxony-Anhalt, LVermGeo, administrative boundaries {view}
- Saxony-Anhalt, LVermGeo, building shapes {view}
- Mainz all aerial imageries
- Mainz latest aerial imagery {view} {mirror}
- Munich latest aerial imagery 60cm (2017) {view}
- Aktuelle Luftbilder der Landeshauptstadt München 20cm {view}
- Stuttgart latest aerial imagery {view}
- Hesse DOP20 {view}
- Hesse ALKIS {view}
- Hesse DTK {view}
- Hesse WebAtlas {view}
- Worms 2003 {view}
- Worms 2008 {view}
- Worms 2012 {view}
- Worms 2016 {view}
- Worms 2020 {view}
- StädteRegion Aachen ALKIS {view}
- Ludwigshafen 2022 {view}
- Ludwigshafen 2019 {view}
- Thüringen DOP20 {view}
- Saarland DOP20 {view}
- Maps/Greenland
- imagico.de: Qasigiannguit {view}
- imagico.de: Thule Air Base {view}
- imagico.de: Kangerlussuaq Autumn {view}
- imagico.de: Kangerlussuaq Spring {view}
- imagico.de: Thule Airbase DMS low altitude overflight September 2015 {view}
- imagico.de: Thule Airbase DMS overflight September 2015 {view}
- imagico.de: Thule Airbase DMS overflight October 2015 {view}
- imagico.de: Greenland mosaic {view}
- imagico.de: May 2013 off-nadir Landsat {view}
- imagico.de: Landsat off-nadir July 2016 {view}
- imagico.de: Landsat off-nadir early July 2020 {view}
- imagico.de: Landsat off-nadir late July 2020 {view}
- imagico.de: Northern Greenland ASTER {view}
- Maps/Haiti
- Maps/Hungary
- FÖMI orthophoto 2000 {view}
- FÖMI orthophoto 2005 {view}
- FÖMI orthophoto 2007-2010 {view}
- FÖMI orthophoto 2011-2014 (webp) {view}
- FÖMI orthophoto 2011-2014 (JPEG) {view}
- Szeged orthophoto 2011 {view}
- Törökbálint orthophoto 2013 {view}
- Törökbálint orthophoto 2015 {view}
- Törökbálint orthophoto 2018 {view}
- Törökbálint orthophoto 2021 {view}
- Danube flood orthophoto 2013 {view}
- Budapest district XI orthophoto 2015 {view}
- Budapest district XI orthophoto 2017 {view}
- Budapest district XI orthophoto 2019 {view}
- Budapest district XI orthophoto 2021 {view}
- Budapest district XI orthophoto 2023 {view}
- Sóskút, Pusztazámor, Tárnok, Diósd orthophoto 2017 {view}
- Sátoraljaújhely orthophoto 2020 {view}
- openstreetmap.hu orthophotos {view}
- OpenStreetMap Hungary (hiking routes) {view}
- Hillshade Hungary {view}
- EUFAR Balaton orthophotos {view}
- R67 road orthophoto {view}
- Maps/Iceland
- Maps/India
- Maps/Indonesia
- Maps/Ireland
- Ireland British War Office 1:25k GSGS 3906 {view}
- Ireland British War Office One-Inch 1941-43 GSGS 4136 {view}
- Ireland Bartholomew Quarter-Inch 1940 {view}
- OS 1st Ed. 6-inch. Antrim, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Antrim, Ireland (1880-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Armagh, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Armagh, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Carlow, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Carlow, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Cavan, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Cavan, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Clare, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Clare, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Cork, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Cork, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Donegal, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Donegal, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Down, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Down, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Dublin, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Dublin, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Fermanagh, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Fermanagh, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Galway, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Galway, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Kerry, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Kerry, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Kildare, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Kildare, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Kilkenny, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Kilkenny, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Offaly (née Kings County), Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Offaly (née Kings County), Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Leitrim, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Leitrim, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Limerick, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Limerick, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Derry/Londonderry, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Derry/Londonderry, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Longford, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Longford, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Louth, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Louth, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Mayo, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Mayo, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Meath, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Meath, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Monaghan, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Monaghan, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Laois (née Queen’s County), Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Laois (née Queen’s County), Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Roscommon, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Roscommon, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Sligo, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Sligo, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Tipperary, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Tipperary, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Tyrone, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Tyrone, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Waterford, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Waterford, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Westmeath, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Westmeath, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Wexford, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Wexford, Ireland (1888-1915) (NLS) {view}
- OS 1st Ed. 6-inch. Wicklow, Ireland (1840s-1880s) (NLS) {view}
- OS 2nd Ed. 6-inch. Wicklow, Ireland (1888-1915) (NLS) {view}
- Ireland Civil Parishes and Baronies - Memorial Atlas {view}
- OSMIE Townlands {view}
- OSMIE EDs {view}
- OSMIE Civil Parishes {view}
- OSMIE Baronies {view}
- OSMIE Local Election Areas {view}
- OSMIE Dail Election Areas {view}
- Maps/Israel
- Maps/Italy
- Lombardia - Italy (CTR) {view}
- Lombardia - Italy (CTR DBT)
- Sicily - Italy {view}
- PCN 2006 - Italy {view}
- PCN 2008 - IT Lazio+Umbria {view}
- PCN 2012 - Italy {view}
- South Tyrol Orthofoto 2011 (larger valleys) {view}
- South Tyrol Orthofoto 2014 {view}
- South Tyrol Orthofoto 2015 {view}
- South Tyrol Orthofoto 2017 {view}
- South Tyrol Orthofoto 2020 {view}
- South Tyrol Orthofoto 2023 {view}
- South Tyrol Basemap {view}
- South Tyrol DEM Hillshade 2013 (0.5 m, partial) {view}
- South Tyrol DEM Hillshade 2013 (2.5 m, full) {view}
- South Tyrol DTM Hillshade 2013 (0.5 m, partial) {view}
- South Tyrol DTM Hillshade 2013 (2.5 m, full) {view}
- South Tyrol Elevation Contour Lines {view}
- Bologna ortofoto 2017 {view}
- Maps/Japan
- Maps/Kazakhstan
- Maps/Kenya
- Maps/Kosovo
- Maps/Latvia
- Latvia - Soviet Army General Staff topographic maps {view}
- Latvia - LVM GEO orthophoto {view}
- Latvia - Orthophoto 1st cycle (1994-1999) {view}
- Latvia - Orthophoto 1st cycle B&W (1994-1999), 1:30000 {view}
- Latvia - Orthophoto 2nd cycle (2003-2005) {view}
- Latvia - Orthophoto (2010-2011), 1:5000 {view}
- Latvia - Orthophoto (2013-2015), 1:5000 {view}
- Latvia - Orthophoto (2016–2018), 1:5000 {view}
- Latvia - LVM GEO digital terrain model {view}
- Latvia - LĢIA digital terrain model (2013–2019) {view}
- Maps/Lithuania
- Maps/Luxembourg
- geoportail.lu all layers
- geoportail.lu ortho latest {view}
- geoportail.lu ortho technique 2019 (10cm) {view}
- openstreetmap.lu "mapper’s delight" hillshade lidar 2019 with unclassified points {view}
- openstreetmap.lu "mapper’s delight" hillshade lidar 2019 {view}
- ANA Luxembourg DTM 2017 Multidirectional {view}
- Stadtbredimus Remembrement 2015 (5cm) {view}
- Wintrange Remembrement 2015 (5cm) {view}
- Maps/Mexico
- Maps/Moldova
- Maps/Netherlands
- Maps/New Zealand
- Maps/Norway
- Norway Orthophoto {view}
- Norway Orthophoto (more recent, less zoom) {view}
- Norway Orthophoto (historic)
- Kartverket Sentinel 2 (options)
- Kartverket topo {view}
- Kartverket Hillshade overlay {view}
- Kartverket Contour Lines overlay {view}
- Kartverket Nautical Charts {view}
- Kartverket Norway Marine Boundaries options (overlay)
- Kartverket Marine Infrastructure options (overlay)
- Kartverket Road Network overlay {view}
- Kartverket Trails overlay
- Kartverket Place Names overlay
- Kartverket DTM Digital Terrain Model {view}
- Kartverket DOM Digital Surface Model {view}
- Kartverket Historic maps {view}
- Kartverket Economic Maps (historic) {view}
- Kartverket Administrative Boundaries overlay {view}
- Kartverket Historic Administrative Boundaries options (overlay)
- Kartverket Cadastral overlay {view}
- Kartverket Address overlay {view}
- Kartverket Aviation Obstructions overlay {view}
- Kartverket Accessibility overlay
- Kartverket Buildings overlay {view}
- Kartverket Zoning Plans overlay
- NVE Electricity Network overlay {view}
- NVE Hydropower Plants overlay {view}
- NVE Wind Power Plants overlay {view}
- NVE Avalanche Danger Areas overlay {view}
- NOD Offshore Installations overlay {view}
- Fiskeridirektoratet Aquaculture overlay {view}
- Kystverket Navigational Aid overlay {view}
- Miljødirektoratet Protected Areas overlay {view}
- Miljødirektoratet Public Recreation Areas overlay {view}
- Miljødirektoratet Urban and Vacation Areas overlay {view}
- Miljødirektoratet Snowmobile overlay {view}
- Miljødirektoratet Fjords overlay {view}
- Riksantikvaren Heritage Sites overlay {view}
- DMF Mines overlay {view}
- SSB Urban Areas overlay {view}
- SSB City Centres overlay {view}
- Oslo Urban Environment options (layer)
- MTBmap.no {view}
- NPI Svalbard Orthophoto
- NPI Svalbard topo
- NPI Svalbard detailed topo
- NPI Svalbard satellite
- imagico.de: Svalbard mosaic {view}
- NPI Jan Mayen topo
- Maps/Pakistan
- Maps/Palestine
- Maps/Panama
- Maps/Papua New Guinea
- Maps/Peru
- Maps/Philippines
- Maps/Poland
- Geoportal 2: Orthophotomap (aerial image) WMTS
- Geoportal 2: Orthophotomap (aerial image) WMS {view} {mirror}
- Geoportal 2: High Resolution Orthophotomap (aerial image) {view}
- Geoportal 2: High Resolution Orthophotomap (aerial image) WMTS
- Geoportal 2: Time Orthophotomap (aerial image) WMS {view}
- Geoportal 2: True Orthophotomap (aerial image) WMS {view}
- Geoportal 2: Ewidencja budynków WMS {view}
- Geoportal 2: Granice działek {view}
- Geoportal 2: Punkty adresowe {view}
- Geoportal 2: Nazwy ulic {view}
- Geoportal 2: PRNG (geo names) {view}
- Geoportal 2: ISOK hillshade
- Forest database BDoL (overlay) {view}
- Będzin: Orthophotomap 2013 (aerial image) {view}
- Będzin: Buildings {view}
- Będzin: Addresses {view}
- Bytom: Orthophotomap 2012 (aerial image) {view}
- Bytom: Fotoplan 2014 (aerial image) {view}
- Bytom: Orthophotomap 2016 (aerial image) {view}
- Bytom: Buildings {view}
- Częstochowa: Buildings {view}
- Częstochowa: Orthophotomap 2011 (aerial image) {view}
- Częstochowa: Orthophotomap 2013 (aerial image) {view}
- Częstochowa: Orthophotomap 2014 (aerial image) {view}
- Częstochowa: Orthophotomap 2015 (aerial image) {view}
- Częstochowa: Orthophotomap 2016 (aerial image) {view}
- Częstochowa: Orthophotomap 2017 (aerial image) {view}
- Częstochowa: Orthophotomap 2021 (aerial image) {view}
- Gliwice: Orthophotomap 2013 (aerial image) {view}
- Gliwice: Orthophotomap 2017 (aerial image) {view}
- Gliwice: Orthophotomap 2018 (aerial image) {view}
- Gliwice: Orthophotomap 2020 (aerial image) {view}
- Gliwice: Buildings {view}
- Łódź: Buildings {view}
- Łódź: Orthophotomap 2019 (aerial image) {view}
- Powiat dębicki: Buildings {view}
- Powiat łańcucki: Buildings {view}
- Powiat ropczycko-sędziszowski: Buildings {view}
- Powiat rzeszowski: Buildings {view}
- Powiat rzeszowski: Orthophotomap (aerial image) {view}
- Powiat stalowowolski: Buildings {view}
- Poznań: Orthophotomap 2014 (aerial image) {view}
- Poznań: Orthophotomap 2016 (aerial image) {view}
- Poznań: Latest Orthophotomap (aerial image) {view}
- Poznań: Latest Orthophotomap (aerial image) WMTS
- Przemyśl: Buildings {view}
- Przemyśl: Ortophotomap (aerial image) {view}
- Ruda Śląska: Orthophotomap (aerial image) {view}
- Siemianowice Śląskie: Orthophotomap (aerial image) {view}
- Siemianowice Śląskie: Buildings {view}
- Zabrze: Orthophotomap 2011 (aerial image) {view}
- Warszawa: Orthophotomap 2021 (aerial image) {view}
- Wrocław: Orthophotomap 2015 (aerial image) {view}
- Wrocław: Orthophotomap 2018 (aerial image) {view}
- Maps/Portugal
- Orthophotos of the northern portion of mainland Portugal - 25cm - 2021 (DGT) {view}
- Orthophotos of the northern portion of mainland Portugal IRG - 25cm - 2021 (DGT) {view}
- Orthophotos of mainland Portugal - 25cm - 2018 (DGT)
- OrtoSat of mainland Portugal - 30 cm - 2023 (DGT) {view}
- Orthophotos of the coastal areas of mainland Portugal - 10cm - 2014-2015 (DGT) {view}
- Orthophotos of mainland Portugal - 50 cm - 2004-2006 (DGT) {view}
- Orthophotos of mainland Portugal - 1m - 1995 - Fake Color (DGT) {view}
- Elevation hillshade of the coastal areas of mainland Portugal - 2m - 2014-2015 (DGT) {view}
- Official Administrative Charter of Portugal - CAOP 2022 (Mainland - Boundaries)
- Land Use and Soil Occupation Charter of mainland Portugal - 2018 (DGT) {view}
- Land Use and Soil Occupation Charter of mainland Portugal - 2015 (DGT) {view}
- Land Use and Soil Occupation Charter of mainland Portugal - 2010 (DGT) {view}
- Portugal Topographic Map (valentim.org) {view}
- Institute for Nature Conservation and Forests - GIS
- Maps/Russia
- ScanEx IRS
- imagico.de: Kerch Strait {view}
- imagico.de: Kerch Strait 2018 {view}
- imagico.de: Pechora Sea Coast {view}
- imagico.de: Ushakov Island August 2016 {view}
- imagico.de: Ushakov Island August 2020 {view}
- imagico.de: Northern Dvina delta at low tide {view}
- imagico.de: Northern and Polar Ural mountains August 2016 {view}
- imagico.de: Vostochny Cosmodrome {view}
- imagico.de: Vostochny Cosmodrome 2020 {view}
- Maps/Singapore
- Maps/Slovakia
- Freemap.sk Car {view}
- Freemap.sk Hiking {view}
- Freemap.sk Bicycle {view}
- Freemap.sk Ski {view}
- Slovakia Historic Maps {view}
- Ortofotomozaika SR 2020-2022 {view}
- Ortofotomozaika SR 2017-2019 {view}
- ZBGIS
- Kataster
- DTM 5.0 gray terrain shading {view}
- DTM 5.0 light terrain shading {view}
- DSM 1.0 gray surface shading {view}
- Maps/Slovenia
- RABA-KGZ: Slovenia farmland use {view}
- RABA-KGZ: Slovenia built-up areas {view}
- GURS: Building outlines {view}
- GURS: Road lines {view}
- GURS: DOF050 Orthophoto, DTK5... (WMTS)
- GURS: Slovenia orthophoto 25cm (DOF025) {view}
- ARSO: LIDAR hillshade (WMTS)
- MK: LIDAR hillshade+buildings (WMTS)
- Ljubljana: Orthophoto 2023 (WMTS)
- Ljubljana: Orthophoto 2022 (WMTS)
- Ljubljana: Orthophoto 2020 (WMTS)
- Ljubljana: Orthophoto 2019 (WMTS)
- Ljubljana: Zazidalna situacija (WMTS)
- Maps/South Africa
- City of Cape Town 2013 Aerial {view}
- City of Cape Town 2015 Aerial {view}
- City of Cape Town 2017 Aerial {view}
- City of Cape Town 2018 Aerial {view}
- City of Cape Town 2019 Aerial {view}
- City of Cape Town 2020 Aerial {view}
- City of Cape Town 2021 Aerial {view}
- City of Cape Town 2022 Aerial {view}
- City of Cape Town 2023 Aerial {view}
- South Africa CD:NGI Aerial {view}
- Maps/South Georgia and the South Sandwich Islands
- Maps/Spain
- Mapa base de España {view}
- Catastro Spain {view} {mirror}
- LiDAR Spain
- PNOA Spain {view}
- GRAFCAN OrtoExpress Urbana - Canary Islands {view}
- GRAFCAN OrtoExpress - Canary Islands {view}
- ITACyL - Castile and León {view}
- IDEIB - Balearic Islands {view}
- Base Map - Geoportal of Santiago de Compostela
- SITNA - Ortophoto Navarre {view}
- SITNA - Basemap Navarre {view}
- ICGC - Ortophoto Catalonia {view}
- ICGC - Topo Catalonia {view}
- Maps/Sri Lanka
- Maps/Sweden
- Lantmäteriet Topographic Map {mirror}
- Lantmäteriet Economic Map ca. 1950-1978 {view}
- Lantmäteriet General Staff Map 1859-1979 {view}
- Lantmäteriet Historic Orthophoto 1960 {view}
- Lantmäteriet Historic Orthophoto 1975 {view}
- Lantmäteriet Historic Orthophotos options
- Trafikverket Road Network (overlay) {view}
- Trafikverket Road Network extra (overlay) {view}
- Trafikverket Road Network options (overlay)
- Trafikverket Railway Network (overlay) {view}
- Trafikverket Railway Network options (overlay)
- Naturvårdsverket Trails (overlay) {view}
- Naturvårdsverket Protected Areas options (overlay)
- Riksantikvarieämbetet Protected Heritage Areas (overlay) {view}
- Riksantikvarieämbetet Heritage buildings (overlay) {view}
- Riksantikvarieämbetet Ruins (overlay) {view}
- Riksantikvarieämbetet Archaeological Sites and Monuments (overlay) {view}
- SCB Urban Areas (overlay) {view}
- SCB Vacation Home Areas (overlay) {view}
- SCB Industrial zones (overlay) {view}
- SCB Small Settlements (overlay) {view}
- Skolverket Schools (overlay) {view}
- SVK Electricity Network (overlay) {view}
- Länsstyrelserna Wind Turbines (overlay) {view}
- Snowmobile map Sweden {view}
- Stockholm Orthophoto {view}
- Sollentuna Orthophoto 2022 {view}
- Lidingö Orthophoto {view}
- Linköping Orthophoto {view}
- Kalmar North Orthophoto 2014 {view}
- Kalmar South Orthophoto 2016 {view}
- Kalmar Urban Orthophoto 2018 {view}
- Kalmar Urban Orthophoto 2020 {view}
- Gothenburg Orthophoto {view}
- Gothenburg Historic Orthophoto options
- Gothenburg City map {view}
- Gothenburg Hillshade {view}
- Örebro options 1 (overlay)
- Örebro options 2 (overlay)
- Maps/Switzerland
- Kanton Aargau 25cm (AGIS 2014) {view}
- Kanton Aargau 25cm (AGIS 2016) {view}
- Kanton Aargau 25cm (AGIS 2017) {view}
- Kanton Aargau 25cm (AGIS 2019) {view}
- Kanton Aargau 20cm (AGIS 2020) {view}
- Kanton Aargau 50cm DTM/Hillshade {view}
- Kanton Zürich Orthophotos 2014/2015 10cm {view} {mirror}
- Kanton Zürich Orthophotos 2015/2016 10cm {view}
- Kanton Zürich Orthophoto 2018 10cm {view}
- Kanton Zürich Orthophoto 2020 5cm {view}
- Canton Zurich, Orthophoto ZH Spring 2021 RGB 5cm {view}
- Kanton Zürich, Surface Hillshade 2014 50cm {view}
- Kanton Zurich, Surface Hillshade 2017 {view}
- Kanton Zurich, Terrain Hillshade 2014 50cm {view}
- Kanton Zurich, Terrain Hillshade 2017 {view}
- Canton Thurgau Base plan cadastral surveying {view}
- Canton Thurgau cycle routes {view}
- Canton Thurgau relief DTM {view}
- Canton Thurgau hiking paths {view}
- Canton Thurgau orthophoto 2017 {view} {mirror}
- City of St. Gallen {view}
- Stadt Uster Orthophoto 2008 10cm {view}
- City of Zürich base map {view}
- City of Zürich Overview map (Steets, buildings, house numbers) {view}
- City of Zürich Orthophoto 2011 {view}
- City of Zürich Orthophoto 2013 {view}
- City of Zürich Orthophoto 2013 quasi true {view}
- Canton Solothurn, Latest Orthophoto RGB {view}
- Canton Solothurn, Latest Orthophoto Infrared {view}
- Canton Solothurn, Orthophoto 2014 RGB {view}
- Canton Solothurn, Orthophoto 2015 RGB {view}
- Canton Solothurn, Orthophoto 2016 RGB {view}
- Canton Solothurn, Orthophoto 2017 RGB {view}
- Kanton Solothurn, DSM Relief 2014 50cm {view}
- Kanton Solothurn, DTM Relief 2014 50cm {view}
- Kanton Solothurn, DSM Relief 2018 {view}
- Kanton Solothurn, DTM Relief 2018 {view}
- Kanton Solothurn, DSM Relief 2019 {view}
- Kanton Solothurn, DTM Relief 2019 {view}
- Canton of Geneva 5cm (SITG 2011)
- Canton of Geneva 5cm (SITG 2016) {mirror}
- Canton of Geneva 20cm (SITG 2018) {view}
- Canton of Geneva 5cm (SITG 2019) {view}
- Canton of Geneva, DSM (SITG 2014) {view}
- Canton of Geneva, DSM (SITG 2017) {view}
- Canton of Geneva, DSM (SITG 2019) {view}
- Canton of Geneva, DTM (SITG 2014) {view}
- Canton of Geneva, DTM (SITG 2017) {view}
- Canton of Geneva, DTM (SITG 2019) {view}
- Canton Fribourg 2016 {view}
- Kanton Bern, Buildings {view}
- Kanton Bern, Digital surface model 50cm, Relief {view}
- Kanton Bern, Digital terrain model 50cm, Relief {view}
- Stadt Bern 10cm (2023) {view}
- Geoinformation Stadt Bern, Amtliche Vermessung
- Ville de Nyon - Orthophoto 2016 HD 5cm/pi {view}
- Cartoriviera - Orthophoto 2012 {view}
- SIGIP - Orthophoto 2012 {view}
- Lausanne - Orthophoto 2016 {view}
- Bonvillars Orthophoto 2013 {view}
- Fiez Orthophoto 2013 {view}
- Kanton Basel-Stadt 2015 {view}
- Kanton Basel-Stadt 2017 {view}
- Kanton Basel-Stadt 2020 {view}
- Kanton Basel-Stadt 2023 {view}
- Kanton Basel-Landschaft 10cm (2015) {view}
- imagico.de: Central Alps in late September 2016 {view}
- imagico.de: Western Alps autumn colors 2017 {view}
- Kanton Zug 2011 {view}
- Kanton Zug Nord 2016 {view}
- Kanton Zug Gemeinde Zug Süd 2018 {view}
- Canton Zug (Walchwil and Zug (Alpli)) 2019 {view}
- Canton Schaffhausen, relief 2013 {view}
- Canton Schaffhausen, aerial imagery 2013 {view}
- swisstopo swissALTI3D {view}
- swisstopo SWISSIMAGE {view}
- swisstopo swissSURFACE3D {view}
- Maps/Taiwan
- Maps/Tanzania
- Maps/Turkmenistan
- Maps/USA
- Maps/USA Country
- USGS 3D Elevation Program Contours {view}
- USGS 3D Elevation Program {view}
- National Agriculture Imagery Program {view}
- TIGER Roads 2014 {view}
- TIGER Roads 2017 {view}
- TIGER Roads 2018 {view}
- TIGER Roads 2019 {view}
- TIGER Roads 2020 {view}
- TIGER Roads 2021 {view}
- TIGER Roads 2022 {view}
- USGS Imagery {view}
- Maps/USA States
- MassGIS L3 Parcels {view}
- MassGIS 2021 Orthos {mirror}
- MassGIS 2019 Orthos {view}
- MassGIS LIDAR Shaded Relief {view}
- MiSAIL Oakland County Imagery 2020
- MiSAIL Oakland County Imagery 2023
- NC Latest Orthoimagery {view}
- NH GRANIT 2021/2022 6-inch Orthophotos (Color) {view}
- NH GRANIT 2021/2022 6-inch Orthophotos (Infrared) {view}
- NH GRANIT LiDAR Hillshade 2022 (Northwest) {view}
- NH GRANIT LiDAR Hillshade 2022 (Northeast) {view}
- imagico.de: Alaska Range {view}
- imagico.de: Bogoslof Island 2017 {view}
- imagico.de: Bogoslof Island 2019 {view}
- imagico.de: Cook Inlet {view}
- NJ 2015 Aerial Imagery (Infrared) {view}
- NJ 2015 Aerial Imagery (Natural Color) {view}
- NJ 2020 Aerial Imagery (Natural Color) {view}
- San Juan Metro Area: 2013 USACE Orthophotos {view}
- PR/USVI 2017 NOAA Hurricane Maria imagery
- WA 2013 aerial imagery for San Juan County {view}
- WA 2016 aerial imagery for San Juan County
- WA Vector Streetmap for San Juan County {view}
- MD Latest 6 Inch Aerial Imagery {view}
- MD Three Inch Aerial Imagery {view}
- Minnesota Composite Image Service {view}
- Delaware 2012 Orthophotography {view}
- Delaware 2017 Orthophotography {view}
- Rhode Island Aerial Photo (Fall 2021) {view}
- Rhode Island Aerial Photo (Spring 2021) {view}
- Rhode Island Aerial Photo (Spring 2022) {view}
- Rhode Island Aerial Photo (Spring 2023) {view}
- Rhode Island Aerial Photo (Spring 2024) {view}
- NYS Streets {view}
- NYS Orthos Online {view}
- NYS Orthos Online (color IR) {view}
- Washington Department of Transportation December 2021 {view}
- Mesa County GIS Valleywide 2024
- Mesa County GIS Valleywide 2022
- Mesa County GIS Valleywide 2020
- Mesa County GIS NAIP 2019
- Mesa County GIS NAIP 2017 {mirror}
- Mesa County GIS NAIP 2015 {mirror}
- Mesa County GIS Valleywide 2018 {mirror}
- ODOT (Ohio) Road Inventory {view}
- Ohio Statewide Imagery Program {view}
- Ohio Statewide Imagery Program 6-Inch {view}
- Ohio Statewide Imagery Program 1-Foot {view}
- Virginia Building Footprints {view} {mirror}
- Virginia Imagery Service - Most Recent {view} {mirror}
- Virginia Property Lines {view} {mirror}
- Dakota County GIS 2017 Fall Leaf-Off 6-Inch {view}
- Dakota County GIS 2019 Spring Leaf-Off 6-Inch {view}
- HI Maui County Orthoimagery (2023) {view}
- IndianaMap Orthoimagery - Latest Available {view}
- IndianaMap Orthoimagery 2016-2019 {view}
- IndianaMap Orthoimagery 2015 {view}
- IndianaMap Orthoimagery 2014 {view}
- IndianaMap Orthoimagery 2013 {view}
- IndianaMap Orthoimagery 2012 {view}
- IndianaMap Orthoimagery 2011 {view}
- IndianaMap Orthoimagery 2005 {view}
- KYFromAbove 2019-2022 6in {view} {mirror}
- KyFromAbove 2012-2014 {view}
- Texas Orthophoto (2015) {view}
- Texas NAIP Imagery 2012 {view}
- Texas NAIP Imagery 2014 {view}
- Texas NAIP Imagery 2016 {view}
- Texas NAIP Imagery 2018 {view}
- Texas NAIP Imagery 2022 {view}
- Texas NAIP Imagery 2020 {view}
- TX Smith County Imagery 2019 {view}
- TX City of Amarillo Imagery 2015 {view}
- TX Dallas and Fort Worth Imagery 2015 {view}
- TX City of El Paso Imagery 2015 {view}
- TX City of Lubbock Imagery 2015 {view}
- TX City of Georgetown Imagery 2015 {view}
- TX San Antonio River Authority Imagery 2016 {view}
- TX Brazos County Imagery 2019 {view}
- TX Capital Area Imagery 2019 {view}
- PEMA Orthoimagery [2018-2020] (RGB) {view}
- PEMA Orthoimagery - Western [2022] {view}
- PEMA Orthoimagery - Eastern [2020-2021] {view}
- NOAA NGS 69593: Erie, PA [2022-10-05] (RGB) {view}
- NOAA NGS 69593: Erie, PA [2022-10-05] (NRG) {view}
- NOAA NGS 70701: Sitka, AK [2023-05-05] (RGB) {view}
- NOAA NGS 70701: Sitka, AK [2023-05-05] (NRG) {view}
- NOAA NGS 70703: Whittier, AK [2023-05-18] (RGB) {view}
- NOAA NGS 70703: Whittier, AK [2023-05-18] (NRG) {view}
- CT ECO Shaded Relief (2016) {view}
- CT ECO Orthoimagery (2023) {mirror}
- CT ECO Orthoimagery (2019) {mirror}
- CT ECO Orthoimagery (2016) {mirror}
- MetroCOG Orthoimagery (2020) {view}
- VT VCGI LiDAR - DEM Hillshade {view}
- VT VCGI LiDAR - DSM Hillshade {view}
- VT VIP Orthoimagery - Infrared {view}
- VT VIP Orthoimagery - Best of Color {view}
- Maps/Uganda
- Maps/Ukraine
- Ukraine - Orthophotomaps 2012 {view}
- Ukraine - Dnipro 2019 {view}
- Ukraine - Dnipro Topographic Map {view}
- Ukraine - Kyiv 2014 (DZK) {view}
- Ukraine - Kyiv 2019 {view}
- Ukraine - Kyiv Topographic Map {view}
- Ukraine - Mykolaiv 2018 {view}
- Ukraine - Vinnytsia 2018 {view}
- Ukraine - Vinnytsia 2020 {view}
- Ukraine - Vinnytsia 2021 {view}
- Ukraine - Rivne 2011 {view}
- Ukraine - Andriivska OTG 2020 {view}
- Ukraine - Lubetska OTG 2020 {view}
- Ukraine - Liubech 2019 {view}
- Ukraine - Cherkasy 2010 {view}
- Ukraine - Cherkasy 2015 {view}
- Ukraine - Cherkasy 2021 {view}
- Ukraine - Pulyny 2020 {view}
- Ukraine - Mariupol {view}
- Ukraine - Lutsk 2015 {view}
- Ukraine - Prylutske 2020 {view}
- Ukraine - Kropyvnytskyi 2015 {view}
- Ukraine - Palanka Municipality {view}
- Ukraine - Novopskov Municipality {view}
- Ukraine - Lozno-Oleksandrivka {view}
- Ukraine - Pisochyn Municipality 2021 {view}
- Ukraine - Rohan Municipality {view}
- Ukraine - Nova Vodolaha {view}
- Ukraine - Zachepylivka {view}
- Ukraine - Mykolaivka {view}
- Ukraine - Mezhova and Demuryne {view}
- Ukraine - Koroviia 2021 {view}
- Ukraine - Chornivka 2021 {view}
- Ukraine - Chernivtsi 2015 {view}
- Ukraine - Chernivtsi Topographic Map 2015 {view}
- Ukraine - Chernivtsi Address Map {view}
- Ukraine - Khmelnytskyi {view}
- Ukraine - Zhytomyr {view}
- Ukraine - Odesa {view}
- Ukraine - Kolomyia {view}
- Ukraine - Slavuta {view}
- Ukraine - Nyzhnia Duvanka {view}
- Ukraine - Chumaky Municipality {view}
- Ukraine - Radisne {view}
- Ukraine - Bilhorod-Dnistrovskyi {view}
- Ukraine - Serhiivka {view}
- Ukraine - Ovidiopol {view}
- Ukraine - Lymanske {view}
- Ukraine - Velykodolynske {view}
- Ukraine - Tairove {view}
- Ukraine - Avanhard {view}
- Ukraine - Novi Biliari {view}
- Ukraine - Dobroslav {view}
- Ukraine - Teplodar {view}
- Ukraine - Biliaivka {view}
- Ukraine - Petrivka {view}
- Ukraine - Ivanivka {view}
- Ukraine - Rozdilna {view}
- Ukraine - Tsebrykove {view}
- Ukraine - Zatyshshia {view}
- Ukraine - Shyriaeve {view}
- Ukraine - Savran {view}
- Ukraine - Zakharivka {view}
- Ukraine - Liubashivka {view}
- Ukraine - Okny {view}
- Ukraine - Slobidka {view}
- Ukraine - Zatoka and Karolino-Buhaz {view}
- Ukraine - Haivoron 2018 {view}
- Ukraine - Mena 2009 {view}
- Ukraine - Staryi Saltiv {view}
- Maps/United Kingdom
- 7th Series (OS7) {view}
- map.atownsend.org.uk {view}
- Hampshire Aerial FCIR {view}
- Hampshire Aerial RGB {view}
- OS New Popular Edition historic {view}
- OS OpenData StreetView (April 2016) {view} {mirror}
- OS OpenMap Local (April 2024) {view}
- OSMUK Cadastral Parcels {view}
- Postcode centroids {view}
- Public Rights of Way {view}
- Surrey Air Survey {view}
- NLS - OS 6-inch Scotland 1842-82 {view}
- NLS - OS 1:10,560 National Grid Maps, 1940s-1960s {view}
- NLS - OS 1:1,250 National Grid Maps, 1940s-1960s {view}
- NLS - OS 1:2,500 National Grid Maps, 1940s-1960s - double sheets {view}
- NLS - OS 1:2,500 National Grid Maps, 1940s-1960s - single sheets {view}
- NLS - OS 1:1,250/1:2,500 National Grid Maps, 1947-63 - TQ {view}
- NLS - OS/War Office - GSGS 3906 1:25,000, 1940-43 {view}
- NLS - OS 1:25k 1st Series 1937-61 {view}
- NLS - OS 1-inch 7th Series 1955-61 {view}
- NLS - OS 25-inch (Scotland 1) 1892-1905 {view}
- NLS - OS 25-inch (Scotland 2) 1892-1905 {view}
- OS 1:25k historic (OSM-Limited) {view}
- OS Scottish Popular historic {view}
- NLS - Bartholomew Half Inch, 1897-1907 {view}
- OS Town Plans, Aberdeen 1866-1867 (NLS) {view}
- OS Town Plans, Airdrie 1858 (NLS) {view}
- OS Town Plans, Alexandria 1859 (NLS) {view}
- OS Town Plans, Alloa 1861-1862 (NLS) {view}
- OS Town Plans, Annan 1859 (NLS) {view}
- OS Town Plans, Arbroath 1858 (NLS) {view}
- OS Town Plans, Ayr 1855 (NLS) {view}
- OS Town Plans, Berwick-upon-Tweed 1852 (NLS) {view}
- OS Town Plans, Brechin 1862 (NLS) {view}
- OS Town Plans, Burntisland 1894 (NLS) {view}
- OS Town Plans, Campbelton 1865 (NLS) {view}
- OS Town Plans, Coatbridge 1858 (NLS) {view}
- OS Town Plans, Cupar 1854 (NLS) {view}
- OS Town Plans, Cupar 1893-1894 (NLS) {view}
- OS Town Plans, Dalkeith 1852 (NLS) {view}
- OS Town Plans, Dalkeith 1893 (NLS) {view}
- OS Town Plans, Dumbarton 1859 (NLS) {view}
- OS Town Plans, Dumfries 1850 (NLS) {view}
- OS Town Plans, Dumfries 1893 (NLS) {view}
- OS Town Plans, Dundee 1857-1858 (NLS) {view}
- OS Town Plans, Dundee 1870-1872 (NLS) {view}
- OS Town Plans, Dunfermline 1854 (NLS) {view}
- OS Town Plans, Dunfermline 1894 (NLS) {view}
- OS Town Plans, Edinburgh 1849-1851 (NLS) {view}
- OS Town Plans, Edinburgh 1876-1877 (NLS) {view}
- OS Town Plans, Edinburgh 1893-1894 (NLS) {view}
- OS Town Plans, Edinburgh 1940s-1960s (NLS) {view}
- OS Town Plans, Elgin 1868 (NLS) {view}
- OS Town Plans, Falkirk 1858-1859 (NLS) {view}
- OS Town Plans, Forfar 1860-1861 (NLS) {view}
- OS Town Plans, Forres 1868 (NLS) {view}
- OS Town Plans, Galashiels 1858 (NLS) {view}
- OS Town Plans, Girvan 1857 (NLS) {view}
- OS Town Plans, Glasgow 1857-1858 (NLS) {view}
- OS Town Plans, Glasgow 1892-1894 (NLS) {view}
- OS Town Plans, Greenock 1857 (NLS) {view}
- OS Town Plans, Haddington 1853 (NLS) {view}
- OS Town Plans, Haddington 1893 (NLS) {view}
- OS Town Plans, Hamilton 1858 (NLS) {view}
- OS Town Plans, Hawick 1857-1858 (NLS) {view}
- OS Town Plans, Inverness 1867-1868 (NLS) {view}
- OS Town Plans, Irvine 1859 (NLS) {view}
- OS Town Plans, Jedburgh 1858 (NLS) {view}
- OS Town Plans, Kelso 1857 (NLS) {view}
- OS Town Plans, Kilmarnock 1857-1859 (NLS) {view}
- OS Town Plans, Kirkcaldy 1855 (NLS) {view}
- OS Town Plans, Kirkcaldy 1894 (NLS) {view}
- OS Town Plans, Kirkcudbright 1850 (NLS) {view}
- OS Town Plans, Kirkcudbright 1893 (NLS) {view}
- OS Town Plans, Kirkintilloch 1859 (NLS) {view}
- OS Town Plans, Kirriemuir 1861 (NLS) {view}
- OS Town Plans, Lanark 1858 (NLS) {view}
- OS Town Plans, Linlithgow 1856 (NLS) {view}
- OS Town Plans, London 1893-1896 (NLS) {view}
- OS Town Plans, Mayole 1856-1857 (NLS) {view}
- OS Town Plans, Montrose 1861-1862 (NLS) {view}
- OS Town Plans, Musselburgh 1853 (NLS) {view}
- OS Town Plans, Musselburgh 1893 (NLS) {view}
- OS Town Plans, Nairn 1867-1868 (NLS) {view}
- OS Town Plans, Oban 1867-1868 (NLS) {view}
- OS Town Plans, Paisley 1858 (NLS) {view}
- OS Town Plans, Peebles 1856 (NLS) {view}
- OS Town Plans, Perth 1860 (NLS) {view}
- OS Town Plans, Peterhead 1868 (NLS) {view}
- OS Town Plans, Port Glasgow 1856-1857 (NLS) {view}
- OS Town Plans, Portobello 1893-1894 (NLS) {view}
- OS Town Plans, Rothesay 1862-1863 (NLS) {view}
- OS Town Plans, Selkirk 1865 (NLS) {view}
- OS Town Plans, St Andrews 1854 (NLS) {view}
- OS Town Plans, St Andrews 1893 (NLS) {view}
- OS Town Plans, Stirling 1858 (NLS) {view}
- OS Town Plans, Stonehaven 1864 (NLS) {view}
- OS Town Plans, Stranraer 1847 (NLS) {view}
- OS Town Plans, Stranraer 1863-1877 (NLS) {view}
- OS Town Plans, Stranraer 1893 (NLS) {view}
- OS Town Plans, Strathaven 1858 (NLS) {view}
- OS Town Plans, Wick 1872 (NLS) {view}
- OS Town Plans, Wigtown 1848 (NLS) {view}
- OS Town Plans, Wigtown 1894 (NLS) {view}
- Maps/Uruguay
- Maps/Worldwide
- Landsat
- EOx cloudless Sentinel-2 2018 {view}
- EOx cloudless Sentinel-2 2019 {view}
- EOx cloudless Sentinel-2 2020 {view}
- EOx cloudless Sentinel-2 2021 {view}
- EOx cloudless Sentinel-2 2022 {view}
- EOx cloudless Sentinel-2 2023 {view}
- Bing aerial imagery {view}
- HDM (Humanitarian OpenStreetMap Team) {view}
- Mapbox Satellite {view}
- Esri World Imagery {view}
- Esri World Imagery (Clarity) Beta {view}
- OpenCycleMap {view}
- CyclOSM {view}
- Thunderforest Landscape {view}
- Thunderforest Outdoors {view}
- OpenSeaMap {view}
- OpenStreetMap Carto (Standard) {view}
- OpenStreetMap (French Style) {view}
- OpenStreetMap (German Style) {view}
- OpenStreetMap GPS Traces {view}
- OpenTopoMap {view}
- Tracestrack Topo Universal {view}
- Public Transport (ÖPNV) {view}
- OpenSnowMap overlay {view}
- OpenRailwayMap - Default {view}
- OpenRailwayMap - MaxSpeed {view}
- OpenRailwayMap - Signals {view}
- skobbler {view}
- Stamen Terrain Background {view}
- Stamen Toner {view}
- Stamen Watercolor {view}
- Stamen Terrain {view}
- Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual {view}
- USA/Mexico/Canada/Scandinavia Topo Maps {view}
- Strava cycling heatmap {view}
- Strava running heatmap {view}
- Strava cycling and running heatmap {view}
- Strava water sports heatmap {view}
- Strava winter sports heatmap {view}
- Locator Overlay {view}
- QA AEYCH {view}
- QA Has Address {view}
- QA No Address {view}
- QA No Name {view}
- Waymarked Trails: Hiking {view}
- Waymarked Trails: Cycling {view}
- Waymarked Trails: MTB {view}
- Waymarked Trails: Skating {view}
- Waymarked Trails: Horse Riding {view}
- Waymarked Trails: Winter Sports {view}
- Wikimedia Map {view}
- OSM Inspector: Geometry
- OSM Inspector: Tagging
- OSM Inspector: Places
- OSM Inspector: Highways
- OSM Inspector: Areas
- OSM Inspector: Routing
- OSM Inspector: Addresses
- OSM Inspector: Coastline
- OSM Inspector: Public Transport - Stops
- OSM Inspector: Public Transport - Routes
- OSM Inspector: Water
- OpenInfraMap
- Mapillary Images and Point Features
- Panoramax images positions
- OpenAerialMap Mosaic by Kontur.io {view}
- TomTom RoadRunner {view}
- GeoScribble Map Notes {view}