Skip to content

Instantly share code, notes, and snippets.

@kosir
Created March 23, 2015 14:43
  • 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 kosir/d414292105cd94d9ff33 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;
}
#google_map_directions {
left: 440px;
top: 210px;
position: absolute;
}
#google_map_directions1 {
left: 390px;
top: 150px;
position: absolute;
}
#google_map {
width: 980px;
height: 620px;
display: block;
left: 80px;
top: 30px;
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 latitude="37.58907987596453" longitude="-122.44825911132813" maptype="satellite" 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