
Moderator




5 years, 1 month ago
#19988
::
I mean the order of loading the library parts. Look at this code snippet:
addScript('js/mapsjs-core.js', 'mapsjs-core');
addScript('js/mapsjs-mapevent.js', 'mapsjs-mapevent', ['mapsjs-core']);
addScript('js/mapsjs-service.js', 'mapsjs-service', ['mapsjs-core']);
addScript('js/mapsjs-ui.js', 'mapsjs-ui', ['mapsjs-core', 'mapsjs-mapevent', 'mapsjs-service']);
addStyle('css/mapsjs-ui.css');
I don’t know if this is the right order because I don’t know the library.
If it’s a problem of generating the code then try deploying and look into index.html. Your library should be referenced there.