mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 02:41:09 +00:00
@@ -85,7 +85,9 @@ const FeaturesProperties = (props: { features: MapGeoJSONFeature[] }) => {
|
|||||||
{Object.entries(f.properties).map(([key, value], i) => (
|
{Object.entries(f.properties).map(([key, value], i) => (
|
||||||
<tr key={i}>
|
<tr key={i}>
|
||||||
<td>{key}</td>
|
<td>{key}</td>
|
||||||
<td>{value}</td>
|
<td>
|
||||||
|
{typeof value === "boolean" ? JSON.stringify(value) : value}
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
))}
|
))}
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user