0
0

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開発時、たまにアプリ上で距離計算の設計が出てきます。
忘れるので、メモーします。

1.bing maps basic keyを取得

・取得方法
https://www.xlsoft.com/jp/products/bing_maps/product-licensekey.html

・取得URL
https://www.bingmapsportal.com/Application#

2.powerapps bingmaps connector追加

image.png

3.button追加

image.png

Onselect:

Set(
    dist, 
    BingMaps.GetRouteV3(
        "Driving",
        "35.680798724134256, 139.76738237114552", 
        "35.665946731805526, 139.7708589538133"
    )
)   

4.変数内容確認

截屏2023-09-15 10.41.40.png

参考サイト

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?