我有一个单页面应用程序,使用reactjs和react-router。我开发了一个地图组件,当然,如果我尝试清理组件上的映射,并且在组件上进行重建,那么谷歌地图会在屏幕之间发生内存泄漏。所以我尝试了这种方法:
What is the proper way to destroy a map instance
并重新使用地图实例和结合过度措施的节点来清理工作并稳定事物。为了清理,我
我现在遇到的问题是,当我触发调整大小时,它不会调整大小。在阅读了其他几篇文章后,确保在显示div后触发,它不会调整大小。但是,我有一个绑定到window.onresize的resize函数,并注意到在调整窗口大小后,第二次调用该函数时,地图会调整大小并居中。这是函数:
sizeMapToContainer: function () {
google.maps.event.trigger(this.map, 'resize');
if (this.props.fitBounds) {
this.zoomInOnMarkers();
} else {
this.map.setCenter(new google.maps.LatLng(this.props.center[1], this.props.center[0]));
this.map.setZoom(this.props.zoom);
}
},
和窗口调整大小的功能:
window.onresize = function onResize () {
if (this.map) {
this.sizeMapToContainer();
}
}.bind(this);
我对render的渲染调用只返回一个div,后来在mount中我自己附加了map div。
buildMap: function (nextProps) {
var mapProps;
if (nextProps) {
mapProps = nextProps;
} else {
mapProps = this.props;
}
var centerpoint = mapProps.center;
var zoom = mapProps.zoom || 8;
var center = new google.maps.LatLng(centerpoint[1], centerpoint[0]);
var mapNode = this.refs.map.getDOMNode();
var mapOptions = {
center: center,
zoom: zoom
};
if (mapInstance.map) {
window.tmMap = this.map = mapInstance.map;
//check if the nodes are already there
if (!mapNode.hasChildNodes()) {
mapNode.appendChild(mapInstance.node);
}
this.map.setOptions(mapOptions);
} else {
mapInstance.node = document.createElement('div');
mapInstance.node.classList.add('full-height');
mapInstance.map = new google.maps.Map(mapInstance.node, mapOptions);
window.tmMap = this.map = mapInstance.map;
mapNode.appendChild(mapInstance.node);
this.map.setOptions(mapOptions);
}
this.buildMarkers();
this.setMarkers();
this.bindMarkers();
google.maps.event.addListener(this.map, 'idle', this.onIdle);
},
此组件是嵌套组件。
如果有任何其他代码可以提供帮助,请告知我们。我当然正在使用最新的谷歌地图api,直接使用它。