hunglinhpt / jquery-weather

another AMD compatible yahoo weather plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Weather

Get weather from zipcode or woeid using yahoo's weather api

Getting Started

Use bower

bower install weather --save

or

Download the production version or the development version.

Using in your web page

<script src="jquery.js"></script>
<script src="dist/weather.min.js"></script>
<script>
jQuery(document).ready(function($) {
  weather('02210', function(err, result) {
    if (err) {
      alert('uh oh: ' + err);
      return;
    }
    alert(result.condition.temp);
  });
});
</script>

Using as an amd module

require(["components/weather/weather"], function(weather) {
  weather('02210', function(err, result) {
    if (err) {
      alert('uh oh: ' + err);
      return;
    }
    alert(result.condition.temp);
  });
});

Documentation

In addition to the yahoo provided information in the returned weather object, the weather.condition object has a symbols array and symbolLevel string. The symbols array is one or more unicode characters to represent the weather. The symbolLevel string is either 'light', 'normal', or 'heavy' to represent the weather symbol severity.

Examples

(Coming soon)

Release History

(Nothing yet)

About

another AMD compatible yahoo weather plugin

License:MIT License


Languages

Language:JavaScript 92.1%Language:HTML 7.9%