ASP.NET Pack Programmer's Guide
IEnumerable.addRange Method
See Also
 





Adds a range of elements to the end of the collection.

Namespace: MindFusion.Mapping
Package: IEnumerable.js

 Syntax

JavaScript  Copy Code

function addRange (range)

 Parameters

range

Array. The range to add.

 Example

The following code creates two new Marker-s and add them to the decorations collection of a DecorationLayer called markers. The decorations property is of type ObservableCollection, which derives from IEnumerable.

JavaScript  Copy Code

var m = MindFusion.Mapping;

var markers = new m.DecorationLayer("Images");

// create some markers with images
var mark = new m.Marker(new m.LatLong(-22.951916, -43.210487));
mark.imageSrc = "./images/christ_redeemer.png";
mark.text = "Christ the Redeemer";

var mark1 = new m.Marker();
mark1.location = new m.LatLong(41.89021, 12.492231);
mark1.imageSrc = "./images/colosseum100.png";
mark1.text = "Colloseum";
markers.decorations.addRange([mark, mark1]);

 See Also

IEnumerable Members
IEnumerable Class
MindFusion.Mapping Namespace