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.
32 lines
411 B
32 lines
411 B
namespace Mapbox.Unity.Map
|
|
{
|
|
using System;
|
|
|
|
[Serializable]
|
|
public class Style
|
|
{
|
|
public string Name;
|
|
public string Id;
|
|
public string Modified;
|
|
public string UserName;
|
|
}
|
|
|
|
[Serializable]
|
|
public class LayerSourceOptions
|
|
{
|
|
public bool isActive;
|
|
public Style layerSource;
|
|
|
|
public string Id
|
|
{
|
|
get
|
|
{
|
|
return layerSource.Id;
|
|
}
|
|
set
|
|
{
|
|
layerSource.Id = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|