You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var textName = style.textName.substring(1, style.textName.length - 1);
10751
+
text = feature.getProperties().attributes ? feature.getProperties().attributes[textName] : feature.getProperties()[textName];
10752
+
if (text != null) {
10753
+
var texts = feature.getProperties().texts || [];
10754
+
texts.push(text);
10755
+
feature.setProperties({ texts: texts });
10756
+
}
10757
+
}
10758
+
return this.toOLTextStyle(style, text);
10745
10759
}
10746
10760
if (type === 'POINT' || type === 'MULTIPOINT') {
10747
10761
return this.toOLPointStyle(style);
@@ -52887,7 +52901,11 @@ var VectorTileStyles = function (_ol$Observable) {
52887
52901
if (!_olDebug2.default.supermap.VectorTileStyles.getDonotNeedServerCartoCss() && _olDebug2.default.supermap.VectorTileStyles.getCartoShaders()[layerName]) {
0 commit comments