diff --git a/.gitignore b/.gitignore
index c3fd22f29..c2925d6a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,10 @@ dist/mapillary-js/
node_modules/
npm-debug.log
transifex.auth
+
+# autogenerated symlinks
+land.html
+img
+css/img
+test/css
+test/img
diff --git a/.travis.yml b/.travis.yml
index d5024afe8..4d9966218 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,4 +2,5 @@ language: node_js
node_js:
- "4"
- "6"
+ - "7"
sudo: false
diff --git a/API.md b/API.md
index 7d7b6b44a..0ed7f2705 100644
--- a/API.md
+++ b/API.md
@@ -8,8 +8,8 @@ iD supports several URL parameters. When constructing a URL to a standalone inst
of iD (e.g. `http://openstreetmap.us/iD/release/`), the following parameters are available
in the hash portion of the URL:
-* `map` - A slash separated `zoom/longitude/latitude`. Example:
- `map=20.00/-77.02271/38.90085`
+* `map` - A slash separated `zoom/latitude/longitude`. Example:
+ `map=20.00/38.90085/-77.02271`
* `id` - The character 'n', 'w', or 'r', followed by the OSM ID of a node,
way or relation, respectively. Selects the specified entity, and, unless
a `map` parameter is also provided, centers the map on it.
@@ -35,8 +35,7 @@ When constructing a URL to an instance of iD embedded in the OpenStreetMap Rails
Port (e.g. `http://www.openstreetmap.org/edit?editor=id`), the following parameters
are available as regular URL query parameters:
-* `map` - slash separated `zoom/latitude/longitude`. Example:
- `map=20.00/38.90085/-77.02271`.
+* `map` - same as standalone
* `lat`, `lon`, `zoom` - Self-explanatory.
* `node`, `way`, `relation` - Select the specified entity.
* `background` - same as standalone
@@ -138,37 +137,137 @@ class.
Elements that are currently selected shall have the `.selected` class.
+
## Customized Deployments
-iD is used to edit data outside of the OpenStreetMap environment. There are some basic configuration steps to introduce custom presets, imagery and tag information.
+iD may be used to edit maps in a non-OpenStreetMap environment. This requires
+certain parts of the iD code to be replaced at runtime by custom code or data.
+
+iD is written in a modular style and bundled with [rollup.js](http://rollupjs.org/),
+which makes hot code replacement tricky. (ES6 module exports are
+[immutable live bindings](http://www.2ality.com/2015/07/es6-module-exports.html)).
+Because of this, the parts of iD which are designed for customization are exported
+as live bound objects that can be overriden at runtime _before initializing the iD context_.
+
+### Services
+
+The `iD.services` object includes code that talks to other web services.
+
+To replace the OSM service with a custom service that exactly mimics the default OSM service:
+```js
+iD.services.osm = serviceMyOSM;
+```
+
+Some services may be removed entirely. For example, to remove the Mapillary service:
+```js
+iD.services.mapillary = undefined;
+// or
+delete iD.services.mapillary;
+```
+
+
+### Background Imagery
+
+iD's background imagery database is stored in the `iD.data.imagery` array and can be
+overridden or modified prior to creating the iD context.
+
+Note that the "None" and "Custom" options will always be shown in the list.
+
+To remove all imagery from iD:
+```js
+iD.data.imagery = [];
+```
+
+To replace all imagery with a single source:
+```js
+iD.data.imagery = [{
+ "id": "ExampleImagery",
+ "name": "My Imagery",
+ "type": "tms",
+ "template": "http://{switch:a,b,c}.tiles.example.com/{z}/{x}/{y}.png"
+}];
+```
+
+Each imagery source should have the following properties:
+* `id` - Unique identifier for this source (also used as a url paramater)
+* `name` - Display name for the source
+* `type` - Source type, currently only `tms` is supported
+* `template` - Url template, valid replacement tokens include:
+ * `{z}`, `{x}`, `{y}` - for Z/X/Y scheme
+ * `{-y}` or `{ty}` - for flipped Y
+ * `{u}` - for quadtile scheme
+ * `{switch:a,b,c}` - for parts of the url that can be cycled for connection parallelization
+
+Optional properties:
+* `description` - A longer source description which, if included, will be displayed in a popup when viewing the background imagery list
+* `overlay` - If `true`, this is an overlay layer (a transparent layer rendered above base imagery layer). Defaults to `false`
+* `scaleExtent` - Allowable min and max zoom levels, defaults to `[0, 20]`
+* `polygon` - Array of coordinate rings within which imagery is valid. If omitted, imagery is assumed to be valid worldwide
+* `overzoom` - Can this imagery be scaled up when zooming in beyond the max zoom? Defaults to `true`
+* `terms_url` - Url to link to when displaying the imagery terms
+* `terms_html` - Html content to display in the imagery terms
+* `terms_text` - Text content to display in the imagery terms
+* `best` - If set to `true`, this imagery is considered "better than Bing" and may be chosen by default when iD starts. Will display with a star in the background imagery list. Defaults to `false`
+
+For more details about the `iD.data.imagery` structure, see
+[`update_imagery.js`](https://github.com/openstreetmap/iD/blob/master/data/update_imagery.js).
+
### Presets
-iD can use external presets exclusively or along with the default OpenStreetMap presets. This is configured using the `context.presets` accessor. To use external presets alone, initialize the iD context with a custom `Presets` object:
+iD's preset database is stored in the `iD.data.presets` object and can be overridden
+or modified prior to creating the iD context.
+The format of the `presets` object is
+[documented here](https://github.com/openstreetmap/iD/tree/master/data/presets#custom-presets).
+
+To add a new preset to iD's existing preset database.
```js
-
-var id = iD.Context(window)
- .presets(customPresets)
- .imagery(iD.dataImagery);
-
+iD.data.presets.presets["aerialway/zipline"] = {
+ geometry: ["line"],
+ fields: ["incline"],
+ tags: { "aerialway": "zip_line" },
+ name: "Zipline"
+};
```
-The format of the Preset object is [documented here](https://github.com/openstreetmap/iD/tree/master/data/presets#custom-presets).
-
-### Imagery
-
-Just like Presets, Imagery can be configured using the `context.imagery` accessor:
-
+To completely replace iD's default presets with your own:
```js
-
-var id = iD.Context(window)
- .presets(customPresets)
- .imagery(customImagery);
-
+iD.data.presets = myPresets;
```
-The Imagery object should follow the structure defined by [editor-layer-index](https://github.com/osmlab/editor-layer-index/blob/gh-pages/schema.json)
+To run iD with the minimal set of presets that only match basic geometry types:
+```js
+iD.data.presets = {
+ presets: {
+ "area": {
+ "name": "Area",
+ "tags": {},
+ "geometry": ["area"]
+ },
+ "line": {
+ "name": "Line",
+ "tags": {},
+ "geometry": ["line"]
+ },
+ "point": {
+ "name": "Point",
+ "tags": {},
+ "geometry": ["point"]
+ },
+ "vertex": {
+ "name": "Vertex",
+ "tags": {},
+ "geometry": ["vertex"]
+ },
+ "relation": {
+ "name": "Relation",
+ "tags": {},
+ "geometry": ["relation"]
+ }
+ }
+};
+```
### Minimum Editable Zoom
@@ -177,7 +276,7 @@ The minimum zoom at which iD enters the edit mode is configured using the `conte
```js
-var id = iD.Context(window).
+var id = iD.Context()
.minEditableZoom(zoom_level)
```
diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md
index 6de3f9a2a..538530aa4 100644
--- a/ARCHITECTURE.md
+++ b/ARCHITECTURE.md
@@ -1,59 +1,74 @@
-## d3
+## iD Architecture
+
+iD is written in a modular code style using ES6 modules. The modules are bundled
+with [rollup.js](http://rollupjs.org/). iD eventually aims to be a reusable,
+modular library to kickstart other JavaScript-based tools for OpenStreetMap.
+
+### d3
[d3](http://d3js.org/) is the primary library used by iD. It is used for
rendering the map data as well as many sorts of general DOM manipulation tasks
for which jQuery would often be used.
Notable features of d3 that are used by iD include
-[d3.xhr](https://github.com/mbostock/d3/wiki/Requests#wiki-d3_xhr), which is
+[d3.request](https://github.com/d3/d3/blob/master/API.md#requests-d3-request), which is
used to make the API requests to download data from openstreetmap.org and save
changes;
-[d3.dispatch](https://github.com/mbostock/d3/wiki/Internals#wiki-d3_dispatch),
+[d3.dispatch](https://github.com/d3/d3/blob/master/API.md#dispatches-d3-dispatch),
which provides a callback-based [Observer
pattern](http://en.wikipedia.org/wiki/Observer_pattern) between different
parts of iD;
-[d3.geoPath](https://github.com/mbostock/d3/wiki/Geo-Paths#wiki-path), which
+[d3.geoPath](https://github.com/d3/d3/blob/master/API.md#paths), which
generates SVG paths for lines and areas; and
-[d3.behavior.zoom](https://github.com/mbostock/d3/wiki/Zoom-Behavior#wiki-zoom),
+[d3.zoom](https://github.com/d3/d3/blob/master/API.md#zooming-d3-zoom),
which implements map panning and zooming.
-## Core
-The iD *core* implements OSM data types, a graph of OSM objects'
-relationships to one another, an undo/redo history for changes made during
-editing, and a couple of important auxiliary classes. It eventually aims
-to be a reusable, modular library to kickstart other JavaScript-based
-tools for OpenStreetMap.
+### Core Module
-The OSM data model includes three basic data types: nodes, ways, and
-relations.
+The iD *core* module implements the basic datastructures needed to support
+browser-based editing:
-* A _node_ is a point type, having a single geographic coordinate.
-* A _way_ is an ordered list of nodes.
-* A _relation_ groups together nodes, ways, and other relations to provide
+* `iD.coreContext` - container for all iD "global" objects and bootstrap code
+* `iD.coreGraph` - graph of objects and their relationships to one another
+* `iD.coreHistory` - undo/redo history for changes made during editing
+* `iD.coreDifference` - efficiently determine the difference between two graphs
+* `iD.coreTree` - performs fast spatial indexing of the loaded objects
+
+### OSM Module
+
+The iD *osm* module includes classes which represent the basic OpenStreetMap
+objects: nodes, ways, and relations.
+
+* `iD.osmNode` - a _node_ is a point type, having a single geographic coordinate
+* `iD.osmWay` - a _way_ is an ordered list of nodes
+* `iD.osmRelation` - a _relation_ groups together nodes, ways, and other relations to provide
free-form higher-level structures.
-Each of these three types has _tags_: an associative array of key-value pairs which
+Each of these three types has _tags_: an associative array of key-value pairs which
describe the object.
-In iD, these three types are implemented by `iD.Node`, `iD.Way` and
-`iD.Relation`. These three classes inherit from a common base, `iD.Entity`.
+* `iD.osmEntity` - common base class for `iD.osmNode`, `iD.osmWay`, `iD.osmRelation`
+
+These three classes inherit from a common base, `iD.osmEntity`.
This is the only use of classical inheritance in iD, but it's justified
-by the common functionality of the types. Generically, we refer to a
+by the common functionality of the types. Generically, we refer to a
node, way or relation as an _entity_.
-Every entity has an _ID_ either assigned by the OSM database or
-a negative, local identifier assigned by iD for newly-created objects.
-IDs from the OSM database as treated as opaque strings; no
+Every entity has a unique numeric `id`. By convention, positive numbers are
+assigned by the OSM database for saved features, and negative numbers are
+assigned by the iD editor for local newly-created objects.
+
+`id` values from the OSM database as treated as opaque strings; no
[assumptions](http://lists.openstreetmap.org/pipermail/dev/2013-February/026495.html)
are made of them other than that they can be compared for identity and do not
-begin with a minus sign (and thus will not conflict with proxy IDs). The three
-types of entities have separate ID spaces: a
-node can have the same numeric ID as a way or a relation. Instead of segregating
-ways, nodes, and other entities into different datastructures,
-iD internally uses fully-unique IDs generated by prefixing
-each OSM ID with the first letter of the entity type. For example, a way
-with OSM ID 123456 is represented as 'w123456' within iD.
+begin with a minus sign (and thus will not conflict with local `id` values).
+The three types of entities have separate `id` spaces: a node can have the
+same numeric `id` as a way or a relation. Instead of segregating ways, nodes,
+and other entities into different datastructures, iD internally uses fully-unique
+`id` values generated by prefixing each OSM ID with the first letter of the entity
+type. For example, a way with OSM `id` `123456` is represented as `w123456`
+within iD.
iD entities are *immutable*: once constructed, an `Entity` object cannot
change. Tags cannot be updated; nodes cannot be added or removed from ways,
@@ -66,19 +81,30 @@ structure](http://en.wikipedia.org/wiki/Persistent_data_structure).
Since iD is an editor, it must allow for new versions of entities. The
solution is that all edits produce new copies of anything that changes. At the
-entity level, this takes the form of methods such as `iD.Node#move`, which
-returns a new node object that has the same ID and tags as the original, but a
-different coordinate. More generically, `iD.Entity#update` returns a new
-entity of the same type and ID as the original but with specified properties
+entity level, this takes the form of methods such as `iD.osmNode#move`, which
+returns a new node object that has the same `id` and `tags` as the original, but a
+different `loc` coordinate. More generically, `iD.osmEntity#update` returns
+a new entity of the same type and `id` as the original but with specified properties
such as `nodes`, `tags`, or `members` replaced.

Entities are related to one another: ways have many nodes and relations have
-many members. To render a map of a certain area, iD needs a
+many members.
+
+The osm module also includes code related to special kinds of objects in OpenStreetMap.
+
+* `iD.osmIntersection` - code for working with turn restrictions
+* `iD.osmLanes` - code for working with traffic and turn lanes
+* `iD.osmMultipolygon` - code for working with multipolygon relations
+
+
+### Editing OSM
+
+To render a map of a certain area, iD needs a
datastructure to hold all the entities in that area and traverse these
-relationships. `iD.Graph` provides this functionality. The core of a graph is
-a map between IDs and the associated entities; given an ID, the graph can give
+relationships. `iD.coreGraph` provides this functionality. The core of a graph is
+a map between `id`s and the associated entities; given an `id`, the graph can give
you the entity. Like entities, a graph is immutable: adding, replacing, or
removing an entity produces a new graph, and the original is unchanged.
Because entities are immutable, the original and new graphs can minimize
@@ -87,7 +113,7 @@ copying the entire graph.
This persistent data structure approach is similar to the internals of
the [git](http://git-scm.com/) revision control system.
-The final major component of the core is `iD.History`, which tracks the changes
+The final major component of the core is `iD.coreHistory`, which tracks the changes
made in an editing session and provides undo/redo capabilities. Here, the
immutable nature of the core types really pays off: the history is a simple
stack of graphs, each representing the state of the data at a particular point
@@ -102,41 +128,41 @@ Instead of changing a single copy of local data and having to implement
an 'undo' for each specific action, actions in iD do not need to be aware
of history and the undo system.
-Finally, we have the auxiliary classes `iD.Difference` and `iD.Tree`.
+Finally, we have the auxiliary classes `iD.coreDifference` and `iD.coreTree`.
-`iD.Difference` encapsulates the difference between two graphs, and knows how to calculate the
+`iD.coreDifference` encapsulates the difference between two graphs, and knows how to calculate the
set of entities that were created, modified, or deleted, and need to be redrawn.
```js
-var a = iD.Graph(), b = iD.Graph();
+var a = iD.coreGraph(), b = iD.coreGraph();
// (fill a & b with data)
-var difference = iD.Difference(a, b);
+var difference = iD.coreDifference(a, b);
-// returns entities created between and b
+// returns entities created between a and b
difference.created();
```
-`iD.Tree` calculates the set of downloaded entities that are visible in the
+`iD.coreTree` calculates the set of downloaded entities that are visible in the
current map view. To calculate this quickly during map
interaction, it uses an [R-tree](http://en.wikipedia.org/wiki/R-tree).
```js
-var graph = iD.Graph();
+var graph = iD.coreGraph();
// (load OSM data into graph)
// this tree indexes the contents of the graph
-var tree = iD.Tree(graph);
+var tree = iD.coreTree(graph);
// quickly pull all features that intersect with an extent
var features = tree.intersects(
iD.geoExtent([0, 0], [2, 2]), tree.graph());
```
-## Actions
+### Actions Module
In iD, an _action_ is a function that accepts a graph as input and returns a
new, modified graph as output. Actions typically need other inputs as well; for
-example, `iD.actionDeleteNode` also requires the ID of a node to delete. The
+example, `iD.actionDeleteNode` also requires the `id` of a node to delete. The
additional input is passed to the action's constructor:
```js
@@ -165,10 +191,10 @@ knowledge of the OpenStreetMap data model. It is our hope that JavaScript
based tools for OpenStreetMap can reuse the iD's core implementation,
significantly reducing the work necessary to create a robust tool.
-## Modes
+### Modes Module
With _modes_, we shift gears from abstract data types and algorithms to the
-parts of the architecture that implement the user interface for iD. Modes are
+parts of the architecture that implement the user interface for iD. Modes are
manifested in the interface by the three buttons at the top left:

@@ -199,7 +225,7 @@ The `exit` mode does the opposite, removing the behavior installed by the
and exclusive: each mode knows exactly the behavior that is specific to that
mode, and exactly one mode's behavior is active at any time.
-## Behavior
+### Behavior Module
Certain behaviors are common to more than one mode. For example, iD indicates
interactive map elements by drawing a halo around them when you hover over
@@ -208,7 +234,7 @@ of duplicating the code to implement this behavior in all these modes, we
extract it to `iD.behaviorHover`.
_Behaviors_ take their inspiration from [d3's
-behaviors](https://github.com/mbostock/d3/wiki/Behaviors). Like d3's `zoom`
+behaviors](https://github.com/d3/d3/blob/master/API.md). Like d3's `zoom`
and `drag`, each iD behavior is a function that takes as input a d3 selection
(assumed to consist of a single element) and installs the DOM event bindings
necessary to implement the behavior. The `Hover` behavior, for example,
@@ -223,12 +249,12 @@ Each behavior implements an `off` function that "uninstalls" the behavior.
This is very similar to the `exit` method of a mode, and in fact many modes do
little else but uninstall behaviors in their `exit` methods.
-## Operations
+### Operations Module
_Operations_ wrap actions, providing their user-interface: tooltips, key
bindings, and the logic that determines whether an action can be validly
performed given the current map state and selection. Each operation is
-constructed with the list of IDs which are currently selected and a `context`
+constructed with the list of `id`s which are currently selected and a `context`
object which provides access to the history and other important parts of iD's
internal state. After being constructed, an operation can be queried as to
whether or not it should be made available (i.e., show up in the context menu)
@@ -250,11 +276,11 @@ the history, and then enter the appropriate mode. For example,
`iD.operationSplit` performs `iD.actionSplit`, then enters
`iD.modeSelect` with the resulting ways selected.
-## Map Rendering
+### Renderer and SVG Modules
Finally, we get to the parts of iD that actually draw and manipulate the map
-entities on screen. The rendering is coordinated by `iD.Map`, which takes care
-of setting up a [Spherical Mercator](http://bl.ocks.org/mbostock/3757132)
+entities on screen. The rendering is coordinated by `iD.rendererMap`, which
+takes care of setting up a [Spherical Mercator](http://bl.ocks.org/mbostock/3757132)
projection and the [zoom
behavior](https://github.com/mbostock/d3/wiki/Zoom-Behavior), and provides
accessors for such things as the current zoom level and map center.
@@ -271,7 +297,7 @@ entity types of the OSM data model:
For each of these geometric types, `iD.svg` has a corresponding module:
`iD.svgPoints`, `iD.svgVertices`, `iD.svgLines`, and `iD.svgAreas`. To
-render entities on screen, `iD.Map` delegates to these modules. Internally,
+render entities on screen, `iD.rendererMap` delegates to these modules. Internally,
they make heavy use of [d3 joins](http://bost.ocks.org/mike/join/) to
manipulate the SVG elements that visually represent the map entities. When an
entity is rendered for the first time, it is part of the _enter_ selection,
@@ -289,53 +315,44 @@ via CSS at either the key or key-value levels. SVG elements also receive a
class corresponding to their entity type (`node`, `way`, or `relation`) and
one corresponding to their geometry type (`point`, `line`, or `area`).
-The `iD.svg` namespace has a few other modules that don't have a one-to-one
+The `iD.svg` module has a few other submodules that don't have a one-to-one
correspondence with entities:
-* `iD.svgMidpoints` renders the small "virtual node" at the midpoint between
+* `iD.svgMidpoints` - draws the small "virtual node" at the midpoint between
two vertices.
-* `iD.svgLabels` renders the textual
- [labels](http://mapbox.com/osmdev/2013/02/12/labeling-id/).
-* `iD.svgLayers` sets up a number of layers that ensure that map elements
+* `iD.svgLabels` - draws textual labels
+* `iD.svgLayers` - sets up a number of layers that ensure that map elements
appear in an appropriate z-order.
+* `iD.svgOsm` - sets up the OSM-specific data layers
+* `iD.svgGpx` - draws gpx traces
+* `iD.svgDebug` - draws debugging information
-## Other UI
+### Other UI
iD provides a lot of user interface elements other than the core map component:
the page footer, the interface for saving changes, the splash screen you see
-the first time you use iD, the geocoding and background layer controls, and the
-tag/preset editor, for example.
+the first time you use iD, the map controls, and the tag/preset editor, for example.
-
-
-The implementations for all non-map UI components live in the `iD.ui` namespace.
-Many of the modules in this namespace follow a pattern for reusable d3
+The implementations for all non-map UI components live in the `iD.ui` module.
+Many of the submodules under the `ui` module follow a pattern for reusable d3
components [originally suggested](http://bost.ocks.org/mike/chart/) by Mike
-Bostock in the context of charts. The entry point to a UI element is a
-constructor function, e.g. `iD.uiGeocoder()`. The constructor function may
+Bostock in the context of charts. The entry point to a UI element is a
+constructor function, e.g. `iD.uiViewOnOSM()`. The constructor function may
require a set of mandatory arguments; for most UI components exactly one
-argument is required, a `context` object produced by the top-level `iD()`
-function.
+argument is required, a `context`.
-A component needs some way to be rendered on screen by creating new DOM
-elements or manipulating existing elements. This is done by calling the
-component as a function, and passing a d3 selection where the component should
-render itself:
+The constructor function returns a draw function which accepts a d3 selection.
+Drawing is then accomplished with
+[d3.selection#call](https://github.com/d3/d3-selection/blob/master/README.md#selection_call):
-```
-var container = d3.select('body').append('div')
- .attr('class', 'map-control geocode-control');
+```js
+ footer = footer.enter()
+ .append('div')
+ .attr('class', 'footer')
+ .merge(footer);
-var geocoder = iD.uiGeocoder(context)(container);
-```
-
-Alternatively, and more commonly, the same result is accomplished with
-[d3.selection#call](https://github.com/mbostock/d3/wiki/Selections#wiki-call):
-
-```
-d3.select('body').append('div')
- .attr('class', 'map-control geocode-control')
- .call(iD.uiGeocoder(context));
+ footer
+ .call(uiViewOnOSM(context).entityID(entityID));
```
Some components are reconfigurable, and some provide functionality beyond
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 884b4119a..b551932cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,18 +1,37 @@
:warning: = Breaking change, may affect downstream projects or sites that embed iD.
+## 2.0.1
+##### Nov 17, 2016
+* Bugfixes:
+ * When starting iD with an object selected, the map should focus on that object (#3588, thanks @tyrasd)
+ * Fix for "Best" imagery not being automatically selected (#3586)
+* Performance improvements:
+ * Adjust max Mapillary pages fetched per zoom, adjust min viewfield zoom
+
## 2.0.0
-##### (coming soon)
+##### Nov 15, 2016
* :warning: iD is now written in a modular code style using ES6 `import`/`export` and [rollup.js](http://rollupjs.org/) as a build tool (#3118, #3179, #3180)
* Many thanks to @tmcw, @kepta, @tyrasd, @beaugunderson, @davidchouse
* :warning: Flattened namespace means that all functions have changed names (#3479)
* e.g. `iD.actions.Move` -> `iD.actionMove`, `iD.geo.Extent` -> `iD.geoExtent`
* Many deprecated names are still exported as symbols, e.g. `iD.Context` - we will remove these eventually
+* :warning: Customized iD deployments can manipulate live objects, rather than iD.Context accessors
+ * No longer need to call things like `presets()`, `imagery()`, `taginfo()` when creating `iD.Context`
+ * See [API.md](https://github.com/openstreetmap/iD/blob/master/API.md#customized-deployments) for details on customized deployments
* :warning: iD has upgraded to the latest released versions of d3, lodash, rbush, etc.
* d3 no longer adds itself to the global namespace, but can now be accessed via `iD.d3`
* :warning: iD now uses `npm` scripts for all build processes
* iD requires Node v4 or higher, but does not require `make` anymore
* Update install instructions and prerequisites (#3466, thanks @tyrasd)
+* :warning: iD url hash map order has changed to `zoom/latitude/longitude` to match OSM and others (#3554)
+* :warning: Authentication methods like `context.preauth`, `connection.switch`, `iD.uiSourceSwitch.keys` options have changed
+ * `url` option has been renamed to `urlroot`
* Many preset improvements:
+ * Add Construction and Tower Type fields to Mast and Tower presets (#3561, thanks @bkil)
+ * Add Turning Loop (Island) preset, adjust icons for traversable/nontraversable features (#3557)
+ * Add Internet Cafe preset (#3559)
+ * Improve styling of Farmyards (#3556, thanks @Thue)
+ * Add Guest Apartment / Condo preset (#3548)
* Add Waste Transfer preset (#3387)
* Add Billboard preset (#3386)
* Improve traffic calming presets (#3218)
@@ -45,6 +64,14 @@
* Add Ice Cream Shop preset (#3253, thanks @ankit-m)
* Add Taiwan address format to Address field (#3261, thanks @david082321)
* New Features:
+ * `ui()` initializer now accepts a callback that will be called when loadLocale is finished (#3550)
+ * Vertex keyboard navigation (#1917, #3539)
+ * `[` or `pageup` - jump to previous vertex
+ * `]` or `pagedown` - jump to next vertex
+ * `⌘[` or `home` - jump to first vertex
+ * `⌘]` or `end` - jump to last vertex
+ * `\` or `pause-break` - select next parent, if at intersection
+ * Address field improvements - eliminate duplicates, more dropdowns for address fields (#3553)
* OSM API calls are now authenticated for logged in users (helps with (#3519, #2262)
* When reversing a way, reverse tags on its child nodes (#3076, thanks @Psigio)
* Support Right to Left interface for some languages 'ar', 'fa', 'iw', 'dv' (#3007, #3087, thanks @mapmeld)
@@ -53,6 +80,7 @@
* Allow `Del` key as a without modifier as a Delete shortcut (#3455)
* Remove diacritics (accented chars) when doing fuzzy searches (#3159)
* Bugfixes:
+ * Prevent imagery offset nudging buttons from getting stuck if user clicks again (#3576)
* Don't include terms for non-searchable presets in translation source (#3323)
* Let user know if the documentation points to a redirect page (#3337)
* Fix line labeling placement for IE11, Edge (#3020)
diff --git a/FAQ.md b/FAQ.md
index 61a57c3b3..fd33ac736 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -53,7 +53,7 @@ and [configure](https://github.com/openstreetmap/openstreetmap-website/blob/mast
an instance of the Rails Port, the server that runs the OpenStreetMap website and API.
Once you have the Rails Port running, you may edit as normal using the version of iD that
-is bundled with it. Your changes will be saved to your own database. To use a standalone iD with your own api, you may edit the [connection.js](https://github.com/openstreetmap/iD/blob/master/js/id/core/connection.js) file.
+is bundled with it. Your changes will be saved to your own database. To use a standalone iD with your own api, you may edit the [osm.js](https://github.com/openstreetmap/iD/blob/master/modules/services/osm.js) file.
Depending on your requirements, you may also want to set up [cgimap](https://github.com/openstreetmap/cgimap)
and/or a tile rendering stack, but neither of these are required for editing with iD.
diff --git a/README.md b/README.md
index e035487cb..cec40f7b4 100644
--- a/README.md
+++ b/README.md
@@ -41,13 +41,15 @@ Come on in, the water's lovely. More help? Ping `jfire` or `bhousel` on:
## Installation
+Note: Windows users should run these steps in a shell started with "Run as administrator".
+This is only necessary the first time so that the build process can create symbolic links.
+
To run the current development version of iD on your own computer:
1. Create a local `git clone` of the project, then `cd` into the project folder
-2. (Windows Only) Run `fixWinSymlinks.bat`. This script will prompt for Administrator rights. see also: http://stackoverflow.com/questions/5917249/git-symlinks-in-windows
-3. Run `npm install` (this will run the `prepublish` script that builds everything)
-4. Run `npm start`
-5. Open `http://localhost:8080/` in a web browser
+2. Run `npm install` (this will run the `prepublish` script that builds everything)
+3. Run `npm start`
+4. Open `http://localhost:8080/` in a web browser
For guidance on building a packaged version, running tests, and contributing to
development, see [CONTRIBUTING.md](CONTRIBUTING.md).
diff --git a/RELEASING.md b/RELEASING.md
index 449a112a1..b19c4ccef 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -1,51 +1,60 @@
## Release Checklist
### Prerelease (several days prior)
-- [ ] Notify translators of impending release
+- Notify translators of impending release
(https://www.transifex.com/projects/p/id-editor/announcements/)
-- [ ] Notify TomH
+- Notify TomH
### Prep
-- [ ] If you don't have a `transifex.auth` file in the root of your iD checkout,
- you'll need to create a Transifex account, ask @bhousel for admin rights
- on the iD project, and then create this file with contents
- like `{"user": "yourusername", "password": "*******"}`
+- If you don't have a `transifex.auth` file in the root of your iD checkout,
+you'll need to create a Transifex account, ask @bhousel for admin rights
+on the iD project, and then create this file with contents like
+ {"user": "yourusername", "password": "*******"}
### Update master branch
-- [ ] git checkout master
-- [ ] npm run translations
-- [ ] git add . && git commit -m 'npm run translations'
-- [ ] npm run imagery
-- [ ] git add . && git commit -m 'npm run imagery'
-- [ ] Update `CHANGELOG.md`
-- [ ] Update version number in `modules/core/context.js`, `package.json`
-- [ ] git add . && git commit -m 'A.B.C'
-- [ ] git push origin master
+```bash
+$ git checkout master
+$ npm run translations
+$ git add . && git commit -m 'npm run translations'
+$ rm -rf node_modules/editor-layer-index/
+$ npm install
+$ npm run imagery
+$ npm run all
+$ git add . && git commit -m 'npm run imagery'
+$ Update `CHANGELOG.md`
+$ Update version number in `modules/core/context.js`, `package.json`
+$ git add . && git commit -m 'A.B.C'
+$ git push origin master
+```
### Update and tag release branch
-- [ ] git checkout release
-- [ ] git reset --hard master
-- [ ] npm run all
-- [ ] git add -f dist/*.css dist/*.js dist/img/*.svg dist/locales/*.json
-- [ ] git commit -m 'Check in build'
-- [ ] git tag vA.B.C
-- [ ] git push origin -f release vA.B.C
+```bash
+$ git checkout release
+$ git reset --hard master
+$ npm run all
+$ git add -f dist/*.css dist/*.js dist/img/*.svg dist/mapillary-js/
+$ git commit -m 'Check in build'
+$ git tag vA.B.C
+$ git push origin -f release vA.B.C
+```
### Update openstreetmap-website
#### Setup remotes (one time only)
-
-- [ ] git remote add osmlab git@github.com:osmlab/openstreetmap-website.git
-- [ ] git remote add upstream git@github.com:openstreetmap/openstreetmap-website.git
+```bash
+$ git remote add osmlab git@github.com:osmlab/openstreetmap-website.git
+$ git remote add upstream git@github.com:openstreetmap/openstreetmap-website.git
+```
#### Sync master and update iD (every time)
-
-- [ ] git fetch --all
-- [ ] git checkout master
-- [ ] git reset --hard upstream/master
-- [ ] git checkout -b iD-A.B.C
-- [ ] bundle install
-- [ ] rm -rf vendor/assets/iD/* && vendorer
-- [ ] git add . && git commit -m 'Update to iD vA.B.C'
-- [ ] git push osmlab
-- [ ] Open pull request
+```bash
+$ git fetch --all
+$ git checkout master
+$ git reset --hard upstream/master
+$ git checkout -b iD-A.B.C
+$ bundle install
+$ rm -rf vendor/assets/iD/* && vendorer
+$ git add . && git commit -m 'Update to iD vA.B.C'
+$ git push osmlab
+$ Open pull request
+```
diff --git a/build.js b/build.js
index d50523bc5..2c925ea6f 100644
--- a/build.js
+++ b/build.js
@@ -1,15 +1,34 @@
/* eslint-disable no-console */
-var _ = require('lodash');
-var fs = require('fs');
-var path = require('path');
-var glob = require('glob');
-var YAML = require('js-yaml');
-var jsonschema = require('jsonschema');
+const _ = require('lodash');
+const fs = require('fs');
+const glob = require('glob');
+const jsonschema = require('jsonschema');
+const path = require('path');
+const shell = require('shelljs');
+const YAML = require('js-yaml');
+
+const fieldSchema = require('./data/presets/schema/field.json');
+const presetSchema = require('./data/presets/schema/preset.json');
+const suggestions = require('name-suggestion-index/name-suggestions.json');
+
+
+// Create symlinks if necessary.. { 'target': 'source' }
+const symlinks = {
+ 'land.html': 'dist/land.html',
+ 'img': 'dist/img',
+ 'css/img': '../dist/img',
+ 'test/css': '../css',
+ 'test/img': '../dist/img'
+};
+
+for (var target of Object.keys(symlinks)) {
+ if (!shell.test('-L', target)) {
+ console.log(`Creating symlink: ${target} -> ${symlinks[target]}`);
+ shell.ln('-sf', symlinks[target], target);
+ }
+}
-var fieldSchema = require('./data/presets/schema/field.json');
-var presetSchema = require('./data/presets/schema/preset.json');
-var suggestions = require('name-suggestion-index/name-suggestions.json');
// Translation strings
var tstrings = {
@@ -20,12 +39,14 @@ var tstrings = {
// Start clean
-unlink('data/presets/categories.json');
-unlink('data/presets/fields.json');
-unlink('data/presets/presets.json');
-unlink('data/presets.yaml');
-unlink('data/taginfo.json');
-unlink('dist/locales/en.json');
+shell.rm('-f', [
+ 'data/presets/categories.json',
+ 'data/presets/fields.json',
+ 'data/presets/presets.json',
+ 'data/presets.yaml',
+ 'data/taginfo.json',
+ 'dist/locales/en.json'
+]);
var categories = generateCategories();
var fields = generateFields();
@@ -54,10 +75,6 @@ fs.writeFileSync('dist/locales/en.json', JSON.stringify(en, null, 4));
process.exit();
-function unlink(f) {
- try { fs.unlinkSync(f); } catch (e) { /* noop */ }
-}
-
function read(f) {
return JSON.parse(fs.readFileSync(f, 'utf8'));
}
diff --git a/css/app.css b/css/app.css
index 4d291387b..bb473e00f 100644
--- a/css/app.css
+++ b/css/app.css
@@ -2601,12 +2601,20 @@ img.tile-removing {
text-align: right;
width: 100%;
padding: 0px 10px;
+ color: #eee;
}
.api-status.offline,
.api-status.readonly,
.api-status.error {
- background: red;
+ background: #a22;
+}
+
+.api-status-login {
+ color: #aaf;
+}
+.api-status-login:hover {
+ color: #ccf;
}
/* Modals
diff --git a/css/img b/css/img
deleted file mode 120000
index a5e0e5adb..000000000
--- a/css/img
+++ /dev/null
@@ -1 +0,0 @@
-../dist/img/
\ No newline at end of file
diff --git a/css/map.css b/css/map.css
index 250f23aed..8e3f3290b 100644
--- a/css/map.css
+++ b/css/map.css
@@ -37,6 +37,7 @@ g.point .shadow {
stroke-opacity: 0;
}
+g.point.related:not(.selected) .shadow,
g.point.hover:not(.selected) .shadow {
stroke-opacity: 0.5;
}
@@ -104,7 +105,9 @@ g.vertex.vertex-hover {
display: block;
}
+g.vertex.related:not(.selected) .shadow,
g.vertex.hover:not(.selected) .shadow,
+g.midpoint.related:not(.selected) .shadow,
g.midpoint.hover:not(.selected) .shadow {
fill-opacity: 0.5;
}
@@ -144,6 +147,7 @@ path.shadow {
stroke-opacity: 0;
}
+path.shadow.related:not(.selected),
path.shadow.hover:not(.selected) {
stroke-opacity: 0.4;
}
@@ -408,6 +412,18 @@ path.stroke.tag-landuse-farmland {
background-color: rgba(140, 208, 95, 0.2);
}
+path.stroke.tag-landuse-farmyard {
+ stroke: rgb(245, 220, 186);
+}
+path.fill.tag-landuse-farmyard {
+ stroke: rgba(245, 220, 186, 0.3);
+ fill: rgba(245, 220, 186, 0.3);
+}
+.preset-icon-fill-area.tag-landuse-farmyard {
+ border-color: rgb(245, 220, 186);
+ background: rgba(245, 220, 186, 0.3);
+}
+
.pattern-color-cemetery,
.pattern-color-orchard {
fill: rgba(140, 208, 95, 0.2);
@@ -1600,6 +1616,7 @@ text.gpx {
stroke-width: 8;
}
+.fill-wireframe path.shadow.related:not(.selected),
.fill-wireframe path.shadow.hover:not(.selected) {
stroke-opacity: 0.4;
}
diff --git a/data/core.yaml b/data/core.yaml
index 0700d2479..360e4dbd7 100644
--- a/data/core.yaml
+++ b/data/core.yaml
@@ -187,6 +187,7 @@ en:
localized_translation_language: Choose language
localized_translation_name: Name
zoom_in_edit: Zoom in to Edit
+ login: login
logout: logout
loading_auth: "Connecting to OpenStreetMap..."
report_a_bug: Report a bug
@@ -198,6 +199,7 @@ en:
error: Unable to connect to API.
offline: The API is offline. Please try editing later.
readonly: The API is read-only. You will need to wait to save your changes.
+ rateLimit: The API is limiting anonymous connections. You can fix this by logging in.
commit:
title: Save Changes
description_placeholder: Brief description of your contributions (required)
@@ -285,7 +287,7 @@ en:
switch: Switch back to this background
custom: Custom
custom_button: Edit custom background
- custom_prompt: "Enter a tile URL template. Valid tokens are {z}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme."
+ custom_prompt: "Enter a tile URL template. Valid tokens are {zoom}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme."
fix_misalignment: Adjust imagery offset
imagery_source_faq: Where does this imagery come from?
reset: reset
diff --git a/data/imagery.json b/data/imagery.json
index 56aa273b5..3c1369175 100644
--- a/data/imagery.json
+++ b/data/imagery.json
@@ -1,10 +1,11 @@
{
"dataImagery": [
{
+ "id": "sjcgis.org-Aerials_2013_WM",
"name": "2013 aerial imagery for San Juan County WA",
"type": "tms",
- "description": "Public domain aerial imagery taken in May/June 2013 from San Juan County, WA. Resolution is 9 inch.",
"template": "http://sjcgis.org/arcgis/rest/services/Basemaps/Aerials_2013_WM/MapServer/tile/{zoom}/{y}/{x}",
+ "description": "Public domain aerial imagery taken in May/June 2013 from San Juan County, WA. Resolution is 9 inch.",
"scaleExtent": [
0,
19
@@ -60,6 +61,7 @@
"best": true
},
{
+ "id": "OS7",
"name": "7th Series (OS7)",
"type": "tms",
"template": "http://ooc.openstreetmap.org/os7/{zoom}/{x}/{y}.jpg",
@@ -89,6 +91,7 @@
]
},
{
+ "id": "AGRI-black_and_white-2.5m",
"name": "AGRI black-and-white 2.5m",
"type": "tms",
"template": "http://agri.openstreetmap.org/{zoom}/{x}/{y}.png",
@@ -315,10 +318,11 @@
"terms_text": "AGRI"
},
{
+ "id": "basemap.at",
"name": "basemap.at",
"type": "tms",
+ "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png",
"description": "Basemap of Austria, based on goverment data.",
- "template": "http://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png",
"polygon": [
[
[
@@ -1080,17 +1084,21 @@
[
16.527684,
47.0588402
+ ],
+ [
+ 16.5073284,
+ 46.9929304
]
]
],
- "terms_text": "basemap.at",
- "id": "basemap.at"
+ "terms_text": "basemap.at"
},
{
+ "id": "basemap.at-orthofoto",
"name": "basemap.at Orthofoto",
"type": "tms",
+ "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg",
"description": "Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.",
- "template": "http://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg",
"polygon": [
[
[
@@ -1852,14 +1860,1228 @@
[
16.527684,
47.0588402
+ ],
+ [
+ 16.5073284,
+ 46.9929304
]
]
],
"terms_text": "basemap.at",
- "id": "basemap.at orthofoto",
"best": true
},
{
+ "id": "bavaria-DOP80",
+ "name": "Bavaria DOP 80cm",
+ "type": "tms",
+ "template": "http://mapproxy.osm.ch:8080/tiles/BAYERNDOP80/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "scaleExtent": [
+ 0,
+ 18
+ ],
+ "polygon": [
+ [
+ [
+ 10.1235886,
+ 50.568462
+ ],
+ [
+ 10.1428576,
+ 50.5507804
+ ],
+ [
+ 10.2028056,
+ 50.5574195
+ ],
+ [
+ 10.2520485,
+ 50.5179575
+ ],
+ [
+ 10.3269835,
+ 50.4934473
+ ],
+ [
+ 10.4104825,
+ 50.4184762
+ ],
+ [
+ 10.6031724,
+ 50.3310874
+ ],
+ [
+ 10.6224414,
+ 50.2271041
+ ],
+ [
+ 10.7252093,
+ 50.2106649
+ ],
+ [
+ 10.7294913,
+ 50.2476451
+ ],
+ [
+ 10.8515282,
+ 50.2435376
+ ],
+ [
+ 10.7187863,
+ 50.3201525
+ ],
+ [
+ 10.7123633,
+ 50.3652428
+ ],
+ [
+ 10.8558102,
+ 50.3966441
+ ],
+ [
+ 10.9371682,
+ 50.3966441
+ ],
+ [
+ 10.9906932,
+ 50.3666085
+ ],
+ [
+ 11.1277171,
+ 50.3666085
+ ],
+ [
+ 11.1791011,
+ 50.3133169
+ ],
+ [
+ 11.1619731,
+ 50.294172
+ ],
+ [
+ 11.24119,
+ 50.2928042
+ ],
+ [
+ 11.249754,
+ 50.3734364
+ ],
+ [
+ 11.24119,
+ 50.479825
+ ],
+ [
+ 11.358945,
+ 50.5234025
+ ],
+ [
+ 11.4381619,
+ 50.5097889
+ ],
+ [
+ 11.4424439,
+ 50.4893611
+ ],
+ [
+ 11.425316,
+ 50.4771001
+ ],
+ [
+ 11.425316,
+ 50.4416618
+ ],
+ [
+ 11.4895459,
+ 50.4225686
+ ],
+ [
+ 11.4916869,
+ 50.3980089
+ ],
+ [
+ 11.5195199,
+ 50.3980089
+ ],
+ [
+ 11.5259429,
+ 50.3761673
+ ],
+ [
+ 11.5987369,
+ 50.4034677
+ ],
+ [
+ 11.6372748,
+ 50.3884544
+ ],
+ [
+ 11.7935678,
+ 50.4212045
+ ],
+ [
+ 11.8363877,
+ 50.3925494
+ ],
+ [
+ 11.9220277,
+ 50.4280246
+ ],
+ [
+ 11.9862577,
+ 50.3870894
+ ],
+ [
+ 11.9841167,
+ 50.3570478
+ ],
+ [
+ 12.0483466,
+ 50.3310874
+ ],
+ [
+ 12.0933076,
+ 50.3297207
+ ],
+ [
+ 12.1297046,
+ 50.2982751
+ ],
+ [
+ 12.1404096,
+ 50.2722826
+ ],
+ [
+ 12.1061536,
+ 50.255859
+ ],
+ [
+ 12.1125766,
+ 50.2353216
+ ],
+ [
+ 12.1489736,
+ 50.236691
+ ],
+ [
+ 12.1982166,
+ 50.2010728
+ ],
+ [
+ 12.2239086,
+ 50.1640565
+ ],
+ [
+ 12.2046396,
+ 50.1434795
+ ],
+ [
+ 12.2067806,
+ 50.1077916
+ ],
+ [
+ 12.2431775,
+ 50.0995522
+ ],
+ [
+ 12.2774335,
+ 50.0720772
+ ],
+ [
+ 12.4936744,
+ 49.985428
+ ],
+ [
+ 12.4979564,
+ 49.9413559
+ ],
+ [
+ 12.5557634,
+ 49.9220616
+ ],
+ [
+ 12.5493404,
+ 49.8682726
+ ],
+ [
+ 12.4808284,
+ 49.7881677
+ ],
+ [
+ 12.4101755,
+ 49.7577484
+ ],
+ [
+ 12.4615594,
+ 49.7065456
+ ],
+ [
+ 12.5471994,
+ 49.6802313
+ ],
+ [
+ 12.5878784,
+ 49.552613
+ ],
+ [
+ 12.6542493,
+ 49.534553
+ ],
+ [
+ 12.6628133,
+ 49.4330153
+ ],
+ [
+ 12.7527353,
+ 49.4107323
+ ],
+ [
+ 12.7976963,
+ 49.3466124
+ ],
+ [
+ 12.9047462,
+ 49.3563752
+ ],
+ [
+ 12.9968092,
+ 49.3368477
+ ],
+ [
+ 13.0546161,
+ 49.2754251
+ ],
+ [
+ 13.1316921,
+ 49.2195199
+ ],
+ [
+ 13.1916401,
+ 49.1439475
+ ],
+ [
+ 13.236601,
+ 49.1215335
+ ],
+ [
+ 13.296549,
+ 49.1229347
+ ],
+ [
+ 13.371484,
+ 49.0808823
+ ],
+ [
+ 13.414304,
+ 49.0289687
+ ],
+ [
+ 13.414304,
+ 48.9798112
+ ],
+ [
+ 13.5791609,
+ 48.9699739
+ ],
+ [
+ 13.6348268,
+ 48.9432629
+ ],
+ [
+ 13.6776468,
+ 48.8869823
+ ],
+ [
+ 13.7375948,
+ 48.8926132
+ ],
+ [
+ 13.7846968,
+ 48.8334571
+ ],
+ [
+ 13.8403627,
+ 48.774231
+ ],
+ [
+ 13.8168118,
+ 48.7064584
+ ],
+ [
+ 13.8446447,
+ 48.7008065
+ ],
+ [
+ 13.8425037,
+ 48.6003807
+ ],
+ [
+ 13.7654278,
+ 48.5422972
+ ],
+ [
+ 13.7525818,
+ 48.5040106
+ ],
+ [
+ 13.6712238,
+ 48.5054291
+ ],
+ [
+ 13.6433908,
+ 48.5437146
+ ],
+ [
+ 13.4571239,
+ 48.5508013
+ ],
+ [
+ 13.4571239,
+ 48.4159838
+ ],
+ [
+ 13.40574,
+ 48.3605338
+ ],
+ [
+ 13.283703,
+ 48.2751083
+ ],
+ [
+ 13.0931541,
+ 48.2694081
+ ],
+ [
+ 12.9582712,
+ 48.1909669
+ ],
+ [
+ 12.8769132,
+ 48.1852574
+ ],
+ [
+ 12.7720043,
+ 48.0938188
+ ],
+ [
+ 12.8640672,
+ 48.0136764
+ ],
+ [
+ 12.8983232,
+ 47.9549216
+ ],
+ [
+ 12.9454252,
+ 47.9563555
+ ],
+ [
+ 12.9968092,
+ 47.8846147
+ ],
+ [
+ 13.0139372,
+ 47.834337
+ ],
+ [
+ 12.9347202,
+ 47.7321953
+ ],
+ [
+ 13.0588981,
+ 47.7249947
+ ],
+ [
+ 13.1188461,
+ 47.6385093
+ ],
+ [
+ 13.0653211,
+ 47.5692178
+ ],
+ [
+ 13.0567571,
+ 47.473792
+ ],
+ [
+ 13.0032322,
+ 47.4520801
+ ],
+ [
+ 12.7677223,
+ 47.5504355
+ ],
+ [
+ 12.7698633,
+ 47.6327385
+ ],
+ [
+ 12.7398893,
+ 47.6731207
+ ],
+ [
+ 12.6670953,
+ 47.6702373
+ ],
+ [
+ 12.5750324,
+ 47.621195
+ ],
+ [
+ 12.4808284,
+ 47.6197519
+ ],
+ [
+ 12.4144575,
+ 47.6702373
+ ],
+ [
+ 12.2431775,
+ 47.6774455
+ ],
+ [
+ 12.2132036,
+ 47.6918589
+ ],
+ [
+ 12.1917936,
+ 47.6817699
+ ],
+ [
+ 12.2132036,
+ 47.6659119
+ ],
+ [
+ 12.2110626,
+ 47.603875
+ ],
+ [
+ 12.1746656,
+ 47.5952129
+ ],
+ [
+ 12.1382686,
+ 47.603875
+ ],
+ [
+ 11.8920537,
+ 47.603875
+ ],
+ [
+ 11.8513747,
+ 47.5793285
+ ],
+ [
+ 11.6394158,
+ 47.5822169
+ ],
+ [
+ 11.5944549,
+ 47.5489905
+ ],
+ [
+ 11.5901729,
+ 47.5128508
+ ],
+ [
+ 11.5173789,
+ 47.498388
+ ],
+ [
+ 11.4403029,
+ 47.5041736
+ ],
+ [
+ 11.395342,
+ 47.4752392
+ ],
+ [
+ 11.427457,
+ 47.4448409
+ ],
+ [
+ 11.346099,
+ 47.4433929
+ ],
+ [
+ 11.279728,
+ 47.3955873
+ ],
+ [
+ 11.2133571,
+ 47.3883402
+ ],
+ [
+ 11.247613,
+ 47.4318076
+ ],
+ [
+ 11.1020251,
+ 47.3926886
+ ],
+ [
+ 10.9650012,
+ 47.3897897
+ ],
+ [
+ 10.9778472,
+ 47.4361524
+ ],
+ [
+ 10.9178992,
+ 47.4752392
+ ],
+ [
+ 10.8707972,
+ 47.4752392
+ ],
+ [
+ 10.8558102,
+ 47.4940484
+ ],
+ [
+ 10.9007712,
+ 47.5142969
+ ],
+ [
+ 10.8729382,
+ 47.5359831
+ ],
+ [
+ 10.8108493,
+ 47.5128508
+ ],
+ [
+ 10.6438513,
+ 47.5489905
+ ],
+ [
+ 10.5946084,
+ 47.5547705
+ ],
+ [
+ 10.5796214,
+ 47.5287553
+ ],
+ [
+ 10.4618664,
+ 47.5403192
+ ],
+ [
+ 10.4661484,
+ 47.4839212
+ ],
+ [
+ 10.4875584,
+ 47.4781333
+ ],
+ [
+ 10.4875584,
+ 47.4129762
+ ],
+ [
+ 10.4597254,
+ 47.4028333
+ ],
+ [
+ 10.4597254,
+ 47.375293
+ ],
+ [
+ 10.4104825,
+ 47.3738431
+ ],
+ [
+ 10.4083415,
+ 47.3433862
+ ],
+ [
+ 10.3205605,
+ 47.2867768
+ ],
+ [
+ 10.2820225,
+ 47.2780622
+ ],
+ [
+ 10.2841635,
+ 47.2620819
+ ],
+ [
+ 10.1471396,
+ 47.2620819
+ ],
+ [
+ 10.1921006,
+ 47.3027497
+ ],
+ [
+ 10.1942416,
+ 47.3738431
+ ],
+ [
+ 10.1664086,
+ 47.3738431
+ ],
+ [
+ 10.1664086,
+ 47.3462876
+ ],
+ [
+ 10.1000376,
+ 47.3433862
+ ],
+ [
+ 10.0614996,
+ 47.3636928
+ ],
+ [
+ 10.0679226,
+ 47.4187712
+ ],
+ [
+ 10.0936146,
+ 47.426014
+ ],
+ [
+ 10.0957556,
+ 47.4419449
+ ],
+ [
+ 9.9780007,
+ 47.485368
+ ],
+ [
+ 9.9565907,
+ 47.5273097
+ ],
+ [
+ 9.8945017,
+ 47.5287553
+ ],
+ [
+ 9.8559637,
+ 47.5085124
+ ],
+ [
+ 9.8174258,
+ 47.544655
+ ],
+ [
+ 9.8217078,
+ 47.5764399
+ ],
+ [
+ 9.7746058,
+ 47.5822169
+ ],
+ [
+ 9.7382088,
+ 47.525864
+ ],
+ [
+ 9.6739788,
+ 47.5345376
+ ],
+ [
+ 9.5840569,
+ 47.564884
+ ],
+ [
+ 9.6397228,
+ 47.6053186
+ ],
+ [
+ 9.7167988,
+ 47.603875
+ ],
+ [
+ 9.8559637,
+ 47.6760039
+ ],
+ [
+ 9.9780007,
+ 47.6558179
+ ],
+ [
+ 10.0293846,
+ 47.6817699
+ ],
+ [
+ 10.1000376,
+ 47.6673537
+ ],
+ [
+ 10.1321526,
+ 47.6760039
+ ],
+ [
+ 10.1428576,
+ 47.7019459
+ ],
+ [
+ 10.0614996,
+ 47.7725005
+ ],
+ [
+ 10.1128836,
+ 47.8098988
+ ],
+ [
+ 10.0829096,
+ 47.8530173
+ ],
+ [
+ 10.1086016,
+ 47.9090177
+ ],
+ [
+ 10.0764866,
+ 47.9649577
+ ],
+ [
+ 10.1300116,
+ 48.020837
+ ],
+ [
+ 10.1342936,
+ 48.1066872
+ ],
+ [
+ 10.1000376,
+ 48.1281274
+ ],
+ [
+ 10.0550766,
+ 48.2622821
+ ],
+ [
+ 9.9694367,
+ 48.3676462
+ ],
+ [
+ 10.0315256,
+ 48.4259299
+ ],
+ [
+ 10.0293846,
+ 48.461436
+ ],
+ [
+ 10.1235886,
+ 48.4770509
+ ],
+ [
+ 10.1535626,
+ 48.4514968
+ ],
+ [
+ 10.2349205,
+ 48.5125212
+ ],
+ [
+ 10.3162785,
+ 48.516776
+ ],
+ [
+ 10.2991505,
+ 48.6187835
+ ],
+ [
+ 10.2456255,
+ 48.6682961
+ ],
+ [
+ 10.2734585,
+ 48.7064584
+ ],
+ [
+ 10.3698035,
+ 48.6838472
+ ],
+ [
+ 10.4318924,
+ 48.6993935
+ ],
+ [
+ 10.4511614,
+ 48.7276471
+ ],
+ [
+ 10.4019185,
+ 48.7460035
+ ],
+ [
+ 10.4404564,
+ 48.8489571
+ ],
+ [
+ 10.4340334,
+ 48.9587289
+ ],
+ [
+ 10.3376885,
+ 49.0205451
+ ],
+ [
+ 10.2499075,
+ 49.0359872
+ ],
+ [
+ 10.2499075,
+ 49.0738701
+ ],
+ [
+ 10.2006646,
+ 49.1033147
+ ],
+ [
+ 10.2520485,
+ 49.1327418
+ ],
+ [
+ 10.1235886,
+ 49.1971401
+ ],
+ [
+ 10.1193066,
+ 49.2628519
+ ],
+ [
+ 10.1514216,
+ 49.2893915
+ ],
+ [
+ 10.1043196,
+ 49.3452175
+ ],
+ [
+ 10.1407166,
+ 49.3940134
+ ],
+ [
+ 10.1086016,
+ 49.445545
+ ],
+ [
+ 10.1107426,
+ 49.5053651
+ ],
+ [
+ 10.0722046,
+ 49.5331635
+ ],
+ [
+ 10.0165387,
+ 49.4761598
+ ],
+ [
+ 9.9266167,
+ 49.478942
+ ],
+ [
+ 9.9244757,
+ 49.5567797
+ ],
+ [
+ 9.8987837,
+ 49.5817727
+ ],
+ [
+ 9.8559637,
+ 49.5387213
+ ],
+ [
+ 9.8067208,
+ 49.5567797
+ ],
+ [
+ 9.8666687,
+ 49.6067529
+ ],
+ [
+ 9.8538227,
+ 49.6441991
+ ],
+ [
+ 9.8174258,
+ 49.6608327
+ ],
+ [
+ 9.8345537,
+ 49.6899277
+ ],
+ [
+ 9.7960158,
+ 49.7203895
+ ],
+ [
+ 9.7574778,
+ 49.7079302
+ ],
+ [
+ 9.7403498,
+ 49.6857723
+ ],
+ [
+ 9.7060938,
+ 49.7162368
+ ],
+ [
+ 9.6782608,
+ 49.7162368
+ ],
+ [
+ 9.6825428,
+ 49.6885426
+ ],
+ [
+ 9.6204539,
+ 49.6913127
+ ],
+ [
+ 9.6461458,
+ 49.78955
+ ],
+ [
+ 9.5583649,
+ 49.7743431
+ ],
+ [
+ 9.5712109,
+ 49.7356133
+ ],
+ [
+ 9.5069809,
+ 49.7522156
+ ],
+ [
+ 9.4919939,
+ 49.7798735
+ ],
+ [
+ 9.4684429,
+ 49.7605146
+ ],
+ [
+ 9.425623,
+ 49.7784909
+ ],
+ [
+ 9.404213,
+ 49.7646636
+ ],
+ [
+ 9.33356,
+ 49.770195
+ ],
+ [
+ 9.329278,
+ 49.7342295
+ ],
+ [
+ 9.408495,
+ 49.725926
+ ],
+ [
+ 9.427764,
+ 49.6982374
+ ],
+ [
+ 9.414918,
+ 49.6441991
+ ],
+ [
+ 9.380662,
+ 49.6386533
+ ],
+ [
+ 9.359252,
+ 49.6497443
+ ],
+ [
+ 9.339983,
+ 49.6372668
+ ],
+ [
+ 9.31215,
+ 49.648358
+ ],
+ [
+ 9.277894,
+ 49.626173
+ ],
+ [
+ 9.284317,
+ 49.6081403
+ ],
+ [
+ 9.241497,
+ 49.5748315
+ ],
+ [
+ 9.0980501,
+ 49.5720547
+ ],
+ [
+ 9.0659351,
+ 49.6081403
+ ],
+ [
+ 9.1001911,
+ 49.6511305
+ ],
+ [
+ 9.0916271,
+ 49.6926978
+ ],
+ [
+ 9.1301651,
+ 49.7120837
+ ],
+ [
+ 9.1387291,
+ 49.7425316
+ ],
+ [
+ 9.1087551,
+ 49.7563653
+ ],
+ [
+ 9.1365881,
+ 49.7909322
+ ],
+ [
+ 9.1001911,
+ 49.78955
+ ],
+ [
+ 9.0723581,
+ 49.8282367
+ ],
+ [
+ 9.0359611,
+ 49.8351418
+ ],
+ [
+ 9.0166922,
+ 50.0267091
+ ],
+ [
+ 8.9631672,
+ 50.0308352
+ ],
+ [
+ 8.9567442,
+ 50.0597083
+ ],
+ [
+ 9.0017052,
+ 50.0707031
+ ],
+ [
+ 9.0209742,
+ 50.1105378
+ ],
+ [
+ 9.1216011,
+ 50.1228936
+ ],
+ [
+ 9.1558571,
+ 50.1132838
+ ],
+ [
+ 9.1965361,
+ 50.1187753
+ ],
+ [
+ 9.1858311,
+ 50.1352462
+ ],
+ [
+ 9.235074,
+ 50.1475956
+ ],
+ [
+ 9.37638,
+ 50.1270115
+ ],
+ [
+ 9.408495,
+ 50.0816953
+ ],
+ [
+ 9.5219679,
+ 50.095432
+ ],
+ [
+ 9.5048399,
+ 50.1421073
+ ],
+ [
+ 9.5326729,
+ 50.1640565
+ ],
+ [
+ 9.4898529,
+ 50.1695422
+ ],
+ [
+ 9.4941349,
+ 50.2435376
+ ],
+ [
+ 9.6140309,
+ 50.221625
+ ],
+ [
+ 9.6654148,
+ 50.2353216
+ ],
+ [
+ 9.6354408,
+ 50.2490142
+ ],
+ [
+ 9.6675558,
+ 50.2722826
+ ],
+ [
+ 9.7424908,
+ 50.3092151
+ ],
+ [
+ 9.7296448,
+ 50.3584137
+ ],
+ [
+ 9.7703238,
+ 50.4293885
+ ],
+ [
+ 9.8688097,
+ 50.4007384
+ ],
+ [
+ 9.9180527,
+ 50.4089259
+ ],
+ [
+ 10.0358076,
+ 50.479825
+ ],
+ [
+ 10.0379486,
+ 50.5111504
+ ],
+ [
+ 10.1235886,
+ 50.568462
+ ]
+ ]
+ ]
+ },
+ {
+ "id": "AGIV",
"name": "Belgium AGIV Orthophoto Flanders",
"type": "tms",
"template": "http://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}",
@@ -2167,18 +3389,584 @@
"best": true
},
{
+ "id": "Benin_cotonou_pleiade_2016",
+ "name": "Benin: Cotonou Pleiade 2016",
+ "type": "tms",
+ "template": "http://geoxxx.agrocampus-ouest.fr/owsifl/gwc/service/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Benin:cotonou_pleiade_2016&STYLE=&FORMAT=image/jpeg&tileMatrixSet=EPSG:3857&tileMatrix=EPSG:3857:{zoom}&tileRow={y}&tileCol={x}",
+ "scaleExtent": [
+ 0,
+ 21
+ ],
+ "polygon": [
+ [
+ [
+ 2.31953818544,
+ 6.55745092536
+ ],
+ [
+ 2.33645249928,
+ 6.56023631702
+ ],
+ [
+ 2.36377172444,
+ 6.56211241002
+ ],
+ [
+ 2.36737717181,
+ 6.56067658005
+ ],
+ [
+ 2.37777373205,
+ 6.54939665325
+ ],
+ [
+ 2.3777926612,
+ 6.53484752744
+ ],
+ [
+ 2.36994151563,
+ 6.4933195729
+ ],
+ [
+ 2.37038356708,
+ 6.45527010853
+ ],
+ [
+ 2.36958186167,
+ 6.45269435578
+ ],
+ [
+ 2.36188103586,
+ 6.44177160245
+ ],
+ [
+ 2.35391742884,
+ 6.40545220189
+ ],
+ [
+ 2.3674929737,
+ 6.40149524022
+ ],
+ [
+ 2.39525870424,
+ 6.40071623744
+ ],
+ [
+ 2.40128040262,
+ 6.40374371884
+ ],
+ [
+ 2.40587684694,
+ 6.40340733291
+ ],
+ [
+ 2.42045897749,
+ 6.39382909301
+ ],
+ [
+ 2.42485054154,
+ 6.3979366042
+ ],
+ [
+ 2.42949152505,
+ 6.39887495342
+ ],
+ [
+ 2.43625257397,
+ 6.39628121034
+ ],
+ [
+ 2.43958410532,
+ 6.40041525877
+ ],
+ [
+ 2.44439433776,
+ 6.40189359345
+ ],
+ [
+ 2.45375647532,
+ 6.39899446003
+ ],
+ [
+ 2.47144744127,
+ 6.3963166199
+ ],
+ [
+ 2.48162019208,
+ 6.3910582748
+ ],
+ [
+ 2.49453210303,
+ 6.38739776192
+ ],
+ [
+ 2.50893162289,
+ 6.38888498676
+ ],
+ [
+ 2.50719014059,
+ 6.39228876781
+ ],
+ [
+ 2.50120407357,
+ 6.39162040687
+ ],
+ [
+ 2.4963025358,
+ 6.39521449649
+ ],
+ [
+ 2.49509997769,
+ 6.40123077776
+ ],
+ [
+ 2.49543290813,
+ 6.40400928653
+ ],
+ [
+ 2.49830345887,
+ 6.41022131795
+ ],
+ [
+ 2.50191336015,
+ 6.41281720321
+ ],
+ [
+ 2.5108701911,
+ 6.41321333458
+ ],
+ [
+ 2.52218648559,
+ 6.40849403999
+ ],
+ [
+ 2.53352059576,
+ 6.4051656109
+ ],
+ [
+ 2.53809922441,
+ 6.40960941297
+ ],
+ [
+ 2.5411100736,
+ 6.41090182623
+ ],
+ [
+ 2.54650822333,
+ 6.41099034757
+ ],
+ [
+ 2.54654385468,
+ 6.40651114868
+ ],
+ [
+ 2.57638511144,
+ 6.40723702943
+ ],
+ [
+ 2.57642074279,
+ 6.41176933466
+ ],
+ [
+ 2.58575615684,
+ 6.41196408125
+ ],
+ [
+ 2.58867792765,
+ 6.41095493903
+ ],
+ [
+ 2.60877400982,
+ 6.39413560832
+ ],
+ [
+ 2.62569890171,
+ 6.39487921149
+ ],
+ [
+ 2.64554556441,
+ 6.39728706193
+ ],
+ [
+ 2.65039142819,
+ 6.39339200408
+ ],
+ [
+ 2.6536650586,
+ 6.36823275735
+ ],
+ [
+ 2.6431181786,
+ 6.3665949733
+ ],
+ [
+ 2.61251084779,
+ 6.3628944474
+ ],
+ [
+ 2.56867983171,
+ 6.3607044406
+ ],
+ [
+ 2.54682890549,
+ 6.36055393954
+ ],
+ [
+ 2.54687344468,
+ 6.35546343647
+ ],
+ [
+ 2.50206702036,
+ 6.35461353888
+ ],
+ [
+ 2.47064016846,
+ 6.35595920942
+ ],
+ [
+ 2.46777184468,
+ 6.35202842507
+ ],
+ [
+ 2.46422652522,
+ 6.35020467258
+ ],
+ [
+ 2.45253944198,
+ 6.35006302163
+ ],
+ [
+ 2.4511320036,
+ 6.34813302357
+ ],
+ [
+ 2.44737289603,
+ 6.34629155079
+ ],
+ [
+ 2.43757427441,
+ 6.34653944174
+ ],
+ [
+ 2.43297783009,
+ 6.33841209773
+ ],
+ [
+ 2.43016295333,
+ 6.33706638135
+ ],
+ [
+ 2.42244876576,
+ 6.33706638135
+ ],
+ [
+ 2.39236031651,
+ 6.34114999999
+ ],
+ [
+ 2.39315311407,
+ 6.34114999999
+ ],
+ [
+ 2.3652849434,
+ 6.34445228474
+ ],
+ [
+ 2.35386064137,
+ 6.34529777247
+ ],
+ [
+ 2.34377474198,
+ 6.34457844399
+ ],
+ [
+ 2.34093759563,
+ 6.34533982549
+ ],
+ [
+ 2.31086028117,
+ 6.36567095094
+ ],
+ [
+ 2.28434610184,
+ 6.37465215648
+ ],
+ [
+ 2.28146887022,
+ 6.37761782314
+ ],
+ [
+ 2.27599054995,
+ 6.39517244756
+ ],
+ [
+ 2.27611525968,
+ 6.39819996182
+ ],
+ [
+ 2.31528747657,
+ 6.4926104105
+ ],
+ [
+ 2.31579967725,
+ 6.5530659484
+ ]
+ ],
+ [
+ [
+ 1.69563043958,
+ 6.25076170066
+ ],
+ [
+ 1.70009994721,
+ 6.24711901182
+ ],
+ [
+ 1.70417862346,
+ 6.24697179839
+ ],
+ [
+ 1.75874803806,
+ 6.25835802546
+ ],
+ [
+ 1.77079143482,
+ 6.25995187823
+ ],
+ [
+ 1.81712109941,
+ 6.27161341959
+ ],
+ [
+ 1.84456614779,
+ 6.27656750346
+ ],
+ [
+ 1.85767848509,
+ 6.27944518918
+ ],
+ [
+ 1.88843363033,
+ 6.28325588467
+ ],
+ [
+ 1.90481876292,
+ 6.28594870029
+ ],
+ [
+ 1.90617692982,
+ 6.29435189983
+ ],
+ [
+ 1.90083111364,
+ 6.29721233234
+ ],
+ [
+ 1.89880903445,
+ 6.29953873942
+ ],
+ [
+ 1.89404334121,
+ 6.30085024405
+ ],
+ [
+ 1.89047742238,
+ 6.29969866569
+ ],
+ [
+ 1.88747882146,
+ 6.29636150888
+ ],
+ [
+ 1.88344050885,
+ 6.29622344016
+ ],
+ [
+ 1.86969682855,
+ 6.29226563906
+ ],
+ [
+ 1.8564007671,
+ 6.29198230539
+ ],
+ [
+ 1.85206654725,
+ 6.28674503171
+ ],
+ [
+ 1.84991419093,
+ 6.28906373821
+ ],
+ [
+ 1.84691224958,
+ 6.29202989661
+ ],
+ [
+ 1.8435272712,
+ 6.29332703219
+ ],
+ [
+ 1.84040507404,
+ 6.29315437611
+ ],
+ [
+ 1.83626738336,
+ 6.29129499924
+ ],
+ [
+ 1.83409832485,
+ 6.28733273348
+ ],
+ [
+ 1.83416513363,
+ 6.2851988527
+ ],
+ [
+ 1.83229560117,
+ 6.28456355663
+ ],
+ [
+ 1.82785949792,
+ 6.28644177291
+ ],
+ [
+ 1.82182443779,
+ 6.2908379014
+ ],
+ [
+ 1.81562903657,
+ 6.28997904337
+ ],
+ [
+ 1.81211044063,
+ 6.29143113241
+ ],
+ [
+ 1.80757635117,
+ 6.29570768815
+ ],
+ [
+ 1.80471693522,
+ 6.29692955475
+ ],
+ [
+ 1.80073513171,
+ 6.29709778253
+ ],
+ [
+ 1.79775991387,
+ 6.29612383144
+ ],
+ [
+ 1.79625448928,
+ 6.29491967121
+ ],
+ [
+ 1.79490049792,
+ 6.28965143736
+ ],
+ [
+ 1.79641483036,
+ 6.28608317469
+ ],
+ [
+ 1.80097564333,
+ 6.28338261222
+ ],
+ [
+ 1.79566657198,
+ 6.28013306439
+ ],
+ [
+ 1.79156005874,
+ 6.28174455931
+ ],
+ [
+ 1.78498607441,
+ 6.28122215216
+ ],
+ [
+ 1.78092410036,
+ 6.27752986974
+ ],
+ [
+ 1.77588226414,
+ 6.27550220232
+ ],
+ [
+ 1.76744654171,
+ 6.27696318619
+ ],
+ [
+ 1.75653444036,
+ 6.27496207997
+ ],
+ [
+ 1.74833032171,
+ 6.27238985028
+ ],
+ [
+ 1.74761769468,
+ 6.27726423691
+ ],
+ [
+ 1.74572477914,
+ 6.27938486862
+ ],
+ [
+ 1.73948038482,
+ 6.27984972411
+ ],
+ [
+ 1.73680357955,
+ 6.27761398678
+ ],
+ [
+ 1.73572127725,
+ 6.27891558552
+ ],
+ [
+ 1.72901812928,
+ 6.27911038233
+ ],
+ [
+ 1.72435487617,
+ 6.27422273126
+ ],
+ [
+ 1.72449294765,
+ 6.2678607472
+ ],
+ [
+ 1.72555966124,
+ 6.26683029328
+ ],
+ [
+ 1.69933944056,
+ 6.26159387355
+ ],
+ [
+ 1.69572953928,
+ 6.25725948175
+ ]
+ ]
+ ],
+ "best": true
+ },
+ {
+ "id": "Bing",
"name": "Bing aerial imagery",
"type": "bing",
- "description": "Satellite and aerial imagery.",
"template": "http://www.bing.com/maps/",
+ "description": "Satellite and aerial imagery.",
"scaleExtent": [
0,
22
],
- "id": "Bing",
"default": true
},
{
+ "id": "British_Columbia_Mosaic",
"name": "British Columbia Mosaic",
"type": "tms",
"template": "http://{switch:a,b,c,d}.imagery.paulnorman.ca/tiles/bc_mosaic/{zoom}/{x}/{y}.png",
@@ -3203,6 +4991,10 @@
[
-123.3179861,
49.3254065
+ ],
+ [
+ -123.3176032,
+ 49.3272567
]
]
],
@@ -3210,7 +5002,8 @@
"terms_text": "Copyright Province of British Columbia, City of Surrey"
},
{
- "name": "Cambodia, Laos, Thailand, Vietnam bilingual",
+ "id": "osm-cambodia_laos_thailand_vietnam-bilingual",
+ "name": "Cambodia, Laos, Thailand, Vietnam, Myanmar bilingual",
"type": "tms",
"template": "http://{switch:a,b,c,d}.tile.osm-tools.org/osm_then/{zoom}/{x}/{y}.png",
"scaleExtent": [
@@ -3220,24 +5013,148 @@
"polygon": [
[
[
- 97.3,
- 5.6
+ 92.1023798,
+ 20.8135629
],
[
- 97.3,
- 23.4
+ 93.5690546,
+ 24.0975527
],
[
- 109.6,
- 23.4
+ 94.1733026,
+ 23.9269484
],
[
- 109.6,
- 5.6
+ 95.1950312,
+ 26.707274
],
[
- 97.3,
- 5.6
+ 96.7550898,
+ 27.5286657
+ ],
+ [
+ 97.5845575,
+ 28.5805966
+ ],
+ [
+ 98.738122,
+ 27.514051
+ ],
+ [
+ 98.7436151,
+ 25.8799151
+ ],
+ [
+ 97.6779413,
+ 24.7577376
+ ],
+ [
+ 97.9635858,
+ 24.042382
+ ],
+ [
+ 98.8205194,
+ 24.1627239
+ ],
+ [
+ 99.5236444,
+ 22.9593356
+ ],
+ [
+ 100.3695917,
+ 21.5051376
+ ],
+ [
+ 101.7923212,
+ 22.4830518
+ ],
+ [
+ 105.3628778,
+ 23.3331079
+ ],
+ [
+ 106.8185663,
+ 22.8480137
+ ],
+ [
+ 108.1973505,
+ 21.3619661
+ ],
+ [
+ 107.4389505,
+ 18.8539792
+ ],
+ [
+ 117.1453714,
+ 7.4656173
+ ],
+ [
+ 119.6172953,
+ 5.2875389
+ ],
+ [
+ 118.1231546,
+ 4.0502277
+ ],
+ [
+ 117.2552347,
+ 4.3624942
+ ],
+ [
+ 115.8654642,
+ 4.3460623
+ ],
+ [
+ 115.5084085,
+ 3.0249771
+ ],
+ [
+ 114.552598,
+ 1.5100953
+ ],
+ [
+ 113.5418558,
+ 1.2574836
+ ],
+ [
+ 112.9650736,
+ 1.5704982
+ ],
+ [
+ 112.2454691,
+ 1.5100953
+ ],
+ [
+ 111.67418,
+ 1.0158321
+ ],
+ [
+ 110.4546976,
+ 0.9004918
+ ],
+ [
+ 109.4988871,
+ 1.9218969
+ ],
+ [
+ 103.2256937,
+ 1.1256762
+ ],
+ [
+ 100.4626322,
+ 3.2388904
+ ],
+ [
+ 97.6721048,
+ 8.0588831
+ ],
+ [
+ 93.892808,
+ 15.9398659
+ ],
+ [
+ 92.1023798,
+ 20.8135629
]
]
],
@@ -3245,6 +5162,1618 @@
"terms_text": "© osm-tools.org & OpenStreetMap contributors, CC-BY-SA"
},
{
+ "id": "South_Africa-CapeTown-Aerial-2013",
+ "name": "City of Cape Town 2013 Aerial",
+ "type": "tms",
+ "template": "http://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg",
+ "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance",
+ "scaleExtent": [
+ 1,
+ 21
+ ],
+ "polygon": [
+ [
+ [
+ 18.4486565,
+ -33.893623
+ ],
+ [
+ 18.4485868,
+ -33.902644
+ ],
+ [
+ 18.4702,
+ -33.9027665
+ ],
+ [
+ 18.4813902,
+ -33.8472383
+ ],
+ [
+ 18.4492466,
+ -33.801069
+ ],
+ [
+ 18.4281537,
+ -33.7356408
+ ],
+ [
+ 18.43914,
+ -33.7177232
+ ],
+ [
+ 18.4071895,
+ -33.6589917
+ ],
+ [
+ 18.3322379,
+ -33.5775191
+ ],
+ [
+ 18.3324525,
+ -33.5504487
+ ],
+ [
+ 18.353996,
+ -33.5505918
+ ],
+ [
+ 18.3542535,
+ -33.5236025
+ ],
+ [
+ 18.3652398,
+ -33.5236561
+ ],
+ [
+ 18.3650252,
+ -33.5148009
+ ],
+ [
+ 18.3760115,
+ -33.5147652
+ ],
+ [
+ 18.3760545,
+ -33.5058017
+ ],
+ [
+ 18.4296557,
+ -33.5059449
+ ],
+ [
+ 18.4296986,
+ -33.4878541
+ ],
+ [
+ 18.4404919,
+ -33.4878899
+ ],
+ [
+ 18.4405991,
+ -33.4698849
+ ],
+ [
+ 18.4943721,
+ -33.4700997
+ ],
+ [
+ 18.4943292,
+ -33.4791564
+ ],
+ [
+ 18.5158297,
+ -33.4791743
+ ],
+ [
+ 18.5157439,
+ -33.4881941
+ ],
+ [
+ 18.5264727,
+ -33.4883015
+ ],
+ [
+ 18.5263225,
+ -33.5243538
+ ],
+ [
+ 18.5479304,
+ -33.5244253
+ ],
+ [
+ 18.5479519,
+ -33.5153913
+ ],
+ [
+ 18.5693666,
+ -33.5154987
+ ],
+ [
+ 18.5693666,
+ -33.524479
+ ],
+ [
+ 18.5801169,
+ -33.5245327
+ ],
+ [
+ 18.580074,
+ -33.5425978
+ ],
+ [
+ 18.5907814,
+ -33.5425978
+ ],
+ [
+ 18.5907385,
+ -33.5606413
+ ],
+ [
+ 18.5799453,
+ -33.5605341
+ ],
+ [
+ 18.5798809,
+ -33.569617
+ ],
+ [
+ 18.5906956,
+ -33.569617
+ ],
+ [
+ 18.5906526,
+ -33.5786811
+ ],
+ [
+ 18.6230108,
+ -33.5787347
+ ],
+ [
+ 18.622925,
+ -33.5877264
+ ],
+ [
+ 18.6659691,
+ -33.5878872
+ ],
+ [
+ 18.6659262,
+ -33.614928
+ ],
+ [
+ 18.6767194,
+ -33.6149726
+ ],
+ [
+ 18.6765772,
+ -33.6510279
+ ],
+ [
+ 18.687298,
+ -33.6510167
+ ],
+ [
+ 18.6873409,
+ -33.6600365
+ ],
+ [
+ 18.6980697,
+ -33.6600901
+ ],
+ [
+ 18.6980697,
+ -33.6690733
+ ],
+ [
+ 18.7520358,
+ -33.6692519
+ ],
+ [
+ 18.7520787,
+ -33.6421924
+ ],
+ [
+ 18.7736437,
+ -33.642246
+ ],
+ [
+ 18.773708,
+ -33.6331886
+ ],
+ [
+ 18.8274595,
+ -33.6332958
+ ],
+ [
+ 18.8275239,
+ -33.6603044
+ ],
+ [
+ 18.8166663,
+ -33.6602866
+ ],
+ [
+ 18.8166019,
+ -33.6783233
+ ],
+ [
+ 18.8058087,
+ -33.6783055
+ ],
+ [
+ 18.8058087,
+ -33.7053892
+ ],
+ [
+ 18.8273951,
+ -33.7054428
+ ],
+ [
+ 18.8273308,
+ -33.7234701
+ ],
+ [
+ 18.838124,
+ -33.7234344
+ ],
+ [
+ 18.8380381,
+ -33.7413865
+ ],
+ [
+ 18.8165161,
+ -33.7413687
+ ],
+ [
+ 18.8163659,
+ -33.7955057
+ ],
+ [
+ 18.8055941,
+ -33.7955057
+ ],
+ [
+ 18.8055083,
+ -33.8135675
+ ],
+ [
+ 18.794758,
+ -33.8135497
+ ],
+ [
+ 18.7947151,
+ -33.8315364
+ ],
+ [
+ 18.7731072,
+ -33.8315186
+ ],
+ [
+ 18.7731287,
+ -33.8405194
+ ],
+ [
+ 18.7623569,
+ -33.8405194
+ ],
+ [
+ 18.7622711,
+ -33.903588
+ ],
+ [
+ 18.7514564,
+ -33.9035167
+ ],
+ [
+ 18.7510809,
+ -33.9847823
+ ],
+ [
+ 18.7619063,
+ -33.9848001
+ ],
+ [
+ 18.7617776,
+ -34.0298785
+ ],
+ [
+ 18.772603,
+ -34.0298963
+ ],
+ [
+ 18.7725815,
+ -34.0389073
+ ],
+ [
+ 18.7940338,
+ -34.0389406
+ ],
+ [
+ 18.7938756,
+ -34.0406987
+ ],
+ [
+ 18.7984461,
+ -34.0411855
+ ],
+ [
+ 18.8032445,
+ -34.0411788
+ ],
+ [
+ 18.8034055,
+ -34.0389206
+ ],
+ [
+ 18.8159367,
+ -34.038974
+ ],
+ [
+ 18.8163444,
+ -34.0299318
+ ],
+ [
+ 18.8379845,
+ -34.0316479
+ ],
+ [
+ 18.8380006,
+ -34.030003
+ ],
+ [
+ 18.8484183,
+ -34.0300074
+ ],
+ [
+ 18.8484666,
+ -34.0218491
+ ],
+ [
+ 18.859925,
+ -34.0234675
+ ],
+ [
+ 18.8598606,
+ -34.0210132
+ ],
+ [
+ 18.868272,
+ -34.0220803
+ ],
+ [
+ 18.8681862,
+ -34.0211733
+ ],
+ [
+ 18.8854596,
+ -34.0234319
+ ],
+ [
+ 18.8851806,
+ -34.0213156
+ ],
+ [
+ 18.9025184,
+ -34.021031
+ ],
+ [
+ 18.9025828,
+ -34.0119958
+ ],
+ [
+ 18.9134189,
+ -34.0119958
+ ],
+ [
+ 18.9134833,
+ -33.9939582
+ ],
+ [
+ 18.9458844,
+ -33.9940294
+ ],
+ [
+ 18.9458629,
+ -34.003102
+ ],
+ [
+ 18.9674279,
+ -34.0029953
+ ],
+ [
+ 18.9674708,
+ -34.0120848
+ ],
+ [
+ 18.9782211,
+ -34.0120848
+ ],
+ [
+ 18.9783284,
+ -34.0211377
+ ],
+ [
+ 18.9891431,
+ -34.0211377
+ ],
+ [
+ 18.9891645,
+ -34.039134
+ ],
+ [
+ 19.0000167,
+ -34.0391251
+ ],
+ [
+ 19.0000221,
+ -34.0571798
+ ],
+ [
+ 19.0108368,
+ -34.0572509
+ ],
+ [
+ 19.0107939,
+ -34.0841436
+ ],
+ [
+ 19.0000007,
+ -34.0841258
+ ],
+ [
+ 19.0000221,
+ -34.0931977
+ ],
+ [
+ 18.9891538,
+ -34.0931711
+ ],
+ [
+ 18.9891753,
+ -34.1021976
+ ],
+ [
+ 18.9783177,
+ -34.1021798
+ ],
+ [
+ 18.9783177,
+ -34.111232
+ ],
+ [
+ 18.967503,
+ -34.1112143
+ ],
+ [
+ 18.9674923,
+ -34.1292536
+ ],
+ [
+ 18.9566025,
+ -34.1292358
+ ],
+ [
+ 18.9565596,
+ -34.1382408
+ ],
+ [
+ 18.9674172,
+ -34.1383118
+ ],
+ [
+ 18.9674172,
+ -34.1473157
+ ],
+ [
+ 18.9891753,
+ -34.147298
+ ],
+ [
+ 18.9891753,
+ -34.165303
+ ],
+ [
+ 18.9782748,
+ -34.1652852
+ ],
+ [
+ 18.9783177,
+ -34.1742863
+ ],
+ [
+ 18.9674172,
+ -34.1742685
+ ],
+ [
+ 18.9674601,
+ -34.1833042
+ ],
+ [
+ 18.9565596,
+ -34.1833219
+ ],
+ [
+ 18.9565596,
+ -34.1923565
+ ],
+ [
+ 18.9457449,
+ -34.192321
+ ],
+ [
+ 18.945702,
+ -34.2013192
+ ],
+ [
+ 18.9348659,
+ -34.2013725
+ ],
+ [
+ 18.9348873,
+ -34.2193305
+ ],
+ [
+ 18.9023575,
+ -34.2193482
+ ],
+ [
+ 18.9017567,
+ -34.2362557
+ ],
+ [
+ 18.8878414,
+ -34.2373467
+ ],
+ [
+ 18.8894185,
+ -34.2554123
+ ],
+ [
+ 18.8805887,
+ -34.2553414
+ ],
+ [
+ 18.8792744,
+ -34.2644348
+ ],
+ [
+ 18.8696882,
+ -34.2644126
+ ],
+ [
+ 18.8697097,
+ -34.2734386
+ ],
+ [
+ 18.8371369,
+ -34.2734208
+ ],
+ [
+ 18.8371155,
+ -34.2643771
+ ],
+ [
+ 18.848016,
+ -34.2644037
+ ],
+ [
+ 18.8480267,
+ -34.237391
+ ],
+ [
+ 18.8154861,
+ -34.210281
+ ],
+ [
+ 18.8156471,
+ -34.1741265
+ ],
+ [
+ 18.8548824,
+ -34.1562743
+ ],
+ [
+ 18.7617561,
+ -34.0840547
+ ],
+ [
+ 18.6533734,
+ -34.077479
+ ],
+ [
+ 18.4797433,
+ -34.1101217
+ ],
+ [
+ 18.4463713,
+ -34.1342269
+ ],
+ [
+ 18.4444508,
+ -34.1640868
+ ],
+ [
+ 18.4359965,
+ -34.1640513
+ ],
+ [
+ 18.435975,
+ -34.1820172
+ ],
+ [
+ 18.4468111,
+ -34.182106
+ ],
+ [
+ 18.4467253,
+ -34.1911052
+ ],
+ [
+ 18.4659299,
+ -34.1912117
+ ],
+ [
+ 18.4866151,
+ -34.2453911
+ ],
+ [
+ 18.4788904,
+ -34.2543659
+ ],
+ [
+ 18.4860036,
+ -34.2543748
+ ],
+ [
+ 18.4677109,
+ -34.2994116
+ ],
+ [
+ 18.4892222,
+ -34.3445792
+ ],
+ [
+ 18.500112,
+ -34.3445837
+ ],
+ [
+ 18.4999189,
+ -34.3626174
+ ],
+ [
+ 18.467432,
+ -34.3625111
+ ],
+ [
+ 18.4673676,
+ -34.3534947
+ ],
+ [
+ 18.3916005,
+ -34.3170651
+ ],
+ [
+ 18.3917722,
+ -34.2900161
+ ],
+ [
+ 18.3701643,
+ -34.2808678
+ ],
+ [
+ 18.370682,
+ -34.2178866
+ ],
+ [
+ 18.3492324,
+ -34.1816178
+ ],
+ [
+ 18.3274743,
+ -34.1814936
+ ],
+ [
+ 18.3276674,
+ -34.1634565
+ ],
+ [
+ 18.3118746,
+ -34.1543832
+ ],
+ [
+ 18.3114025,
+ -34.1435331
+ ],
+ [
+ 18.3236656,
+ -34.1346886
+ ],
+ [
+ 18.3499297,
+ -34.1042053
+ ],
+ [
+ 18.3393189,
+ -34.0882843
+ ],
+ [
+ 18.3612487,
+ -34.0597219
+ ],
+ [
+ 18.3550474,
+ -34.0553843
+ ],
+ [
+ 18.3427522,
+ -34.064326
+ ],
+ [
+ 18.3199963,
+ -34.0644326
+ ],
+ [
+ 18.296071,
+ -34.045126
+ ],
+ [
+ 18.3068213,
+ -34.0252637
+ ],
+ [
+ 18.3287725,
+ -34.0191992
+ ],
+ [
+ 18.3289227,
+ -34.001252
+ ],
+ [
+ 18.3397374,
+ -34.0012698
+ ],
+ [
+ 18.3398017,
+ -33.9866282
+ ],
+ [
+ 18.3628687,
+ -33.9735145
+ ],
+ [
+ 18.3638129,
+ -33.9292474
+ ],
+ [
+ 18.3726212,
+ -33.9292741
+ ],
+ [
+ 18.3728358,
+ -33.917763
+ ],
+ [
+ 18.3977267,
+ -33.8933469
+ ],
+ [
+ 18.4486565,
+ -33.893623
+ ]
+ ]
+ ],
+ "terms_url": "https://www.capetown.gov.za",
+ "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY"
+ },
+ {
+ "id": "South_Africa-CapeTown-Aerial",
+ "name": "City of Cape Town 2015 Aerial",
+ "type": "tms",
+ "template": "http://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg",
+ "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance",
+ "scaleExtent": [
+ 1,
+ 21
+ ],
+ "polygon": [
+ [
+ [
+ 18.4486565,
+ -33.893623
+ ],
+ [
+ 18.4485868,
+ -33.902644
+ ],
+ [
+ 18.4702,
+ -33.9027665
+ ],
+ [
+ 18.4813902,
+ -33.8472383
+ ],
+ [
+ 18.4492466,
+ -33.801069
+ ],
+ [
+ 18.4281537,
+ -33.7356408
+ ],
+ [
+ 18.43914,
+ -33.7177232
+ ],
+ [
+ 18.4071895,
+ -33.6589917
+ ],
+ [
+ 18.3322379,
+ -33.5775191
+ ],
+ [
+ 18.3324525,
+ -33.5504487
+ ],
+ [
+ 18.353996,
+ -33.5505918
+ ],
+ [
+ 18.3542535,
+ -33.5236025
+ ],
+ [
+ 18.3652398,
+ -33.5236561
+ ],
+ [
+ 18.3650252,
+ -33.5148009
+ ],
+ [
+ 18.3760115,
+ -33.5147652
+ ],
+ [
+ 18.3760545,
+ -33.5058017
+ ],
+ [
+ 18.4296557,
+ -33.5059449
+ ],
+ [
+ 18.4296986,
+ -33.4878541
+ ],
+ [
+ 18.4404919,
+ -33.4878899
+ ],
+ [
+ 18.4405991,
+ -33.4698849
+ ],
+ [
+ 18.4943721,
+ -33.4700997
+ ],
+ [
+ 18.4943292,
+ -33.4791564
+ ],
+ [
+ 18.5158297,
+ -33.4791743
+ ],
+ [
+ 18.5157439,
+ -33.4881941
+ ],
+ [
+ 18.5264727,
+ -33.4883015
+ ],
+ [
+ 18.5263225,
+ -33.5243538
+ ],
+ [
+ 18.5479304,
+ -33.5244253
+ ],
+ [
+ 18.5479519,
+ -33.5153913
+ ],
+ [
+ 18.5693666,
+ -33.5154987
+ ],
+ [
+ 18.5693666,
+ -33.524479
+ ],
+ [
+ 18.5801169,
+ -33.5245327
+ ],
+ [
+ 18.580074,
+ -33.5425978
+ ],
+ [
+ 18.5907814,
+ -33.5425978
+ ],
+ [
+ 18.5907385,
+ -33.5606413
+ ],
+ [
+ 18.5799453,
+ -33.5605341
+ ],
+ [
+ 18.5798809,
+ -33.569617
+ ],
+ [
+ 18.5906956,
+ -33.569617
+ ],
+ [
+ 18.5906526,
+ -33.5786811
+ ],
+ [
+ 18.6230108,
+ -33.5787347
+ ],
+ [
+ 18.622925,
+ -33.5877264
+ ],
+ [
+ 18.6659691,
+ -33.5878872
+ ],
+ [
+ 18.6659262,
+ -33.614928
+ ],
+ [
+ 18.6767194,
+ -33.6149726
+ ],
+ [
+ 18.6765772,
+ -33.6510279
+ ],
+ [
+ 18.687298,
+ -33.6510167
+ ],
+ [
+ 18.6873409,
+ -33.6600365
+ ],
+ [
+ 18.6980697,
+ -33.6600901
+ ],
+ [
+ 18.6980697,
+ -33.6690733
+ ],
+ [
+ 18.7520358,
+ -33.6692519
+ ],
+ [
+ 18.7520787,
+ -33.6421924
+ ],
+ [
+ 18.7736437,
+ -33.642246
+ ],
+ [
+ 18.773708,
+ -33.6331886
+ ],
+ [
+ 18.8274595,
+ -33.6332958
+ ],
+ [
+ 18.8275239,
+ -33.6603044
+ ],
+ [
+ 18.8166663,
+ -33.6602866
+ ],
+ [
+ 18.8166019,
+ -33.6783233
+ ],
+ [
+ 18.8058087,
+ -33.6783055
+ ],
+ [
+ 18.8058087,
+ -33.7053892
+ ],
+ [
+ 18.8273951,
+ -33.7054428
+ ],
+ [
+ 18.8273308,
+ -33.7234701
+ ],
+ [
+ 18.838124,
+ -33.7234344
+ ],
+ [
+ 18.8380381,
+ -33.7413865
+ ],
+ [
+ 18.8165161,
+ -33.7413687
+ ],
+ [
+ 18.8163659,
+ -33.7955057
+ ],
+ [
+ 18.8055941,
+ -33.7955057
+ ],
+ [
+ 18.8055083,
+ -33.8135675
+ ],
+ [
+ 18.794758,
+ -33.8135497
+ ],
+ [
+ 18.7947151,
+ -33.8315364
+ ],
+ [
+ 18.7731072,
+ -33.8315186
+ ],
+ [
+ 18.7731287,
+ -33.8405194
+ ],
+ [
+ 18.7623569,
+ -33.8405194
+ ],
+ [
+ 18.7622711,
+ -33.903588
+ ],
+ [
+ 18.7514564,
+ -33.9035167
+ ],
+ [
+ 18.7510809,
+ -33.9847823
+ ],
+ [
+ 18.7619063,
+ -33.9848001
+ ],
+ [
+ 18.7617776,
+ -34.0298785
+ ],
+ [
+ 18.772603,
+ -34.0298963
+ ],
+ [
+ 18.7725815,
+ -34.0389073
+ ],
+ [
+ 18.7940338,
+ -34.0389406
+ ],
+ [
+ 18.7938756,
+ -34.0406987
+ ],
+ [
+ 18.7984461,
+ -34.0411855
+ ],
+ [
+ 18.8032445,
+ -34.0411788
+ ],
+ [
+ 18.8034055,
+ -34.0389206
+ ],
+ [
+ 18.8159367,
+ -34.038974
+ ],
+ [
+ 18.8163444,
+ -34.0299318
+ ],
+ [
+ 18.8379845,
+ -34.0316479
+ ],
+ [
+ 18.8380006,
+ -34.030003
+ ],
+ [
+ 18.8484183,
+ -34.0300074
+ ],
+ [
+ 18.8484666,
+ -34.0218491
+ ],
+ [
+ 18.859925,
+ -34.0234675
+ ],
+ [
+ 18.8598606,
+ -34.0210132
+ ],
+ [
+ 18.868272,
+ -34.0220803
+ ],
+ [
+ 18.8681862,
+ -34.0211733
+ ],
+ [
+ 18.8854596,
+ -34.0234319
+ ],
+ [
+ 18.8851806,
+ -34.0213156
+ ],
+ [
+ 18.9025184,
+ -34.021031
+ ],
+ [
+ 18.9025828,
+ -34.0119958
+ ],
+ [
+ 18.9134189,
+ -34.0119958
+ ],
+ [
+ 18.9134833,
+ -33.9939582
+ ],
+ [
+ 18.9458844,
+ -33.9940294
+ ],
+ [
+ 18.9458629,
+ -34.003102
+ ],
+ [
+ 18.9674279,
+ -34.0029953
+ ],
+ [
+ 18.9674708,
+ -34.0120848
+ ],
+ [
+ 18.9782211,
+ -34.0120848
+ ],
+ [
+ 18.9783284,
+ -34.0211377
+ ],
+ [
+ 18.9891431,
+ -34.0211377
+ ],
+ [
+ 18.9891645,
+ -34.039134
+ ],
+ [
+ 19.0000167,
+ -34.0391251
+ ],
+ [
+ 19.0000221,
+ -34.0571798
+ ],
+ [
+ 19.0108368,
+ -34.0572509
+ ],
+ [
+ 19.0107939,
+ -34.0841436
+ ],
+ [
+ 19.0000007,
+ -34.0841258
+ ],
+ [
+ 19.0000221,
+ -34.0931977
+ ],
+ [
+ 18.9891538,
+ -34.0931711
+ ],
+ [
+ 18.9891753,
+ -34.1021976
+ ],
+ [
+ 18.9783177,
+ -34.1021798
+ ],
+ [
+ 18.9783177,
+ -34.111232
+ ],
+ [
+ 18.967503,
+ -34.1112143
+ ],
+ [
+ 18.9674923,
+ -34.1292536
+ ],
+ [
+ 18.9566025,
+ -34.1292358
+ ],
+ [
+ 18.9565596,
+ -34.1382408
+ ],
+ [
+ 18.9674172,
+ -34.1383118
+ ],
+ [
+ 18.9674172,
+ -34.1473157
+ ],
+ [
+ 18.9891753,
+ -34.147298
+ ],
+ [
+ 18.9891753,
+ -34.165303
+ ],
+ [
+ 18.9782748,
+ -34.1652852
+ ],
+ [
+ 18.9783177,
+ -34.1742863
+ ],
+ [
+ 18.9674172,
+ -34.1742685
+ ],
+ [
+ 18.9674601,
+ -34.1833042
+ ],
+ [
+ 18.9565596,
+ -34.1833219
+ ],
+ [
+ 18.9565596,
+ -34.1923565
+ ],
+ [
+ 18.9457449,
+ -34.192321
+ ],
+ [
+ 18.945702,
+ -34.2013192
+ ],
+ [
+ 18.9348659,
+ -34.2013725
+ ],
+ [
+ 18.9348873,
+ -34.2193305
+ ],
+ [
+ 18.9023575,
+ -34.2193482
+ ],
+ [
+ 18.9017567,
+ -34.2362557
+ ],
+ [
+ 18.8878414,
+ -34.2373467
+ ],
+ [
+ 18.8894185,
+ -34.2554123
+ ],
+ [
+ 18.8805887,
+ -34.2553414
+ ],
+ [
+ 18.8792744,
+ -34.2644348
+ ],
+ [
+ 18.8696882,
+ -34.2644126
+ ],
+ [
+ 18.8697097,
+ -34.2734386
+ ],
+ [
+ 18.8371369,
+ -34.2734208
+ ],
+ [
+ 18.8371155,
+ -34.2643771
+ ],
+ [
+ 18.848016,
+ -34.2644037
+ ],
+ [
+ 18.8480267,
+ -34.237391
+ ],
+ [
+ 18.8154861,
+ -34.210281
+ ],
+ [
+ 18.8156471,
+ -34.1741265
+ ],
+ [
+ 18.8548824,
+ -34.1562743
+ ],
+ [
+ 18.7617561,
+ -34.0840547
+ ],
+ [
+ 18.6533734,
+ -34.077479
+ ],
+ [
+ 18.4797433,
+ -34.1101217
+ ],
+ [
+ 18.4463713,
+ -34.1342269
+ ],
+ [
+ 18.4444508,
+ -34.1640868
+ ],
+ [
+ 18.4359965,
+ -34.1640513
+ ],
+ [
+ 18.435975,
+ -34.1820172
+ ],
+ [
+ 18.4468111,
+ -34.182106
+ ],
+ [
+ 18.4467253,
+ -34.1911052
+ ],
+ [
+ 18.4659299,
+ -34.1912117
+ ],
+ [
+ 18.4866151,
+ -34.2453911
+ ],
+ [
+ 18.4788904,
+ -34.2543659
+ ],
+ [
+ 18.4860036,
+ -34.2543748
+ ],
+ [
+ 18.4677109,
+ -34.2994116
+ ],
+ [
+ 18.4892222,
+ -34.3445792
+ ],
+ [
+ 18.500112,
+ -34.3445837
+ ],
+ [
+ 18.4999189,
+ -34.3626174
+ ],
+ [
+ 18.467432,
+ -34.3625111
+ ],
+ [
+ 18.4673676,
+ -34.3534947
+ ],
+ [
+ 18.3916005,
+ -34.3170651
+ ],
+ [
+ 18.3917722,
+ -34.2900161
+ ],
+ [
+ 18.3701643,
+ -34.2808678
+ ],
+ [
+ 18.370682,
+ -34.2178866
+ ],
+ [
+ 18.3492324,
+ -34.1816178
+ ],
+ [
+ 18.3274743,
+ -34.1814936
+ ],
+ [
+ 18.3276674,
+ -34.1634565
+ ],
+ [
+ 18.3118746,
+ -34.1543832
+ ],
+ [
+ 18.3114025,
+ -34.1435331
+ ],
+ [
+ 18.3236656,
+ -34.1346886
+ ],
+ [
+ 18.3499297,
+ -34.1042053
+ ],
+ [
+ 18.3393189,
+ -34.0882843
+ ],
+ [
+ 18.3612487,
+ -34.0597219
+ ],
+ [
+ 18.3550474,
+ -34.0553843
+ ],
+ [
+ 18.3427522,
+ -34.064326
+ ],
+ [
+ 18.3199963,
+ -34.0644326
+ ],
+ [
+ 18.296071,
+ -34.045126
+ ],
+ [
+ 18.3068213,
+ -34.0252637
+ ],
+ [
+ 18.3287725,
+ -34.0191992
+ ],
+ [
+ 18.3289227,
+ -34.001252
+ ],
+ [
+ 18.3397374,
+ -34.0012698
+ ],
+ [
+ 18.3398017,
+ -33.9866282
+ ],
+ [
+ 18.3628687,
+ -33.9735145
+ ],
+ [
+ 18.3638129,
+ -33.9292474
+ ],
+ [
+ 18.3726212,
+ -33.9292741
+ ],
+ [
+ 18.3728358,
+ -33.917763
+ ],
+ [
+ 18.3977267,
+ -33.8933469
+ ],
+ [
+ 18.4486565,
+ -33.893623
+ ]
+ ]
+ ],
+ "terms_url": "https://www.capetown.gov.za",
+ "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
+ "best": true
+ },
+ {
+ "id": "Czech_CUZK-KM-tms",
"name": "Czech CUZK:KM tiles proxy",
"type": "tms",
"template": "http://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png",
@@ -3885,18 +7414,23 @@
[
14.9864195,
48.7652539
+ ],
+ [
+ 15.0063684,
+ 49.0177392
]
]
],
"overlay": true
},
{
- "name": "Czech ÚHUL:ORTOFOTO tiles proxy",
+ "id": "Czech_RUIAN-budovy",
+ "name": "Czech RUIAN budovy",
"type": "tms",
- "template": "http://osm-{switch:a,b,c}.zby.cz/tiles_uhul.php/{zoom}/{x}/{y}.jpg",
+ "template": "http://tile.poloha.net/budovy/{zoom}/{x}/{y}.png",
"scaleExtent": [
- 13,
- 18
+ 12,
+ 20
],
"polygon": [
[
@@ -4534,9 +8068,657 @@
]
]
],
- "terms_text": "Ortofoto public domain ÚHUL, year 2000"
+ "terms_url": "http://poloha.net/"
},
{
+ "id": "Czech_RUIAN-parcely",
+ "name": "Czech RUIAN parcely",
+ "type": "tms",
+ "template": "http://tile.poloha.net/parcely/{zoom}/{x}/{y}.png",
+ "scaleExtent": [
+ 12,
+ 20
+ ],
+ "polygon": [
+ [
+ [
+ 15.0063684,
+ 49.0177392
+ ],
+ [
+ 15.1559854,
+ 49.0013828
+ ],
+ [
+ 15.190896,
+ 48.9424551
+ ],
+ [
+ 15.3105895,
+ 48.9882938
+ ],
+ [
+ 15.4053469,
+ 48.9752013
+ ],
+ [
+ 15.5400022,
+ 48.9162426
+ ],
+ [
+ 15.7145553,
+ 48.8670572
+ ],
+ [
+ 15.8342488,
+ 48.880178
+ ],
+ [
+ 15.968904,
+ 48.8178233
+ ],
+ [
+ 16.0885976,
+ 48.7455261
+ ],
+ [
+ 16.3978059,
+ 48.7455261
+ ],
+ [
+ 16.4875761,
+ 48.8145394
+ ],
+ [
+ 16.6721036,
+ 48.7784014
+ ],
+ [
+ 16.6820781,
+ 48.7356594
+ ],
+ [
+ 16.9015163,
+ 48.7126294
+ ],
+ [
+ 16.9464014,
+ 48.6237005
+ ],
+ [
+ 17.1159672,
+ 48.8375227
+ ],
+ [
+ 17.2107246,
+ 48.880178
+ ],
+ [
+ 17.4052266,
+ 48.8178233
+ ],
+ [
+ 17.4800351,
+ 48.8539329
+ ],
+ [
+ 17.5299074,
+ 48.8178233
+ ],
+ [
+ 17.7044605,
+ 48.8670572
+ ],
+ [
+ 17.8141796,
+ 48.9359033
+ ],
+ [
+ 17.8840008,
+ 48.9359033
+ ],
+ [
+ 17.9438476,
+ 49.0210099
+ ],
+ [
+ 18.0635412,
+ 49.0340903
+ ],
+ [
+ 18.1184007,
+ 49.0994409
+ ],
+ [
+ 18.1981964,
+ 49.3047337
+ ],
+ [
+ 18.3877112,
+ 49.3339917
+ ],
+ [
+ 18.577226,
+ 49.5091747
+ ],
+ [
+ 18.7567663,
+ 49.4994587
+ ],
+ [
+ 18.8465365,
+ 49.5253637
+ ],
+ [
+ 18.8764598,
+ 49.5706645
+ ],
+ [
+ 18.7966641,
+ 49.693412
+ ],
+ [
+ 18.64206,
+ 49.7095399
+ ],
+ [
+ 18.5872004,
+ 49.8351543
+ ],
+ [
+ 18.6121366,
+ 49.8833809
+ ],
+ [
+ 18.5622643,
+ 49.9347695
+ ],
+ [
+ 18.512392,
+ 49.9058702
+ ],
+ [
+ 18.362775,
+ 49.9540261
+ ],
+ [
+ 18.3278644,
+ 49.9219275
+ ],
+ [
+ 18.2630304,
+ 49.9732751
+ ],
+ [
+ 18.1184007,
+ 50.0053395
+ ],
+ [
+ 18.0635412,
+ 50.075806
+ ],
+ [
+ 17.9139242,
+ 49.9796897
+ ],
+ [
+ 17.779269,
+ 50.0309757
+ ],
+ [
+ 17.714435,
+ 50.1237921
+ ],
+ [
+ 17.6047159,
+ 50.1653411
+ ],
+ [
+ 17.7593201,
+ 50.21962
+ ],
+ [
+ 17.7343839,
+ 50.3439092
+ ],
+ [
+ 17.6396265,
+ 50.2802117
+ ],
+ [
+ 17.3802905,
+ 50.2802117
+ ],
+ [
+ 17.3503671,
+ 50.3439092
+ ],
+ [
+ 17.2805459,
+ 50.3375433
+ ],
+ [
+ 17.1857885,
+ 50.4075214
+ ],
+ [
+ 16.9015163,
+ 50.4615247
+ ],
+ [
+ 16.8666057,
+ 50.4138779
+ ],
+ [
+ 16.9663503,
+ 50.3184404
+ ],
+ [
+ 17.0361715,
+ 50.2323826
+ ],
+ [
+ 16.8366823,
+ 50.21962
+ ],
+ [
+ 16.7120015,
+ 50.1046034
+ ],
+ [
+ 16.5823335,
+ 50.1589513
+ ],
+ [
+ 16.5623846,
+ 50.2387626
+ ],
+ [
+ 16.4327166,
+ 50.3375433
+ ],
+ [
+ 16.3529209,
+ 50.3916263
+ ],
+ [
+ 16.2781124,
+ 50.3916263
+ ],
+ [
+ 16.2082911,
+ 50.4456477
+ ],
+ [
+ 16.3978059,
+ 50.5344899
+ ],
+ [
+ 16.4476782,
+ 50.5978464
+ ],
+ [
+ 16.3529209,
+ 50.670601
+ ],
+ [
+ 16.2382145,
+ 50.6769221
+ ],
+ [
+ 16.2182656,
+ 50.6326561
+ ],
+ [
+ 16.1284954,
+ 50.6832425
+ ],
+ [
+ 16.0486997,
+ 50.6073425
+ ],
+ [
+ 15.988853,
+ 50.7021983
+ ],
+ [
+ 15.8741467,
+ 50.6832425
+ ],
+ [
+ 15.8292616,
+ 50.7653291
+ ],
+ [
+ 15.729517,
+ 50.743243
+ ],
+ [
+ 15.450232,
+ 50.8157725
+ ],
+ [
+ 15.3903852,
+ 50.7747914
+ ],
+ [
+ 15.3804108,
+ 50.8598659
+ ],
+ [
+ 15.2956278,
+ 50.8850434
+ ],
+ [
+ 15.2956278,
+ 50.9887568
+ ],
+ [
+ 15.1709471,
+ 51.0201394
+ ],
+ [
+ 14.9914067,
+ 51.0013124
+ ],
+ [
+ 15.0063684,
+ 50.8881896
+ ],
+ [
+ 14.8417898,
+ 50.8756034
+ ],
+ [
+ 14.7969047,
+ 50.8252246
+ ],
+ [
+ 14.6323261,
+ 50.8567177
+ ],
+ [
+ 14.6622495,
+ 50.9353576
+ ],
+ [
+ 14.5724793,
+ 50.9227841
+ ],
+ [
+ 14.6123772,
+ 50.9856174
+ ],
+ [
+ 14.4976708,
+ 51.0483657
+ ],
+ [
+ 14.4178751,
+ 51.0232765
+ ],
+ [
+ 14.3081561,
+ 51.0671736
+ ],
+ [
+ 14.2532965,
+ 51.0044508
+ ],
+ [
+ 14.4029134,
+ 50.9322145
+ ],
+ [
+ 14.3729901,
+ 50.897627
+ ],
+ [
+ 14.2433221,
+ 50.9070625
+ ],
+ [
+ 14.2084114,
+ 50.844123
+ ],
+ [
+ 14.0338583,
+ 50.8126214
+ ],
+ [
+ 13.9789988,
+ 50.8252246
+ ],
+ [
+ 13.9041903,
+ 50.7968626
+ ],
+ [
+ 13.8742669,
+ 50.740087
+ ],
+ [
+ 13.5351352,
+ 50.7243038
+ ],
+ [
+ 13.530148,
+ 50.6579561
+ ],
+ [
+ 13.4703012,
+ 50.6136722
+ ],
+ [
+ 13.3905055,
+ 50.664279
+ ],
+ [
+ 13.3256715,
+ 50.5883483
+ ],
+ [
+ 13.250863,
+ 50.6105074
+ ],
+ [
+ 13.1960035,
+ 50.5059517
+ ],
+ [
+ 13.0513738,
+ 50.5218084
+ ],
+ [
+ 12.9665909,
+ 50.4106997
+ ],
+ [
+ 12.8269484,
+ 50.4710483
+ ],
+ [
+ 12.7022676,
+ 50.4138779
+ ],
+ [
+ 12.5077656,
+ 50.401164
+ ],
+ [
+ 12.343187,
+ 50.2547088
+ ],
+ [
+ 12.323238,
+ 50.1845054
+ ],
+ [
+ 12.2484296,
+ 50.2738373
+ ],
+ [
+ 12.1736211,
+ 50.3311765
+ ],
+ [
+ 12.0988126,
+ 50.33436
+ ],
+ [
+ 12.1187616,
+ 50.25152
+ ],
+ [
+ 12.2234934,
+ 50.1653411
+ ],
+ [
+ 12.2035445,
+ 50.1237921
+ ],
+ [
+ 12.5027784,
+ 49.9732751
+ ],
+ [
+ 12.4778422,
+ 49.9379795
+ ],
+ [
+ 12.5476634,
+ 49.9155052
+ ],
+ [
+ 12.4678677,
+ 49.8029766
+ ],
+ [
+ 12.408021,
+ 49.7611134
+ ],
+ [
+ 12.4828294,
+ 49.6869593
+ ],
+ [
+ 12.5327017,
+ 49.6869593
+ ],
+ [
+ 12.5177401,
+ 49.6288466
+ ],
+ [
+ 12.6075102,
+ 49.5415474
+ ],
+ [
+ 12.6723442,
+ 49.4378793
+ ],
+ [
+ 12.8119867,
+ 49.3469896
+ ],
+ [
+ 12.9466419,
+ 49.3437405
+ ],
+ [
+ 13.2309141,
+ 49.1288206
+ ],
+ [
+ 13.3256715,
+ 49.1059712
+ ],
+ [
+ 13.4353906,
+ 49.0438984
+ ],
+ [
+ 13.4154417,
+ 48.9948387
+ ],
+ [
+ 13.5002246,
+ 48.949006
+ ],
+ [
+ 13.5650586,
+ 48.9882938
+ ],
+ [
+ 13.6847522,
+ 48.8834577
+ ],
+ [
+ 13.7445989,
+ 48.9031312
+ ],
+ [
+ 13.8243946,
+ 48.7751149
+ ],
+ [
+ 13.8992031,
+ 48.7751149
+ ],
+ [
+ 14.0587945,
+ 48.676418
+ ],
+ [
+ 14.0438328,
+ 48.6302932
+ ],
+ [
+ 14.1435774,
+ 48.5907241
+ ],
+ [
+ 14.3729901,
+ 48.5610269
+ ],
+ [
+ 14.4827091,
+ 48.6500662
+ ],
+ [
+ 14.5774665,
+ 48.607215
+ ],
+ [
+ 14.6273389,
+ 48.6335892
+ ],
+ [
+ 14.7071346,
+ 48.5808269
+ ],
+ [
+ 14.7470324,
+ 48.7027561
+ ],
+ [
+ 14.8118664,
+ 48.7389485
+ ],
+ [
+ 14.8168536,
+ 48.794831
+ ],
+ [
+ 14.9864195,
+ 48.7652539
+ ]
+ ]
+ ],
+ "terms_url": "http://poloha.net/"
+ },
+ {
+ "id": "Duna_2013",
"name": "Danube flood ortophoto 2013",
"type": "tms",
"template": "http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg",
@@ -4588,10 +8770,113 @@
"terms_text": "Fotótérkép.hu"
},
{
+ "id": "Delaware2012Orthophotography",
+ "name": "Delaware 2012 Orthophotography",
+ "type": "tms",
+ "template": "http://whoots.mapwarper.net/tms/{zoom}/{x}/{y}/0/https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2012/ImageServer/WMSServer",
+ "description": "This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware.",
+ "polygon": [
+ [
+ [
+ -75.01770587603,
+ 38.45188674427
+ ],
+ [
+ -75.74173524589,
+ 38.4499581145
+ ],
+ [
+ -75.80699639658,
+ 39.73907123636
+ ],
+ [
+ -75.75558784863,
+ 39.80106251053
+ ],
+ [
+ -75.64692187603,
+ 39.8563815616
+ ],
+ [
+ -75.47114773904,
+ 39.84645578141
+ ],
+ [
+ -75.37725787603,
+ 39.81477822231
+ ],
+ [
+ -75.48746302671,
+ 39.6718115509
+ ],
+ [
+ -75.50901151986,
+ 39.43446011595
+ ],
+ [
+ -75.39326532808,
+ 39.27784018498
+ ],
+ [
+ -75.30707135548,
+ 39.01666513594
+ ],
+ [
+ -75.1931721774,
+ 38.82218696272
+ ],
+ [
+ -75.05341480753,
+ 38.80875503297
+ ],
+ [
+ -75.01770587603,
+ 38.45188674427
+ ]
+ ]
+ ]
+ },
+ {
+ "id": "maaamet.ee-orto",
+ "name": "Estonia Ortho (Maaamet)",
+ "type": "tms",
+ "template": "http://kaart.maakaart.ee/orto/{zoom}/{x}/{y}.jpeg",
+ "scaleExtent": [
+ 14,
+ 20
+ ],
+ "polygon": [
+ [
+ [
+ 21.6940073,
+ 57.5025466
+ ],
+ [
+ 21.6940073,
+ 59.8274564
+ ],
+ [
+ 28.2110546,
+ 59.8274564
+ ],
+ [
+ 28.2110546,
+ 57.5025466
+ ],
+ [
+ 21.6940073,
+ 57.5025466
+ ]
+ ]
+ ],
+ "terms_text": "Maa-Ameti ortofoto "
+ },
+ {
+ "id": "FOMI_2000",
"name": "FÖMI ortofotó 2000",
"type": "tms",
- "description": "Hungary",
"template": "http://e.tile.openstreetmap.hu/ortofoto2000/{zoom}/{x}/{y}.jpg",
+ "description": "Hungary",
"scaleExtent": [
0,
17
@@ -6896,10 +11181,11 @@
"terms_text": "Földmérési és Távérzékelési Intézet"
},
{
+ "id": "FOMI_2005",
"name": "FÖMI ortofotó 2005",
"type": "tms",
- "description": "Hungary",
"template": "http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg",
+ "description": "Hungary",
"scaleExtent": [
0,
17
@@ -9204,10 +13490,11 @@
"terms_text": "Földmérési és Távérzékelési Intézet"
},
{
+ "id": "FR-BAN",
"name": "FR-BAN",
"type": "tms",
- "description": "French address registry or Base Adresses Nationale",
"template": "http://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png",
+ "description": "French address registry or Base Adresses Nationale",
"scaleExtent": [
12,
20
@@ -9527,14 +13814,14 @@
]
],
"terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)",
- "terms_text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL",
- "id": "FR-BAN"
+ "terms_text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL"
},
{
+ "id": "FR-Cadastre",
"name": "FR-Cadastre",
"type": "tms",
+ "template": "http://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png",
"description": "French land registry",
- "template": "http://tms.cadastre.openstreetmap.fr/*/tout/{z}/{x}/{y}.png",
"scaleExtent": [
12,
20
@@ -9854,10 +14141,10 @@
]
],
"terms_url": "http://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation",
- "terms_text": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2015",
- "id": "FR-Cadastre"
+ "terms_text": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2015"
},
{
+ "id": "Freemap.sk-Car",
"name": "Freemap.sk Car",
"type": "tms",
"template": "http://t{switch:1,2,3,4}.freemap.sk/A/{zoom}/{x}/{y}.jpeg",
@@ -10056,6 +14343,7 @@
"terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
},
{
+ "id": "Freemap.sk-Cyclo",
"name": "Freemap.sk Cyclo",
"type": "tms",
"template": "http://t{switch:1,2,3,4}.freemap.sk/C/{zoom}/{x}/{y}.jpeg",
@@ -10254,6 +14542,7 @@
"terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
},
{
+ "id": "Freemap.sk-Hiking",
"name": "Freemap.sk Hiking",
"type": "tms",
"template": "http://t{switch:1,2,3,4}.freemap.sk/T/{zoom}/{x}/{y}.jpeg",
@@ -10452,6 +14741,7 @@
"terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
},
{
+ "id": "Freemap.sk-Ski",
"name": "Freemap.sk Ski",
"type": "tms",
"template": "http://t{switch:1,2,3,4}.freemap.sk/K/{zoom}/{x}/{y}.jpeg",
@@ -10650,6 +14940,7 @@
"terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
},
{
+ "id": "Geodatastyrelsen_Denmark",
"name": "Geodatastyrelsen (Denmark)",
"type": "tms",
"template": "http://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg",
@@ -11154,6 +15445,10 @@
[
8.531432,
54.95516
+ ],
+ [
+ 8.3743941,
+ 54.9551655
]
],
[
@@ -11172,6 +15467,10 @@
[
11.4459621,
56.6401087
+ ],
+ [
+ 11.4577738,
+ 56.819554
]
],
[
@@ -11198,6 +15497,10 @@
[
10.8290599,
57.3695272
+ ],
+ [
+ 11.3274736,
+ 57.3612962
]
],
[
@@ -11216,6 +15519,10 @@
[
11.7456428,
56.2743186
+ ],
+ [
+ 11.5843266,
+ 56.2777928
]
],
[
@@ -11266,6 +15573,10 @@
[
14.6317464,
55.0062496
+ ],
+ [
+ 14.6825922,
+ 55.3639405
]
]
],
@@ -11274,6 +15585,7 @@
"best": true
},
{
+ "id": "Geoportal-PL-aerial_image",
"name": "Geoportal.gov.pl (Orthophotomap)",
"type": "tms",
"template": "http://wms.misek.pl/geoportal.orto/tms/{zoom}/{x}/{y}",
@@ -11666,6 +15978,10 @@
[
14.2220497,
53.9958517
+ ],
+ [
+ 15.9751041,
+ 54.3709213
]
]
],
@@ -11673,6 +15989,43 @@
"best": true
},
{
+ "id": "IBGE_DF_Addresses",
+ "name": "IBGE Distrito Federal",
+ "type": "tms",
+ "template": "https://api.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g",
+ "description": "Addresses data from IBGE",
+ "scaleExtent": [
+ 0,
+ 19
+ ],
+ "polygon": [
+ [
+ [
+ -48.2444,
+ -16.0508
+ ],
+ [
+ -48.2444,
+ -15.5005
+ ],
+ [
+ -47.5695,
+ -15.5005
+ ],
+ [
+ -47.5695,
+ -16.0508
+ ],
+ [
+ -48.2444,
+ -16.0508
+ ]
+ ]
+ ],
+ "overlay": true
+ },
+ {
+ "id": "IBGE_Setores_Rurais",
"name": "IBGE Mapa de Setores Rurais",
"type": "tms",
"template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
@@ -12310,6 +16663,7 @@
]
},
{
+ "id": "IBGE_Setores_Urbanos",
"name": "IBGE Mapa de Setores Urbanos",
"type": "tms",
"template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
@@ -12947,6 +17301,7 @@
]
},
{
+ "id": "Haiti-Drone",
"name": "Imagerie Drone (Haiti)",
"type": "tms",
"template": "http://wms.openstreetmap.fr/tms/1.0.0/iomhaiti/{zoom}/{x}/{y}",
@@ -13127,6 +17482,10 @@
[
-72.1545814,
19.6877982
+ ],
+ [
+ -72.1547401,
+ 19.6878969
]
],
[
@@ -13181,6 +17540,10 @@
[
-72.1315621,
19.671
+ ],
+ [
+ -72.1310601,
+ 19.6718929
]
],
[
@@ -13627,6 +17990,10 @@
[
-71.8456942,
19.6696203
+ ],
+ [
+ -71.845795,
+ 19.6709758
]
],
[
@@ -13793,6 +18160,10 @@
[
-72.09907,
18.5483799
+ ],
+ [
+ -72.098878,
+ 18.54843
]
],
[
@@ -13843,6 +18214,10 @@
[
-72.2519232,
18.5650839
+ ],
+ [
+ -72.2542503,
+ 18.568262
]
],
[
@@ -14013,6 +18388,10 @@
[
-72.3042595,
18.5336346
+ ],
+ [
+ -72.303145,
+ 18.5332749
]
],
[
@@ -14199,6 +18578,10 @@
[
-72.2973911,
18.476843
+ ],
+ [
+ -72.2981405,
+ 18.477502
]
],
[
@@ -14293,6 +18676,10 @@
[
-72.3496778,
18.5220392
+ ],
+ [
+ -72.3466657,
+ 18.5222375
]
],
[
@@ -14383,6 +18770,10 @@
[
-72.329979,
18.5489548
+ ],
+ [
+ -72.3303078,
+ 18.5486462
]
],
[
@@ -14421,6 +18812,10 @@
[
-72.3232359,
18.5264804
+ ],
+ [
+ -72.3231383,
+ 18.5269828
]
],
[
@@ -14491,6 +18886,10 @@
[
-72.2158909,
18.6450301
+ ],
+ [
+ -72.2160832,
+ 18.6457752
]
],
[
@@ -15237,6 +19636,10 @@
[
-72.2858703,
18.6469651
+ ],
+ [
+ -72.2867654,
+ 18.6482017
]
],
[
@@ -15271,6 +19674,10 @@
[
-72.555133,
18.5301218
+ ],
+ [
+ -72.5557247,
+ 18.5305893
]
],
[
@@ -15313,15 +19720,20 @@
[
-72.6228305,
18.506996
+ ],
+ [
+ -72.6235278,
+ 18.5079877
]
]
]
},
{
+ "id": "osmim-imagicode-LC80700162014211LGN00",
"name": "imagico.de OSM images for mapping: Alaska Range",
"type": "tms",
- "description": "LC80700162014211LGN00, 2014-07-31 channels 234 (true color), Recent summer image of the Alaska Range for mapping natural features",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC80700162014211LGN00, 2014-07-31 channels 234 (true color), Recent summer image of the Alaska Range for mapping natural features",
"scaleExtent": [
0,
12
@@ -15351,14 +19763,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC80700162014211LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81190582014075LGN00",
"name": "imagico.de OSM images for mapping: Bakun Reservoir",
"type": "tms",
- "description": "LC81190582014075LGN00/LC81180582015183LGN00, 2014-03-16, channels 234 (true color), Missing in older pre-2011 images",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81190582014075LGN00/LC81180582015183LGN00, 2014-03-16, channels 234 (true color), Missing in older pre-2011 images",
"scaleExtent": [
0,
13
@@ -15388,14 +19800,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81190582014075LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81250592016107LGN00",
"name": "imagico.de OSM images for mapping: Batam",
"type": "tms",
- "description": "LC81250592016107LGN00, LC81250602015184LGN00, LC81240602014174LGN00, 2014-2016, channels 234 (true color), Missing Islands in OSM",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81250592016107LGN00, LC81250602015184LGN00, LC81240602014174LGN00, 2014-2016, channels 234 (true color), Missing Islands in OSM",
"scaleExtent": [
0,
13
@@ -15425,14 +19837,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81250592016107LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81800982013291LGN00",
"name": "imagico.de OSM images for mapping: Bouvet Island",
"type": "tms",
- "description": "LC81800982013291LGN00, 2013-10-18, channels 234 (true color), For more accurate coastline and glacier mapping",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81800982013291LGN00, 2013-10-18, channels 234 (true color), For more accurate coastline and glacier mapping",
"scaleExtent": [
0,
13
@@ -15463,14 +19875,14 @@
],
"terms_url": "http://maps.imagico.de/#osmim",
"terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81800982013291LGN00",
"best": true
},
{
+ "id": "osmim-imagicode-LC82050982015344LGN00",
"name": "imagico.de OSM images for mapping: Clerke Rocks",
"type": "tms",
- "description": "LC82050982015344LGN00, 2015-12-10, channels 234 (true color), Missing in other image sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC82050982015344LGN00, 2015-12-10, channels 234 (true color), Missing in other image sources",
"scaleExtent": [
0,
13
@@ -15500,14 +19912,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC82050982015344LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-S2A_R022_N06_20151221T103009",
"name": "imagico.de OSM images for mapping: Cotonou",
"type": "tms",
- "description": "S2A_OPER_PRD_MSIL1C_PDMC_20151222T164644_R022_V20151221T103009_20151221T103009, 2015-12-21, channels 234 (true color), Patchy and partly cloudy coverage in usual sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}",
+ "description": "S2A_OPER_PRD_MSIL1C_PDMC_20151222T164644_R022_V20151221T103009_20151221T103009, 2015-12-21, channels 234 (true color), Patchy and partly cloudy coverage in usual sources",
"scaleExtent": [
0,
14
@@ -15537,14 +19949,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-S2A_R022_N06_20151221T103009"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC80360072014245LGN00",
"name": "imagico.de OSM images for mapping: Eastern Devon Island coast",
"type": "tms",
- "description": "LC80360072014245LGN00/LC80380062014243LGN00, 2014-09-02, channel 654 (false color IR), Coastline mostly mapped meanwhile",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC80360072014245LGN00/LC80380062014243LGN00, 2014-09-02, channel 654 (false color IR), Coastline mostly mapped meanwhile",
"scaleExtent": [
0,
11
@@ -15574,14 +19986,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC80360072014245LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC82160152013239LGN00",
"name": "imagico.de OSM images for mapping: Eastern Iceland",
"type": "tms",
- "description": "LC82160152013239LGN00, 2013-08-27, channels 234 (true color), Missing islets and inaccurate coast",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC82160152013239LGN00, 2013-08-27, channels 234 (true color), Missing islets and inaccurate coast",
"scaleExtent": [
0,
12
@@ -15611,14 +20023,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC82160152013239LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492",
"name": "imagico.de OSM images for mapping: El Altar",
"type": "tms",
- "description": "AST_L1T_00302052007154424_20150518041444_91492, 2012-02-05, channels 12x (true color with estimated blue), 2007 ASTER image offering better glacier coverage than common sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}",
+ "description": "AST_L1T_00302052007154424_20150518041444_91492, 2012-02-05, channels 12x (true color with estimated blue), 2007 ASTER image offering better glacier coverage than common sources",
"scaleExtent": [
0,
14
@@ -15648,14 +20060,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-S2A_R009_S61_20160109",
"name": "imagico.de OSM images for mapping: Elephant Island/Clarence Island",
"type": "tms",
- "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160109T225906_R009_V20160109T130043_20160109T130043, 2016-01-09, channels 234 (true color), Fairly clear up-to-date image for updating glacier edges",
"template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}",
+ "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160109T225906_R009_V20160109T130043_20160109T130043, 2016-01-09, channels 234 (true color), Fairly clear up-to-date image for updating glacier edges",
"scaleExtent": [
0,
13
@@ -15685,14 +20097,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-S2A_R009_S61_20160109"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC82100502015347LGN00",
"name": "imagico.de OSM images for mapping: Fogo, Cape Verde",
"type": "tms",
- "description": "LC82100502015347LGN00, 2015-12-13, channels 234 (true color), Image from after the 2014/2015 eruption",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC82100502015347LGN00, 2015-12-13, channels 234 (true color), Image from after the 2014/2015 eruption",
"scaleExtent": [
0,
14
@@ -15722,14 +20134,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC82100502015347LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-greenland",
"name": "imagico.de OSM images for mapping: Greenland mosaic",
"type": "tms",
- "description": "mostly Landsat 8 2013-2015 channels 234 (true color), Landsat mosaic of Greenland",
"template": "http://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}",
+ "description": "mostly Landsat 8 2013-2015 channels 234 (true color), Landsat mosaic of Greenland",
"scaleExtent": [
0,
12
@@ -16311,14 +20723,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-greenland"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-S2A_R047_S54_20160411T044330",
"name": "imagico.de OSM images for mapping: Heard Island coast",
"type": "tms",
- "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160412T212111_R047_V20160411T044330_20160411T044330, 2016-04-12, channels 234 (true color), Recent image of Heard island with interior mostly cloud covered but mostly well visible coast",
"template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}",
+ "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160412T212111_R047_V20160411T044330_20160411T044330, 2016-04-12, channels 234 (true color), Recent image of Heard island with interior mostly cloud covered but mostly well visible coast",
"scaleExtent": [
0,
13
@@ -16348,14 +20760,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-S2A_R047_S54_20160411T044330"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC82280982013259LGN00",
"name": "imagico.de OSM images for mapping: Isla Londonderry",
"type": "tms",
- "description": "LC82280982013259LGN00, 2013-09-16, channel 654 (false color IR), A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC82280982013259LGN00, 2013-09-16, channel 654 (false color IR), A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping",
"scaleExtent": [
0,
12
@@ -16385,14 +20797,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC82280982013259LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190",
"name": "imagico.de OSM images for mapping: Leskov Island ASTER",
"type": "tms",
- "description": "AST_L1T_00311162013112731_20150618142416_109190, 2013-11-16, channels 12x (true color with estimated blue), Missing in other image sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}",
+ "description": "AST_L1T_00311162013112731_20150618142416_109190, 2013-11-16, channels 12x (true color with estimated blue), Missing in other image sources",
"scaleExtent": [
0,
13
@@ -16422,14 +20834,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81991002015286LGN00",
"name": "imagico.de OSM images for mapping: Leskov Island Landsat",
"type": "tms",
- "description": "LC81991002015286LGN00, 2015-10-13, channels 234 (true color), Missing in other image sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81991002015286LGN00, 2015-10-13, channels 234 (true color), Missing in other image sources",
"scaleExtent": [
0,
13
@@ -16459,14 +20871,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81991002015286LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-ls_polar",
"name": "imagico.de OSM images for mapping: May 2013 off-nadir Landsat",
"type": "tms",
- "description": "LC80372442013137LGN01-LC80530012013137LGN01, 2013-05-17, channels 234 (true color), Only available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret",
"template": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}",
+ "description": "LC80372442013137LGN01-LC80530012013137LGN01, 2013-05-17, channels 234 (true color), Only available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret",
"scaleExtent": [
0,
10
@@ -16496,14 +20908,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-ls_polar"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC80940622015159LGN00",
"name": "imagico.de OSM images for mapping: New Ireland",
"type": "tms",
- "description": "LC80940622015159LGN00, 2015-06-08, channels 234 (true color), Many missing islands in OSM (mostly mapped meanwhile)",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC80940622015159LGN00, 2015-06-08, channels 234 (true color), Many missing islands in OSM (mostly mapped meanwhile)",
"scaleExtent": [
0,
14
@@ -16533,14 +20945,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC80940622015159LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-nellesmere_ast",
"name": "imagico.de OSM images for mapping: Northern Ellesmere Island",
"type": "tms",
- "description": "ASTER L1T, 2012-07-09/2012-07-15, channels 12x (true color with estimated blue), Assembled from July 2012 ASTER imagery",
"template": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}",
+ "description": "ASTER L1T, 2012-07-09/2012-07-15, channels 12x (true color with estimated blue), Assembled from July 2012 ASTER imagery",
"scaleExtent": [
0,
10
@@ -16570,14 +20982,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-nellesmere_ast"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81960222015233LGN00vis",
"name": "imagico.de OSM images for mapping: Northern German west coast tidalflats",
"type": "tms",
- "description": "LC81960222015233LGN00, 2015-08-21 channels 134 (true color), Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}",
+ "description": "LC81960222015233LGN00, 2015-08-21 channels 134 (true color), Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals",
"scaleExtent": [
0,
12
@@ -16607,14 +21019,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81960222015233LGN00vis"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81960222015233LGN00ir",
"name": "imagico.de OSM images for mapping: Northern German west coast tidalflats (infrared)",
"type": "tms",
- "description": "LC81960222015233LGN00, 2015-08-21 channel 654 (false color IR), Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}",
+ "description": "LC81960222015233LGN00, 2015-08-21 channel 654 (false color IR), Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals",
"scaleExtent": [
0,
12
@@ -16644,14 +21056,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81960222015233LGN00ir"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-ngreenland_ast",
"name": "imagico.de OSM images for mapping: Northern Greenland ASTER",
"type": "tms",
- "description": "ASTER L1T, 2005-06-21 to 2012-08-13, channels 12x (true color with estimated blue), Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast",
"template": "http://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}",
+ "description": "ASTER L1T, 2005-06-21 to 2012-08-13, channels 12x (true color with estimated blue), Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast",
"scaleExtent": [
0,
10
@@ -16681,14 +21093,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-ngreenland_ast"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-EO1A1350972013086110KF",
"name": "imagico.de OSM images for mapping: Northwest Heard Island",
"type": "tms",
- "description": "EO1A1350972013086110KF, 2013-03-13, channels 973 (false color IR), Glaciers of Northwest Heard Island (mapped meanwhile)",
"template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}",
+ "description": "EO1A1350972013086110KF, 2013-03-13, channels 973 (false color IR), Glaciers of Northwest Heard Island (mapped meanwhile)",
"scaleExtent": [
0,
13
@@ -16718,14 +21130,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-EO1A1350972013086110KF"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-S2A_R111_N09_20160604T154554",
"name": "imagico.de OSM images for mapping: Panama Canal",
"type": "tms",
- "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160607T121312_R111_V20160604T154554_20160604T154554, 2016-06-07, channels 234 (true color), Images of the new locks (but partly cloudy)",
"template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}",
+ "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160607T121312_R111_V20160604T154554_20160604T154554, 2016-06-07, channels 234 (true color), Images of the new locks (but partly cloudy)",
"scaleExtent": [
0,
14
@@ -16755,14 +21167,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-S2A_R111_N09_20160604T154554"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81511242016033LGN00",
"name": "imagico.de OSM images for mapping: Pensacola Mountains",
"type": "tms",
- "description": "LC81511242016033LGN00/LC81511232016033LGN00, 2016-02-02, channels 234 (true color), Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81511242016033LGN00/LC81511232016033LGN00, 2016-02-02, channels 234 (true color), Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox",
"scaleExtent": [
0,
10
@@ -16792,14 +21204,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81511242016033LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-S2A_R136_N41_20150831T093006",
"name": "imagico.de OSM images for mapping: Prokletije Mountains",
"type": "tms",
- "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160316T034950_R136_V20150831T093006_20150831T093006, 2015-08-31, channels 234 (true color), Late summer imagery where usual sources are severely limited by clouds and snow",
"template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}",
+ "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160316T034950_R136_V20150831T093006_20150831T093006, 2015-08-31, channels 234 (true color), Late summer imagery where usual sources are severely limited by clouds and snow",
"scaleExtent": [
0,
14
@@ -16829,14 +21241,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-S2A_R136_N41_20150831T093006"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-DMS_1142622_03746_20110415_17533956",
"name": "imagico.de OSM images for mapping: Qasigiannguit",
"type": "tms",
- "description": "DMS_1142622_03746_20110415_17533956, 2011-04-15, true color, Icebridge DMS image of the settlement - alignment might be poor",
"template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}",
+ "description": "DMS_1142622_03746_20110415_17533956, 2011-04-15, true color, Icebridge DMS image of the settlement - alignment might be poor",
"scaleExtent": [
0,
15
@@ -16866,14 +21278,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-DMS_1142622_03746_20110415_17533956"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81510432015030LGN00",
"name": "imagico.de OSM images for mapping: Rann of Kutch",
"type": "tms",
- "description": "various Landsat early 2015, channel 654 (false color IR), Land/water distinction difficult to properly map based on Bing/Mapbox images",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "various Landsat early 2015, channel 654 (false color IR), Land/water distinction difficult to properly map based on Bing/Mapbox images",
"scaleExtent": [
0,
12
@@ -16903,14 +21315,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81510432015030LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-S2A_R093_N41_20150828T092005",
"name": "imagico.de OSM images for mapping: Rila and Pirin Mountains",
"type": "tms",
- "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160412T121341_R093_V20150828T092005_20150828T092005, 2015-08-28, channels 234 (true color), Late summer imagery where usual sources are severely limited by clouds and snow",
"template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}",
+ "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160412T121341_R093_V20150828T092005_20150828T092005, 2015-08-28, channels 234 (true color), Late summer imagery where usual sources are severely limited by clouds and snow",
"scaleExtent": [
0,
14
@@ -16940,14 +21352,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-S2A_R093_N41_20150828T092005"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81730602015040LGN00",
"name": "imagico.de OSM images for mapping: Rwenzori Mountains",
"type": "tms",
- "description": "LC81730602015040LGN00, 2015-02-09, channel 654 (false color IR), Recent image of most of the remaining Rwenzori Mountains glaciers",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81730602015040LGN00, 2015-02-09, channel 654 (false color IR), Recent image of most of the remaining Rwenzori Mountains glaciers",
"scaleExtent": [
0,
13
@@ -16977,14 +21389,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81730602015040LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC80611072014036LGN00",
"name": "imagico.de OSM images for mapping: Scott Island",
"type": "tms",
- "description": "LC80611072014036LGN00, 2014-02-05, channels 234 (true color), Missing in other image sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC80611072014036LGN00, 2014-02-05, channels 234 (true color), Missing in other image sources",
"scaleExtent": [
0,
13
@@ -17014,14 +21426,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC80611072014036LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC82100972015347LGN00",
"name": "imagico.de OSM images for mapping: Shag Rocks",
"type": "tms",
- "description": "LC82100972015347LGN00, 2015-12-13, channels 234 (true color), Missing in other image sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC82100972015347LGN00, 2015-12-13, channels 234 (true color), Missing in other image sources",
"scaleExtent": [
0,
13
@@ -17051,14 +21463,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC82100972015347LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81130622013270LGN00",
"name": "imagico.de OSM images for mapping: Southeastern Sulawesi",
"type": "tms",
- "description": "LC81130622013270LGN00, 2013-09-27, channels 234 (true color), Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81130622013270LGN00, 2013-09-27, channels 234 (true color), Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail",
"scaleExtent": [
0,
13
@@ -17088,14 +21500,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81130622013270LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC80281222016035LGN00",
"name": "imagico.de OSM images for mapping: Southern Transantarctic Mountains",
"type": "tms",
- "description": "LC80281222016035LGN00/LC80281212016035LGN00, 2016-02-04, channels 234 (true color), Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC80281222016035LGN00/LC80281212016035LGN00, 2016-02-04, channels 234 (true color), Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox",
"scaleExtent": [
0,
10
@@ -17125,14 +21537,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC80281222016035LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx",
"name": "imagico.de OSM images for mapping: Thule Air Base",
"type": "tms",
- "description": "DMS_1142636_16001_20110507_18221638-DMS_1142636_16076_20110507_18224996, 2011-05-07, true color, Icebridge DMS image - alignment might be poor",
"template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}",
+ "description": "DMS_1142636_16001_20110507_18221638-DMS_1142636_16076_20110507_18224996, 2011-05-07, true color, Icebridge DMS image - alignment might be poor",
"scaleExtent": [
0,
15
@@ -17162,14 +21574,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC80910682014358LGN00",
"name": "imagico.de OSM images for mapping: Vanatinai",
"type": "tms",
- "description": "LC80910682014358LGN00, 2014-12-24, channels 234 (true color), Coarse coastline due to cloud cover in Bing/Mapbox",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC80910682014358LGN00, 2014-12-24, channels 234 (true color), Coarse coastline due to cloud cover in Bing/Mapbox",
"scaleExtent": [
0,
13
@@ -17199,14 +21611,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC80910682014358LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC82330892016031LGN00",
"name": "imagico.de OSM images for mapping: Volcán Calbuco",
"type": "tms",
- "description": "LC82330892016031LGN00, 2016-01-31, channels 234 (true color), Image from after the 2015 eruption",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC82330892016031LGN00, 2016-01-31, channels 234 (true color), Image from after the 2015 eruption",
"scaleExtent": [
0,
13
@@ -17236,14 +21648,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC82330892016031LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-LC81490352013282LGN00",
"name": "imagico.de OSM images for mapping: Western Karakoram",
"type": "tms",
- "description": "LC81490352013282LGN00, 2013-10-09, channels 234 (true color), Represents approximately minimum snow cover so can be well used for glacier mapping",
"template": "http://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}",
+ "description": "LC81490352013282LGN00, 2013-10-09, channels 234 (true color), Represents approximately minimum snow cover so can be well used for glacier mapping",
"scaleExtent": [
0,
13
@@ -17273,14 +21685,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-LC81490352013282LGN00"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "osmim-imagicode-S2A_R039_S15_20160510T145731",
"name": "imagico.de OSM images for mapping: Willkanuta Mountains and Quelccaya Ice Cap",
"type": "tms",
- "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160511T025410_R039_V20160510T145731_20160510T150701, 2016-05-10, channels 234 (true color), Poor and outdated imagery in other sources",
"template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}",
+ "description": "S2A_OPER_PRD_MSIL1C_PDMC_20160511T025410_R039_V20160510T145731_20160510T150701, 2016-05-10, channels 234 (true color), Poor and outdated imagery in other sources",
"scaleExtent": [
0,
14
@@ -17310,14 +21722,14 @@
]
],
"terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "id": "osmim-imagicode-S2A_R039_S15_20160510T145731"
+ "terms_text": "imagico.de OSM images for mapping"
},
{
+ "id": "Interspect_Budapest_2014",
"name": "Interspect ortofotó 2014",
"type": "tms",
- "description": "Four districts of Budapest: III, XIII, XIV, XV",
"template": "http://geoserver.infobex.hu/Budapest2014/IST/{zoom}/{x}/{y}.jpg",
+ "description": "Four districts of Budapest: III, XIII, XIV, XV",
"scaleExtent": [
10,
21
@@ -18003,6 +22415,7 @@
"best": true
},
{
+ "id": "bartholomew_qi1940",
"name": "Ireland Bartholomew Quarter-Inch 1940",
"type": "tms",
"template": "http://geo.nls.uk/maps/ireland/bartholomew/{zoom}/{x}/{-y}.png",
@@ -18163,6 +22576,10 @@
[
-8.8151208,
54.7145436
+ ],
+ [
+ -8.8312773,
+ 55.3963337
]
]
],
@@ -18170,6 +22587,7 @@
"terms_text": "National Library of Scotland Historic Maps"
},
{
+ "id": "GSGS3906",
"name": "Ireland British War Office 1:25k GSGS 3906",
"type": "tms",
"template": "http://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png",
@@ -18202,10 +22620,10 @@
]
],
"terms_url": "http://wiki.openstreetmap.org/wiki/WikiProject_Ireland#Trinity_College_Dublin",
- "terms_text": "Glucksman Map Library, Trinity College Dublin",
- "id": "GSGS3906"
+ "terms_text": "Glucksman Map Library, Trinity College Dublin"
},
{
+ "id": "GSGS4136",
"name": "Ireland British War Office One-Inch 1941-43 GSGS 4136",
"type": "tms",
"template": "http://geo.nls.uk/maps/ireland/gsgs4136/{zoom}/{x}/{-y}.png",
@@ -18430,14 +22848,18 @@
[
-9.3672933,
51.4254613
+ ],
+ [
+ -10.0847426,
+ 51.4147902
]
]
],
"terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps",
- "id": "GSGS4136"
+ "terms_text": "National Library of Scotland Historic Maps"
},
{
+ "id": "IrelandEEACORINE2006",
"name": "Ireland EEA CORINE 2006",
"type": "tms",
"template": "http://a.tile.openstreetmap.ie/tiles/corine/{zoom}/{x}/{y}.png",
@@ -18598,6 +23020,10 @@
[
-5.2572284,
54.1582424
+ ],
+ [
+ -5.842956,
+ 53.8627976
]
]
],
@@ -18605,6 +23031,7 @@
"terms_text": "EEA Corine 2006"
},
{
+ "id": "IrelandEEAGMESUrbanAtlas",
"name": "Ireland EEA GMES Urban Atlas",
"type": "tms",
"template": "http://a.tile.openstreetmap.ie/tiles/urbanatlas/{zoom}/{x}/{y}.png",
@@ -18825,6 +23252,10 @@
[
-9.2601152,
52.7616711
+ ],
+ [
+ -9.2759602,
+ 52.7993666
]
],
[
@@ -20120,9 +24551,10 @@
"terms_text": "EEA GMES Urban Atlas"
},
{
+ "id": "gsi.go.jp",
"name": "Japan GSI ortho Imagery",
"type": "tms",
- "template": "http://cyberjapandata.gsi.go.jp/xyz/ort/{z}/{x}/{y}.jpg",
+ "template": "http://cyberjapandata.gsi.go.jp/xyz/ort/{zoom}/{x}/{y}.jpg",
"scaleExtent": [
12,
19
@@ -20221,6 +24653,7 @@
]
},
{
+ "id": "Aargau-AGIS-2011",
"name": "Kanton Aargau 25cm (AGIS 2011)",
"type": "tms",
"template": "http://tiles.poole.ch/AGIS/OF2011/{zoom}/{x}/{y}.png",
@@ -20255,9 +24688,10 @@
"terms_text": "AGIS OF2011"
},
{
+ "id": "Aargau-AGIS-2014",
"name": "Kanton Aargau 25cm (AGIS 2014)",
"type": "tms",
- "template": "http://mapproxy.osm.ch:8080/tiles/AGIS2014/EPSG900913/{z}/{x}/{y}.png?origin=nw",
+ "template": "http://mapproxy.osm.ch:8080/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
"scaleExtent": [
8,
19
@@ -20906,9 +25340,45 @@
"best": true
},
{
- "name": "Kanton Solothurn 25cm (SOGIS 2011-2014)",
+ "id": "KTBASELSTADT2015",
+ "name": "Kanton Basel-Stadt 2015",
"type": "tms",
- "template": "http://mapproxy.osm.ch:8080/tiles/sogis2014/EPSG900913/{z}/{x}/{y}.png?origin=nw",
+ "template": "http://mapproxy.osm.ch:8080/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "scaleExtent": [
+ 8,
+ 21
+ ],
+ "polygon": [
+ [
+ [
+ 7.492,
+ 47.4817
+ ],
+ [
+ 7.492,
+ 47.6342
+ ],
+ [
+ 7.784,
+ 47.6342
+ ],
+ [
+ 7.784,
+ 47.4817
+ ],
+ [
+ 7.492,
+ 47.4817
+ ]
+ ]
+ ],
+ "terms_text": "Kanton Basel-Stadt OF 2015"
+ },
+ {
+ "id": "Solothurn-sogis2014-tms",
+ "name": "Kanton Solothurn 25cm (SOGIS 2014-2015)",
+ "type": "tms",
+ "template": "http://mapproxy.osm.ch:8080/tiles/sogis2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
"scaleExtent": [
12,
19
@@ -20916,33 +25386,629 @@
"polygon": [
[
[
- 7.08,
- 47.03
+ 7.3404127,
+ 47.2175697
],
[
- 7.08,
- 47.54
+ 7.4154818,
+ 47.2402115
],
[
- 8.04,
- 47.54
+ 7.4173645,
+ 47.2537956
],
[
- 8.04,
- 47.03
+ 7.4658424,
+ 47.2646513
],
[
- 7.08,
- 47.03
+ 7.4946766,
+ 47.2882287
+ ],
+ [
+ 7.5328638,
+ 47.294534
+ ],
+ [
+ 7.5483333,
+ 47.3163566
+ ],
+ [
+ 7.5709479,
+ 47.3263111
+ ],
+ [
+ 7.5604584,
+ 47.342492
+ ],
+ [
+ 7.5388991,
+ 47.3476266
+ ],
+ [
+ 7.5396485,
+ 47.3601134
+ ],
+ [
+ 7.5217459,
+ 47.3651488
+ ],
+ [
+ 7.5237238,
+ 47.3720704
+ ],
+ [
+ 7.4634937,
+ 47.3702566
+ ],
+ [
+ 7.4361035,
+ 47.3781317
+ ],
+ [
+ 7.4434011,
+ 47.4023143
+ ],
+ [
+ 7.4774682,
+ 47.4012772
+ ],
+ [
+ 7.4792364,
+ 47.3897076
+ ],
+ [
+ 7.5022557,
+ 47.384807
+ ],
+ [
+ 7.5213659,
+ 47.3912021
+ ],
+ [
+ 7.5311724,
+ 47.4035251
+ ],
+ [
+ 7.5252352,
+ 47.4116329
+ ],
+ [
+ 7.5807413,
+ 47.414704
+ ],
+ [
+ 7.5682954,
+ 47.4223349
+ ],
+ [
+ 7.5689044,
+ 47.436897
+ ],
+ [
+ 7.5812069,
+ 47.4287807
+ ],
+ [
+ 7.6157989,
+ 47.4327479
+ ],
+ [
+ 7.6260723,
+ 47.4629139
+ ],
+ [
+ 7.6044949,
+ 47.4704455
+ ],
+ [
+ 7.6072998,
+ 47.4893984
+ ],
+ [
+ 7.640966,
+ 47.4827341
+ ],
+ [
+ 7.6559259,
+ 47.4873946
+ ],
+ [
+ 7.6521711,
+ 47.4958144
+ ],
+ [
+ 7.6661209,
+ 47.4968682
+ ],
+ [
+ 7.6683266,
+ 47.4863467
+ ],
+ [
+ 7.699761,
+ 47.4806325
+ ],
+ [
+ 7.709878,
+ 47.4693848
+ ],
+ [
+ 7.6848538,
+ 47.4478436
+ ],
+ [
+ 7.6798021,
+ 47.417514
+ ],
+ [
+ 7.6327228,
+ 47.4100311
+ ],
+ [
+ 7.633317,
+ 47.382914
+ ],
+ [
+ 7.6417611,
+ 47.3804694
+ ],
+ [
+ 7.6442033,
+ 47.3672084
+ ],
+ [
+ 7.7279138,
+ 47.3688589
+ ],
+ [
+ 7.751519,
+ 47.3443275
+ ],
+ [
+ 7.7935609,
+ 47.3390523
+ ],
+ [
+ 7.8021665,
+ 47.3610959
+ ],
+ [
+ 7.8788122,
+ 47.3835105
+ ],
+ [
+ 7.8691367,
+ 47.3955143
+ ],
+ [
+ 7.883332,
+ 47.4060973
+ ],
+ [
+ 7.9097377,
+ 47.398521
+ ],
+ [
+ 7.9550377,
+ 47.4156057
+ ],
+ [
+ 7.9618317,
+ 47.4218343
+ ],
+ [
+ 7.9467846,
+ 47.4431934
+ ],
+ [
+ 7.9682836,
+ 47.4628082
+ ],
+ [
+ 7.9872707,
+ 47.4287435
+ ],
+ [
+ 7.9854653,
+ 47.4227641
+ ],
+ [
+ 7.9827035,
+ 47.4283325
+ ],
+ [
+ 7.9631993,
+ 47.4223547
+ ],
+ [
+ 8.0072617,
+ 47.4065858
+ ],
+ [
+ 8.0100022,
+ 47.395418
+ ],
+ [
+ 8.0265612,
+ 47.3956224
+ ],
+ [
+ 8.0313669,
+ 47.3836856
+ ],
+ [
+ 8.0038366,
+ 47.3453146
+ ],
+ [
+ 8.0051906,
+ 47.3367516
+ ],
+ [
+ 7.9479701,
+ 47.3171432
+ ],
+ [
+ 7.9478307,
+ 47.3325169
+ ],
+ [
+ 7.9192088,
+ 47.3339507
+ ],
+ [
+ 7.9078055,
+ 47.341719
+ ],
+ [
+ 7.889098,
+ 47.3114878
+ ],
+ [
+ 7.8611018,
+ 47.3061239
+ ],
+ [
+ 7.8418057,
+ 47.2744707
+ ],
+ [
+ 7.8166423,
+ 47.2616706
+ ],
+ [
+ 7.8028241,
+ 47.2684079
+ ],
+ [
+ 7.7861469,
+ 47.256098
+ ],
+ [
+ 7.7746009,
+ 47.267869
+ ],
+ [
+ 7.7568187,
+ 47.258095
+ ],
+ [
+ 7.7326672,
+ 47.2591133
+ ],
+ [
+ 7.684769,
+ 47.2939919
+ ],
+ [
+ 7.6482742,
+ 47.2819898
+ ],
+ [
+ 7.5801066,
+ 47.2763483
+ ],
+ [
+ 7.5936981,
+ 47.2662199
+ ],
+ [
+ 7.5959384,
+ 47.245569
+ ],
+ [
+ 7.6261802,
+ 47.2263143
+ ],
+ [
+ 7.6405558,
+ 47.2297944
+ ],
+ [
+ 7.6484666,
+ 47.2189525
+ ],
+ [
+ 7.6472258,
+ 47.2017823
+ ],
+ [
+ 7.6715278,
+ 47.1949714
+ ],
+ [
+ 7.6711002,
+ 47.1845216
+ ],
+ [
+ 7.6779881,
+ 47.1819259
+ ],
+ [
+ 7.6728612,
+ 47.1683945
+ ],
+ [
+ 7.6600808,
+ 47.1684026
+ ],
+ [
+ 7.6451021,
+ 47.1489207
+ ],
+ [
+ 7.6155322,
+ 47.1565739
+ ],
+ [
+ 7.5861404,
+ 47.1475453
+ ],
+ [
+ 7.5810534,
+ 47.16013
+ ],
+ [
+ 7.5634674,
+ 47.1683541
+ ],
+ [
+ 7.5257686,
+ 47.162205
+ ],
+ [
+ 7.5203336,
+ 47.1588879
+ ],
+ [
+ 7.5297508,
+ 47.1487369
+ ],
+ [
+ 7.5097234,
+ 47.1255457
+ ],
+ [
+ 7.4613252,
+ 47.1082327
+ ],
+ [
+ 7.4750945,
+ 47.0867101
+ ],
+ [
+ 7.454461,
+ 47.074927
+ ],
+ [
+ 7.4354156,
+ 47.0801664
+ ],
+ [
+ 7.4340002,
+ 47.1005003
+ ],
+ [
+ 7.3820271,
+ 47.0957398
+ ],
+ [
+ 7.3704914,
+ 47.1209312
+ ],
+ [
+ 7.4401788,
+ 47.1237276
+ ],
+ [
+ 7.4217922,
+ 47.1358605
+ ],
+ [
+ 7.447783,
+ 47.1550805
+ ],
+ [
+ 7.4728074,
+ 47.1525609
+ ],
+ [
+ 7.4970383,
+ 47.1700873
+ ],
+ [
+ 7.4804964,
+ 47.171738
+ ],
+ [
+ 7.4708545,
+ 47.181324
+ ],
+ [
+ 7.4757226,
+ 47.1906485
+ ],
+ [
+ 7.4497638,
+ 47.1895691
+ ],
+ [
+ 7.4476258,
+ 47.1810839
+ ],
+ [
+ 7.4332849,
+ 47.1847269
+ ],
+ [
+ 7.4118135,
+ 47.1624212
+ ],
+ [
+ 7.3842442,
+ 47.1601249
+ ],
+ [
+ 7.3821749,
+ 47.1651186
+ ],
+ [
+ 7.391911,
+ 47.1662739
+ ],
+ [
+ 7.3835137,
+ 47.1803011
+ ],
+ [
+ 7.3654609,
+ 47.1944525
+ ],
+ [
+ 7.3544799,
+ 47.1915316
+ ],
+ [
+ 7.3404127,
+ 47.2175697
+ ]
+ ],
+ [
+ [
+ 7.420816,
+ 47.4803666
+ ],
+ [
+ 7.4349836,
+ 47.4981011
+ ],
+ [
+ 7.4707584,
+ 47.480734
+ ],
+ [
+ 7.487277,
+ 47.4820136
+ ],
+ [
+ 7.5116652,
+ 47.5026958
+ ],
+ [
+ 7.5317892,
+ 47.4973989
+ ],
+ [
+ 7.5366964,
+ 47.4850517
+ ],
+ [
+ 7.5274454,
+ 47.4739062
+ ],
+ [
+ 7.5306791,
+ 47.4611886
+ ],
+ [
+ 7.4565122,
+ 47.4492558
+ ],
+ [
+ 7.445214,
+ 47.4623781
+ ],
+ [
+ 7.4557367,
+ 47.4733767
+ ],
+ [
+ 7.420816,
+ 47.4803666
+ ]
+ ],
+ [
+ [
+ 7.3759458,
+ 47.4140995
+ ],
+ [
+ 7.3821514,
+ 47.4330266
+ ],
+ [
+ 7.4209041,
+ 47.4459442
+ ],
+ [
+ 7.4378427,
+ 47.4463232
+ ],
+ [
+ 7.4555765,
+ 47.4279232
+ ],
+ [
+ 7.4437574,
+ 47.413444
+ ],
+ [
+ 7.3759458,
+ 47.4140995
+ ]
+ ],
+ [
+ [
+ 7.6744234,
+ 47.1539707
+ ],
+ [
+ 7.6853662,
+ 47.1662986
+ ],
+ [
+ 7.7007985,
+ 47.1617746
+ ],
+ [
+ 7.6901531,
+ 47.1525567
+ ],
+ [
+ 7.6744234,
+ 47.1539707
]
]
],
- "terms_text": "Orthofoto WMS Solothurn"
+ "terms_text": "Orthofoto WMS Solothurn",
+ "best": true
},
{
+ "id": "KTZUERICH2015",
"name": "Kanton Zürich 2015 10cm",
"type": "tms",
- "template": "http://mapproxy.osm.ch:8080/tiles/KTZUERICH2015/EPSG900913/{z}/{x}/{y}.png?origin=nw",
+ "template": "http://mapproxy.osm.ch:8080/tiles/KTZUERICH2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
"scaleExtent": [
8,
21
@@ -21387,400 +26453,11 @@
"best": true
},
{
- "name": "Katastrálna mapa Slovenska (KaPor, 2010-04)",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/kapor2/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://wiki.freemap.sk/KatasterPortal",
- "terms_text": "Permisssion by UGKK"
- },
- {
- "name": "Katastrálna mapa Slovenska (KaPor, 2011-05)",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/kapor2_201105/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://wiki.freemap.sk/KatasterPortal",
- "terms_text": "Permisssion by UGKK"
- },
- {
+ "id": "kelowna_2012",
"name": "Kelowna 2012",
"type": "tms",
- "description": "High quality aerial imagery taken for the City of Kelowna",
"template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna2012/{zoom}/{x}/{y}.png",
+ "description": "High quality aerial imagery taken for the City of Kelowna",
"scaleExtent": [
9,
20
@@ -22166,12 +26843,16 @@
[
-119.5864365,
49.7843863
+ ],
+ [
+ -119.5867318,
+ 49.7928087
]
]
- ],
- "id": "kelowna_2012"
+ ]
},
{
+ "id": "kelowna_roads",
"name": "Kelowna Roads overlay",
"type": "tms",
"template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna_overlay/{zoom}/{x}/{y}.png",
@@ -22560,17 +27241,21 @@
[
-119.5864365,
49.7843863
+ ],
+ [
+ -119.5867318,
+ 49.7928087
]
]
],
- "id": "kelowna_roads",
"overlay": true
},
{
+ "id": "landsat_233055",
"name": "Landsat 233055",
"type": "tms",
- "description": "Recent Landsat imagery",
"template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_233055/{zoom}/{x}/{y}.png",
+ "description": "Recent Landsat imagery",
"scaleExtent": [
5,
14
@@ -22592,16 +27277,20 @@
[
-62.5322549,
6.5375488
+ ],
+ [
+ -60.8550011,
+ 6.1765004
]
]
- ],
- "id": "landsat_233055"
+ ]
},
{
+ "id": "landsat_047026",
"name": "Latest southwest British Columbia Landsat",
"type": "tms",
- "description": "Recent lower-resolution landsat imagery for southwest British Columbia",
"template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png",
+ "description": "Recent lower-resolution landsat imagery for southwest British Columbia",
"scaleExtent": [
5,
13
@@ -22655,176 +27344,432 @@
[
-122.553553,
47.8982299
+ ],
+ [
+ -121.9355512,
+ 47.7820648
]
]
- ],
- "id": "landsat_047026"
+ ]
},
{
+ "id": "ORT10LT",
"name": "Lithuania - NŽT ORT10LT",
"type": "tms",
- "template": "http://mapproxy.openmap.lt/ort10lt/g/{z}/{x}/{y}.jpeg",
+ "template": "http://mapproxy.openmap.lt/ort10lt/g/{zoom}/{x}/{y}.jpeg",
"scaleExtent": [
- 4,
+ 1,
18
],
"polygon": [
[
[
- 21.4926054,
- 56.3592046
+ 26.2138385,
+ 55.850748
],
[
- 21.8134688,
- 56.4097144
+ 26.3858298,
+ 55.7045315
],
[
- 21.9728753,
- 56.4567587
+ 26.6303618,
+ 55.6806692
],
[
- 22.2158294,
- 56.4604404
+ 26.6205349,
+ 55.5689227
],
[
- 22.2183922,
- 56.4162361
+ 26.5242191,
+ 55.5099228
],
[
- 23.3511527,
- 56.4267251
+ 26.5541476,
+ 55.388833
],
[
- 23.3521778,
- 56.3824815
+ 26.4399286,
+ 55.3479351
],
[
- 23.9179035,
- 56.383305
+ 26.7919694,
+ 55.3212027
],
[
- 23.9176231,
- 56.3392908
+ 26.8291304,
+ 55.2763488
],
[
- 24.5649817,
- 56.3382169
+ 26.7434625,
+ 55.2539863
],
[
- 24.564933,
- 56.3828587
+ 26.6764846,
+ 55.158828
],
[
- 24.6475683,
- 56.4277798
+ 26.4611191,
+ 55.1285624
],
[
- 24.8099394,
- 56.470646
+ 26.3577434,
+ 55.1505399
],
[
- 24.9733979,
- 56.4698452
+ 26.2296342,
+ 55.1073177
],
[
- 25.1299701,
- 56.2890356
+ 26.2713814,
+ 55.0775905
],
[
- 25.127433,
- 56.1990144
+ 26.2085126,
+ 54.997414
],
[
- 25.6921076,
- 56.1933684
+ 26.0619117,
+ 54.9416094
],
[
- 26.0839005,
- 56.0067879
+ 25.8578176,
+ 54.9276001
],
[
- 26.4673573,
- 55.7304232
+ 25.7429827,
+ 54.8150641
],
[
- 26.5463565,
- 55.7132705
+ 25.7626083,
+ 54.5769013
],
[
- 26.5154447,
- 55.2345969
+ 25.5319352,
+ 54.3418175
],
[
- 25.7874641,
- 54.8425656
+ 25.6771618,
+ 54.3238109
],
[
- 25.7675259,
- 54.6350898
+ 25.7857293,
+ 54.2336242
],
[
- 25.6165253,
- 54.4404007
+ 25.7858844,
+ 54.1550594
],
[
- 24.4566043,
- 53.9577649
+ 25.5550843,
+ 54.1461918
],
[
- 23.6164786,
- 53.9575517
+ 25.5109462,
+ 54.1750267
],
[
- 23.5632006,
- 54.048085
+ 25.5896725,
+ 54.2285838
],
[
- 22.8462074,
- 54.3563682
+ 25.5136246,
+ 54.3078472
],
[
- 22.831944,
- 54.9414849
+ 25.2689287,
+ 54.2744706
],
[
- 22.4306085,
- 55.1159913
+ 25.0705963,
+ 54.1336282
],
[
- 21.9605898,
- 55.1107144
+ 24.9573726,
+ 54.1720575
],
[
- 21.7253241,
- 55.1496885
+ 24.8133801,
+ 54.144862
],
[
- 21.5628422,
- 55.2362913
+ 24.7790172,
+ 54.0999054
],
[
- 21.2209638,
- 55.2742668
+ 24.8712786,
+ 54.034904
],
[
- 21.1630444,
- 55.2803979
+ 24.819568,
+ 53.9977218
],
[
- 20.9277788,
- 55.3101641
+ 24.6845912,
+ 53.9621091
],
[
- 20.9257285,
- 55.3588507
+ 24.697865,
+ 54.0171421
],
[
- 20.9980451,
- 55.4514157
+ 24.6259068,
+ 54.0105048
],
[
- 21.0282249,
- 56.0796297
+ 24.4342619,
+ 53.9014424
+ ],
+ [
+ 24.3520594,
+ 53.8967893
+ ],
+ [
+ 24.2016059,
+ 53.9700069
+ ],
+ [
+ 23.9683341,
+ 53.9266977
+ ],
+ [
+ 23.9130177,
+ 53.9696842
+ ],
+ [
+ 23.7781192,
+ 53.8989169
+ ],
+ [
+ 23.7097655,
+ 53.9394502
+ ],
+ [
+ 23.5370435,
+ 53.9430702
+ ],
+ [
+ 23.4822428,
+ 53.9893848
+ ],
+ [
+ 23.5273356,
+ 54.0473482
+ ],
+ [
+ 23.4858579,
+ 54.1532339
+ ],
+ [
+ 23.3867851,
+ 54.224838
+ ],
+ [
+ 23.0421216,
+ 54.3159745
+ ],
+ [
+ 23.0102115,
+ 54.3827959
+ ],
+ [
+ 22.8546899,
+ 54.4104029
+ ],
+ [
+ 22.7919963,
+ 54.3633227
+ ],
+ [
+ 22.7023421,
+ 54.4528985
+ ],
+ [
+ 22.6838586,
+ 54.585972
+ ],
+ [
+ 22.7489713,
+ 54.6319792
+ ],
+ [
+ 22.7429727,
+ 54.7268221
+ ],
+ [
+ 22.8866837,
+ 54.8135001
+ ],
+ [
+ 22.8204005,
+ 54.9119829
+ ],
+ [
+ 22.6424041,
+ 54.9713362
+ ],
+ [
+ 22.5892361,
+ 55.070243
+ ],
+ [
+ 22.080597,
+ 55.0244812
+ ],
+ [
+ 22.0324081,
+ 55.084098
+ ],
+ [
+ 21.9130671,
+ 55.0816838
+ ],
+ [
+ 21.6491949,
+ 55.1808113
+ ],
+ [
+ 21.5015124,
+ 55.1868198
+ ],
+ [
+ 21.3843708,
+ 55.2936996
+ ],
+ [
+ 21.2709829,
+ 55.2450059
+ ],
+ [
+ 21.0983616,
+ 55.2563884
+ ],
+ [
+ 20.9421741,
+ 55.282453
+ ],
+ [
+ 21.0863466,
+ 55.5618266
+ ],
+ [
+ 21.0399547,
+ 55.8363584
+ ],
+ [
+ 21.0640261,
+ 56.0699542
+ ],
+ [
+ 21.2047804,
+ 56.0811668
+ ],
+ [
+ 21.2307958,
+ 56.1623302
+ ],
+ [
+ 21.5021038,
+ 56.2954952
+ ],
+ [
+ 21.7235874,
+ 56.3138211
+ ],
+ [
+ 21.8356623,
+ 56.37162
+ ],
+ [
+ 21.9695397,
+ 56.3766515
+ ],
+ [
+ 22.0153001,
+ 56.4242811
+ ],
+ [
+ 22.4372717,
+ 56.406405
+ ],
+ [
+ 22.6800028,
+ 56.3515884
+ ],
+ [
+ 22.9191739,
+ 56.3790184
+ ],
+ [
+ 22.9466759,
+ 56.4146477
+ ],
+ [
+ 23.0932498,
+ 56.3046383
+ ],
+ [
+ 23.1703443,
+ 56.3667721
+ ],
+ [
+ 23.3064522,
+ 56.3830535
+ ],
+ [
+ 23.5571715,
+ 56.3338187
+ ],
+ [
+ 23.7647953,
+ 56.3733238
+ ],
+ [
+ 23.7666897,
+ 56.3238079
+ ],
+ [
+ 24.0189971,
+ 56.3297615
+ ],
+ [
+ 24.1214631,
+ 56.2488984
+ ],
+ [
+ 24.2857421,
+ 56.3006367
+ ],
+ [
+ 24.4541496,
+ 56.2581579
+ ],
+ [
+ 24.5794651,
+ 56.2882389
+ ],
+ [
+ 24.6284061,
+ 56.3753322
+ ],
+ [
+ 24.9023767,
+ 56.4805317
+ ],
+ [
+ 25.1277405,
+ 56.2059091
+ ],
+ [
+ 25.5771398,
+ 56.182414
+ ],
+ [
+ 25.6731232,
+ 56.1493667
+ ],
+ [
+ 26.2138385,
+ 55.850748
]
]
],
@@ -22832,10 +27777,11 @@
"terms_text": "NŽT ORT10LT"
},
{
+ "id": "mapbox_locator_overlay",
"name": "Locator Overlay",
"type": "tms",
- "description": "Shows major features to help orient you.",
"template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
+ "description": "Shows major features to help orient you.",
"scaleExtent": [
0,
16
@@ -22847,6 +27793,7 @@
"overlay": true
},
{
+ "id": "NSW_LPI_BaseMap",
"name": "LPI NSW Base Map",
"type": "tms",
"template": "http://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}",
@@ -22962,10 +27909,11 @@
]
]
],
- "terms_url": "http://www.lpi.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2015"
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2016"
},
{
+ "id": "NSW_LPI_Imagery",
"name": "LPI NSW Imagery",
"type": "tms",
"template": "http://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}",
@@ -23317,10 +28265,12 @@
]
]
],
- "terms_url": "http://www.lpi.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2015"
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2016",
+ "best": true
},
{
+ "id": "NSW_LPI_TopographicMap",
"name": "LPI NSW Topographic Map",
"type": "tms",
"template": "http://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}",
@@ -23908,10 +28858,11 @@
]
]
],
- "terms_url": "http://www.lpi.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2015"
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2016"
},
{
+ "id": "lu.geoportail.opendata.basemap",
"name": "Luxembourg Geoportail Basemap",
"type": "tms",
"template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
@@ -24828,10 +29779,10 @@
]
],
"terms_url": "https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts/",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "id": "lu.geoportail.opendata.basemap"
+ "terms_text": "Administration du Cadastre et de la Topographie"
},
{
+ "id": "lu.geoportail.opendata.cadastre",
"name": "Luxembourg Geoportail Cadastre",
"type": "tms",
"template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
@@ -25748,10 +30699,10 @@
]
],
"terms_url": "https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts/",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "id": "lu.geoportail.opendata.cadastre"
+ "terms_text": "Administration du Cadastre et de la Topographie"
},
{
+ "id": "lu.geoportail.opendata.ortho2010",
"name": "Luxembourg Geoportail Ortho 2010",
"type": "tms",
"template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2010/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
@@ -26669,10 +31620,10 @@
],
"terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
"terms_text": "Administration du Cadastre et de la Topographie",
- "id": "lu.geoportail.opendata.ortho2010",
"best": true
},
{
+ "id": "lu.geoportail.opendata.ortho2013",
"name": "Luxembourg Geoportail Ortho 2013",
"type": "tms",
"template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2013/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
@@ -27590,10 +32541,10 @@
],
"terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
"terms_text": "Administration du Cadastre et de la Topographie",
- "id": "lu.geoportail.opendata.ortho2013",
"best": true
},
{
+ "id": "lu.geoportail.opendata.topo",
"name": "Luxembourg Geoportail Topographical Map",
"type": "tms",
"template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
@@ -28510,28 +33461,28 @@
]
],
"terms_url": "https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts/",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "id": "lu.geoportail.opendata.topo"
+ "terms_text": "Administration du Cadastre et de la Topographie"
},
{
+ "id": "Mapbox",
"name": "Mapbox Satellite",
"type": "tms",
- "description": "Satellite and aerial imagery.",
"template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh7ifmo/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
+ "description": "Satellite and aerial imagery.",
"scaleExtent": [
0,
19
],
"terms_url": "http://www.mapbox.com/about/maps/",
"terms_text": "Terms & Feedback",
- "id": "Mapbox",
"default": true
},
{
+ "id": "geodata.md.gov-MD_SixInchImagery",
"name": "MD 2014 6 Inch Aerial Imagery",
"type": "tms",
+ "template": "http://whoots.mapwarper.net/tms/{zoom}/{x}/{y}/MD_SixInchImagery/http://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer",
"description": "Six Inch resolution aerial imagery for the State of Maryland",
- "template": "http://whoots.mapwarper.net/tms/{z}/{x}/{y}/MD_SixInchImagery/http://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer",
"scaleExtent": [
0,
20
@@ -28728,10 +33679,208 @@
"terms_text": "DoIT, MD iMap, MDP"
},
{
+ "id": "geodata.md.gov-MD_ColorBasemap",
+ "name": "MD Transportation Basemap",
+ "type": "tms",
+ "template": "http://whoots.mapwarper.net/tms/{zoom}/{x}/{y}/MD_ColorBasemap/http://geodata.md.gov/imap/services/Transportation/MD_ColorBasemap/MapServer/WmsServer",
+ "description": "Maryland State Highway Administration road features and additional Maryland focused landmarks",
+ "polygon": [
+ [
+ [
+ -76.234131,
+ 37.920368
+ ],
+ [
+ -76.598053,
+ 38.158317
+ ],
+ [
+ -76.940002,
+ 38.270532
+ ],
+ [
+ -77.038193,
+ 38.413786
+ ],
+ [
+ -77.23526,
+ 38.33627
+ ],
+ [
+ -77.312164,
+ 38.410558
+ ],
+ [
+ -77.262726,
+ 38.566422
+ ],
+ [
+ -77.042999,
+ 38.713376
+ ],
+ [
+ -77.049866,
+ 38.793697
+ ],
+ [
+ -76.92627,
+ 38.892503
+ ],
+ [
+ -77.040939,
+ 38.984499
+ ],
+ [
+ -77.12162,
+ 38.925229
+ ],
+ [
+ -77.150116,
+ 38.955137
+ ],
+ [
+ -77.252426,
+ 38.975425
+ ],
+ [
+ -77.259293,
+ 39.024252
+ ],
+ [
+ -77.34581,
+ 39.054918
+ ],
+ [
+ -77.461853,
+ 39.070379
+ ],
+ [
+ -77.537384,
+ 39.139647
+ ],
+ [
+ -77.474213,
+ 39.224807
+ ],
+ [
+ -77.572746,
+ 39.304284
+ ],
+ [
+ -77.723465,
+ 39.328986
+ ],
+ [
+ -77.777023,
+ 39.463234
+ ],
+ [
+ -77.861481,
+ 39.516225
+ ],
+ [
+ -77.840881,
+ 39.608862
+ ],
+ [
+ -77.956238,
+ 39.59299
+ ],
+ [
+ -78.166351,
+ 39.695564
+ ],
+ [
+ -78.270035,
+ 39.621557
+ ],
+ [
+ -78.338699,
+ 39.640066
+ ],
+ [
+ -78.466415,
+ 39.523641
+ ],
+ [
+ -78.662796,
+ 39.540058
+ ],
+ [
+ -78.798752,
+ 39.606217
+ ],
+ [
+ -78.9814,
+ 39.446799
+ ],
+ [
+ -79.06723,
+ 39.476486
+ ],
+ [
+ -79.485054,
+ 39.199536
+ ],
+ [
+ -79.485569,
+ 39.72158
+ ],
+ [
+ -75.788359,
+ 39.721811
+ ],
+ [
+ -75.690994,
+ 38.460579
+ ],
+ [
+ -75.049238,
+ 38.458159
+ ],
+ [
+ -75.049839,
+ 38.402218
+ ],
+ [
+ -75.081511,
+ 38.323208
+ ],
+ [
+ -75.097733,
+ 38.309066
+ ],
+ [
+ -75.186996,
+ 38.097551
+ ],
+ [
+ -75.23798,
+ 38.022402
+ ],
+ [
+ -75.61821,
+ 37.989669
+ ],
+ [
+ -75.863686,
+ 37.909534
+ ],
+ [
+ -76.234131,
+ 37.920368
+ ]
+ ]
+ ],
+ "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
+ "terms_text": "DoIT, MD iMap, MDP"
+ },
+ {
+ "id": "New_and_Misaligned_TIGER_Roads-2013",
"name": "New & Misaligned TIGER Roads",
"type": "tms",
- "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap",
"template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/enf.e0b8291e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
+ "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap",
"scaleExtent": [
0,
22
@@ -29009,6 +34158,10 @@
[
-123.2275233,
48.1849927
+ ],
+ [
+ -124.7617886,
+ 48.4130148
]
],
[
@@ -29051,6 +34204,10 @@
[
-159.0093692,
22.5070181
+ ],
+ [
+ -160.5787616,
+ 22.5062947
]
],
[
@@ -29197,16 +34354,21 @@
[
-164.9717003,
68.994689
+ ],
+ [
+ -167.1571546,
+ 68.721974
]
]
],
"overlay": true
},
{
+ "id": "geodata.state.nj.us-Infrared2015",
"name": "NJ 2015 Aerial Imagery (Infrared)",
"type": "tms",
+ "template": "http://whoots.mapwarper.net/tms/{zoom}/{x}/{y}/Infrared2015/http://geodata.state.nj.us/imagerywms/Infrared2015",
"description": "Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution",
- "template": "http://whoots.mapwarper.net/tms/{z}/{x}/{y}/Infrared2015/http://geodata.state.nj.us/imagerywms/Infrared2015",
"scaleExtent": [
0,
20
@@ -29691,10 +34853,11 @@
"terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)"
},
{
+ "id": "geodata.state.nj.us-Natural2015",
"name": "NJ 2015 Aerial Imagery (Natural Color)",
"type": "tms",
+ "template": "http://whoots.mapwarper.net/tms/{zoom}/{x}/{y}/Natural2015/http://geodata.state.nj.us/imagerywms/Natural2015",
"description": "Digital orthophotography of New Jersey, Natural Color, 1 foot resolution",
- "template": "http://whoots.mapwarper.net/tms/{z}/{x}/{y}/Natural2015/http://geodata.state.nj.us/imagerywms/Natural2015",
"scaleExtent": [
0,
20
@@ -30179,6 +35342,7 @@
"terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)"
},
{
+ "id": "NLS-Bartholomew-hfinch-hist",
"name": "NLS - Bartholomew Half Inch, 1897-1907",
"type": "tms",
"template": "http://geo.nls.uk/mapdata2/bartholomew/great_britain/{zoom}/{x}/{-y}.png",
@@ -30214,6 +35378,7 @@
"terms_text": "National Library of Scotland Historic Maps"
},
{
+ "id": "NLS-OS-7th_Series",
"name": "NLS - OS 1-inch 7th Series 1955-61",
"type": "tms",
"template": "http://geo.nls.uk/mapdata2/os/seventh/{zoom}/{x}/{-y}.png",
@@ -30242,6 +35407,10 @@
[
-6.4551164,
49.8591793
+ ],
+ [
+ -6.4585407,
+ 49.9044128
]
],
[
@@ -30332,6 +35501,10 @@
[
-1.453168,
60.5934321
+ ],
+ [
+ -1.4495137,
+ 60.8634056
]
],
[
@@ -30350,6 +35523,10 @@
[
-4.8766366,
54.0221831
+ ],
+ [
+ -4.9089213,
+ 54.4242078
]
],
[
@@ -30368,6 +35545,10 @@
[
-5.8621751,
59.0990605
+ ],
+ [
+ -5.8667408,
+ 59.1444603
]
],
[
@@ -30386,6 +35567,10 @@
[
-1.7054472,
59.4975834
+ ],
+ [
+ -1.7065887,
+ 59.5703599
]
],
[
@@ -30404,6 +35589,10 @@
[
-7.6797341,
58.2577853
+ ],
+ [
+ -7.6865827,
+ 58.2940975
]
],
[
@@ -30422,6 +35611,10 @@
[
-4.5332574,
59.0180707
+ ],
+ [
+ -4.5338281,
+ 59.0359871
]
],
[
@@ -30440,6 +35633,10 @@
[
-8.6510947,
57.7779213
+ ],
+ [
+ -8.6710698,
+ 57.8769896
]
],
[
@@ -31194,6 +36391,10 @@
[
-5.2618345,
50.7082694
+ ],
+ [
+ -5.2395519,
+ 50.3530581
]
],
[
@@ -31212,6 +36413,10 @@
[
-2.148555,
60.1011247
+ ],
+ [
+ -2.1502671,
+ 60.171318
]
],
[
@@ -31230,6 +36435,10 @@
[
-6.2097426,
59.0714985
+ ],
+ [
+ -6.2086011,
+ 59.1163488
]
],
[
@@ -31248,6 +36457,10 @@
[
-4.3913388,
59.0897328
+ ],
+ [
+ -4.4159559,
+ 59.0889036
]
]
],
@@ -31255,6 +36468,7 @@
"terms_text": "National Library of Scotland Historic Maps"
},
{
+ "id": "NLS-OS-1st_Series",
"name": "NLS - OS 1:25k 1st Series 1937-61",
"type": "tms",
"template": "http://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png",
@@ -31279,6 +36493,10 @@
[
-4.7148782,
54.6615818
+ ],
+ [
+ -4.7157244,
+ 54.6796556
]
],
[
@@ -31361,6 +36579,10 @@
[
-3.7158389,
58.4270836
+ ],
+ [
+ -3.7085748,
+ 58.3371151
]
],
[
@@ -31387,6 +36609,10 @@
[
-6.4504159,
49.8159968
+ ],
+ [
+ -6.46676,
+ 49.9943621
]
],
[
@@ -33089,6 +38315,10 @@
[
-5.6468717,
50.2209953
+ ],
+ [
+ -5.6453263,
+ 50.2029809
]
],
[
@@ -33107,6 +38337,10 @@
[
-5.1322161,
55.2446343
+ ],
+ [
+ -5.1336607,
+ 55.2630226
]
],
[
@@ -33125,6 +38359,10 @@
[
-5.6277517,
55.3302345
+ ],
+ [
+ -5.6431878,
+ 55.5095745
]
],
[
@@ -33143,6 +38381,10 @@
[
-4.7174993,
51.1280545
+ ],
+ [
+ -4.7213517,
+ 51.2180246
]
],
[
@@ -33161,6 +38403,10 @@
[
-5.1755648,
55.6138137
+ ],
+ [
+ -5.1608796,
+ 55.4153626
]
]
],
@@ -33168,6 +38414,7 @@
"terms_text": "National Library of Scotland Historic Maps"
},
{
+ "id": "NLS-OS-25inch-hist",
"name": "NLS - OS 25-inch (Scotland), 1892-1905",
"type": "tms",
"template": "http://geo.nls.uk/mapdata2/os/25_inch/scotland_1/{zoom}/{x}/{y}.png",
@@ -33203,6 +38450,7 @@
"terms_text": "National Library of Scotland Historic Maps"
},
{
+ "id": "NLS-OS-6inch-County-Series-hist",
"name": "NLS - OS 6-inch County Series, 1888-1913",
"type": "tms",
"template": "http://geo.nls.uk/mapdata3/os/6_inch_gb_1900/{zoom}/{x}/{y}.png",
@@ -33238,6 +38486,7 @@
"terms_text": "National Library of Scotland Historic Maps"
},
{
+ "id": "NLS-OS-6inch-Scotland-hist",
"name": "NLS - OS 6-inch Scotland 1842-82",
"type": "tms",
"template": "http://geo.nls.uk/maps/os/six_inch/{zoom}/{x}/{-y}.png",
@@ -34386,6 +39635,10 @@
[
-5.2152946,
55.0341891
+ ],
+ [
+ -5.2112173,
+ 54.8018593
]
],
[
@@ -34404,6 +39657,10 @@
[
-2.1663122,
60.104743
+ ],
+ [
+ -2.1646559,
+ 60.1622059
]
],
[
@@ -34562,6 +39819,10 @@
[
-1.528659,
60.1459283
+ ],
+ [
+ -1.5360658,
+ 59.8570831
]
],
[
@@ -34580,6 +39841,10 @@
[
-0.8065683,
60.8934578
+ ],
+ [
+ -0.9847667,
+ 60.8943762
]
],
[
@@ -34842,6 +40107,10 @@
[
-7.603783,
56.8792358
+ ],
+ [
+ -7.7696901,
+ 56.8788231
]
],
[
@@ -34860,6 +40129,10 @@
[
-1.7112191,
59.5041365
+ ],
+ [
+ -1.7106618,
+ 59.5626284
]
]
],
@@ -34867,45 +40140,36 @@
"terms_text": "National Library of Scotland Historic Maps"
},
{
- "name": "OpenPT Map (overlay)",
- "type": "tms",
- "template": "http://openptmap.de/tiles/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 4,
- 17
- ],
- "terms_url": "http://openstreetmap.org/",
- "terms_text": "© OpenStreetMap contributors, CC-BY-SA"
- },
- {
+ "id": "MAPNIK",
"name": "OpenStreetMap (Standard)",
"type": "tms",
- "description": "The default OpenStreetMap layer.",
"template": "http://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png",
+ "description": "The default OpenStreetMap layer.",
"scaleExtent": [
0,
19
],
"terms_url": "http://openstreetmap.org/",
"terms_text": "© OpenStreetMap contributors, CC-BY-SA",
- "id": "MAPNIK",
"default": true
},
{
+ "id": "osm-gps",
"name": "OpenStreetMap GPS traces",
"type": "tms",
- "description": "Public GPS traces uploaded to OpenStreetMap.",
"template": "http://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
+ "description": "Public GPS traces uploaded to OpenStreetMap.",
"scaleExtent": [
0,
20
],
"terms_url": "http://www.openstreetmap.org/copyright",
"terms_text": "© OpenStreetMap contributors",
- "terms_html": "© OpenStreetMap contributors. North: South: East: West: ",
+ "terms_html": "GPS Direction: ← ↓ ↑ → © OpenStreetMap contributors.",
"overlay": true
},
{
+ "id": "OS-historic-25k-OSM_Limited",
"name": "OS 1:25k historic (OSM)",
"type": "tms",
"template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
@@ -34939,6 +40203,7 @@
]
},
{
+ "id": "OS-New_Popular_Edition-historic",
"name": "OS New Popular Edition historic",
"type": "tms",
"template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
@@ -34968,6 +40233,7 @@
]
},
{
+ "id": "OS-OpenData_Locator",
"name": "OS OpenData Locator",
"type": "tms",
"template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
@@ -34998,6 +40264,7 @@
"overlay": true
},
{
+ "id": "OS-OpenData_StreetView",
"name": "OS OpenData StreetView",
"type": "tms",
"template": "http://os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
@@ -35814,6 +41081,10 @@
[
-5.2839506,
50.0229734
+ ],
+ [
+ -5.8292886,
+ 50.0229734
]
],
[
@@ -35848,6 +41119,10 @@
[
-6.2540201,
49.8673563
+ ],
+ [
+ -6.4580707,
+ 49.8673563
]
],
[
@@ -35866,6 +41141,10 @@
[
-5.7683254,
49.932156
+ ],
+ [
+ -5.8343165,
+ 49.932156
]
],
[
@@ -35924,6 +41203,10 @@
[
-1.3506319,
60.6885737
+ ],
+ [
+ -1.9483797,
+ 60.6885737
]
],
[
@@ -35942,6 +41225,10 @@
[
-1.9864011,
60.1968568
+ ],
+ [
+ -2.203381,
+ 60.1968568
]
],
[
@@ -35960,6 +41247,10 @@
[
-1.5373349,
59.5698289
+ ],
+ [
+ -1.7543149,
+ 59.5698289
]
],
[
@@ -35978,6 +41269,10 @@
[
-4.2867004,
59.1370518
+ ],
+ [
+ -4.5585981,
+ 59.1370518
]
],
[
@@ -35996,6 +41291,10 @@
[
-5.6650612,
59.2025744
+ ],
+ [
+ -6.2787732,
+ 59.2025744
]
],
[
@@ -36014,6 +41313,10 @@
[
-8.3592926,
57.9440556
+ ],
+ [
+ -8.7163482,
+ 57.9440556
]
],
[
@@ -36032,6 +41335,10 @@
[
-7.3907205,
50.4021026
+ ],
+ [
+ -7.6077005,
+ 50.4021026
]
],
[
@@ -36050,11 +41357,16 @@
[
-7.5134503,
58.3579902
+ ],
+ [
+ -7.7304303,
+ 58.3579902
]
]
]
},
{
+ "id": "OS-Scottish_Popular-historic",
"name": "OS Scottish Popular historic",
"type": "tms",
"template": "http://ooc.openstreetmap.org/npescotland/tiles/{zoom}/{x}/{y}.jpg",
@@ -36088,6 +41400,7 @@
]
},
{
+ "id": "Pangasinan_Bulacan_HiRes",
"name": "Pangasinán/Bulacan (Phillipines HiRes)",
"type": "tms",
"template": "http://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png",
@@ -36154,401 +41467,2355 @@
[
120.695,
14.8423
+ ],
+ [
+ 120.8268,
+ 15.3658
]
]
]
},
{
- "name": "Slovakia EEA CORINE 2006",
+ "id": "PNOA-Spain-TMS",
+ "name": "PNOA Spain",
"type": "tms",
- "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
+ "template": "http://www.ign.es/wmts/pnoa-ma?request=GetTile&service=WMTS&VERSION=1.0.0&Layer=OI.OrthoimageCoverage&Style=default&Format=image/png&TileMatrixSet=GoogleMapsCompatible&TileMatrix={zoom}&TileRow={y}&TileCol={x}",
"polygon": [
[
[
- 19.83682,
- 49.25529
+ -17.8846298,
+ 28.4460601
],
[
- 19.80075,
- 49.42385
+ -17.8939535,
+ 28.5225529
],
[
- 19.60437,
- 49.48058
+ -18.0212548,
+ 28.7481927
],
[
- 19.49179,
- 49.63961
+ -18.0224091,
+ 28.8038375
],
[
- 19.21831,
- 49.52604
+ -17.9424017,
+ 28.8726124
],
[
- 19.16778,
- 49.42521
+ -17.8911792,
+ 28.8737099
],
[
- 19.00308,
- 49.42236
+ -17.8903302,
+ 28.8515102
],
[
- 18.97611,
- 49.5308
+ -17.7675902,
+ 28.8537764
],
[
- 18.54685,
- 49.51425
+ -17.7669837,
+ 28.8312183
],
[
- 18.31432,
- 49.33818
+ -17.7412714,
+ 28.8319975
],
[
- 18.15913,
- 49.2961
+ -17.7394926,
+ 28.7642235
],
[
- 18.05564,
- 49.11134
+ -17.7139824,
+ 28.7649677
],
[
- 17.56396,
- 48.84938
+ -17.7129312,
+ 28.7303731
],
[
- 17.17929,
- 48.88816
+ -17.7574427,
+ 28.6931782
],
[
- 17.058,
- 48.81105
+ -17.7570788,
+ 28.6741254
],
[
- 16.90426,
- 48.61947
+ -17.7457913,
+ 28.6743524
],
[
- 16.79685,
- 48.38561
+ -17.7457266,
+ 28.6165627
],
[
- 17.06762,
- 48.01116
+ -17.7519687,
+ 28.5833675
],
[
- 17.32787,
- 47.97749
+ -17.7622536,
+ 28.5591958
],
[
- 17.51699,
- 47.82535
+ -17.7833086,
+ 28.541667
],
[
- 17.74776,
- 47.73093
+ -17.7831575,
+ 28.4936643
],
[
- 18.29515,
- 47.72075
+ -17.808611,
+ 28.4925024
],
[
- 18.67959,
- 47.75541
+ -17.8060072,
+ 28.4468974
],
[
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
+ -17.8846298,
+ 28.4460601
]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
- "terms_text": "EEA Corine 2006"
- },
- {
- "name": "Slovakia EEA GMES Urban Atlas",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/urbanatlas/{zoom}/{x}/{y}.png",
- "polygon": [
+ ],
[
[
- 19.83682,
- 49.25529
+ -18.1661033,
+ 27.7851643
],
[
- 19.80075,
- 49.42385
+ -18.163494,
+ 27.6949247
],
[
- 19.60437,
- 49.48058
+ -18.0889827,
+ 27.6963366
],
[
- 19.49179,
- 49.63961
+ -18.0873398,
+ 27.6738724
],
[
- 19.21831,
- 49.52604
+ -18.0364092,
+ 27.6753701
],
[
- 19.16778,
- 49.42521
+ -18.0350079,
+ 27.6302571
],
[
- 19.00308,
- 49.42236
+ -17.9589987,
+ 27.6323976
],
[
- 18.97611,
- 49.5308
+ -17.8603269,
+ 27.7926025
],
[
- 18.54685,
- 49.51425
+ -17.8630328,
+ 27.8368793
],
[
- 18.31432,
- 49.33818
+ -17.8884015,
+ 27.8364947
],
[
- 18.15913,
- 49.2961
+ -17.8891263,
+ 27.8590536
],
[
- 18.05564,
- 49.11134
+ -17.9906491,
+ 27.8567467
],
[
- 17.56396,
- 48.84938
+ -18.0386803,
+ 27.7655831
],
[
- 17.17929,
- 48.88816
+ -18.1146412,
+ 27.7637873
],
[
- 17.058,
- 48.81105
+ -18.1154627,
+ 27.7863613
],
[
- 16.90426,
- 48.61947
+ -18.1661033,
+ 27.7851643
+ ]
+ ],
+ [
+ [
+ -17.36038,
+ 28.0639801
],
[
- 16.79685,
- 48.38561
+ -17.3629657,
+ 28.1757247
],
[
- 17.06762,
- 48.01116
+ -17.3375583,
+ 28.1763688
],
[
- 17.32787,
- 47.97749
+ -17.3384577,
+ 28.2213012
],
[
- 17.51699,
- 47.82535
+ -17.1857883,
+ 28.2238767
],
[
- 17.74776,
- 47.73093
+ -17.0820788,
+ 28.1351849
],
[
- 18.29515,
- 47.72075
+ -17.0808422,
+ 28.0679977
],
[
- 18.67959,
- 47.75541
+ -17.1315446,
+ 28.0668073
],
[
- 18.89755,
- 47.81203
+ -17.1563337,
+ 28.0214628
],
[
- 18.79463,
- 47.88245
+ -17.2321063,
+ 28.0203711
],
[
- 18.84318,
- 48.04046
+ -17.2319938,
+ 27.9980388
],
[
- 19.46212,
- 48.05333
+ -17.2576823,
+ 27.9978403
],
[
- 19.62064,
- 48.22938
+ -17.257851,
+ 28.0199741
],
[
- 19.89585,
- 48.09387
+ -17.3086658,
+ 28.0192298
],
[
- 20.33766,
- 48.2643
+ -17.36038,
+ 28.0639801
+ ]
+ ],
+ [
+ [
+ -16.9278171,
+ 28.3275779
],
[
- 20.55395,
- 48.52358
+ -16.9286591,
+ 28.3721879
],
[
- 20.82335,
- 48.55714
+ -16.8776666,
+ 28.3729288
],
[
- 21.10271,
- 48.47096
+ -16.8780707,
+ 28.3954191
],
[
- 21.45863,
- 48.55513
+ -16.5214259,
+ 28.4226146
],
[
- 21.74536,
- 48.31435
+ -16.4457117,
+ 28.491135
],
[
- 22.15293,
- 48.37179
+ -16.4462506,
+ 28.535972
],
[
- 22.61255,
- 49.08914
+ -16.4205859,
+ 28.5362679
],
[
- 22.09997,
- 49.23814
+ -16.4209227,
+ 28.5588419
],
[
- 21.9686,
- 49.36363
+ -16.3443329,
+ 28.5597589
],
[
- 21.6244,
- 49.46989
+ -16.3446023,
+ 28.5822095
],
[
- 21.06873,
- 49.46402
+ -16.1912541,
+ 28.5837179
],
[
- 20.94336,
- 49.31088
+ -16.1916246,
+ 28.6068435
],
[
- 20.73052,
- 49.44006
+ -16.1279344,
+ 28.6078193
],
[
- 20.22804,
- 49.41714
+ -16.1277997,
+ 28.5921762
],
[
- 20.05234,
- 49.23052
+ -16.0995079,
+ 28.5925015
],
[
- 19.83682,
- 49.25529
+ -16.0993395,
+ 28.5163822
+ ],
+ [
+ -16.1648148,
+ 28.5161158
+ ],
+ [
+ -16.1647474,
+ 28.4938583
+ ],
+ [
+ -16.2385755,
+ 28.4484704
+ ],
+ [
+ -16.2653516,
+ 28.4476116
+ ],
+ [
+ -16.2658569,
+ 28.4030038
+ ],
+ [
+ -16.3167484,
+ 28.4017594
+ ],
+ [
+ -16.3163105,
+ 28.380189
+ ],
+ [
+ -16.3420763,
+ 28.3795075
+ ],
+ [
+ -16.3408301,
+ 28.2892963
+ ],
+ [
+ -16.415837,
+ 28.1976134
+ ],
+ [
+ -16.415096,
+ 28.1311312
+ ],
+ [
+ -16.5153297,
+ 28.0164796
+ ],
+ [
+ -16.6168433,
+ 28.01532
+ ],
+ [
+ -16.6168096,
+ 27.9930469
+ ],
+ [
+ -16.7184243,
+ 27.9919168
+ ],
+ [
+ -16.7190979,
+ 28.0371426
+ ],
+ [
+ -16.7446952,
+ 28.0367859
+ ],
+ [
+ -16.7453351,
+ 28.0818146
+ ],
+ [
+ -16.7706967,
+ 28.0816065
+ ],
+ [
+ -16.8223966,
+ 28.1259036
+ ],
+ [
+ -16.8231712,
+ 28.1708652
+ ],
+ [
+ -16.8487012,
+ 28.1707464
+ ],
+ [
+ -16.8502842,
+ 28.260791
+ ],
+ [
+ -16.8756457,
+ 28.2605537
+ ],
+ [
+ -16.8760836,
+ 28.2832162
+ ],
+ [
+ -16.9015125,
+ 28.2827713
+ ],
+ [
+ -16.9023882,
+ 28.3279337
+ ],
+ [
+ -16.9278171,
+ 28.3275779
+ ]
+ ],
+ [
+ [
+ -15.8537427,
+ 27.9008901
+ ],
+ [
+ -15.8542032,
+ 27.9901812
+ ],
+ [
+ -15.828953,
+ 27.9906555
+ ],
+ [
+ -15.8291065,
+ 28.035578
+ ],
+ [
+ -15.7782992,
+ 28.0363232
+ ],
+ [
+ -15.7532793,
+ 28.0814298
+ ],
+ [
+ -15.7278756,
+ 28.0815652
+ ],
+ [
+ -15.7282593,
+ 28.1718567
+ ],
+ [
+ -15.4989741,
+ 28.1728039
+ ],
+ [
+ -15.4987438,
+ 28.1504075
+ ],
+ [
+ -15.4497785,
+ 28.1507459
+ ],
+ [
+ -15.4501622,
+ 28.1961425
+ ],
+ [
+ -15.3972827,
+ 28.1961425
+ ],
+ [
+ -15.3964385,
+ 28.0383554
+ ],
+ [
+ -15.3710348,
+ 28.0380167
+ ],
+ [
+ -15.3706511,
+ 28.0153212
+ ],
+ [
+ -15.3457847,
+ 28.0153212
+ ],
+ [
+ -15.3454777,
+ 27.9254406
+ ],
+ [
+ -15.3708046,
+ 27.9252372
+ ],
+ [
+ -15.3705743,
+ 27.8352137
+ ],
+ [
+ -15.395978,
+ 27.8347387
+ ],
+ [
+ -15.4209979,
+ 27.7879673
+ ],
+ [
+ -15.4718052,
+ 27.7893932
+ ],
+ [
+ -15.471882,
+ 27.7666454
+ ],
+ [
+ -15.522766,
+ 27.7667813
+ ],
+ [
+ -15.5477092,
+ 27.7216112
+ ],
+ [
+ -15.6236132,
+ 27.7213395
+ ],
+ [
+ -15.6241504,
+ 27.741991
+ ],
+ [
+ -15.7007451,
+ 27.7433495
+ ],
+ [
+ -15.801669,
+ 27.8110501
+ ],
+ [
+ -15.8537427,
+ 27.9008901
+ ]
+ ],
+ [
+ [
+ -14.5215621,
+ 28.0467778
+ ],
+ [
+ -14.5224358,
+ 28.1184131
+ ],
+ [
+ -14.4157526,
+ 28.1156076
+ ],
+ [
+ -14.2168794,
+ 28.2278805
+ ],
+ [
+ -14.2153651,
+ 28.33903
+ ],
+ [
+ -14.1641672,
+ 28.4528287
+ ],
+ [
+ -14.1115132,
+ 28.4747955
+ ],
+ [
+ -14.0335806,
+ 28.7226671
+ ],
+ [
+ -13.9565217,
+ 28.7449351
+ ],
+ [
+ -13.9561722,
+ 28.7665857
+ ],
+ [
+ -13.8290221,
+ 28.7664325
+ ],
+ [
+ -13.8289639,
+ 28.7879765
+ ],
+ [
+ -13.8000741,
+ 28.7879255
+ ],
+ [
+ -13.8012972,
+ 28.7189894
+ ],
+ [
+ -13.827566,
+ 28.719347
+ ],
+ [
+ -13.8278572,
+ 28.6517968
+ ],
+ [
+ -13.8025786,
+ 28.651899
+ ],
+ [
+ -13.8033941,
+ 28.5384172
+ ],
+ [
+ -13.8288474,
+ 28.5384684
+ ],
+ [
+ -13.8315061,
+ 28.3970177
+ ],
+ [
+ -13.9158189,
+ 28.2241438
+ ],
+ [
+ -13.9856445,
+ 28.2235696
+ ],
+ [
+ -14.0369588,
+ 28.1795787
+ ],
+ [
+ -14.1387139,
+ 28.1799894
+ ],
+ [
+ -14.1386556,
+ 28.1579103
+ ],
+ [
+ -14.2153651,
+ 28.1578076
+ ],
+ [
+ -14.2147244,
+ 28.1118888
+ ],
+ [
+ -14.2913173,
+ 28.0452356
+ ],
+ [
+ -14.3319673,
+ 28.0368713
+ ],
+ [
+ -14.4457846,
+ 28.0469834
+ ],
+ [
+ -14.4466583,
+ 28.0657961
+ ],
+ [
+ -14.4962835,
+ 28.0682631
+ ],
+ [
+ -14.495934,
+ 28.0458525
+ ],
+ [
+ -14.5215621,
+ 28.0467778
+ ]
+ ],
+ [
+ [
+ -13.800662,
+ 28.8456579
+ ],
+ [
+ -13.8009273,
+ 28.8231121
+ ],
+ [
+ -13.775688,
+ 28.8230539
+ ],
+ [
+ -13.69729,
+ 28.8898184
+ ],
+ [
+ -13.69729,
+ 28.9127744
+ ],
+ [
+ -13.6072498,
+ 28.9117991
+ ],
+ [
+ -13.4388551,
+ 29.0002417
+ ],
+ [
+ -13.4374559,
+ 29.1351289
+ ],
+ [
+ -13.4117005,
+ 29.1349931
+ ],
+ [
+ -13.4105556,
+ 29.2229789
+ ],
+ [
+ -13.4592801,
+ 29.255586
+ ],
+ [
+ -13.4597392,
+ 29.2942023
+ ],
+ [
+ -13.5091254,
+ 29.2945638
+ ],
+ [
+ -13.5100581,
+ 29.3163453
+ ],
+ [
+ -13.5635382,
+ 29.3172941
+ ],
+ [
+ -13.5640564,
+ 29.2713764
+ ],
+ [
+ -13.5389228,
+ 29.2711956
+ ],
+ [
+ -13.5389747,
+ 29.2500375
+ ],
+ [
+ -13.5661293,
+ 29.2501279
+ ],
+ [
+ -13.5665956,
+ 29.2030039
+ ],
+ [
+ -13.5156549,
+ 29.2022349
+ ],
+ [
+ -13.5156549,
+ 29.1820579
+ ],
+ [
+ -13.5398038,
+ 29.1827819
+ ],
+ [
+ -13.5408921,
+ 29.137528
+ ],
+ [
+ -13.65782,
+ 29.1368528
+ ],
+ [
+ -13.713222,
+ 29.0935079
+ ],
+ [
+ -13.7663353,
+ 29.0934533
+ ],
+ [
+ -13.8502463,
+ 29.0165937
+ ],
+ [
+ -13.8518224,
+ 28.983425
+ ],
+ [
+ -13.8524443,
+ 28.914861
+ ],
+ [
+ -13.9013122,
+ 28.89245
+ ],
+ [
+ -13.9024005,
+ 28.8469779
+ ],
+ [
+ -13.800662,
+ 28.8456579
+ ]
+ ],
+ [
+ [
+ 1.6479916,
+ 38.9990693
+ ],
+ [
+ 1.7321668,
+ 38.9993635
+ ],
+ [
+ 1.7314703,
+ 39.0441733
+ ],
+ [
+ 1.6489512,
+ 39.0431944
+ ],
+ [
+ 1.6481552,
+ 39.1276358
+ ],
+ [
+ 1.3948608,
+ 39.1265691
+ ],
+ [
+ 1.3954412,
+ 39.0864199
+ ],
+ [
+ 1.2281145,
+ 39.0852615
+ ],
+ [
+ 1.2291095,
+ 39.0028958
+ ],
+ [
+ 1.1448657,
+ 39.0018003
+ ],
+ [
+ 1.1452803,
+ 38.8319988
+ ],
+ [
+ 1.3113632,
+ 38.8331615
+ ],
+ [
+ 1.3121924,
+ 38.7906483
+ ],
+ [
+ 1.3946949,
+ 38.7916178
+ ],
+ [
+ 1.3951924,
+ 38.7529597
+ ],
+ [
+ 1.3112803,
+ 38.7519251
+ ],
+ [
+ 1.3125919,
+ 38.6238804
+ ],
+ [
+ 1.6489036,
+ 38.6251112
+ ],
+ [
+ 1.6480745,
+ 38.7111504
+ ],
+ [
+ 1.58456,
+ 38.7101152
+ ],
+ [
+ 1.5811604,
+ 38.7005387
+ ],
+ [
+ 1.5491544,
+ 38.7002798
+ ],
+ [
+ 1.5197188,
+ 38.7092094
+ ],
+ [
+ 1.50355,
+ 38.7253185
+ ],
+ [
+ 1.4813282,
+ 38.9155064
+ ],
+ [
+ 1.5518906,
+ 38.9254411
+ ],
+ [
+ 1.5667328,
+ 38.9566554
+ ],
+ [
+ 1.6487378,
+ 38.9583318
+ ],
+ [
+ 1.6479916,
+ 38.9990693
+ ]
+ ],
+ [
+ [
+ 2.5450749,
+ 39.4166673
+ ],
+ [
+ 2.43933,
+ 39.4161122
+ ],
+ [
+ 2.438714,
+ 39.4846853
+ ],
+ [
+ 2.439022,
+ 39.4993424
+ ],
+ [
+ 2.3122308,
+ 39.4993424
+ ],
+ [
+ 2.3119228,
+ 39.5417911
+ ],
+ [
+ 2.2290722,
+ 39.5409994
+ ],
+ [
+ 2.2283536,
+ 39.6260571
+ ],
+ [
+ 2.3460076,
+ 39.6270851
+ ],
+ [
+ 2.9270445,
+ 39.9601558
+ ],
+ [
+ 3.1456647,
+ 39.9600498
+ ],
+ [
+ 3.1460753,
+ 40.0019797
+ ],
+ [
+ 3.2313899,
+ 40.0019797
+ ],
+ [
+ 3.2312872,
+ 39.8329231
+ ],
+ [
+ 3.1482313,
+ 39.8331596
+ ],
+ [
+ 3.1484366,
+ 39.7935717
+ ],
+ [
+ 3.4814817,
+ 39.7931773
+ ],
+ [
+ 3.4803472,
+ 39.5959027
+ ],
+ [
+ 3.3150618,
+ 39.4784606
+ ],
+ [
+ 3.3146179,
+ 39.3785504
+ ],
+ [
+ 3.0830178,
+ 39.2499355
+ ],
+ [
+ 2.9798608,
+ 39.2501482
+ ],
+ [
+ 2.9790395,
+ 39.3334971
+ ],
+ [
+ 2.7287424,
+ 39.3334177
+ ],
+ [
+ 2.7288451,
+ 39.4581361
+ ],
+ [
+ 2.6456865,
+ 39.4577397
+ ],
+ [
+ 2.6453785,
+ 39.4996593
+ ],
+ [
+ 2.5452802,
+ 39.4994216
+ ],
+ [
+ 2.5450749,
+ 39.4166673
+ ]
+ ],
+ [
+ [
+ 3.8120402,
+ 40.0434431
+ ],
+ [
+ 3.729082,
+ 40.0437979
+ ],
+ [
+ 3.7286185,
+ 39.9584155
+ ],
+ [
+ 3.8126633,
+ 39.9576011
+ ],
+ [
+ 3.8122771,
+ 39.9164393
+ ],
+ [
+ 3.9608975,
+ 39.9159813
+ ],
+ [
+ 4.1938142,
+ 39.791308
+ ],
+ [
+ 4.3150279,
+ 39.7905799
+ ],
+ [
+ 4.3159934,
+ 39.8329294
+ ],
+ [
+ 4.3987393,
+ 39.8320396
+ ],
+ [
+ 4.3973664,
+ 39.9185834
+ ],
+ [
+ 4.3158003,
+ 39.9193274
+ ],
+ [
+ 4.3161865,
+ 40.0433985
+ ],
+ [
+ 4.2318959,
+ 40.0443594
+ ],
+ [
+ 4.2324752,
+ 40.0847793
+ ],
+ [
+ 4.1491501,
+ 40.086109
+ ],
+ [
+ 4.1490623,
+ 40.1255157
+ ],
+ [
+ 4.0627981,
+ 40.1272166
+ ],
+ [
+ 4.0624217,
+ 40.0849941
+ ],
+ [
+ 3.8128687,
+ 40.085294
+ ],
+ [
+ 3.8120402,
+ 40.0434431
+ ]
+ ],
+ [
+ [
+ -8.8910646,
+ 41.8228891
+ ],
+ [
+ -9.1092038,
+ 42.5751065
+ ],
+ [
+ -9.0365469,
+ 42.730656
+ ],
+ [
+ -9.0883419,
+ 42.7269569
+ ],
+ [
+ -9.1466113,
+ 42.7750272
+ ],
+ [
+ -9.2185488,
+ 42.9016271
+ ],
+ [
+ -9.2760988,
+ 42.8605106
+ ],
+ [
+ -9.3099094,
+ 42.9311297
+ ],
+ [
+ -9.2789763,
+ 42.9821991
+ ],
+ [
+ -9.3099094,
+ 43.0600377
+ ],
+ [
+ -9.2523594,
+ 43.1041725
+ ],
+ [
+ -9.2314975,
+ 43.1703151
+ ],
+ [
+ -9.1473307,
+ 43.210176
+ ],
+ [
+ -9.06748,
+ 43.1991644
+ ],
+ [
+ -9.0336694,
+ 43.2426748
+ ],
+ [
+ -8.99842,
+ 43.2447709
+ ],
+ [
+ -8.9998588,
+ 43.2955793
+ ],
+ [
+ -8.9372732,
+ 43.3055265
+ ],
+ [
+ -8.92936,
+ 43.326986
+ ],
+ [
+ -8.8638969,
+ 43.3290792
+ ],
+ [
+ -8.8761263,
+ 43.3740655
+ ],
+ [
+ -8.8221732,
+ 43.3735426
+ ],
+ [
+ -8.785485,
+ 43.3191358
+ ],
+ [
+ -8.7063538,
+ 43.305003
+ ],
+ [
+ -8.6099575,
+ 43.3296025
+ ],
+ [
+ -8.5509688,
+ 43.3233227
+ ],
+ [
+ -8.5243519,
+ 43.3364048
+ ],
+ [
+ -8.5250713,
+ 43.3646525
+ ],
+ [
+ -8.45745,
+ 43.3918416
+ ],
+ [
+ -8.3610538,
+ 43.4111803
+ ],
+ [
+ -8.3603344,
+ 43.4634161
+ ],
+ [
+ -8.3344369,
+ 43.5797394
+ ],
+ [
+ -8.2776063,
+ 43.5708796
+ ],
+ [
+ -8.0646713,
+ 43.7239184
+ ],
+ [
+ -7.9992081,
+ 43.7233986
+ ],
+ [
+ -7.9171994,
+ 43.7826357
+ ],
+ [
+ -7.8560525,
+ 43.7914643
+ ],
+ [
+ -7.83591,
+ 43.7374337
+ ],
+ [
+ -7.6628443,
+ 43.809819
+ ],
+ [
+ -7.3188932,
+ 43.6782695
+ ],
+ [
+ -7.1997467,
+ 43.5830817
+ ],
+ [
+ -6.2488228,
+ 43.6075032
+ ],
+ [
+ -6.1229322,
+ 43.5790105
+ ],
+ [
+ -5.8520425,
+ 43.6798953
+ ],
+ [
+ -5.6036334,
+ 43.5708672
+ ],
+ [
+ -5.2855347,
+ 43.5619084
+ ],
+ [
+ -5.1787525,
+ 43.4991591
+ ],
+ [
+ -4.9089869,
+ 43.4836655
+ ],
+ [
+ -4.6156167,
+ 43.4192021
+ ],
+ [
+ -4.1839917,
+ 43.4249168
+ ],
+ [
+ -3.8029478,
+ 43.5195394
+ ],
+ [
+ -3.7400025,
+ 43.4869277
+ ],
+ [
+ -3.5612827,
+ 43.5423572
+ ],
+ [
+ -3.1083013,
+ 43.3816347
+ ],
+ [
+ -2.9385737,
+ 43.4624573
+ ],
+ [
+ -2.7452417,
+ 43.4755094
+ ],
+ [
+ -2.3046245,
+ 43.3170625
+ ],
+ [
+ -1.9854018,
+ 43.3563045
+ ],
+ [
+ -1.8552841,
+ 43.3972545
+ ],
+ [
+ -1.769802,
+ 43.3964383
+ ],
+ [
+ -1.7700492,
+ 43.3760501
+ ],
+ [
+ -1.7100474,
+ 43.3756908
+ ],
+ [
+ -1.7113451,
+ 43.3312527
+ ],
+ [
+ -1.7225915,
+ 43.3131806
+ ],
+ [
+ -1.6890375,
+ 43.3129108
+ ],
+ [
+ -1.6881106,
+ 43.3341294
+ ],
+ [
+ -1.6446695,
+ 43.3337248
+ ],
+ [
+ -1.6449785,
+ 43.3133155
+ ],
+ [
+ -1.6029903,
+ 43.3129528
+ ],
+ [
+ -1.6034352,
+ 43.2926624
+ ],
+ [
+ -1.5635905,
+ 43.2921227
+ ],
+ [
+ -1.5630468,
+ 43.3133844
+ ],
+ [
+ -1.4779905,
+ 43.3128355
+ ],
+ [
+ -1.3667723,
+ 43.2761368
+ ],
+ [
+ -1.3568809,
+ 43.2381533
+ ],
+ [
+ -1.3703692,
+ 43.1712972
+ ],
+ [
+ -1.4423067,
+ 43.0833554
+ ],
+ [
+ -1.4198262,
+ 43.0603647
+ ],
+ [
+ -1.3730668,
+ 43.051166
+ ],
+ [
+ -1.3640746,
+ 43.1115893
+ ],
+ [
+ -1.3020285,
+ 43.135217
+ ],
+ [
+ -1.2354864,
+ 43.1332484
+ ],
+ [
+ -1.2795481,
+ 43.0774443
+ ],
+ [
+ -1.1923239,
+ 43.0649635
+ ],
+ [
+ -1.0061856,
+ 43.0077821
+ ],
+ [
+ -0.942341,
+ 42.9748951
+ ],
+ [
+ -0.7562028,
+ 42.9821318
+ ],
+ [
+ -0.7148387,
+ 42.9610774
+ ],
+ [
+ -0.6968543,
+ 42.9031405
+ ],
+ [
+ -0.5511809,
+ 42.8220693
+ ],
+ [
+ -0.5044215,
+ 42.8484456
+ ],
+ [
+ -0.4288871,
+ 42.8200906
+ ],
+ [
+ -0.3164848,
+ 42.8655842
+ ],
+ [
+ -0.1456332,
+ 42.810856
+ ],
+ [
+ -0.0314324,
+ 42.7124874
+ ],
+ [
+ 0.1861785,
+ 42.7540985
+ ],
+ [
+ 0.3021777,
+ 42.7177729
+ ],
+ [
+ 0.3642238,
+ 42.7428729
+ ],
+ [
+ 0.4487504,
+ 42.7144695
+ ],
+ [
+ 0.6276949,
+ 42.7223973
+ ],
+ [
+ 0.6411832,
+ 42.8576747
+ ],
+ [
+ 0.7149192,
+ 42.882718
+ ],
+ [
+ 0.9675996,
+ 42.8181119
+ ],
+ [
+ 1.108777,
+ 42.7989808
+ ],
+ [
+ 1.1753192,
+ 42.7342872
+ ],
+ [
+ 1.3632559,
+ 42.7415521
+ ],
+ [
+ 1.4113736,
+ 42.7093914
+ ],
+ [
+ 1.4806054,
+ 42.7103407
+ ],
+ [
+ 1.4813006,
+ 42.5010664
+ ],
+ [
+ 1.6443591,
+ 42.5020345
+ ],
+ [
+ 1.6432777,
+ 42.5424539
+ ],
+ [
+ 1.730407,
+ 42.5434214
+ ],
+ [
+ 1.7316429,
+ 42.5011803
+ ],
+ [
+ 2.0638621,
+ 42.5016359
+ ],
+ [
+ 2.0645572,
+ 42.4590247
+ ],
+ [
+ 2.3969309,
+ 42.4599364
+ ],
+ [
+ 2.3976786,
+ 42.4178363
+ ],
+ [
+ 2.4804823,
+ 42.4179732
+ ],
+ [
+ 2.4809767,
+ 42.3759441
+ ],
+ [
+ 2.6447922,
+ 42.3762636
+ ],
+ [
+ 2.6444832,
+ 42.4592447
+ ],
+ [
+ 2.8113266,
+ 42.4596094
+ ],
+ [
+ 2.8112648,
+ 42.5010358
+ ],
+ [
+ 3.063878,
+ 42.5008535
+ ],
+ [
+ 3.063878,
+ 42.4591535
+ ],
+ [
+ 3.2307832,
+ 42.4593359
+ ],
+ [
+ 3.2304935,
+ 42.3764363
+ ],
+ [
+ 3.3141469,
+ 42.3760369
+ ],
+ [
+ 3.3141243,
+ 42.3339864
+ ],
+ [
+ 3.397855,
+ 42.3340435
+ ],
+ [
+ 3.3973912,
+ 42.290094
+ ],
+ [
+ 3.3138923,
+ 42.2908368
+ ],
+ [
+ 3.3139695,
+ 42.2070151
+ ],
+ [
+ 3.1475896,
+ 42.2073012
+ ],
+ [
+ 3.1475896,
+ 42.1260612
+ ],
+ [
+ 3.2305478,
+ 42.1260039
+ ],
+ [
+ 3.2466753,
+ 41.9529359
+ ],
+ [
+ 3.1945206,
+ 41.8558943
+ ],
+ [
+ 3.060537,
+ 41.7647419
+ ],
+ [
+ 2.7835777,
+ 41.6371796
+ ],
+ [
+ 2.26293,
+ 41.4271601
+ ],
+ [
+ 2.1649151,
+ 41.2989297
+ ],
+ [
+ 1.86008,
+ 41.2232228
+ ],
+ [
+ 1.3763003,
+ 41.116273
+ ],
+ [
+ 1.1793714,
+ 41.0464585
+ ],
+ [
+ 1.0858526,
+ 41.048493
+ ],
+ [
+ 0.758537,
+ 40.8195599
+ ],
+ [
+ 0.9114042,
+ 40.733761
+ ],
+ [
+ 0.8781331,
+ 40.6751363
+ ],
+ [
+ 0.6650182,
+ 40.5358666
+ ],
+ [
+ 0.5580112,
+ 40.5502166
+ ],
+ [
+ 0.433919,
+ 40.3757589
+ ],
+ [
+ 0.2675635,
+ 40.1919192
+ ],
+ [
+ 0.1641534,
+ 40.0647234
+ ],
+ [
+ 0.0751307,
+ 40.0144671
+ ],
+ [
+ 0.010387,
+ 39.8952188
+ ],
+ [
+ -0.0939224,
+ 39.8116904
+ ],
+ [
+ -0.1847435,
+ 39.6311716
+ ],
+ [
+ -0.2908513,
+ 39.5036254
+ ],
+ [
+ -0.2863552,
+ 39.333431
+ ],
+ [
+ -0.1856427,
+ 39.1774612
+ ],
+ [
+ -0.2135185,
+ 39.1558487
+ ],
+ [
+ -0.1110076,
+ 38.9722246
+ ],
+ [
+ 0.0094878,
+ 38.8826835
+ ],
+ [
+ 0.1218901,
+ 38.872183
+ ],
+ [
+ 0.2342925,
+ 38.798636
+ ],
+ [
+ 0.2558737,
+ 38.7264162
+ ],
+ [
+ 0.0958128,
+ 38.6133825
+ ],
+ [
+ -0.0022021,
+ 38.6070586
+ ],
+ [
+ -0.0570544,
+ 38.5269073
+ ],
+ [
+ -0.2719677,
+ 38.4762395
+ ],
+ [
+ -0.379874,
+ 38.3931234
+ ],
+ [
+ -0.3834708,
+ 38.3381297
+ ],
+ [
+ -0.4509122,
+ 38.3310763
+ ],
+ [
+ -0.5048654,
+ 38.2830943
+ ],
+ [
+ -0.4823849,
+ 38.1948095
+ ],
+ [
+ -0.429331,
+ 38.1658287
+ ],
+ [
+ -0.4545091,
+ 38.148859
+ ],
+ [
+ -0.5839966,
+ 38.1721913
+ ],
+ [
+ -0.6136708,
+ 38.1198599
+ ],
+ [
+ -0.6370505,
+ 37.9612228
+ ],
+ [
+ -0.6811123,
+ 37.9456238
+ ],
+ [
+ -0.7323677,
+ 37.8810656
+ ],
+ [
+ -0.7215771,
+ 37.7830562
+ ],
+ [
+ -0.688306,
+ 37.7340026
+ ],
+ [
+ -0.6641461,
+ 37.6231485
+ ],
+ [
+ -0.7193941,
+ 37.5878413
+ ],
+ [
+ -0.9196258,
+ 37.5375806
+ ],
+ [
+ -1.1107098,
+ 37.5164093
+ ],
+ [
+ -1.3383246,
+ 37.5286671
+ ],
+ [
+ -1.4408917,
+ 37.3903714
+ ],
+ [
+ -1.6766966,
+ 37.2765189
+ ],
+ [
+ -1.8540816,
+ 36.9122889
+ ],
+ [
+ -2.0683486,
+ 36.6929117
+ ],
+ [
+ -2.2158766,
+ 36.6619233
+ ],
+ [
+ -2.3721861,
+ 36.7801753
+ ],
+ [
+ -2.6812926,
+ 36.6591056
+ ],
+ [
+ -2.9201476,
+ 36.6675585
+ ],
+ [
+ -3.09402,
+ 36.712625
+ ],
+ [
+ -3.4610839,
+ 36.6548788
+ ],
+ [
+ -3.7280395,
+ 36.6929117
+ ],
+ [
+ -4.3743529,
+ 36.6633322
+ ],
+ [
+ -4.6571151,
+ 36.4404171
+ ],
+ [
+ -4.9188018,
+ 36.4531321
+ ],
+ [
+ -5.1699508,
+ 36.3513541
+ ],
+ [
+ -5.2841094,
+ 36.1970201
+ ],
+ [
+ -5.2680911,
+ 36.1241812
+ ],
+ [
+ -5.3524784,
+ 36.1224654
+ ],
+ [
+ -5.3516094,
+ 36.0401413
+ ],
+ [
+ -5.4365759,
+ 36.0388921
+ ],
+ [
+ -5.4353207,
+ 36.0034384
+ ],
+ [
+ -5.6888562,
+ 36.0036518
+ ],
+ [
+ -5.6899635,
+ 36.0405317
+ ],
+ [
+ -5.85506,
+ 36.0385595
+ ],
+ [
+ -5.8566821,
+ 36.1242077
+ ],
+ [
+ -5.9384817,
+ 36.1221487
+ ],
+ [
+ -5.9400265,
+ 36.1655625
+ ],
+ [
+ -5.9983445,
+ 36.1645024
+ ],
+ [
+ -6.0357297,
+ 36.1780957
+ ],
+ [
+ -6.0775178,
+ 36.2224132
+ ],
+ [
+ -6.1506113,
+ 36.2864561
+ ],
+ [
+ -6.231541,
+ 36.3770075
+ ],
+ [
+ -6.3358504,
+ 36.5310643
+ ],
+ [
+ -6.3214629,
+ 36.5816265
+ ],
+ [
+ -6.404191,
+ 36.6234958
+ ],
+ [
+ -6.4743301,
+ 36.7489673
+ ],
+ [
+ -6.4158808,
+ 36.7993866
+ ],
+ [
+ -6.490516,
+ 36.9173818
+ ],
+ [
+ -6.6298949,
+ 37.0194012
+ ],
+ [
+ -6.8744824,
+ 37.1083766
+ ],
+ [
+ -7.0426363,
+ 37.1850699
+ ],
+ [
+ -7.2647434,
+ 37.1843535
+ ],
+ [
+ -7.3753473,
+ 37.1535419
+ ],
+ [
+ -7.408316,
+ 37.1682196
+ ],
+ [
+ -7.4202886,
+ 37.2118318
+ ],
+ [
+ -7.4249231,
+ 37.2350505
+ ],
+ [
+ -7.4380543,
+ 37.2451969
+ ],
+ [
+ -7.4459717,
+ 37.3326142
+ ],
+ [
+ -7.4480958,
+ 37.3909382
+ ],
+ [
+ -7.4696271,
+ 37.4075829
+ ],
+ [
+ -7.4647029,
+ 37.4530494
+ ],
+ [
+ -7.5019723,
+ 37.516411
+ ],
+ [
+ -7.5191587,
+ 37.5229203
+ ],
+ [
+ -7.5219588,
+ 37.5723727
+ ],
+ [
+ -7.4501271,
+ 37.6695835
+ ],
+ [
+ -7.4249019,
+ 37.7599222
+ ],
+ [
+ -7.316662,
+ 37.839974
+ ],
+ [
+ -7.268329,
+ 37.988952
+ ],
+ [
+ -7.1536786,
+ 38.0155235
+ ],
+ [
+ -7.1177098,
+ 38.0553626
+ ],
+ [
+ -7.0142997,
+ 38.0243785
+ ],
+ [
+ -6.9963153,
+ 38.1075633
+ ],
+ [
+ -6.9614706,
+ 38.201254
+ ],
+ [
+ -7.080617,
+ 38.1570753
+ ],
+ [
+ -7.3402665,
+ 38.4402363
+ ],
+ [
+ -7.2638329,
+ 38.7380741
+ ],
+ [
+ -7.0435243,
+ 38.8729667
+ ],
+ [
+ -7.0615086,
+ 38.907962
+ ],
+ [
+ -6.9693387,
+ 39.0198308
+ ],
+ [
+ -7.0008114,
+ 39.0887867
+ ],
+ [
+ -7.1536786,
+ 39.0957658
+ ],
+ [
+ -7.1525545,
+ 39.1602899
+ ],
+ [
+ -7.2447245,
+ 39.1968854
+ ],
+ [
+ -7.2559647,
+ 39.2813308
+ ],
+ [
+ -7.3368944,
+ 39.3535074
+ ],
+ [
+ -7.3279022,
+ 39.4559917
+ ],
+ [
+ -7.5144901,
+ 39.5886496
+ ],
+ [
+ -7.5527069,
+ 39.6795427
+ ],
+ [
+ -7.0502684,
+ 39.6752171
+ ],
+ [
+ -6.9951913,
+ 39.8195433
+ ],
+ [
+ -6.9221297,
+ 39.8790868
+ ],
+ [
+ -6.886161,
+ 40.0229854
+ ],
+ [
+ -7.0412762,
+ 40.1347927
+ ],
+ [
+ -7.0176717,
+ 40.266146
+ ],
+ [
+ -6.8086034,
+ 40.3450071
+ ],
+ [
+ -6.8681766,
+ 40.4451649
+ ],
+ [
+ -6.8535643,
+ 40.6066433
+ ],
+ [
+ -6.837828,
+ 40.8757589
+ ],
+ [
+ -6.9536024,
+ 41.0370445
+ ],
+ [
+ -6.8018592,
+ 41.0395879
+ ],
+ [
+ -6.7681385,
+ 41.138706
+ ],
+ [
+ -6.6411239,
+ 41.2655616
+ ],
+ [
+ -6.5624422,
+ 41.2630269
+ ],
+ [
+ -6.217367,
+ 41.5791017
+ ],
+ [
+ -6.3162811,
+ 41.644652
+ ],
+ [
+ -6.5152332,
+ 41.6412921
+ ],
+ [
+ -6.5871707,
+ 41.6883151
+ ],
+ [
+ -6.5478299,
+ 41.8559743
+ ],
+ [
+ -6.6298836,
+ 41.9112057
+ ],
+ [
+ -7.1334461,
+ 41.9404756
+ ],
+ [
+ -7.1682909,
+ 41.8718791
+ ],
+ [
+ -7.4256922,
+ 41.7847727
+ ],
+ [
+ -7.9539833,
+ 41.8459271
+ ],
+ [
+ -8.130455,
+ 41.7805819
+ ],
+ [
+ -8.2518495,
+ 41.9078597
+ ],
+ [
+ -8.1293309,
+ 42.0348842
+ ],
+ [
+ -8.2484774,
+ 42.1008034
+ ],
+ [
+ -8.3676239,
+ 42.0557521
+ ],
+ [
+ -8.6070409,
+ 42.0340493
+ ],
+ [
+ -8.8910646,
+ 41.8228891
]
]
],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
- "terms_text": "EEA GMES Urban Atlas"
+ "terms_text": "PNOA"
},
{
+ "id": "Slovakia-Historic-Maps",
"name": "Slovakia Historic Maps",
"type": "tms",
"template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
@@ -36582,6 +43849,7 @@
]
},
{
+ "id": "South_Africa-CD_NGI-Aerial",
"name": "South Africa CD:NGI Aerial",
"type": "tms",
"template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
@@ -37770,16 +45038,21 @@
[
17.8396817,
-32.8507302
+ ],
+ [
+ 17.8396817,
+ -32.7983384
]
]
],
"best": true
},
{
+ "id": "South-Tyrol-Orthofoto2011",
"name": "South Tyrol Orthofoto 2011",
"type": "tms",
- "description": "Orthophoto of South Tyrol from 2011",
"template": "http://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2011_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
+ "description": "Orthophoto of South Tyrol from 2011",
"scaleExtent": [
0,
18
@@ -39665,14 +46938,14 @@
]
],
"terms_url": "http://geoservices.buergernetz.bz.it/geokatalog/",
- "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0",
- "id": "South-Tyrol-Orthofoto2011"
+ "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0"
},
{
+ "id": "South-Tyrol-Orthofoto2014",
"name": "South Tyrol Orthofoto 2014",
"type": "tms",
- "description": "Orthophoto of South Tyrol from 2011",
"template": "http://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
+ "description": "Orthophoto of South Tyrol from 2011",
"scaleExtent": [
0,
18
@@ -40817,14 +48090,14 @@
],
"terms_url": "http://geoservices.buergernetz.bz.it/geokatalog/",
"terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0",
- "id": "South-Tyrol-Orthofoto2014",
"best": true
},
{
+ "id": "South-Tyrol-Topomap",
"name": "South Tyrol Topomap",
"type": "tms",
+ "template": "http://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
"description": "Topographical basemap of South Tyrol",
- "template": "http://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{z}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
"scaleExtent": [
0,
20
@@ -42710,10 +49983,378 @@
]
],
"terms_url": "http://geoservices.buergernetz.bz.it/geokatalog/",
- "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano",
- "id": "South-Tyrol-Topomap"
+ "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano"
},
{
+ "id": "Bern-bern2016-tms",
+ "name": "Stadt Bern 10cm (2016)",
+ "type": "tms",
+ "template": "http://mapproxy.osm.ch:8080/tiles/bern2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "scaleExtent": [
+ 8,
+ 21
+ ],
+ "polygon": [
+ [
+ [
+ 7.2943145,
+ 46.9237564
+ ],
+ [
+ 7.2982665,
+ 46.9274715
+ ],
+ [
+ 7.3061586,
+ 46.9309487
+ ],
+ [
+ 7.3043338,
+ 46.9362344
+ ],
+ [
+ 7.3068603,
+ 46.9403709
+ ],
+ [
+ 7.3246431,
+ 46.9432765
+ ],
+ [
+ 7.3284525,
+ 46.946409
+ ],
+ [
+ 7.3414051,
+ 46.9460797
+ ],
+ [
+ 7.3438454,
+ 46.9473713
+ ],
+ [
+ 7.3434554,
+ 46.9487937
+ ],
+ [
+ 7.3513567,
+ 46.9485481
+ ],
+ [
+ 7.3505628,
+ 46.950213
+ ],
+ [
+ 7.3530901,
+ 46.9519266
+ ],
+ [
+ 7.3582028,
+ 46.9511773
+ ],
+ [
+ 7.3685031,
+ 46.9566244
+ ],
+ [
+ 7.3715097,
+ 46.9607339
+ ],
+ [
+ 7.37503,
+ 46.959835
+ ],
+ [
+ 7.3785111,
+ 46.9614686
+ ],
+ [
+ 7.3806232,
+ 46.9654741
+ ],
+ [
+ 7.3832097,
+ 46.9663014
+ ],
+ [
+ 7.3937998,
+ 46.9669268
+ ],
+ [
+ 7.4000528,
+ 46.9691779
+ ],
+ [
+ 7.4082922,
+ 46.9686857
+ ],
+ [
+ 7.4281713,
+ 46.9738041
+ ],
+ [
+ 7.4327053,
+ 46.972689
+ ],
+ [
+ 7.4353602,
+ 46.9684345
+ ],
+ [
+ 7.4378522,
+ 46.9684302
+ ],
+ [
+ 7.4412474,
+ 46.9767865
+ ],
+ [
+ 7.4456893,
+ 46.9747939
+ ],
+ [
+ 7.4483835,
+ 46.9756393
+ ],
+ [
+ 7.4477006,
+ 46.9790125
+ ],
+ [
+ 7.4440468,
+ 46.9780682
+ ],
+ [
+ 7.4412738,
+ 46.9798224
+ ],
+ [
+ 7.4506732,
+ 46.9901527
+ ],
+ [
+ 7.4522112,
+ 46.9896803
+ ],
+ [
+ 7.454649,
+ 46.9778182
+ ],
+ [
+ 7.4680382,
+ 46.9758258
+ ],
+ [
+ 7.4707923,
+ 46.969998
+ ],
+ [
+ 7.4701907,
+ 46.9674116
+ ],
+ [
+ 7.4781618,
+ 46.9711823
+ ],
+ [
+ 7.4845237,
+ 46.9701571
+ ],
+ [
+ 7.4861275,
+ 46.9679018
+ ],
+ [
+ 7.4857945,
+ 46.9646828
+ ],
+ [
+ 7.4784708,
+ 46.9629043
+ ],
+ [
+ 7.4802865,
+ 46.9606768
+ ],
+ [
+ 7.4789304,
+ 46.9587841
+ ],
+ [
+ 7.4797786,
+ 46.9566019
+ ],
+ [
+ 7.4770135,
+ 46.9544586
+ ],
+ [
+ 7.4840504,
+ 46.9499938
+ ],
+ [
+ 7.4833925,
+ 46.9451977
+ ],
+ [
+ 7.4955563,
+ 46.9396169
+ ],
+ [
+ 7.4935119,
+ 46.9376594
+ ],
+ [
+ 7.4908036,
+ 46.9387617
+ ],
+ [
+ 7.4894997,
+ 46.9368667
+ ],
+ [
+ 7.4766667,
+ 46.9369496
+ ],
+ [
+ 7.4781093,
+ 46.9362489
+ ],
+ [
+ 7.4746986,
+ 46.9339187
+ ],
+ [
+ 7.4753537,
+ 46.9329898
+ ],
+ [
+ 7.4691047,
+ 46.9292427
+ ],
+ [
+ 7.4707683,
+ 46.9255044
+ ],
+ [
+ 7.4585674,
+ 46.934836
+ ],
+ [
+ 7.4476373,
+ 46.9304297
+ ],
+ [
+ 7.435418,
+ 46.9349668
+ ],
+ [
+ 7.4338022,
+ 46.9331237
+ ],
+ [
+ 7.4376403,
+ 46.9307415
+ ],
+ [
+ 7.4146941,
+ 46.9368183
+ ],
+ [
+ 7.413844,
+ 46.9315682
+ ],
+ [
+ 7.4070798,
+ 46.9303824
+ ],
+ [
+ 7.408065,
+ 46.9256296
+ ],
+ [
+ 7.4021268,
+ 46.9241992
+ ],
+ [
+ 7.4014835,
+ 46.9211927
+ ],
+ [
+ 7.3875736,
+ 46.9304506
+ ],
+ [
+ 7.3823129,
+ 46.927282
+ ],
+ [
+ 7.3800187,
+ 46.9298929
+ ],
+ [
+ 7.3808694,
+ 46.9324085
+ ],
+ [
+ 7.3748669,
+ 46.9314306
+ ],
+ [
+ 7.3748901,
+ 46.9327104
+ ],
+ [
+ 7.368066,
+ 46.9323929
+ ],
+ [
+ 7.3683058,
+ 46.930426
+ ],
+ [
+ 7.3604074,
+ 46.9285884
+ ],
+ [
+ 7.3605592,
+ 46.9272018
+ ],
+ [
+ 7.338783,
+ 46.9245357
+ ],
+ [
+ 7.3393683,
+ 46.9196675
+ ],
+ [
+ 7.3274574,
+ 46.9190326
+ ],
+ [
+ 7.3269178,
+ 46.9235974
+ ],
+ [
+ 7.324374,
+ 46.9251891
+ ],
+ [
+ 7.3082264,
+ 46.9222857
+ ],
+ [
+ 7.2943145,
+ 46.9237564
+ ]
+ ]
+ ],
+ "terms_text": "Orthophoto 2016, Vermessungsamt Stadt Bern ",
+ "best": true
+ },
+ {
+ "id": "Uster-2008",
"name": "Stadt Uster Orthophoto 2008 10cm",
"type": "tms",
"template": "http://mapproxy.sosm.ch:8080/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
@@ -42744,9 +50385,10 @@
"terms_text": "Stadt Uster Vermessung Orthophoto 2008"
},
{
+ "id": "Zuerich-zh_luftbild2011-tms",
"name": "Stadt Zürich Luftbild 2011",
"type": "tms",
- "template": "http://mapproxy.sosm.ch:8080/tiles/zh_luftbild2011/EPSG900913/{z}/{x}/{y}.png?origin=nw",
+ "template": "http://mapproxy.sosm.ch:8080/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
"polygon": [
[
[
@@ -42774,6 +50416,7 @@
"terms_text": "Stadt Zürich Luftbild 2011"
},
{
+ "id": "Zuerich-city_map",
"name": "Stadtplan Zürich",
"type": "tms",
"template": "http://mapproxy.sosm.ch:8080/tiles/zh_stadtplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
@@ -42804,357 +50447,19 @@
"terms_text": "Stadt Zürich Open Government Data"
},
{
+ "id": "stamen-terrain-background",
"name": "Stamen Terrain",
"type": "tms",
- "template": "http://{switch:a,b,c,d}.tile.stamen.com/terrain-background/{z}/{x}/{y}.jpg",
+ "template": "http://{switch:a,b,c,d}.tile.stamen.com/terrain-background/{zoom}/{x}/{y}.jpg",
"scaleExtent": [
4,
18
],
- "polygon": [
- [
- [
- -125.990173,
- 48.9962416
- ],
- [
- -125.989419,
- 47.9948396
- ],
- [
- -123.9929739,
- 47.9955062
- ],
- [
- -123.9922429,
- 47.0059202
- ],
- [
- -125.988688,
- 47.0052409
- ],
- [
- -125.9879604,
- 46.0015618
- ],
- [
- -123.9939396,
- 46.0022529
- ],
- [
- -123.9925238,
- 43.9961708
- ],
- [
- -124.9931832,
- 43.9958116
- ],
- [
- -124.9918175,
- 41.9942149
- ],
- [
- -125.9851789,
- 41.9938465
- ],
- [
- -125.9838655,
- 40.0076111
- ],
- [
- -123.9833285,
- 40.0083757
- ],
- [
- -123.9814115,
- 37.002615
- ],
- [
- -122.21903,
- 37.0033173
- ],
- [
- -122.2184144,
- 36.011671
- ],
- [
- -122.020087,
- 36.011751
- ],
- [
- -122.0188591,
- 33.9961766
- ],
- [
- -119.9787757,
- 33.9970206
- ],
- [
- -119.9775867,
- 31.9987658
- ],
- [
- -114.0122833,
- 32.00129
- ],
- [
- -114.0116894,
- 30.9862401
- ],
- [
- -105.998294,
- 30.9896679
- ],
- [
- -105.9971419,
- 28.9901065
- ],
- [
- -102.0210506,
- 28.9918418
- ],
- [
- -102.0204916,
- 28.00733
- ],
- [
- -100.0062436,
- 28.0082173
- ],
- [
- -100.0051143,
- 25.991909
- ],
- [
- -98.0109067,
- 25.9928035
- ],
- [
- -98.0103613,
- 25.0063461
- ],
- [
- -97.0161086,
- 25.0067957
- ],
- [
- -97.016654,
- 25.9932494
- ],
- [
- -95.9824825,
- 25.9937132
- ],
- [
- -95.9835999,
- 27.9891175
- ],
- [
- -94.0200898,
- 27.9899826
- ],
- [
- -94.0206586,
- 28.9918129
- ],
- [
- -88.0156706,
- 28.9944338
- ],
- [
- -88.0162494,
- 30.0038862
- ],
- [
- -86.0277506,
- 30.0047454
- ],
- [
- -86.0271719,
- 28.9953016
- ],
- [
- -84.0187909,
- 28.9961781
- ],
- [
- -84.017095,
- 25.9817708
- ],
- [
- -81.9971976,
- 25.9826768
- ],
- [
- -81.9966618,
- 25.0134917
- ],
- [
- -84.0165592,
- 25.0125783
- ],
- [
- -84.0160068,
- 24.0052745
- ],
- [
- -80.0199985,
- 24.007096
- ],
- [
- -80.0245309,
- 32.0161282
- ],
- [
- -78.0066484,
- 32.0169819
- ],
- [
- -78.0072238,
- 32.9894278
- ],
- [
- -77.8807233,
- 32.9894807
- ],
- [
- -77.8813253,
- 33.9955918
- ],
- [
- -76.0115411,
- 33.9963653
- ],
- [
- -76.0121459,
- 34.9952552
- ],
- [
- -74.0068449,
- 34.9960749
- ],
- [
- -74.0099997,
- 40.0084254
- ],
- [
- -72.0013745,
- 40.0091931
- ],
- [
- -72.002019,
- 40.9912464
- ],
- [
- -69.8797398,
- 40.9920457
- ],
- [
- -69.8804173,
- 42.00893
- ],
- [
- -69.9927682,
- 42.0088883
- ],
- [
- -69.9934462,
- 43.0105166
- ],
- [
- -67.9845366,
- 43.0112496
- ],
- [
- -67.985224,
- 44.0103812
- ],
- [
- -65.9892568,
- 44.0110975
- ],
- [
- -65.9921237,
- 47.9993584
- ],
- [
- -70.006442,
- 47.9980181
- ],
- [
- -70.005708,
- 47.0042007
- ],
- [
- -72.023686,
- 47.003514
- ],
- [
- -72.0222508,
- 45.0059846
- ],
- [
- -78.0146667,
- 45.0038705
- ],
- [
- -78.0139662,
- 44.0026998
- ],
- [
- -80.029686,
- 44.0019763
- ],
- [
- -80.0290052,
- 43.0122994
- ],
- [
- -81.995479,
- 43.011582
- ],
- [
- -81.9982986,
- 47.0042713
- ],
- [
- -87.505706,
- 47.0023972
- ],
- [
- -87.5064535,
- 48.0142702
- ],
- [
- -88.0260889,
- 48.0140968
- ],
- [
- -88.026838,
- 49.0086686
- ],
- [
- -93.9981078,
- 49.0067142
- ],
- [
- -93.9988778,
- 50.0086456
- ],
- [
- -96.0138899,
- 50.0079995
- ],
- [
- -96.0131199,
- 49.0060547
- ]
- ]
- ],
"terms_url": "http://maps.stamen.com/#terrain",
"terms_text": "Map tiles by Stamen Design, under CC BY 3.0"
},
{
+ "id": "Stevns_Denmark",
"name": "Stevns (Denmark)",
"type": "tms",
"template": "http://{switch:a,b,c}.tile.openstreetmap.dk/stevns/2009/{zoom}/{x}/{y}.png",
@@ -43283,12 +50588,17 @@
[
12.1229489,
55.3483291
+ ],
+ [
+ 12.0913942,
+ 55.3491574
]
]
],
"terms_text": "Stevns Kommune"
},
{
+ "id": "Surrey-Air_Survey",
"name": "Surrey Air Survey",
"type": "tms",
"template": "http://gravitystorm.dev.openstreetmap.org/surrey/{zoom}/{x}/{y}.png",
@@ -43769,11 +51079,16 @@
[
-0.7296581,
51.0744919
+ ],
+ [
+ -0.752478,
+ 51.0821941
]
]
]
},
{
+ "id": "Szeged_2011",
"name": "Szeged ortophoto 2011",
"type": "tms",
"template": "http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png",
@@ -44001,6 +51316,122 @@
"terms_text": "SZTE TFGT - University of Szeged"
},
{
+ "id": "tnris.org",
+ "name": "Texas Orthophoto",
+ "type": "tms",
+ "template": "https://txgi.tnris.org/login/path/ecology-fiona-poem-romeo/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=texas&STYLE=&FORMAT=image/png&tileMatrixSet=0to20&tileMatrix=0to20:{zoom}&tileRow={y}&tileCol={x}",
+ "scaleExtent": [
+ 0,
+ 20
+ ],
+ "polygon": [
+ [
+ [
+ -99.9985439,
+ 34.5601834
+ ],
+ [
+ -95.55654502453,
+ 33.99257450647
+ ],
+ [
+ -93.89679027134,
+ 33.61039304449
+ ],
+ [
+ -93.98468089634,
+ 32.04103124103
+ ],
+ [
+ -93.41613841587,
+ 31.02505269211
+ ],
+ [
+ -93.74531484297,
+ 29.57268254375
+ ],
+ [
+ -96.50492070332,
+ 28.23158511753
+ ],
+ [
+ -97.36942054453,
+ 26.95467452634
+ ],
+ [
+ -97.04866958924,
+ 25.80530249434
+ ],
+ [
+ -99.0734177889,
+ 26.32559221139
+ ],
+ [
+ -100.76599193149,
+ 29.02531904433
+ ],
+ [
+ -102.3315436893,
+ 29.8433892263
+ ],
+ [
+ -103.13354564242,
+ 28.88112103669
+ ],
+ [
+ -104.2887874222,
+ 29.28831477845
+ ],
+ [
+ -104.7269783935,
+ 29.94815782859
+ ],
+ [
+ -104.72696778796,
+ 30.23535241761
+ ],
+ [
+ -106.53450082091,
+ 31.78456647831
+ ],
+ [
+ -106.75767043939,
+ 31.78457253947
+ ],
+ [
+ -106.75766067978,
+ 32.04385536686
+ ],
+ [
+ -106.61848436611,
+ 32.04385159755
+ ],
+ [
+ -103.11949492759,
+ 32.04375683439
+ ],
+ [
+ -103.09544343487,
+ 36.50045758762
+ ],
+ [
+ -103.05798056071,
+ 36.54268645422
+ ],
+ [
+ -100.00042146824,
+ 36.54222227302
+ ],
+ [
+ -99.9985439,
+ 34.5601834
+ ]
+ ]
+ ],
+ "terms_url": "https://tnris.org/maps-and-data/online-mapping-services/"
+ },
+ {
+ "id": "tf-landscape",
"name": "Thunderforest Landscape",
"type": "tms",
"template": "https://{switch:a,b,c}.tile.thunderforest.com/landscape/{zoom}/{x}/{y}.png",
@@ -44012,6 +51443,7 @@
"terms_text": "Maps © Thunderforest, Data © OpenStreetMap contributors"
},
{
+ "id": "Toulouse-Orthophotoplan-2007",
"name": "Toulouse - Orthophotoplan 2007",
"type": "tms",
"template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}",
@@ -44340,6 +51772,10 @@
[
1.1924294,
43.6103695
+ ],
+ [
+ 1.1919978,
+ 43.6328791
]
]
],
@@ -44347,6 +51783,7 @@
"terms_text": "ToulouseMetropole"
},
{
+ "id": "Toulouse-Orthophotoplan-2011",
"name": "Toulouse - Orthophotoplan 2011",
"type": "tms",
"template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}",
@@ -44571,6 +52008,10 @@
[
1.1149055,
43.6417629
+ ],
+ [
+ 1.1135067,
+ 43.6867566
]
]
],
@@ -44578,6 +52019,7 @@
"terms_text": "ToulouseMetropole"
},
{
+ "id": "Toulouse-Orthophotoplan-2013",
"name": "Toulouse - Orthophotoplan 2013",
"type": "tms",
"template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_2013/{zoom}/{x}/{y}",
@@ -44802,6 +52244,10 @@
[
1.1149055,
43.6417629
+ ],
+ [
+ 1.1135067,
+ 43.6867566
]
]
],
@@ -44809,6 +52255,7 @@
"terms_text": "ToulouseMetropole"
},
{
+ "id": "Toulouse-Orthophotoplan-2015",
"name": "Toulouse - Orthophotoplan 2015",
"type": "tms",
"template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_2015/{zoom}/{x}/{y}",
@@ -45033,6 +52480,10 @@
[
1.1149055,
43.6417629
+ ],
+ [
+ 1.1135067,
+ 43.6867566
]
]
],
@@ -45040,6 +52491,7 @@
"terms_text": "ToulouseMetropole"
},
{
+ "id": "Tours-Orthophoto-2008_2010",
"name": "Tours - Orthophotos 2008-2010",
"type": "tms",
"template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
@@ -45632,6 +53084,10 @@
[
0.5721805,
47.4656513
+ ],
+ [
+ 0.5457462,
+ 47.465264
]
]
],
@@ -45639,6 +53095,7 @@
"terms_text": "Orthophoto Tour(s) Plus 2008"
},
{
+ "id": "Tours-Orthophoto-2013",
"name": "Tours - Orthophotos 2013",
"type": "tms",
"template": "http://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}",
@@ -45674,6 +53131,7 @@
"terms_text": "Orthophoto Tour(s)plus 2013"
},
{
+ "id": "US_Forest_Service_roads",
"name": "U.S. Forest Service roads",
"type": "tms",
"template": "http://osm.cycle.travel/forest/{zoom}/{x}/{y}.png",
@@ -45954,6 +53412,10 @@
[
-123.2275233,
48.1849927
+ ],
+ [
+ -124.7617886,
+ 48.4130148
]
],
[
@@ -45996,6 +53458,10 @@
[
-159.0093692,
22.5070181
+ ],
+ [
+ -160.5787616,
+ 22.5062947
]
],
[
@@ -46142,11 +53608,16 @@
[
-164.9717003,
68.994689
+ ],
+ [
+ -167.1571546,
+ 68.721974
]
]
]
},
{
+ "id": "Zuerich-zh_uebersichtsplan-tms",
"name": "Übersichtsplan Zürich",
"type": "tms",
"template": "http://mapproxy.sosm.ch:8080/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
@@ -46181,6 +53652,7 @@
"terms_text": "Stadt Zürich Open Government Data"
},
{
+ "id": "USGS-Large_Scale",
"name": "USGS Large Scale Imagery",
"type": "tms",
"template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
@@ -50137,6 +57609,10 @@
[
-123.1838197,
48.7529029
+ ],
+ [
+ -123.2549305,
+ 48.7529029
]
],
[
@@ -50171,6 +57647,10 @@
[
-123.0595947,
37.7528143
+ ],
+ [
+ -122.9341743,
+ 37.7521547
]
],
[
@@ -50189,6 +57669,10 @@
[
-71.6298594,
41.1229149
+ ],
+ [
+ -71.6299464,
+ 41.2540893
]
],
[
@@ -50239,6 +57723,10 @@
[
-70.2462087,
41.3775467
+ ],
+ [
+ -70.3184265,
+ 41.3775196
]
],
[
@@ -50281,6 +57769,10 @@
[
-68.9402483,
43.8117599
+ ],
+ [
+ -68.9403374,
+ 43.9404062
]
],
[
@@ -50299,6 +57791,10 @@
[
-123.1291466,
48.9343243
+ ],
+ [
+ -123.1291466,
+ 49.0645144
]
],
[
@@ -50333,11 +57829,16 @@
[
-82.9407144,
24.5594908
+ ],
+ [
+ -82.9407144,
+ 24.7535913
]
]
]
},
{
+ "id": "USGS-Scanned_Topographic",
"name": "USGS Topographic Maps",
"type": "tms",
"template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_scanned_topos/{zoom}/{x}/{y}.png",
@@ -50678,6 +58179,10 @@
[
-96.0131199,
49.0060547
+ ],
+ [
+ -125.990173,
+ 48.9962416
]
],
[
@@ -50728,6 +58233,10 @@
[
-159.0093692,
22.5070181
+ ],
+ [
+ -160.5787616,
+ 22.5062947
]
],
[
@@ -51034,6 +58543,10 @@
[
-164.9717003,
68.994689
+ ],
+ [
+ -168.006102,
+ 68.9941463
]
],
[
@@ -51052,6 +58565,10 @@
[
-172.0191536,
62.8681608
+ ],
+ [
+ -168.5133204,
+ 62.8689586
]
],
[
@@ -51070,6 +58587,10 @@
[
-174.0035162,
59.9946581
+ ],
+ [
+ -170.9947111,
+ 59.9954089
]
],
[
@@ -51088,15 +58609,20 @@
[
-156.0709936,
18.9023432
+ ],
+ [
+ -156.0717261,
+ 20.2854602
]
]
]
},
{
+ "id": "sjcgis.org-General_Basemap_WM",
"name": "Vector Streetmap for San Juan County WA",
"type": "tms",
- "description": "Public domain street and address data from the San Juan County, WA. Updated at least quarterly.",
"template": "http://sjcgis.org/arcgis/rest/services/Basemaps/General_Basemap_WM/MapServer/tile/{zoom}/{y}/{x}",
+ "description": "Public domain street and address data from the San Juan County, WA. Updated at least quarterly.",
"scaleExtent": [
0,
19
@@ -51152,6 +58678,7 @@
"best": true
},
{
+ "id": "Vejmidte_Denmark",
"name": "Vejmidte (Denmark)",
"type": "tms",
"template": "http://{switch:a,b,c}.tile.openstreetmap.dk/danmark/vejmidte/{zoom}/{x}/{y}.png",
@@ -51656,6 +59183,10 @@
[
8.531432,
54.95516
+ ],
+ [
+ 8.3743941,
+ 54.9551655
]
],
[
@@ -51674,6 +59205,10 @@
[
11.4459621,
56.6401087
+ ],
+ [
+ 11.4577738,
+ 56.819554
]
],
[
@@ -51700,6 +59235,10 @@
[
10.8290599,
57.3695272
+ ],
+ [
+ 11.3274736,
+ 57.3612962
]
],
[
@@ -51718,6 +59257,10 @@
[
11.7456428,
56.2743186
+ ],
+ [
+ 11.5843266,
+ 56.2777928
]
],
[
@@ -51768,6 +59311,10 @@
[
14.6317464,
55.0062496
+ ],
+ [
+ 14.6825922,
+ 55.3639405
]
]
],
@@ -51775,11 +59322,12 @@
"terms_text": "Danish municipalities"
},
{
+ "id": "wien.gv.at-labels",
"name": "Vienna: Beschriftungen (annotations)",
"type": "tms",
- "template": "http://www.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
+ "template": "https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
"scaleExtent": [
- 0,
+ 12,
19
],
"polygon": [
@@ -51806,15 +59354,16 @@
]
]
],
- "terms_url": "http://data.wien.gv.at/",
+ "terms_url": "https://data.wien.gv.at/",
"terms_text": "Stadt Wien"
},
{
+ "id": "wien.gv.at-gp",
"name": "Vienna: Mehrzweckkarte (general purpose)",
"type": "tms",
- "template": "http://www.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
+ "template": "https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
"scaleExtent": [
- 0,
+ 10,
19
],
"polygon": [
@@ -51841,15 +59390,16 @@
]
]
],
- "terms_url": "http://data.wien.gv.at/",
+ "terms_url": "https://data.wien.gv.at/",
"terms_text": "Stadt Wien"
},
{
+ "id": "wien.gv.at-aerial_image",
"name": "Vienna: Orthofoto (aerial image)",
"type": "tms",
- "template": "http://www.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
+ "template": "https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
"scaleExtent": [
- 0,
+ 10,
19
],
"polygon": [
@@ -51876,7 +59426,7 @@
]
]
],
- "terms_url": "http://data.wien.gv.at/",
+ "terms_url": "https://data.wien.gv.at/",
"terms_text": "Stadt Wien"
}
]
diff --git a/data/index.js b/data/index.js
index 60e99a255..3387e7524 100644
--- a/data/index.js
+++ b/data/index.js
@@ -5,7 +5,6 @@ export { default as dataSuggestions } from 'name-suggestion-index/name-suggestio
export { dataAddressFormats } from './address-formats.json';
export { dataDeprecated } from './deprecated.json';
export { dataDiscarded } from './discarded.json';
-export { dataImagery } from './imagery.json';
export { dataLocales } from './locales.json';
export { dataPhoneFormats } from './phone-formats.json';
@@ -13,14 +12,18 @@ export { default as dataImperial } from './imperial.json';
export { default as dataDriveLeft } from './drive-left.json';
export { en as dataEn } from '../dist/locales/en.json';
+import { dataImagery } from './imagery.json';
import { presets } from './presets/presets.json';
import { defaults } from './presets/defaults.json';
import { categories } from './presets/categories.json';
import { fields } from './presets/fields.json';
-export var dataPresets = {
- presets: presets,
- defaults: defaults,
- categories: categories,
- fields: fields
+export var data = {
+ imagery: dataImagery,
+ presets: {
+ presets: presets,
+ defaults: defaults,
+ categories: categories,
+ fields: fields
+ }
};
diff --git a/data/locales.json b/data/locales.json
index 44287a1d9..1e5fde723 100644
--- a/data/locales.json
+++ b/data/locales.json
@@ -1,66 +1,190 @@
{
- "dataLocales": [
- "af",
- "sq",
- "ar",
- "ar-AA",
- "hy",
- "ast",
- "bn",
- "bs",
- "bg-BG",
- "ca",
- "zh",
- "zh-CN",
- "zh-HK",
- "zh-TW",
- "yue",
- "hr",
- "cs",
- "da",
- "nl",
- "en-GB",
- "eo",
- "et",
- "fi",
- "fr",
- "gl",
- "de",
- "el",
- "gu",
- "hi",
- "hu",
- "is",
- "id",
- "it",
- "ja",
- "kn",
- "ko",
- "ku",
- "lv",
- "lij",
- "lt",
- "ml",
- "no",
- "fa",
- "pl",
- "pt",
- "pt-BR",
- "ro",
- "ru",
- "sc",
- "sr",
- "si",
- "sk",
- "sl",
- "es",
- "sv",
- "tl",
- "ta",
- "te",
- "th",
- "tr",
- "uk",
- "vi"
- ]
+ "dataLocales": {
+ "af": {
+ "rtl": false
+ },
+ "ar": {
+ "rtl": true
+ },
+ "ar-AA": {
+ "rtl": true
+ },
+ "ast": {
+ "rtl": false
+ },
+ "bg-BG": {
+ "rtl": false
+ },
+ "bn": {
+ "rtl": false
+ },
+ "bs": {
+ "rtl": false
+ },
+ "ca": {
+ "rtl": false
+ },
+ "cs": {
+ "rtl": false
+ },
+ "da": {
+ "rtl": false
+ },
+ "de": {
+ "rtl": false
+ },
+ "el": {
+ "rtl": false
+ },
+ "en-GB": {
+ "rtl": false
+ },
+ "eo": {
+ "rtl": false
+ },
+ "es": {
+ "rtl": false
+ },
+ "et": {
+ "rtl": false
+ },
+ "fa": {
+ "rtl": true
+ },
+ "fi": {
+ "rtl": false
+ },
+ "fr": {
+ "rtl": false
+ },
+ "gl": {
+ "rtl": false
+ },
+ "gu": {
+ "rtl": false
+ },
+ "hi": {
+ "rtl": false
+ },
+ "hr": {
+ "rtl": false
+ },
+ "hu": {
+ "rtl": false
+ },
+ "hy": {
+ "rtl": false
+ },
+ "id": {
+ "rtl": false
+ },
+ "is": {
+ "rtl": false
+ },
+ "it": {
+ "rtl": false
+ },
+ "ja": {
+ "rtl": false
+ },
+ "kn": {
+ "rtl": false
+ },
+ "ko": {
+ "rtl": false
+ },
+ "ku": {
+ "rtl": false
+ },
+ "lij": {
+ "rtl": false
+ },
+ "lt": {
+ "rtl": false
+ },
+ "lv": {
+ "rtl": false
+ },
+ "ml": {
+ "rtl": false
+ },
+ "nl": {
+ "rtl": false
+ },
+ "no": {
+ "rtl": false
+ },
+ "pl": {
+ "rtl": false
+ },
+ "pt": {
+ "rtl": false
+ },
+ "pt-BR": {
+ "rtl": false
+ },
+ "ro": {
+ "rtl": false
+ },
+ "ru": {
+ "rtl": false
+ },
+ "sc": {
+ "rtl": false
+ },
+ "si": {
+ "rtl": false
+ },
+ "sk": {
+ "rtl": false
+ },
+ "sl": {
+ "rtl": false
+ },
+ "sq": {
+ "rtl": false
+ },
+ "sr": {
+ "rtl": false
+ },
+ "sv": {
+ "rtl": false
+ },
+ "ta": {
+ "rtl": false
+ },
+ "te": {
+ "rtl": false
+ },
+ "th": {
+ "rtl": false
+ },
+ "tl": {
+ "rtl": false
+ },
+ "tr": {
+ "rtl": false
+ },
+ "uk": {
+ "rtl": false
+ },
+ "vi": {
+ "rtl": false
+ },
+ "yue": {
+ "rtl": false
+ },
+ "zh": {
+ "rtl": false
+ },
+ "zh-CN": {
+ "rtl": false
+ },
+ "zh-HK": {
+ "rtl": false
+ },
+ "zh-TW": {
+ "rtl": false
+ }
+ }
}
\ No newline at end of file
diff --git a/data/presets.yaml b/data/presets.yaml
index 1a6ae5bd2..24ed753d6 100644
--- a/data/presets.yaml
+++ b/data/presets.yaml
@@ -167,6 +167,22 @@ en:
barrier:
# barrier=*
label: Type
+ bath/open_air:
+ # 'bath:open_air=*'
+ label: Open Air
+ bath/sand_bath:
+ # 'bath:sand_bath=*'
+ label: Sand Bath
+ bath/type:
+ # 'bath:type=*'
+ label: Specialty
+ options:
+ # 'bath:type=foot_bath'
+ foot_bath: Foot Bath
+ # 'bath:type=hot_spring'
+ hot_spring: Hot Spring
+ # 'bath:type=onsen'
+ onsen: Japanese Onsen
beauty:
# beauty=*
label: Shop Type
@@ -191,6 +207,9 @@ en:
stemcells: stem cell samples
# 'blood:=whole'
whole: whole blood
+ board_type:
+ # board_type=*
+ label: Type
boundary:
# boundary=*
label: Type
@@ -203,6 +222,24 @@ en:
building_area:
# building=*
label: Building
+ camera/direction:
+ # 'camera:direction=*'
+ label: Direction (Degrees Clockwise)
+ # camera/direction field placeholder
+ placeholder: '45, 90, 180, 270'
+ camera/mount:
+ # 'camera:mount=*'
+ label: Camera Mount
+ camera/type:
+ # 'camera:type=*'
+ label: Camera Type
+ options:
+ # 'camera:type=dome'
+ dome: Dome
+ # 'camera:type=fixed'
+ fixed: Fixed
+ # 'camera:type=panning'
+ panning: Panning
capacity:
# capacity=*
label: Capacity
@@ -258,6 +295,11 @@ en:
construction:
# construction=*
label: Type
+ contact/webcam:
+ # 'contact:webcam=*'
+ label: Webcam URL
+ # contact/webcam field placeholder
+ placeholder: 'http://example.com/'
content:
# content=*
label: Contents
@@ -383,6 +425,9 @@ en:
fee:
# fee=*
label: Fee
+ fence_type:
+ # fence_type=*
+ label: Type
fire_hydrant/type:
# 'fire_hydrant:type=*'
label: Type
@@ -441,6 +486,9 @@ en:
handrail:
# handrail=*
label: Handrail
+ height:
+ # height=*
+ label: Height (Meters)
highway:
# highway=*
label: Type
@@ -492,6 +540,9 @@ en:
internet_access/fee:
# 'internet_access:fee=*'
label: Internet Access Fee
+ internet_access/ssid:
+ # 'internet_access:ssid=*'
+ label: SSID (Network Name)
kerb:
# kerb=*
label: Curb Ramp
@@ -580,6 +631,17 @@ en:
man_made:
# man_made=*
label: Type
+ map_size:
+ # map_size=*
+ label: Coverage
+ map_type:
+ # map_type=*
+ label: Type
+ maxheight:
+ # maxheight=*
+ label: Max Height
+ # maxheight field placeholder
+ placeholder: '4, 4.5, 5, 14''0", 14''6", 15''0"'
maxspeed:
# maxspeed=*
label: Speed Limit
@@ -730,6 +792,9 @@ en:
operator:
# operator=*
label: Operator
+ outdoor_seating:
+ # outdoor_seating=*
+ label: Outdoor Seating
par:
# par=*
label: Par
@@ -1044,6 +1109,22 @@ en:
surface:
# surface=*
label: Surface
+ surveillance:
+ # surveillance=*
+ label: Surveillance Kind
+ surveillance/type:
+ # 'surveillance:type=*'
+ label: Surveillance Type
+ options:
+ # 'surveillance:type=ALPR'
+ ALPR: Automatic License Plate Reader
+ # 'surveillance:type=camera'
+ camera: Camera
+ # 'surveillance:type=guard'
+ guard: Guard
+ surveillance/zone:
+ # 'surveillance:zone=*'
+ label: Surveillance Zone
tactile_paving:
# tactile_paving=*
label: Tactile Paving
@@ -1074,9 +1155,14 @@ en:
tourism:
# tourism=*
label: Type
- towertype:
+ tower/construction:
+ # 'tower:construction=*'
+ label: Construction
+ # tower/construction field placeholder
+ placeholder: 'Guyed, Lattice, Concealed, ...'
+ tower/type:
# 'tower:type=*'
- label: Tower type
+ label: Type
tracktype:
# tracktype=*
label: Track Type
@@ -1136,6 +1222,9 @@ en:
house: Up to 5m (16ft)
# visibility=street
street: 5 to 20m (16 to 65ft)
+ wall:
+ # wall=*
+ label: Type
water:
# water=*
label: Type
@@ -1387,6 +1476,11 @@ en:
name: Coworking Space
# 'terms: coworking,office'
terms: '