2019-01-18 05:55:08 +00:00
|
|
|
/**
|
|
|
|
* ext-placemark.js
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @copyright 2010 CloudCanvas, Inc. All rights reserved
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
export default {
|
|
|
|
name: 'placemark',
|
|
|
|
async init (S) {
|
|
|
|
const svgEditor = this;
|
|
|
|
const svgCanvas = svgEditor.canvas;
|
|
|
|
const addElem = svgCanvas.addSVGElementFromJson;
|
|
|
|
const {$, importLocale} = S; // {svgcontent},
|
|
|
|
let
|
|
|
|
selElems,
|
|
|
|
// editingitex = false,
|
|
|
|
// svgdoc = S.svgroot.parentNode.ownerDocument,
|
|
|
|
started,
|
|
|
|
newPM;
|
|
|
|
// edg = 0,
|
|
|
|
// newFOG, newFOGParent, newDef, newImageName, newMaskID,
|
|
|
|
// undoCommand = 'Not image',
|
|
|
|
// modeChangeG, ccZoom, wEl, hEl, wOffset, hOffset, ccRgbEl, brushW, brushH;
|
|
|
|
const strings = await importLocale();
|
|
|
|
const markerTypes = {
|
|
|
|
nomarker: {},
|
|
|
|
forwardslash:
|
|
|
|
{element: 'path', attr: {d: 'M30,100 L70,0'}},
|
|
|
|
reverseslash:
|
|
|
|
{element: 'path', attr: {d: 'M30,0 L70,100'}},
|
|
|
|
verticalslash:
|
|
|
|
{element: 'path', attr: {d: 'M50,0 L50,100'}},
|
|
|
|
xmark:
|
|
|
|
{element: 'path', attr: {d: 'M20,80 L80,20 M80,80 L20,20'}},
|
|
|
|
leftarrow:
|
|
|
|
{element: 'path', attr: {d: 'M0,50 L100,90 L70,50 L100,10 Z'}},
|
|
|
|
rightarrow:
|
|
|
|
{element: 'path', attr: {d: 'M100,50 L0,90 L30,50 L0,10 Z'}},
|
|
|
|
box:
|
|
|
|
{element: 'path', attr: {d: 'M20,20 L20,80 L80,80 L80,20 Z'}},
|
|
|
|
star:
|
|
|
|
{element: 'path', attr: {d: 'M10,30 L90,30 L20,90 L50,10 L80,90 Z'}},
|
|
|
|
mcircle:
|
|
|
|
{element: 'circle', attr: {r: 30, cx: 50, cy: 50}},
|
|
|
|
triangle:
|
2019-02-21 08:26:26 +00:00
|
|
|
{element: 'path', attr: {d: 'M10,80 L50,20 L80,80 Z'}}
|
2019-01-18 05:55:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// duplicate shapes to support unfilled (open) marker types with an _o suffix
|
|
|
|
['leftarrow', 'rightarrow', 'box', 'star', 'mcircle', 'triangle'].forEach((v) => {
|
|
|
|
markerTypes[v + '_o'] = markerTypes[v];
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {boolean} on
|
2019-04-16 00:59:16 +00:00
|
|
|
* @returns {void}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
|
|
|
function showPanel (on) {
|
|
|
|
$('#placemark_panel').toggle(on);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {Element} elem - A graphic element will have an attribute like marker-start
|
|
|
|
* @param {"marker-start"|"marker-mid"|"marker-end"} attr
|
|
|
|
* @returns {Element} The marker element that is linked to the graphic element
|
|
|
|
*/
|
|
|
|
function getLinked (elem, attr) {
|
|
|
|
if (!elem) { return null; }
|
|
|
|
const str = elem.getAttribute(attr);
|
|
|
|
if (!str) { return null; }
|
|
|
|
const m = str.match(/\(#(.*)\)/);
|
|
|
|
if (!m || m.length !== 2) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return svgCanvas.getElem(m[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-21 08:26:26 +00:00
|
|
|
* Called when text is changed.
|
2019-01-21 10:12:02 +00:00
|
|
|
* @param {string} txt
|
2019-04-16 00:59:16 +00:00
|
|
|
* @returns {void}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
2019-02-21 08:26:26 +00:00
|
|
|
function updateText (txt) {
|
|
|
|
const items = txt.split(';');
|
|
|
|
selElems.forEach((elem) => {
|
|
|
|
if (elem && elem.getAttribute('class').includes('placemark')) {
|
|
|
|
$(elem).children().each((_, i) => {
|
|
|
|
const [, , type, n] = i.id.split('_');
|
|
|
|
if (type === 'txt') {
|
|
|
|
$(i).text(items[n]);
|
|
|
|
}
|
2019-01-21 10:12:02 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
2019-02-21 08:26:26 +00:00
|
|
|
* Called when font is changed.
|
2019-01-21 10:12:02 +00:00
|
|
|
* @param {string} font
|
2019-04-16 00:59:16 +00:00
|
|
|
* @returns {void}
|
2019-01-21 10:12:02 +00:00
|
|
|
*/
|
2019-02-21 08:26:26 +00:00
|
|
|
function updateFont (font) {
|
|
|
|
font = font.split(' ');
|
2019-01-21 10:12:02 +00:00
|
|
|
const fontSize = parseInt(font.pop());
|
2019-02-21 08:26:26 +00:00
|
|
|
font = font.join(' ');
|
|
|
|
selElems.forEach((elem) => {
|
|
|
|
if (elem && elem.getAttribute('class').includes('placemark')) {
|
|
|
|
$(elem).children().each((_, i) => {
|
|
|
|
const [, , type] = i.id.split('_');
|
|
|
|
if (type === 'txt') {
|
|
|
|
$(i).attr({'font-family': font, 'font-size': fontSize});
|
|
|
|
}
|
2019-01-21 10:12:02 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2019-01-18 05:55:08 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @param {string} id
|
|
|
|
* @param {""|"\\nomarker"|"nomarker"|"leftarrow"|"rightarrow"|"textmarker"|"textmarker_top"|"textmarker_bottom"|"forwardslash"|"reverseslash"|"verticalslash"|"box"|"star"|"xmark"|"triangle"|"mcircle"} val
|
2019-05-22 15:37:27 +00:00
|
|
|
* @returns {SVGMarkerElement}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
|
|
|
function addMarker (id, val) {
|
|
|
|
let marker = svgCanvas.getElem(id);
|
|
|
|
if (marker) { return undefined; }
|
2019-02-21 08:26:26 +00:00
|
|
|
// console.log(id);
|
2019-01-18 05:55:08 +00:00
|
|
|
if (val === '' || val === 'nomarker') { return undefined; }
|
|
|
|
const color = svgCanvas.getColor('stroke');
|
|
|
|
// NOTE: Safari didn't like a negative value in viewBox
|
|
|
|
// so we use a standardized 0 0 100 100
|
|
|
|
// with 50 50 being mapped to the marker position
|
2019-02-21 08:26:26 +00:00
|
|
|
const scale = 2;// parseFloat($('#marker_size').val());
|
2019-01-18 05:55:08 +00:00
|
|
|
const strokeWidth = 10;
|
|
|
|
let refX = 50;
|
2019-02-21 08:26:26 +00:00
|
|
|
const refY = 50;
|
|
|
|
const viewBox = '0 0 100 100';
|
|
|
|
const markerWidth = 5 * scale;
|
|
|
|
const markerHeight = 5 * scale;
|
|
|
|
const seType = val;
|
2019-01-18 05:55:08 +00:00
|
|
|
|
|
|
|
if (!markerTypes[seType]) { return undefined; } // an unknown type!
|
2019-02-21 08:26:26 +00:00
|
|
|
// positional markers(arrows) at end of line
|
|
|
|
if (seType.includes('left')) refX = 0;
|
|
|
|
if (seType.includes('right')) refX = 100;
|
2019-01-18 05:55:08 +00:00
|
|
|
|
|
|
|
// create a generic marker
|
|
|
|
marker = addElem({
|
|
|
|
element: 'marker',
|
|
|
|
attr: {
|
|
|
|
id,
|
|
|
|
markerUnits: 'strokeWidth',
|
|
|
|
orient: 'auto',
|
|
|
|
style: 'pointer-events:none',
|
|
|
|
class: seType
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const mel = addElem(markerTypes[seType]);
|
|
|
|
const fillcolor = (seType.substr(-2) === '_o')
|
2019-02-21 08:26:26 +00:00
|
|
|
? 'none'
|
|
|
|
: color;
|
2019-01-18 05:55:08 +00:00
|
|
|
|
|
|
|
mel.setAttribute('fill', fillcolor);
|
|
|
|
mel.setAttribute('stroke', color);
|
|
|
|
mel.setAttribute('stroke-width', strokeWidth);
|
|
|
|
marker.append(mel);
|
|
|
|
|
|
|
|
marker.setAttribute('viewBox', viewBox);
|
|
|
|
marker.setAttribute('markerWidth', markerWidth);
|
|
|
|
marker.setAttribute('markerHeight', markerHeight);
|
|
|
|
marker.setAttribute('refX', refX);
|
|
|
|
marker.setAttribute('refY', refY);
|
|
|
|
svgCanvas.findDefs().append(marker);
|
|
|
|
|
|
|
|
return marker;
|
|
|
|
}
|
|
|
|
/**
|
2019-02-21 08:26:26 +00:00
|
|
|
* @param {Element} el
|
|
|
|
* @param {string} val
|
2019-04-16 00:59:16 +00:00
|
|
|
* @returns {void}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
|
|
|
function setMarker (el, val) {
|
|
|
|
const markerName = 'marker-start';
|
|
|
|
const marker = getLinked(el, markerName);
|
|
|
|
if (marker) { $(marker).remove(); }
|
|
|
|
el.removeAttribute(markerName);
|
|
|
|
if (val === 'nomarker') {
|
|
|
|
svgCanvas.call('changed', [el]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Set marker on element
|
|
|
|
const id = 'placemark_marker_' + el.id;
|
|
|
|
addMarker(id, val);
|
|
|
|
el.setAttribute(markerName, 'url(#' + id + ')');
|
|
|
|
svgCanvas.call('changed', [el]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the main system modifies an object. This routine changes
|
|
|
|
* the associated markers to be the same color.
|
2019-01-21 10:12:02 +00:00
|
|
|
* @param {Element} el
|
2019-04-16 00:59:16 +00:00
|
|
|
* @returns {void}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
2019-01-21 10:12:02 +00:00
|
|
|
function colorChanged (el) {
|
|
|
|
const color = el.getAttribute('stroke');
|
|
|
|
const marker = getLinked(el, 'marker-start');
|
2019-02-21 08:26:26 +00:00
|
|
|
// console.log(marker);
|
2019-01-18 05:55:08 +00:00
|
|
|
if (!marker) { return; }
|
|
|
|
if (!marker.attributes.class) { return; } // not created by this extension
|
|
|
|
const ch = marker.lastElementChild;
|
|
|
|
if (!ch) { return; }
|
|
|
|
const curfill = ch.getAttribute('fill');
|
|
|
|
const curstroke = ch.getAttribute('stroke');
|
|
|
|
if (curfill && curfill !== 'none') { ch.setAttribute('fill', color); }
|
|
|
|
if (curstroke && curstroke !== 'none') { ch.setAttribute('stroke', color); }
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the main system creates or modifies an object.
|
|
|
|
* Its primary purpose is to create new markers for cloned objects.
|
|
|
|
* @param {Element} el
|
2019-04-16 00:59:16 +00:00
|
|
|
* @returns {void}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
|
|
|
function updateReferences (el) {
|
2019-02-21 08:26:26 +00:00
|
|
|
const id = 'placemark_marker_' + el.id;
|
|
|
|
const markerName = 'marker-start';
|
|
|
|
const marker = getLinked(el, markerName);
|
|
|
|
if (!marker || !marker.attributes.class) { return; } // not created by this extension
|
|
|
|
const url = el.getAttribute(markerName);
|
|
|
|
if (url) {
|
|
|
|
const len = el.id.length;
|
|
|
|
const linkid = url.substr(-len - 1, len);
|
|
|
|
if (el.id !== linkid) {
|
|
|
|
const val = $('#placemark_marker').attr('value') || 'leftarrow';
|
|
|
|
addMarker(id, val);
|
|
|
|
svgCanvas.changeSelectedAttribute(markerName, 'url(#' + id + ')');
|
|
|
|
svgCanvas.call('changed', selElems);
|
2019-01-18 05:55:08 +00:00
|
|
|
}
|
2019-02-21 08:26:26 +00:00
|
|
|
}
|
2019-01-18 05:55:08 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @param {Event} ev
|
2019-05-24 06:44:57 +00:00
|
|
|
* @returns {void}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
2019-02-21 08:26:26 +00:00
|
|
|
function setArrowFromButton (ev) {
|
2019-01-18 05:55:08 +00:00
|
|
|
const parts = this.id.split('_');
|
|
|
|
let val = parts[2];
|
|
|
|
if (parts[3]) { val += '_' + parts[3]; }
|
2019-02-21 08:26:26 +00:00
|
|
|
$('#placemark_marker').attr('value', val);
|
2019-01-18 05:55:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {"nomarker"|"leftarrow"|"rightarrow"|"textmarker"|"forwardslash"|"reverseslash"|"verticalslash"|"box"|"star"|"xmark"|"triangle"|"mcircle"} id
|
2019-05-22 15:37:27 +00:00
|
|
|
* @returns {string}
|
2019-01-18 05:55:08 +00:00
|
|
|
*/
|
|
|
|
function getTitle (id) {
|
|
|
|
const {langList} = strings;
|
|
|
|
const item = langList.find((itm) => {
|
|
|
|
return itm.id === id;
|
|
|
|
});
|
|
|
|
return item ? item.title : id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the toolbar button array from the marker definitions.
|
2019-02-21 08:26:26 +00:00
|
|
|
* @param {module:SVGEditor.Button[]} buttons
|
2019-01-18 05:55:08 +00:00
|
|
|
* @returns {module:SVGEditor.Button[]}
|
|
|
|
*/
|
|
|
|
function addMarkerButtons (buttons) {
|
|
|
|
Object.keys(markerTypes).forEach(function (id) {
|
|
|
|
const title = getTitle(String(id));
|
|
|
|
buttons.push({
|
|
|
|
id: 'placemark_marker_' + id,
|
|
|
|
svgicon: id,
|
|
|
|
icon: svgEditor.curConfig.extIconsPath + 'markers-' + id + '.png',
|
|
|
|
title,
|
|
|
|
type: 'context',
|
|
|
|
events: {click: setArrowFromButton},
|
|
|
|
panel: 'placemark_panel',
|
|
|
|
list: 'placemark_marker',
|
2019-02-21 08:26:26 +00:00
|
|
|
isDefault: id === 'leftarrow'
|
2019-01-18 05:55:08 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
return buttons;
|
|
|
|
}
|
|
|
|
|
|
|
|
const buttons = [{
|
|
|
|
id: 'tool_placemark',
|
|
|
|
icon: svgEditor.curConfig.extIconsPath + 'placemark.png',
|
|
|
|
type: 'mode',
|
|
|
|
position: 12,
|
|
|
|
events: {
|
|
|
|
click () {
|
|
|
|
showPanel(true);
|
|
|
|
svgCanvas.setMode('placemark');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
const contextTools = [
|
2019-02-21 08:26:26 +00:00
|
|
|
{
|
2019-01-18 05:55:08 +00:00
|
|
|
type: 'button-select',
|
|
|
|
panel: 'placemark_panel',
|
|
|
|
id: 'placemark_marker',
|
|
|
|
colnum: 3,
|
|
|
|
events: {change: setArrowFromButton}
|
2019-02-21 08:26:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'input',
|
|
|
|
panel: 'placemark_panel',
|
|
|
|
id: 'placemarkText',
|
|
|
|
size: 20,
|
|
|
|
defval: '',
|
|
|
|
events: {
|
|
|
|
change () {
|
|
|
|
updateText(this.value);
|
|
|
|
}
|
2019-01-18 05:55:08 +00:00
|
|
|
}
|
2019-02-21 08:26:26 +00:00
|
|
|
}, {
|
|
|
|
type: 'input',
|
|
|
|
panel: 'placemark_panel',
|
|
|
|
id: 'placemarkFont',
|
|
|
|
size: 7,
|
|
|
|
defval: 'Arial 10',
|
|
|
|
events: {
|
|
|
|
change () {
|
|
|
|
updateFont(this.value);
|
|
|
|
}
|
2019-01-18 05:55:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
return {
|
|
|
|
name: strings.name,
|
|
|
|
svgicons: svgEditor.curConfig.extIconsPath + 'placemark-icons.xml',
|
2019-02-21 08:26:26 +00:00
|
|
|
buttons: addMarkerButtons(strings.buttons.map((button, i) => {
|
|
|
|
return Object.assign(buttons[i], button);
|
|
|
|
})),
|
|
|
|
context_tools: strings.contextTools.map((contextTool, i) => {
|
|
|
|
return Object.assign(contextTools[i], contextTool);
|
|
|
|
}),
|
2019-01-18 05:55:08 +00:00
|
|
|
callback () {
|
|
|
|
$('#placemark_panel').hide();
|
|
|
|
// const endChanges = function(){};
|
|
|
|
},
|
|
|
|
mouseDown (opts) {
|
2019-02-21 08:26:26 +00:00
|
|
|
// const rgb = svgCanvas.getColor('fill');
|
2019-01-18 05:55:08 +00:00
|
|
|
const sRgb = svgCanvas.getColor('stroke');
|
|
|
|
const sWidth = svgCanvas.getStrokeWidth();
|
|
|
|
|
|
|
|
if (svgCanvas.getMode() === 'placemark') {
|
|
|
|
started = true;
|
|
|
|
const id = svgCanvas.getNextId();
|
2019-02-21 08:26:26 +00:00
|
|
|
const items = $('#placemarkText').val().split(';');
|
|
|
|
let font = $('#placemarkFont').val().split(' ');
|
2019-01-18 05:55:08 +00:00
|
|
|
const fontSize = parseInt(font.pop());
|
2019-02-21 08:26:26 +00:00
|
|
|
font = font.join(' ');
|
|
|
|
const x0 = opts.start_x + 10, y0 = opts.start_y + 10;
|
|
|
|
let maxlen = 0;
|
|
|
|
const children = [{
|
|
|
|
element: 'line',
|
|
|
|
attr: {
|
|
|
|
id: id + '_pline_0',
|
|
|
|
fill: 'none',
|
|
|
|
stroke: sRgb,
|
|
|
|
'stroke-width': sWidth,
|
|
|
|
'stroke-linecap': 'round',
|
|
|
|
x1: opts.start_x,
|
|
|
|
y1: opts.start_y,
|
|
|
|
x2: x0,
|
|
|
|
y2: y0
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
items.forEach((i, n) => {
|
|
|
|
maxlen = Math.max(maxlen, i.length);
|
|
|
|
children.push({
|
|
|
|
element: 'line',
|
|
|
|
attr: {
|
|
|
|
id: id + '_tline_' + n,
|
|
|
|
fill: 'none',
|
|
|
|
stroke: sRgb,
|
|
|
|
'stroke-width': sWidth,
|
|
|
|
'stroke-linecap': 'round',
|
|
|
|
x1: x0,
|
|
|
|
y1: y0 + (fontSize + 6) * n,
|
|
|
|
x2: x0 + i.length * fontSize * 0.5 + fontSize,
|
|
|
|
y2: y0 + (fontSize + 6) * n
|
|
|
|
}
|
|
|
|
});
|
|
|
|
children.push({
|
|
|
|
element: 'text',
|
|
|
|
attr: {
|
|
|
|
id: id + '_txt_' + n,
|
|
|
|
fill: sRgb,
|
|
|
|
stroke: 'none',
|
|
|
|
'stroke-width': 0,
|
|
|
|
x: x0 + 3,
|
|
|
|
y: y0 - 3 + (fontSize + 6) * n,
|
|
|
|
'font-family': font,
|
|
|
|
'font-size': fontSize,
|
|
|
|
'text-anchor': 'start'
|
|
|
|
},
|
|
|
|
children: [i]
|
|
|
|
});
|
2019-01-18 05:55:08 +00:00
|
|
|
});
|
2019-02-21 08:26:26 +00:00
|
|
|
if (items.length > 0) {
|
|
|
|
children.push({
|
|
|
|
element: 'line',
|
|
|
|
attr: {
|
|
|
|
id: id + '_vline_0',
|
|
|
|
fill: 'none',
|
|
|
|
stroke: sRgb,
|
|
|
|
'stroke-width': sWidth,
|
|
|
|
'stroke-linecap': 'round',
|
|
|
|
x1: x0,
|
|
|
|
y1: y0,
|
|
|
|
x2: x0,
|
|
|
|
y2: y0 + (fontSize + 6) * (items.length - 1)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-01-18 05:55:08 +00:00
|
|
|
newPM = svgCanvas.addSVGElementFromJson({
|
|
|
|
element: 'g',
|
|
|
|
attr: {
|
2019-02-21 08:26:26 +00:00
|
|
|
id,
|
|
|
|
class: 'placemark',
|
|
|
|
fontSize,
|
|
|
|
maxlen,
|
|
|
|
lines: items.length,
|
|
|
|
x: opts.start_x,
|
|
|
|
y: opts.start_y,
|
|
|
|
px: opts.start_x,
|
|
|
|
py: opts.start_y
|
2019-01-18 05:55:08 +00:00
|
|
|
},
|
2019-02-21 08:26:26 +00:00
|
|
|
children
|
2019-01-18 05:55:08 +00:00
|
|
|
});
|
2019-02-21 08:26:26 +00:00
|
|
|
setMarker(
|
|
|
|
newPM.firstElementChild,
|
|
|
|
$('#placemark_marker').attr('value') || 'leftarrow'
|
|
|
|
);
|
2019-01-18 05:55:08 +00:00
|
|
|
return {
|
|
|
|
started: true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
},
|
|
|
|
mouseMove (opts) {
|
|
|
|
if (!started) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
if (svgCanvas.getMode() === 'placemark') {
|
2019-02-21 08:26:26 +00:00
|
|
|
const x = opts.mouse_x / svgCanvas.getZoom();
|
|
|
|
const y = opts.mouse_y / svgCanvas.getZoom();
|
|
|
|
const {fontSize, maxlen, lines, px, py} = $(newPM).attr(
|
|
|
|
['fontSize', 'maxlen', 'lines', 'px', 'py']
|
|
|
|
);
|
|
|
|
$(newPM).attr({x, y});
|
|
|
|
$(newPM).children().each((_, i) => {
|
|
|
|
const [, , type, n] = i.id.split('_');
|
|
|
|
const y0 = y + (fontSize + 6) * n,
|
|
|
|
x0 = x + maxlen * fontSize * 0.5 + fontSize;
|
|
|
|
const nx = (x + (x0 - x) / 2 < px) ? x0 : x;
|
|
|
|
const ny = (y + ((fontSize + 6) * (lines - 1)) / 2 < py)
|
|
|
|
? y + (fontSize + 6) * (lines - 1)
|
|
|
|
: y;
|
|
|
|
if (type === 'pline') {
|
|
|
|
i.setAttribute('x2', nx);
|
|
|
|
i.setAttribute('y2', ny);
|
|
|
|
}
|
|
|
|
if (type === 'tline') {
|
|
|
|
i.setAttribute('x1', x);
|
|
|
|
i.setAttribute('y1', y0);
|
|
|
|
i.setAttribute('x2', x0);
|
|
|
|
i.setAttribute('y2', y0);
|
|
|
|
}
|
|
|
|
if (type === 'vline') {
|
|
|
|
i.setAttribute('x1', nx);
|
|
|
|
i.setAttribute('y1', y);
|
|
|
|
i.setAttribute('x2', nx);
|
|
|
|
i.setAttribute('y2', y + (fontSize + 6) * (lines - 1));
|
|
|
|
}
|
|
|
|
if (type === 'txt') {
|
|
|
|
i.setAttribute('x', x + fontSize / 2);
|
|
|
|
i.setAttribute('y', y0 - 3);
|
|
|
|
}
|
2019-01-18 05:55:08 +00:00
|
|
|
});
|
|
|
|
return {
|
|
|
|
started: true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
},
|
|
|
|
mouseUp () {
|
|
|
|
if (svgCanvas.getMode() === 'placemark') {
|
2019-02-21 08:26:26 +00:00
|
|
|
const {x, y, px, py} = $(newPM).attr(['x', 'y', 'px', 'py']);
|
2019-01-18 05:55:08 +00:00
|
|
|
return {
|
2019-02-21 08:26:26 +00:00
|
|
|
keep: (x != px && y != py), // eslint-disable-line eqeqeq
|
2019-01-18 05:55:08 +00:00
|
|
|
element: newPM
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
},
|
|
|
|
selectedChanged (opts) {
|
|
|
|
// Use this to update the current selected elements
|
|
|
|
selElems = opts.elems;
|
2019-02-21 08:26:26 +00:00
|
|
|
selElems.forEach((elem) => {
|
|
|
|
if (elem && elem.getAttribute('class').includes('placemark')) {
|
|
|
|
const txt = [];
|
|
|
|
$(elem).children().each((n, i) => {
|
|
|
|
const [, , type] = i.id.split('_');
|
|
|
|
if (type === 'txt') {
|
|
|
|
$('#placemarkFont').val(
|
|
|
|
i.getAttribute('font-family') + ' ' + i.getAttribute('font-size')
|
|
|
|
);
|
|
|
|
txt.push($(i).text());
|
2019-01-21 10:12:02 +00:00
|
|
|
}
|
|
|
|
});
|
2019-02-21 08:26:26 +00:00
|
|
|
$('#placemarkText').val(txt.join(';'));
|
2019-01-21 10:12:02 +00:00
|
|
|
showPanel(true);
|
2019-01-18 05:55:08 +00:00
|
|
|
} else {
|
|
|
|
showPanel(false);
|
|
|
|
}
|
2019-01-21 10:12:02 +00:00
|
|
|
});
|
2019-01-18 05:55:08 +00:00
|
|
|
},
|
|
|
|
elementChanged (opts) {
|
2019-02-21 08:26:26 +00:00
|
|
|
opts.elems.forEach((elem) => {
|
|
|
|
if (elem.id.includes('pline_0')) { // need update marker of pline_0
|
2019-01-21 10:12:02 +00:00
|
|
|
colorChanged(elem);
|
|
|
|
updateReferences(elem);
|
|
|
|
}
|
2019-02-21 08:26:26 +00:00
|
|
|
});
|
2019-01-18 05:55:08 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|