hello world i'm using gmaps.js i have a problem which i cant fix and the problem is when i create the map div it works perfectly but when i put the div(map container) inside a bootstrap modal it does not load or show anything i think it has something to do with the "display" property in css but i cannot fix that thanks for your help this is my code
inside document ready function
map = new GMaps(
{
el: '#map',
lat:36.184164,
lng:43.975181,
click:function (e) {
console.log(e.latLng.lat());
}
});
this is my bootstrap row inside the modal
<div class="row" style="background: red;">
<div class="col-lg-12">
<div id="map"></div>
</div>
</div>