Hi
I would like to use in my application this plugin
I’ve installed it with npm but I don’t know how to include in my app and use it.
I’ve imported it in the page where I want use this with
import { imageMapResize } from 'image-map-resizer';
then add into the constructor
public imageMapResizer: imageMapResize,
and
ionViewDidLoad() {
console.log('ionViewDidLoad ProfilePage');
$('map').imageMapResize();
}
but it gives me an error about imageMapResize telling me that it’s not found.
I don’t understand how to use this plugin into a ionic project, can you help me?
Thank you