PushPine ObjectID 与 ForgeViewer 中选定的 ObjectID 不同

问题描述

当在 forgeViewer 中创建 Pushpine 时,我想要特定 PushPin 选择的实体对象的 objectID?

但是当我使用 issue.objectId 进行检查时,当我通过鼠标单击选择相同的对象时,我的值与值不同..

peter or any autodesk developer help me out....

var issue = PushPinExtensionHandle.getItemById('0');
// This is how the API expects to receive the data:
var data = {
  type: issue.type,attributes: {
    title: userForm.title,// In our example,this is the ``title`` the user sets in the form data (see step 3).
    // The extension retrieved the ``type`` and ``status`` properties in step 3,concatenated them,added a dash,and
    // assigned the new string to the ``status`` property of the newly created pushpin object. For example,``issues-
    // open``.
    // You now need to extract the ``status`` (``open``) from the pushpin object.
    status: issue.status.split('-')[1] || issue.status,// The ``target_urn`` is the ID of the document (``item``) associated with an issue; see step 1.
    target_urn: 
    starting_version: <YOUR_VERSION_ID>,// See step 1 for the version ID.
    // The issue type ID and issue subtype ID. See GET ng-issue-types for more details.
    ng_issue_type_id: <ISSUE_TYPE_ID>
    ng_issue_subtype_id: <ISSUE_SUBTYPE_ID>
    // ``sheet_metadata`` is the sheet in the document associated with the pushpin.
    sheet_metadata: { // `viewerApp.selectedItem` references the current sheet
      is3D: viewerApp.selectedItem.is3D(),sheetGuid: viewerApp.selectedItem.guid(),sheetName: viewerApp.selectedItem.name()
    },pushpin_attributes: { // Data about the pushpin
      type: 'TwoDVectorPushpin',// This is the only type currently available
      object_id: issue.objectId,// (Only for 3D models) The object the pushpin is
      location: issue.position,// The x,y,z coordinates of the pushpin
      viewer_state: issue.viewerState // The current viewer state. For example,angle,camera,zoom
    },}
};
// See step 6 for de

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...