找回密码
 立即注册

QQ登录

只需一步,快速开始

老秋
金牌服务用户   /  发表于:2023-12-17 14:10  /   查看:1268  /  回复:2
1金币
现在有个项目想使用BIGEMAP地图展示,从html可以展示地图应用,请问bigemap的地图如何在活字格的页面加载出来,我感觉应该跟加载百度地图类型,但具体不知如何配置,能否帮忙做一个显示的demo

最佳答案

查看完整内容

这个应该有两个方案可以实现 (1)使用嵌入html插件,将这个html嵌入到页面中 HTML自定义集成 - 葡萄城市场 (grapecity.com.cn) (2)将这个html代码封装成插件,活字格中安装使用这个插件 第一章 活字格概述 - 活字格V9帮助文档 (grapecity.com.cn)

2 个回复

倒序浏览
最佳答案
最佳答案
Joe.xu讲师达人认证 悬赏达人认证 活字格认证
超级版主   /  发表于:2023-12-17 14:10:57
来自 3#
这个应该有两个方案可以实现
(1)使用嵌入html插件,将这个html嵌入到页面中
HTML自定义集成 - 葡萄城市场 (grapecity.com.cn)
(2)将这个html代码封装成插件,活字格中安装使用这个插件
第一章 活字格概述 - 活字格V9帮助文档 (grapecity.com.cn)
回复 使用道具 举报
老秋
金牌服务用户   /  发表于:2023-12-17 14:12:04
2#
<!DOCTYPE html>

<html>
<head>
    <meta charset='UTF-8' />
    <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no'/>
    <link href='http://127.0.0.1:9000/bigemap.js/v2.1.0/bigemap.css' rel='stylesheet'/>
    <script src='http://127.0.0.1:9000/bigemap.js/v2.1.0/bigemap.js'></script>
    <style>
        body { margin: 0; padding: 0; }
        #map { position: absolute; top: 0; bottom: 0; width: 100%; }
        
    </style>
    <title>bjmap</title>
</head>
<body>
    <div id='map'></div>
   
    <script>
        BM.Config.HTTP_URL = 'http://127.0.0.1:9000';
        var map = BM.map('map', 'bigemap.083wrsdm', {crs: BM.CRS.Baidu, center: [40.25034713745117, 116.46249389648438], zoom: 8, zoomControl: true });
        map.fitBounds([[39.44145965576172, 115.41685485839844], [41.05923080444336, 117.50813293457031]]);
    </script>
</body>
</html>
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部