Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
dev:viewer:sdk:initialize_js [2023/10/03 11:58]
pieter [Loading the library]
dev:viewer:sdk:initialize_js [2023/10/03 13:07] (current)
pieter [Loading the library]
Line 13: Line 13:
 It can be referenced by using this URL : **<nowiki>https://cdn.3dmapping.cloud/<version>/javascript/viewer_sdk_javascript.js</nowiki>** It can be referenced by using this URL : **<nowiki>https://cdn.3dmapping.cloud/<version>/javascript/viewer_sdk_javascript.js</nowiki>**
  
-__Note__: Before version 23.1.0, the name of the javascript file was ''orbitgt_3dm_sdk.js''.+__Note__: Before version 23.7.0, the name of the javascript file was ''orbitgt_3dm_sdk.js''.
  
 === Versions === === Versions ===
  
 Replace **<version>** by the actual version you want to use. \\  Replace **<version>** by the actual version you want to use. \\ 
-For example, to use SDK version 23.1.0 : <nowiki>https://cdn.3dmapping.cloud/23.1.0/javascript/viewer_sdk_javascript.js</nowiki>+For example, to use SDK version 23.7.0 : <nowiki>https://cdn.3dmapping.cloud/23.7.0/javascript/viewer_sdk_javascript.js</nowiki>
  
 The following dynamic versions are available :  The following dynamic versions are available : 
-  * ''stable'' - The stable release (3-6 months old) +  * ''stable'' - The last released version 
-  * ''beta'' - The latest release (0-3 months old) +  * ''beta'' - The version currently in development 
-  * ''alpha'' - An unreleased version (in development) +
- +
-The following dynamic versions are available :  +
-  * ''stable'' - The stable release (3-6 months old) +
-  * ''release'' - The current release (0-3 months old) +
-  * ''beta'' - The unreleased version (in development)+
  
 It is strongly advised to keep the referenced version of the Viewer SDK within your Plugin up to date. \\ It is strongly advised to keep the referenced version of the Viewer SDK within your Plugin up to date. \\
Line 43: Line 37:
 Add the following script tag to your application. Add the following script tag to your application.
  
 +Current stable release
 +<code>
 +<html>
 + <head>
 +   <script type="text/javascript" src="https://cdn.3dmapping.cloud/stable/javascript/viewer_sdk_javascript"></script>
 + </head>
 +</html>
 +</code>
 +
 +Specific named version, e.g. 23.7.0
 <code> <code>
 <html> <html>
  <head>  <head>
-   <script type="text/javascript" src="https://cdn.3dmapping.cloud/23.1.0/javascript/viewer_sdk_javascript"></script>+   <script type="text/javascript" src="https://cdn.3dmapping.cloud/23.7.0/javascript/viewer_sdk_javascript"></script>
  </head>  </head>
 </html> </html>
Line 61: Line 65:
 <html> <html>
   <head>   <head>
-    <script type="text/javascript" src="https://cdn.3dmapping.cloud/23.1.0/javascript/viewer_sdk_javascript.js"></script>+    <script type="text/javascript" src="https://cdn.3dmapping.cloud/stable/javascript/viewer_sdk_javascript.js"></script>
   </head>   </head>
   <body>   <body>
 
Last modified:: 2023/10/03 11:58