forked from smaranjitghose/doc2pen
-
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.
Map Animated Panning + MapPlaceholder
- Loading branch information
Showing
2 changed files
with
85 additions
and
44 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -6,62 +6,103 @@ import { | |
Popup, | ||
useMap, | ||
LayersControl, | ||
useMapEvent, | ||
} from "react-leaflet"; | ||
import "./map.scss"; | ||
import { FiCrosshair } from "react-icons/fi"; | ||
const position = [13.0827, 80.2707]; | ||
|
||
function reCenter(map) { | ||
map.flyTo(position, map.getZoom()); | ||
function ReCenterButton() { | ||
const map = useMap(); | ||
|
||
return ( | ||
<label title="Re Center"> | ||
<button | ||
className="reCenter" | ||
onClick={() => map.flyTo(position, map.getZoom())} | ||
> | ||
<FiCrosshair size={30} color="#cccccc" /> | ||
</button> | ||
</label> | ||
); | ||
} | ||
|
||
function Comp() { | ||
const map = useMap(); | ||
function SetViewOnClick() { | ||
const map = useMapEvent("click", e => { | ||
map.setView(e.latlng, map.getZoom(), { | ||
animate: true, | ||
}); | ||
}); | ||
|
||
return null; | ||
} | ||
|
||
const MapLayers = () => { | ||
return ( | ||
<LayersControl position="topright"> | ||
<LayersControl.BaseLayer name="OSM Light"> | ||
<TileLayer | ||
attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' | ||
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" | ||
/> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer checked name="Thunderfrost"> | ||
<TileLayer url="https://{s}.tile.thunderforest.com/transport-dark/{z}/{x}/{y}.png" /> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer name="Alidade Dark"> | ||
<TileLayer url="https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png" /> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer name="Stamen Dark"> | ||
<TileLayer url="https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}{r}.png" /> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer name="Carto Dark"> | ||
<TileLayer url="https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png" /> | ||
</LayersControl.BaseLayer> | ||
<Marker position={position}> | ||
<Popup> | ||
<p>Doc2Pen</p> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</Popup> | ||
</Marker> | ||
</LayersControl> | ||
); | ||
}; | ||
|
||
const MapTooltip = () => { | ||
return ( | ||
<div className="mapToolTip"> | ||
<p>Doc2Pen</p> | ||
<br /> | ||
<br /> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</div> | ||
); | ||
}; | ||
|
||
function MapPlaceholder() { | ||
return ( | ||
<button className="reCenter" onClick={() => reCenter(map)}> | ||
<FiCrosshair size={30} color="rgb(0, 153, 255)" /> | ||
</button> | ||
<p> | ||
Map of Chennai, India. | ||
<noscript>You need to enable JavaScript to see this map.</noscript> | ||
</p> | ||
); | ||
} | ||
|
||
function Map() { | ||
return ( | ||
<MapContainer center={position} zoom={15} scrollWheelZoom={false}> | ||
<div className="mapToolTip"> | ||
<p>Doc2Pen</p> | ||
<br /> | ||
<br /> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</div> | ||
<LayersControl position="topright"> | ||
<LayersControl.BaseLayer name="OSM Light"> | ||
<TileLayer | ||
attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' | ||
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" | ||
/> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer checked name="Thunderfrost"> | ||
<TileLayer url="https://{s}.tile.thunderforest.com/transport-dark/{z}/{x}/{y}.png" /> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer name="Alidade Dark"> | ||
<TileLayer url="https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png" /> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer name="Stamen Dark"> | ||
<TileLayer url="https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}{r}.png" /> | ||
</LayersControl.BaseLayer> | ||
<LayersControl.BaseLayer name="Carto Dark"> | ||
<TileLayer url="https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png" /> | ||
</LayersControl.BaseLayer> | ||
<Marker position={position}> | ||
<Popup> | ||
<p>Doc2Pen</p> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</Popup> | ||
</Marker> | ||
</LayersControl> | ||
<Comp /> | ||
</MapContainer> | ||
<> | ||
<MapContainer | ||
center={position} | ||
zoom={15} | ||
scrollWheelZoom={false} | ||
placeholder={<MapPlaceholder />} | ||
> | ||
<MapTooltip /> | ||
<MapLayers /> | ||
<ReCenterButton /> | ||
<SetViewOnClick /> | ||
</MapContainer> | ||
</> | ||
); | ||
} | ||
|
||
|
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