It’s show on web browser as normal but in popover not show and have error
ERROR: [ignore]map_1_577491397447.resizeMap, because removed.
$$('.popup-map').on('popup:open', function(e) {
var div = document.getElementById("map-view");
var myLatLng = {
lat: data.p_lat,
lng: data.p_lng
};
var options = {
camera: {
target: myLatLng,
zoom: 16
}
};
// Create a Google Maps native view under the map_canvas div.
var map = plugin.google.maps.Map.getMap(div, options);
var marker = map.addMarker({
'position': myLatLng,
title: data.p_title
}, function(marker) {
marker.showInfoWindow();
});
$$('.my-location').on('click', function(e) {
console.log(localStorage.myLocation);
map.animateCamera({
'target': myLatLng,
'zoom': 17,
'duration': 100
}, function() {
isRunning = false;
});
});
});