原文链接及内容

两个地图(一个道路,一个空中)共享相同的中心,分辨率和旋转角度。
main.js
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| import Map from 'ol/Map.js'; import TileLayer from 'ol/layer/Tile.js'; import View from 'ol/View.js'; import XYZ from 'ol/source/XYZ.js';
const key = 'Get your own API key at https://www.maptiler.com/cloud/'; const attributions = '<a href="https://www.maptiler.com/copyright/" target="_blank">© MapTiler</a> ' + '<a href="https://www.openstreetmap.org/copyright" target="_blank">© OpenStreetMap contributors</a>';
const roadLayer = new TileLayer({ source: new XYZ({ attributions: attributions, url: 'https://api.maptiler.com/maps/streets/{z}/{x}/{y}.png?key=' + key, tileSize: 512, maxZoom: 22, }), });
const aerialLayer = new TileLayer({ source: new XYZ({ attributions: attributions, url: 'https://api.maptiler.com/tiles/satellite/{z}/{x}/{y}.jpg?key=' + key, maxZoom: 20, }), });
const view = new View({ center: [-6655.5402445057125, 6709968.258934638], zoom: 13, });
const map1 = new Map({ target: 'roadMap', layers: [roadLayer], view: view, });
const map2 = new Map({ target: 'aerialMap', layers: [aerialLayer], view: view, });
|
界面布局文件index.html
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Shared Views</title> <link rel="stylesheet" href="node_modules/ol/ol.css"> <style> .map { width: 100%; height: 400px; } @media (min-width: 800px) { .wrapper { display: flex; } .half { padding: 0 10px; width: 50%; float: left; } } </style> </head> <body> <div class="wrapper"> <div class="half"> <h4>Road</h4> <div id="roadMap" class="map"></div> </div> <div class="half"> <h4>Aerial</h4> <div id="aerialMap" class="map"></div> </div> </div> <script src="https://cdn.jsdelivr.net/npm/elm-pep@1.0.6/dist/elm-pep.js"></script> <script type="module" src="main.js"></script> </body> </html>
|