Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <link rel="import" href="../google-map/google-map.html">
  2. <link rel="import" href="../notification-elements/notification-alert.html">
  3. <link rel="import" href="../speech-mic/speech-mic.html">
  4.  
  5. <polymer-element name="my-element">
  6.  
  7. <template>
  8. <style>
  9. :host {
  10. position: absolute;
  11. width: 100%;
  12. height: 100%;
  13. box-sizing: border-box;
  14. }
  15. #google_map {
  16. width: 400px;
  17. height: 400px;
  18. display: block;
  19. left: 160px;
  20. top: 20px;
  21. position: absolute;
  22. }
  23. #notification_alert {
  24. left: 840px;
  25. top: 520px;
  26. position: absolute;
  27. }
  28. #notification_alert1 {
  29. left: 800px;
  30. top: 440px;
  31. position: absolute;
  32. }
  33. #speech_mic {
  34. left: 800px;
  35. top: 400px;
  36. position: absolute;
  37. }
  38. </style>
  39. <google-map latitude="37.53029367099027" longitude="-121.85225081054688" id="google_map"></google-map>
  40. <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert>
  41. <notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert1"></notification-alert>
  42. <speech-mic id="speech_mic"></speech-mic>
  43. </template>
  44.  
  45. <script>
  46.  
  47. Polymer({
  48.  
  49. });
  50.  
  51. </script>
  52.  
  53. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement