Minor fix in firesmap for race condition
This commit is contained in:
parent
35ba215834
commit
c3bc4e604a
1 changed files with 2 additions and 3 deletions
|
|
@ -103,9 +103,8 @@ class FiresMap extends React.Component {
|
||||||
this.setState({ useMarkers: use });
|
this.setState({ useMarkers: use });
|
||||||
}
|
}
|
||||||
|
|
||||||
addScale() {
|
addScale(map) {
|
||||||
// https://www.npmjs.com/package/leaflet-graphicscale
|
// https://www.npmjs.com/package/leaflet-graphicscale
|
||||||
const map = this.getMap();
|
|
||||||
const options = {
|
const options = {
|
||||||
fill: 'fill',
|
fill: 'fill',
|
||||||
showSubunits: true
|
showSubunits: true
|
||||||
|
|
@ -120,7 +119,7 @@ class FiresMap extends React.Component {
|
||||||
const bounds = lmap.getBounds();
|
const bounds = lmap.getBounds();
|
||||||
mapSize.set([bounds.getNorthEast(), bounds.getSouthWest()]);
|
mapSize.set([bounds.getNorthEast(), bounds.getSouthWest()]);
|
||||||
if (!this.state.scaleAdded) {
|
if (!this.state.scaleAdded) {
|
||||||
this.addScale();
|
this.addScale(lmap);
|
||||||
this.state.scaleAdded = true;
|
this.state.scaleAdded = true;
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue