Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Prevents the map from showing the Map|Satellite picker at the top of the map in GravityView
  5. *
  6. * @param array $options Array of options to be passed to the Google map via JS
  7. *
  8. * @return array
  9. */
  10. add_filter( 'gravityview/maps/render/options', function( $options = array() ) {
  11.  
  12. $options['mapTypeControl'] = false;
  13.  
  14. return $options;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement