Add basic popup for item information
This commit is contained in:
parent
4b278406e2
commit
61ee67875c
3 changed files with 101 additions and 0 deletions
53
main.js
53
main.js
|
|
@ -2,15 +2,36 @@ import './style.css';
|
|||
import {Map, View} from 'ol';
|
||||
import {fromLonLat, get} from 'ol/proj.js';
|
||||
import {defaults as defaultControls} from 'ol/control.js';
|
||||
import Overlay from 'ol/Overlay.js';
|
||||
|
||||
import ToggleMenuControl from './ui/controls.js';
|
||||
|
||||
import layerCategories from './layers/index.js';
|
||||
|
||||
// from https://openlayers.org/en/latest/examples/popup.html
|
||||
const container = document.getElementById('popup');
|
||||
const content = document.getElementById('popup-content');
|
||||
const closer = document.getElementById('popup-closer');
|
||||
const popupOverlay = new Overlay({
|
||||
element: container,
|
||||
autoPan: {
|
||||
animation: {
|
||||
duration: 250,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
closer.onclick = function () {
|
||||
popupOverlay.setPosition(undefined);
|
||||
closer.blur();
|
||||
return false;
|
||||
};
|
||||
|
||||
const map = new Map({
|
||||
controls: defaultControls().extend([new ToggleMenuControl()]),
|
||||
target: 'map',
|
||||
layers: [],
|
||||
overlays: [popupOverlay],
|
||||
view: new View({
|
||||
center: fromLonLat([-93.24151, 44.80376]),
|
||||
zoom: 10,
|
||||
|
|
@ -56,3 +77,35 @@ for (let category of layerCategories) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
function objectToTable(o) {
|
||||
// TODO: hack hack hack
|
||||
let table = `<table style="margin: 0.5em; border-collapse: collapse;">`;
|
||||
for (let [key, value] of Object.entries(o)) {
|
||||
if (typeof value === "object") {
|
||||
value = objectToTable(value);
|
||||
}
|
||||
if (typeof value === "string" && value.startsWith('https://')) {
|
||||
value = `<a href="${value}">${value}</a>`
|
||||
}
|
||||
table += `<tr><td style="border: 1px solid;">${key}</td><td style="border: 1px solid;">${value}</td></tr>`;
|
||||
}
|
||||
table += `</table>`;
|
||||
return table;
|
||||
}
|
||||
|
||||
// from https://openlayers.org/en/latest/examples/icon.html
|
||||
map.on('click', function (evt) {
|
||||
const feature = map.forEachFeatureAtPixel(evt.pixel, function (feature) {
|
||||
return feature;
|
||||
});
|
||||
if (!feature) {
|
||||
return;
|
||||
}
|
||||
|
||||
// exclude geometry -- https://stackoverflow.com/a/208106
|
||||
const {geometry: _, ...featureData} = feature.values_;
|
||||
|
||||
content.innerHTML = objectToTable(featureData);
|
||||
popupOverlay.setPosition(evt.coordinate);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue