Skip to content

Instantly share code, notes, and snippets.

@darielnoel
Created July 27, 2015 18:24
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 darielnoel/5749598a5f331f06c689 to your computer and use it in GitHub Desktop.
Save darielnoel/5749598a5f331f06c689 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map-directions.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../core-menu-button/core-menu-button.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#google_map_directions {
left: 250px;
top: 160px;
position: absolute;
}
#paper_input {
left: 340px;
top: 80px;
position: absolute;
}
#core_menu_button {
left: 320px;
top: 240px;
position: absolute;
}
</style>
<google-map-directions map="{{ }}" id="google_map_directions"></google-map-directions>
<paper-input label="Type something..." id="paper_input"></paper-input>
<core-menu-button opened id="core_menu_button" icon="more-vert" selected="0" relative>
<core-item id="core_item" icon="content-cut" label="Cut" horizontal center layout></core-item>
<core-item id="core_item1" icon="content-copy" label="Copy" horizontal center layout></core-item>
<core-item id="core_item2" icon="content-paste" label="Paste" horizontal center layout></core-item>
</core-menu-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment