.net core 3.1 Wpf application use Esri.ArcGISRuntime.WPF v100.7.0., tries to view vector tile from own tile server, but nothing displays.
my code:
ArcGISVectorTiledLayer vectorTiledLayer = new ArcGISVectorTiledLayer(uri);
var basemap = new Basemap(vectorTiledLayer);
Map map = new Map(basemap);
MapView.Map = map;
Similar code on javascript works fine.
Can you help me?