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/LayerProperties/ImageryLayerProperties.cs

26 lines
588 B

6 months ago
namespace Mapbox.Unity.Map
{
using UnityEngine;
using System;
using System.Collections.Generic;
[System.Serializable]
public class ImageryLayerProperties : LayerProperties
{
public ImagerySourceType sourceType = ImagerySourceType.MapboxStreets;
public LayerSourceOptions sourceOptions = new LayerSourceOptions()
{
isActive = true,
layerSource = MapboxDefaultImagery.GetParameters(ImagerySourceType.MapboxStreets)
};
public ImageryRasterOptions rasterOptions = new ImageryRasterOptions();
public override bool NeedsForceUpdate()
{
return true;
}
}
}