New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-map-polygon-selector

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-map-polygon-selector - npm Package Compare versions

Comparing version

to
0.1.4

14

dist/index.js

@@ -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 @@ }, {

2

package.json
{
"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": {