changed the draw controller for drawing lines for grain bags, also fixed the grain bag plotting to be able to plot existing bags

This commit is contained in:
csawatzky 2025-03-27 11:57:44 -06:00
parent 278dfa713d
commit a2b43efda4
3 changed files with 21 additions and 24 deletions

View file

@ -6,7 +6,7 @@ import {
DialogActions,
DialogContent,
DialogTitle,
Grid,
Grid2 as Grid,
Icon,
IconButton,
LinearProgress,
@ -355,7 +355,7 @@ export default function MapBase(props: Props) {
)}
</Box>
<Grid container direction={isMobile ? "column" : "row"}>
<Grid item>
<Grid>
<IconButton
className={classes.iconButtons}
style={
@ -371,7 +371,7 @@ export default function MapBase(props: Props) {
<MarkerMove />
</IconButton>
</Grid>
<Grid item>
<Grid>
<IconButton
className={classes.iconButtons}
style={msHovered ? { background: "grey" } : {}}
@ -382,7 +382,7 @@ export default function MapBase(props: Props) {
<Layers />
</IconButton>
</Grid>
<Grid item>
<Grid>
<IconButton
className={classes.iconButtons}
style={hcHovered ? { background: "grey" } : {}}
@ -393,7 +393,7 @@ export default function MapBase(props: Props) {
<HomeIcon />
</IconButton>
</Grid>
<Grid item>
<Grid>
<IconButton
className={classes.iconButtons}
style={
@ -542,7 +542,7 @@ export default function MapBase(props: Props) {
const onCreate = (event: any, objectToCut?: string, measurement?: boolean) => {
let feature = event.features[0];
console.log(feature)
//console.log(feature)
//if the string exist we are adding a hole to an existing object
if (objectToCut) {
if (props.cutHoleInPolygon) {
@ -554,7 +554,7 @@ export default function MapBase(props: Props) {
}
} else {
if (props.addNewShape) {
console.log("add new shape")
//console.log("add new shape")
props.addNewShape(feature.geometry.coordinates, feature.geometry.type);
}
}