I have my JQM application, in my page I loading datas from external JSON for show markers in my Google Map.
I use this page structure:
// GOOGLE MAPS RICERCA
$(document).on('pageshow','#map3', function(){
//show map in my page
});
When I click a marker, I show a new page with details. If I click "back" button, I return on the #map3 page, and reload again the datas and the map.
I'd like that the map refreshed only with the pression of apposite button in a map page (and not every time).
Can you help me?