Asynchronously loads the given URL. Returns a promise that will resolve tothe result once loaded, or reject if the URL failed to load. The data is loadedusing 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 | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
Object with the following properties:
|
Returns:
a promise that will resolve to the requested data when loaded. Returns undefined if
request.throttle
is true and the request does not have high enough priority.
Example:
// Load a single URL asynchronously. In real code, you should use loadBlob instead.
Cesium.loadWithXhr({
url : 'some/url',
responseType : 'blob'
}).then(function(blob) {
// use the data
}).otherwise(function(error) {
// an error occurred
});