State persistence in React Maps component
29 Aug 20231 minute to read
State Persistence
State persistence allows the Maps to retain the current model value in the browser cookies for state maintenance. This action is handled through the enablePersistence
property which is set to false by default. When this property is set to true, some of the Maps component model values are preserved even after the page is refreshed.
import { world_map } from 'world-map.ts';
import * as React from "react";
import * as ReactDOM from "react-dom";
import { MapsComponent, LayersDirective, LayerDirective, Zoom, Inject } from '@syncfusion/ej2-react-maps';
export function App() {
return(
<MapsComponent enablePersistence={true} zoomSettings={ { enable: true } }>
<Inject services={[Zoom]}/>
<LayersDirective>
<LayerDirective shapeData={world_map}>
</LayerDirective>
</LayersDirective>
</MapsComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById('container'));
root.render(<App />);