Select to view content in your preferred language

Flashing Flow Renderer after version 5.0

586
3
Jump to solution
03-03-2026 02:06 AM
JonathanDawe_BAS
Frequent Contributor

I recently did an experiment with flow renderers from a COG imagery tile. I see that in version 5.0 of the ArcGIS API there are new improvements to the behaviour of the renderer on moving the map.

Unfortunately on changing to version 5.0 I'm now seeing strange flashing of vector flow symbology on "no data" parts of my COG. 

Before (4.34): https://codepen.io/Jonathan-Dawe/pen/XJKGmmg

After (5.0):  https://codepen.io/Jonathan-Dawe/pen/YPGymvw

Is this a bug with the renderer, or an issue with my underlying data? 

0 Kudos
1 Solution

Accepted Solutions
AnneFitz
Esri Regular Contributor

Hi @JonathanDawe_BAS - this seems like a bug. We'll investigate. Thank you for letting us know!

View solution in original post

3 Replies
JonathanDawe_BAS
Frequent Contributor

A workaround I have at the moment is to add some kind of opacity visual variable... 

 

    field: "Raster.Magnitude",
      stops: [
        { value: 0,   opacity: 1 },
        { value: 100,   opacity: 1 },  
        { value: 100.1, opacity: 0 },   // anything above this → fully transparent
        { value: 9999, opacity: 0 }, 
      ],
    },
0 Kudos
AnneFitz
Esri Regular Contributor

Hi @JonathanDawe_BAS - this seems like a bug. We'll investigate. Thank you for letting us know!

AnneFitz
Esri Regular Contributor

@JonathanDawe_BAS this issue was fixed in today's patch, 5.0.10! Let us know if you are still running into any issues.

0 Kudos