Questions tagged [vector-tiles]
A mechanism for distributing vector data following the same tile numbering scheme as widely used raster tiles. Used by Google, Mapbox and other major mapping providers.
484 questions
4 votes
1 answer
133 views
Labels of vector tiles are still visible despite cover with inverted polygon in QGIS
Why when using the xyzvectortiles layer from basemap.de Vector Tiles and covering it with inverted polygons, so only a certain region will be shown, there are still labels around my desired region?
0 votes
1 answer
33 views
Feature from previous zoom level doesn't disappear
I have only 2 vector tiles: .\tilesMeta\1\0\0.pbf .\tilesMeta\2\0\0.pbf Each tile contains a polygon with an area ~= area of a tile. At zoom level = 1 OpenLayers displays a big polygon as expected. ...
0 votes
0 answers
37 views
Trying to align OSM data with cesium 3d tiles
I have my OSM data exported using QGIS as gltf file and trying to align it with cesium 3d tiles for my high resolution model. Problem is both have different coordinate systems, 3D tiles is in ECEF and ...
1 vote
1 answer
45 views
Online vector-tiles demos showing whole world to street level, drawn 100% in browser
Are there any online publicly accessible demos showing the whole world drawn to street level, using vector tiles only? So all zoom levels, from drawing continents to cul-de-sacs. I'm interested in ...
1 vote
0 answers
35 views
GeoWebCache skips seeding some zoom levels when caching PBF tiles
I am using GeoServer 2.26.2 via the official docker image and have installed the vector tile extension on it. I am trying to cache some mapbox vector tiles for my layer, but whenever I attempt to ...
1 vote
1 answer
85 views
Statically hosted vector tiles
I'm interested in how to host vector tiles from static server. It's easy to serve png tiles with Leaflet, but I'm failing to do so with .geojson, .pbf or .mvt tiles. I'm trying to add to a map a ...
0 votes
0 answers
63 views
Display vector tiles layer in the QGIS legend
Is it possible in QGIS to specify an entry in the legend for a vector tiles layer (e.g. basemap)? The legend should of course display the individual entries of the vector tiles layer styling.
0 votes
0 answers
31 views
QGIS - Mask labels inside vector tiles
I am working on a QGIS projet and I want to hide labels from a vector tiles layer with a vectorlayer. Even if the vector tiles layer is under my vector layer, the labels are still visible. Is it ...
2 votes
1 answer
309 views
PMTiles Layers Not Displaying in Leaflet
I cannot get a PMTiles layer to display in leaflet. I have a PM tiles layer of roads created with tippecanoe, which I think is fine. It is roads in Ireland. It shows fine in QGIS and the PMtiles ...
0 votes
0 answers
39 views
How can I transfer the label styling of a vector tile layer to my extracted point layer in gpkg format?
I have a vector tile layer with some label styling; and now I would like to show this labels only within a specific polygon. I was able to export the point layer of the corresponding labels to a ...
0 votes
1 answer
57 views
Why doesn't GeoServer WMTS work with SQL View parameters
[QUESTION] Why doesn't GeoServer WMTS work with SQL View parameters? My Setup I'm using GeoServer 2.26 with a SQL View layer that works correctly with WFS and WMS, but fails with WMTS. Here's my ...
2 votes
1 answer
80 views
How can I set Symbology to Graduated when I load a custom vector tile from a URL?
I load vector tiles to debug my own OSRM server. The loaded geometry has features associated with them, I can see that in the inspector: But when I want to use those features in the Symbology (e.g. ...
0 votes
0 answers
96 views
How to Set Up an MVT-Tippecanoe Provider with PyGeoAPI?
I have an issue with the MVT-Tippecanoe provider in PyGeoAPI. I linked my MVT directory to the PyGeoAPI provider, but nothing is displayed when I visit the collection. Possible Solution: I believe the ...
0 votes
0 answers
49 views
I can't get to work the link, which should show the shapefile
I would like to use Icon Map in Power BI with ShapeFiles. I have installed GeoServer (2.26), added Vector Tiles Extensio, and set Gridset, workspace, store and layer, but I can't connect to the saved ...
2 votes
0 answers
119 views
Creating a Linestring-Based Heatmap with Vector Tiles in PostGIS
I have a table with 2 million records in PostGIS: CREATE TABLE public.trips( id int4 NULL, name text NULL, public_start_point public.geometry(point, 4326) NULL, stop_point public....