Skip to content

Instantly share code, notes, and snippets.

@designer-polymer
Created April 8, 2014 00:26
Show Gist options
  • Select an option

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

Select an option

Save designer-polymer/10076988 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map-search.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
#google_map_search {
position: absolute;
left: 70px;
top: 120px;
}
#google_map {
width: 400px;
height: 400px;
display: block;
position: absolute;
left: 40px;
top: 170px;
}
</style>
<google-map-search id="google_map_search" query map></google-map-search>
<google-map 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