Sha256: 593eb302f710b0e0bc122eae3d8606ae7aa0af283218be3e533f556961535694
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
/*global define*/ define(['Core/loadWithXhr'], function( loadWithXhr) { "use strict"; /** * Asynchronously loads the given URL as a blob. Returns a promise that will resolve to * a Blob 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. * * @exports loadBlob * * @param {String|Promise} url The URL of the data, or a promise for the URL. * @param {Object} [headers] HTTP headers to send with the requests. * * @returns {Promise} a promise that will resolve to the requested data when loaded. * * @see <a href='http://www.w3.org/TR/cors/'>Cross-Origin Resource Sharing</a> * @see <a href='http://wiki.commonjs.org/wiki/Promises/A'>CommonJS Promises/A</a> * * @example * // load a single URL asynchronously * Cesium.loadBlob('some/url').then(function(blob) { * // use the data * }, function() { * // an error occurred * }); */ var loadBlob = function(url, headers) { return loadWithXhr({ url : url, responseType : 'blob', headers : headers }); }; return loadBlob; });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.25.0 | app/assets/javascripts/Core/loadBlob.js |