Skip to content

Instantly share code, notes, and snippets.

@mplacona
Created August 6, 2014 20:03
Show Gist options
  • Save mplacona/ec44920b147d6405db07 to your computer and use it in GitHub Desktop.
Save mplacona/ec44920b147d6405db07 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
#google_map_search {
left: 450px;
top: 230px;
position: absolute;
}
#google_map_directions {
left: 1140px;
top: 450px;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 530px;
top: 60px;
position: absolute;
}
</style>
<google-map-search id="google_map_search"></google-map-search>
<google-map 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