Skip to content

Instantly share code, notes, and snippets.

@SebastianSchenk
Created August 20, 2014 13:28
Show Gist options
  • Save SebastianSchenk/38cb8530bd7f0e9bc19c to your computer and use it in GitHub Desktop.
Save SebastianSchenk/38cb8530bd7f0e9bc19c to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
#google_map {
width: 1570px;
height: 840px;
display: block;
left: 0px;
top: 0px;
position: absolute;
}
</style>
<google-map id="google_map" maptype="hybrid"></google-map>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment