I have a modal where I can view Google Maps using your particular API. See the code below:
<div class="modal fade" id="myMapModal" >
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close">×</button>
<h4 class="modal-title">Mapa</h4>
</div>
<div id="map-canvas" class="modal-lg"></div>
</div>
</div>
</div>
When it is clicked out of modal, it disappears. I would like to disable this option so you can close it only by clicking the modal x button.
How to disable click out of modal ?