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

bingmaps

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bingmaps - npm Package Compare versions

Comparing version

to
1.0.13

2

LICENSE.md

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

Copyright(c) 2016 Microsoft Corporation. All rights reserved.
Copyright(c) 2017 Microsoft Corporation. All rights reserved.

@@ -3,0 +3,0 @@ This code is licensed under the MIT License (MIT).

{
"name": "bingmaps",
"version": "1.0.12",
"version": "1.0.13",
"description": "These are the official TypeScript definitions for the Bing Maps V8 SDK. These can be used to provide intellisense and rich error detection to your IDE.",

@@ -5,0 +5,0 @@ "typings": "index.d.ts",

@@ -54,2 +54,4 @@ ![Bing Maps Logo](images/BingMapsLogoTeal.png)

| [Clustering](https://msdn.microsoft.com/en-us/library/mt712807.aspx) | scripts/MicrosoftMaps/Modules/Clustering.d.ts |
| [Contour](https://msdn.microsoft.com/en-us/library/mt786479.aspx) | scripts/MicrosoftMaps/Modules/Contour.d.ts |
| [Data Binning](https://msdn.microsoft.com/en-us/library/mt743067.aspx) | scripts/MicrosoftMaps/Modules/DataBinning.d.ts |
| [Directions](https://msdn.microsoft.com/en-US/library/mt748655.aspx) | scripts/MicrosoftMaps/Modules/Directions.d.ts |

@@ -56,0 +58,0 @@ | [Drawing Tools](https://msdn.microsoft.com/en-us/library/mt750543.aspx) | scripts/MicrosoftMaps/Modules/DrawingTools.d.ts |

@@ -260,2 +260,5 @@ /*

routeLegs: IRouteLeg[];
/** An array of locations that makes up the path of the route. */
routePath: Location[];
}

@@ -262,0 +265,0 @@

@@ -110,2 +110,12 @@ /*

/**
* Calculates an array of locations that form a cardinal spline between the specified array of locations.
* @param locations The array of locations to calculate the spline through.
* @param tension A number that indicates the tightness of the curve. Can be any number, although a value between 0 and 1 is usually used. Default: 0.5
* @param nodeSize Number of nodes to insert between each Location. Default: 15
* @param close A boolean indicating if the spline should be a closed ring or not. Default: false
* @returns An array of locations that form a cardinal spline between the specified array of locations.
*/
export function getCardinalSpline(locations: Location[], tension ?: number, nodeSize ?: number, close ?: boolean): Location[];
/**

@@ -112,0 +122,0 @@ * Calculates a destination Location based on a starting Location, a heading, a distance, and a distance unit type.

Sorry, the diff of this file is too big to display