Gets the index where the change occurred.
Namespace: MindFusion.Common
File: Events.js
JavaScript Copy Code |
---|
get index() {} |
Type: Number
Number. The index.
The following code handles the collectionChanged event of the decorations property of a DecorationLayer object in a map.
JavaScript Copy Code |
---|
var m = MindFusion.Mapping; var markers = new m.DecorationLayer("Images"); ................... markers.decorations.collectionChanged.addEventListener(handleCollectionChanged);
|