Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

185
Visualizações
How to get result of recursive callback function

I'm using an API (mapbox) which has an async method using a callback function to get features from clusters on the map. Since each cluster may contain other clusters I need to call this recursively to get all the features. I've written this recursive method:

getClusterChildrenRecursive(clusterId: any, features: any[] = []) {
  //API call, I can't modify method getClusterChildren
  this.map.getSource('events').getClusterChildren(clusterId, (err, children) => {
    for (let i = 0; i < children.length; i++) {
      if (children[i].properties.cluster) {
        //Child is another cluster, recurse
        this.getClusterChildrenRecursive(children[i].properties.cluster_id, features);
      }
      else {
        //Found feature, add to collection
        features.push(children[i]);
      }
    }
  });
}

But I can't figure out how to call this and return a collection of all features. I've thought of returning a promise but can't get it to work.

about 4 years ago · Juan Pablo Isaza
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda