class AnchoredSceneService (Niantic.Experimental.ARDK.SharedAR.AnchoredScenes.AnchoredSceneService)

Overview

class AnchoredSceneService {
public:
    // classes

    class WayspotAnchorsData;

    // methods

    static void InitializeService(string endpoint);

    static AnchoredSceneServiceStatus ListAnchoredScenesInRadius(
        LatLng location,
        double radiusInMeters,
        out List<AnchoredScene> scenes
    );

    static void ReleaseService();

    static AnchoredSceneServiceStatus RetrieveAnchoredScene(
        string sceneId,
        out AnchoredScene scene
    );

    static AnchoredSceneServiceStatus StoreAnchoredScene(
        AnchoredScene scene,
        out string outSceneId
    );
};

Detailed Documentation

注釈

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

Methods

static AnchoredSceneServiceStatus ListAnchoredScenesInRadius(
    LatLng location,
    double radiusInMeters,
    out List<AnchoredScene> scenes
)

Get all AnchoredScenes within a radius of a location

Parameters:

location

LatLng location

radiusInMeters

Radius to query

scenes

Out list of scenes that were found. Will not be null