我正在学习同时使用react和mapbox,但我正在努力解决为什么我的mapbox地图在通过React加载时无法正确呈现。当我正常加载它(没有React.js)时,没有问题,因为下面的代码工作并且地图正常显示:
<script src="https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.js"></script>
<link rel="stylesheet" href="https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.css"/>
<div> id="map"></div>
<script>
var map = L.mapbox.map('map', 'blabla.blabla').setView([lat, long], 9);
</script>
但是当我按照以下方式进行操作时,地图通常根本不会出现,或者当它出现时,我只看到div左上角的一部分。
<script src="path/to/react.js"></script>
<script src="https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.js"></script>
<link rel="stylesheet" href="https://api.tiles.mapbox.com/mapbox.js/v2.1.5/mapbox.css"/>
<div id="react-content">
<script src="path/to/react/content.js'></script>
</div>
//now inside react/content.js, there is a mapbox component inside an outer component. I'm leaving out the rest of the code to save space, and I believe that I am rendering the OuterComponent and the MapBoxMap component correctly inside that.
var MapBoxMap = React.createClass({
componentDidMount: function() {
L.mapbox.accessToken = this.props.accessToken;
var map = L.mapbox.map(this.getDOMNode(), this.props.mapId)
.setView([15, -105], 9);
},
render: function() {
return (
<div id="map"></div>
);
}
});
执行缩放或打开Chrome开发工具等操作似乎会使地图有时出现。我不知道发生了什么。尝试渲染地图时,组件是否未正确安装?我以为这是componentDidMount应该照顾的?我真的很感激任何见解! Alos,这张地图是在Zurb Foundation的一些元素中呈现的,所以我不知道这是否有所作为?
答案 0 :(得分:7)
你错过了相关的CSS吗?您始终需要设置元素的高度:
html, body, #map {
height: 100%;
}
由于React我无法测试,但听起来地图无法从元素中获取正确的尺寸。如果您没有设置正确的CSS或元素有display: none;
,通常会发生这种情况。如果设置正确的CSS不起作用,您可以尝试使大小无效,以便地图自行重置。 L.mapbox.Map
您可以调用invalidateSize
方法,请参阅: