Bootstrap templates

- event mockup
- login page
This commit is contained in:
Martin Bauer
2013-06-02 16:00:01 +02:00
parent d29100a692
commit a923ecea6f
346 changed files with 62898 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
<div id='locpick_map_canvas_{{id}}' style="width:{{width}}px; height:{{height}}px">
<script type="text/javascript">
( function() {
function initialize() {
var center = new google.maps.LatLng({{map.center.0}}, {{map.center.1}});
var position = new google.maps.LatLng({{map.position.0}}, {{map.position.1}});
var myOptions = {
zoom: {{map.zoom}},
center: center,
mapTypeId: google.maps.MapTypeId.HYBRID
};
var map = new google.maps.Map(document.getElementById("locpick_map_canvas_{{id}}"), myOptions);
var marker = new google.maps.Marker({
position: position,
map: map
});
}
initialize();
})();
</script>
</div>