2 Commits

Author SHA1 Message Date
Tran Anh Tuan
28739ddcd9 style(maps): update base color for map's layer 2025-10-01 09:30:15 +07:00
Tran Anh Tuan
53dfb861dd chore(release): bump version to 1.2 2025-09-30 14:13:19 +07:00
3 changed files with 8 additions and 3 deletions

Binary file not shown.

View File

@@ -7,7 +7,7 @@ const Footer = () => {
background: 'none',
color: 'white',
}}
copyright="2025 Sản phẩm của Mobifone v1.1"
copyright="2025 Sản phẩm của Mobifone v1.2"
/>
);
};

View File

@@ -112,10 +112,15 @@ class MapManager {
for (const layerMeta of listLayers) {
try {
const data = await getLayer(layerMeta); // lấy GeoJSON từ server
let style = {};
if (layerMeta === 'base-countries') {
style = createLabelAndFillStyle('#F3F2EC', '#E5BEB5');
} else {
style = createLabelAndFillStyle('#77BEF0', '#000000');
}
const vectorLayer = createGeoJSONLayer({
data,
style: createLabelAndFillStyle('#77BEF0', '#000000'),
style: style,
});
dynamicLayers.push(vectorLayer);