fuchengshen
2022-07-09 3a25c05b5ab837714f30469cdcb1e2a77d8d7f6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<template>
  <mars-pannel :visible="true" right="10" top="10" width="auto">
    <a-space>
      <mars-button @click="startRotate">开始</mars-button>
      <mars-button @click="stopRotate">停止</mars-button>
    </a-space>
  </mars-pannel>
 
  <div class="infoview-js">
    <div class="infoview_panel">
      <div class="infoview_panel_scroll">
        <div class="title">合肥火星科技有限公司</div>
        <div>
          <label>公司简介:</label>
          <span
            >合肥火星科技有限公司(简称:火星科技),于2017年在安徽合肥成立,自成立以来,公司致力于三维可视化技术和GIS地理信息技术的研究与探索,公司耕耘在军工、航天、仿真、智慧城市等行业领域,主营业务模式围绕Mars2D、Mars3D系列平台级产品展开,持续为客户提供着自主可控、专业高效、具备可视化行业前沿科技的产品解决方案与服务。</span
          >
        </div>
        <div>
          <label>公司资质:</label>
          <span>
            公司围绕三维可视化领域已取得软件著作权和专利30多项,属于国家高新技术企业、“双软”认定企业、合肥市大数据企业、中国软件协会认定的AAA
            信用企业、已通过ISO9001质量管理体系认证。</span
          >
        </div>
        <div>
          <label>主要产品:</label>
          <span
            >Mars3D是火星科技研发的一款基于 WebGL
            技术实现的三维客户端开发平台,基于Cesium优化提升与B/S架构设计,支持多行业扩展的轻量级高效能GIS开发平台,能够免安装、无插件地在浏览器中高效运行,并可快速接入与使用多种GIS数据和三维模型,呈现三维空间的可视化,完成平台在不同行业的灵活应用。</span
          >
        </div>
      </div>
    </div>
  </div>
 
  <div class="btnBar">
    <mars-button class="btnbar_item" href="http://marsgis.cn/about.html?index=0" target="_blank">公司简介</mars-button>
    <mars-button class="btnbar_item" href="http://mars3d.cn/template.html" target="_blank">公司项目</mars-button>
    <mars-button class="btnbar_item" href="http://mars3d.cn/example.html" target="_blank">主要产品</mars-button>
  </div>
</template>
 
<script setup lang="ts">
import * as mapWork from "./map.js"
 
// 开始
const startRotate = () => {
  mapWork.startRotate()
}
// 停止
const stopRotate = () => {
  mapWork.stopRotate()
}
</script>
<style scoped lang="less">
.infoview-js {
  position: absolute;
  right: 10px;
  top: 60px;
  width: 30%;
  height: 80%;
  border: none;
  overflow-x: hidden;
  overflow-y: auto;
}
.infoview_panel {
  height: 100%;
  width: 100%;
  color: #ffffff;
  padding: 10px;
  background: url("/img/btnBar/infoBox.png") no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
  span {
    font-size: 20px !important;
  }
  label {
    color: #03dae7;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 35px;
    font-size: 20px !important;
  }
  .title {
    color: #ffec48;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    line-height: 50px;
  }
}
.btnBar {
  bottom: 40px;
  left: 10%;
  position: absolute;
 
  .mars-button:not([disabled]) {
    &:hover {
      color: @mars-base-color;
      background: url("/img/btnBar/button_select.png") no-repeat !important ;
    }
    &:focus {
      color: @mars-base-color;
      background: url("/img/btnBar/button_select.png") no-repeat !important ;
    }
  }
}
 
.btnbar_item {
  font: 16px "Microsoft YaHei";
  color: rgba(255, 255, 255, 1);
  pointer-events: auto;
  display: inline-block;
  width: 170px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: none;
  background: url("/img/btnBar/button.png") no-repeat;
  background-size: 100% 100%;
  margin-right: 40px;
}
.infoview_panel_scroll {
  height: 98%;
  width: 99%;
  overflow-y: auto;
}
</style>