|
|
@@ -1,4 +1,8 @@
|
|
|
import React from 'react';
|
|
|
+import BasePointIcon from './icons/BasePointIcon';
|
|
|
+import SupplyChainIcons from './icons/SupplyChainIcons';
|
|
|
+import Img7 from './icons/Img7';
|
|
|
+import SupplyChainNetwork from './icons/SupplyChainNetwork';
|
|
|
|
|
|
// 定义定位点类型
|
|
|
interface LocationPoint {
|
|
|
@@ -38,11 +42,7 @@ const BasePoint: React.FC<{
|
|
|
onClick={() => onClick?.(point)}
|
|
|
>
|
|
|
<div className="absolute inset-0">
|
|
|
- <img
|
|
|
- alt="基地定位点"
|
|
|
- className="block max-w-none size-full"
|
|
|
- src="/supply-chain/BasePointIcon.svg"
|
|
|
- />
|
|
|
+ <BasePointIcon className="size-full" />
|
|
|
</div>
|
|
|
{point.name && (
|
|
|
<div className="absolute -bottom-8 left-1/2 transform -translate-x-1/2 text-white text-sm font-bold whitespace-nowrap">
|
|
|
@@ -70,11 +70,7 @@ const IndustryChainPoint: React.FC<{
|
|
|
onClick={() => onClick?.(point)}
|
|
|
>
|
|
|
<div className="absolute inset-0">
|
|
|
- <img
|
|
|
- alt="产业链定位点"
|
|
|
- className="block max-w-none size-full"
|
|
|
- src="/supply-chain/SupplyChainIcons.svg"
|
|
|
- />
|
|
|
+ <SupplyChainIcons className="size-full" />
|
|
|
</div>
|
|
|
{point.name && (
|
|
|
<div className="absolute -bottom-8 left-1/2 transform -translate-x-1/2 text-white text-sm font-bold whitespace-nowrap">
|
|
|
@@ -121,11 +117,7 @@ const MapLegend: React.FC = () => {
|
|
|
<div className="box-border content-stretch flex gap-[20px] h-[54px] items-center justify-center px-[20px] py-0 relative rounded-[10px] shrink-0 w-[202px]">
|
|
|
<div className="h-[50px] relative shrink-0 w-[41.667px]">
|
|
|
<div className="absolute inset-0">
|
|
|
- <img
|
|
|
- alt="基地图例"
|
|
|
- className="block max-w-none size-full"
|
|
|
- src="/supply-chain/BasePointIcon.svg"
|
|
|
- />
|
|
|
+ <BasePointIcon className="size-full" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div className="box-border content-stretch flex gap-[10px] items-center px-0 py-[4px] relative shrink-0">
|
|
|
@@ -139,11 +131,7 @@ const MapLegend: React.FC = () => {
|
|
|
<div className="box-border content-stretch flex gap-[20px] h-[54px] items-center justify-center px-[20px] py-0 relative rounded-[10px] shrink-0 w-[202px]">
|
|
|
<div className="h-[50px] relative shrink-0 w-[41.667px]">
|
|
|
<div className="absolute inset-0">
|
|
|
- <img
|
|
|
- alt="产业链图例"
|
|
|
- className="block max-w-none size-full"
|
|
|
- src="/supply-chain/SupplyChainIcons.svg"
|
|
|
- />
|
|
|
+ <SupplyChainIcons className="size-full" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div className="box-border content-stretch flex gap-[10px] items-center px-0 py-[4px] relative shrink-0">
|