Skip to content

Instantly share code, notes, and snippets.

@dualklip
Created August 29, 2014 10:29
Show Gist options
  • Save dualklip/1cac4bf8ebb832155739 to your computer and use it in GitHub Desktop.
Save dualklip/1cac4bf8ebb832155739 to your computer and use it in GitHub Desktop.
designer
<link href="../topeka-elements/topeka-datasource.html" rel="import">
<link href="../google-map/google-map.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#topeka_datasource {
left: 1040px;
top: 480px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 540px;
top: 250px;
position: absolute;
}
</style>
<topeka-datasource url="http://ultimatumairsoft.com/test.json" id="topeka_datasource" hidden></topeka-datasource>
<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