Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Create search.html
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseWx2011 authored Nov 4, 2023
1 parent a4beac5 commit d5e86f3
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions other-scripts/aeris-weather/search.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>WeatherBlox</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />

<link rel="stylesheet" href="https://cdn.aerisapi.com/wxblox/latest/aeris-wxblox.css">
<script defer src="https://cdn.aerisapi.com/wxblox/latest/aeris-wxblox.js"></script>

</head>
<body>

<!--// target DOM element where WeatherBlox will be rendered //-->
<div id="wxblox" class="aeris-wrapper"></div>

<script>
window.onload = () => {
// set Aeris account access keys
const aeris = new AerisWeather('DZLMGEFxCvfbQRG7aSN3c', 'N63dulcmKzQTrWjIrTe2aGKmOw5AhERWWUmjHQKt');

aeris.on('ready', () => {

// create desired WeatherBlox instance
const view = new aeris.wxblox.views.PlaceSearch('#wxblox', {
autoselect: true,
searchOnChange: true
});

// load data and render the view for a specific location
view.load();

});
};
</script>

</body>
</html>

0 comments on commit d5e86f3

Please sign in to comment.