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

18 lines
375 B

6 months ago
using Mapbox.Unity.Map.Interfaces;
namespace Mapbox.Unity.Map
{
using System;
using UnityEngine;
[Serializable]
public class MapScalingOptions : MapboxDataProperty
{
public MapScalingType scalingType = MapScalingType.Custom;
[Tooltip("Size of each tile in Unity units.")]
public float unityTileSize = 100f;
public IMapScalingStrategy scalingStrategy;
}
}