Package Exports
- arcgis-extentnavigation-widget
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (arcgis-extentnavigation-widget) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
arcgis-extentnavigation-widget
🌌 An ArcGIS JS V4 widget that travels through extents.
Include the style, create the widget, then add it to your map UI
require([
"custom-widgets/ExtentNavigation"
], function(ExtentNavigation) {
// create your map and view
var extentNav = new ExtentNavigation({
view: view,
numberOfExtentsToStore: 10 // default is 20
});
view.ui.add(extentNav, "top-right");
Get it from here or via npm npm install arcgis-extentnavigation-widget --save
Running locally
Download / clone this repository then run npm install
> npm start