Socket
Socket
Sign inDemoInstall

d3-geo-scale-bar

Package Overview
Dependencies
0
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.1 to 1.2.2

7

build/d3-geo-scale-bar.js

@@ -1,2 +0,2 @@

// https://github.com/HarryStevens/d3-geo-scale-bar Version 1.2.0. Copyright 2022 Harry Stevens.
// https://github.com/HarryStevens/d3-geo-scale-bar Version 1.2.1. Copyright 2022 Harry Stevens.
(function (global, factory) {

@@ -238,2 +238,3 @@ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :

distance,
distanceLog,
tickFormat = function tickFormat(d) {

@@ -284,3 +285,3 @@ return +d.toFixed(2);

distance = barDistance;
distanceLog = barDistance;
} // The ticks and elements of the bar

@@ -350,3 +351,3 @@

scaleBar.distance = function (_) {
return arguments.length ? (distance = +_, scaleBar) : distance;
return arguments.length ? (distance = +_, scaleBar) : distance || distanceLog;
};

@@ -353,0 +354,0 @@

{
"name": "d3-geo-scale-bar",
"version": "1.2.1",
"version": "1.2.2",
"description": "Displays automatic scale bars for projected geospatial data.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -10,3 +10,3 @@ # d3-geo-scale-bar

```html
<script src="https://unpkg.com/d3-geo-scale-bar@1.2.1/build/d3-geo-scale-bar.min.js"></script>
<script src="https://unpkg.com/d3-geo-scale-bar@1.2.2/build/d3-geo-scale-bar.min.js"></script>
<script>

@@ -13,0 +13,0 @@

@@ -14,2 +14,3 @@ import { default as geoDistance } from "./geo/distance";

distance,
distanceLog,
tickFormat = d => +d.toFixed(2),

@@ -63,3 +64,3 @@ tickPadding = 2,

distance = barDistance;
distanceLog = barDistance;
}

@@ -167,3 +168,3 @@

scaleBar.distance = function(_) {
return arguments.length ? (distance = +_, scaleBar) : distance;
return arguments.length ? (distance = +_, scaleBar) : distance || distanceLog;
}

@@ -170,0 +171,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc