Hello!
I was just wanting to see that how long it will take to get esri-loader updated for JSAPI 4.18.
Thanks
Solved! Go to Solution.
You can specify 4.18 or any other 4.x production version like this:
// app.js
import { setDefaultOptions } from 'esri-loader';
// configure esri-loader to use version 4.18 from the ArcGIS CDN
// NOTE: make sure this is called once before any calls to loadModules()
setDefaultOptions({ version: '4.18' })
Reference: https://github.com/esri/esri-loader#from-a-specific-version
You can already explicitly request 4.18:
setDefaultOptions({ version: '4.18' });
Maybe you could also submit a PR to the github repo using 4.17 as a model ?
You can specify 4.18 or any other 4.x production version like this:
// app.js
import { setDefaultOptions } from 'esri-loader';
// configure esri-loader to use version 4.18 from the ArcGIS CDN
// NOTE: make sure this is called once before any calls to loadModules()
setDefaultOptions({ version: '4.18' })
Reference: https://github.com/esri/esri-loader#from-a-specific-version
You can already explicitly request 4.18:
setDefaultOptions({ version: '4.18' });
Maybe you could also submit a PR to the github repo using 4.17 as a model ?