我正在嵌入一个 mapbox 地图 - 我发现在地图中间放置了一个空白行,正如您从所附图像中看到的那样。
有谁知道问题是什么?
我也在使用 twitter-bootstrap 框架。
这是我使用的地图 div html/css:
<div class="map"></div>
.map{
max-width:none !important;
width:100% !important;
height:250px !important;
max-height:250px;
position: relative;
margin:0 auto !important;
}
这是我的js:
var map = mapbox.map(_element);
map.addLayer(mapbox.layer().id('examples.map-uh4ustwo'));
// Create an empty markers layer
var markerLayer = mapbox.markers.layer();
// Add interaction to this marker layer. This
// binds tooltips to each marker that has title
// and description defined.
mapbox.markers.interaction(markerLayer);
map.addLayer(markerLayer);
map.zoom(3).center({ lat: _json.lat, lon: _json.lon });
// Add a single feature to the markers layer.
// You can use .features() to add multiple features.
markerLayer.add_feature({
geometry: {
coordinates: [_json.lon, _json.lat]
},
properties: {
'marker-color': '#F96363',
'marker-symbol': 'circle-stroked',
/*title: 'Example Marker',
description: 'This is a single marker.'
*/
}
});
谢谢。