Skip to content

Instantly share code, notes, and snippets.

@wms
Created February 4, 2015 16:19
Show Gist options
  • Save wms/3de211dd770743c139a4 to your computer and use it in GitHub Desktop.
Save wms/3de211dd770743c139a4 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
box-sizing: border-box;
}
#google_map {
width: 400px;
height: 400px;
left: 0px;
top: 0px;
opacity: 1;
}
#paper_button {
left: 0px;
top: 0px;
}
</style>
<google-map latitude="37.54118350433824" longitude="-122.31779646484375" id="google_map" start></google-map>
<paper-button id="paper_button">button</paper-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment