强势解析WMTSCaabilities.xml- 来自openlayers
不得不说openlayers的功能非常全面,尤其是对于老牌的WMTS协议,来个强势解析WMTSCapalitiees.xml的工具类。以下代码来自于openlayers官网。
<!DOCTYPE html>
<html>
<head>
<title>WMTS Capabilities Parsing</title>
<link rel="stylesheet" href="https://openlayers.org/en/v5.3.0/css/ol.css" type="text/css">
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<style>
.log-container {
height: 400px;
overflow: scroll;
}
</style>
</head>
<body>
<pre class="log-container"><code id="log"></code></pre>
<script>
import WMTSCapabilities from 'ol/format/WMTSCapabilities.js';
var parser = new WMTSCapabilities();
fetch('data/WMTSCapabilities.xml').then(function(response) {
return response.text();
}).then(function(text) {
var result = parser.read(text);
document.getElementById('log').innerText = JSON.stringify(result, null, 2);
});
</script>
</body>
</html>
转载自:https://blog.csdn.net/zw3413/article/details/85337226