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
| import GeoJSON from 'ol/format/GeoJSON.js'; import HeatmapLayer from 'ol/layer/Heatmap.js'; import Layer from 'ol/layer/Layer.js'; import Map from 'ol/Map.js'; import Source from 'ol/source/Source.js'; import VectorSource from 'ol/source/Vector.js'; import View from 'ol/View.js'; import {fromLonLat, toLonLat} from 'ol/proj.js';
const center = [-98.8, 37.9]; const key = 'Get your own API key at https://www.maptiler.com/cloud/';
const mbMap = new mapboxgl.Map({ style: 'https://api.maptiler.com/maps/bright/style.json?key=' + key, attributionControl: false, boxZoom: false, center: center, container: 'map', doubleClickZoom: false, dragPan: false, dragRotate: false, interactive: false, keyboard: false, pitchWithRotate: false, scrollZoom: false, touchZoomRotate: false, });
const mbLayer = new Layer({ render: function (frameState) { const canvas = mbMap.getCanvas(); const viewState = frameState.viewState;
const visible = mbLayer.getVisible(); canvas.style.display = visible ? 'block' : 'none'; canvas.style.position = 'absolute';
const opacity = mbLayer.getOpacity(); canvas.style.opacity = opacity;
const rotation = viewState.rotation; mbMap.jumpTo({ center: toLonLat(viewState.center), zoom: viewState.zoom - 1, bearing: (-rotation * 180) / Math.PI, animate: false, });
if (mbMap._frame) { mbMap._frame.cancel(); mbMap._frame = null; } mbMap._render();
return canvas; }, source: new Source({ 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 cities = 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, });
const map = new Map({ target: 'map', view: new View({ center: fromLonLat(center), zoom: 4, }), layers: [mbLayer, cities], });
|