Feature Request: Hover Render for GeoJson
Please answer the questions below, it helps us to keep track of the issue. Please do not ignore it or your issue will be closed.
-
Which driver are you using and version of it (Ex: PostgreSQL 10.0): PostgreSQL, where is driver version available?
-
Which TablePlus build number are you using (the number on the welcome screen, Ex: build 81): Version 5.4.0 (504)
-
The steps to reproduce this issue: Not a bug
Can the current hover feature for Postgres GIS types be extended to support GeoJSON rendering - (see geojson.io)
Example:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"coordinates": [
[
-3.329843811033953,
51.484129893062004
],
[
-3.2549994506825612,
51.49994818983717
],
[
-3.2261603393540668,
51.52644222169036
],
[
-3.2055609741198907,
51.550359071965715
]
],
"type": "LineString"
}
}
]
}
Hi @al-hicks please update the issue template questions. Thanks.
Hello! Just want to chime in that my team would appreciate similar functionality to what's described. Specifically, we'd appreciate a base map layer underneath geometry previews.
Thanks!
Did you try to press command + return or using the Quick Look @rowbot-weisguy ?
@huyphams that works really well, thanks! Is there a way to visualize multiple geometries at once on the map? When I highlight multiple geometries then press command + return it only returns the last geometry in the column.
Though, the hacky way to do this would be to perform ST_Collect(geom) on these geometries, which is also fine!