Search
Bubble Constructor
See Also
 






Initializes a new instance of the Bubble class.

Namespace: MindFusion.Mapping
File: Bubble.js

 Syntax

JavaScript  Copy Code

function Bubble ([location, [text]])

 Parameters

location
Optional.

LatLong. The location of this Bubble in geographical coordinates.

text
Optional.

String. The text of this bubble.

 Example

The following code creates a new DecorationLayer for Bubble instances and adds to it a new Bubble:

JavaScript  Copy Code

var m = MindFusion.Mapping;

// add a decoration layer for info bubbles
var bubbles = new m.DecorationLayer("Info bubbles");
bubbles.visible = false;
view.layers.add(bubbles);

// create some bubbles showing an HTML string
var bubble = new m.Bubble(new m.LatLong(-22.951916, -43.210487));
bubble.text = "<p>Christ the Redeemer</p>The statue weighs 635 metric tons (625 long, 700 short tons), </br> and is located at the peak of the 700-metre (2,300 ft) Corcovado mountain </br> in the Tijuca Forest National Park overlooking the city of Rio de Janeiro. </br> A symbol of Christianity across the world, the statue has also become a cultural icon </br> of both Rio de Janeiro and Brazil, and is listed as one of the New 7 Wonders of the World.";
bubbles.decorations.add(bubble);

 See Also