(props: any)
| 13 | |
| 14 | class WMSTiles extends React.Component<any, any> { |
| 15 | constructor(props: any) { |
| 16 | super(props); |
| 17 | |
| 18 | this.state = { |
| 19 | region: { |
| 20 | latitude: LATITUDE, |
| 21 | longitude: LONGITUDE, |
| 22 | latitudeDelta: LATITUDE_DELTA, |
| 23 | longitudeDelta: LONGITUDE_DELTA, |
| 24 | }, |
| 25 | isWMSTilesActive: false, |
| 26 | }; |
| 27 | } |
| 28 | |
| 29 | toggleWMSTiles() { |
| 30 | this.setState({isWMSTilesActive: !this.state.isWMSTilesActive}); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…