mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-09 23:41:55 +01:00
3727c9ad5e
Fixes #814 * fix: remove outdated references to mapbox * docs: fix references in readme * chore: fix mapbox references in tests * chore: fix mapbox references in stories, webpack config * chore: remove empty array
109 lines
2.2 KiB
JavaScript
109 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import MapMaplibreGl from '../src/components/MapMaplibreGl';
|
|
import {action} from '@storybook/addon-actions';
|
|
import {Wrapper} from './ui';
|
|
import {withA11y} from '@storybook/addon-a11y';
|
|
|
|
|
|
export default {
|
|
title: 'MapMaplibreGl',
|
|
component: MapMaplibreGl,
|
|
decorators: [withA11y],
|
|
};
|
|
|
|
const mapStyle = {
|
|
"version": 8,
|
|
"sources": {
|
|
"test1": {
|
|
"type": "geojson",
|
|
"data": {
|
|
"type": "FeatureCollection",
|
|
"features": [
|
|
{
|
|
"type": "Feature",
|
|
"geometry": {
|
|
"type": "Point",
|
|
"coordinates": [0, -10]
|
|
},
|
|
"properties": {}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"test2": {
|
|
"type": "geojson",
|
|
"data": {
|
|
"type": "FeatureCollection",
|
|
"features": [
|
|
{
|
|
"type": "Feature",
|
|
"geometry": {
|
|
"type": "Point",
|
|
"coordinates": [15, 10]
|
|
},
|
|
"properties": {}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"test3": {
|
|
"type": "geojson",
|
|
"data": {
|
|
"type": "FeatureCollection",
|
|
"features": [
|
|
{
|
|
"type": "Feature",
|
|
"geometry": {
|
|
"type": "Point",
|
|
"coordinates": [-15, 10]
|
|
},
|
|
"properties": {}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"sprite": "",
|
|
"glyphs": "https://orangemug.github.io/font-glyphs/glyphs/{fontstack}/{range}.pbf",
|
|
"layers": [
|
|
{
|
|
"id": "test1",
|
|
"type": "circle",
|
|
"source": "test1",
|
|
"paint": {
|
|
"circle-radius": 40,
|
|
"circle-color": "red"
|
|
}
|
|
},
|
|
{
|
|
"id": "test2",
|
|
"type": "circle",
|
|
"source": "test2",
|
|
"paint": {
|
|
"circle-radius": 40,
|
|
"circle-color": "green"
|
|
}
|
|
},
|
|
{
|
|
"id": "test3",
|
|
"type": "circle",
|
|
"source": "test3",
|
|
"paint": {
|
|
"circle-radius": 40,
|
|
"circle-color": "blue"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
export const Basic = () => {
|
|
return <div style={{height: "100vh", width: "100vw"}}>
|
|
<MapMaplibreGl
|
|
mapStyle={mapStyle}
|
|
inspectModeEnabled={false}
|
|
replaceAccessTokens={(s) => s}
|
|
/>
|
|
</div>
|
|
};
|
|
|
|
|