import React, {PureComponent} from 'react'; const defaultContainer = ({children}) =>
{children}
; export default class ControlPanel extends PureComponent { render() { const Container = this.props.containerComponent || defaultContainer; return (

Marker, Popup, and NavigationControl

Map showing top 20 most populated cities of the United States. Click on a marker to learn more.

Data source: Wikipedia

View Code ↗
); } }