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

14 lines
326 B

6 months ago
using Mapbox.Unity.Map.Interfaces;
namespace Mapbox.Unity.Map
{
using System;
[Serializable]
public class MapPlacementOptions : MapboxDataProperty
{
public MapPlacementType placementType = MapPlacementType.AtLocationCenter;
public bool snapMapToZero = false;
public IMapPlacementStrategy placementStrategy;
}
}