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/SubLayerSimpleStyle.cs

43 lines
805 B

namespace Mapbox.Unity.Map
{
public class SubLayerSimpleStyle : ISubLayerSimpleStyle
{
private GeometryMaterialOptions _materialOptions;
public SubLayerSimpleStyle(GeometryMaterialOptions materialOptions)
{
_materialOptions = materialOptions;
}
public SamplePalettes PaletteType
{
get
{
return _materialOptions.samplePalettes;
}
set
{
if (_materialOptions.samplePalettes != value)
{
_materialOptions.samplePalettes = value;
_materialOptions.HasChanged = true;
}
}
}
public void SetAsStyle()
{
SetAsStyle(SamplePalettes.City);
}
public void SetAsStyle(SamplePalettes palette)
{
_materialOptions.style = StyleTypes.Fantasy;
_materialOptions.samplePalettes = palette;
_materialOptions.HasChanged = true;
}
}
}