Tmx to json converter online?

There is no online converter as far as I am aware, but Tiled does ship with built-in conversion capabilities on the command-line using the --export-map option:

tiled --export-map [format] <source file> <target file>

The format is optional (it will be derived from the file extension of the target file if possible). In your case this command should work:

tiled --export-map map.tmx map.json
3 Likes