Skip to content
Snippets Groups Projects
Commit a7ff7cd4 authored by Janne Alatalo's avatar Janne Alatalo :neutral_face:
Browse files

Add link to gitlab REAME.md page

At the moment the link is hard coded to the component.
parent 60a6ceeb
No related branches found
No related tags found
No related merge requests found
Pipeline #4050 passed
......@@ -236,6 +236,26 @@ class PointMap extends Component {
);
}
getMoreInfoLink() {
const styles = {
container: {
position: "absolute",
zIndex: 10,
top: "94%",
},
};
return (
<div style={styles.container}>
<Button
href="https://gitlab.labranet.jamk.fi/data-analysis-and-ai/lam-station-visualization/blob/master/README.md"
size="large"
>
More Info
</Button>
</div>
);
}
render() {
const point_coords = this.props.points.toArray();
const layers = [
......@@ -291,6 +311,7 @@ class PointMap extends Component {
}
{this.getColorInfo(color_spectrum, undef_color)}
{this.getTips()}
{this.getMoreInfoLink()}
</div>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment