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
| .overview-default-base-class {
| /*width: 205px;
| height: 144px;*/
| }
| .overview-container {
| position: absolute;
| right: 0px;
| bottom: 0px;
| overflow: visible;
| }
| .overview-map-container {
| position: absolute;
| width: 205px;
| height: 144px;
| right: 0px;
| bottom: 0px;
| opacity: 0;
| background-color: rgb(255, 255, 255);
| padding-top: 5px;
| padding-left: 5px;
| border-width: 1px;
| border-style: solid none none solid;
| border-color: rgb(153, 153, 153);
| }
|
| .overview-background {
| background: transparent url(http://api.tianditu.com/img/map/bgImg.gif) repeat scroll 0% 0%;
| width: 100%;
| height: 100%;
| border: 1px solid rgb(204, 204, 204);
| z-index: 1000;
| overflow: hidden;
| cursor: default;
| }
| .overview-toggle-show {
| position: absolute;
| font-size: 0px;
| cursor: pointer;
| z-index: 3000;
| width: 18px;
| height: 17px;
| left: auto;
| right: 0px;
| top: auto;
| bottom: 0px;
| background: transparent url(http://api.tianditu.com/img/map/overviewOpen.png) repeat scroll 0px 0px;
| opacity: 1;
| }
| .overview-toggle-hide {
| position: absolute;
| font-size: 0px;
| cursor: pointer;
| z-index: 1000;
| width: 18px;
| height: 17px;
| left: auto;
| right: 0px;
| top: auto;
| bottom: 0px;
| background: transparent url(http://api.tianditu.com/img/map/overviewClose.png) repeat scroll 0px 0px;
| opacity: 1;
| }
|
|