Skip to content

Instantly share code, notes, and snippets.

@wiless
Last active January 27, 2016 16:00
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 wiless/9cf2ba28a0266ba54121 to your computer and use it in GitHub Desktop.
Save wiless/9cf2ba28a0266ba54121 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
box-sizing: border-box;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#google_map {
width: 500px;
}
</style>
<div flex layout vertical>
<smoothie-chart id="smoothie_chart" one flex></smoothie-chart>
<google-map latitude="38.34745424611342" longitude="-123.65950178710938" id="google_map"></google-map>
</div>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment