Graphic Walker
Client Side
Using Map in Graphic Walker

Using maps in GraphicWalker

There are map mode in GraphicWalker. You can change the mode in GraphicWalker, or you can using the default config to make a initial map mode.

You can also set the geoshape file or map tile in layout.

You can see the config reference in here

POI Mode

export default function App() {
    return (
        <GraphicWalker data={data} fields={fields} defaultConfig={{
            config: {
                geoms: ['poi'],
                coordSystem: 'geographic'
            },
            layout: {
                geoMapTileUrl: 'https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}'
            }
        }} />
    );
}