I have implemented my own version of WebTiledLayer.
Since WebTiledLayer is a sealed class, I had to inherit from ServiceImageTiledLayer.
I have implemented the GetTileUriAsync() function and it works fine.
Now, I would like to set the Attribution property, but it not virtual and readonly property from parent class Layer.
WebTiledLayer seems to have its own redefinition of Attribution property, which magically also set the Layer.Attribution property.
I tried to do the same with my implemention by hiding the parent property with the "new" keyword: new public string Attribution { get; set; }
But as expected the parent property is never set, and when my custom WebTiledLayer is used the empty Layer.Attribution is used instead of my new Attribution property.
How can I set correctly the parent Layer.Attribution property so that it is correctly displayed at the bottom left of the SceneViewer?
Thanks,
Jube