Skip to content

Commit 93c7ca6

Browse files
committed
bumped googleAPI version, set clickable markers to false if undefined
1 parent a34acc4 commit 93c7ca6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GoogleApiComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const defaultCreateCache = (options) => {
99
options = options || {};
1010
const apiKey = options.apiKey;
1111
const libraries = options.libraries || ['places'];
12-
const version = options.version || '3.24';
12+
const version = options.version || '3.29';
1313
const language = options.language || 'en';
1414

1515
return ScriptCache({

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export class Map extends React.Component {
143143
zoom: this.props.zoom,
144144
maxZoom: this.props.maxZoom,
145145
minZoom: this.props.maxZoom,
146-
clickableIcons: this.props.clickableIcons,
146+
clickableIcons: this.props.clickableIcons || false,
147147
disableDefaultUI: this.props.disableDefaultUI,
148148
zoomControl: this.props.zoomControl,
149149
mapTypeControl: this.props.mapTypeControl,

0 commit comments

Comments
 (0)