You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have only polygons and points in my database. It is in one table and one column. I do not store any more signs (river, house, etc. ... this is not).
Polygons are displayed normally. I just need to display the points, with my own style. It's strange why the points are not shown.
Also, I cannot change the style for all polygons.
I looked at the help. Perhaps I need something much simpler ...
Thank you in advance!
WITH webmercator(envelope) AS (
SELECT ST_TileEnvelope(15, 20891, 9773)
)
SELECT ST_AsMVT(tile) FROM (
SELECT osm_id , tile1 FROM (
SELECT osm_id, ST_AsMVTGeom(poly3857, (SELECT envelope FROM webmercator)) as tile1
FROM polygon43
) a
where tile1 is not null)
AS tile
The text was updated successfully, but these errors were encountered:
I have only polygons and points in my database. It is in one table and one column. I do not store any more signs (river, house, etc. ... this is not).
Polygons are displayed normally. I just need to display the points, with my own style. It's strange why the points are not shown.
Also, I cannot change the style for all polygons.
I looked at the help. Perhaps I need something much simpler ...
Thank you in advance!
SQL on server:
The text was updated successfully, but these errors were encountered: