myGlobe = Globe()
.height(width / 2)
.globeImageUrl("//unpkg.com/three-globe/example/img/earth-day.jpg")
.backgroundImageUrl("//unpkg.com/three-globe/example/img/night-sky.png")
.pointLat((d) => d.geometry.coordinates[1])
.pointLng((d) => d.geometry.coordinates[0])
.pointRadius(0.7)
.pointAltitude((d) => heightScale(d.properties.mag))
.pointColor((d) => {
if (d.properties.tsunami) {
return "#00e9ff";
} else {
if (d.properties.sig > 500) {
return "#ff4949";
} else {
return "white";
}
}
})
.pointLabel(
(d) => `
<div style="padding: 3px; color:black; font-weight:bold; background-color:white;">${d.properties.title}</div>
`
)
.pointsData(earthquakes.features)