Modify ↓
Opened 13 years ago
Closed 13 years ago
#8100 closed defect (fixed)
GeoJSON output not readable by TileMill
Reported by: | brauliobezerra | Owned by: | team |
---|---|---|---|
Priority: | critical | Milestone: | |
Component: | Core | Version: | tested |
Keywords: | Cc: |
Description
JOSM's GeoJSON output (Save as -> Choose GeoJSON) can't be read by TileMill when there is one or more ways with no tags on the layer (components of multiplygons, for example). The reason is because it doesn't include the "properties" field on these objects. It generates
{"type": "Feature", "geometry": ...
instead of:
{"type": "Feature", "properties": {}, "geometry": ...
which TileMill can read.
Attachments (1)
Note:
See TracTickets
for help on using tickets.
Patch to correct the problem.