118 lines
3.7 KiB
JavaScript
118 lines
3.7 KiB
JavaScript
import Link from 'next/link';
|
|
|
|
import Copyright from './Copyright';
|
|
import Image from
|
|
|
|
import typhoonMapPreview from "../public/typhoon.png";
|
|
import doughtMapPreview from "../public/dought.png";
|
|
import snowMapPreview from "../public/snow.jpg";
|
|
import workInjureMapPreview from "../public/workInjury.png";
|
|
import geologicalDisasterMapPreview from '../public/geological.png';
|
|
import earthquakeMapPreview from '../public/earthquake.png';
|
|
import forestFireMapPreview from '../public/forestFire.png';
|
|
import floodsAndDroughtsMapPreview from '../public/floodsAndDroughts.png';
|
|
import trafficAccidentsMapPreview from '../public/traffic.png';
|
|
|
|
export default function Map() {
|
|
return (
|
|
<>
|
|
<Link
|
|
href="https://umap.openstreetmap.fr/zh/map/map_761199#4/36.24/122.08"
|
|
passHref
|
|
>
|
|
<div>
|
|
<h3>各省受台风影响地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
吴懿鹏 & 林思源
|
|
</small>
|
|
<Image src={typhoonMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link
|
|
href="https://umap.openstreetmap.fr/zh/map/drought-disasters-in-chinas-provinces-from-2014-to_758463#5/34.940/109.248"
|
|
passHref
|
|
>
|
|
<div>
|
|
<h3>各省干旱灾害地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
Keer ZHENG & Mengjia ZHENG
|
|
</small>
|
|
<Image src={doughtMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link href="#" passHref>
|
|
<div>
|
|
<h3>各省雪灾影响地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
Shuyi GUO
|
|
</small>
|
|
<Image src={snowMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link href="https://umap.openstreetmap.fr/en/map/gis_756551#5/37.020/103.623" passHref>
|
|
<div>
|
|
<h3>各省工伤统计地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
Stanley, Lori, & Kristin.
|
|
</small>
|
|
<Image src={workInjureMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link href="https://umap.openstreetmap.fr/zh/map/geological-disasters-in-mainland-china_758447#4/39.44/104.15" passHref>
|
|
<div>
|
|
<h3>各省突发地质灾害地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
Sherry, Ivy, & Rika
|
|
</small>
|
|
<Image src={geologicalDisasterMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link href="https://umap.osm.ch/en/map/map_4637#4/41.44/118.21" passHref>
|
|
<div>
|
|
<h3>新中国成立后各省地震数据</h3>
|
|
<small>
|
|
<Copyright />
|
|
陈九如, 刘梦蝶, & 周鲲鹏
|
|
</small>
|
|
<Image src={earthquakeMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link href="https://umap.openstreetmap.fr/en/map/forest-fires-data-map-of-china-2015-2020_753341#4/35.89/104.24" passHref>
|
|
<div>
|
|
<h3>各省森林火灾地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
Jessie, Peggy, & Cindy
|
|
</small>
|
|
<Image src={forestFireMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link href="https://umap.openstreetmap.fr/en/map/untitled-map_758141#4/41.97/106.83" passHref>
|
|
<div>
|
|
<h3>各省洪涝旱灾地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
Jade, Cherry, & Mia
|
|
</small>
|
|
<Image src={floodsAndDroughtsMapPreview} />
|
|
</div>
|
|
</Link>
|
|
<Link href="http://umap.openstreetmap.fr/en/map/traffic-accidents_756060#4/40.38/107.58" passHref>
|
|
<div>
|
|
<h3>各省交通事故地图</h3>
|
|
<small>
|
|
<Copyright />
|
|
Carolyn, Julianne, & Selina
|
|
</small>
|
|
<Image src={trafficAccidentsMapPreview} />
|
|
</div>
|
|
</Link>
|
|
</>
|
|
);
|
|
}
|