Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

373
Views
ArcGIS Esri Map - Console Error - Encountered error when fetching tile

I'm currently loading an ArcGIS Esri Web Map which is having some layers in my Angular application. But after loading the map successfully, I'm getting more than 20 console errors as below.

What could be the issue for getting the below console error?

Console error: - [esri.views.2d.layers.features.sources.FeatureSource] details: error: details: "[object]" message: "Error" name: "request:server" [[Prototype]]: Object tile: T {key: i, bounds: Array(4), objectIds: Set(0), tileInfoView: _, resolution: 9783.939620500008, …} [[Prototype]]: Object message: "Encountered error when fetching tile" name: "mapview-query-error" [[Prototype]]: o

.ts file

// Initialize MapView and return an instance of MapView
  initializeMap(esriToken) {
    const container = this.mapViewEl.nativeElement;
    config.apiKey = esriToken;
    esriConfig.request.timeout = 300000;
    const horizonData: any[] = this.esiriData || [];

    //load the webMap
    const webmap = new WebMap({
          portalItem: {
            id: this.webMapId
          }
        });

    // load the ParcelAtlas feature layer
    const layer = new FeatureLayer({
        url: this.featureLayerUrl,
        });
      webmap.add(layer);

    const view = new MapView({
      container,
      map: webmap,
      zoom: 4,
      center: [-97.63, 38.34],
    });


  const renderer = new SimpleRenderer({
    symbol: new TextSymbol({
      color: "red",
      text: "\ue612",
      font: {
        size: 15,
        family: "CalciteWebCoreIcons"
    }
    })
  });

  const dataFeedLayer = new FeatureLayer({
    source: horizonData.map((d,i)=>(
      {
          geometry: new Point({
            longitude: d.longitude,
            latitude: d.latitude
          }),
          attributes: {
            ObjectID: i,
            ...d
          }
      }
    )),
  objectIdField: 'ObjectID',
  geometryType: "point",
  renderer: renderer,
});

  webmap.add(dataFeedLayer);
  this.view = view;
  return this.view.when();

  }

.html file

<!-- Map Div -->
<div #mapViewNode></div>
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!