02

21

Mod_Symbol.bas

  1. Attribute VB_Name = "ModSymbol"   
  2. Option Explicit   
  3. '功能:符号预览   
  4.    
  5. Public Const COLORONCOLOR = 3   
  6.    
  7. Public Const HORZSIZE = 4   
  8. Public Const VERTSIZE = 6   
  9. Public Const HORZRES = 8   
  10. Public Const VERTRES = 10   
  11. Public Const ASPECTX = 40   
  12. Public Const ASPECTY = 42   
  13. Public Const LOGPIXELSX = 88   
  14. Public Const LOGPIXELSY = 90   
  15.    
  16. Public Type GUID   
  17.   Data1 As Long   
  18.   Data2 As Integer   
  19.   Data3 As Integer   
  20.   Data4(7) As Byte   
  21. End Type   
  22.    
  23. Public Type PicDesc   
  24.   SIZE As Long   
  25.   Type As Long   
  26.   hBmp As Long   
  27.   hPal As Long   
  28.   Reserved As Long   
  29. End Type   
  30.    
  31. Public Type RECT   
  32.   Left As Long   
  33.   Top As Long   
  34.   Right As Long   
  35.   Bottom As Long   
  36. End Type   
  37.    
  38. Public Type SIZE   
  39.   X As Long   
  40.   Y As Long   
  41. End Type   
  42.    
  43. Public Type POINTAPI   
  44.   X As Long   
  45.   Y As Long   
  46. End Type   
  47.    
  48. Public Declare Function OleCreatePictureIndirect Lib "olepro32.dll" (pDesc As PicDesc, RefIID As GUID, ByVal fPictureOwnsHandle As Long, pPic As IPicture) As Long   
  49. Public Declare Function CreateCompatibleDC Lib "gdi32" (ByVal hdc As LongAs Long   
  50. Public Declare Function CreateCompatibleBitmap Lib "gdi32" (ByVal hdc As LongByVal nWidth As LongByVal nHeight As LongAs Long   
  51. Public Declare Function SelectObject Lib "gdi32" (ByVal hdc As LongByVal hObject As LongAs Long   
  52. Public Declare Function DeleteObject Lib "gdi32" (ByVal hObject As LongAs Long   
  53. Public Declare Function SetStretchBltMode Lib "gdi32" (ByVal hdc As LongByVal nStretchMode As LongAs Long   
  54. Public Declare Function CreateSolidBrush Lib "gdi32" (ByVal crColor As LongAs Long   
  55. Public Declare Function FillRect Lib "USER32" (ByVal hdc As Long, lpRect As RECT, ByVal hBrush As LongAs Long   
  56. Public Declare Function GetWindowRect Lib "USER32" (ByVal hWnd As Long, lpRect As RECT) As Long   
  57. Public Declare Function GetDeviceCaps Lib "gdi32" (ByVal hdc As LongByVal nIndex As LongAs Long   
  58. Public Declare Function GetDC Lib "USER32" (ByVal hWnd As LongAs Long   
  59. Public Declare Function ReleaseDC Lib "USER32" (ByVal hWnd As LongByVal hdc As LongAs Long   
  60. Public Declare Function DeleteDC Lib "gdi32" (ByVal hdc As LongAs Long   
  61.    
  62. Public Declare Function GetWindowExtEx Lib "gdi32" (ByVal hdc As Long, lpSize As SIZE) As Long   
  63. Public Declare Function GetViewportExtEx Lib "gdi32" (ByVal hdc As Long, lpSize As SIZE) As Long   
  64. Public Declare Function GetMapMode Lib "gdi32" (ByVal hdc As LongAs Long   
  65. Public Declare Function LPtoDP Lib "gdi32" (ByVal hdc As Long, lpPoint As POINTAPI, ByVal nCount As LongAs Long   
  66. Public Declare Function GetClientRect Lib "USER32" (ByVal hWnd As Long, lpRect As RECT) As Long   
  67.    
  68. Public Function SaveSymbolToBitmapFile(ByVal hDCOld As LongByVal pSymbol As ISymbol, ByVal lWidth As LongByVal lHeight As LongByVal sFilePath As StringOptional lGap As Long = 0) As Boolean   
  69.    
  70.   On Error GoTo errH   
  71.        
  72.   SaveSymbolToBitmapFile = False   
  73.        
  74.   Dim pPicture As IPicture, hBmpNew As Long   
  75.   Set pPicture = CreatePictureFromSymbol(hDCOld, hBmpNew, pSymbol, lWidth, lHeight, lGap)   
  76.   If Not pPicture Is Nothing Then   
  77.     SavePicture pPicture, sFilePath   
  78.     DeleteObject hBmpNew   
  79.     SaveSymbolToBitmapFile = True   
  80.   End If   
  81.      
  82. Exit Function   
  83. errH:   
  84.   If Err.Number <> 0 Then   
  85.     Dim sError As String, lError As Long   
  86.     sError = Err.Description   
  87.     lError = Err.Number   
  88.     Err.Clear   
  89.     Err.Raise vbObjectError + 7020, "basDrawSymbol.SaveSymbolToBitmapFile""Error occured while saving to bitmap file." & vbNewLine & "Error " & CStr(lError) & sError   
  90.   End If   
  91. End Function   
  92.    
  93. Public Function CreatePictureFromSymbol(ByVal hDCOld As LongByRef hBmpNew As LongByVal pSymbol As ISymbol, ByVal lWidth As LongByVal lHeight As LongOptional lGap As Long = 0) As IPictureDisp   
  94.   On Error GoTo errH   
  95.      
  96.   Dim hDCNew As Long, hBmpOld As Long   
  97.   hDCNew = CreateCompatibleDC(hDCOld)   
  98.   hBmpNew = CreateCompatibleBitmap(hDCOld, lWidth, lHeight)   
  99.   hBmpOld = SelectObject(hDCNew, hBmpNew)   
  100.      
  101.   Dim lResult As Long   
  102.   lResult = DrawToDC(hDCNew, lWidth, lHeight, pSymbol, lGap)   
  103.      
  104.   hBmpNew = SelectObject(hDCNew, hBmpOld)   
  105.   DeleteDC hDCNew   
  106.    
  107.   Set CreatePictureFromSymbol = CreatePictureFromBitmap(hBmpNew)   
  108.    
  109. Exit Function   
  110. errH:   
  111.   If Err.Number <> 0 Then   
  112.     If Not pSymbol Is Nothing Then   
  113.       pSymbol.ResetDC   
  114.       If hBmpNew <> 0 And hDCNew <> 0 And hBmpOld <> 0 Then   
  115.         hBmpNew = SelectObject(hDCNew, hBmpOld)   
  116.         DeleteDC hDCNew   
  117.       End If   
  118.     End If   
  119.   End If   
  120. End Function   
  121.    
  122. Private Function CreatePictureFromBitmap(ByVal hBmpNew As OLE_HANDLE) As IPictureDisp   
  123.   Dim pic As PicDesc   
  124.   Dim pPic As IPicture   
  125.   Dim IID_IDispatch As GUID   
  126.    
  127.   With IID_IDispatch   
  128.      .Data1 = &H20400   
  129.      .Data4(0) = &HC0   
  130.      .Data4(7) = &H46   
  131.   End With   
  132.    
  133.   With pic   
  134.      .SIZE = Len(pic)   
  135.      .Type = vbPicTypeBitmap   
  136.      .hBmp = hBmpNew   
  137.      .hPal = 0   
  138.   End With   
  139.    
  140.   Dim Result As Long   
  141.   Result = OleCreatePictureIndirect(pic, IID_IDispatch, True, pPic)   
  142.   Debug.Print "Result OLE call: " & Result   
  143.      
  144.   Set CreatePictureFromBitmap = pPic   
  145. End Function   
  146.    
  147. Public Function DrawToWnd(ByVal hWnd As OLE_HANDLE, ByVal pSymbol As ISymbol, Optional lGap As Long = 0) As Boolean   
  148.   On Error GoTo errH   
  149.      
  150.   DrawToWnd = False   
  151.      
  152.   Dim hdc As OLE_HANDLE   
  153.   If hWnd <> 0 Then   
  154.               
  155.     Dim udtRect As RECT, lResult  As Long   
  156.     lResult = GetClientRect(hWnd, udtRect)   
  157.        
  158.     If lResult <> 0 Then   
  159.       Dim lWidth As Long, lHeight As Long   
  160.       lWidth = udtRect.Right - udtRect.Left   
  161.       lHeight = udtRect.Bottom - udtRect.Top   
  162.          
  163.       hdc = GetDC(hWnd)   
  164.       If hdc <> 0 Then   
  165.         DrawToWnd = DrawToDC(hdc, lWidth, lHeight, pSymbol, lGap)   
  166.       End If   
  167.       ReleaseDC hWnd, hdc   
  168.     End If   
  169.   End If   
  170.    
  171. Exit Function   
  172. errH:   
  173.   If Err.Number <> 0 Then   
  174.     If Not pSymbol Is Nothing Then   
  175.       pSymbol.ResetDC   
  176.     End If   
  177.     If hWnd <> 0 And hdc <> 0 Then   
  178.       ReleaseDC hWnd, hdc   
  179.     End If   
  180.     Exit Function   
  181.   End If   
  182. End Function   
  183.    
  184. Public Function DrawToDC(ByVal hdc As OLE_HANDLE, lWidth As Long, lHeight As LongByVal pSymbol As ISymbol, Optional lGap As Long = 0) As Boolean   
  185.   On Error GoTo errH   
  186.      
  187.   DrawToDC = False   
  188.      
  189.   If hdc <> 0 Then   
  190.      
  191.     If Not Clear(hdc, &HFFFFFF, 0, 0, lWidth, lHeight) Then   
  192.       Err.Raise vbObjectError + 7002, "basDrawSymbol.DrawToDC""Could not clear the Device Context."   
  193.       Exit Function   
  194.     End If   
  195.                
  196.     Dim pEnvelope As IEnvelope, pTransformation As ITransformation, pGeom As IGeometry   
  197.     Set pEnvelope = New Envelope   
  198.     pEnvelope.PutCoords lGap, lGap, lWidth - lGap, lHeight - lGap   
  199.     Set pTransformation = CreateTransFromDC(hdc, lWidth, lHeight)   
  200.     Set pGeom = CreateSymShape(pSymbol, pEnvelope)   
  201.        
  202.     If Not pTransformation Is Nothing And Not pGeom Is Nothing Then   
  203.       pSymbol.SetupDC hdc, pTransformation   
  204.       pSymbol.Draw pGeom   
  205.       pSymbol.ResetDC   
  206.       DrawToDC = True   
  207.     Else   
  208.       Err.Raise vbObjectError + 7008, "basDrawSymbol.DrawToDC""Could not create required Transformation or Geometry for this draw operation."   
  209.     End If   
  210.   End If   
  211.    
  212. Exit Function   
  213. errH:   
  214.   If Err.Number <> 0 Then   
  215.     If Not pSymbol Is Nothing Then   
  216.       pSymbol.ResetDC   
  217.     End If   
  218.   End If   
  219. End Function   
  220.    
  221. Private Function Clear(ByVal hdc As LongByVal backgroundColor As LongByVal xMin As LongByVal yMin As LongByVal xMax As LongByVal yMax As LongAs Boolean   
  222.      
  223.   On Error GoTo errH   
  224.      
  225.   Dim hBrushBackground As Long, udtBounds As RECT, lResult  As Long   
  226.   With udtBounds   
  227.     .Left = xMin   
  228.     .Top = yMin   
  229.     .Right = xMax   
  230.     .Bottom = yMax   
  231.   End With   
  232.      
  233.   hBrushBackground = CreateSolidBrush(backgroundColor)   
  234.   If hBrushBackground = 0 Then   
  235.     Err.Raise vbObjectError + 7003, "basDrawSymbol.Clear""Could not create GDI Brush."   
  236.     Exit Function   
  237.   End If   
  238.      
  239.   lResult = FillRect(hdc, udtBounds, hBrushBackground)   
  240.   If hBrushBackground = 0 Then   
  241.     Err.Raise vbObjectError + 7004, "basDrawSymbol.Clear""Could not fill Device Context."   
  242.   End If   
  243.        
  244.   lResult = DeleteObject(hBrushBackground)   
  245.   If hBrushBackground = 0 Then   
  246.     Err.Raise vbObjectError + 7005, "basDrawSymbol.Clear""Could not delete GDI Brush."   
  247.   End If   
  248.      
  249.   Clear = True   
  250.      
  251. Exit Function   
  252. errH:   
  253.   If Err.Number <> 0 Then   
  254.     Clear = False   
  255.     If hBrushBackground <> 0 Then   
  256.       lResult = DeleteObject(hBrushBackground)   
  257.     End If   
  258.   End If   
  259. End Function   
  260.    
  261. Private Function CreateTransFromDC(ByVal hdc As LongByVal lWidth As LongByVal lHeight As LongAs ITransformation   
  262.      
  263.   On Error GoTo errH   
  264.      
  265.   Dim pBoundsEnvelope As IEnvelope   
  266.   Set pBoundsEnvelope = New Envelope   
  267.   pBoundsEnvelope.PutCoords 0, 0, lWidth, lHeight   
  268.      
  269.   Dim deviceRect As tagRECT   
  270.   With deviceRect   
  271.     .Left = 0   
  272.     .Top = 0   
  273.     .Right = lWidth   
  274.     .Bottom = lHeight   
  275.   End With   
  276.      
  277.   Dim dpi As Long   
  278.   dpi = GetDeviceCaps(hdc, LOGPIXELSY)   
  279.   If dpi = 0 Then   
  280.     Err.Raise vbObjectError + 7006, "basDrawSymbol.CreateTransFromDC""Could not retrieve Resolution from device context."   
  281.     Exit Function   
  282.   End If   
  283.      
  284.   Dim pDisplayTransformation As IDisplayTransformation   
  285.   Set CreateTransFromDC = New DisplayTransformation   
  286.   Set pDisplayTransformation = CreateTransFromDC   
  287.   With pDisplayTransformation   
  288.     .VisibleBounds = pBoundsEnvelope   
  289.     .Bounds = pBoundsEnvelope   
  290.     .DeviceFrame = deviceRect   
  291.     .Resolution = dpi   
  292.   End With   
  293.    
  294. Exit Function   
  295. errH:   
  296.   If Err.Number <> 0 Then   
  297.     Set CreateTransFromDC = Nothing   
  298.   End If   
  299. End Function   
  300.    
  301. Private Function CreateSymShape(ByVal pSymbol As ISymbol, ByVal pEnvelope As IEnvelope) As IGeometry   
  302.      
  303.   On Error GoTo errH   
  304.      
  305.   If TypeOf pSymbol Is IMarkerSymbol Then   
  306.     Dim pArea As IArea   
  307.     Set pArea = pEnvelope   
  308.     Set CreateSymShape = pArea.Centroid   
  309.   ElseIf TypeOf pSymbol Is ILineSymbol or TypeOf pSymbol Is ITextSymbol Then   
  310.     Dim pPolyline As IPolyline   
  311.     Set pPolyline = New Polyline   
  312.     pPolyline.FromPoint = pEnvelope.LowerLeft   
  313.     pPolyline.ToPoint = pEnvelope.UpperRight   
  314.     Set CreateSymShape = pPolyline   
  315.   Else   
  316.     Set CreateSymShape = pEnvelope   
  317.   End If   
  318.      
  319. Exit Function   
  320. errH:   
  321.   If Err.Number <> 0 Then   
  322.     Set CreateSymShape = Nothing   
  323.   End If   
  324. End Function   
  325.    
  326. Public Function GetLayerSymbols(pLayer As ILayer) As IArray   
  327.    
  328.     If pLayer Is Nothing Then Exit Function   
  329.        
  330.     Dim i As Integer   
  331.                
  332.     Dim pGeoFeatureLayer As IGeoFeatureLayer   
  333.     Set pGeoFeatureLayer = pLayer   
  334.     If pGeoFeatureLayer Is Nothing Then Exit Function   
  335.     Dim pMySymbolArray  As ISymbolArray   
  336.        
  337.     Dim pSymbolArray As IArray   
  338.     Set pSymbolArray = New esriSystem.Array   
  339.     Debug.Assert Not pSymbolArray Is Nothing   
  340.     If pSymbolArray Is Nothing Then Exit Function   
  341.        
  342.     '简单渲染图层   
  343.     If TypeOf pGeoFeatureLayer.Renderer Is ISimpleRenderer Then   
  344.         Dim pSimpleRender As ISimpleRenderer   
  345.         Set pSimpleRender = pGeoFeatureLayer.Renderer   
  346.         pSymbolArray.Add pSimpleRender.Symbol   
  347.     End If   
  348.        
  349.     '单值渲染图层   
  350.     If TypeOf pGeoFeatureLayer.Renderer Is IUniqueValueRenderer Then   
  351.        
  352.         Dim pUniqueValueRenderer As IUniqueValueRenderer   
  353.         Set pUniqueValueRenderer = pGeoFeatureLayer.Renderer   
  354.         Dim pSymbol As ISymbol   
  355.         Set pSymbol = pUniqueValueRenderer.Symbol(CStr(pUniqueValueRenderer.Value(0)))   
  356.         pSymbolArray.Add pSymbol   
  357.        
  358.     End If   
  359.        
  360.     '分类渲染图层   
  361.     If TypeOf pGeoFeatureLayer.Renderer Is IClassBreaksRenderer Then   
  362.        
  363.         Dim pClassRenderer As IClassBreaksRenderer   
  364.         Set pClassRenderer = pGeoFeatureLayer.Renderer   
  365.            
  366.         For i = 0 To pClassRenderer.BreakCount - 1   
  367.             pSymbolArray.Add pClassRenderer.Symbol(i)   
  368.         Next i   
  369.            
  370.     End If   
  371.        
  372.     '图表渲染图层   
  373.     If TypeOf pGeoFeatureLayer.Renderer Is IChartRenderer Then   
  374.            
  375.         Dim pChartRenderer As IChartRenderer   
  376.         Set pChartRenderer = pGeoFeatureLayer.Renderer   
  377.         Dim pChartSymbol As IChartSymbol   
  378.         Set pChartSymbol = pChartRenderer.ChartSymbol   
  379.                
  380.         Set pMySymbolArray = pChartSymbol   
  381.         Debug.Assert Not pMySymbolArray Is Nothing   
  382.         If pMySymbolArray Is Nothing Then Exit Function   
  383.            
  384.         For i = 0 To pMySymbolArray.SymbolCount - 1   
  385.             pSymbolArray.Add pMySymbolArray.Symbol(i)   
  386.         Next i   
  387.            
  388.         Debug.Assert Not pSymbolArray.Count < 1   
  389.        
  390.     End If   
  391.        
  392.     '点密度渲染图层(???)   
  393.     If TypeOf pGeoFeatureLayer.Renderer Is IDotDensityRenderer Then   
  394.        
  395.         Dim pDotDensityRenderer As IDotDensityRenderer   
  396.         Set pDotDensityRenderer = pGeoFeatureLayer.Renderer   
  397.         Dim pDotDensityFillSymbol As IDotDensityFillSymbol   
  398.         Set pDotDensityFillSymbol = pDotDensityRenderer.DotDensitySymbol   
  399.            
  400.         Set pMySymbolArray = pDotDensityFillSymbol   
  401.            
  402.         For i = 0 To pMySymbolArray.SymbolCount - 1   
  403.             pSymbolArray.Add pMySymbolArray.Symbol(i)   
  404.         Next i   
  405.        
  406.     End If   
  407.        
  408.     If Not pSymbolArray.Count < 1 Then Set GetLayerSymbols = pSymbolArray   
  409.     Set pSymbolArray = Nothing   
  410.        
  411. End Function   
  412.    
  413. Public Function GetCurrentValueRanges(pLayer As ILayer) As Collection   
  414.    
  415.     If pLayer Is Nothing Then Exit Function   
  416.        
  417.     Dim pGeoFeatureLayer As IGeoFeatureLayer   
  418.     Set pGeoFeatureLayer = pLayer   
  419.     If pGeoFeatureLayer Is Nothing Then Exit Function   
  420.        
  421.     Dim colValueRanges As Collection   
  422.     Set colValueRanges = New Collection   
  423.     Debug.Assert Not colValueRanges Is Nothing   
  424.     If colValueRanges Is Nothing Then Exit Function   
  425.        
  426.     '分类渲染图层   
  427.     If TypeOf pGeoFeatureLayer.Renderer Is IClassBreaksRenderer Then   
  428.        
  429.         Dim pClassRenderer As IClassBreaksRenderer   
  430.         Set pClassRenderer = pGeoFeatureLayer.Renderer   
  431.            
  432.         colValueRanges.Add "0" & "--" & pClassRenderer.Break(0)   
  433.            
  434.         Dim i As Integer   
  435.         For i = 0 To pClassRenderer.BreakCount - 2   
  436.             colValueRanges.Add pClassRenderer.Break(i) & "-" & pClassRenderer.Break(i + 1)   
  437.         Next i   
  438.            
  439.     End If   
  440.        
  441.     If Not colValueRanges.Count < 1 Then Set GetCurrentValueRanges = colValueRanges   
  442.     Set colValueRanges = Nothing   
  443.        
  444. End Function   
  445. Public Sub FeatuerSymbol(ByVal color As Long)   
  446.     Dim tempFeatureLayer As IGeoFeatureLayer   
  447.     Set tempFeatureLayer = m_pCurrentLayer   
  448.    
  449.     If (tempFeatureLayer.FeatureClass.ShapeType = esriGeometryPoint) Then   
  450.         Call PointSymbol(tempFeatureLayer, color)   
  451.     ElseIf (tempFeatureLayer.FeatureClass.ShapeType = esriGeometryPolyline) Then   
  452.         Call LineSymbol(tempFeatureLayer, color)   
  453.     ElseIf (tempFeatureLayer.FeatureClass.ShapeType = esriGeometryPolygon) Then   
  454.         Call PolygonSymbol(tempFeatureLayer, color)   
  455.     End If   
  456.        
  457.     'frmTOC.TOCControl.Update   
  458. End Sub   
  459.    
  460. '输入:red、green、blue的颜色号,取值在0-255之间   
  461. '输出:rgbcolor   
  462. '功能:根据颜色号获取irgbcolor   
  463. '时间:2005.1.30   
  464. '源人:tjh   
  465. '更新:   
  466. Private Function GetRGBColor(yourRed As Long, yourGreen As Long, yourBlue As LongAs IRgbColor   
  467.   Dim pRGB As IRgbColor   
  468.      
  469.   Set pRGB = New RgbColor   
  470.   With pRGB   
  471.     .Red = yourRed   
  472.     .Green = yourGreen   
  473.     .Blue = yourBlue   
  474.     .UseWindowsDithering = True   
  475.   End With   
  476.   Set GetRGBColor = pRGB   
  477.  '需要释放pRGB吗?   
  478. End Function   
  479. Private Sub PointSymbol(ByVal currentLayer As IGeoFeatureLayer, ByVal color As Long)   
  480.     '控制点图层的简单符号   
  481.     Dim pMarkLayer As IGeoFeatureLayer   
  482.     Dim pSimpleRenderer As ISimpleRenderer   
  483.     Dim pSimpleMarkerSymbol As ISimpleMarkerSymbol   
  484.     Dim pRgbColor As IRgbColor   
  485.        
  486.     Set pMarkLayer = currentLayer   
  487.     Set pSimpleRenderer = New SimpleRenderer   
  488.     Set pSimpleMarkerSymbol = New SimpleMarkerSymbol   
  489.        
  490.     '////////待考虑   
  491.     Set pRgbColor = New RgbColor   
  492.     pRgbColor.RGB = color   
  493.       
  494.     With pSimpleMarkerSymbol   
  495.         .color = pRgbColor   
  496.         .SIZE = 10   
  497.         .Style = esriSMSCircle   
  498.     End With   
  499.     '////////待考虑   
  500.        
  501.     Set pSimpleRenderer.Symbol = pSimpleMarkerSymbol   
  502.        
  503.     Set pMarkLayer.Renderer = pSimpleRenderer   
  504.        
  505.     '可以提到窗体中实现 ?   
  506.     frmMapControl.arcMapControl.Refresh   
  507.        
  508.     Set pRgbColor = Nothing   
  509.     Set pSimpleMarkerSymbol = Nothing   
  510.     Set pSimpleRenderer = Nothing   
  511.     Set pMarkLayer = Nothing   
  512. End Sub   
  513. Private Sub LineSymbol(ByVal currentLayer As IGeoFeatureLayer, ByVal color As Long)   
  514.     '控制线图层的简单符号   
  515.     Dim pLineLayer As IGeoFeatureLayer   
  516.     Dim pSimpleRenderer As ISimpleRenderer   
  517.     Dim pSimpleLineSymbol As ISimpleLineSymbol   
  518.     Dim pRgbColor As IRgbColor   
  519.        
  520.     Set pLineLayer = currentLayer   
  521.     Set pSimpleRenderer = New SimpleRenderer   
  522.     Set pSimpleLineSymbol = New SimpleLineSymbol   
  523.     Set pRgbColor = New RgbColor   
  524.     pRgbColor.RGB = color   
  525.        
  526.     '////////待考虑   
  527.     With pSimpleLineSymbol   
  528.         .color = pRgbColor   
  529.         .Width = 2   
  530.         .Style = esriSLSDashDotDot   
  531.     End With   
  532.     '////////待考虑   
  533.        
  534.     Set pSimpleRenderer.Symbol = pSimpleLineSymbol   
  535.        
  536.     Set pLineLayer.Renderer = pSimpleRenderer   
  537.        
  538.     '可以提到窗体中实现 ?   
  539.     frmMapControl.arcMapControl.Refresh   
  540.        
  541.     Set pRgbColor = Nothing   
  542.     Set pSimpleLineSymbol = Nothing   
  543.     Set pSimpleRenderer = Nothing   
  544.     Set pLineLayer = Nothing   
  545. End Sub   
  546.    
  547. Private Sub PolygonSymbol(ByVal currentLayer As IGeoFeatureLayer, ByVal color As Long)   
  548.     '控制面图层的简单符号   
  549.     Dim pFillLayer As IGeoFeatureLayer   
  550.     Dim pSimpleRenderer As ISimpleRenderer   
  551.     Dim pSimpleFillSymbol As ISimpleFillSymbol   
  552.     Dim pRgbColor As IRgbColor   
  553.        
  554.     Set pFillLayer = currentLayer   
  555.     Set pSimpleRenderer = New SimpleRenderer   
  556.     Set pSimpleFillSymbol = New SimpleFillSymbol   
  557.     Set pRgbColor = New RgbColor   
  558.     pRgbColor.RGB = color   
  559.        
  560.     '////////待考虑   
  561.     With pSimpleFillSymbol   
  562.         .color = pRgbColor   
  563.         .Style = esriSFSDiagonalCross   
  564.     End With   
  565.     '////////待考虑   
  566.        
  567.     Set pSimpleRenderer.Symbol = pSimpleFillSymbol   
  568.     Set pFillLayer.Renderer = pSimpleRenderer   
  569.        
  570.     '可以提到窗体中实现 ?   
  571.     frmMapControl.arcMapControl.Refresh   
  572.        
  573.     Set pRgbColor = Nothing   
  574.     Set pSimpleFillSymbol = Nothing   
  575.     Set pSimpleRenderer = Nothing   
  576.     Set pFillLayer = Nothing   
  577. End Sub   
  578.    
  579. Public Sub UniqueValueSymbol(m_pGeoFeatureLayer As IGeoFeatureLayer, strNameField As String)   
  580.     Dim pUniqueValueRenderer As IUniqueValueRenderer   
  581.     Dim pSym As IFillSymbol   
  582.     Dim pColor As IColor   
  583.     Dim pNextUniqueColor As IColor   
  584.     Dim pEnumRamp As IEnumColors   
  585.     Dim pTable As ITable   
  586.     Dim fieldNumber As Long   
  587.     Dim pNextRow As IRow   
  588.     Dim pNextRowBuffer As IRowBuffer   
  589.     Dim pCursor As ICursor   
  590.     Dim pQueryFilter As IQueryFilter   
  591.     Dim codeValue As Variant   
  592.    
  593.     Set pUniqueValueRenderer = New UniqueValueRenderer   
  594.     Set pTable = m_pGeoFeatureLayer   
  595.     fieldNumber = pTable.FindField(strNameField)   
  596.     If fieldNumber = -1 Then   
  597.         MsgBox "Can't find field called " & strNameField   
  598.     Exit Sub   
  599.     End If   
  600.    
  601.     pUniqueValueRenderer.FieldCount = 1   
  602.     pUniqueValueRenderer.Field(0) = strNameField   
  603.        
  604.     '//////为了通用,考虑将符号从外部传入   
  605.     Dim pColorRamp As IRandomColorRamp   
  606.        
  607.     Set pColorRamp = New RandomColorRamp   
  608.     '可以根据需要设置RandomColorRamp的设置   
  609.     pColorRamp.StartHue = 0   
  610.     pColorRamp.MinValue = 99   
  611.     pColorRamp.MinSaturation = 15   
  612.     pColorRamp.EndHue = 360   
  613.     pColorRamp.maxValue = 100   
  614.     pColorRamp.MaxSaturation = 30   
  615.     pColorRamp.SIZE = 100   
  616.     pColorRamp.CreateRamp True   
  617.     Set pEnumRamp = pColorRamp.Colors   
  618.     Set pNextUniqueColor = Nothing   
  619.        
  620.     Set pQueryFilter = New QueryFilter   
  621.     pQueryFilter.AddField strNameField   
  622.     Set pCursor = pTable.Search(pQueryFilter, True)   
  623.     Set pNextRow = pCursor.NextRow   
  624.        
  625.     Do While Not pNextRow Is Nothing   
  626.         Set pNextRowBuffer = pNextRow   
  627.         codeValue = pNextRowBuffer.Value(fieldNumber)   
  628.            
  629.         Set pNextUniqueColor = pEnumRamp.Next   
  630.         If pNextUniqueColor Is Nothing Then   
  631.             pEnumRamp.Reset   
  632.             Set pNextUniqueColor = pEnumRamp.Next   
  633.         End If   
  634.         Set pSym = New SimpleFillSymbol   
  635.         pSym.color = pNextUniqueColor   
  636.            
  637.         '//////为了通用,考虑将符号从外部传入   
  638.         pUniqueValueRenderer.AddValue codeValue, codeValue, pSym   
  639.            
  640.         Set pNextRow = pCursor.NextRow   
  641.     Loop   
  642.    
  643.     Set m_pGeoFeatureLayer.Renderer = pUniqueValueRenderer   
  644.     Set pSym = Nothing   
  645.     Set pColor = Nothing   
  646.     Set pNextUniqueColor = Nothing   
  647.     Set pEnumRamp = Nothing   
  648.     Set pTable = Nothing   
  649.     Set pNextRow = Nothing   
  650.     Set pNextRowBuffer = Nothing   
  651.     Set pCursor = Nothing   
  652.     Set pQueryFilter = Nothing   
  653.     Set codeValue = Nothing   
  654.        
  655.     '可以提到窗体中实现 ?   
  656.     frmMapControl.arcMapControl.Refresh   
  657.     frmMapControl.arcMapControl.Update   
  658. End Sub   
  659.    
  660. Public Sub DotDensitySymbol(m_pGeoFeatureLayer As IGeoFeatureLayer, strNameField As String)   
  661.     Dim pDotDensityRenderer As IDotDensityRenderer   
  662.     Dim pDotDensityFillSymbol As IDotDensityFillSymbol   
  663.     Dim pRendererFields As IRendererFields   
  664.     Dim pSymbolArray As ISymbolArray   
  665.        
  666.     Set pDotDensityRenderer = New DotDensityRenderer   
  667.     Set pRendererFields = pDotDensityRenderer   
  668.     pRendererFields.AddField strNameField   
  669.        
  670.     Set pDotDensityFillSymbol = New DotDensityFillSymbol   
  671.        
  672.     '可以增加DotDensityFillSymbol设置!!!   
  673.     pDotDensityFillSymbol.DotSize = 3   
  674.     pDotDensityFillSymbol.color = GetRGBColor(0, 0, 0)   
  675.     pDotDensityFillSymbol.backgroundColor = GetRGBColor(239, 228, 190) ' color of tan   
  676.        
  677.     Dim pMarkerSymbol As ISimpleMarkerSymbol   
  678.        
  679.     Set pSymbolArray = pDotDensityFillSymbol   
  680.        
  681.     '可以增加DotDensityFillSymbol设置!!   
  682.     Set pMarkerSymbol = New SimpleMarkerSymbol   
  683.     pMarkerSymbol.Style = esriSMSCircle   
  684.     pMarkerSymbol.SIZE = 3   
  685.     pMarkerSymbol.color = GetRGBColor(0, 0, 0) ' Black   
  686.     pSymbolArray.AddSymbol pMarkerSymbol   
  687.        
  688.     Set pDotDensityRenderer.DotDensitySymbol = pDotDensityFillSymbol   
  689.        
  690.     pDotDensityRenderer.DotValue = 200000   
  691.     Set m_pGeoFeatureLayer.Renderer = pDotDensityRenderer   
  692.        
  693.     Set pDotDensityRenderer = Nothing   
  694.     Set pDotDensityFillSymbol = Nothing   
  695.     Set pRendererFields = Nothing   
  696.     Set pSymbolArray = Nothing   
  697.        
  698.     '可以提到窗体中实现 ?   
  699.     frmMapControl.arcMapControl.Refresh   
  700.     frmMapControl.arcMapControl.Update   
  701. End Sub   
  702.    
  703. Public Sub PropSymbol(m_pGeoFeatureLayer As IGeoFeatureLayer, strNameField As String)   
  704.     Dim pProportionalSymbolRenderer As IProportionalSymbolRenderer   
  705.     Dim pTable As ITable   
  706.     Dim pQueryFilter As IQueryFilter   
  707.     Dim pCursor As ICursor   
  708.     Dim pFillSymbol As IFillSymbol   
  709.     Dim pSimpleMarkerSymbol As ISimpleMarkerSymbol   
  710.     Dim pColor As IColor   
  711.     Dim pOutlineColor As IColor   
  712.        
  713.     On Error GoTo Err   
  714.     Set pTable = m_pGeoFeatureLayer   
  715.     Set pQueryFilter = New QueryFilter   
  716.     pQueryFilter.AddField strNameField   
  717.     Set pCursor = pTable.Search(pQueryFilter, True)   
  718.        
  719.     Dim pDataStatistics As IDataStatistics   
  720.     Dim pStatisticsResult As IStatisticsResults   
  721.        
  722.     Set pDataStatistics = New DataStatistics   
  723.     Set pDataStatistics.Cursor = pCursor   
  724.     pDataStatistics.Field = strNameField   
  725.        
  726.     Set pStatisticsResult = pDataStatistics.Statistics   
  727.     If pStatisticsResult Is Nothing Then   
  728.         MsgBox "Failed to gather stats on the feature class"   
  729.         Exit Sub   
  730.     End If   
  731.           
  732.     Set pFillSymbol = New SimpleFillSymbol   
  733.     pFillSymbol.color = GetRGBColor(239, 228, 190) ' Tan   
  734.        
  735.     Set pSimpleMarkerSymbol = New SimpleMarkerSymbol   
  736.     With pSimpleMarkerSymbol   
  737.         .Style = esriSMSSquare   
  738.         .color = GetRGBColor(255, 0, 0) ' Red   
  739.         .SIZE = 2   
  740.         .Outline = True   
  741.         .OutlineColor = GetRGBColor(0, 0, 0) ' Black   
  742.     End With   
  743.        
  744.     Set pProportionalSymbolRenderer = New ProportionalSymbolRenderer   
  745.     With pProportionalSymbolRenderer   
  746.         .ValueUnit = esriUnknownUnits   
  747.         .Field = strNameField   
  748.         .FlanneryCompensation = False   
  749.         .MinDataValue = pStatisticsResult.Minimum   
  750.         .MaxDataValue = pStatisticsResult.Maximum   
  751.         .BackgroundSymbol = pFillSymbol   
  752.         .MinSymbol = pSimpleMarkerSymbol   
  753.     End With   
  754.        
  755. Err:   
  756.     Set m_pGeoFeatureLayer.Renderer = pProportionalSymbolRenderer   
  757.     Set pProportionalSymbolRenderer = Nothing   
  758.     Set pTable = Nothing   
  759.     Set pCursor = Nothing   
  760.     Set pCursor = Nothing   
  761.     Set pFillSymbol = Nothing   
  762.     Set pSimpleMarkerSymbol = Nothing   
  763.     Set pColor = Nothing   
  764.     Set pOutlineColor = Nothing   
  765.        
  766.     '可以提到窗体中实现 ?   
  767.     frmMapControl.arcMapControl.Refresh   
  768.     frmMapControl.arcMapControl.Update   
  769.    
  770. End Sub   
  771.    
  772. Public Sub BarChartSymbol(m_pGeoFeatureLayer As IGeoFeatureLayer, strPopField1 As String, strPopField2 As String)   
  773.     Dim pChartRenderer As IChartRenderer   
  774.     Dim pRendererFields As IRendererFields   
  775.        
  776.     Set pChartRenderer = New ChartRenderer   
  777.        
  778.     ' Set up the fields to draw charts of   
  779.     Set pRendererFields = pChartRenderer   
  780.     pRendererFields.AddField strPopField1   
  781.     pRendererFields.FieldAlias(0) = pRendererFields.Field(0)   
  782.     pRendererFields.AddField strPopField2   
  783.     pRendererFields.FieldAlias(1) = pRendererFields.Field(1)   
  784.        
  785.     Dim pTable As ITable   
  786.     Dim pCursor As ICursor   
  787.     Dim pQueryFilter As IQueryFilter   
  788.     Dim pRow As IRowBuffer   
  789.        
  790.     Set pTable = m_pGeoFeatureLayer   
  791.     Set pQueryFilter = New QueryFilter   
  792.     pQueryFilter.AddField strPopField1   
  793.     pQueryFilter.AddField strPopField2   
  794.     Set pCursor = pTable.Search(pQueryFilter, True)   
  795.        
  796.     Const numFields As Long = 2 ' Number of bars   
  797.     Dim fieldIndecies(0 To numFields - 1) As Long   
  798.     Dim fieldIndex As Long   
  799.     Dim maxValue As Double   
  800.     Dim firstValue As Boolean   
  801.     Dim FieldValue As Double   
  802.        
  803.     fieldIndecies(0) = pTable.FindField(strPopField1)   
  804.     fieldIndecies(1) = pTable.FindField(strPopField2)   
  805.     firstValue = True   
  806.     maxValue = 0   
  807.        
  808.     ' Iterate across each feature   
  809.     Set pRow = pCursor.NextRow   
  810.     Do While Not pRow Is Nothing   
  811.        For fieldIndex = 0 To numFields - 1   
  812.             FieldValue = pRow.Value(fieldIndecies(fieldIndex))   
  813.             If firstValue Then   
  814.                 ' Special case for the first value in a feature class   
  815.                 maxValue = FieldValue   
  816.                 firstValue = False   
  817.             Else   
  818.                 If FieldValue > maxValue Then   
  819.                     ' we've got a new biggest value   
  820.                     maxValue = FieldValue   
  821.                 End If   
  822.             End If   
  823.        
  824.         Next fieldIndex   
  825.        
  826.         Set pRow = pCursor.NextRow   
  827.     Loop   
  828.        
  829.     If (maxValue <= 0) Then   
  830.         MsgBox "Failed to calculate the maximum value or max value is 0."   
  831.         Exit Sub   
  832.     End If   
  833.        
  834.     ' Set up the chart marker symbol to use with the renderer   
  835.     Dim pBarChartSymbol As IBarChartSymbol   
  836.     Dim pFillSymbol As IFillSymbol   
  837.     Dim pMarkerSymbol As IMarkerSymbol   
  838.     Dim pSymbolArray As ISymbolArray   
  839.     Dim pChartSymbol As IChartSymbol   
  840.        
  841.     Set pBarChartSymbol = New BarChartSymbol   
  842.     Set pChartSymbol = pBarChartSymbol   
  843.     pBarChartSymbol.Width = 6   
  844.     Set pMarkerSymbol = pBarChartSymbol   
  845.        
  846.     ' Finally we've got the biggest value, set this into the symbol   
  847.     pChartSymbol.maxValue = maxValue   
  848.        
  849.     ' This is the maximum height of the bars   
  850.     pMarkerSymbol.SIZE = 16   
  851.        
  852.     ' Now set up symbols for each bar   
  853.     Set pSymbolArray = pBarChartSymbol   
  854.        
  855.     ' Add some colours in for each bar   
  856.        
  857.     Set pFillSymbol = New SimpleFillSymbol   
  858.     ' This is a pastel purple   
  859.     pFillSymbol.color = GetRGBColor(213, 212, 252)   
  860.     pSymbolArray.AddSymbol pFillSymbol   
  861.        
  862.     Set pFillSymbol = New SimpleFillSymbol   
  863.     ' This is a pastel green   
  864.     pFillSymbol.color = GetRGBColor(193, 252, 179)   
  865.     pSymbolArray.AddSymbol pFillSymbol   
  866.        
  867.     ' Now set the barchart symbol into the renderer   
  868.     Set pChartRenderer.ChartSymbol = pBarChartSymbol   
  869.     pChartRenderer.Label = "Population"   
  870.        
  871.     ' set up the background symbol to use tan color   
  872.     Set pFillSymbol = New SimpleFillSymbol   
  873.     pFillSymbol.color = GetRGBColor(239, 228, 190)   
  874.     Set pChartRenderer.BaseSymbol = pFillSymbol   
  875.        
  876.     ' Disable overpoaster so that charts appear in the centre of polygons   
  877.     pChartRenderer.UseOverposter = False   
  878.        
  879.     ' Update the renderer and refresh the screen   
  880.     Set m_pGeoFeatureLayer.Renderer = pChartRenderer   
  881.        
  882.     '可以提到窗体中实现 ?   
  883.     frmMapControl.arcMapControl.Refresh   
  884.     frmMapControl.arcMapControl.Update   
  885. End Sub   


摘自http://www.pudn.com/downloads119/sourcecode/windows/csharp/detail504683.html


[本日志由 独木舟 于 2009-02-21 09:33 PM 编辑]
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: GIS Code
相关日志:
评论: 0 | 引用: 0 | 查看次数: -
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
loading...