21 lines
278 B
TypeScript
Executable File
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",
|
|
},
|
|
];
|