Axis limits in 3D Makie plot

How can I set the axis limits in this Makie code?

	using Distributions
	using Makie
	using WGLMakie

	N = 50
	lat = rand(-20.:20., N)
	lon = rand(-180.:180., N)
	temp_dist = Normal(85, 5)
	temp = rand(temp_dist, N)
	data = hcat(lat, lon, temp)
	fig = Figure(resolution=(680,480))
	ax = LScene(fig[1, 1], show_axis=true)
	scatter!(
		ax,
	    lat, lon, temp
	)
	fig