opensourceBIM / BIMsurfer-before2019

This is the repository of the v1 and v2 version of BIM Surfer. It is not maintained anymore. Find the most recent version on https://github.com/opensourceBIM/BIMsurfer
MIT License
432 stars 195 forks source link

BimSurfer 0.143 #243

Open dariotortone opened 6 years ago

dariotortone commented 6 years ago

Hi all,

i've been trying to update BimServer and BimSurfer to the last available released versions

BimServer 1.5.95 BimSurfer 0.0.43 BimServerApi 0.0.140

But the following code, taken from BimSurfer's GitHub Page (https://github.com/opensourceBIM/BIMsurfer), which was working with previous versions e.g. BimServer 1.5.85 BimSurfer 0.0.41 BimServerApi 0.0.120

seems to be out of date now...

bimSurfer = new BimSurfer({ domNode: "bim-viewer" });

...

bimSurfer.load({ bimserver: bimServerUrl, token: client.token, poid: projectToDraw.oid, roid: revisionToDraw.oid, schema: "ifc2x3tc1" // < TODO: Deduce automatically }).then(function (model) { model.getTree().then(function (tree) { ...

It seems that the BimSurfer class does not exist anymore !!!

We're trying to use BimServer and Surfer in a production environment but it seems we're no able to deal with updates...

May you please show what's to be done in order to upgrade to the last version ? Should we downgrade to another version ???

I have tried to run the examples in the 0.43 released version of BimSurfer (Example1.html) but it does not work either...

Dario