Difference between revisions of "Widget:Google Map"

From Ludlow Family Wiki
Jump to: navigation, search
m (14 revisions imported: Initial import from smithfam)
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
<noinclude>Display a place in a Google Map via the [https://developers.google.com/maps/documentation/embed/guide Embed API].
+
<noinclude>Display a Google Map via the [https://developers.google.com/maps/documentation/embed/guide Embed API].
* ''place'': Place to display
+
* ''place'': Place to display; default is no highlighted place
* ''width'': Width of iframe
+
* ''center'': Coordinates of center (e.g., -33.8569,151.2152); default is computed from place
* ''height'': Height of iframe
+
* ''zoom'': Zoom level; default is computed from place
* ''zoom'': Zoom level (optional)
+
* ''width'': Width of iframe; default is 400
 +
* ''height'': Height of iframe; default is 300
 
</noinclude><includeonly><iframe
 
</noinclude><includeonly><iframe
 
   width='<!--{$width|escape:'quotes'|default:'400'}-->'
 
   width='<!--{$width|escape:'quotes'|default:'400'}-->'
   height='<!--{$height|escape:'quotes'|default:'400'}-->'
+
   height='<!--{$height|escape:'quotes'|default:'300'}-->'
  <!--{if isset($zoom)}-->zoom='<!--{$zoom|escape:'quotes'}-->'<!--{/if}-->
 
 
   frameborder="0" style="border:0"
 
   frameborder="0" style="border:0"
   src="https://www.google.com/maps/embed/v1/place?key=AIzaSyAIWDKY-pMzKZETUQiFJQq3Oeqi2OkL0hY
+
   src="https://www.google.com/maps/embed/v1<!--{if !empty($place)}-->/place<!--{else}-->/view<!--{/if}-->?key=AIzaSyAIWDKY-pMzKZETUQiFJQq3Oeqi2OkL0hY<!--{if !empty($place)}-->&q=<!--{$place|escape:'url'}--><!--{/if}--><!--{if !empty($center)}-->&center=<!--{$center|escape:'url'}--><!--{/if}--><!--{if !empty($zoom)}-->&zoom=<!--{$zoom|escape:'url'}--><!--{/if}-->"></iframe></includeonly>
    &q=<!--{$place|escape:'url'}-->">
 
</iframe></includeonly>
 

Latest revision as of 19:14, 8 December 2015

Display a Google Map via the Embed API.

  • place: Place to display; default is no highlighted place
  • center: Coordinates of center (e.g., -33.8569,151.2152); default is computed from place
  • zoom: Zoom level; default is computed from place
  • width: Width of iframe; default is 400
  • height: Height of iframe; default is 300