Skip to content

Instantly share code, notes, and snippets.

@CodyBohn
Created April 9, 2015 21:18
Show Gist options
  • Save CodyBohn/0f9fa79cac99ec40a6af to your computer and use it in GitHub Desktop.
Save CodyBohn/0f9fa79cac99ec40a6af to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../speech-mic/speech-mic.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#code_mirror {
width: 400px;
height: 300px;
left: 540px;
top: 210px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 830px;
top: 130px;
position: absolute;
}
#speech_mic {
left: 600px;
top: 290px;
position: absolute;
}
</style>
<google-map latitude="37.857432399330584" longitude="-118.20706572739601" zoom="20" noautotilt showcentermarker fittomarkers signedin clickevents id="google_map"></google-map>
<speech-mic id="speech_mic"></speech-mic>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment