Closed emxsys closed 6 years ago
Add a backgroundColor property to the Globe so the background color can be set by the application. E.g.:
backgroundColor
import React, { Component } from 'react' import Globe from 'worldwind-react-globe' class App extends Component { render () { return ( <div> <Globe backgroundColor='rgb(36,74,101)' /> </div> ) } }
Example:
render() { return ( <div> <Globe backgroundColor={'rgb(10,20,30)'} /> </div> ) }
Add a
backgroundColor
property to the Globe so the background color can be set by the application. E.g.: