Exists a way to render the globe with no images on it, only polygons drawing the continents shapes?

Hi everyone

I want to achieve a graphic solution for the globe like the one in this project:

I mean, I need only the vectors drawing the shapes of the continents, maybe the biggest rivers (as in the example), but something minimalist, no images of any kind.

Do Cesium have an approach to achieve this?

Thanks!.

Javier

Maybe a way to map this data into Cesium:
http://www.naturalearthdata.com/downloads/

You can achieve something similar by hosting the Natural Earth vector data in a GeoServer which you configure to expose via WMS. The Cesium code then looks something like this:

var viewer = new Cesium.Viewer(‘cesiumContainer’);

viewer.scene.globe.baseColor = Cesium.Color.fromCssColorString(’#303030’);

// Remove the default imagery layer

var layer = viewer.imageryLayers.get(0);

viewer.imageryLayers.remove(layer);

var provider = new Cesium.WebMapServiceImageryProvider({

url : 'http://localhost:8081/geoserver/ows?SERVICE=WMS',

layers : 'ne_50m_graticules_15',

parameters: { transparent: true, format: 'image/png' },

proxy: new Cesium.DefaultProxy('/proxy/')

});

viewer.imageryLayers.addImageryProvider(provider);

var provider = new Cesium.WebMapServiceImageryProvider({

url : 'http://localhost:8081/geoserver/ows?SERVICE=WMS',

layers : 'ne_50m_coastline',

parameters: { transparent: true, format: 'image/png' },

proxy: new Cesium.DefaultProxy('/proxy/')

});

viewer.imageryLayers.addImageryProvider(provider);

``