三维地图服务器 下载地址:http://download.bigemap.com/bm3Dserver.rar    (最新版)

安装以上SDK后,启动,启动面板上找到开发使用,如下图源代码:

//注释:安装地图服务器后,下列代码中的 http://bigemap.com  替换成   http://localhost    ,其他不变

<!DOCTYPE html>
<html>
<head>
    <meta charset='UTF-8' />
    <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no'/>
    <link href='http://bigemap.com:9000/bigemap-gl.js/v1.1.0/Widgets/widgets.css' rel='stylesheet'/>
    <script src='http://bigemap.com:9000/bigemap-gl.js/v1.1.0/bigemap-gl.js'></script>
    <style>
        
        body { margin: 0; padding: 0; }
        #container { position: absolute; top: 0; bottom: 0; width: 100%; }
        .bmgl-widget-credits{display:none}
    </style>
    <title>Google Map Streets</title>
</head>
<body>
    <div id='container'></div>
    
    <script>
        bmgl.Config.HTTP_URL = 'http://bigemap.com:9000';
        var viewer = new bmgl.Viewer('container', { mapId: 'bigemap.googlemap-satellite' });
        
    </script>
</body>
</html>

效果如下图:

三维地球实现源代码(三维地球)

 

 

 

相关文章:

  • 2021-06-22
  • 2021-11-27
  • 2021-12-08
  • 2021-05-09
  • 2021-08-26
  • 2021-05-13
  • 2021-11-05
  • 2021-11-17
猜你喜欢
  • 2021-10-26
  • 2021-07-26
  • 2021-04-22
  • 2021-05-02
  • 2021-12-15
  • 2022-01-14
  • 2021-12-29
相关资源
相似解决方案