Map Error In New Chrome Update (128.0.6613.85)

13094
27
Jump to solution
08-22-2024 08:16 AM
Labels (2)
AaronBrake
New Contributor

Hi,

I'm a user of an application that uses ArcGIS, and with the new Chrome Update I'm seeing errors when I make a selection to view on the map.

 

The error I'm seeing is:

Uncaught TypeError: Failed to execute 'uniform4fv' on 'WebGLRenderingContext': The provided float value is non-finite.
at g.setUniform4fv (webgl.js:16:204)

 

It occurs about 50 times every time I try to make a new selection. The map now doesn't zoom in/pan to my selection anymore, but will just move a small amount while still making the selection.

 

Is there anything I can do to update, or is this a known issue?

Thanks in advance!

27 Replies
JonathanWilding
Emerging Contributor

Hi @DrewDowling, If it helps, I presented itself when collecting the lat, long in 4.11 and 4.13:

        view.on("click",function(event){                    
                    var lat = event.mapPoint.latitude
                    var long = event.mapPoint.longitude
                    var message = lat + " " + long
                    var latInput = document.getElementById("lat")
                    var lngInput = document.getElementById("lng")
                    latInput.innerHTML = lat
                    lngInput.innerHTML = long
                })
seumoo
by
Emerging Contributor

I'm on ArcGIS JS version 4.15 mainly using Edge and Chrome. Downgrading to 4.11 or upgrading to 4.20 did solve the interactivity issues with the map but broke core functionality like getting selected features. The WebGL issue is a known Chromium issue and it looks like it is currently being worked on: Chromium Issue #361823993 

Using a non-Chromium browser seems to work with 4.15. I've notified my users to use a non-Chromium browser until a patch is released. Hopefully that will fix this issue.

 

0 Kudos
EricFulcher1
Occasional Contributor

So Chrome just issued a new update that fixed this issue for me.  128.0.6613.114 (Official Build) (64-bit). 

Working on Firefox now but not Edge. Go figure, but I'll take it.

seumoo
by
Emerging Contributor
Also confirming that Chrome Version 128.0.6613.114 (Official Build) (64-bit) fixes the map issues I was having with ArcGIS JS 4.15. The map interactivity now works and no longer getting the "uniform4fv" issue.
 
 
GertConradie
Frequent Contributor

Thanks for the Chrome fix mention - I was ready to start upgrading a serious amount of version 4.19 code base. Delighted to do that now as a controlled/planned task instead of a live environment fix...

0 Kudos
sandeepk
New Contributor

This is solved by Chromium. 
Checked with 128.0.6613.114 (Official Build) (64-bit)

https://issues.chromium.org/issues/361823993

zhedream
Emerging Contributor

I have updated Chrome 128.0.6613.114 and the bug has been resolved. 👍

0 Kudos
RexNeville
Occasional Contributor

This problem is now also fixed in the latest version of Edge.

JS API version 4.15 now works OK for us in Edge version 128.0.2739.54

 

0 Kudos