1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ---
- extends: http://vwf.example.com/node2.vwf
- properties:
- controlClient: "NONE"
- cameraControllerData:
- cameraViewData:
- backgroundColor: [ 0, 0, 0, 0 ]
- renderStyle: "3D"
- imageryProvider: "bingAerial"
- enableLook:
- enableRotate:
- enableTilt:
- enableTranslate:
- enableZoom:
- events:
- pointerClick:
- pointerDoubleClick:
- pointerDown:
- pointerMove:
- pointerUp:
- pointerEnter:
- pointerOver:
- pointerLeave:
- scripts:
- - |
- this.initialize = function() {
- //console.info( "=============== cesium.initialize ===============" );
- var camDef = {
- "extends": "http://vwf.example.com/cesium/camera.vwf"
- }
- //this.children.create( "sharedCamera", camDef, function( child ) {
- //
- //} );
- }
|