Created
August 18, 2014 01:46
-
-
Save MrTiggr/b4c24e546f752ab0ffd8 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="import" href="../esri-html5/esri-webmap.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #map { | |
| height: 100%; | |
| width: 100%; | |
| } | |
| #section { | |
| left: 0px; | |
| top: 0px; | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| </style> | |
| <section id="section"> | |
| <esri-webmap webmapid="75e8e70b968b469ea4c4476df42a77bc" id="map"> | |
| </esri-webmap> | |
| </section> | |
| </template> | |
| <script> | |
| Polymer('my-element', { | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment