Skip to content

Commit

Permalink
Reorg Mapbox components
Browse files Browse the repository at this point in the history
  • Loading branch information
blueherongis committed Sep 13, 2021
1 parent df6fb6d commit c805f8f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Heron/Components/GIS API/MapboxRaster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ public MapboxRaster() : base("Mapbox Raster", "MapboxRaster", "Get raster imager
{
}

public override Grasshopper.Kernel.GH_Exposure Exposure
{
get { return GH_Exposure.secondary; }
}

/// <summary>
/// Registers all the input parameters for this component.
/// </summary>
Expand Down
5 changes: 5 additions & 0 deletions Heron/Components/GIS API/MapboxTopo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public MapboxTopo() : base("Mapbox Topography", "MapboxTopo", "Get mesh topograp

}

public override Grasshopper.Kernel.GH_Exposure Exposure
{
get { return GH_Exposure.secondary; }
}

/// <summary>
/// Registers all the input parameters for this component.
/// </summary>
Expand Down
4 changes: 4 additions & 0 deletions Heron/Components/GIS API/MapboxVector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ public MapboxVector() : base("Mapbox Vector", "MapboxVector", "Get vector data f
{

}
public override Grasshopper.Kernel.GH_Exposure Exposure
{
get { return GH_Exposure.secondary; }
}

/// <summary>
/// Registers all the input parameters for this component.
Expand Down

0 comments on commit c805f8f

Please sign in to comment.