CARVIEW |
Select Language
HTTP/2 301
location: https://raw.githubusercontent.com/dblock/ARTiledImageView/1.1.1/Classes/ARWebTiledImageDataSource.h
accept-ranges: bytes
age: 0
date: Mon, 13 Oct 2025 04:46:53 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210067-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760330814.661676,VS0,VE317
vary: Accept-Encoding
x-fastly-request-id: 16d10b3408a60b855a21a12421f22ceaa2df63ea
content-length: 0
HTTP/2 200
cache-control: max-age=300
content-security-policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type: text/plain; charset=utf-8
etag: W/"eea546cec7637d8c88269c4c46e568279e41bc3be71fda617104e1a95e5d7b7c"
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-frame-options: deny
x-xss-protection: 1; mode=block
x-github-request-id: A8E2:132630:245548:5D0D0D:68EC843C
content-encoding: gzip
accept-ranges: bytes
date: Mon, 13 Oct 2025 04:46:54 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210047-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760330814.054705,VS0,VE326
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: 786ee8d67c9367d628988890687682074b320c88
expires: Mon, 13 Oct 2025 04:51:54 GMT
source-age: 0
content-length: 471
//
// ARWebTiledImageDataSource.h
// ARTiledImageView
//
// Created by Daniel Doubrovkine on 3/10/14.
// Copyright (c) 2014 Artsy. All rights reserved.
//
#import
#import "ARTiledImageViewDataSource.h"
/**
* An implementation of the ARTiledImageViewDataSource protocol that supports retrieving tiles from a remote HTTP server.
*/
@interface ARWebTiledImageDataSource : NSObject
/// Maximum height of the tiled image.
@property (nonatomic) NSInteger maxTiledHeight;
/// Maximum width of the tiled image.
@property (nonatomic) NSInteger maxTiledWidth;
/// Maximum tile width or height. Tiles are square except on edges.
@property (nonatomic) NSInteger tileSize;
/// The base URL from which to retrieve tiles.
@property (nonatomic) NSURL *tileBaseURL;
/// Tile format, eg. "jpg".
@property (nonatomic, copy) NSString *tileFormat;
/// Maximum tile level.
@property (nonatomic) NSInteger maxTileLevel;
/// Minimum tile level.
@property (nonatomic) NSInteger minTileLevel;
@end