Hoppa till huvudinnehållet

Max Query Results

Kommentarer

8 kommentarer

  • Craig Carsley

    I would also like to know this.

     

    1
  • Nico Burgerhart

    By default resultRecordCount=500 is added as parameter to the underlying query operation.

    3
  • Craig Carsley

    Is there a way to change that?

     

    0
  • Nico Burgerhart

    I don't know how.

    For an Identify, I know this can be defined by setting the maxResults parameter as an argument to the command, see
    https://developers.vertigisstudio.com/docs/web/api-commands-operations-events/#definition-IdentifyArgs

    0
  • Nico Burgerhart

      "name": "tasks.identify", 
      "arguments": { 
      "maxResults": 2000 
      } 
    }
    3
  • Craig Carsley

    Thank you! It was the name of the argument parameter that I needed.

    This worked for me:

    0
  • Nico Burgerhart

    For tasks.identify the default maximum number of results is 500 results.

    0
  • Cole McLaughlin

    Looked high and low, and eventually found this thread.  Unfortunately, the codes provided above are incomplete.  Below is the full copyable code for increasing the identify results for each geometry identify tool.

    [

        {

            "name": "sketching.capture-geometry",

            "arguments": {

                "geometryType": [

                    "square"

                ]

            }

        },

        {

            "name": "tasks.identify",

            "arguments": {

                "maxResults": 13000

            }

        },

        "results.display",

        "charts.display",

        "kpi.display"

    ]

        "results.display",

        "charts.display",

        "kpi.display"

    ]

    0

Du måste logga in om du vill lämna en kommentar.