designer
<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 {
width: 400px;
height: 400px;
display: block;
left: 420px;
top: 270px;
position: absolute;
}
</style>
<google-map id="google_map"></google-map>
</template>
<script>
Polymer({
});
</script>
</polymer-element>