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/DataContainers/UnifiedMapOptions.cs

19 lines
631 B

6 months ago
namespace Mapbox.Unity.Map
{
using System;
using Mapbox.Unity.Utilities;
[Serializable]
public class UnifiedMapOptions
{
public MapPresetType mapPreset = MapPresetType.LocationBasedMap;
public MapOptions mapOptions = new MapOptions();
[NodeEditorElement("Image Layer")]
public ImageryLayerProperties imageryLayerProperties = new ImageryLayerProperties();
[NodeEditorElement("Terrain Layer")]
public ElevationLayerProperties elevationLayerProperties = new ElevationLayerProperties();
[NodeEditorElement("Vector Layer")]
public VectorLayerProperties vectorLayerProperties = new VectorLayerProperties();
}
}