-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CDD-2363: Added in the UKHSA image overlay onto map
- Loading branch information
1 parent
7850266
commit fb8ffc5
Showing
3 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/app/components/ui/ukhsa/Map/shared/layers/UKHSALogoLayer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
'use client' | ||
|
||
import { ControlPosition } from 'leaflet' | ||
import Image from 'next/image' | ||
import logo from 'public/assets/images/UKHSA_Lesser_Arms_Stacked_RGB.png' | ||
import Control from 'react-leaflet-custom-control' | ||
|
||
interface LogoLayerProps { | ||
position: ControlPosition | ||
} | ||
|
||
export function UKHSALogoLayer({ position }: LogoLayerProps) { | ||
return ( | ||
<Control position={position}> | ||
<div> | ||
<Image src={logo} height="125" alt="Logo for the UK Health Security Agency" /> | ||
</div> | ||
</Control> | ||
) | ||
} | ||
;`` |