loadJson

loadJson(url, headers)Promise

Asynchronously loads the given URL as JSON. Returns a promise that will resolve to a JSON object once loaded, or reject if the URL failed to load. The data is loaded using XMLHttpRequest, which means that in order to make requests to another origin, the server must have Cross-Origin Resource Sharing (CORS) headers enabled. This function adds 'Accept: application/json,*/*;q=0.01' to the request headers, if not already specified.
Name Type Description
url String | Promise The URL to request, or a promise for the URL.
headers Object optional HTTP headers to send with the request. 'Accept: application/json,*/*;q=0.01' is added to the request headers automatically if not specified.
Returns:
a promise that will resolve to the requested data when loaded.
Example:
Cesium.loadJson('http://someUrl.com/someJson.txt').then(function(jsonData) {
    // Do something with the JSON object
}).otherwise(function(error) {
    // an error occurred
});
See: