Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpflippercode/0b119ae1b6714b3e9657356adac70410 to your computer and use it in GitHub Desktop.
Save wpflippercode/0b119ae1b6714b3e9657356adac70410 to your computer and use it in GitHub Desktop.
Access Map Object Using Javascript
add_action("wp_head","fc_reset_zoom");
function fc_reset_zoom() {
echo '
<script>jQuery(document).ready(function($){ alert("ok");
$("body").on("click",".test",function(){ var map_obj = $("#map5").data("wpgmp_maps"); map_obj.map.setZoom(8); }
);
});</script>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment