Closed pnwk112 closed 6 years ago
I'm trying to convert dgn file to GeoJSON using a POST request and i'm getting status 500 (internal server error). Here is my code:
var url = URL.createObjectURL(file); $.ajax('http://ogre.adc4gis.com/convert', { type: 'POST', data: { upload: url, sourceSrs: 'EPSG:3857' } }).done(function (response) { console.log(response); }).always(function () { });
POST requests are multipart/form-data.
multipart/form-data
I'm trying to convert dgn file to GeoJSON using a POST request and i'm getting status 500 (internal server error). Here is my code: