Geomap - Multiple points on the same coordinates

Since version 11.6.0 the list of points with identical coordinates has disappeared. Or maybe I can’t find it. Only the values ​​of one point, the highest in the sorting, are displayed. Attached is an example from version 11.5.3 and 11.6.0 and data.

“mapaid”,“nazwa”,“lat”,“lon”
1,obiekt-1,51.0,16.8
2,obiekt-2,51.0,16.8
3,obiekt-3,51.0,16.8


Smells like a regression bug. Can you see and find if anything changed with geomap between those 2 versions in release notes or something?

Hi, there was a change in version 11.6.0, but I can’t see the connection, no additional option was created that could affect this display. It looks like some kind of bug.

you are on 11.5.3 but there were releases in between 11.5.3 and 11.6.0

I would check for any changes in the other ones also or otherwise log a bug in github for grafana

I see a declutter: true parameter that has been introduced in the GeoMap plugin… I wonder if it’s intentional.

You can get all the changes done by using git diff v11.5.3...v11.6.0 /public/app/plugins/panel/geomap on Grafana repo

nice find. is it user configurable? I want clutter :joy: closest one that can what you want seems to be mapgl plugin

I am seeing the issue with my Geomap plugin all the way up to 12.0. Although I can’t seem to locate any declutter option. Anyone know how to fix or resolve this?

I’m using the Windows installer. I compared the geomap plugin files ( C:\Program Files\GrafanaLabs\grafana\public\app\plugins\panel\geomap) between versions v11.5.3 (works fine) and v12.0.0 and I can’t find the declutter parameter anywhere. Does anyone know how to fix the problem?

declutter: true is in the codebase, it’s not exposed in .ini, env variables or the UI. To fix it, someone needs to make a contrib.

Should changing it inside the markersLayer.tsx file be enough? I changed “const vectorLayer = new VectorImage({ source, declutter: false });” but no effect.

My mistake, the declutter option set to false disables the list for objects with the same coordinates. And it works for e.g. the “photos” layer but for the “markers” layer this parameter is ignored and the list does not display regardless of what we set.

Then it comes from something else. Check the git diff command I posted to see what are the differences that would explain this change.