我正在尝试将Google地图置于iframe中心。下面的代码是iframe的内容。 标记不在框架的中心。
缺少什么?
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map_canvas { height: 100% }
</style>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=MYAPIKEY&sensor=false"></script>
<script type="text/javascript">
function initialize() {
var myLatlng = new google.maps.LatLng('<?php echo $this->uri->segment(5); ?>', '<?php echo $this->uri->segment(4); ?>');
var myOptions = {
zoom: 8,
mapTypeControl: false,
scaleControl: false,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!"
});
}
initialize();
</script>
</head>
<body onload="initialize()">
<div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>
更新
我想我已经解决了它为map_canvas设置固定大小而不是使用100%。 我现在工作得好多了。
答案 0 :(得分:1)
您的代码适合我 - &gt; http://jsfiddle.net/yRHJv以及jsfiddle
地图位于iframe
内。
我已经用一些虚拟数据替换了你的PHP代码。