mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 09:42:56 +00:00
Delete nodes that can only be vertices when deleting parent ways (close #6230) Allow snapping ways to nodes that cannot be positively identified as vertex-only
41 lines
895 B
JavaScript
41 lines
895 B
JavaScript
export { osmChangeset } from './changeset';
|
|
export { osmEntity } from './entity';
|
|
export { osmNode } from './node';
|
|
export { osmNote } from './note';
|
|
export { osmRelation } from './relation';
|
|
export { osmWay } from './way';
|
|
export { qaError } from './qa_error';
|
|
|
|
export {
|
|
osmIntersection,
|
|
osmTurn,
|
|
osmInferRestriction
|
|
} from './intersection';
|
|
|
|
export {
|
|
osmLanes
|
|
} from './lanes';
|
|
|
|
export {
|
|
osmOldMultipolygonOuterMemberOfRelation,
|
|
osmIsOldMultipolygonOuterMember,
|
|
osmOldMultipolygonOuterMember,
|
|
osmJoinWays
|
|
} from './multipolygon';
|
|
|
|
export {
|
|
osmAreaKeys,
|
|
osmSetAreaKeys,
|
|
osmPointTags,
|
|
osmSetPointTags,
|
|
osmVertexTags,
|
|
osmSetVertexTags,
|
|
osmNodeGeometriesForTags,
|
|
osmOneWayTags,
|
|
osmPavedTags,
|
|
osmIsInterestingTag,
|
|
osmRoutableHighwayTagValues,
|
|
osmFlowingWaterwayTagValues,
|
|
osmRailwayTrackTagValues
|
|
} from './tags';
|