UNPKG

312 BJavaScriptView Raw
1goog.require('ol.format.WMSCapabilities');
2
3var parser = new ol.format.WMSCapabilities();
4
5fetch('data/ogcsample.xml').then(function(response) {
6 return response.text();
7}).then(function(text) {
8 var result = parser.read(text);
9 document.getElementById('log').innerText = JSON.stringify(result, null, 2);
10});