Skip to content

Instantly share code, notes, and snippets.

@Larceniii
Created January 2, 2015 17:46
Show Gist options
  • Save Larceniii/b06933151999a343175b to your computer and use it in GitHub Desktop.
Save Larceniii/b06933151999a343175b to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../google-map/google-map-search.html">
<link rel="import" href="../google-map/google-map-directions.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: 1630px;
top: 500px;
}
#chart_js {
width: 300px;
height: 200px;
left: 1170px;
top: 350px;
position: absolute;
}
#google_map_search {
left: 870px;
top: 360px;
position: absolute;
}
#google_map_search1 {
left: 1340px;
top: 620px;
position: absolute;
}
#google_map_directions {
left: 1240px;
top: 480px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 630px;
top: 170px;
position: absolute;
}
</style>
<chart-js id="chart_js">chart</chart-js>
<google-map-search id="google_map_search"></google-map-search>
<google-map-search id="google_map_search1"></google-map-search>
<google-map-directions id="google_map_directions"></google-map-directions>
<google-map id="google_map">test</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