diff --git a/src/components/map/geojson/gimpoAirportAirArea.json b/src/components/map/geojson/gimpoAirportAirArea.json index ef0e518e..23eda7f4 100644 --- a/src/components/map/geojson/gimpoAirportAirArea.json +++ b/src/components/map/geojson/gimpoAirportAirArea.json @@ -1101,7 +1101,7 @@ "styleUrl": "#line1", "styleHash": "-1df1e618", "description": "Unclassified Line Feature

ELEVATION = 57.86

ELEVATION = 57.86
KML_STYLE = line1
ELEVATION = 57.86", - "stroke": "#0000ff", + "stroke": "#a4edf5", "stroke-opacity": 1, "stroke-width": 2 }, @@ -2206,7 +2206,7 @@ "styleUrl": "#line2", "styleHash": "-248ae217", "description": "Unclassified Line Feature

ELEVATION = 112.86

ELEVATION = 112.86
KML_STYLE = line2
ELEVATION = 112.86", - "stroke": "#00ffff", + "stroke": "#FF3648", "stroke-opacity": 1, "stroke-width": 2 }, diff --git a/src/components/map/mapbox/MapBoxMap.js b/src/components/map/mapbox/MapBoxMap.js index 7ca50181..de01a081 100644 --- a/src/components/map/mapbox/MapBoxMap.js +++ b/src/components/map/mapbox/MapBoxMap.js @@ -246,7 +246,7 @@ export default function MapBoxMap() { } else if (item.properties.type === '0003' && mapState.area0003) { arrGeoJson.push({ ...item, - properties: { ...item.properties, color: '#FFA800' } + properties: { ...item.properties, color: '#f5dcab' } }); } else if (item.properties.type === '0004' && mapState.area0004) { arrGeoJson.push({ @@ -261,7 +261,7 @@ export default function MapBoxMap() { } else if (item.properties.type === '0006' && mapState.area0006) { arrGeoJson.push({ ...item, - properties: { ...item.properties, color: '#009cad' } + properties: { ...item.properties, color: '#a4edf5' } }); } });