Table of Contents

Sparse spatial map list and preview

EasyAR Spatial Map typically stores a large amount of spatial map data. This chapter details how to obtain spatial map details and paginated lists.

Manage sparse maps via EasyAR web

In the visual interface, the system defaults to displaying sparse maps in a paginated list, sorted in reverse chronological order by last modification time (most recent changes appear first).

Sparse map list

Operation path: Log in to EasyAR Web [Developer Center] -> [SpatialMap] -> Select gallery -> Click [Manage].

On this page, you can perform the following operations:

  • List browsing: View paginated Spatial Map collections.

  • Detail entry: Click button 1 [Manage] to enter the map details page.

  • Precise search: In input box 2, the following search methods are supported:

    • Search by name: If your system names images by rules (e.g., in-app ID), quickly locate them by name.
    • Search by MapId
    • Search by Label, GPS: Only supported by Search API

    filter

Spatial map detail information

After entering the details page, you can view the full attributes of the spatial map, including:

  • Preview: Preview image.
  • Name: Spatial Map name.
  • MapId: System-generated unique ID.
  • Status: Enabled or disabled.
  • Label: Custom labels for easy searching, supports Search API retrieval.
  • GPS: Spatial GPS location, custom coordinate system, supports Search API retrieval.
  • Custom Meta: Metadata associated with this Spatial Map (e.g., model URL).

detail

Use api to view spatial map list

For developers needing integration into their own backend, using the REST API is recommended.

Reference documentation: Spatial Map List API Interface

Preparation list

Before making requests, ensure you have the following resources (see API call preparation list):

  • SpatialMap AppId
  • API Key/Secret or Token
  • Cloud URL
    • China and Southeast Asia users: https://armap-api.easyar.com
    • Other users: https://armap-api-na1.easyar.com

Please replace the placeholder with actual parameters, and run the curl script

  • Your-URL → Actual Cloud URL
  • Your-Token → Actual API Key Authorization Token
  • Your-SpatialMap-AppId → Actual SpatialMap appId
curl -X GET "https://armap-api-<cn1|na1>.easyar.com/maps?appId=<Your-SpatialMap-AppId>" \
  -H "Content-Type: application/json" \
  -H "Authorization: <Your-Token>" 

Next topic: