I am building an application using the ArcGIS Runtime SDK for .NET that displays buildings in a SceneView. None of the pre-built basemaps meet the design requirements for the application, so I want to implement my own basemap. I created a style using the Vector Tile Style Editor and have it save here on my organization's ArcGIS Online account.
Here's what I have tried:
ArcGISVectorTiledLayer vectorTiledLayer <SPAN class="operator token">=</SPAN> <SPAN class="keyword token">new</SPAN> <SPAN class="token class-name">ArcGISVectorTiledLayer</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="keyword token">new</SPAN> <SPAN class="token class-name">Uri</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"https://u-of-l.maps.arcgis.com/home/item.html?id=05dc0075e8f14b2faef45c4d29ee6de8"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
Scene<SPAN class="punctuation token">.</SPAN>Basemap <SPAN class="operator token">=</SPAN> <SPAN class="keyword token">new</SPAN> <SPAN class="token class-name">Basemap</SPAN><SPAN class="punctuation token">(</SPAN>vectorTiledLayer<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN></SPAN>
I tried using this arcticle to publish a WebTileLayer with the basemap, but since it's a vector, it didn't work
I have seen this article stating that Vector Tile Layers aren't supported in 3D, but since I am able to load the basemap in ArcGIS Pro AND the ArcGIS SceneViewer online, there must be a way to do it.
Any help on this would be greatly appreciated!
arcgis runtime wpf sceneview vectortilelayer openstreetmap vector basemap