react-map-polygon-selector
Advanced tools
Comparing version
@@ -315,3 +315,4 @@ 'use strict'; | ||
label: String(i + 1), | ||
title: result.formatted_address | ||
title: result.formatted_address, | ||
geocode: true | ||
}; | ||
@@ -325,4 +326,13 @@ }); | ||
if (!(this.state.center && this.state.center.lat && this.state.center.lat === center.lat)) { | ||
this.handleSetState({ center: center, markers: markers }); | ||
this.handleSetState({ center: center }); | ||
} | ||
// we will "add" markers, if they do not already exist | ||
// but we will "remove" existing "geocode" markers, too | ||
var markersOld = _lodash2.default.filter(this.state.markers, function (mkr) { | ||
return !mkr.geocode; | ||
}); | ||
var markersNew = _lodash2.default.uniqBy(_lodash2.default.union(markersOld, markers), function (mkr) { | ||
return mkr.position.toJSON ? (0, _stringify2.default)(mkr.position.toJSON) : (0, _stringify2.default)(mkr.position); | ||
}); | ||
this.handleSetState({ markers: markersNew }); | ||
} | ||
@@ -329,0 +339,0 @@ }, { |
{ | ||
"name": "react-map-polygon-selector", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "React Map Polygon Selector - Custom Wrapper for react-google-maps", | ||
@@ -5,0 +5,0 @@ "repository": { |
353365
0.16%2958
0.34%