Calculator Tools Calculator Tools
Create

Google Weather Sandbox 3D

Oct 29, 2023

About this app

Experience the weather in a fun and interactive way with Google Weather Sandbox 3D.

Google Weather Sandbox 3D Google Weather Sandbox 3D

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Google Weather Sandbox 3D</title>
<meta name="description" content="Experience the weather in a fun and interactive way with Google Weather Sandbox 3D.">
<meta name="keywords" content="google, weather, sandbox, 3d, interactive, fun">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Get weather data from API
function getWeatherData() {
// Make API call to get weather data
const apiKey = "YOUR_API_KEY";
const apiUrl = `https://api.weatherapi.com/v1/current.json?key=${apiKey}&q=New York`;

$.ajax({
url: apiUrl,
method: "GET",
success: function(response) {
// Process weather data
const temperature = response.current.temp_c;
const condition = response.current.condition.text;
const icon = response.current.condition.icon;

// Update UI with weather data
$("#temperature").text(temperature + "°C");
$("#condition").text(condition);
$("#weather-icon").attr("src", icon);
},
error: function(error) {
console.log("Error getting weather data:", error);
}
});
}

// Refresh weather data every 5 minutes
setInterval(getWeatherData, 5 * 60 * 1000);

// Initial weather data fetch
getWeatherData();
});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
font-family: 'Roboto', sans-serif;
background-color: #f8f9fa;
}

h1 {
font-size: 40px;
font-weight: 700;
color: #333;
margin-bottom: 30px;
}

.weather-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-top: 100px;
}

.temperature {
font-size: 80px;
font-weight: 700;
color: #333;
margin-bottom: 10px;
}

.condition {
font-size: 24px;
color: #777;
margin-bottom: 20px;
}

.weather-icon {
width: 100px;
height: 100px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="weather-container">
<h1>Google Weather Sandbox 3D</h1>
<div class="temperature" id="temperature"></div>
<div class="condition" id="condition"></div>
<img class="weather-icon" id="weather-icon" src="" alt="Weather Icon">
</div>
</div>
</body>
</html>