//----------------------------------------------------------------------- // // Copyright (c) 2016 Mapbox. All rights reserved. // //----------------------------------------------------------------------- namespace Mapbox.Map { /// /// A retin-resolution raster tile from the Mapbox Style API, an encoded image representing a geographic /// bounding box. Usually JPEG or PNG encoded. /// Like , but higher resolution. /// See retina documentation . /// public class RetinaRasterTile : RasterTile { internal override TileResource MakeTileResource(string tilesetId) { return TileResource.MakeRetinaRaster(Id, tilesetId); } } }