Obtenir un graphique

Obtenez un graphique en spécifiant son ID.

URL de la requête

<baseUrl>/arcgisearth/graphics/{id}

Paramètres de requête

ParamètreDescription

id

(obligatoire)

ID de graphique

Type : chaîne

Exemple d'utilisation

http://localhost:8000/arcgisearth/graphics/polyline-simple-line-graphic

Exemple de réponse JSON

Voici un exemple de réponse JSON pour un graphique linéaire :

{
    "id": "polyline-simple-line-graphic",
    "geometry": {
        "paths": [
            [
                [
                    -118,
                    34
                ],
                [
                    -100,
                    40
                ],
                [
                    -82,
                    34
                ]
            ]
        ],
        "type": "polyline"
    },
    "symbol": {
        "color": [
            51,
            204,
            51,
            255
        ],
        "type": "simple-line",
        "width": 1.5
    }
}