Forum Discussion

amelia's avatar
04-08-2022

Geo Map GL Widget Plugin

Hi Sisense Community. I have used the Geo Map GL plugin to create a map that shows the sales amount per state in only the US and Canada. However, when I hover over the map, there is no value label. I can't find much documentation on Geo Map GL online, can anyone please advise on how to:

1. include the value labels

2. filter the map such that only US and Canada are shown

Thank you!

2 Replies

Replies have been turned off for this discussion
  • I'm not sure about #1 but for #2 there is a setting in the GeoMap.js file to specify the center (in multiple places) and zoom level.

        mapGL = new mapboxgl.Map({
            container: mapHolder,
            style: widget.style.baseMap,
            center: [-101, 58],
            zoom: 2,
            renderWorldCopies: widget.style.renderWorldCopies
        });

    To look at #1 the same script refers to the NAME parameter so make sure that is what you are tying to in the GeoJSON file.