mapx 复制图层并粘贴到新建图层中.

 




/*
MapInfo Products Knowledge Base
Product: MapX
Version: 5.x
Platform: Win9xNT€0
Category: VC++ Code Samples

Summary:
Copying features and data to a new layer in VC++.

Question:
The following code copies all of the features in the states table, along with their data, to a new table.

Answer:
*/


// Add the States layer
m_ctrlMapX.GetLayers().Add(LPCTSTR( " c:/work/c++copylayer/states.tab " ),  1 );

// Create a variant for the layer
VARIANT vLyr;
vLyr.vt 
=  VT_DISPATCH;
vLyr.pdispVal 
=  m_ctrlMapX.GetLayers().Item(LPCTSTR( " STATES " ));

// Create a dataset for the layer
m_ctrlMapX.GetDatasets().Add(miDataSetLayer,vLyr,LPCTSTR( " STATES " ));  // midatasetlayer

// reference the fields in the new dataset
CMapXFields Flds;
Flds 
=  m_ctrlMapX.GetDatasets().Item(LPCTSTR( " STATES " )).GetFields();

// Create a variant that points to the fields collection
VARIANT vFlds;
vFlds.vt 
=  VT_DISPATCH;
vFlds.pdispVal 
=  Flds.m_lpDispatch;

// Create a variant that points to the features
CMapXFeatures ftrs;
ftrs 
=  m_ctrlMapX.GetLayers().Item(LPCTSTR( " STATES " )).AllFeatures();

VARIANT vFtrs;
vFtrs.vt 
=  VT_DISPATCH;
vFtrs.pdispVal 
=  ftrs.m_lpDispatch;

// Create a new LayerInfo Object
CMapXLayerInfo Linfo;
Linfo.CreateDispatch(Linfo.GetClsid());

// Set the Layer Info type to type: New Table
Linfo.SetType(miLayerInfoTypeNewTable);

// Add the parameters for the new table
Linfo.AddParameter( " FileSpec " , COleVariant( " MyNewTab.tab " ));  // Tab file
Linfo.AddParameter( " Name " , COleVariant( " MyNewLayer " ));  // Layer name
Linfo.AddParameter( " Fields " , vFlds);  // Fields
Linfo.AddParameter( " Features " , vFtrs);  // Features

// Add the new layer to the map
m_ctrlMapX.GetLayers().Add(Linfo.m_lpDispatch);
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值