123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <!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,user-scalable=0,minimum-scale=1.0,maximum-scale=1.0" />
- <meta name="author" content="火星科技 http://mars3d.cn " />
- <meta name="apple-touch-fullscreen" content="yes" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <meta name="format-detection" content="telephone=no" />
- <meta name="x5-fullscreen" content="true" />
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
- <!-- 标题及搜索关键字 -->
- <meta name="keywords" content="火星科技,cesium,3D,GIS,marsgis,三维,地球,地图,开发,框架,系统,示例,资料,模型,离线,外包,合肥,安徽,中国" />
- <meta
- name="description"
- content="火星科技 合肥火星 合肥火星科技 合肥火星科技有限公司 leaflet leaflet框架 leaflet开发 cesium cesium开发 cesium框架 三维 地球 模型 gis marsgis 地图离线 地图开发 地图框架 地图外包 框架 开发 外包 地图离线 二维地图 三维地图 全景漫游 地理信息系统 云GIS 三维GIS GIS平台 WebGIS"
- />
- <link rel="shortcut icon" type="image/x-icon" href="" />
- <title>多语言支持 </title>
- <!--第三方lib-->
- <script
- type="text/javascript"
- src="../lib/include-lib.js"
- libpath="../lib/"
- include="jquery,font-awesome,bootstrap,bootstrap-checkbox,layer,haoutil,turf,mars3d"
- ></script>
- <link href="css/style.css" rel="stylesheet" />
- </head>
- <body class="dark">
- <!--加载前进行操作提示,优化用户体验-->
- <div id="mask" class="signmask" onclick="removeMask()"></div>
- <div id="mars3dContainer" class="mars3d-container"></div>
- <!-- 面板 -->
- <div class="infoview">
- Tip: The default language is Chinese中文简体, you can switch to English, etc.
- <div>
- Plot:
- <input type="button" class="btn btn-primary" value="point" onclick=" startDraw('point')" />
- <input type="button" class="btn btn-primary" value="polyline" onclick=" startDraw('polyline')" />
- <input type="button" class="btn btn-primary" value="polygon" onclick=" startDraw('polygon')" />
- <input type="button" class="btn btn-primary" value="circle" onclick="startDraw('circle')" />
- <input type="button" class="btn btn-primary" value="rectangle" onclick="startDraw('rectangle')" />
- <input type="button" class="btn btn-primary" value="wall" onclick=" startDraw('wall')" />
- <input type="button" class="btn btn-primary" value="cylinder" onclick="startDraw('cylinder')" />
- </div>
- <div>
- Measurement:
- <input type="button" class="btn btn-primary" value="distance" onclick=" measure.distance()" />
- <input type="button" class="btn btn-primary" value="area" onclick=" measure.area()" />
- <input type="button" class="btn btn-primary" value="height" onclick="measure.heightTriangle()" />
- <input type="button" class="btn btn-primary" value="coordinate" onclick="measure.point()" />
- <input type="button" class="btn btn-primary" value="angle" onclick="measure.angle()" />
- </div>
- </div>
- <script src="./js/common.js"></script>
- <script type="text/javascript">
- "use script"; //开发环境建议开启严格模式
- var map;
- var drawLayer;
- var measure;
- function initMap(options) {
- //合并属性参数,可覆盖config.json中的对应配置
- var mapOptions = mars3d.Util.merge(options, {
- control: {
- homeButton: true,
- sceneModePicker: true,
- navigationHelpButton: true,
- infoBox: true,
- vrButton: true,
- fullscreenButton: true,
- geocoder: true,
- baseLayerPicker: true,
- animation: true, //是否创建动画小器件,左下角仪表
- timeline: true, //是否显示时间线控件
- defaultContextMenu: true, //涉及到多语言的模块:右键菜单
- compass: { top: "10px", right: "5px" },
- distanceLegend: { left: "180px", bottom: "30px" },
- locationBar: {
- fps: true,
- template:
- "<div>lng:{lng}</div> <div>lat:{lat}</div> <div>alt:{alt} m</div> <div>level:{level}</div><div>heading:{heading}°</div> <div>pitch:{pitch}°</div><div>cameraHeight:{cameraHeight}m</div>",
- },
- },
- lang: mars3d.LangType.EN, //使用英文
- });
- //创建三维地球场景
- map = new mars3d.Map("mars3dContainer", mapOptions);
- var zoom = new mars3d.control.Zoom({
- insertIndex: 1, //插入的位置顺序
- zoomInClass: "fa fa-plus",
- zoomOutClass: "fa fa-minus",
- });
- map.addControl(zoom);
- //涉及到多语言的模块:标绘提示
- drawLayer = new mars3d.layer.GraphicLayer({
- hasEdit: true,
- isAutoEditing: true, //绘制完成后是否自动激活编辑
- });
- map.addLayer(drawLayer);
- drawLayer.bindContextMenu([
- {
- text: map.getLangText("_删除"),
- iconCls: "fa fa-trash-o",
- show: (event) => {
- let graphic = event.graphic;
- if (!graphic || graphic.isDestroy) {
- return false;
- } else {
- return true;
- }
- },
- callback: function (e) {
- let graphic = e.graphic;
- if (!graphic) {
- return;
- }
- let parent = graphic._parent; //右击是编辑点时
- drawLayer.removeGraphic(graphic);
- if (parent) {
- drawLayer.removeGraphic(parent);
- }
- },
- },
- ]);
- //涉及到多语言的模块:图上量算
- measure = new mars3d.thing.Measure({
- //可设置文本样式
- label: {
- color: "#ffffff",
- font_family: "楷体",
- font_size: 20,
- background: false,
- },
- });
- map.addThing(measure);
- }
- function startDraw(type) {
- drawLayer.startDraw({
- type: type,
- style: {
- color: "#00ffff",
- opacity: 0.6,
- },
- });
- }
- </script>
- </body>
- </html>
|