/** * 切换地图按钮 */ import React, { Component } from 'react'; import { Row, Col } from 'antd'; export default class SwitchMap extends Component { constructor(props) { super(props); this.state = { layerSatatus: props.layerSatatus }; } componentDidMount() {} componentWillReceiveProps(nextPorps) { this.setState({ layerSatatus: nextPorps.layerSatatus }); } render() { return (
{ this.props.switchMap('attendance'); }} >
基础信息
{ this.props.switchMap('person'); }} >
三维信息
{ this.props.switchMap('mass'); }} >
大数据闪点图层
); } }