Fix map type
This commit is contained in:
parent
ff8bfd55b8
commit
0b12fcc303
2 changed files with 3 additions and 2 deletions
|
@ -169,7 +169,7 @@ export class TreeLayerComponent implements OnInit {
|
||||||
store.symbol, //store.icon,
|
store.symbol, //store.icon,
|
||||||
store.symbol, //|| gisTypeSymbolMap[layer['gisType']],
|
store.symbol, //|| gisTypeSymbolMap[layer['gisType']],
|
||||||
'', //store.rawSurveyStore,
|
'', //store.rawSurveyStore,
|
||||||
'', //store.type,
|
store.type,
|
||||||
store.gis_type,
|
store.gis_type,
|
||||||
{}, //JSON.parse(store.style),
|
{}, //JSON.parse(store.style),
|
||||||
store.z_index,
|
store.z_index,
|
||||||
|
|
|
@ -9,15 +9,16 @@ export type Store = {
|
||||||
count?: (number | null);
|
count?: (number | null);
|
||||||
custom: boolean;
|
custom: boolean;
|
||||||
description: string;
|
description: string;
|
||||||
|
gis_type: string;
|
||||||
group: string;
|
group: string;
|
||||||
in_menu: boolean;
|
in_menu: boolean;
|
||||||
is_db: boolean;
|
is_db: boolean;
|
||||||
is_line_work: boolean;
|
is_line_work: boolean;
|
||||||
is_live: boolean;
|
is_live: boolean;
|
||||||
long_name: (string | null);
|
long_name: (string | null);
|
||||||
|
type: string;
|
||||||
minor_group_1: (string | null);
|
minor_group_1: (string | null);
|
||||||
minor_group_2: (string | null);
|
minor_group_2: (string | null);
|
||||||
gis_type: string;
|
|
||||||
status: string;
|
status: string;
|
||||||
style: (string | null);
|
style: (string | null);
|
||||||
symbol: (string | null);
|
symbol: (string | null);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue