-
Notifications
You must be signed in to change notification settings - Fork 432
New issue
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
Points only #948
Comments
Thanks! Tippecanoe development is now taking place in https://github.com/felt/tippecanoe. Features like these should work with Tippecanoe. Tippecanoe can deal with points, LineStrings, and Polygons. Tippecanoe creates vector tiles; it is necessary to use a renderer to see the output as images. You can for instance use Protomaps or Mapbox GL. |
Hi, thanks for your answer. I'm wondering how to display the *.mbtiles-files in a leaflet-map. If I view the *.mbtiles-file in SQLite Viewer the format is 'pbf' !?! No JS-errors are returned. kind regards. |
Hello Erica, thanks again. You steered me in the right direction! With 'Leaflet.VectorGrid.bundled.js' and Tile-Sever Now I have to style the vector tiles - this can be done with the 'vectorTileLayerStyles' option. The goal is an mbtiles file with several layers. Kind regards. |
Yes, if you supply multiple |
OK. I understand that I can put different JSON source files in different layers. eg: eg.
|
Tippecanoe does not have the ability to filter layers by attribute value. You would have do something like:
to explicitly tag each feature with its layer. |
Thanks again! Hopefully my last problem/question: I use this tippicanoe command to create mbtiles: But when I inspect (with the SQLite browser) the mbtiles file, the metadata.generator_options says: Please note the quotation marks at minimum and maximum!!! These quotes are the problem! Do you have any idea? |
I wrote the latest revision of the mbtiles spec, so I think TileServer is wrong, not tippecanoe, but if it doesn't like the |
First - thanks for this powerful library.
I'm trying to create an mbtile-file with tippecanoe.
The base is a geojson with 64800 points.
Each point has coordinates and a value.
like:
{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 6.0, -89.5 ] }, "properties": { "value": -53.0 } },
Question 1: can this work?
Question2: can tippecanoe deal with points only?
The problem: When the mbtile-file is loaded into SQLite-Viewer, metadata and tiles (binary) are shown but no images!?
It is similar with tileserver-php-master - no images are loaded.
Any ideas what i'm doing wrong?
The goal is to show all GeoJson points in a leaflet map.
But with tiles which are loaded when zooming and scrolling - and not with one giant geojsons file.
The text was updated successfully, but these errors were encountered: