We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a local vector tile server based on tilesplash and use L.TileLayer.MVTSource to load the vector tile layer at the client side:
L.TileLayer.MVTSource
var map = L.map('map').setView([0, 0], 2); var layer = new L.TileLayer.MVTSource({ url: 'http://localhost:3000/my_layer/{z}/{x}/{y}.mvt' }) map.addLayer(layer);
I notice that the L.TileLayer.MVTSource could send request with invalid x and y parameter:
http://localhost:3000/my_layer/2/-1/1.mvt
http://localhost:3000/my_layer/2/4/2.mvt
Is it a bug, or just because of incorrect layer config?
The text was updated successfully, but these errors were encountered:
I am experiencing the same problem.
Sorry, something went wrong.
No branches or pull requests
I have a local vector tile server based on tilesplash and use
L.TileLayer.MVTSource
to load the vector tile layer at the client side:I notice that the
L.TileLayer.MVTSource
could send request with invalid x and y parameter:Is it a bug, or just because of incorrect layer config?
The text was updated successfully, but these errors were encountered: