zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import L from 'leaflet';
import ReactDOM from 'ReactDOM';
import React from 'React';
import PropTypes from 'prop-types';
import './Contours.scss';
import ContoursPanel from './ContoursPanel';
 
class ContoursButton extends React.Component {
  static propTypes = {
    tasks: PropTypes.object.isRequired,
    map: PropTypes.object.isRequired
  }
 
  constructor(props){
    super(props);
 
    this.state = {
        showPanel: false
    };
  }
 
  handleOpen = () => {
    this.setState({showPanel: true});
  }
 
  handleClose = () => {
    this.setState({showPanel: false});
  }
 
  render(){
    const { showPanel } = this.state;
 
    return (<div className={showPanel ? "open" : ""}>
        <a href="javascript:void(0);" 
            onClick={this.handleOpen} 
            className="leaflet-control-contours-button leaflet-bar-part theme-secondary"></a>
        <ContoursPanel map={this.props.map} isShowed={showPanel} tasks={this.props.tasks} onClose={this.handleClose} />
    </div>);
  }
}
 
export default L.Control.extend({
    options: {
        position: 'topright'
    },
 
    onAdd: function (map) {
        var container = L.DomUtil.create('div', 'leaflet-control-contours leaflet-bar leaflet-control');
        L.DomEvent.disableClickPropagation(container);
        ReactDOM.render(<ContoursButton map={this.options.map} tasks={this.options.tasks} />, container);
 
        return container;
    }
});