ASP.NET Pack Programmer's Guide
DecorationLayer.markers Property
See Also
 





Gets the collection of markers, displayed by this DecorationLayer.

Namespace: MindFusion.Mapping
Package: DecorationLayer.js

 Syntax

JavaScript  Copy Code

Object.defineProperty(DecorationLayer.prototype, "markers", { value: ObservableCollection });

 Property Value

ObservableCollection. A collection of Marker instances.

 Example

The following code creates a new Marker and adds it to the markers property of a DecorationLayer instance.

JavaScript  Copy Code

var m = MindFusion.Mapping;

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

var mark = new m.Marker();
mark.location = new m.LatLong(41.89021, 12.492231);
mark.offset = new Point(10, 10);
mark.imageSrc = "./images/colosseum100.png";
mark.text = "Colloseum";
mark.visible = false;

imageLayer.markers.add(mark);

 See Also

DecorationLayer Members
DecorationLayer Class
MindFusion.Mapping Namespace