Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <link rel="import" href="../google-map/google-map.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. top: 0px;
  13. left: 0px;
  14. }
  15. #google_map {
  16. width: 100%;
  17. height: 30%;
  18. left: 0px;
  19. top: 0px;
  20. position: absolute;
  21. }
  22. </style>
  23. <google-map latitude="18.335346575903188" longitude="-64.92404510693358" zoom="13" id="google_map"></google-map>
  24. </template>
  25.  
  26. <script>
  27.  
  28. Polymer({
  29.  
  30. });
  31.  
  32. </script>
  33.  
  34. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement