viewof form = Inputs.form({
projection: Inputs.select(["equal-earth", "equirectangular", "mercator", "orthographic"], {label: "Projection"}),
lat: Inputs.range([-90, 90], {label: "Latitude", step: 1, value: 0}),
lon: Inputs.range([-180, 180], {label: "Longitude", step: 1, value: 0}),
scale: Inputs.range([0.1, 100], {label: "Scale", step: 0.1, value: 100})
})