Advertisement
Guest User

Untitled

a guest
May 4th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 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. }
  13. #google_map {
  14. width: 100%;
  15. height: 100%;
  16. display: block;
  17. left: 0px;
  18. top: 0px;
  19. position: absolute;
  20. }
  21. </style>
  22. <google-map latitude="37.52212525243214" longitude="-122.05549788085938" id="google_map"></google-map>
  23. </template>
  24.  
  25. <script>
  26.  
  27. Polymer({
  28.  
  29. });
  30.  
  31. </script>
  32.  
  33. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement