-
Notifications
You must be signed in to change notification settings - Fork 24
/
ChangeImageTile.html
57 lines (51 loc) · 1.64 KB
/
ChangeImageTile.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ChangeImageTileSample</title>
<script src="https://resource.mapray.com/mapray-js/v0.9.5/mapray.min.js"></script>
<link rel="stylesheet" href="https://resource.mapray.com/styles/v1/mapray.css">
<script src="ChangeImageTile.js"></script>
<style>
html, body {
height: 100%;
margin: 0;
background-color: #E0E0E0;
}
select {
height: 22px;
vertical-align: middle;
font-size: 13px;
margin-left: 10px;
}
p {
font-size: 13px;
margin-left: 5px;
}
div#mapray-container {
display: flex;
position: relative;
height: calc(100% - 34px);
}
div#MapTileBox {
display: flex;
background-color: #E0E0E0;
height: 32px;
width: 150px;
border: inset 1px #000000;
align-items: center;
float:left;
}
</style>
</head>
<body onload="CreateViewerImageControlInstance('mapray-container');">
<div id="mapray-container"></div>
<div id="MapTileBox">
<p>Map Tile</p>
<select name="MapTilePullDown" id="MapTilePullDown" onchange="MapTileValueChanged()">
<option value="Photo">Photo</option>
<option value="std">Standard</option>
</select>
</div>
</body>
</html>