When we load a dataset in localhost, microdraw first tries to load the JSON from the app, which takes some time, and then after the fail it tries to download from the server. The app request is blocked by CORS so it is useless to wait, and in case it would not we could get an error as the json has to be modified by the server for a cross domain request.
By downloading directly we get:
When we load a dataset in localhost, microdraw first tries to load the JSON from the app, which takes some time, and then after the fail it tries to download from the server. The app request is blocked by CORS so it is useless to wait, and in case it would not we could get an error as the json has to be modified by the server for a cross domain request. By downloading directly we get:
By downloading with the server we get:
Only the second will work when in localhost, as the dzi is not part of the local version.