https://github.com/tomwayson/web-map-utils
A JavaScript library to help with web map tasks that are not handled by the JSAPI
https://github.com/tomwayson/web-map-utils
Last synced: about 1 year ago
JSON representation
A JavaScript library to help with web map tasks that are not handled by the JSAPI
- Host: GitHub
- URL: https://github.com/tomwayson/web-map-utils
- Owner: tomwayson
- License: apache-2.0
- Created: 2015-11-17T19:02:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-09-02T05:07:15.000Z (almost 9 years ago)
- Last Synced: 2025-02-11T16:23:58.729Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 48.8 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# web-map-utils
A JavaScript library to help with web map tasks that are not handled by the JSAPI (such as serializing a map object to web map JSON).
> **NOTE:** This was a work in progress, only partially supports serializing a map object, and is [no longer actively maintained](https://github.com/tomwayson/web-map-utils/issues/2#issuecomment-326626990). If you find this useful, great, please feel free to use it. Pull requests gladly accepted.
### Install
I never got around to publishing this on any package manager, so for now it's clone, copy, and paste. Old skool!
### Development Instructions
After cloning or forking, install dependencies with:
```bash
npm install
```
To run tests contniously (i.e. TDD):
```bash
karma start
```
To run tests one time (i.e. on CI server):
```bash
grunt test
```