|
|
|
@ -6,6 +6,7 @@ import { |
|
|
|
|
FeatureGroup, |
|
|
|
|
Rectangle, |
|
|
|
|
useMap, |
|
|
|
|
Popup, |
|
|
|
|
Marker, |
|
|
|
|
LayerGroup, |
|
|
|
|
ZoomControl, |
|
|
|
@ -22,10 +23,34 @@ import "./index.scss"; |
|
|
|
|
|
|
|
|
|
import grid from "../../assets/images/grid.png"; |
|
|
|
|
|
|
|
|
|
// import placeholder from "../placeholder.png";
|
|
|
|
|
import placeholder from "./placeholder.png"; |
|
|
|
|
|
|
|
|
|
import * as L from "leaflet"; |
|
|
|
|
|
|
|
|
|
const bedNumb = "تخت شماره 33"; |
|
|
|
|
|
|
|
|
|
// const pinMB = L.icon({
|
|
|
|
|
// iconUrl: placeholder,
|
|
|
|
|
// iconSize: [24, 41],
|
|
|
|
|
// iconAnchor: [0, 44],
|
|
|
|
|
// popupAnchor: [12, -40],
|
|
|
|
|
// shadowUrl: null,
|
|
|
|
|
// shadowSize: null,
|
|
|
|
|
// shadowAnchor: null,
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
// const MyCustomMarker = L.icon({
|
|
|
|
|
// iconUrl: placeholder,
|
|
|
|
|
// iconSize: [24, 41],
|
|
|
|
|
// iconAnchor: [0, 44],
|
|
|
|
|
// popupAnchor: [12, -40],
|
|
|
|
|
// shadowUrl: null,
|
|
|
|
|
// shadowSize: null,
|
|
|
|
|
// shadowAnchor: null,
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
L.Icon.Default(); |
|
|
|
|
|
|
|
|
|
L.drawLocal = { |
|
|
|
|
draw: { |
|
|
|
|
toolbar: { |
|
|
|
@ -63,6 +88,7 @@ L.drawLocal = { |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
marker: { |
|
|
|
|
// icon: MyCustomMarker,
|
|
|
|
|
tooltip: { |
|
|
|
|
start: "با کلیک بر روی نقشه یک مارکر رسم کنید.", |
|
|
|
|
}, |
|
|
|
@ -146,6 +172,8 @@ const LeafletMap = () => { |
|
|
|
|
console.log({ drawnItems }); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const location = [38.9072, -77.0369]; |
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
<MapContainer |
|
|
|
|
center={[49.505, -2.09]} |
|
|
|
@ -171,6 +199,12 @@ const LeafletMap = () => { |
|
|
|
|
maxNativeZoom={24} |
|
|
|
|
opacity={0.5} |
|
|
|
|
/> |
|
|
|
|
<Marker |
|
|
|
|
position={[49.505, -2.09]} |
|
|
|
|
// icon={pinMB}
|
|
|
|
|
> |
|
|
|
|
<Popup>{bedNumb}</Popup> |
|
|
|
|
</Marker> |
|
|
|
|
<FeatureGroup ref={leafEl}> |
|
|
|
|
<EditControl |
|
|
|
|
position="topright" |
|
|
|
|