diff --git a/index.html b/index.html index b80c3c3d..a0636f6c 100644 --- a/index.html +++ b/index.html @@ -1261,7 +1261,7 @@ Text shadow - + @@ -2098,13 +2098,6 @@ > Military - @@ -2154,13 +2147,6 @@ > Military - @@ -7888,7 +7874,7 @@ - + @@ -7915,7 +7901,7 @@ - + @@ -7933,7 +7919,7 @@ - + @@ -7948,7 +7934,7 @@ - + @@ -7960,7 +7946,7 @@ - + @@ -7969,11 +7955,11 @@ - - - - - + + + + + @@ -7994,7 +7980,7 @@ - + @@ -8003,7 +7989,7 @@ - + @@ -8021,7 +8007,7 @@ - + @@ -8032,8 +8018,8 @@ - - + + @@ -8356,7 +8342,6 @@ - @@ -8373,7 +8358,6 @@ - @@ -8405,7 +8389,6 @@ - diff --git a/main.js b/main.js index 2b57c5a7..1349b053 100644 --- a/main.js +++ b/main.js @@ -527,12 +527,6 @@ function invokeActiveZooming() { }); } - // turn off ocean pattern if scale is big (improves performance) - oceanPattern - .select("rect") - .attr("fill", scale > 10 ? "#fff" : "url(#oceanic)") - .attr("opacity", scale > 10 ? 0.2 : null); - // change states halo width if (!customization && !isOptimized) { const desired = +statesHalo.attr("data-width"); diff --git a/modules/renderers/draw-burg-icons.js b/modules/renderers/draw-burg-icons.js index 503b927e..f61ad23b 100644 --- a/modules/renderers/draw-burg-icons.js +++ b/modules/renderers/draw-burg-icons.js @@ -53,10 +53,8 @@ function drawBurgIcon(burg) { } function createIconGroups() { - const defaultIconStyle = style.burgIcons.town || Object.values(style.burgIcons)[0]; - const defaultAnchorStyle = style.anchors.town || Object.values(style.anchors)[0]; - // save existing styles and remove all groups + const defaultIconStyle = style.burgIcons.town || Object.values(style.burgIcons)[0]; document.querySelectorAll("g#burgIcons > g").forEach(group => { const groupStyle = Object.keys(defaultIconStyle).reduce((acc, key) => { acc[key] = group.getAttribute(key); @@ -66,6 +64,7 @@ function createIconGroups() { group.remove(); }); + const defaultAnchorStyle = style.anchors.town || Object.values(style.anchors)[0]; document.querySelectorAll("g#anchors > g").forEach(group => { const groupStyle = Object.keys(defaultAnchorStyle).reduce((acc, key) => { acc[key] = group.getAttribute(key); diff --git a/modules/ui/editors.js b/modules/ui/editors.js index eb31c634..1cdb4a6f 100644 --- a/modules/ui/editors.js +++ b/modules/ui/editors.js @@ -129,29 +129,19 @@ function applySorting(headers) { } function moveBurgToGroup(id, g) { - const label = document.querySelector("#burgLabels [data-id='" + id + "']"); - const icon = document.querySelector("#burgIcons [data-id='" + id + "']"); - const anchor = document.querySelector("#anchors [data-id='" + id + "']"); - if (!label || !icon) { - ERROR && console.error(`Cannot find label or icon elements for id ${id}`); - return; - } + const label = document.querySelector(`#burgLabels [data-id='${id}']`); + const icon = document.querySelector(`#burgIcons [data-id='${id}']`); + const anchor = document.querySelector(`#anchors [data-id='${id}']`); + if (!label || !icon) return tip("Cannot find label or icon for burg " + id, false, "error"); document.querySelector("#burgLabels > #" + g).appendChild(label); document.querySelector("#burgIcons > #" + g).appendChild(icon); + if (anchor) document.querySelector("#anchors > #" + g).appendChild(anchor); - const iconSize = icon.parentNode.getAttribute("size"); - icon.setAttribute("r", iconSize); - label.setAttribute("dy", `${iconSize * -1.5}px`); - - if (anchor) { - document.querySelector("#anchors > #" + g).appendChild(anchor); - const anchorSize = +anchor.parentNode.getAttribute("size"); - anchor.setAttribute("width", anchorSize); - anchor.setAttribute("height", anchorSize); - anchor.setAttribute("x", rn(pack.burgs[id].x - anchorSize * 0.47, 2)); - anchor.setAttribute("y", rn(pack.burgs[id].y - anchorSize * 0.47, 2)); - } + icon.setAttribute("href", icon.parentElement.dataset.icon); + const {dx, dy} = label.parentElement.dataset; + dx ? label.setAttribute("dx", dx + "em") : label.removeAttribute("dx"); + dy ? label.setAttribute("dy", dy + "em") : label.removeAttribute("dy"); } function moveAllBurgsToGroup(fromGroup, toGroup) { diff --git a/modules/ui/style-presets.js b/modules/ui/style-presets.js index 3dd7c4bf..e022da86 100644 --- a/modules/ui/style-presets.js +++ b/modules/ui/style-presets.js @@ -74,17 +74,17 @@ async function fetchSystemPreset(preset) { function applyStyle(styleJSON) { for (const selector in styleJSON) { if (selector.startsWith("#burgLabels")) { - const group = selector.replace("#burgLabels > g#", ""); + const group = selector.split("#").pop(); style.burgLabels[group] = styleJSON[selector]; } if (selector.startsWith("#burgIcons")) { - const group = selector.replace("#burgIcons > g#", ""); + const group = selector.split("#").pop(); style.burgIcons[group] = styleJSON[selector]; } if (selector.startsWith("#anchors")) { - const group = selector.replace("#anchors > g#", ""); + const group = selector.split("#").pop(); style.anchors[group] = styleJSON[selector]; } @@ -142,6 +142,10 @@ async function changeStyle(desiredPreset) { localStorage.setItem("presetStyle", presetName); applyStyleWithUiRefresh(style); if (layerIsOn("toggleBurgIcons")) drawBurgIcons(); + if (layerIsOn("toggleLabels")) { + drawBurgLabels(); + drawStateLabels(); + } } function applyStyleWithUiRefresh(style) { diff --git a/modules/ui/style.js b/modules/ui/style.js index 2eb60c33..471458d9 100644 --- a/modules/ui/style.js +++ b/modules/ui/style.js @@ -271,7 +271,7 @@ function selectStyleElement() { styleStrokeInput.value = styleStrokeOutput.value = el.attr("stroke") || "#3a3a3a"; styleStrokeWidthInput.value = el.attr("stroke-width") || 0; styleLetterSpacingInput.value = el.attr("letter-spacing") || 0; - styleShadowInput.value = el.style("text-shadow") || "white 0 0 4px"; + styleShadowInput.value = el.style("text-shadow") || ""; styleFont.style.display = "block"; styleSelectFont.value = el.attr("font-family"); @@ -769,10 +769,7 @@ stylePopulationUrbanStrokeInput.on("input", e => { }); styleBurgIconsIcon.on("change", e => { - getEl() - .attr("data-icon", e.target.value) - .selectAll("use") - .attr("href", d => e.target.value); + getEl().attr("data-icon", e.target.value).selectAll("use").attr("href", e.target.value); }); styleBurgIconsIconSize.on("input", e => { diff --git a/styles/ancient.json b/styles/ancient.json index 49fd6334..7676cd5c 100644 --- a/styles/ancient.json +++ b/styles/ancient.json @@ -162,11 +162,11 @@ "filter": null }, "#sea_island": { - "opacity": 0.5, - "stroke": "#1f3846", - "stroke-width": 0.7, - "filter": "url(#dropShadow)", - "auto-filter": 1 + "opacity": 1, + "stroke": "#c1a884", + "stroke-width": 0.3, + "filter": "none", + "auto-filter": 0 }, "#lake_island": { "opacity": 1, @@ -194,7 +194,7 @@ "#roads": { "opacity": 0.7, "stroke": "#8d502a", - "stroke-width": 1, + "stroke-width": 0.8, "stroke-dasharray": 3, "stroke-linecap": "inherit", "filter": "", @@ -202,7 +202,7 @@ }, "#trails": { "opacity": 0.7, - "stroke": "#924217", + "stroke": "#8d502a", "stroke-width": 0.5, "stroke-dasharray": "1 2", "stroke-linecap": "butt", @@ -211,12 +211,10 @@ }, "#searoutes": { "opacity": 0.8, - "stroke": "#b16925", - "stroke-width": 0.8, - "stroke-dasharray": "1 2", - "stroke-linecap": "round", - "filter": null, - "mask": null + "stroke": "#aa7658", + "stroke-width": 0.6, + "stroke-dasharray": "2 2", + "stroke-linecap": "butt" }, "#statesBody": { "opacity": 0.2, @@ -336,7 +334,7 @@ "data-size": 6, "font-size": 6, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#capital": { "data-icon": "#icon-watabou-capital", @@ -350,6 +348,13 @@ "stroke-linecap": "round", "stroke-linejoin": "round" }, + "#anchors > g#capital": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1.5, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#city": { "opacity": 0.9, "fill": "#3e3e4b", @@ -358,12 +363,12 @@ "data-size": 5, "font-size": 5, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#city": { "data-icon": "#icon-watabou-city", "opacity": 1, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -372,6 +377,13 @@ "stroke-linecap": "butt", "stroke-linejoin": "round" }, + "#anchors > g#city": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1.5, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#fort": { "opacity": 0.9, "fill": "#3e3e4b", @@ -380,12 +392,12 @@ "data-size": 3, "font-size": 3, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#fort": { "data-icon": "#icon-watabou-fort", "opacity": 1, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -394,6 +406,13 @@ "stroke-linecap": "butt", "stroke-linejoin": "round" }, + "#anchors > g#fort": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#monastery": { "opacity": 0.9, "fill": "#3e3e4b", @@ -402,12 +421,12 @@ "data-size": 2, "font-size": 2, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#monastery": { "data-icon": "#icon-watabou-monastery", "opacity": 1, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -416,6 +435,13 @@ "stroke-linecap": "butt", "stroke-linejoin": "round" }, + "#anchors > g#monastery": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#caravanserai": { "opacity": 0.9, "fill": "#3e3e4b", @@ -424,12 +450,12 @@ "data-size": 2, "font-size": 2, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#caravanserai": { "data-icon": "#icon-watabou-caravanserai", "opacity": 1, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -438,6 +464,13 @@ "stroke-linecap": "butt", "stroke-linejoin": "round" }, + "#anchors > g#caravanserai": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#trading_post": { "opacity": 0.9, "fill": "#3e3e4b", @@ -446,12 +479,12 @@ "data-size": 2, "font-size": 2, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#trading_post": { "data-icon": "#icon-watabou-post", "opacity": 1, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -460,6 +493,13 @@ "stroke-linecap": "butt", "stroke-linejoin": "round" }, + "#anchors > g#trading_post": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#village": { "opacity": 0.9, "fill": "#3e3e4b", @@ -468,12 +508,12 @@ "data-size": 3, "font-size": 3, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#village": { "data-icon": "#icon-watabou-village", "opacity": 1, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -482,6 +522,13 @@ "stroke-linecap": "butt", "stroke-linejoin": "round" }, + "#anchors > g#village": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#hamlet": { "opacity": 0.9, "fill": "#3e3e4b", @@ -490,12 +537,12 @@ "data-size": 2, "font-size": 2, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#hamlet": { "data-icon": "#icon-watabou-hamlet", "opacity": 0.9, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -504,6 +551,13 @@ "stroke-linecap": "butt", "stroke-linejoin": "round" }, + "#anchors > g#hamlet": { + "opacity": 1, + "fill": "#EBE8DF", + "font-size": 1, + "stroke": "#4D3F36", + "stroke-width": 1 + }, "#burgLabels > g#town": { "opacity": 0.9, "fill": "#3e3e4b", @@ -512,12 +566,12 @@ "data-size": 3, "font-size": 3, "font-family": "UnifrakturMaguntia", - "data-dy": 0.8 + "data-dy": 0.85 }, "#burgIcons > g#town": { "data-icon": "#icon-watabou-town", "opacity": 1, - "fill": "#ffffff", + "fill": "#E59189", "fill-opacity": 1, "font-size": 2, "stroke": "#3e3e4b", @@ -528,10 +582,10 @@ }, "#anchors > g#town": { "opacity": 1, - "fill": "#ffffff", + "fill": "#EBE8DF", "font-size": 1, - "stroke": "#3e3e4b", - "stroke-width": 1.2 + "stroke": "#4D3F36", + "stroke-width": 1 }, "#labels > #states": { "opacity": 1, diff --git a/styles/atlas.json b/styles/atlas.json index c24b02bc..443fbaae 100644 --- a/styles/atlas.json +++ b/styles/atlas.json @@ -200,151 +200,6 @@ "filter": null, "mask": null }, - "#burgLabels > g#capital": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: #ffffff 0px 0px 4px", - "letter-spacing": 0, - "data-size": 8, - "font-size": 8, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#capital": { - "data-icon": "#icon-square", - "opacity": 1, - "fill": "#000000", - "fill-opacity": 1, - "font-size": 2.5, - "stroke": "#ffffff", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#capital": { - "opacity": 1, - "fill": "#000000", - "font-size": 2.5, - "stroke": "#ffffff", - "stroke-width": 1.5 - }, - "#burgLabels > g#city": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: #ffffff 0px 0px 4px", - "letter-spacing": 0, - "data-size": 6, - "font-size": 6, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#city": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#000000", - "fill-opacity": 1, - "font-size": 2, - "stroke": "#ffffff", - "stroke-width": 10, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#city": { - "opacity": 1, - "fill": "#000000", - "font-size": 2, - "stroke": "#ffffff", - "stroke-width": 1.5 - }, - "#burgLabels > g#town": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: #ffffff 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#town": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#000000", - "fill-opacity": 1, - "font-size": 1.5, - "stroke": "#ffffff", - "stroke-width": 8, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#town": { - "opacity": 1, - "fill": "#000000", - "font-size": 1.5, - "stroke": "#ffffff", - "stroke-width": 1.5 - }, - "#burgLabels > g#village": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: #ffffff 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#village": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#000000", - "fill-opacity": 1, - "font-size": 1, - "stroke": "#ffffff", - "stroke-width": 6, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#village": { - "opacity": 1, - "fill": "#000000", - "font-size": 1, - "stroke": "#ffffff", - "stroke-width": 1.5 - }, - "#burgLabels > g#hamlet": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: #ffffff 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2, - "font-size": 2, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#hamlet": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#000000", - "fill-opacity": 1, - "font-size": 0.7, - "stroke": "#ffffff", - "stroke-width": 6, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#hamlet": { - "opacity": 1, - "fill": "#000000", - "font-size": 0.7, - "stroke": "#ffffff", - "stroke-width": 1.5 - }, "#trails": { "opacity": 1, "stroke": "#9f5122", @@ -473,159 +328,30 @@ "data-y": 93, "data-columns": 8 }, - "#burgLabels > #capital": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 7, - "font-size": 7, - "font-family": "Amarante" - }, - "#burgIcons > #capital": { - "opacity": 1, - "fill": "#000000", - "fill-opacity": 0.7, - "size": 1.5, - "stroke": "#000000", - "stroke-width": 0.3, - "stroke-dasharray": "", - "stroke-linecap": "round" - }, - "#anchors > #capital": { - "opacity": 1, - "fill": "#ffffff", - "size": 3, - "stroke": "#3e3e4b", - "stroke-width": 1.4 - }, "#burgLabels > #city": { "opacity": 1, "fill": "#000000", "style": "text-shadow: white 0px 0px 4px", "letter-spacing": 0, - "data-size": 5, - "font-size": 5, - "font-family": "Amarante" + "data-size": 6, + "font-size": 6, + "font-family": "Amarante", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#000000", "fill-opacity": 0.7, - "size": 1, + "font-size": 2, "stroke": "#000000", - "stroke-width": 0.24, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "round" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #fort": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Amarante" - }, - "#burgIcons > #fort": { - "opacity": 1, - "fill": "#000000", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#000000", - "stroke-width": 0.24, - "stroke-dasharray": "", - "stroke-linecap": "round" - }, - "#anchors > #fort": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #monastery": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Amarante" - }, - "#burgIcons > #monastery": { - "opacity": 1, - "fill": "#000000", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#000000", - "stroke-width": 0.24, - "stroke-dasharray": "", - "stroke-linecap": "round" - }, - "#anchors > #monastery": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #caravanserai": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Amarante" - }, - "#burgIcons > #caravanserai": { - "opacity": 1, - "fill": "#000000", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#000000", - "stroke-width": 0.24, - "stroke-dasharray": "", - "stroke-linecap": "round" - }, - "#anchors > #caravanserai": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #trading_post": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Amarante" - }, - "#burgIcons > #trading_post": { - "opacity": 1, - "fill": "#000000", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#000000", - "stroke-width": 0.24, - "stroke-dasharray": "", - "stroke-linecap": "round" - }, - "#anchors > #trading_post": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, + "font-size": 2, "stroke": "#3e3e4b", "stroke-width": 1.2 }, @@ -636,48 +362,23 @@ "letter-spacing": 0, "data-size": 4, "font-size": 4, - "font-family": "Amarante" + "font-family": "Amarante", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 1, "fill": "#000000", "fill-opacity": 0.7, - "size": 0.8, + "font-size": 1.2, "stroke": "#000000", - "stroke-width": 0.24, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "round" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1.6, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #town": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Amarante" - }, - "#burgIcons > #town": { - "opacity": 1, - "fill": "#000000", - "fill-opacity": 0.7, - "size": 0.5, - "stroke": "#000000", - "stroke-width": 0.12, - "stroke-dasharray": "", - "stroke-linecap": "round" - }, - "#anchors > #town": { - "opacity": 1, - "fill": "#ffffff", - "size": 1, + "font-size": 1.2, "stroke": "#3e3e4b", "stroke-width": 1.2 }, diff --git a/styles/clean.json b/styles/clean.json index 800c06ff..c8345a6e 100644 --- a/styles/clean.json +++ b/styles/clean.json @@ -337,22 +337,23 @@ "letter-spacing": 0, "data-size": 7, "font-size": 7, - "font-family": "Arial" + "font-family": "Arial", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 1, + "font-size": 1, "stroke": "#3e3e4b", - "stroke-width": 0.24, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 2, + "font-size": 1, "stroke": "#303030", "stroke-width": 1.7 }, @@ -363,24 +364,25 @@ "letter-spacing": 0, "data-size": 3, "font-size": 3, - "font-family": "Arial" + "font-family": "Arial", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 0.5, + "font-size": 0.5, "stroke": "#3e3e4b", - "stroke-width": 0.12, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1, + "font-size": 0.5, "stroke": "#3e3e4b", - "stroke-width": 1.06 + "stroke-width": 1 }, "#labels > #states": { "opacity": 1, diff --git a/styles/cyberpunk.json b/styles/cyberpunk.json index 06f9a7be..f7f3a038 100644 --- a/styles/cyberpunk.json +++ b/styles/cyberpunk.json @@ -328,32 +328,6 @@ "data-y": 93, "data-columns": 8 }, - "#burgLabels > #capital": { - "opacity": 1, - "fill": "#ffffff", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 10, - "font-size": 10, - "font-family": "Orbitron" - }, - "#burgIcons > #capital": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 2.5, - "stroke": "#444444", - "stroke-width": 0.3, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #capital": { - "opacity": 1, - "fill": "#ffffff", - "size": 5, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, "#burgLabels > #city": { "opacity": 1, "fill": "#ffffff", @@ -361,178 +335,23 @@ "letter-spacing": 0, "data-size": 8, "font-size": 8, - "font-family": "Orbitron" + "font-family": "Orbitron", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 2, + "font-size": 2, "stroke": "#444444", - "stroke-width": 0.25, + "stroke-width": 12, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 4, - "stroke": "#3e3e4b", - "stroke-width": 1 - }, - "#burgLabels > #fort": { - "opacity": 1, - "fill": "#ffffff", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Orbitron" - }, - "#burgIcons > #fort": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 1, - "stroke": "#444444", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #fort": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1 - }, - "#burgLabels > #monastery": { - "opacity": 1, - "fill": "#ffffff", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Orbitron" - }, - "#burgIcons > #monastery": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 1, - "stroke": "#444444", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #monastery": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1 - }, - "#burgLabels > #caravanserai": { - "opacity": 1, - "fill": "#ffffff", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Orbitron" - }, - "#burgIcons > #caravanserai": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 1, - "stroke": "#444444", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #caravanserai": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1 - }, - "#burgLabels > #trading_post": { - "opacity": 1, - "fill": "#ffffff", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Orbitron" - }, - "#burgIcons > #trading_post": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 1, - "stroke": "#444444", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #trading_post": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1 - }, - "#burgLabels > #village": { - "opacity": 1, - "fill": "#ffffff", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Orbitron" - }, - "#burgIcons > #village": { - "opacity": 0.95, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.8, - "stroke": "#444444", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #village": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.6, - "stroke": "#3e3e4b", - "stroke-width": 1 - }, - "#burgLabels > #hamlet": { - "opacity": 1, - "fill": "#ffffff", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2, "font-size": 2, - "font-family": "Orbitron" - }, - "#burgIcons > #hamlet": { - "opacity": 0.95, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.6, - "stroke": "#444444", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #hamlet": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.2, "stroke": "#3e3e4b", "stroke-width": 1 }, @@ -543,22 +362,23 @@ "letter-spacing": 0, "data-size": 3, "font-size": 3, - "font-family": "Orbitron" + "font-family": "Orbitron", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 0.95, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 0.8, + "font-size": 0.8, "stroke": "#3e3e4b", - "stroke-width": 0.2, + "stroke-width": 12, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1.6, + "font-size": 0.8, "stroke": "#3e3e4b", "stroke-width": 1 }, diff --git a/styles/darkSeas.json b/styles/darkSeas.json index 7bd891fa..d466bf54 100644 --- a/styles/darkSeas.json +++ b/styles/darkSeas.json @@ -317,31 +317,6 @@ "data-y": 93, "data-columns": 8 }, - "#burgLabels > #capital": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 9, - "font-size": 9, - "font-family": "Lugrasimo" - }, - "#burgIcons > #capital": { - "opacity": 0.7, - "fill": "#000000", - "size": 2.25, - "stroke": "#000000", - "stroke-width": 0, - "stroke-dasharray": 0, - "stroke-linecap": "butt" - }, - "#anchors > #capital": { - "opacity": 1, - "fill": "#ffffff", - "size": 4.5, - "stroke": "#3e3e4b", - "stroke-width": 1.4 - }, "#burgLabels > #city": { "opacity": 1, "fill": "#000000", @@ -349,12 +324,13 @@ "letter-spacing": 0, "data-size": 7, "font-size": 7, - "font-family": "Lugrasimo" + "font-family": "Lugrasimo", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 0.7, "fill": "#000000", - "size": 1.75, + "font-size": 2, "stroke": "#000000", "stroke-width": 0, "stroke-dasharray": 0, @@ -363,157 +339,7 @@ "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 3.5, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #fort": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Lugrasimo" - }, - "#burgIcons > #fort": { - "opacity": 0.7, - "fill": "#000000", - "size": 1, - "stroke": "#000000", - "stroke-width": 0, - "stroke-dasharray": 0, - "stroke-linecap": "butt" - }, - "#anchors > #fort": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #monastery": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Lugrasimo" - }, - "#burgIcons > #monastery": { - "opacity": 0.7, - "fill": "#000000", - "size": 1, - "stroke": "#000000", - "stroke-width": 0, - "stroke-dasharray": 0, - "stroke-linecap": "butt" - }, - "#anchors > #monastery": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #caravanserai": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Lugrasimo" - }, - "#burgIcons > #caravanserai": { - "opacity": 0.7, - "fill": "#000000", - "size": 1, - "stroke": "#000000", - "stroke-width": 0, - "stroke-dasharray": 0, - "stroke-linecap": "butt" - }, - "#anchors > #caravanserai": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #trading_post": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Lugrasimo" - }, - "#burgIcons > #trading_post": { - "opacity": 0.7, - "fill": "#000000", - "size": 1, - "stroke": "#000000", - "stroke-width": 0, - "stroke-dasharray": 0, - "stroke-linecap": "butt" - }, - "#anchors > #trading_post": { - "opacity": 1, - "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #village": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Lugrasimo" - }, - "#burgIcons > #village": { - "opacity": 0.7, - "fill": "#000000", - "size": 0.75, - "stroke": "#000000", - "stroke-width": 0, - "stroke-dasharray": 0, - "stroke-linecap": "butt" - }, - "#anchors > #village": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.5, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #hamlet": { - "opacity": 1, - "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2, "font-size": 2, - "font-family": "Lugrasimo" - }, - "#burgIcons > #hamlet": { - "opacity": 0.7, - "fill": "#000000", - "size": 0.5, - "stroke": "#000000", - "stroke-width": 0, - "stroke-dasharray": 0, - "stroke-linecap": "butt" - }, - "#anchors > #hamlet": { - "opacity": 1, - "fill": "#ffffff", - "size": 1, "stroke": "#3e3e4b", "stroke-width": 1.2 }, @@ -524,12 +350,13 @@ "letter-spacing": 0, "data-size": 5, "font-size": 5, - "font-family": "Lugrasimo" + "font-family": "Lugrasimo", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 0.7, "fill": "#000000", - "size": 1.25, + "font-size": 1.25, "stroke": "#000000", "stroke-width": 0, "stroke-dasharray": 0, @@ -538,7 +365,7 @@ "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 2, + "font-size": 1.25, "stroke": "#3e3e4b", "stroke-width": 1.2 }, diff --git a/styles/default.json b/styles/default.json index 4b6749cb..1f1e4086 100644 --- a/styles/default.json +++ b/styles/default.json @@ -353,7 +353,7 @@ "#anchors > g#capital": { "opacity": 1, "fill": "#ffffff", - "font-size": 2, + "font-size": 1.9, "stroke": "#3e3e4b", "stroke-width": 1.2 }, diff --git a/styles/gloom.json b/styles/gloom.json index f431d5a9..ec05c4bf 100644 --- a/styles/gloom.json +++ b/styles/gloom.json @@ -201,151 +201,6 @@ "filter": null, "mask": null }, - "#burgLabels > g#capital": { - "opacity": 1, - "fill": "#2a2a33", - "style": "text-shadow: #4a4a4a 0px 0px 4px", - "letter-spacing": 0, - "data-size": 7, - "font-size": 7, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#capital": { - "data-icon": "#icon-square", - "opacity": 1, - "fill": "#2a2a33", - "fill-opacity": 0.9, - "font-size": 2, - "stroke": "#4a4a4a", - "stroke-width": 10, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#capital": { - "opacity": 1, - "fill": "#2a2a33", - "font-size": 2, - "stroke": "#4a4a4a", - "stroke-width": 1.2 - }, - "#burgLabels > g#city": { - "opacity": 1, - "fill": "#2a2a33", - "style": "text-shadow: #4a4a4a 0px 0px 4px", - "letter-spacing": 0, - "data-size": 5, - "font-size": 5, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#city": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#2a2a33", - "fill-opacity": 0.9, - "font-size": 1.5, - "stroke": "#4a4a4a", - "stroke-width": 8, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#city": { - "opacity": 1, - "fill": "#2a2a33", - "font-size": 1.5, - "stroke": "#4a4a4a", - "stroke-width": 1.2 - }, - "#burgLabels > g#town": { - "opacity": 1, - "fill": "#2a2a33", - "style": "text-shadow: #4a4a4a 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#town": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#2a2a33", - "fill-opacity": 0.9, - "font-size": 1, - "stroke": "#4a4a4a", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#town": { - "opacity": 1, - "fill": "#2a2a33", - "font-size": 1, - "stroke": "#4a4a4a", - "stroke-width": 1.2 - }, - "#burgLabels > g#village": { - "opacity": 1, - "fill": "#2a2a33", - "style": "text-shadow: #4a4a4a 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#village": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#2a2a33", - "fill-opacity": 0.9, - "font-size": 0.7, - "stroke": "#4a4a4a", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#village": { - "opacity": 1, - "fill": "#2a2a33", - "font-size": 0.7, - "stroke": "#4a4a4a", - "stroke-width": 1.2 - }, - "#burgLabels > g#hamlet": { - "opacity": 1, - "fill": "#2a2a33", - "style": "text-shadow: #4a4a4a 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2, - "font-size": 2, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#hamlet": { - "data-icon": "#icon-circle", - "opacity": 1, - "fill": "#2a2a33", - "fill-opacity": 0.9, - "font-size": 0.5, - "stroke": "#4a4a4a", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#hamlet": { - "opacity": 1, - "fill": "#2a2a33", - "font-size": 0.5, - "stroke": "#4a4a4a", - "stroke-width": 1.2 - }, "#trails": { "opacity": 1, "stroke": "#844017", @@ -479,52 +334,54 @@ "#burgLabels > #city": { "opacity": 1, "fill": "#3e3e4b", - "style": "text-shadow: white 0 0 2px", - "letter-spacing": 0, + "style": "text-shadow: white 0px 0px 2px", "data-size": 8, "font-size": 8, - "font-family": "Underdog" + "font-family": "Underdog", + "data-dy": -0.4 }, "#burgIcons > #city": { + "data-icon": "#icon-circle", "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 2, + "font-size": 2, "stroke": "#444444", - "stroke-width": 0.25, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 0.8, "fill": "#ffffff", - "size": 4, + "font-size": 2, "stroke": "#3e3e4b", "stroke-width": 1 }, "#burgLabels > #town": { "opacity": 1, "fill": "#3e3e4b", - "style": "text-shadow: none", - "letter-spacing": 0, + "style": "text-shadow: white 0px 0px 2px", "data-size": 4, "font-size": 4, - "font-family": "Underdog" + "font-family": "Underdog", + "data-dy": -0.4 }, "#burgIcons > #town": { + "data-icon": "#icon-circle", "opacity": 0.95, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 0.8, + "font-size": 0.8, "stroke": "#3e3e4b", - "stroke-width": 0.2, + "stroke-width": 9, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1.6, + "font-size": 0.8, "stroke": "#3e3e4b", "stroke-width": 1.2 }, diff --git a/styles/light.json b/styles/light.json index 535c12dc..c1ef88e8 100644 --- a/styles/light.json +++ b/styles/light.json @@ -200,267 +200,6 @@ "filter": null, "mask": null }, - "#burgLabels > g#capital": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 8, - "font-size": 8, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#capital": { - "data-icon": "#icon-square", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 2, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#capital": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 2, - "stroke": "#f9f2ea", - "stroke-width": 1.4 - }, - "#burgLabels > g#city": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 6, - "font-size": 6, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#city": { - "data-icon": "#icon-circle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 1.5, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#city": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 1.5, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, - "#burgLabels > g#fort": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#fort": { - "data-icon": "#icon-triangle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#fort": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, - "#burgLabels > g#monastery": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#monastery": { - "data-icon": "#icon-triangle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#monastery": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, - "#burgLabels > g#caravanserai": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#caravanserai": { - "data-icon": "#icon-triangle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#caravanserai": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, - "#burgLabels > g#trading_post": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#trading_post": { - "data-icon": "#icon-triangle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#trading_post": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, - "#burgLabels > g#village": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#village": { - "data-icon": "#icon-circle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 0.7, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#village": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 0.7, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, - "#burgLabels > g#hamlet": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2, - "font-size": 2, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#hamlet": { - "data-icon": "#icon-circle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 0.5, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#hamlet": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 0.5, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, - "#burgLabels > g#fort": { - "opacity": 0.9, - "fill": "#3e3e4b", - "style": "text-shadow: #f9f2ea 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#fort": { - "data-icon": "#icon-castle", - "opacity": 0.9, - "fill": "#3e3e4b", - "fill-opacity": 0.8, - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#fort": { - "opacity": 0.9, - "fill": "#3e3e4b", - "font-size": 1, - "stroke": "#f9f2ea", - "stroke-width": 1.2 - }, "#trails": { "opacity": 0.8, "stroke": "#95481a", @@ -596,22 +335,23 @@ "letter-spacing": 0, "data-size": 8, "font-size": 8, - "font-family": "IM Fell English" + "font-family": "IM Fell English", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 3, + "font-size": 2, "stroke": "#3e3e4b", - "stroke-width": 0.4, - "stroke-dasharray": "0.5 0.25", + "stroke-width": 12, + "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 5.5, + "font-size": 2, "stroke": "#3e3e4b", "stroke-width": 1.2 }, @@ -622,22 +362,23 @@ "letter-spacing": 0, "data-size": 4, "font-size": 4, - "font-family": "IM Fell English" + "font-family": "IM Fell English", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 1.2, + "font-size": 1, "stroke": "#3e3e4b", - "stroke-width": 0.2, + "stroke-width": 12, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 2.2, + "font-size": 1, "stroke": "#3e3e4b", "stroke-width": 1.2 }, diff --git a/styles/monochrome.json b/styles/monochrome.json index 641bcb8d..ba7b4bcb 100644 --- a/styles/monochrome.json +++ b/styles/monochrome.json @@ -327,52 +327,52 @@ "#burgLabels > #city": { "opacity": 1, "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", "letter-spacing": 0, "data-size": 7, "font-size": 7, - "font-family": "Courier New" + "font-family": "Courier New", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 1, + "font-size": 1, "stroke": "#3e3e4b", - "stroke-width": 0.24, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 2, + "font-size": 1, "stroke": "#3e3e4b", "stroke-width": 1.2 }, "#burgLabels > #town": { "opacity": 1, "fill": "#000000", - "style": "text-shadow: white 0px 0px 4px", "letter-spacing": 0, "data-size": 4, "font-size": 4, - "font-family": "Courier New" + "font-family": "Courier New", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 0.5, + "font-size": 0.5, "stroke": "#3e3e4b", - "stroke-width": 0.12, + "stroke-width": 12, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1, + "font-size": 0.5, "stroke": "#3e3e4b", "stroke-width": 1.2 }, diff --git a/styles/night.json b/styles/night.json index 9f31b6b4..e5d75fb2 100644 --- a/styles/night.json +++ b/styles/night.json @@ -335,22 +335,23 @@ "letter-spacing": 0, "data-size": 8, "font-size": 8, - "font-family": "Courier New" + "font-family": "Courier New", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 2.1, + "font-size": 2, "stroke": "#000000", - "stroke-width": 0.2, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 4.2, + "font-size": 2, "stroke": "#000000", "stroke-width": 1.46 }, @@ -359,24 +360,25 @@ "fill": "#ffffff", "style": "text-shadow: black 0px 0px 4px", "letter-spacing": 0, - "data-size": 4.28, - "font-size": 4.28, - "font-family": "Courier New" + "data-size": 4, + "font-size": 4, + "font-family": "Courier New", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 0.8, + "font-size": 0.8, "stroke": "#000000", - "stroke-width": 0.1, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1.6, + "font-size": 0.8, "stroke": "#000000", "stroke-width": 1.53 }, diff --git a/styles/pale.json b/styles/pale.json index 8fc93859..1d49a068 100644 --- a/styles/pale.json +++ b/styles/pale.json @@ -200,354 +200,6 @@ "filter": null, "mask": null }, - "#burgLabels > g#capital": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 7, - "font-size": 7, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#capital": { - "data-icon": "#icon-square", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 2, - "stroke": "#f4f2f0", - "stroke-width": 10, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#capital": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 2, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#city": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 5, - "font-size": 5, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#city": { - "data-icon": "#icon-circle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1.5, - "stroke": "#f4f2f0", - "stroke-width": 8, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#city": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1.5, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#town": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#town": { - "data-icon": "#icon-circle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#town": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#capital": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 8, - "font-size": 8, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#capital": { - "data-icon": "#icon-square", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 2, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#capital": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 2, - "stroke": "#f4f2f0", - "stroke-width": 1.4 - }, - "#burgLabels > g#city": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 6, - "font-size": 6, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#city": { - "data-icon": "#icon-circle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1.5, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#city": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1.5, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#fort": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#fort": { - "data-icon": "#icon-triangle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#fort": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#monastery": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#monastery": { - "data-icon": "#icon-triangle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#monastery": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#caravanserai": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#caravanserai": { - "data-icon": "#icon-triangle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#caravanserai": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#trading_post": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 4, - "font-size": 4, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#trading_post": { - "data-icon": "#icon-triangle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#trading_post": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#village": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#village": { - "data-icon": "#icon-circle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 0.7, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#village": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 0.7, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#hamlet": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2, - "font-size": 2, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#hamlet": { - "data-icon": "#icon-circle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 0.5, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#hamlet": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 0.5, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, - "#burgLabels > g#town": { - "opacity": 0.8, - "fill": "#4a4a4a", - "style": "text-shadow: #f4f2f0 0px 0px 4px", - "letter-spacing": 0, - "data-size": 5, - "font-size": 5, - "font-family": "Almendra SC", - "data-dy": -0.4 - }, - "#burgIcons > g#town": { - "data-icon": "#icon-circle", - "opacity": 0.8, - "fill": "#4a4a4a", - "fill-opacity": 0.7, - "font-size": 1.2, - "stroke": "#f4f2f0", - "stroke-width": 12, - "stroke-dasharray": null, - "stroke-linecap": "butt", - "stroke-linejoin": "round" - }, - "#anchors > g#town": { - "opacity": 0.8, - "fill": "#4a4a4a", - "font-size": 1.2, - "stroke": "#f4f2f0", - "stroke-width": 1.2 - }, "#trails": { "opacity": 0.9, "stroke": "#d06324", @@ -683,22 +335,23 @@ "letter-spacing": 0, "data-size": 7, "font-size": 7, - "font-family": "Arima Madurai" + "font-family": "Arima Madurai", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 1.5, + "font-size": 1.5, "stroke": "#4f4f4f", - "stroke-width": 0.2, + "stroke-width": 8, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 3, + "font-size": 1.5, "stroke": "#3e3e4b", "stroke-width": 1.2 }, @@ -709,22 +362,23 @@ "letter-spacing": 0, "data-size": 4, "font-size": 4, - "font-family": "Arima Madurai" + "font-family": "Arima Madurai", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 0.6, + "font-size": 0.6, "stroke": "#4f4f4f", - "stroke-width": 0.12, + "stroke-width": 10, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1.2, + "font-size": 0.6, "stroke": "#3e3e4b", "stroke-width": 1 }, diff --git a/styles/watercolor.json b/styles/watercolor.json index 454a0fba..5ece460e 100644 --- a/styles/watercolor.json +++ b/styles/watercolor.json @@ -328,32 +328,6 @@ "data-y": 93, "data-columns": 8 }, - "#burgLabels > #capital": { - "opacity": 1, - "fill": "#043449", - "style": "text-shadow: white 0px 0px 2px", - "letter-spacing": 0, - "data-size": 7, - "font-size": 7, - "font-family": "Comfortaa" - }, - "#burgIcons > #capital": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 1.5, - "stroke": "#3e3e4b", - "stroke-width": 0.3, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #capital": { - "opacity": 1, - "fill": "#ffffff", - "size": 3, - "stroke": "#3e3e4b", - "stroke-width": 1.4 - }, "#burgLabels > #city": { "opacity": 1, "fill": "#043449", @@ -361,178 +335,23 @@ "letter-spacing": 0, "data-size": 5, "font-size": 5, - "font-family": "Comfortaa" + "font-family": "Comfortaa", + "data-dy": -0.4 }, "#burgIcons > #city": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 1, + "font-size": 1, "stroke": "#3e3e4b", - "stroke-width": 0.24, + "stroke-width": 12, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #city": { "opacity": 1, "fill": "#ffffff", - "size": 2, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #fort": { - "opacity": 1, - "fill": "#3e3e4b", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Comfortaa" - }, - "#burgIcons > #fort": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#3e3e4b", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #fort": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #monastery": { - "opacity": 1, - "fill": "#3e3e4b", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Comfortaa" - }, - "#burgIcons > #monastery": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#3e3e4b", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #monastery": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #caravanserai": { - "opacity": 1, - "fill": "#3e3e4b", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Comfortaa" - }, - "#burgIcons > #caravanserai": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#3e3e4b", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #caravanserai": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #trading_post": { - "opacity": 1, - "fill": "#3e3e4b", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 3, - "font-size": 3, - "font-family": "Comfortaa" - }, - "#burgIcons > #trading_post": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.7, - "stroke": "#3e3e4b", - "stroke-width": 0.2, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #trading_post": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.4, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #village": { - "opacity": 1, - "fill": "#3e3e4b", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2.5, - "font-size": 2.5, - "font-family": "Comfortaa" - }, - "#burgIcons > #village": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.6, - "stroke": "#3e3e4b", - "stroke-width": 0.15, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #village": { - "opacity": 1, - "fill": "#ffffff", - "size": 1.2, - "stroke": "#3e3e4b", - "stroke-width": 1.2 - }, - "#burgLabels > #hamlet": { - "opacity": 1, - "fill": "#3e3e4b", - "style": "text-shadow: white 0px 0px 4px", - "letter-spacing": 0, - "data-size": 2, - "font-size": 2, - "font-family": "Comfortaa" - }, - "#burgIcons > #hamlet": { - "opacity": 1, - "fill": "#ffffff", - "fill-opacity": 0.7, - "size": 0.4, - "stroke": "#3e3e4b", - "stroke-width": 0.1, - "stroke-dasharray": "", - "stroke-linecap": "butt" - }, - "#anchors > #hamlet": { - "opacity": 1, - "fill": "#ffffff", - "size": 0.8, + "font-size": 1, "stroke": "#3e3e4b", "stroke-width": 1.2 }, @@ -543,22 +362,23 @@ "letter-spacing": 0, "data-size": 3, "font-size": 3, - "font-family": "Comfortaa" + "font-family": "Comfortaa", + "data-dy": -0.4 }, "#burgIcons > #town": { "opacity": 1, "fill": "#ffffff", "fill-opacity": 0.7, - "size": 0.5, + "font-size": 0.5, "stroke": "#3e3e4b", - "stroke-width": 0.12, + "stroke-width": 12, "stroke-dasharray": "", "stroke-linecap": "butt" }, "#anchors > #town": { "opacity": 1, "fill": "#ffffff", - "size": 1, + "font-size": 0.5, "stroke": "#3e3e4b", "stroke-width": 1.2 },