Files
iD/modules/svg/layers.js
Mattia Pezzotti d1e5c2910c add date slider for street level photos, and more (#10394)
full list of enhancements:

* year slider to filter photos by freshness
* toggle active streetlevel layers with shortcut `shift+P`
* hfov, pitch and direction is now held between sequences and images as asked in #10392
* fix for #10361 (only panoramax)
* added tests and jsdoc
* add ticks for existing photos on slider
* general bug fixes
* rudimentary support for toDate in date slider (only when iD is started with a "to" date in the hash parameter: show a second slider to visualize and set the "to" date)

---------

Co-authored-by: Martin Raifer <martin@raifer.tech>
2025-03-18 21:09:37 +01:00

130 lines
4.6 KiB
JavaScript

import { dispatch as d3_dispatch } from 'd3-dispatch';
import { select as d3_select } from 'd3-selection';
import { svgData } from './data';
import { svgLocalPhotos} from './local_photos';
import { svgDebug } from './debug';
import { svgGeolocate } from './geolocate';
import { svgKeepRight } from './keepRight';
import { svgOsmose } from './osmose';
import { svgStreetside } from './streetside';
import { svgVegbilder} from './vegbilder';
import { svgMapillaryImages } from './mapillary_images';
import { svgMapillaryPosition } from './mapillary_position';
import { svgMapillarySigns } from './mapillary_signs';
import { svgMapillaryMapFeatures } from './mapillary_map_features';
import { svgKartaviewImages } from './kartaview_images';
import { svgMapilioImages } from './mapilio_images';
import { svgPanoramaxImages } from './panoramax_images';
import { svgOsm } from './osm';
import { svgNotes } from './notes';
import { svgTouch } from './touch';
import { utilArrayDifference, utilRebind } from '../util';
import { utilGetDimensions, utilSetDimensions } from '../util/dimensions';
export function svgLayers(projection, context) {
var dispatch = d3_dispatch('change', 'photoDatesChanged');
var svg = d3_select(null);
var _layers = [
{ id: 'osm', layer: svgOsm(projection, context, dispatch) },
{ id: 'notes', layer: svgNotes(projection, context, dispatch) },
{ id: 'data', layer: svgData(projection, context, dispatch) },
{ id: 'keepRight', layer: svgKeepRight(projection, context, dispatch) },
{ id: 'osmose', layer: svgOsmose(projection, context, dispatch) },
{ id: 'streetside', layer: svgStreetside(projection, context, dispatch)},
{ id: 'mapillary', layer: svgMapillaryImages(projection, context, dispatch) },
{ id: 'mapillary-position', layer: svgMapillaryPosition(projection, context, dispatch) },
{ id: 'mapillary-map-features', layer: svgMapillaryMapFeatures(projection, context, dispatch) },
{ id: 'mapillary-signs', layer: svgMapillarySigns(projection, context, dispatch) },
{ id: 'kartaview', layer: svgKartaviewImages(projection, context, dispatch) },
{ id: 'mapilio', layer: svgMapilioImages(projection, context, dispatch) },
{ id: 'vegbilder', layer: svgVegbilder(projection, context, dispatch) },
{ id: 'panoramax', layer: svgPanoramaxImages(projection, context, dispatch) },
{ id: 'local-photos', layer: svgLocalPhotos(projection, context, dispatch) },
{ id: 'debug', layer: svgDebug(projection, context, dispatch) },
{ id: 'geolocate', layer: svgGeolocate(projection, context, dispatch) },
{ id: 'touch', layer: svgTouch(projection, context, dispatch) },
];
function drawLayers(selection) {
svg = selection.selectAll('.surface')
.data([0]);
svg = svg.enter()
.append('svg')
.attr('class', 'surface')
.merge(svg);
var defs = svg.selectAll('.surface-defs')
.data([0]);
defs.enter()
.append('defs')
.attr('class', 'surface-defs');
var groups = svg.selectAll('.data-layer')
.data(_layers);
groups.exit()
.remove();
groups.enter()
.append('g')
.attr('class', function(d) { return 'data-layer ' + d.id; })
.merge(groups)
.each(function(d) { d3_select(this).call(d.layer); });
}
drawLayers.all = function() {
return _layers;
};
drawLayers.layer = function(id) {
var obj = _layers.find(function(o) { return o.id === id; });
return obj && obj.layer;
};
drawLayers.only = function(what) {
var arr = [].concat(what);
var all = _layers.map(function(layer) { return layer.id; });
return drawLayers.remove(utilArrayDifference(all, arr));
};
drawLayers.remove = function(what) {
var arr = [].concat(what);
arr.forEach(function(id) {
_layers = _layers.filter(function(o) { return o.id !== id; });
});
dispatch.call('change');
return this;
};
drawLayers.add = function(what) {
var arr = [].concat(what);
arr.forEach(function(obj) {
if ('id' in obj && 'layer' in obj) {
_layers.push(obj);
}
});
dispatch.call('change');
return this;
};
drawLayers.dimensions = function(val) {
if (!arguments.length) return utilGetDimensions(svg);
utilSetDimensions(svg, val);
return this;
};
return utilRebind(drawLayers, dispatch, 'on');
}