Skip to content

Instantly share code, notes, and snippets.

@designer-polymer
Created April 7, 2014 23:54
Show Gist options
  • Select an option

  • Save designer-polymer/10074920 to your computer and use it in GitHub Desktop.

Select an option

Save designer-polymer/10074920 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: 400px;
height: 400px;
display: block;
position: absolute;
left: 280px;
top: 250px;
}
#canvas {
overflow: hidden;
}
</style>
<google-map latitude="37.77493" longitude="-122.41942" zoom="10" version="3.exp" id="google_map"></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