答案 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;
}