From 3616b42e6bf53c2de248dde5a149703a68a9a486 Mon Sep 17 00:00:00 2001 From: Victor Powell Date: Tue, 5 Jan 2016 21:54:33 -0800 Subject: [PATCH] Fix a bug preventing DraggablePointsOverlay from properly positioning itself when the Map is not interactive. --- src/map.react.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/map.react.js b/src/map.react.js index 91fda314..81f69869 100644 --- a/src/map.react.js +++ b/src/map.react.js @@ -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); }