2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PowerApps小ネタ(天気)

Posted at

PowerAppsメモ

小ネタです

天気情報

■コネクタ
MSN天気をデータソースに追加
MicrosoftTranslatorをデータソースに追加(翻訳用)

■基本的な書き方

MSN天気.CurrentWeather(緯度 & " " & 経度,"Metric").responses.weather.current.cap

緯度経度の指定の仕方は("35.697180" "139.814072") ← googleMapで取得出来る緯度経度

コンボボックスで天気を切り替える

1.Shareaポイントに場所情報を登録
test1.png
2.コンボボックスに場所を表示
test2.png
3.天気情報を取得して表示
test3.png
各項目の表示方法

---更新
MSN天気.CurrentWeather(drop_tenpo.SelectedText.緯度 & " " & drop_tenpo.SelectedText.経度,"Metric").responses.weather.current.created
---現在の天気
MicrosoftTranslator.Translate(MSN天気.CurrentWeather(drop_tenpo.SelectedText.緯度 & " " & drop_tenpo.SelectedText.経度,"Metric").responses.weather.current.cap,"ja")
---現在の気温
MSN天気.CurrentWeather(drop_tenpo.SelectedText.緯度 & " " & drop_tenpo.SelectedText.経度,"Metric").responses.weather.current.temp & "℃"
---現在の湿度
MSN天気.CurrentWeather(drop_tenpo.SelectedText.緯度 & " " & drop_tenpo.SelectedText.経度,"Metric").responses.weather.current.rh & "%"
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?