Leaflet.VectorGrid
Leaflet.VectorGrid copied to clipboard
Display gridded vector data (sliced GeoJSON or protobuf vector tiles) in Leaflet 1.0.0
I'm currently working with Leaflet's VectorGrid and I'm encountering an issue with the filter option. Here's a snippet of my code: ```js const vectorGrid = L.vectorGrid.protobuf(url, { vectorTileLayerStyles: vectorTileLayerStyles as...
this is code snippet for displaying the vector tile layer on the map vectorTileLayer = new (L as any).vectorGrid.protobuf(layer.url, { ...layer.layerOptions, interactive: true, }); because of the interactive = true...
Hello, can you tell me if I can use styles to make vector tiles in Leaflet.VectorGrid look like raster tiles, maybe there are examples of such styles (captions, object colors)?
in demo https://leaflet.github.io/Leaflet.VectorGrid/demo-vectortiles.html OpenMap Tiles not work and i console shows following errors : 
Handles errors when fetching the tiles fails, also triggers a tileerror event so the initial caller knows it has failed.
To reproduce : On a L.vectorGrid.protobuf layer, set the weight of lines to a function based on zoom such as ``` vectorTileLayerStyles: { layername: function (properties, zoom) { console.log(zoom); return...
Hi, thank you for maintaining Leaflet.VectorGrid. When using `Leaflet.VectorGrid.Protobuf` with point data, I would like popups to work even when the point radius is less than 11. **Observed behavior** In...
Hi everyone. I'm trying to capture the "click" event of an `L.VectorGrid.Protobuf` instance as follows: `layer.on("click", handler);` The event works for layers with "Polygon" and "LineString" geometry; however, for "Point"...
The master repository contains changes which are not in version 1.3.0 which is available on unpkg.com. Could the new code be made available as a new release in github please?...