Eine Grafik ist eine Vektordarstellung eines realen geographischen Phänomens. Sie kann Geometrie und ein Symbol enthalten. Fügen Sie ArcGIS Earth eine Grafik hinzu, und geben Sie die Grafik-ID und die entsprechenden Informationen zurück.
Anforderungs-URL
<baseUrl>/arcgisearth/graphics(POST only)
Anforderungsparameter
Parameter | Beschreibung |
---|---|
ID (optional) | Gibt die ID einer Grafik an. Typ: String |
geometry (erforderlich) | Position und Geometrietyp einer Grafik. Damit werden die JSON-Formate der Geometrie und Raumbezugsobjekte definiert. Unterstützt Punkt-, Polylinien- und Polygon-Geometrie. Punktparameter:
JSON-Syntax: Polylinienparameter:
JSON-Syntax: Polygonparameter:
JSON-Syntax: |
symbol (optional) | Symbol für die Grafik. Die Auswahl eines Symbols für eine Grafik hängt vom Geometrietyp der Grafik ab. Typ: Double
|
Beispiel für die Verwendung
Im Folgenden ist ein Beispiel für eine Eingabe zum Hinzufügen einer Punktgrafik dargestellt:
{
"id": " 4b75ea4a-e10f-d676-307d-aa945e2a0719",
"geometry": {
"type": "polygon",
"rings": [[
[-96.06138,32.837],
[-97.06133,34.836],
[-98.06124,34.834],
[-97.06127,32.832],
[-97.06138,32.837]
]],
"spatialReference": {"wkid": 4326}
},
"symbol": {
"type": "simple-fill",
"color": [76,115,0,255],
"outline":{
"color": [110,110,110,255],
"width": 1
}
}
}
Im Folgenden ist ein Beispiel für eine Eingabe zum Hinzufügen einer Punktgrafik dargestellt:
{
"id": "polyline-simple-line-graphic",
"geometry": {
"type": "polyline",
"paths": [
[
-118,
34
],
[
-100,
40
],
[
-82,
34
]
]
},
"symbol": {
"type": "simple-line",
"color": "#33cc33",
"width": "2px"
}
}
Im Folgenden ist ein Beispiel für eine Eingabe zum Hinzufügen einer Polygongrafik dargestellt:
{
"id": " 4b75ea4a-e10f-d676-307d-aa945e2a0719",
"geometry": {
"type": "polygon",
"rings": [
[
[-96.06138,32.837],
[-97.06133,34.836],
[-98.06124,34.834],
[-97.06127,32.832],
[-97.06138,32.837]
]
],
"spatialReference": {"wkid": 4326}
},
"symbol": {
"type": "simple-fill",
"color": [76,115,0,255],
"outline":
{
"color": [110,110,110,255],
"width": 1
}
}
}
Beispiel für eine JSON-Antwort
Im Folgenden ist ein Beispiel für eine JSON-Antwort zum Hinzufügen einer Punktgrafik dargestellt:
{
"id": "point-picture-marker-graphic",
"geometry": {
"x": -100,
"y": 40,
"type": "point"
},
"symbol": {
"angle": 0,
"height": 48,
"type": "picture-marker",
"url": "https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png",
"width": 48,
"xoffset": 7.5,
"yoffset": 7.5
}
}
Im Folgenden ist ein Beispiel für eine JSON-Antwort zum Hinzufügen einer Liniengrafik dargestellt:
{
"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
}
}
Im Folgenden ist ein Beispiel für eine JSON-Antwort zum Hinzufügen einer Polygongrafik dargestellt:
{
"id": " 4b75ea4a-e10f-d676-307d-aa945e2a0719",
"geometry": {
"rings": [
[
[
-96.06138,
32.837
],
[
-97.06133,
34.836
],
[
-98.06124,
34.834
],
[
-97.06127,
32.832
],
[
-97.06138,
32.837
],
[
-96.06138,
32.837
]
]
],
"spatialReference": {
"wkid": 4326
},
"type": "polygon"
},
"symbol": {
"color": [
76,
115,
0,
255
],
"outline": {
"color": [
110,
110,
110,
255
],
"width": 1
},
"type": "simple-fill",
"width": 1.5
}
}