You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the div id is given to legendDivId option:
const map = new gridviz.Map(document.getElementById('map'), { x: 4500000, y: 2900000, z: 1000, legendDivId: 'ext_legend' })
instead, it should be a container. So that we can do instead something like:
const map = new gridviz.Map(document.getElementById('map'), { x: 4500000, y: 2900000, z: 1000, legendDiv: document.getElementById('ext_legend') })
The text was updated successfully, but these errors were encountered:
Currently, the div id is given to legendDivId option:
const map = new gridviz.Map(document.getElementById('map'), { x: 4500000, y: 2900000, z: 1000, legendDivId: 'ext_legend' })
instead, it should be a container. So that we can do instead something like:
const map = new gridviz.Map(document.getElementById('map'), { x: 4500000, y: 2900000, z: 1000, legendDiv: document.getElementById('ext_legend') })
The text was updated successfully, but these errors were encountered: