loadArrayBuffer

loadArrayBuffer(url, headers)Promise

Asynchronously loads the given URL as raw binary data. Returns a promise that will resolve to an ArrayBuffer 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.
Name Type Description
url String | Promise The URL of the binary data, or a promise for the URL.
headers Object optional HTTP headers to send with the requests.
Returns:
a promise that will resolve to the requested data when loaded.
Example:
// load a single URL asynchronously
Cesium.loadArrayBuffer('some/url').then(function(arrayBuffer) {
    // use the data
}.otherwise(function(error) {
    // an error occurred
});
See: