-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
141 lines (131 loc) · 6.3 KB
/
contact.html
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
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html ng-app="" class="no-js" lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<meta name="keywords" content="贵阳高端室内设计"/>
<meta name="description" content="元禾旺景设计管理顾问有限公司成立于2012年,是由一群来自不同地区充满活力有着扎实专业功底的设计师组成的综合性设计机构。他们以各自的努力共同维护和传承着公司良好的口碑及先进的设计理念,确保元禾旺景处于贵州设计界的前沿。 " />
<title>元禾旺景|联系我们</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css?v3.0" rel="stylesheet">
<link href="css/style.css?v1.0" rel="stylesheet">
<script src="jquery/1.11.3.min.js?v1.11.3"></script>
<script type='text/javascript' src='js/angular/angular.min.js?v1.39'></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-right">
<div ng-include="'common/nav.html'"></div>
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-right">
<div class="contact col-xs-12 col-sm-9">
<div class="concact-inner">
<div class="img-inner">
<div class="map" id="map"></div>
<p class="ink-word-yellow p">我们的专注,成就我们的专业服务</p>
</div>
</div>
<div class="contact-left-inner">
<div class=" col-xs-12 col-sm-2 col-md-2">
<img src="img/QR.png" class="img-responsive" alt="" />
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<p class="ink-word-two p1">元禾旺景设计管理顾问有限公司</p>
<p class="ink-word-two inner p">
<span class="concact-word-yellow">A</span>
  中国·贵阳·中天世纪新城3组团G5栋
</p>
<p class="concact-word-mum inner p">
<span class="concact-word-yellow">M</span>
 135    2877  2302
</p>
<p class="concact-word-mum inner p">
<span class="concact-word-yellow">T</span>
  0851  8593  7111
</p>
<p class="concact-word-mum inner p">
<span class="concact-word-yellow">E</span>
  yhwj @yhwj-design.com
</p>
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<div class=""></div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--主体-->
<!--底部-->
<footer class="">
<div ng-include="'common/footer-1.html'"></div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=7fb4114efa31db2af928d0211754d0e1"></script>
<script type="text/javascript" src="http://api.map.baidu.com/library/SearchInfoWindow/1.5/src/SearchInfoWindow_min.js"></script>
<link rel="stylesheet" href="http://api.map.baidu.com/library/SearchInfoWindow/1.5/src/SearchInfoWindow_min.css" />
<script type="text/javascript">
// 百度地图API功能
var map = new BMap.Map('map');
var poi = new BMap.Point(106.7469935, 26.581808);
map.centerAndZoom(poi, 16);
map.enableScrollWheelZoom();
//创建检索信息窗口对象
var searchInfoWindow = null;
var marker = new BMap.Marker(poi); //创建marker对象
marker.enableDragging(); //marker可拖拽
marker.addEventListener("click", function (e) {
searchInfoWindow.open(marker);
})
map.addOverlay(marker); //在地图中添加marker
searchInfoWindow.open(marker); //在marker上打开检索信息串口
$("close").onclick = function () {
searchInfoWindow.close();
}
$("open").onclick = function () {
var enableSendToPhone = false;
if ($("enableSendToPhone").checked) {
enableSendToPhone = true;
}
if ($("enableAutoPan").checked) {
searchInfoWindow.enableAutoPan();
} else {
searchInfoWindow.disableAutoPan();
};
searchInfoWindow.open(marker);
}
$("show").onclick = function () {
searchInfoWindow.show();
}
$("hide").onclick = function () {
searchInfoWindow.hide();
}
$("getPosition").onclick = function () {
var position = searchInfoWindow.getPosition();
alert("经度:" + position.lng + ";纬度:" + position.lat);
}
$("setValue").onclick = function () {
searchInfoWindow.setPosition(new BMap.Point($("lng").value, $("lat").value));
searchInfoWindow.setTitle($("title").value);
searchInfoWindow.setContent($("content").value);
}
$("getContent").onclick = function () {
alert(searchInfoWindow.getContent());
}
$("getTitle").onclick = function () {
alert(searchInfoWindow.getTitle());
}
</script>
</body>
</html>