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
x
57
57
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.12/vue.js"></script>
2
<template>
3
<div class="containerTest">
4
<div style="height: 80vh">
5
<LMap :zoom="zoom" :center="center">
6
<LTileLayer :url="url"></LTileLayer>
7
<l-marker
8
:key="index"
9
v-for="(brew, index) in markers"
10
:lat-lng="latLng(brew.latitude, brew.longitude)"
11
></l-marker>
12
<!-- <LMarker :lat-lng="[47.413220, -1.219482]"></LMarker>
13
<LMarker :lat-lng="[46.193220, 4.82]"></LMarker>
14
<LMarker :lat-lng="[45.193220, 6.82]"></LMarker>
15
<LMarker :lat-lng="[47.03220, -0.9482]"></LMarker>
16
<LMarker :lat-lng="[46.03220, 2.9482]"></LMarker> -->
17
</LMap>
18
</div>
19
</div>
20
21
</template>
22
23
<script>
24
25
import { LMap, LTileLayer, LMarker } from "vue2-leaflet";
26
27
export default {
28
name: "Map",
29
components: {
30
LMap,
31
LTileLayer,
32
LMarker
33
},
34
data() {
35
return {
36
markers: [],
37
url: "https://api.maptiler.com/maps/streets/{z}/{x}/{y}.png?key=CFmlXsYmVozAdWKEtdT5",
38
zoom: 6,
39
center: [46.5322, 2.9482],
40
bounds: null
41
};
42
},
43
mounted: function () {
44
fetch('https://api.openbrewerydb.org/breweries').then((response) => {
45
return response.json();
46
}).then(json=>{
47
this.brews = json
48
console.log(this.brews)
49
})
50
},
51
methods: {
52
latLng: function(lat, lng) {
53
return L.latLng(lat,lng);
54
},
55
}
56
};
57
</script>
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:
- store the data (
this.breweries
in example below) - Add
computed
propertymarkers
which generates the data you need for rendering…
JavaScript
1
37
37
1
const vm = new Vue({
2
name: "Map",
3
el: '#app',
4
components: {
5
'l-map': window.Vue2Leaflet.LMap,
6
'l-tile-layer': window.Vue2Leaflet.LTileLayer,
7
'l-marker': window.Vue2Leaflet.LMarker,
8
},
9
data() {
10
return {
11
url: "https://api.maptiler.com/maps/streets/{z}/{x}/{y}.png?key=CFmlXsYmVozAdWKEtdT5",
12
zoom: 11,
13
center: [32.714813, -117.129593],
14
bounds: null,
15
breweries: []
16
};
17
},
18
mounted: function() {
19
fetch('https://api.openbrewerydb.org/breweries?by_city=san_diego')
20
.then((response) => {
21
return response.json();
22
}).then(data => {
23
this.breweries = data
24
//console.log(this.breweries)
25
})
26
},
27
computed: {
28
markers() {
29
return this.breweries
30
.filter((br) => br.latitude && br.longitude) // only breweries with lat + lon data
31
.map((br) => ({
32
br,
33
markerLatLng: [br.latitude, br.longitude]
34
}))
35
}
36
}
37
});
JavaScript
1
15
15
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.12/vue.js"></script>
2
<link rel="stylesheet" href="//unpkg.com/leaflet/dist/leaflet.css" />
3
<script src="//unpkg.com/leaflet/dist/leaflet.js"></script>
4
<script src="//unpkg.com/vue2-leaflet"></script>
5
6
<div id="app">
7
<div class="containerTest">
8
<div style="height: 80vh">
9
<l-map :zoom="zoom" :center="center">
10
<l-tile-layer :url="url"></l-tile-layer>
11
<l-marker :key="brew.id" v-for="(brew, index) in markers" :lat-lng="brew.markerLatLng"></l-marker>
12
</l-map>
13
</div>
14
</div>
15
</div>