nom update
This commit is contained in:
parent
356c4b0eba
commit
e011124dfe
File diff suppressed because it is too large
Load Diff
|
@ -5,6 +5,7 @@ import { getLength } from 'ol/sphere';
|
|||
import { Component, createSignal, For, Show } from 'solid-js';
|
||||
import { useI18n } from '@solid-primitives/i18n';
|
||||
import EditIcon from '@suid/icons-material/Edit';
|
||||
import TravelExploreIcon from '@suid/icons-material/TravelExplore';
|
||||
import { Paper, Stack } from '@suid/material';
|
||||
import styled from '@suid/material/styles/styled';
|
||||
import Dialog from '../dialog';
|
||||
|
@ -162,9 +163,19 @@ const Infos: Component<{}> = (props) => {
|
|||
<For each={vectorLayerFeatures}>
|
||||
{(feature) => (
|
||||
<Tree
|
||||
title={`${feature.get('class')} ${
|
||||
feature.get('name') || ''
|
||||
}`}
|
||||
title={
|
||||
<>
|
||||
<div>
|
||||
{`${feature.get('class')}
|
||||
${feature.get('name') || ''}`}
|
||||
</div>
|
||||
<div>
|
||||
<IconButton>
|
||||
<TravelExploreIcon />
|
||||
</IconButton>
|
||||
</div>
|
||||
</>
|
||||
}
|
||||
content={
|
||||
<>
|
||||
<>
|
||||
|
|
Loading…
Reference in New Issue