Skip to content

Instantly share code, notes, and snippets.

@sadjow
Last active August 29, 2015 14:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save sadjow/53b3251127f8fc0cbbaf to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map-directions.html">
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#ace_element {
width: 400px;
height: 300px;
left: 620px;
top: 230px;
position: absolute;
}
#core_ajax {
left: 430px;
top: 420px;
position: absolute;
}
#google_map_directions {
left: 640px;
top: 410px;
position: absolute;
}
#google_map_directions1 {
left: 610px;
top: 440px;
position: absolute;
}
#google_map_directions2 {
left: 740px;
top: 530px;
position: absolute;
}
#google_map {
width: 400px;
height: 400px;
display: block;
left: 540px;
top: 300px;
position: absolute;
}
</style>
<google-map-directions id="google_map_directions"></google-map-directions>
<google-map-directions id="google_map_directions1"></google-map-directions>
<google-map-directions id="google_map_directions2"></google-map-directions>
<google-map latitude="37.580373735429966" longitude="-122.13102888671875" id="google_map"></google-map>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment