We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this does not work for angular 4.0.0 and @angular/cli import SelectArea from 'leaflet-area-select';
import SelectArea from 'leaflet-area-select';
following works, but only with a not really pretty hack import * as L from 'leaflet'; import 'leaflet-area-select';
import * as L from 'leaflet';
import 'leaflet-area-select';
webpack integrated in ng does not compile otherwise let map2 = (map as any); map2.selectArea.enable();
ng
let map2 = (map as any);
map2.selectArea.enable();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this does not work for angular 4.0.0 and @angular/cli
import SelectArea from 'leaflet-area-select';
following works, but only with a not really pretty hack
import * as L from 'leaflet';
import 'leaflet-area-select';
webpack integrated in
ng
does not compile otherwiselet map2 = (map as any);
map2.selectArea.enable();
The text was updated successfully, but these errors were encountered: