Google maps plugin and Ionic caching - problem

So i was using ionic with Google maps plugin (github.com/wf9a5m75/phonegap-googlemaps-plugin) and it was working without any problems.
But with latest Ionic update, caching is introduced and i can’t make it work.

This plugin works like this:

var mapdiv = document.getElementById("canvas");
map = plugin.google.maps.Map.getMap(mapdiv);

But when caching is introduced now there is several #canvas divs inside ion-view and plugin doesn’t know to which one to point.
Of course i tried to turn the caching off, but when i do that plugin goes crazy and start adding millions of its classes to #canvas div.

I am confused that no one is having the same issue as me, this is very popular plugin.