Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h2>4DLinkAPIサンプルコード</h2>
  <p>この例では、プロジェクトを作成してから、選択したファイルを4dlinkアカウントのそのプロジェクトにアップロードします。 プロジェクト名がすでに存在する場合は、ファイルのアップロードに使用されます。</p>
  
<p> 4dlinkプロジェクトを新しいタブで開き、ファイルがリアルタイムでアップロードされていることを確認してください。</p>

  <label>作成するプロジェクト名:</label>
  <input type="text" id="projectName" value="MyNewProject">
 <p><label>アップロードする画像ファイルを選択します。 </label>
  <input type="file" id="imageUploads" accept=".jpg, .jpeg, .png" multiple>
  <p> <button class="uploadButton">アップロードを開始します</button>
  <div class="status">
    </div></p>

  
              
            
!

CSS

              
                
              
            
!

JS

              
                const myClientID = ""; //ここにクライアントアカウントclienIDを貼り付けます
const myClientSecret = ""; //アカウントのクライアントシークレットをここに貼り付けます
//続行する前に、https://app.4dlink.com/app/admin/apisから4dlinkアカウントのclientIDとclientSecretを取得できます。
import {createProject,upload} from 'https://4dmapper.com/API/4dlink.js';

const status = document.querySelector('.status');
document.querySelector(".uploadButton").addEventListener("click", uploadData);

function uploadData(){
   if (myClientID == 0) {
       status.textContent="無効なAPI認証情報、https://app.4dlink.com/app/admin/apisにアクセスしてAPI認証情報を取得してください";
        return;
    };
  var projectName = document.getElementById("projectName").value;
  createProject(projectName,myClientID,myClientSecret);
  const input = document.querySelector("input[type=file]");
  const curFiles = input.files;
  if (curFiles.length === 0) {
    status.textContent = '現在アップロード用に選択されているファイルはありません';
    } else {
          for (const file of curFiles) {
            upload (file, file.name,file.size,projectName,myClientID,myClientSecret)
            .then(res => { 
              console.log(res);
              status.textContent = res.payload.name +" アップロードしました。";
                          });
      }}}



              
            
!
999px

Console