Forum

Dinkel
Moderator
    Has successfully completed the online course Introduction
    Has successfully completed the online course Intermediate (200)
    Has successfully completed the online course Advanced (300)
    Has successfully completed the online course Basics (100)
5 years, 1 month ago #19988
Up
1
Down
::

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.