I’m trying to display Marker on Leaflet Map, from locations.json
this.Http.get('/data/locations.json')
.then((locations) => {
locations.forEach((locations) => {
L.marker([locations.lat, locations.long])
.bindPopup(locations.title )
.addTo(map);
});
});
TypeError: Cannot read property ‘get’ of undefined