satupeta-main/shared/config/layer-type.ts
2026-02-23 12:21:05 +07:00

21 lines
278 B
TypeScript
Executable File

export const layerTypeLabel = {
line: "Line",
polygon: "Polygon",
point: "Point",
};
export const layerTypeOptions = [
{
label: "Line",
value: "line",
},
{
label: "Polygon",
value: "polygon",
},
{
label: "Point",
value: "point",
},
];