[转载]MapXtreme实用技巧与源码10例

1 设置图层可选状态
ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
/// 改变层的可选择状态
/// </summary>
/// <param name="selectableStatus"></param>
/// <returns></returns>

public   bool  LayerSelectableStatusUpdate( string  tableAlias, bool  selectableStatus)
ExpandedBlockStart.gifContractedBlock.gif
{
 
if(mapControl1.Map.Layers[tableAlias]==null)
  
return false;

 MapInfo.Mapping.LayerHelper.SetSelectable(mapControl1.Map.Layers[tableAlias],selectableStatus);
 
return true;
}

 2 设置层的可用状态

ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
/// 改变层的可用状态为status
/// </summary>
/// <param name="layerName"></param>
/// <param name="status"></param>

public   void  LayerEnableStatusUpdate( string  layerName, bool  status)
ExpandedBlockStart.gifContractedBlock.gif
{
 
if(mapControl1.Map.Layers[layerName]!=null && mapControl1.Map.Layers[layerName].Enabled!=status)
ExpandedSubBlockStart.gifContractedSubBlock.gif 
{
  mapControl1.Map.Layers[layerName].Enabled
=status;
 }

}

 3 层居中,看全图

ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
/// 使指定层全部呈现在地图的可见范围中
/// </summary>
/// <param name="tableAlias">层别名</param>

public   void  LayerCenter( string  layerName)
ExpandedBlockStart.gifContractedBlock.gif
{
 MapInfo.Data.Table[] tables
=new MapInfo.Data.Table[1];
 tables[
0= MapInfo.Engine.Session.Current.Catalog.GetTable(layerName);
 
if(tables[0]==null)
  
return;
 
if(mapControl1.Map.Layers[layerName]==null)
  
return;

 
if(mapControl1.Map.Layers[layerName].Enabled == false)
  mapControl1.Map.Layers[layerName].Enabled 
= true;

 MapInfo.Mapping.IMapLayerFilter iMapLayerFilter 
= MapInfo.Mapping.MapLayerFilterFactory.FilterByTable(tables);
 MapInfo.Mapping.MapLayerEnumerator mapLayerEnumerator 
= mapControl1.Map.Layers.GetMapLayerEnumerator(iMapLayerFilter);
 mapControl1.Map.SetView(mapLayerEnumerator);
 OnFeatureUnclick();
}

 

4 放大缩小地图

ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
/// 放大地图
/// </summary>
/// <param name="times">放大倍数,有效值1-10</param>

public   void  ZoomIn( uint  times)
ExpandedBlockStart.gifContractedBlock.gif
{
 
if(times<1 || times>10return;
 MapInfo.Geometry.Distance previousZoom
=this.mapControl1.Map.Zoom;
 mapControl1.Map.Zoom
=new MapInfo.Geometry.Distance(previousZoom.Value/(2*times),previousZoom.Unit);
}

ExpandedBlockStart.gifContractedBlock.gif
/**/ /// <summary>
/// 缩小地图
/// </summary>
/// <param name="times">缩小倍数,有效值1-10</param>

public   void  ZoomOut( uint  times)
ExpandedBlockStart.gifContractedBlock.gif
{
 
if(times<1 || times>10return;
 MapInfo.Geometry.Distance previousZoom
=this.mapControl1.Map.Zoom;
 mapControl1.Map.Zoom
=new MapInfo.Geometry.Distance(previousZoom.Value*(2*times),previousZoom.Unit);
}

 

5 移动层的顺序
mapControl1.Map.Layers.Move(index1,index2);

6 图元/图层透明

ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
/// 设置层的透明与否
/// </summary>
/// <param name="layerName">层名</param>
/// <param name="opaqueType">不透明类型 ALL 全部不透明 BORDER 只有边界不透明(内部透明) NONE 全部透明</param>
/// <param name="borderColor">如果是边界不透明,此处设置边界颜色</param>

public   void  LayerTransparent( string  layerName,OpaqueType opaqueType,System.Drawing.Color borderColor)
ExpandedBlockStart.gifContractedBlock.gif
{

 MapInfo.Styles.CompositeStyle compositeStyle 
= GetOpaqueStyle(opaqueType,borderColor);

 
//创建连接和命令来更新table中的数据
 MapInfo.Data.MIConnection connection=new MapInfo.Data.MIConnection();
 connection.Open();
 MapInfo.Data.MICommand command
=connection.CreateCommand();
 command.CommandText 
= "update " + layerName + " set obj=obj,MI_Style=@style";
 command.Parameters.Add(
"@style",compositeStyle);
 command.Prepare();
 command.ExecuteNonQuery();

 
//关闭连接
 command.Cancel();
 command.Dispose();
 connection.Close();
 connection.Dispose();
}

ExpandedBlockStart.gifContractedBlock.gif
/**/ /// <summary>
/// 创建style
/// </summary>
/// <param name="opaqueType">不透明类型:ALL全部不透明(白色实心);BORDER边界不透明(填充部分透明);NONE全透明</param>
/// <param name="borderColor">如果opaqueType=BORDER,此处设定边界颜色</param>
/// <returns>组合style</returns>

private  MapInfo.Styles.CompositeStyle GetOpaqueStyle(OpaqueType opaqueType,System.Drawing.Color borderColor)
ExpandedBlockStart.gifContractedBlock.gif
{
 MapInfo.Styles.SimpleInterior simpleInterior;
 
if(opaqueType==OpaqueType.ALL)
  simpleInterior
= new MapInfo.Styles.SimpleInterior(); //缺省构造函数是白色实心
 else
  simpleInterior
= new MapInfo.Styles.SimpleInterior(1); //0是线透明,1是面透明
 
 MapInfo.Styles.LineWidth lineWidth 
= new MapInfo.Styles.LineWidth(1,MapInfo.Styles.LineWidthUnit.Point);

 MapInfo.Styles.SimpleLineStyle simpleLineStyle;
 
if(opaqueType==OpaqueType.ALL)
  simpleLineStyle 
= new MapInfo.Styles.SimpleLineStyle(lineWidth); 
 
else if(opaqueType==OpaqueType.BORDER)
  simpleLineStyle 
= new MapInfo.Styles.SimpleLineStyle(lineWidth,2,borderColor); //2表示填充透明,即能够显示轮廓
 else
  simpleLineStyle 
= new MapInfo.Styles.SimpleLineStyle(lineWidth,0); //0表示全部透明,即连轮廓都看不到

 MapInfo.Styles.AreaStyle areaStyle 
= new MapInfo.Styles.AreaStyle(simpleLineStyle,simpleInterior);

 MapInfo.Styles.CompositeStyle compositeStyle 
= new MapInfo.Styles.CompositeStyle(areaStyle,null,null,null);
 
 
return compositeStyle;
}

 

7 选择全部图元

MapInfo.Engine.Session.Current.Catalog.Search(
 table,
 MapInfo.Data.SearchInfoFactory.SearchAll(),
 MapInfo.Engine.Session.Current.Selections.DefaultSelection,
 MapInfo.Data.ResultSetCombineMode.Replace);


 
8 设置坐标系
缺省情况下,MapXtreme使用的CoordSys是经纬度投影(LongLat)和WGS84基准面。我想修改投影类型为 CoordSysType.TransverseMercator ,基准面为DatumID.Pulkovo1942
   MapInfo.Geometry.CoordSysFactory coordSysFactory=MapInfo.Engine.Session.Current.CoordSysFactory;
   mapControl1.Map.SetDisplayCoordSys(coordSysFactory.CreateCoordSys("mapinfo:coordsys 8,1001,7,117,0,1,20500000,0"));
  
   coordSysFactory.CreateCoordSys("mapinfo:coordsys 8,1001,7,117,0,1,20500000,0") 默认的原点是(B=0,L=117),如果要把原点设在(23,117)应该怎么写这个字符串呢?
   coordSysFactory.CreateCoordSys("mapinfo:coordsys 8,1001,7,114,23,1,20500000,25000000")
  
9 保存新画的层为tab文件
下面的源码是新建一个永久表,然后在表中添加feature,然后保存为硬盘上的tab文件。

         private  MapInfo.Data.Table CreateNewMapDataTable( string  tableName)
ExpandedBlockStart.gifContractedBlock.gif        
{
            
//以下代码是建立永久表
           MapInfo.Data.TableInfoNative tableInfoNative=newMapInfo.Data.TableInfoNative(tableName);
            tableInfoNative.TablePath
=@"D:\DATA\"+tableName+".TAB";
           tableInfoNative.Columns.Add(MapInfo.Data.ColumnFactory.CreateIntColumn(
"ID"));
           tableInfoNative.Columns.Add(MapInfo.Data.ColumnFactory.CreateStyleColumn());
           MapInfo.Geometry.CoordSys coordSys 
=mapControl1.Map.GetDisplayCoordSys();
           tableInfoNative.Columns.Add(MapInfo.Data.ColumnFactory.CreateFeatureGeometryColumn(coordSys));
           MapInfo.Data.Table table 
=MapInfo.Engine.Session.Current.Catalog.CreateTable(tableInfoNative);

            
//以下代码是建立临时表
//           MapInfo.Data.TableInfo tableInfo =MapInfo.Data.TableInfoFactory.CreateTemp(tableName);           
//           tableInfo.Columns.Add(MapInfo.Data.ColumnFactory.CreateIntColumn("ID"));
//           MapInfo.Data.Table table =MapInfo.Engine.Session.Current.Catalog.CreateTable(tableInfo);

            MapInfo.Mapping.FeatureLayer featureLayer 
= newMapInfo.Mapping.FeatureLayer(table);
            
this.mapControl1.Map.Layers.Add(featureLayer);
            
return table;
        }


        
private   void  AddFeaturesAndSave()
ExpandedBlockStart.gifContractedBlock.gif        
{
           MapInfo.Styles.SimpleLineStyle simpleLineStyle 
= newMapInfo.Styles.SimpleLineStyle(new MapInfo.Styles.LineWidth(1,MapInfo.Styles.LineWidthUnit.Point));
           MapInfo.Styles.CompositeStyle compositeStyle 
= newMapInfo.Styles.CompositeStyle(null,simpleLineStyle, nullnull);
           MapInfo.Geometry.CoordSys coordSys 
=mapControl1.Map.GetDisplayCoordSys();

            MapInfo.Data.Table table 
= CreateNewMapDataTable("NewTable");
            MapInfo.Data.TableInfo tableInfo 
= table.TableInfo;
            
while(……)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{
               MapInfo.Data.Feature feature 
= newMapInfo.Data.Feature(tableInfo.Columns);

                feature.Geometry 
= ……
                feature.Style 
= ……
                feature[
"ID"= ……
                table.InsertFeature(feature);
            }

            tableInfo.WriteTabFile(); 
//保存为.tab文件

            mapControl1.Refresh();
        }

10 计算缩放比例

ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
/// 重画控件时计算缩放比例
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>

protected   void  mapControl1_Paint( object  sender,PaintEventArgs e)
ExpandedBlockStart.gifContractedBlock.gif
{
 MapInfo.Geometry.Distance zoomDistance
=this.mapControl1.Map.Zoom;
 
double zoom=Convert.ToDouble(Convert.ToInt32(zoomDistance.Value*16.09))/10;
 
this.statusBar1.Text="缩放比例:"+zoom.ToString()+" 千米";
}
 

转载于:https://www.cnblogs.com/wanghh/archive/2010/06/10/1755386.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值