Skip to content

Instantly share code, notes, and snippets.

@p0wdrdotcom
Last active August 29, 2015 14:07
Show Gist options
  • Save p0wdrdotcom/3ee968c3fc72567ebdbd to your computer and use it in GitHub Desktop.
Save p0wdrdotcom/3ee968c3fc72567ebdbd to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../yt-video/yt-search-video.html">
<link rel="import" href="../core-ajax/core-ajax.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 100px;
top: 60px;
position: absolute;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 760px;
top: 190px;
position: absolute;
}
#core_ajax {
left: 520px;
top: 520px;
position: absolute;
}
</style>
<google-map latitude="37.98737795384623" longitude="-122.2601182421875" id="google_map"></google-map>
<yt-search-video id="yt_search_video"></yt-search-video>
<core-ajax handleas="json" method="GET" id="core_ajax" hidden></core-ajax>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment