No Rendered Tiles #2239
-
Hey, sorry for the necro on this discussion. I tried to redo the HTML for my map(provided by zerda-ocm) and now it seems to be pulling the I basically just hot-swapped the setup that worked with the smaller The This would be a lot easier to debug myself, if I saw any errors, but the only thing I can see is that the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 18 replies
-
The process you used to generate the planet.pmtiles is different to the one you used for map.pmtiles. Your style is expecting layer="landuse" and class="grass", but your data only has layer="osm" and landuse="meadow" So you either have to alter your style or use the same process to generate the planet.pmtiles as you have used for your map.pmtiles. |
Beta Was this translation helpful? Give feedback.
The process you used to generate the planet.pmtiles is different to the one you used for map.pmtiles.
For map.pmtiles you were using the openmaptiles schema which organises and processes features in different layers. For example buildings are in the layer building and landuses are in the layer landuse (additionally changing landuse="meadow" to class="grass", etc,).
In your planet.pmtiles on the other hand, all data is shoved in one single layer "osm" and the orginal osm tags are used. (activate "show attributes" in the pmtiles viewer, than it should be become clearer, that you are using a completely different data structure)
Your style is expecting layer="landuse" and class="grass", but y…