You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
mapbox-sdk/Unity/SourceLayers/ISubLayerLineGeometryOption...

15 lines
405 B

using Mapbox.Unity.Map;
namespace Mapbox.Unity.SourceLayers
{
public interface ISubLayerLineGeometryOptions
{
/// <summary>
/// Sets the width of the mesh generated for line features.
/// </summary>
/// <param name="width">Width of the mesh generated for line features.</param>
void SetLineWidth(float width);
void SetJoinType(LineJoinType join);
void SetCapType(LineCapType cap);
}
}