Skip to content

Instantly share code, notes, and snippets.

@jwthomp
Created April 30, 2015 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwthomp/39afb381e043a8cbc3a2 to your computer and use it in GitHub Desktop.
Save jwthomp/39afb381e043a8cbc3a2 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../ace-element/ace-element.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#ace_element {
width: 400px;
height: 300px;
left: 220px;
top: 250px;
position: absolute;
}
#ace_element1 {
width: 400px;
height: 300px;
left: 1440px;
top: 680px;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 370px;
top: 100px;
position: absolute;
}
</style>
<ace-element id="ace_element">function test() {
var x = true;
}</ace-element>
<google-map latitude="37.49434593968019" longitude="-122.26698469726563" id="google_map"></google-map>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment