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: Wed, 15 Oct 2025 07:48:32 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210095-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760514513.653910,VS0,VE294
vary: Accept-Encoding
x-fastly-request-id: d25d4495b7a1fb0180c2b9e28b09dd21784bbf0b
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: 551B:FD3CF:26F4B6:582C89:68EF51CF
content-encoding: gzip
accept-ranges: bytes
date: Wed, 15 Oct 2025 07:48:33 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210085-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760514513.012831,VS0,VE344
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: c5b4488fe2993979c37b825230b90a21371f837f
expires: Wed, 15 Oct 2025 07:53:33 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