Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.14 KB

1.8README.md

File metadata and controls

52 lines (40 loc) · 1.14 KB

天地图

@(笔记)[天地图]@案例:https://github.com/lhywell/map/tree/master/example/example11


入门教程

官网

http://lbs.tianditu.com/

申请密钥

无密钥

查看API

示例

http://lbs.tianditu.com/api/js4.0/examples.html

构建一个地图

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8"/>
    <title>HELLO WORLD</title>
    <script type="text/javascript" src="http://api.tianditu.com/api?v=4.0"></script>
    <script>
        var map;
        var zoom = 12;
        function onLoad() {
            map = new T.Map('mapDiv');
            map.centerAndZoom(new T.LngLat(116.40769, 39.89945), zoom);
        }
    </script>
</head>
<body onLoad="onLoad()">
<div id="mapDiv" style="position:absolute;width:100%; height:100%"></div>
</body>
</html>

上一页:超图软件

下一页:图吧