* Changed WKT parent object to read coordinates as lat-long
* Changed WKT unit test to receive coordinates as 'lat,long'
* Styled Custom WKT string entry textbox to align it with the Destination one
* Reordered tags for WKT entry button
* Substituted PhantomJS for headless Chromium for unit testing
* Added Firefox headless as a browser for unit testing
* Removed pupeteer dev dependency to rely on local installs of Chrome and Firefox. Temporarily commented out tests that now fail.
* Eliminated superfluous newline from karma.conf.js
* remove whitespace
* Updated npm packages related to tasking and unit testing to latest versions
* Updated grunt-jsdoc to latest version
* Removed unused 'dependencies' bracket from package.json
* Updated npm packages
* Updated es6-promise to 4.2.8 and libtess to 1.2.2
* Updated jszip to 3.2.2 and proj4-src to 2.6.0
* Add WCS GeoTiff elevation support
* Fix parameter documentation
* Revert addition of read from array method
* Add capability to construct GeoTiffReader from URL or ArrayBuffer
- Modifies ElevationModel data retrieval handling for GeoTiffs
* Revise GeoTiffReader API
- Constructor takes ArrayBuffer and parses
- Provides synchronous image a data retrieval
- Add utility method with asynchronous XML HTTP Request
* Clean up variable naming, formatting, and other conventions
* Update naming and refactor callback to match library convention
* Remove old comments
* Fix one property accessor
* Provide full xhr object on failure and success callbacks
* Add grayscale and rgb retrieval unit tests
* Add logging message
* WKT, first commit
* V 0.1 of WKT implementation.
* Initial support for Point.
* Initial support for multi shapes.
* Version 0.2 supporting MultiPolygon, MultiLineString and such.
* Version 0.3 of WKT supporting different text formats as well as the 3D component
* Initial support for inner and outer boundaries in single polygons.
* Version 0.3.1 WKT
- Explanation of current implementation
- WKTTokens returns Numbers as a Number type
- Tests for Point
* WKT Version 0.3.2
- Add tests for MultiPoint.
* Version 0.4 of WKT support
- Updated API to look like GeoJSON and Shapefile
- Cleansed the Parser
- Added documentation
* Version 0.4.1 of WKT
- Updated shape configuration callback.
- Updated documentation.
* Version 0.4.2
- Updated tests for Point and MultiPoint
- Minor bug fixes in parsing.
* Version 0.4.3
- Update Example
- Update shape production inside of the WKT objects.
* Version 0.4.4
- Update display of Point and MultiPoint as placemarks.
* Version 0.4.5
- Added tests for Polygon parsing.
* Version 0.4.6
- Added tests for Line String parsing.
* Version 0.4.7
- Added tests for Triangle parsing.
- Updated documentation for the format.
* Version 0.4.8
- Added tests for MultiLineString parsing.
* Version 0.4.8
- Added tests for MultiPolygon parsing.
* Version 0.5
- Move token handling to the objects.
- Retain only tokens parsing in the WKTTokens.
* Version 0.5.1
- Working EMPTY
- Full support for GeometryCollection
* Version 0.5.2
- Update documentation
* Version 0.6
- Support for inner and outer boundaries in the case of MultiPolygon.
- Load whole WKT on load of framework.
- Add Tests for Polygon with inner boundaries.
* Version 0.6.1
- Updated documentation
* Version 0.6.2
- Updated documentation
* Version 0.6.3
- Fix documentation not generated in jsdoc.
* Version 0.6.4
- Fix documentation not generated in jsdoc for exported object instead of class.
* Version 0.7
- Update the placemark attributes to correctly display the Point and MultiPoint.
* Version 0.7.1
- Update documentation
* Version 0.7.2
- Fix sonar issues.
* Fix tests broken due to different internal handling of the boundaries.
* Change the name of WKT from uppercase to camel case.
* Change the name of WKT from uppercase to camel case.
Simplify the Example to show one set of geometries and the usage of the callbacks
* Fix the issue #208
* Provide the default implementation and documentation for Shape configuration callback and parser completion callback.
* Add the name to the second callback function.
* Update the Well Known Text interface to comply to the Shapefile one.
* The properties should be added to this instance and not this ancestor.
* Update indentation
* Expose all the WktElements.