var viewer = new Cesium.Viewer('cesiumContainer', {timeline : false, animation : false});
--
You received this message because you are subscribed to a topic in the Google Groups "cesium-dev" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cesium-dev/Vby0gOs7gEY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cesium-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
if (showSelection) { infoBoxViewModel.titleText = defaultValue(selectedEntity.name, selectedEntity.id); if (selectedEntity.properties) { var description = ''; var entityPropertyNames = selectedEntity.properties.propertyNames; var entityValues = selectedEntity.properties.getValue(time); for (var p = 0; p < entityPropertyNames.length; p++) { description += '<p>' + entityPropertyNames[p] + ' = ' + JSON.stringify(entityValues[entityPropertyNames[p]], null, 2) + '<p>\n'; } infoBoxViewModel.description = description; } else { infoBoxViewModel.description = Property.getValueOrDefault(selectedEntity.description, time, ''); } } else { infoBoxViewModel.titleText = ''; infoBoxViewModel.description = ''; }
To unsubscribe from this group and all its topics, send an email to cesium-dev+...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to cesium-dev+unsubscribe@googlegroups.com.