diff options
| -rw-r--r-- | web/README.md | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/web/README.md b/web/README.md index b56efa5..d470960 100644 --- a/web/README.md +++ b/web/README.md @@ -21,7 +21,26 @@ `use helpthehome` -4. Now you are ready to start the app: +4. Put in some dummy data to start, run: + +``` +db.pointscollection.insert({ + "type": "MultiPoint", + "name": "points", + "color": "#0000ff", + "style": { + "radius": 8, + "fillColor": "#00ce00", + "color": "#008c00", + "weight": 2, + "opacity": 1, + "fillOpacity": 1 + }, + "coordinates": [-73.9580, 40.8003] +}) +``` + +5. Now you are ready to start the app: From this directory: |
