generateIngenuityHelicopterBalloon static method
Generates a KML balloon for the Ingenuity Helicopter.
The balloon contains an image and a description of the Ingenuity Helicopter.
Returns a string containing the KML balloon.
Implementation
static String generateIngenuityHelicopterBalloon() {
return KMLMakers.screenOverlayBalloon(
'''<div style="width: 480px; color: white; padding-left: 10px; padding-right: 10px;">
<center>
<div>
<img width="100%" height="auto" src="$droneImageUrl">
</div>
<h1 style="color:white; font-size: 28px;">Ingenuity Drone</h1>
<p style="color:white; font-size: 18px;">$droneIntroText</p>
<br>
<p style="color:white; font-size: 15px;">Space Visualizations | Liquid Galaxy | GSoC 2024</p>
</center>
</div>''');
}