-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.html
66 lines (65 loc) · 2.46 KB
/
README.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
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
body {
background: rgba(0, 0, 0, 0.1);
font-family: Arial, Times, serif;
}
.content-wrapper {
background: rgba(0, 0, 0, 0.66);
color: white;
margin: 10px;
border-radius: 20px;
box-shadow: 2px 2px 20px rgba(15, 12, 15, 0.7);
}
.content {
padding: 1px 20px;
}
.centered {
text-align: center;
}
#logo {
position: absolute;
top: 32px;
right: 48px;
}
</style>
</head>
<body>
<div class="content-wrapper">
<div class="content">
<div id="logo">
<a href="http://www.datalyze-solutions.com"><img src="icons/ds_logo.png"></a>
</div>
<h2>Tile Map Scale Plugin</h1>
<h3>Functionality</h3>
<p>
Most webmaps like OpenStreetMap, Bing, Google, Yahoo, etc. are rendered for specific scales. If they are
viewed with a different scale, they appear fuzzy and unsharp. If activated this plugin sets the scale to
the next matching scale while zooming in or out. The scales are just for the EPSG:3857 (or equivalent)
reference system.
</p>
<img src="icons/example.jpg" width="100%"></img>
<h3>Own datasets</h3>
<p>
The plugin is able to load datasets based on the
<a href="http://www.gdal.org/frmt_wms.html">GDAL WMS Driver</a>. You can add your own
datasets by creating an XML file in the "datasets" folder. The datasets folder is located in the
default plugin folder. Normaly the plugin directory is located in
"your user directory"/.qgis/python/plugins/TileMapScalePlugin/. After adding the file
press the "refresh" button or restart QGIS to be able to load your file from the dropdown list.
</p>
<h3>Links</h3>
<ul>
<li>
You found a bug? You want to contribute with code or ideas? Contact us on the <a href="http://github.com/datalyze-solutions/TileMapScaleLevels">project page</a>
</li>
</ul>
<p class="centered">
<a href="http://www.datalyze-solutions.com"><img src="icons/ds_made_by.png" width="196" height="196"></a>
</p>
</div>
</div>
</body>
</html>