FAA sectional charts and cesium

**Is there a service for FAA sectional charts and cesium? **

There’s this which you can see in Sandcastle:

var viewer = new Cesium.Viewer(‘cesiumContainer’, {

//Use standard Cesium terrain

terrainProvider : new Cesium.CesiumTerrainProvider({

url : ‘https://assets.agi.com/stk-terrain/v1/tilesets/world/tiles

}),

//Hide the base layer picker

baseLayerPicker : false,

//Use FAA Sectional Charts

imageryProvider : new Cesium.ArcGisMapServerImageryProvider({

url : ‘http://maps7.arcgisonline.com/arcgis/rest/services/FAA_Sectional_Charts/MapServer

}),

// Use high-res stars downloaded from https://github.com/AnalyticalGraphicsInc/cesium-assets

skyBox : new Cesium.SkyBox({

sources : {

positiveX : ‘stars/TychoSkymapII.t3_08192x04096_80_px.jpg’,

negativeX : ‘stars/TychoSkymapII.t3_08192x04096_80_mx.jpg’,

positiveY : ‘stars/TychoSkymapII.t3_08192x04096_80_py.jpg’,

negativeY : ‘stars/TychoSkymapII.t3_08192x04096_80_my.jpg’,

positiveZ : ‘stars/TychoSkymapII.t3_08192x04096_80_pz.jpg’,

negativeZ : ‘stars/TychoSkymapII.t3_08192x04096_80_mz.jpg’

}

}),

});

``

Hope that helps.

Scott