cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Geo Map GL Widget Plugin

amelia
10 - ETL
10 - ETL

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 2

kreycraft
Sisense Team Member
Sisense Team Member

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. 

Thank you so much!