I am new to the plugin development of BimClientServerLib. I have to create a plugin/service where i just need the 3D view and get all the information, so that if i push some information like simulate Door_1 it should be highlighted in the 3D View.I have used the [BimServerClientLib] to check in the project and retrieve some information like get all levels or get all detectors with existing BimViews as 3D viewer and the BIMServerClientLib as a separate Java service.Also, if i use the BimViews which is in Java script how do i push information with the service in Java.
How to create a 3D view just like BimViews using Java?
251 views Asked by Shubham At
1
There are 1 answers
Related Questions in IFC
- openbim-components with node js
- How to make FragmentHighlighter to highlight an element with pure highlighter's color in openbim-components (IFCjs) + THREE.js
- openbim-components | OrthoPerspectiveCamera is slow/stuck when I zoom in the model
- IFC File, React, change elements color
- How Highlight IFC Model in Three.js with Raycasting
- Colorize, Transparent and Move Selected Entities on Xbim Control
- Set material only to one instance of the fragmentMesh class from Open Bim Components library / Three js
- Revit vb.net change IFC Parameter value
- Compilation error when compiling IFC++ and TBB
- XBIM - how to get rotation of an object (flowterminal)
- How to modify ifc file with xbim explorer
- Autodesk Revit: IfcGUID for Rooms changes every time
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- How the Revit MEP Connector properties can be exported to IFC entity?
- Find out what is causing the ifc file to not complete importing
Related Questions in BIM
- openbim-components with node js
- Open-bim-components - Global ID/Express ID from Selection
- Navisworks API selection null reference exception
- Applying rotation matrices from Open3D to objects in IFC OpenShell
- Revit Model Opening Automation
- Dynamo/ Revit Clash Detection
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- external Ids exist in SQLlite file but not in model derivative API
- Extracting external walls from an IFC file using the selector syntax in IFCOPENSHELL
- Facing Bad Request Issue when Creating A Model Set using AutoDesk API
- Is it possible to add custom properties to a translated SVF2 file via API or at Runtime in Forge?
- Repeated error when trying to run Admixture with .bed file
- How to create element with arbitrary shape using xbim toolkit?
- Problem in python script using ifcopenshell module
- From BIM model to Unity for VR
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Have a look at BIMSurfer. Download the project into any server (like tomcat), then navigate to the index.html. They have two examples, local one without a BIMServer and another with a connection to BIMServer.
You can adjust their BIMServer example to load your project and for highlighting a specific element, you can the provided library methods (available on the BIMSurfer github main page).
Goodluck.