Hello,
We upgraded the JavaScript library in our project to ArcGIS/core and vector tile layer labels are not loading properly as seen in the screenshot.
The issue has been resolved after creating VectorTileLayer and adding it to the map view object.
const layer = new VectorTileLayer({
portalItem: {
id: this.appSettingsService.appSettings.vectorTileLayer
},
visible: true
});
this.esriMap.add(layer, 0);
Thanks