Fix a bug preventing DraggablePointsOverlay from properly positioning itself

when the Map is not interactive.
This commit is contained in:
Victor Powell 2016-01-05 21:54:33 -08:00
parent 9fd6416f8d
commit 3616b42e6b

View File

@ -588,7 +588,8 @@ var MapGL = React.createClass({
return r.div({
style: assign({}, this.props.style, {
width: this.props.width,
height: this.props.height
height: this.props.height,
position: 'relative'
})
}, content);
}