/** * 所有地图图层 */ import React, { Component } from 'react'; export default class AllMapLayer extends Component { constructor(props) { super(props); this.state = { }; } componentDidMount() { } componentWillReceiveProps(props) { } render() { const { layerSatatus,showEarchMap } = this.props let currentLayerSatatus = showEarchMap?'earth':layerSatatus; // currentLayerSatatus = layerSatatus; // let layerSatatus = "earth" return (
{/* 驻勤点图层 */}
{/* 一张图图层 */}
{/* 人员图层 */}
{/* 警保联动图层 */}
{/* 警保联动图层 */}
{/* 地球图层 */}
); } }