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
| import React, {PureComponent} from 'react'
| import './FirstPage.css'
| import {GIS} from "iclient3d-plot-diy";
|
| export default class FirstPage extends PureComponent {
| constructor(props) {
| super(props);
| this.state = {};
| }
|
| componentDidMount() {
| }
|
|
| render() {
| return (
| <div className={"plot-map-container"}>
| <GIS refs={e => {
| this.mapFunction = e
| }}
| plotUrl={this.state.plotUrl}
| mapRef={this}
| />
| </div>
| )
| }
| }
|
|