Asad Masood
Asad Masood
Is there any resolution for this issue? The custom tileset created is set to public. Any help would be appreciated! ``` style.addSource( VectorSource("terrain-data", "mapbox://customtilesetID") ) style.addLayer( LineLayer("terrain-data1", "terrain-data") .withProperties( PropertyFactory.lineJoin(Property.LINE_JOIN_ROUND),...
I got it working after adding the name of source layer (which can be found on top left side when you open a custom tileset), like below ``` LineLayer("terrain-data1", "terrain-data").withSourceLayer("name_of_source_layer")...