網頁引入騰訊地圖

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>添加信息窗口</title>
<style type="text/css">
html,body{
    width:100%;
    height:100%;
}
#container{
    width:100%;
    height:90%;
}
*{
    margin:0px;
    padding:0px;
}
body, button, input, select, textarea {
    font: 12px/16px Verdana, Helvetica, Arial, sans-serif;
}
#info{
    width:603px;
    padding-top:3px;
    overflow:hidden;
}
.btn{
    width:142px;
}
</style>
<script charset="utf-8" src="https://map.qq.com/api/js?v=2.exp&key=UHRBZ-EYNKG-MKSQO-IEY66-FHOGV-W3FKM"></script>
<script>
var init = function() {
    var center = new qq.maps.LatLng(45.893914,126.582951);
    var map = new qq.maps.Map(document.getElementById('container_new'),{
        center: center,
        zoom: 24
    });
    var infoWin = new qq.maps.InfoWindow({
        map: map
    });
    infoWin.open();
    infoWin.setContent('哈爾濱市');
    infoWin.setPosition(map.getCenter());
}
window.onload = function (){
init()

}
</script>
</head>
<body>
<div id="container"></div>
</body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章