Someone asked me for the source code for the JSON map loader example I created for a video tutorial on using Tiled to export 2d tile maps as JSON map files. Although .tmx is a more popular format, Pygame Subset for Android does not support the xml parser libraries. Because of this, we can't use the TMX Loader library available on the Pygame site. Pytmxloader also will not work. This is unfortunate since the pytmxloader is especially nice. Although these libraries will work on the desktop. They will not work on the Android phone. :-(
At some point, I was planning to write a library for JSON map file loading. However, I never got around to it. The code below will work on desktop and mobile phones. It is for educational purposes only.
JSON Map Loader Lesson Code that works with Tiled maps.