-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add TopoJSON support to GeoJsonDataSource #906
Conversation
Also, here's a cool TopoJSON file you can use for trying this out: http://bl.ocks.org/mbostock/raw/4090846/us.json Note, it's slow because of the amount of data. Hopefully something we can fix soon with the batching branch. |
@@ -16,7 +16,7 @@ Beta Releases | |||
* Removed `CesiumViewerWidget` and replaced it with a new `Viewer` widget with mixin architecture. This new widget does not depend on Dojo and is part of the combined Cesium.js file. It is intended to be a flexible base widget for easily building robust applications. See [#838](https://github.com/AnalyticalGraphicsInc/cesium/pull/838) for the full details. | |||
* Removed the Dojo-based `checkForChromeFrame` function, and replaced it with a new standalone version that returns a promise to signal when the asynchronous check has completed. | |||
* Fix resizing issues in `CesiumWidget` ([#608](https://github.com/AnalyticalGraphicsInc/cesium/issues/608), [#834](https://github.com/AnalyticalGraphicsInc/cesium/issues/834)). | |||
* Added initial support for [GeoJSON](http://www.geojson.org/) see [#890](https://github.com/AnalyticalGraphicsInc/cesium/pull/890) for details. | |||
* Added initial support for [GeoJSON](http://www.geojson.org/) and [TopoJSON](https://github.com/mbostock/topojson) see [#890](https://github.com/AnalyticalGraphicsInc/cesium/pull/890) for details and [#906](https://github.com/AnalyticalGraphicsInc/cesium/pull/906) for details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After removing the markdown link cruft this reads:
Added initial support for GeoJSON and TopoJSON see #890 for details and #906 for details.
Should be:
Added initial support for GeoJSON and TopoJSON. See #890 and #906 for details.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
Looks good. Merging. |
Add TopoJSON support to GeoJsonDataSource
TopoJSON is a popular geometry extension to GeoJSON with improved compression of vertex data. This change adds support to GeoJsonDataSource via the official TopoJSON JavaScript module.