mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import { dispatch as d3_dispatch } from 'd3-dispatch';
|
|
|
|
import { behaviorDraw } from './draw';
|
|
import { modeBrowse } from '../modes/browse';
|
|
import { utilRebind } from '../util/rebind';
|
|
|
|
|
|
export function behaviorAddWay(context) {
|
|
var dispatch = d3_dispatch('start', 'startFromWay', 'startFromNode');
|
|
var draw = behaviorDraw(context);
|
|
|
|
function behavior(surface) {
|
|
draw.on('click', function() { dispatch.apply('start', this, arguments); })
|
|
.on('clickWay', function() { dispatch.apply('startFromWay', this, arguments); })
|
|
.on('clickNode', function() { dispatch.apply('startFromNode', this, arguments); })
|
|
.on('cancel', behavior.cancel)
|
|
.on('finish', behavior.cancel);
|
|
|
|
context.map()
|
|
.dblclickZoomEnable(false);
|
|
|
|
surface.call(draw);
|
|
}
|
|
|
|
|
|
behavior.off = function(surface) {
|
|
surface.call(draw.off);
|
|
};
|
|
|
|
|
|
behavior.cancel = function() {
|
|
window.setTimeout(function() {
|
|
context.map().dblclickZoomEnable(true);
|
|
}, 1000);
|
|
|
|
context.enter(modeBrowse(context));
|
|
};
|
|
|
|
|
|
return utilRebind(behavior, dispatch, 'on');
|
|
}
|