Skip to content
Snippets Groups Projects

fix(vector-map): using state abbreviation instead of name if exists

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -163,14 +163,14 @@ export default class MapElement extends BaseMultiPolygon {
modificationStyle.setText(
new Text({
text: modificationText,
font: `${modification.fontSize}px Arial`,
font: `${modification.fontSize}pt Arial`,
textAlign: 'center',
textBaseline: 'middle',
fill: getFill({ color: '#000' }),
overflow: true,
}),
);
this.polygonsTexts.push(modification.name);
this.polygonsTexts.push(modificationText);
}
this.styles.push(modificationStyle);
});
Loading