| 1 | import { For, Show } from "solid-js"; |
| 2 | |
| 3 | export interface InspectableFeature { |
| 4 | layerName: string; |
| 5 | type: number; |
| 6 | id: number | undefined; |
| 7 | properties: { [key: string]: string | number | boolean }; |
| 8 | } |
| 9 | |
| 10 | const intToGeomType = (n: number) => { |
| 11 | if (n === 1) return "Point"; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…