b28 GeoJSON display problems

Hi
Since the b28 update my GeoJSON vector graphics do not show up anymore. I checked through the changelog, but am really not sure what change has caused the errors. Could somebody please look at my code and point me in the right direction? I realize it is probably something very simple, but I am new to js and struggling to find the problem. Thanks in advance http://jsfiddle.net/ageojones/T6mck/

Andy

Extent was renamed to Rectangle. See https://github.com/AnalyticalGraphicsInc/cesium/blob/b28/CHANGES.md for the full list.

Change line 22 to:

var extent = new Cesium.Rectangle(west, south, east, north);

scene.camera.viewRectangle(extent, ellipsoid);

You may also prefer to use the more convenient Rectangle.fromDegrees function.

Thank you!

It seemed to start to load the points and then, I am getting some errors:

An error occurred while rendering. Rendering has stopped.
TypeError: undefined is not a function
TypeError: undefined is not a function
    at updateObject
(http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:60069:45)
    at DynamicBillboardVisualizer.update
(http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:59905:13)
    at DataSourceDisplay.update
(http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:81220:41)
    at http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:131851:47
    at Event.raiseEvent
(http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:21088:26)
    at Clock.tick
(http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:23302:21)
    at CesiumWidget.render
(http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:128127:39)
    at Viewer.render
(http://cesiumjs.org/Cesium/Build/CesiumUnminified/Cesium.js:132

http://jsfiddle.net/ageojones/tdU2k/5/

Many, many thanks

Is it at all possible to use the old version of the API?

I am supposed to be showing this on monday and cannot make it work.

Thanks

I found b27 and am using a copy on my webserver. Thanks

DynamicBillboard properties must be instances of one of the Property types. Change line 33 to:

billboard.horizontalOrigin = new Cesium.ConstantProperty(Cesium.HorizontalOrigin.CENTER);

billboard.verticalOrigin = new Cesium.ConstantProperty(Cesium.VerticalOrigin.BOTTOM);