Added link to static site from README.

Also removed annoying log message.
This commit is contained in:
Simon Brooke 2020-02-25 09:04:22 +00:00
parent 66f9380ee8
commit 2fc4fb0142
No known key found for this signature in database
GPG key ID: A7A4F18D1D4DF987
2 changed files with 4 additions and 4 deletions

View file

@ -2,6 +2,10 @@
An ultra-lightweight tool to show comma-separated value data on a map. An ultra-lightweight tool to show comma-separated value data on a map.
## Demo
There's a [working demo site](https://simon-brooke.github.io/geocsv-lite/), from which you can crib how to integrate this into your own website.
## Overview ## Overview
This is an attempt to do a lightweight client-side only version of [geocsv](https://github.com/simon-brooke/geocsv), q.v. It doesn't fully work because it cannot pull data from remote sites because of cross-site scripting rules, and I haven't found a workaround for that. This is an attempt to do a lightweight client-side only version of [geocsv](https://github.com/simon-brooke/geocsv), q.v. It doesn't fully work because it cannot pull data from remote sites because of cross-site scripting rules, and I haven't found a workaround for that.

View file

@ -12,10 +12,6 @@
pins showing locations from this `data-source`. If `data-source` is nil pins showing locations from this `data-source`. If `data-source` is nil
or an empty string, the content of the element will be used, if present." or an empty string, the content of the element will be used, if present."
[id data-source] [id data-source]
(n/message
(str
"geocsv-lite.core.initialise-map-element called with args id: "
id "; data-source: " data-source "."))
(let [sid (str id) (let [sid (str id)
kid (keyword sid) kid (keyword sid)
v (m/add-view sid 55 -4 10)] v (m/add-view sid 55 -4 10)]