![GitHub stars](https://img.shields.io/github/stars/nsc-open/esri-module-loader.svg?style=social&label=Stars)
esri-module-loader
This package is based on esri-loader.
install
npm i -S esri-module-loader
import EsriModuleLoader from 'esri-module-loader'
const { loadModules } = EsriModuleLoader
module value
A module value can be:
- path string like
'esri/map'
- shortcut name like
'Map'
- name path object like
{ name: 'Map', path: 'esri/map' }
load single module
loadModules(moduleValue).then(Module => {})
load multiple modules
To load multiple modules, you need an array of module values, like:
const modules = [
'esri/Map',
'Color',
{ name: 'Graphic', path: 'esri/graphic' }
]
loadModules(modules).then(({ Graphic, Map, Color }) => {
})
loadModules(
[{ name: 'MyModule', path: 'my/Module'}],
{ dojoConfig: { packages: [ name: 'my', location: '/path/to/my' ] } }
).then(({ MyModule }) => {})
shortcut
You can add your shortcut:
import EsriModuleLoader from 'esri-module-loader'
const { loadModules, shortcut } = EsriModuleLoader
shortcut.add('Map', 'esri/map')
shortcut.add({ name: 'Map', path: 'esri/map' })
shortcut.add([{ name: 'Map', path: 'esri/map' }, { name: 'Color', path: 'esri/Color' }])
loadModules(['Map', 'Color']).then(({ Map, Color}) => {
})
Most of esri official modules have been already added into the shortcuts. You can check the module list