Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 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. #design_host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #google_map {
  14. width: 400px;
  15. height: 400px;
  16. display: block;
  17. left: 50px;
  18. top: 40px;
  19. position: absolute;
  20. }
  21. </style>
  22. <google-map latitude="37.30888649687764" longitude="-121.375718828125" 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