Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <link rel="import" href="../core-icon-button/core-icon-button.html">
  2. <link rel="import" href="../core-toolbar/core-toolbar.html">
  3. <link rel="import" href="../core-header-panel/core-header-panel.html">
  4. <link rel="import" href="../google-map/google-map.html">
  5.  
  6. <polymer-element name="my-element">
  7.  
  8. <template>
  9. <style>
  10. :host {
  11. position: absolute;
  12. width: 100%;
  13. height: 100%;
  14. box-sizing: border-box;
  15. }
  16. #core_header_panel {
  17. width: 100%;
  18. height: 100%;
  19. left: 0px;
  20. top: 0px;
  21. position: absolute;
  22. }
  23. #core_toolbar {
  24. color: rgb(255, 255, 255);
  25. background-color: rgb(79, 125, 201);
  26. }
  27. #section {
  28. height: 1000px;
  29. background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
  30. }
  31. #google_map {
  32. width: 100%;
  33. height: 100%;
  34. display: block;
  35. left: 0px;
  36. top: 0px;
  37. position: absolute;
  38. }
  39. </style>
  40. <core-header-panel mode="standard" id="core_header_panel">
  41. <core-toolbar id="core_toolbar">
  42. <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
  43. <div id="div">Expansion</div>
  44. </core-toolbar>
  45. <section id="section">
  46. <google-map latitude="37.65379984099991" longitude="-121.96074080078125" disabledefaultui id="google_map"></google-map>
  47. </section>
  48. </core-header-panel>
  49. </template>
  50.  
  51. <script>
  52.  
  53. Polymer({
  54.  
  55. });
  56.  
  57. </script>
  58.  
  59. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement