Search
DecorationLayer.markers Property
See Also
 






Gets the collection of markers, displayed by this DecorationLayer.

Namespace: MindFusion.Mapping
File: DecorationLayer.js

 Syntax

JavaScript  Copy Code

get markers() {}

 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