diff --git a/src/components/pathOverlay.tsx b/src/components/pathOverlay.tsx index 19c9be0..f2a1d57 100644 --- a/src/components/pathOverlay.tsx +++ b/src/components/pathOverlay.tsx @@ -74,7 +74,7 @@ function pathToGraphic(path: ILocation[]): IGraphicOptions { }) graphic.clear() - graphic.lineStyle(1 / scale, 0x5858ff, 1) + graphic.lineStyle(1 / scale, 0x005cc8, 1) graphic.moveTo(projectedCords[0].x, projectedCords[0].y) for (let i = 1; i < projectedCords.length; i++) { graphic.lineTo(projectedCords[i].x, projectedCords[i].y) @@ -97,7 +97,7 @@ function vesselToGraphic( const sprite: PIXI.Sprite = new PIXI.Sprite(location.heading ? arrowTexture : circleTexture) sprite.anchor.set(0.5, 0.5) sprite.rotation = Math.PI / 2 + (location.heading ? (location.heading * Math.PI) / 180 : 0) - sprite.tint = 0x5858ff + sprite.tint = 0x005cc8 sprite.x = projectedCords.x sprite.y = projectedCords.y sprite.width = 20 / scale diff --git a/src/components/timeline.tsx b/src/components/timeline.tsx index 0e1e9e7..81f7dfe 100644 --- a/src/components/timeline.tsx +++ b/src/components/timeline.tsx @@ -1,5 +1,6 @@ import { useEffect } from 'react' import { useVesselGuiContext } from '../contexts/vesselGuiContext' +import CloseSVG from '../svgs/closeSVG' interface ITimelineProps { timestamps: Date[] onChange(index: number): void @@ -8,7 +9,7 @@ interface ITimelineProps { } export default function Timeline({ timestamps, onChange, timelineVal, setTimelineVal }: ITimelineProps) { - const { setSelectedVesselPath, selectedVesselmmsi, selectedVesselPath } = useVesselGuiContext() + const { setSelectedVesselPath, selectedVesselmmsi, selectedVesselPath, setPathIsShown } = useVesselGuiContext() function handleChange(val: string) { try { const intVal: number = parseInt(val) @@ -21,6 +22,7 @@ export default function Timeline({ timestamps, onChange, timelineVal, setTimelin function closePath() { setSelectedVesselPath([]) + setPathIsShown(false) } useEffect(() => { @@ -32,7 +34,7 @@ export default function Timeline({ timestamps, onChange, timelineVal, setTimelin }, [selectedVesselmmsi, setSelectedVesselPath, setTimelineVal]) return selectedVesselPath.length !== 0 ? ( -
Timestamp:{' '} @@ -40,8 +42,8 @@ export default function Timeline({ timestamps, onChange, timelineVal, setTimelin ? timestamps[timelineVal].toISOString().replace('T', ' ').replace('Z', '').slice(0, 19) : 'unknown'}
-