【发布时间】:2016-11-09 00:09:59
【问题描述】:
我想在开放图层中使用 wmts 地图服务。
wmts 层应该是基础层,它应该只显示 wmts 层,没有别的!
开放层的问题是我只能看到 osm-layer 而根本看不到 wmts 层。
或者我应该使用 getCapabilities 吗?
<!DOCTYPE html>
<html>
<head>
<title>openlayers3</title>
<link rel="stylesheet" href="https://openlayers.org/en/v3.19.1/css/ol.css" type="text/css">
<script src="https://openlayers.org/en/v3.19.1/build/ol.js"></script>
</head>
<body>
<div id="map" class="map"></div>
<script>
var projection = ol.proj.get('EPSG:3857');
var projectionExtent = projection.getExtent();
var size = ol.extent.getWidth(projectionExtent) / 256;
var resolutions = new Array(14);
var matrixIds = new Array(14);
for (var z = 0; z < 14; ++z) {
// generate resolutions and matrixIds arrays for this WMTS
resolutions[z] = size / Math.pow(2, z);
matrixIds[z] = z;
}
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: new ol.source.OSM(),
opacity: 0.7
}),
new ol.layer.Tile({
source: new ol.source.WMTS({
attributions: '© <a href="http://basemap.at" target="_blank">Basemap.at</a>',
url: "https://maps.wien.gv.at/basemap/geolandbasemap/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png",
layer: "geolandbasemap",
matrixSet: 'google3857',
format: 'image/png',
projection: projection,
tileGrid: new ol.tilegrid.WMTS({
origin: ol.extent.getTopLeft(projectionExtent),
resolutions: resolutions,
matrixIds: matrixIds
}),
encoding: "REST",
style: 'normal',
wrapX: true,
visibile: true
})
})
],
target: 'map',
controls: ol.control.defaults({
attributionOptions: /** @type {olx.control.AttributionOptions} */ ({
collapsible: false
})
}),
view: new ol.View({
center: [1799448, 6124949],
zoom: 4
})
}); </script>
</body>
</html>
【问题讨论】:
标签: javascript html css openlayers-3