dependency positions info window

hi, is there any extension that allows to show an info window, which attached to a placemark,and moving with the placemark?

No extensions, but you should be able to do it with what the Cesium API currently offers. Show your infobox as a DOM element over the globe, use the functions for converting globe coordinates to screen coordinates, and update the infobox’s position on the screen as the placemark’s location on the globe changes.

Hello,

There is no extension for this kind of floating balloon. Instead, we have the InfoBox widget that displays information on the side of the window. Take a look at this demo:

As you click on the different entities, the InfoBox displays information found in the ‘description’ property. The description can be either plain text or HTML. Here’s a short example of how to make a pin with a name and description:

var viewer = new Cesium.Viewer(‘cesiumContainer’);

var pinBuilder = new Cesium.PinBuilder();

var pin = viewer.entities.add({
name : ‘Blue Pin’,
description : ‘

This

is an example

Cesium pin

’,
position : Cesium.Cartesian3.fromDegrees(-75.170726, 39.9208667),
billboard : {
image : pinBuilder.fromColor(Cesium.Color.ROYALBLUE, 48).toDataURL()
}
});

viewer.zoomTo(pin);

``

When you click the pin, the name gets displayed in the header and the description is used for the content of the panel.

Hope this helps,

-Hannah