satupeta-main/shared/config/layer-type.ts

21 lines
278 B
TypeScript
Raw Normal View History

2026-01-27 02:31:12 +00:00
export const layerTypeLabel = {
line: "Line",
polygon: "Polygon",
point: "Point",
};
export const layerTypeOptions = [
{
label: "Line",
value: "line",
},
{
label: "Polygon",
value: "polygon",
},
{
label: "Point",
value: "point",
},
];