Skip to content

Instantly share code, notes, and snippets.

@atajwala
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atajwala/afe85db2918d041203cd to your computer and use it in GitHub Desktop.
Save atajwala/afe85db2918d041203cd 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: 320px;
height: 505px;
display: block;
left: 0px;
top: 0px;
position: absolute;
}
</style>
<google-map latitude="37.7716734853892" longitude="-122.42216658203125" id="google_map"></google-map>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment