mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-18 10:01:23 +01:00
style(burgs): some presets change, new icons
This commit is contained in:
parent
d6335b034b
commit
e80c98aea3
6 changed files with 320 additions and 206 deletions
17
index.html
17
index.html
|
|
@ -1065,10 +1065,12 @@
|
|||
<option value="#icon-circle">Circle</option>
|
||||
<option value="#icon-square">Square</option>
|
||||
<option value="#icon-triangle">Triangle</option>
|
||||
<option value="#icon-cross">Cross</option>
|
||||
<option value="#icon-star">Star</option>
|
||||
<option value="#icon-circled">Circled</option>
|
||||
<option value="#icon-squared">Squared</option>
|
||||
<option value="#icon-star-circled">Star circled</option>
|
||||
<option value="#icon-star-circled-empty">Star circled empty</option>
|
||||
<option value="#icon-star-squared">Star squared</option>
|
||||
<option value="#icon-watabou-capital">Watabou capital</option>
|
||||
<option value="#icon-watabou-city">Watabou city</option>
|
||||
|
|
@ -7849,25 +7851,36 @@
|
|||
<polygon points="0,-50 50,50 -50,50" />
|
||||
</symbol>
|
||||
|
||||
<symbol id="icon-cross" viewBox="0 0 100 100" width="1em" height="1em" overflow="visible">
|
||||
<polygon points="-15,-50 15,-50 15,-15 50,-15 50,15 15,15 15,50 -15,50 -15,15 -50,15 -50,-15 -15,-15" />
|
||||
</symbol>
|
||||
|
||||
<symbol id="icon-star" viewBox="0 0 100 100" width="1em" height="1em" overflow="visible">
|
||||
<polygon points="0,-50 15,-15 50,-15 20,15 30,50 0,30 -30,50 -20,15 -50,-15 -15,-15" />
|
||||
</symbol>
|
||||
|
||||
<symbol id="icon-circled" viewBox="0 0 100 100" width="1em" height="1em" overflow="visible">
|
||||
<circle cx="0" cy="0" r="50" />
|
||||
<circle cx="0" cy="0" r="1" stroke-width="60"></circle>
|
||||
<circle cx="0" cy="0" r="10" stroke-width="44"></circle>
|
||||
</symbol>
|
||||
|
||||
<symbol id="icon-squared" viewBox="0 0 100 100" width="1em" height="1em" overflow="visible">
|
||||
<rect x="-50" y="-50" width="100" height="100" />
|
||||
<rect x="0" y="0" width="1" height="1" stroke-width="60"></rect>
|
||||
<rect x="-10" y="-10" width="20" height="20" stroke-width="45"></rect>
|
||||
</symbol>
|
||||
|
||||
<symbol id="icon-star-circled" viewBox="0 0 100 100" width="1em" height="1em" overflow="visible">
|
||||
<circle cx="0" cy="0" r="50" />
|
||||
<polygon points="0,-50 15,-15 50,-15 20,15 30,50 0,30 -30,50 -20,15 -50,-15 -15,-15" transform="scale(0.38 0.38)" stroke-width="50"></polygon>
|
||||
</symbol>
|
||||
|
||||
<symbol id="icon-star-circled-empty" viewBox="0 0 100 100" width="1em" height="1em" overflow="visible">
|
||||
<circle cx="0" cy="0" r="50" />
|
||||
<polygon points="0,-50 15,-15 50,-15 20,15 30,50 0,30 -30,50 -20,15 -50,-15 -15,-15" transform="scale(0.78 0.78)" />
|
||||
</symbol>
|
||||
|
||||
<polygon points="0,-50 15,-15 50,-15 20,15 30,50 0,30 -30,50 -20,15 -50,-15 -15,-15" transform="scale(0.38 0.38)" stroke-width="50"></polygon>
|
||||
|
||||
<symbol id="icon-star-squared" viewBox="0 0 100 100" width="1em" height="1em" overflow="visible">
|
||||
<rect x="-50" y="-50" width="100" height="100" />
|
||||
<polygon points="0,-50 15,-15 50,-15 20,15 30,50 0,30 -30,50 -20,15 -50,-15 -15,-15" transform="scale(0.78 0.78)" />
|
||||
|
|
|
|||
|
|
@ -252,16 +252,19 @@ function editBurg(id) {
|
|||
|
||||
function editGroupLabelStyle() {
|
||||
const g = elSelected.node().parentNode.id;
|
||||
closeDialogs(".stable");
|
||||
editStyle("labels", g);
|
||||
}
|
||||
|
||||
function editGroupIconStyle() {
|
||||
const g = elSelected.node().parentNode.id;
|
||||
closeDialogs(".stable");
|
||||
editStyle("burgIcons", g);
|
||||
}
|
||||
|
||||
function editGroupAnchorStyle() {
|
||||
const g = elSelected.node().parentNode.id;
|
||||
closeDialogs(".stable");
|
||||
editStyle("anchors", g);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -866,12 +866,12 @@ styleFontSize.on("change", function () {
|
|||
|
||||
styleFontPlus.on("click", function () {
|
||||
const current = +styleFontSize.value || 12;
|
||||
changeFontSize(getEl(), Math.min(current + 1, 999));
|
||||
changeFontSize(getEl(), Math.min(rn(current + 0.1, 1), 999));
|
||||
});
|
||||
|
||||
styleFontMinus.on("click", function () {
|
||||
const current = +styleFontSize.value || 12;
|
||||
changeFontSize(getEl(), Math.max(current - 1, 1));
|
||||
changeFontSize(getEl(), Math.max(rn(current - 0.1, 1), 0.1));
|
||||
});
|
||||
|
||||
function changeFontSize(el, size) {
|
||||
|
|
|
|||
|
|
@ -333,10 +333,10 @@
|
|||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 7,
|
||||
"font-size": 7,
|
||||
"data-size": 6,
|
||||
"font-size": 6,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
|
|
@ -374,7 +374,7 @@
|
|||
"fill-opacity": 0.7,
|
||||
"font-size": 1.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 8,
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
|
|
@ -394,10 +394,10 @@
|
|||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#fort": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
|
|
@ -423,10 +423,10 @@
|
|||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#monastery": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"data-icon": "#icon-cross",
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
|
|
@ -452,7 +452,7 @@
|
|||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#caravanserai": {
|
||||
"data-icon": "#icon-triangle",
|
||||
|
|
@ -481,7 +481,7 @@
|
|||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#trading_post": {
|
||||
"data-icon": "#icon-triangle",
|
||||
|
|
|
|||
|
|
@ -331,262 +331,311 @@
|
|||
"data-columns": 8
|
||||
},
|
||||
"#legendBox": {},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 2px",
|
||||
"data-size": 6,
|
||||
"font-size": 6,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1.5,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 2px",
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"letter-spacing": null,
|
||||
"data-size": 7,
|
||||
"font-size": 7,
|
||||
"font-family": "Underdog",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"data-icon": "#icon-watabou-capital",
|
||||
"font-size": 2,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1.9,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 2px",
|
||||
"letter-spacing": null,
|
||||
"data-size": 6,
|
||||
"font-size": 6,
|
||||
"font-family": "Underdog",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.7
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-city",
|
||||
"font-size": 2,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"letter-spacing": null,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -2
|
||||
},
|
||||
"#burgIcons > g#fort": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-fort",
|
||||
"font-size": 1.8,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"letter-spacing": null,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -1.8
|
||||
},
|
||||
"#burgIcons > g#monastery": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-monastery",
|
||||
"font-size": 2.3,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"letter-spacing": null,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -1
|
||||
},
|
||||
"#burgIcons > g#caravanserai": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-caravanserai",
|
||||
"font-size": 2.75,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"letter-spacing": null,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -1.2
|
||||
},
|
||||
"#burgIcons > g#trading_post": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-post",
|
||||
"font-size": 2,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"letter-spacing": null,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -0.6
|
||||
},
|
||||
"#burgIcons > g#village": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-village",
|
||||
"font-size": 1.7,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"letter-spacing": null,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Underdog",
|
||||
"data-dy": -0.4
|
||||
"data-dx": 0,
|
||||
"data-dy": -1
|
||||
},
|
||||
"#burgIcons > g#hamlet": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-hamlet",
|
||||
"font-size": 1.8,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.5,
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 2px",
|
||||
"letter-spacing": null,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Underdog",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.6
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-watabou-town",
|
||||
"font-size": 1.8,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#labels > #states": {
|
||||
"opacity": 1,
|
||||
|
|
|
|||
|
|
@ -328,262 +328,311 @@
|
|||
"data-y": 62.98,
|
||||
"data-columns": 8
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#3a3a3a",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 8,
|
||||
"font-size": 8,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 7,
|
||||
"font-size": 7,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-star-circled",
|
||||
"font-size": 2,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1.9,
|
||||
"font-size": 0.6,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 0.5,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#3a3a3a",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 6,
|
||||
"font-size": 6,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-circled",
|
||||
"font-size": 1.8,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.6,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.5,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#fort": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-square",
|
||||
"font-size": 0.7,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#monastery": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-cross",
|
||||
"font-size": 0.8,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"font-size": 0.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#caravanserai": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-triangle",
|
||||
"font-size": 0.7,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dy": -0.4
|
||||
"data-dx": null,
|
||||
"data-dy": -0.5
|
||||
},
|
||||
"#burgIcons > g#trading_post": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-triangle",
|
||||
"font-size": 0.7,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.2,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#village": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-circle",
|
||||
"font-size": 0.8,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.7,
|
||||
"font-size": 0.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.8,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#hamlet": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-circle",
|
||||
"font-size": 0.5,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.5,
|
||||
"font-size": 0.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
"stroke-width": 1.6,
|
||||
"filter": null
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"stroke": null,
|
||||
"stroke-width": null,
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "IM Fell English",
|
||||
"data-dx": null,
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"opacity": 1,
|
||||
"data-icon": "#icon-circle",
|
||||
"font-size": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": null,
|
||||
"fitler": null
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 0.6,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 2,
|
||||
"filter": null
|
||||
},
|
||||
"#labels > #states": {
|
||||
"opacity": 1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue