Js docs
- clone this repo
- npm install
- ng serve
Js docs
https://www.digitalocean.com/community/tutorials/angular-angular-and-leaflet
https://www.digitalocean.com/community/tutorials/angular-angular-and-leaflet-marker-service
Examples
https://leaflet-extras.github.io/leaflet-providers/preview/
svg icons https://www.svgrepo.com/vectors/marker/
addMarker(){
L.marker([-30.889332, -55.557966]).addTo(this.map)
.bindPopup('A pretty CSS popup.<br> Easily customizable.')
.openPopup();
}
this.map.on('click', ($event:any)=> {
let lat=$event.latlng.lat;
let lng=$event.latlng.lng;
L.marker([lat,lng],{draggable:true,icon: myIcon}).addTo(this.map)
});
Properties