├── .gitignore ├── LICENSE ├── README.md ├── example-loading ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── geojson_screen_shot.jpg ├── install.xml ├── spherical-480p-f.gif └── src ├── ofxGeoJSON.cpp └── ofxGeoJSON.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/README.md -------------------------------------------------------------------------------- /example-loading/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/example-loading/addons.make -------------------------------------------------------------------------------- /example-loading/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/example-loading/src/main.cpp -------------------------------------------------------------------------------- /example-loading/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/example-loading/src/ofApp.cpp -------------------------------------------------------------------------------- /example-loading/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/example-loading/src/ofApp.h -------------------------------------------------------------------------------- /geojson_screen_shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/geojson_screen_shot.jpg -------------------------------------------------------------------------------- /install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/install.xml -------------------------------------------------------------------------------- /spherical-480p-f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/spherical-480p-f.gif -------------------------------------------------------------------------------- /src/ofxGeoJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/src/ofxGeoJSON.cpp -------------------------------------------------------------------------------- /src/ofxGeoJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxuse/ofxGeoJSON/HEAD/src/ofxGeoJSON.h --------------------------------------------------------------------------------