Raster Source
import React from 'react';
import {
Images,
MapView,
RasterLayer,
RasterSource,
Camera,
} from '@rnmapbox/maps';
const styles = {
matchParent: { flex: 1 },
};
export default function RasterSourceExample() {
return (
<MapView style={styles.matchParent}>
<Camera
defaultSettings={{
centerCoordinate: [-74.00597, 40.71427],
zoomLevel: 14,
}}
/>
<RasterSource
id="stamen-watercolor"
tileSize={256}
sourceBounds={[
-74.01010105570786, 40.7096750598196, -74.00028742807824,
40.71670107507063,
]}
tileUrlTemplates={['https://tile.openstreetmap.org/{z}/{x}/{y}.png']}
/>
<RasterLayer
id="stamen-watercolor-layer"
sourceID="stamen-watercolor"
style={{ rasterOpacity: 0.85 }}
/>
</MapView>
);
}
}