Minor changes in fires union

This commit is contained in:
vjrj 2018-12-23 13:31:41 +01:00
parent c4cb52abaf
commit b9457fe141
3 changed files with 6 additions and 17 deletions

View file

@ -31,7 +31,7 @@ class FireCircleMark extends Component {
} = this.props;
const rect = rectangleAround({ lat, lon }, track, track);
return (
<GeoJSON data={rect} color="red" stroke width="1" opacity=".4" fillOpacity=".3">
<GeoJSON data={rect} color="red" stroke width="1" opacity=".4" fillOpacity="1">
<FirePopup t={t} history={history} id={id} nasa={nasa} lat={lat} lon={lon} when={when} />
</GeoJSON>
);