Was this helpful?
Running a Map
To a run a map in JSON format, use the following syntax:
djengine -RC {fullPathAndFileNameOfMapRTC}
This runs the map using the settings exactly as they appear in the map runtime configuration file.
When RTC and Map files are in the same directory
If the map RTC file is in the same directory you are running djengine from, then {fullPathAndFileNameOfMapRTC} can be only the file name of the map RTC and the full path is not required. The entry point is only the map file name. For example:
djengine -RC c:\temp\Package\SimpleMap.map.rtc
Map RTC file content:
"entryPoint" : "SimpleMap.map"
When RTC and Map files are not in the same directory
If the map file is not in the same directory as the map RTC file, the RTC's entry point must be a relative path from the RTC file or absolute path. For example:
djengine -RC c:\temp\Package\SimpleMap.map.rtc
Map RTC file content:
"entryPoint" : "c:/temp/mymaps/SimpleMap.map" OR "../../SimpleMap.map"
Last modified date: 02/09/2024