Added styled item and trash icons

Related to #12
This commit is contained in:
Dmitriy Shishkov 2023-07-14 18:33:36 +03:00
parent ad290c8dd0
commit 7ef4194bbd
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
6 changed files with 26 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -5,6 +5,7 @@ import LineDot from './LineDot'
import { categoryNames } from '../assets/category' import { categoryNames } from '../assets/category'
import { useBook } from '../hooks/api' import { useBook } from '../hooks/api'
import { Announcement } from '../hooks/api/useHomeAnnouncementList' import { Announcement } from '../hooks/api/useHomeAnnouncementList'
import { iconItem } from '../utils/markerIcons'
type AnnouncementDetailsProps = { type AnnouncementDetailsProps = {
close: () => void, close: () => void,
@ -41,7 +42,7 @@ function AnnouncementDetails({ close, announcement: { id, name, category, bestBy
url='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png' url='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'
/> />
<Marker position={[lat, lng]}> <Marker icon={iconItem} position={[lat, lng]}>
<Popup> <Popup>
{address} {address}
<br /> <br />

View File

@ -2,6 +2,7 @@ import { Marker, Popup, useMapEvents } from 'react-leaflet'
import { LatLng } from 'leaflet' import { LatLng } from 'leaflet'
import { SetState } from '../utils/types' import { SetState } from '../utils/types'
import { iconItem } from '../utils/markerIcons'
type LocationMarkerProps = { type LocationMarkerProps = {
address: string, address: string,
@ -24,7 +25,7 @@ const LocationMarker = ({ address, position, setPosition }: LocationMarkerProps)
}) })
return ( return (
<Marker position={position}> <Marker icon={iconItem} position={position}>
<Popup> <Popup>
{address} {address}
{position.lat.toFixed(4)}, {position.lng.toFixed(4)} {position.lat.toFixed(4)}, {position.lng.toFixed(4)}

View File

@ -1,6 +1,7 @@
import { Marker, Popup } from 'react-leaflet' import { Marker, Popup } from 'react-leaflet'
import { Trashbox } from '../hooks/api/useTrashboxes' import { Trashbox } from '../hooks/api/useTrashboxes'
import { iconTrash } from '../utils/markerIcons'
type TrashboxMarkersProps = { type TrashboxMarkersProps = {
trashboxes: Trashbox[], trashboxes: Trashbox[],
@ -10,7 +11,7 @@ type TrashboxMarkersProps = {
const TrashboxMarkers = ({ trashboxes, selectTrashbox }: TrashboxMarkersProps) => { const TrashboxMarkers = ({ trashboxes, selectTrashbox }: TrashboxMarkersProps) => {
return ( return (
<>{trashboxes.map((trashbox, index) => ( <>{trashboxes.map((trashbox, index) => (
<Marker key={`${trashbox.Lat}${trashbox.Lng}`} position={[trashbox.Lat, trashbox.Lng]}> <Marker icon={iconTrash} key={`${trashbox.Lat}${trashbox.Lng}`} position={[trashbox.Lat, trashbox.Lng]}>
<Popup> <Popup>
<p>{trashbox.Address}</p> <p>{trashbox.Address}</p>
<p>Тип мусора: <> <p>Тип мусора: <>

View File

@ -0,0 +1,20 @@
import L from 'leaflet'
import itemMarker from '../assets/itemMarker.png'
import trashMarker from '../assets/trashMarker.png'
const iconItem = new L.Icon({
iconUrl: itemMarker,
iconRetinaUrl: itemMarker,
popupAnchor: [0, 0],
iconSize: [41, 41],
})
const iconTrash = new L.Icon({
iconUrl: trashMarker,
iconRetinaUrl: trashMarker,
popupAnchor: [0, 0],
iconSize: [34, 41],
})
export { iconItem, iconTrash }