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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
| import GeoJSON from 'ol/format/GeoJSON.js'; import Map from 'ol/Map.js'; import VectorSource from 'ol/source/Vector.js'; import View from 'ol/View.js'; import {Fill, Style} from 'ol/style.js'; import { Heatmap as HeatmapLayer, Vector as VectorLayer, } from 'ol/layer.js'; import {asArray} from 'ol/color.js';
const style = new Style({ fill: new Fill({ color: '#eeeeee', }), });
const map = new Map({ layers: [ new VectorLayer({ source: new VectorSource({ url: 'https://openlayers.org/data/vector/ecoregions.json', format: new GeoJSON(), }), background: 'white', style: function (feature) { const color = asArray(feature.get('COLOR_NNH') || '#eeeeee'); color[3] = 0.75; style.getFill().setColor(color); return style; }, }), new HeatmapLayer({ source: new VectorSource({ url: 'data/geojson/world-cities.geojson', format: new GeoJSON(), }), weight: function (feature) { return feature.get('population') / 1e7; }, radius: 15, blur: 15, opacity: 0.75, }), ], target: 'map', view: new View({ center: [0, 0], zoom: 2, }), });
document.getElementById('export-png').addEventListener('click', function () { map.once('rendercomplete', function () { const mapCanvas = document.createElement('canvas'); const size = map.getSize(); mapCanvas.width = size[0]; mapCanvas.height = size[1]; const mapContext = mapCanvas.getContext('2d'); Array.prototype.forEach.call( map.getViewport().querySelectorAll('.ol-layer canvas, canvas.ol-layer'), function (canvas) { if (canvas.width > 0) { const opacity = canvas.parentNode.style.opacity || canvas.style.opacity; mapContext.globalAlpha = opacity === '' ? 1 : Number(opacity); let matrix; const transform = canvas.style.transform; if (transform) { matrix = transform .match(/^matrix\(([^\(]*)\)$/)[1] .split(',') .map(Number); } else { matrix = [ parseFloat(canvas.style.width) / canvas.width, 0, 0, parseFloat(canvas.style.height) / canvas.height, 0, 0, ]; } CanvasRenderingContext2D.prototype.setTransform.apply( mapContext, matrix ); const backgroundColor = canvas.parentNode.style.backgroundColor; if (backgroundColor) { mapContext.fillStyle = backgroundColor; mapContext.fillRect(0, 0, canvas.width, canvas.height); } mapContext.drawImage(canvas, 0, 0); } } ); mapContext.globalAlpha = 1; mapContext.setTransform(1, 0, 0, 1, 0, 0); const link = document.getElementById('image-download'); link.href = mapCanvas.toDataURL(); link.click(); }); map.renderSync(); });
|