mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 19:26:41 +02:00
Merge branch 'develop' of https://github.com/openstreetmap/iD into patch-6
This commit is contained in:
+1
-1
@@ -464,7 +464,7 @@ You can now:
|
||||
* :warning: Add dedicated initialization step to `coreContext` ([#7304])
|
||||
* :warning: Remove various convenience functions of `coreContext`
|
||||
* :warning: Fetch JSON resources asynchronously at runtime using `coreFileFetcher` instead of bundling them ([#4994])
|
||||
* :warning: Add `coreUploader` to manage programatic uploading of edits ([#7247], [#7333])
|
||||
* :warning: Add `coreUploader` to manage programmatic uploading of edits ([#7247], [#7333])
|
||||
* :warning: Wrap localization functionality into global `localizer` singleton of `coreLocalizer`
|
||||
* :warning: Replace `context.storage()` with global `prefs` singleton of `corePreferences`
|
||||
* Add optimized `coreTree.waySegments` endpoint to return edges overlapping an area
|
||||
|
||||
@@ -37,7 +37,7 @@ export { geoVecEqual } from './vector.js';
|
||||
export { geoVecFloor } from './vector.js';
|
||||
export { geoVecInterp } from './vector.js';
|
||||
export { geoVecLength } from './vector.js';
|
||||
export { geoVecLengthSquare } from '/vector.js';
|
||||
export { geoVecLengthSquare } from './vector.js';
|
||||
export { geoVecNormalize } from './vector.js';
|
||||
export { geoVecNormalizedDot } from './vector.js';
|
||||
export { geoVecProject } from './vector.js';
|
||||
|
||||
@@ -34,7 +34,8 @@ export function uiSectionPresetFields(context) {
|
||||
var graph = context.graph();
|
||||
|
||||
var geometries = Object.keys(_entityIDs.reduce(function(geoms, entityID) {
|
||||
return geoms[graph.entity(entityID).geometry(graph)] = true;
|
||||
geoms[graph.entity(entityID).geometry(graph)] = true;
|
||||
return geoms;
|
||||
}, {}));
|
||||
|
||||
var presetsManager = presetManager;
|
||||
|
||||
Reference in New Issue
Block a user