Reputation: 8608
I am trying to implement google maps on bootstrap.
I've followed Google's own guide, here: https://developers.google.com/maps/documentation/javascript/examples/map-simple
Whilst this works on a standalone page, when I add the Bootstrap CSS the map doesn't show. I can't seem to find a hack that fixes it.
HTML:
<body>
<div id="map-canvas"></div>
</body>
Script:
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
CSS (over bootstrap)
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
}
See here for jsFiddle: http://jsfiddle.net/robmc/6BTjE/2/
Has anyone encountered this before? I must be missing a basic workaround but no amount of forum searching has helped.
Thanks
Upvotes: 3
Views: 9773
Reputation: 41
//I did this , it worked for me
$(document).ready(function(){
var height=$( document ).height();
$("#map").css("height", height );
});
$( document ).resize(function() {
var height=$( document ).height();
$("#map").css("height", height );
});
Upvotes: 1
Reputation: 2274
I've fixed the issue by changing the height to px. hope it helps
#map-canvas{
/*height: 100%;*/
height: 400px;
}
Upvotes: 5
Reputation: 362360
This doesn't appear to be a Bootstrap issue. For the fiddle you need to use document.ready
, and the external resource "http://maps.googleapis.com/maps/api/js?v=3&sensor=false&extension=.js"
Also, there is no reference bootstrap in your fiddle. Here is a demo with Google maps and Bootstrap...
You can see the jQuery document.ready
in the JavaScript...
$(document).ready(function() {
// code here
});
Upvotes: 3