How do I save data in the free version #858
-
How do I save data to localStorage and/or online DataBase in the free version |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
You can read out all layers on the map and save them as geojson to the localstorage or db.
But you have to add properties to the geojson which color, options the layer has and what type of layer it is. A Circle will displayed as Marker by default. But this is a default problem of geojson. |
Beta Was this translation helpful? Give feedback.
-
Is it possible to upload the data to a MySQL database? |
Beta Was this translation helpful? Give feedback.
-
@goodpeti you can upload the data to any database you like 😉 . That application logic is not part of this library though |
Beta Was this translation helpful? Give feedback.
You can read out all layers on the map and save them as geojson to the localstorage or db.
But you have to add properties to the geojson which color, options the layer has and what type of layer it is. A Circle will displayed as Marker by default. But this …