XR8.Vps.projectWayspots()
XR8.Vps.projectWayspots()
Beschreibung
Fragen Sie Daten über jeden Ihrer Projekt-Wayspots ab.
Parameter
Keine
Returns
Ein Versprechen mit einem Array von ClientWayspotInfo
, das Daten über jeden Ihrer Projekt-Wayspots enthält.
[{id, name, imageUrl, title, lat, lng }]
Eigentum | Typ | Beschreibung |
---|---|---|
id | String | id für diesen Wayspot, nur innerhalb einer Sitzung stabil. |
name [Optional] | String | Ein Verweis auf einen Projekt-Wayspot. |
imageUrl | String | URL zu einem repräsentativen Bild für diesen Wayspot. |
titel | String | Der Titel des Wayspots. |
lat | Nummer | Breitengrad des Projekt-Wayspots. |
lng | Nummer | Längengrad des Projekt-Wayspots. |
Beispiel
// Protokollieren Sie das Projekt-Wayspots.
XR8.Vps.projectWayspots().then((projectWayspots) => {
projectWayspots.forEach((projectWayspot) => {
console.log('projectWayspot: ', projectWayspot)
})
})