Merge pull request #271 from sbrunner/wmts-capabilities

Create Layer from WMTS capabilities in rest mode
This commit is contained in:
Stéphane Brunner
2012-06-27 01:34:02 -07:00
5 changed files with 497 additions and 86 deletions

View File

@@ -20,15 +20,15 @@
<h1 id="title">Web Map Tile Service (WMTS) Capabilities Parsing</h1>
<div id="tags">
wmts, capabilities, getcapabilities
</div>
</div>
<p id="shortdesc">
The WMTS Capabilities format allows for parsing of capabilities
documents from OGC Web Map Tile Service (WMTS) version 1.0.0
documents from OGC Web Map Tile Service (WMTS) version 1.0.0
implementations.
</p>
<div id="map" class="smallmap"></div>
<div id="docs">
<p>
This example creates an OpenLayers.Layer.WMTS layer to based

View File

@@ -3,13 +3,13 @@ OpenLayers.ProxyHost = "/proxy/?url=";
var map, format;
function init() {
format = new OpenLayers.Format.WMTSCapabilities({
/**
* This particular service is not in compliance with the WMTS spec and
* is providing coordinates in y, x order regardless of the CRS. To
* work around this, we can provide the format a table of CRS URN that
* should be considered y, x order. These will extend the defaults on
* work around this, we can provide the format a table of CRS URN that
* should be considered y, x order. These will extend the defaults on
* the format.
*/
yx: {
@@ -38,22 +38,21 @@ function init() {
isBaseLayer: false
});
map.addLayer(layer);
},
},
failure: function() {
alert("Trouble getting capabilities doc");
OpenLayers.Console.error.apply(OpenLayers.Console, arguments);
}
});
map = new OpenLayers.Map({
div: "map",
projection: "EPSG:900913"
});
});
var osm = new OpenLayers.Layer.OSM();
map.addLayer(osm);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.setCenter(new OpenLayers.LonLat(-13677832, 5213272), 13);
}