Advertisement
SMSabuj

Static Gmap

Jul 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. function crazyland_maps_shortcode($atts) {
  2.    
  3.     $default = array(
  4.         'lat' => '22.9196383',
  5.         'lon' => '91.520781',
  6.         'zoom' => '16',
  7.         'width' => '600',
  8.         'height' => '400',
  9.     );
  10.  
  11.     $map_data = shortcode_atts( $default, $atts);
  12.  
  13.     $img = '<img src="http://maps.google.com/maps/api/staticmap?center=%f,%f&zoom=%d&size=%dx%d" />';
  14.  
  15.     return sprintf($img,$map_data['lat'],$map_data['lon'],$map_data['zoom'],$map_data['width'],$map_data['height']);
  16.  
  17. }
  18. add_shortcode( 'maps', 'crazyland_maps_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement