天気レイヤー(摂氏表示)を追加する。
/* 変数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
)にしてみた。