cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
dkbollig
Frequent Visitor

Power App Component Framework with ArcGis Embed

Hey All

 

I have been working to see if I can create an embed of an arcgis map but I find I am having a hard time with typescript errors. For example when using the typescript library of arcgis-js-api it --  "Can't resolve 'esri/Maps'".  I have attached a standard html / javascript implementation example. 

 

https://codepen.io/dkbollig/pen/WNNyWzm?&editable=true&editors=100

 

Thanks for any help on this.

21 REPLIES 21
v-yutliu-msft
Community Support
Community Support

Hi @dkbollig ,

Do you want to create an embed of an arcgis map in PowerApps?

Actually, in PowerApps it's not supported to connect with arcgis map currently.

If you want to use a map in PowerApps, I suggest you try Google map or bing map.

Here are docs about how to use these two maps in PowerApps for your reference:
https://community.dynamics.com/crm/b/magnetismsolutionscrmblog/posts/embedding-maps-into-a-powerapps...

https://powerapps.microsoft.com/en-us/blog/image-control-static-maps-api/

 

 

Best regards,

Community Support Team _ Phoebe Liu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Wanted to clarify I created a PCF using arcgis-js-api and esri-loader to create a map. Here is the code below on how I achieved it.

 

import { IInputs, IOutputs } from "./generated/ManifestTypes";
import { setDefaultOptions, loadModules } from "esri-loader";

export class TerritoryComponent
  implements ComponentFramework.StandardControl<IInputs, IOutputs> {
  map: __esri.Map;
  mapView: __esri.MapView;
  private _mapContainer: HTMLDivElement;
  /**
   * Empty constructor.
   */
  constructor() {}

  /**
   * Used to initialize the control instance. Controls can kick off remote server calls and other initialization actions here.
   * Data-set values are not initialized here, use updateView.
   * @param context The entire property bag available to control via Context Object; It contains values as set up by the customizer mapped to property names defined in the manifest, as well as utility functions.
   * @param notifyOutputChanged A callback method to alert the framework that the control has new outputs ready to be retrieved asynchronously.
   * @param state A piece of data that persists in one session for a single user. Can be set at any point in a controls life cycle by calling 'setControlState' in the Mode interface.
   * @param container If a control is marked control-type='standard', it will receive an empty div element within which it can render its content.
   */
  public init(
    context: ComponentFramework.Context<IInputs>,
    notifyOutputChanged: () => void,
    state: ComponentFramework.Dictionary,
    container: HTMLDivElement
  ) {
    // Add control initialization code

    this._mapContainer = document.createElement("div");
    this._mapContainer.setAttribute("id", "mapNode");
    this._mapContainer.setAttribute("style", "height:90vh;");

    container.append(this._mapContainer);

    setDefaultOptions({ css: true });

    loadModules(["esri/views/MapView", "esri/WebMap"])
      .then(([MapView, WebMap]) => {
        // then we load a web map from an id
        var webmap = new WebMap({
          portalItem: {
            // autocasts as new PortalItem()
            id: "{WebMap ID Here}"
          }
        });
        // and we show that map in a container w/ id #viewDiv
        var view = new MapView({
          map: webmap,
          container: "mapNode"
        });
      })
      .catch(err => {
        // handle any errors
        console.error(err);
      });
  }

  /**
   * Called when any value in the property bag has changed. This includes field values, data-sets, global values such as container height and width, offline status, control metadata values such as label, visible, etc.
   * @param context The entire property bag available to control via Context Object; It contains values as set up by the customizer mapped to names defined in the manifest, as well as utility functions
   */
  public updateView(context: ComponentFramework.Context<IInputs>): void {
    // Add code to update control view
  }

  /**
   * It is called by the framework prior to a control receiving new data.
   * @returns an object based on nomenclature defined in manifest, expecting object[s] for property marked as “bound” or “output”
   */
  public getOutputs(): IOutputs {
    return {};
  }

  /**
   * Called when the control is to be removed from the DOM tree. Controls should use this call for cleanup.
   * i.e. cancelling any pending remote calls, removing listeners, etc.
   */
  public destroy(): void {
    // Add code to cleanup control if necessary
  }
}

 

I came up with some code which looks very similar to yours (@dkbollig), which uses esri-loader and the ArcGIS typescript typings.

In my case I had to alter the path referenced by the esri-loader import command to the following:

'../node_modules/esri-loader/dist/esm/esri-loader'

Frustratingly, my code runs perfectly in the npm test harness, but doesn't work in an actual PowerApp...

 

 

Hey There

 

What sort of issues are you running into? I also have had some issue when getting it up and going, and one of the issues is that I believe is some conflict between jquery versions loading up between the arcgis framework and the powerapp (Dynamics 365 CE). What I did to fix it was disabling the skype for business plugin which seemed to be the culprit. 

 

Hope this helps!

Derek

Hi Derek,

 

  So far I can't get the map to work at all in an actual PowerApp - it just ends up "empty", without any of the layers that should have loaded. That's despite everything working fine in the test harness. It seems like none of the ESRI JS API object methods that need to make Ajax calls are working, but they're failing without generating any specific errors.

  If you now have a simple component that works for you in an app, would you be willing to post the code?

 

Andy.

Andy

 

So the map loads but without any layers? 

 

Derek

  I think I'm trying to do the same as you - create a webmap object and then refer to that when creating the map. I don't see any JS errors, but the map doesn't end up with any of the webmap's layers.

  I've tried directly adding another tile layer after that, and that's the one thing that gives me a JS error (I've had to "break" the URLs in the text below as they are detected as "invalid HTML" by the forum form):

"TypeError: Cannot read property 'length' of null
    at Object.c._notifyChangeEvent (https: //js.arcgis.com/4.14/dojo/dojo.js:600:194)
    at Object.c._splice (https: //js.arcgis.com/4.14/dojo/dojo.js:599:135)
    at Object.c.add (https: //js.arcgis.com/4.14/dojo/dojo.js:586:101)
    at TSArcGISMapControl.eval (webpack://pcf_tools_652ac3f36e1e4bca82eb3c1dc44e6fad/./TSArcGISMapControl/index.ts?:124:35)
    at Generator.next (<anonymous>)
    at fulfilled (webpack://pcf_tools_652ac3f36e1e4bca82eb3c1dc44e6fad/./TSArcGISMapControl/index.ts?:23:24)
    at Object.p [as _notify] (https: //content.powerapps.com/resource/app/s5i89talcktdc/js/winjs/base.js:2:37490)
    at Object.enter (https: //content.powerapps.com/resource/app/s5i89talcktdc/js/winjs/base.js:2:41064)
    at c.Class.derive._creator._run (https: //content.powerapps.com/resource/app/s5i89talcktdc/js/winjs/base.js:2:42892)
    at c.Class.derive._creator._completed (https ://content.powerapps.com/resource/app/s5i89talcktdc/js/winjs/base.js:2:42333)"

 

 

A

If I "inspect element" on the map's div, it doesn't have a canvas child element, or any button UI child elements. So there isn't a tangible map in the DOM. But I guess that might just be because there are no layers! It's a bit chicken and egg at the moment.

Hey Andy

 

I'll post an example tonight when I get back into the office. Few questions for you though.

 

  • Running the application locally works?
  • Is your webmap private or public? (You need a resource proxy if you want to display the private map without requiring a user to enter a username / password)
  • Could you post an link to your code through codepen? 

Thanks

Derek

 

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,045)