mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
67 lines
1.3 KiB
JavaScript
67 lines
1.3 KiB
JavaScript
import { t } from '../util/locale';
|
|
import { actionAddEntity } from '../actions/index';
|
|
import { behaviorDraw } from '../behavior/index';
|
|
import { modeBrowse, modeSelect } from './index';
|
|
import { osmNode } from '../osm/index';
|
|
|
|
|
|
export function modeAddPoint(context) {
|
|
var mode = {
|
|
id: 'add-point',
|
|
button: 'point',
|
|
title: t('modes.add_point.title'),
|
|
description: t('modes.add_point.description'),
|
|
key: '1'
|
|
};
|
|
|
|
var behavior = behaviorDraw(context)
|
|
.tail(t('modes.add_point.tail'))
|
|
.on('click', add)
|
|
.on('clickWay', addWay)
|
|
.on('clickNode', addNode)
|
|
.on('cancel', cancel)
|
|
.on('finish', cancel);
|
|
|
|
|
|
function add(loc) {
|
|
var node = osmNode({ loc: loc });
|
|
|
|
context.perform(
|
|
actionAddEntity(node),
|
|
t('operations.add.annotation.point')
|
|
);
|
|
|
|
context.enter(
|
|
modeSelect(context, [node.id]).newFeature(true)
|
|
);
|
|
}
|
|
|
|
|
|
function addWay(loc) {
|
|
add(loc);
|
|
}
|
|
|
|
|
|
function addNode(node) {
|
|
add(node.loc);
|
|
}
|
|
|
|
|
|
function cancel() {
|
|
context.enter(modeBrowse(context));
|
|
}
|
|
|
|
|
|
mode.enter = function() {
|
|
context.install(behavior);
|
|
};
|
|
|
|
|
|
mode.exit = function() {
|
|
context.uninstall(behavior);
|
|
};
|
|
|
|
|
|
return mode;
|
|
}
|