Script for the creation of a basic setup of an OpenLayers application
npm install ol-app-setupOpenLayers Application Setup Generator
============
Creates a basic OpenLayers application setup
Install
------------npm install -g ol-app-setup
Usage
--------
See ol-app-setup --help for detailed usage.
Usage: ol-app-setup [options]
Options:
-h, --help output usage information
-t, --target
-v, --olversion
-j, --jquery Includes jQuery in your app setup
-b, --bootstrap Includes bootstrap in your app setup
-s, --server Start an internal web server on localhost:8888
Example calls
-----------------
Create a simple OpenLayers 3 app
ol-app-setup -t /tmp/foo
Create a simple OpenLayers 2 app
ol-app-setup -t /tmp/foo -v ol2
Create an ol3 app with jQuery and bootstrap
ol-app-setup -t /tmp/foo -v ol3 --jquery --bootstrap
Create an ol3 app and start an internal web server to explore the map
ol-app-setup -t /tmp/foo -v ol3 -s