Provide the map popup behavior.

This commit is contained in:
paul121 2020-12-14 11:01:21 -08:00 committed by Michael Stenta
parent d468683960
commit 006bdd9c52
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,11 @@
langcode: en
status: true
dependencies:
enforced:
module:
- farm_map
id: popup
label: Popup
description: 'Creates popups on the map when features are selected.'
library: 'farm_map/behavior_popup'
settings: { }

View File

@ -30,3 +30,8 @@ behavior_geofield:
js/farmOS.map.behaviors.geofield.js: { }
dependencies:
- farm_map/farm_map
behavior_popup:
js:
js/farmOS.map.behaviors.popup.js: { }
dependencies:
- farm_map/farm_map

View File

@ -0,0 +1,38 @@
(function () {
farmOS.map.behaviors.popup = {
attach: function (instance) {
// Create a popup and add it to the instance for future reference.
instance.popup = instance.addPopup(function (event) {
var content = '';
var feature = instance.map.forEachFeatureAtPixel(event.pixel, function(feature, layer) { return feature; });
if (feature) {
// If the feature is a cluster, then create a list of names and add it
// to the overall feature's description.
var features = feature.get('features');
if (features !== undefined) {
var names = [];
features.forEach(function (item) {
if (item.get('name') !== undefined) {
names.push(item.get('name'));
}
});
if (names.length !== 0) {
feature.set('description', '<ul><li>' + names.join('</li><li>') + '</li></ul>');
}
feature.set('name', names.length + ' item(s):');
}
var name = feature.get('name') || '';
var description = feature.get('description') || '';
var measurement = instance.measureGeometry(feature.getGeometry(), instance.units);
if (name !== '' || measurement !== '' || description !== '') {
content = '<div class="ol-popup-content"><h4 class="ol-popup-name">' + name + '</h4><div class="ol-popup-measurement"><small>' + measurement + '</small></div></div><div class="ol-popup-description">' + description + '</div></div>';
}
}
return content;
});
}
};
}());