Skip to main content

Notifications

Community site session details
Power Apps - Building Power Apps
Answered

Plot Latitude Longitude on Map

Like (0) ShareShare
ReportReport
Posted on 23 Apr 2020 19:59:21 by

I am trying to create an app that I can plot multiple latitude and longitude points on map. We are a trucking company and I want to be able to create breadcrumb trails for our trucks. So essentialy in the powerapp, you would enter the truck number and date range and then the powerapp will plot coordinates on a map. Is there any documentation for this or does anyone have a helpful solutions? Thank you very much!

  • Verified answer
    v-bofeng-msft Profile Picture
    on 24 Apr 2020 at 06:26:07
    Re: Plot Latitude Longitude on Map

    Hi @Anonymous :

    Do you want to show multiple points in a Bing map?

    The key is using URL.( Get a map with pushpins that does not specify a center point or map area)

    I assume that the data structure of your data source is the same as mine.

    My data source: truck

     

    ClearCollect(
     truck,
     {
     truckname: "AA",
     lat: 39.83,
     Long: -100.51
     },
     {
     truckname: "BB",
     lat: 45.67,
     Long: -122.81
     }
    )

     

    I’ve made a test for your reference:

    Set the image control’s image property to :

     

    "https://dev.virtualearth.net/REST/v1/Imagery/Map/Road?&"
    &
    Concat(AddColumns(
     truck,
     "pp",
     "pp=" & lat & "," & Long & ";" & 21 & ";" & truckname
     ),
     pp,
     "&"
    ) /*Adjust the data table to the string required by the URL through the combination functions*/ 
    &
    "&key=AivzmzqHNnj7ZFj1kBy-y3jwUi47k786wERV8Z-5HN4hnwqRtArHBQnfyjpxnVZV" /*” Aivzmzq……“ is my key*/

     

     

    I think this link will help you a lot:

    Get a Static Map

     

    Best Regards,

    Bof

Helpful resources

Quick Links

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Leaderboard > Power Apps - Building Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 298 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 174

#3
stampcoin Profile Picture

stampcoin 132

Overall leaderboard
Loading started
Loading complete