Final cosmetic changes
This commit is contained in:
parent
d001338a49
commit
98abf86cbe
|
@ -1,6 +1,6 @@
|
|||
# geocsv-lite
|
||||
|
||||
A wee tool to show comma-separated value data on a map.
|
||||
An ultra-lightweight tool to show comma-separated value data on a map.
|
||||
|
||||
## Overview
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ footer a {
|
|||
}
|
||||
|
||||
|
||||
h1 {
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding-left: 10%;
|
||||
|
|
|
@ -15,15 +15,18 @@
|
|||
</head>
|
||||
<body>
|
||||
<h1>GeoCSV Lite</h1>
|
||||
<h4>
|
||||
An ultra-lightweight tool to show comma-separated value data on a map
|
||||
</h4>
|
||||
<div id="app">
|
||||
<p id="message"></p>
|
||||
<p id="error"></p>
|
||||
<div id="map" style="height: 600px; width: 80%; border: thin solid gray;"></div>
|
||||
</div>
|
||||
<div id="doc">
|
||||
<p>
|
||||
Use this page as a crib for how to use <b>GeoCSV Lite</b> in your projects. In order
|
||||
for it to work, you need:
|
||||
</p>
|
||||
<ol>
|
||||
<li>Javascript dependencies:
|
||||
<ol>
|
||||
|
@ -44,17 +47,17 @@
|
|||
For each <code>div</code> which you wish to contain a map view,
|
||||
an invocation of the function
|
||||
<code>geocsv_lite.core.initialise_map_element(id, data-source)</code>: <br/>
|
||||
<samp><script>geocsv_lite.core.initialise_map_element("map", "/data/data.csv");</script></samp>
|
||||
<samp><script>geocsv_lite.core.initialise_map_element("map", "data/data.csv");</script></samp>
|
||||
</li>
|
||||
</ol>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<div id="credits">
|
||||
<div>
|
||||
<img height="16" width="16" alt="Clojure" src="img/credits/clojure-icon.gif"/> Powered by <a href="http://clojure.org">Clojure</a> ||
|
||||
<img height="16" width="16" alt="GitHub" src="img/credits/github-logo-transparent.png"/>Find me/fork me on <a href="https://github.com/simon-brooke/geocsv-lite">Github</a> ||
|
||||
<img height="16" width="16" alt="Free Software Foundation" src="img/credits/gnu.small.png"/>Licensed under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License version 2.0</a>
|
||||
<img height="16" width="16" alt="Free Software Foundation" src="{{servlet-context}}/img/credits/gnu.small.png"/>Licensed under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License version 2.0</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
|
Loading…
Reference in a new issue