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/Core/mapbox-sdk-cs/Map/RetinaRasterTile.cs

23 lines
916 B

6 months ago
//-----------------------------------------------------------------------
// <copyright file="RetinaClassicRasterTile.cs" company="Mapbox">
// Copyright (c) 2016 Mapbox. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace Mapbox.Map
{
/// <summary>
/// A retin-resolution raster tile from the Mapbox Style API, an encoded image representing a geographic
/// bounding box. Usually JPEG or PNG encoded.
/// Like <see cref="T:Mapbox.Map.RasterTile"/>, but higher resolution.
/// See <see href="https://www.mapbox.com/api-documentation/#high-dpi-images"> retina documentation </see>.
/// </summary>
public class RetinaRasterTile : RasterTile
{
internal override TileResource MakeTileResource(string tilesetId)
{
return TileResource.MakeRetinaRaster(Id, tilesetId);
}
}
}