import React from 'react'; import { BaseProps } from '../types/BaseProps'; import AbstractSource from './AbstractSource'; type Props = BaseProps & { /** * A string that uniquely identifies the source. */ id: string; /** * The id refers to an existing source in the style. Does not create a new source. */ existing?: boolean; /** * A URL to a TileJSON configuration file describing the source’s contents and other metadata. */ url?: string; /** * An array of tile URL templates. If multiple endpoints are specified, clients may use any combination of endpoints. * Example: https://example.com/raster-tiles/{z}/{x}/{y}.png */ tileUrlTemplates?: string[]; /** * An unsigned integer that specifies the minimum zoom level at which to display tiles from the source. * The value should be between 0 and 22, inclusive, and less than * maxZoomLevel, if specified. The default value for this option is 0. */ minZoomLevel?: number; /** * An unsigned integer that specifies the maximum zoom level at which to display tiles from the source. * The value should be between 0 and 22, inclusive, and less than * minZoomLevel, if specified. The default value for this option is 22. */ maxZoomLevel?: number; /** * Size of the map tiles. * Mapbox urls default to 256, all others default to 512. */ tileSize?: number; /** * Influences the y direction of the tile coordinates. (tms inverts y axis) */ tms?: boolean; /** * An HTML or literal text string defining the buttons to be displayed in an action sheet when the * source is part of a map view’s style and the map view’s attribution button is pressed. */ attribution?: string; children?: React.ReactElement | React.ReactElement[]; /** * An array containing the longitude and latitude of the southwest and northeast corners of * the source's bounding box in the following order: `[sw.lng, sw.lat, ne.lng, ne.lat]`. * When this property is included in a source, no tiles outside of the given bounds are requested by Mapbox GL. */ sourceBounds?: number[]; }; type NativeProps = Props; /** * RasterSource is a map content source that supplies raster image tiles to be shown on the map. * The location of and metadata about the tiles are defined either by an option dictionary * or by an external file that conforms to the TileJSON specification. */ declare class RasterSource extends AbstractSource { static defaultProps: Props; constructor(props: Props); render(): import("react/jsx-runtime").JSX.Element; } export default RasterSource; //# sourceMappingURL=RasterSource.d.ts.map