Skip to content
Advertisement

Dynamically Loading multiple External GeoJson data files and calling multiple layers dynamically using Leaflet

I have about 50 different map layers to be added on a map. Each map layer data is stored as separate JS file (lay1.js, lay2.js, …… lay50.js). Each layer have its own different properties also like Some layers may be polygons, some may be markers etc. My code is almost like as given below. Is there any way to add these .js geojson data files dynamically when the user click its corresponding layer checkbox instead of loading all as script files? Also i would like to know how to call the layers dynamically instead of storing each layer in separate variables as seen in code below.

JavaScript

Please Help. My full code is given below.

JavaScript

Advertisement

Answer

You can fetch each geojson once you check it via the checkbox to display it on the map.

JavaScript

You can store the geo features in an associative array (layers) once you fetch them and retrieve them via their file name (which should be unique) to be able to remove them from the map.

To remove fetching the same features again and again you can extend getGeojson to only fetch once by checking what has been stored in layers before

JavaScript

Last but not least you can remove repetitive input declaration by adding them via js. Loop over the file names and add the keys on the ids and onClick second argument respectively.

Demo

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement