Grafik abrufen

Sie können eine Grafik abrufen, indem Sie die Grafik-ID angeben.

Anforderungs-URL

<baseUrl>/arcgisearth/graphics/{id}

Anforderungsparameter

ParameterBeschreibung

id

(erforderlich)

Grafik-ID

Typ: String

Beispiel für die Verwendung

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

Beispiel für eine JSON-Antwort

Im Folgenden sehen Sie ein Beispiel für eine JSON-Antwort für eine Liniengrafik:

{
    "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
    }
}