Files
iD/modules/behavior/add_way.js
2020-05-07 10:26:50 -07:00

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');
}