更改 JVectorMap 图例位置

Change the JVectorMap legend position

我需要更改 JVectorMap 图例框的位置。

有人知道如何将图例框更改为左按钮位置吗?

此致

我使用 CSS 样式解决了这个问题。

.jvectormap-legend-cnt-v{
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
}

.jvectormap-legend-cnt-h{
   left: 0;
   right: auto;
}