在Jvectormap中添加自定义按钮

时间:2017-03-13 00:53:51

标签: jquery jvectormap

有没有办法在普通Jvectormap的左上角添加自定义按钮? (类似于下钻地图中的后退按钮)

enter image description here

1 个答案:

答案 0 :(得分:1)

创建一个div作为地图的子项,这样您就可以相对于地图容器定位它:

$("#map").append('<div id="map-action">Action</div>').click(function () {
  //do your action here
});

按照你想要的样式,这里重要的是设置z顺序,因此它位于地图上方:

CSS:

#map-action {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 3px;
  z-index: 1000;
  background: #292929;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  line-height: 10px;
  padding: 6px;
  box-sizing: content-box;
}