JSFiddle - React, Tailwind, and code Playground
HTML
<div class="map">
<div class="map-background"></div>
</div>
CSS
.map {
border: 1px solid #888;
width: 500px;
height: 500px;
margin: auto;
margin-top: 50px;
cursor: move;
overflow: hidden;
}
.map-background {
background: url('http://image.noelshack.com/fichiers/2013/25/1371822754-map.jpg');
height: 140px;
width: 140px;
}
JavaScript
$(function() {
$( ".map-background" ).draggable({
containment: ".map"
});
});