Google Mapsに天気レイヤーを追加する

天気レイヤー(摂氏表示)を追加する。

/* 変数mapにはGoogle Mapsオブジェクトが入っている */
var weatherLayer = new google.maps.weather.WeatherLayer( {
		temperatureUnits: google.maps.weather.TemperatureUnit.CELSIUS
	} );
weatherLayer.setMap( map );

Google Maps APIのJavaScript読み込み時にlibraries=weatherパラメータの指定を忘れないこと。サンプルで紹介されていたのは華氏表示(FAHRENHEIT)だったので、ここでは摂氏表示(CELSIUS)にしてみた。