Is it possible to apply transparency to ArcGISLocalTiledLayers?
I see property descriptions for brightness, contrast, and gamma in the Qt QML API, but no alpha.
Thanks,
PW
Try the opacity property? Is a generic property of most objects.
Off the top of my head, I imagine you'd create a Slider object with a min/max value of 0/1 and bind its value to the opacity of the layer, something like...
Slider{
id: slider
minimumValue: 0
maximumValue: 1
}
ArcgisTiledMapServiceLayer{
opacity: slider.value
In theory, as you alter the value of the slider, it should adjust the opacity of the layer.
Thanks Paul,
Any idea how to implement a slider for layer opacity?
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.