Free, open, interactive, detailed maps of Puerto Rico for your web applications. Visit our homepage and examples page.
- Download the library.
- Unzip it (by default the directory will be called
atlaspr-master
). - Create a new directory:
mkdir mymaps
. - Copy the javascript code and geotiles from Atlas to your directory:
cp -r atlaspr-master/geotiles mymaps/```
5. Create an html file inside mymaps with this:
```html
<!DOCTYPE html>
<meta charset="utf-8">
<script src="./js/lib/d3.js"></script>
<script src="./js/lib/klass.js"></script>
<script src="./js/atlaspr.js"></script>
<body>
<div id = 'map'></div>
<script type = 'text/javascript'>
var node = document.getElementById("map");
new AtlasPR({node: node, tiles: ['pueblos']});
</script>
- Run in your terminal:
python -m SimpleHTTPServer
- Go to localhost:8000 in your web browser.
- Go crazy!
Documentation for AtlasPR lives in our website.
AtlasPR does not work in old browsers, particularly in Internet Explorer 8 and less. This is because we use SVG to render tiles. SVG is a web standard for scalable web graphics, and it's implemented in every modern browser.
This library is just a few lines of code written in the shoulders of an awesome giant called d3.js.
Feel free to open issues whenever you find a bug or think about that awesome feture you want implemented in this library. Even better, fork the repo, implement them and submit a pull request.