Skip to content
Advertisement

How to generate markers from an api in leaflet?

I’m making in app using vue and leaflet and I need to generate markers from and API. But for some reason, only the default markers are showing. I can access the api data in the DOM. I just can’t figure out how to iterate over it and show the data on the DOM. pls help

here’s the code

JavaScript

Advertisement

Answer

You are storing data from API in a variable this.brews which does not exists in data. Then you are rendering markers from markers array which is empty and not modified at all…

To fix it:

  1. store the data (this.breweries in example below)
  2. Add computed property markers which generates the data you need for rendering…

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