Was this helpful?
Running a Map from CLI
To run a map in JSON format, use the following syntax:
djengine -RC {fullPathAndFileNameOfMapRTC}
This command executes the map using the settings defined in the map's runtime configuration (RTC) file. For a complete list of command line options, see Command Line Options.
When the RTC and Map files are in the same directory
If the map RTC file is in the same directory where you are running djengine, you only need to provide the file name of the map RTC. The full path is not required. The entry point should only be the map file name. For example:
djengine -RC c:\temp\Package\SimpleMap.map.rtc
Map RTC file content:
"entryPoint" : "SimpleMap.map"
When the RTC and Map files are not in the same directory
If the map file is in a different directory than the RTC file, the RTC's entry point must be a relative or absolute path from the RTC file. For example:
djengine -RC c:\temp\Package\SimpleMap.map.rtc
Map RTC file content:
"entryPoint" : "c:/temp/mymaps/SimpleMap.map" OR "../../SimpleMap.map"
Running multiple Maps from CLI
To run multiple maps use the following syntax:
djengine -RC {fullPathAndFileNameOfMapRTCFile1} -RC {fullPathAndFileNameOfMapRTCFile2}
Last modified date: 08/28/2025