I´m trying to make everything as possible in my leaflet
project in Angular
with ngx-angular
but can´t find the way to make them work properly.
This is my params code:
zoomControl = {position: 'bottomright'};
readonly drawOptions = {
position: 'topright',
draw: {
circle: false,
circlemarker: false
},
edit: {
featureGroup: this.drawItems,
remove: false
}
};
As you can see on this snapshot, this doesn´t works, position
params are ignored and circle and circlemarker
properties are ignored too.
Of course, they are included into the div
map tag that has the ngx-leaflet
properties calls, I wish to know if it´s possible to make them work without using pure JS on the way.