Advertisement
borlabs

GEO my WP

Dec 19th, 2022
943
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if ( typeof gmwMapObjects != 'undefined' ) {
  2.     // loop through and generate all maps
  3.     jQuery.each( gmwMapObjects, function( map_id, vars ) { 
  4.  
  5.         if ( vars.settings.render_on_page_load ) {
  6.            
  7.             // generate new map
  8.             GMW_Maps[map_id] = new GMW_Map( vars.settings, vars.map_options, vars.form );
  9.             // initiate it
  10.             GMW_Maps[map_id].render( vars.locations, vars.user_location );
  11.         }
  12.     });
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement