Fix map type

This commit is contained in:
phil 2024-02-29 12:42:20 +05:30
parent ff8bfd55b8
commit 0b12fcc303
2 changed files with 3 additions and 2 deletions

View file

@ -169,7 +169,7 @@ export class TreeLayerComponent implements OnInit {
store.symbol, //store.icon,
store.symbol, //|| gisTypeSymbolMap[layer['gisType']],
'', //store.rawSurveyStore,
'', //store.type,
store.type,
store.gis_type,
{}, //JSON.parse(store.style),
store.z_index,

View file

@ -9,15 +9,16 @@ export type Store = {
count?: (number | null);
custom: boolean;
description: string;
gis_type: string;
group: string;
in_menu: boolean;
is_db: boolean;
is_line_work: boolean;
is_live: boolean;
long_name: (string | null);
type: string;
minor_group_1: (string | null);
minor_group_2: (string | null);
gis_type: string;
status: string;
style: (string | null);
symbol: (string | null);