Created
February 4, 2015 16:19
-
-
Save wms/3de211dd770743c139a4 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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