Skip to content

Instantly share code, notes, and snippets.

@MrTiggr
Created August 18, 2014 01:46
Show Gist options
  • Select an option

  • Save MrTiggr/b4c24e546f752ab0ffd8 to your computer and use it in GitHub Desktop.

Select an option

Save MrTiggr/b4c24e546f752ab0ffd8 to your computer and use it in GitHub Desktop.
designer
<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