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 { Component, createSignal, For, Show } from 'solid-js';
|
||||||
import { useI18n } from '@solid-primitives/i18n';
|
import { useI18n } from '@solid-primitives/i18n';
|
||||||
import EditIcon from '@suid/icons-material/Edit';
|
import EditIcon from '@suid/icons-material/Edit';
|
||||||
|
import TravelExploreIcon from '@suid/icons-material/TravelExplore';
|
||||||
import { Paper, Stack } from '@suid/material';
|
import { Paper, Stack } from '@suid/material';
|
||||||
import styled from '@suid/material/styles/styled';
|
import styled from '@suid/material/styles/styled';
|
||||||
import Dialog from '../dialog';
|
import Dialog from '../dialog';
|
||||||
|
@ -162,9 +163,19 @@ const Infos: Component<{}> = (props) => {
|
||||||
<For each={vectorLayerFeatures}>
|
<For each={vectorLayerFeatures}>
|
||||||
{(feature) => (
|
{(feature) => (
|
||||||
<Tree
|
<Tree
|
||||||
title={`${feature.get('class')} ${
|
title={
|
||||||
feature.get('name') || ''
|
<>
|
||||||
}`}
|
<div>
|
||||||
|
{`${feature.get('class')}
|
||||||
|
${feature.get('name') || ''}`}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<IconButton>
|
||||||
|
<TravelExploreIcon />
|
||||||
|
</IconButton>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
}
|
||||||
content={
|
content={
|
||||||
<>
|
<>
|
||||||
<>
|
<>
|
||||||
|
|
Loading…
Reference in New Issue