Ejemplo n.º 1
0
 private void Cleanup()
 {
     _currentMapLayer = null;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Event fired when a layer was selected in the layers form
 /// </summary>
 /// <param name="s"></param>
 /// <param name="e"></param>
 private void OnCurrentLayer(MapLayersHandler s, LayerEventArg e)
 {
     _currentMapLayer = MapInterActionHandler.MapLayersHandler.CurrentMapLayer;
     DisplayAttributes();
 }
 public ShapefileLabelHandler(MapLayer mapLayer)
 {
     _mapLayer  = mapLayer;
     _shapeFile = (Shapefile)_mapLayer.LayerObject;
 }
Ejemplo n.º 4
0
 private void OnCurrentMapLayer(MapLayersHandler s, LayerEventArg e)
 {
     _currentMapLayer = _mapLayersHandler.get_MapLayer(e.LayerHandle);
 }
Ejemplo n.º 5
0
 public PointLayerSymbologyHandler(MapLayer mapLayer)
 {
     _mapLayer  = mapLayer;
     _shapeFile = _mapLayer.LayerObject as Shapefile;
 }