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.12

scripts/MicrosoftMaps/Modules/Contour.d.ts

21

package.json
{
"name": "bingmaps",
"version": "1.0.11",
"version": "1.0.12",
"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.",

@@ -10,3 +10,14 @@ "typings": "index.d.ts",

},
"keywords": ["Microsoft", "Bing Maps", "Maps", "GIS", "TypeScript", "V8", "Web", "Map", "Geospatial", "JavaScript"],
"keywords": [
"Microsoft",
"Bing Maps",
"Maps",
"GIS",
"TypeScript",
"V8",
"Web",
"Map",
"Geospatial",
"JavaScript"
],
"author": "Bing Maps <bingmapsoss@microsoft.com> (https://www.microsoft.com/maps/v8control.aspx)",

@@ -17,3 +28,7 @@ "license": "MIT",

},
"homepage": "https://github.com/Microsoft/Bing-Maps-V8-TypeScript-Definitions#readme"
"homepage": "https://github.com/Microsoft/Bing-Maps-V8-TypeScript-Definitions#readme",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}

2

README.md

@@ -56,3 +56,3 @@ ![Bing Maps Logo](images/BingMapsLogoTeal.png)

| [Drawing Tools](https://msdn.microsoft.com/en-us/library/mt750543.aspx) | scripts/MicrosoftMaps/Modules/DrawingTools.d.ts |
| [GeoJSON](https://msdn.microsoft.com/en-us/library/mt712806.aspx) | scripts/MicrosoftMaps/Modules/GeoJSON.d.ts |
| [GeoJson](https://msdn.microsoft.com/en-us/library/mt712806.aspx) | scripts/MicrosoftMaps/Modules/GeoJson.d.ts |
| [Heat Map Layer](https://msdn.microsoft.com/en-us/library/mt712868.aspx) | scripts/MicrosoftMaps/Modules/HeatMapLayer.d.ts |

@@ -59,0 +59,0 @@ | [Search](https://msdn.microsoft.com/en-us/library/mt712846.aspx) | scripts/MicrosoftMaps/Modules/Search.d.ts |

@@ -29,5 +29,7 @@ /*

/// <reference path="Modules/Clustering.d.ts"/>
/// <reference path="Modules/Contour.d.ts"/>
/// <reference path="Modules/DataBinning.d.ts"/>
/// <reference path="Modules/Directions.d.ts"/>
/// <reference path="Modules/DrawingTools.d.ts"/>
/// <reference path="Modules/GeoJSON.d.ts"/>
/// <reference path="Modules/GeoJson.d.ts"/>
/// <reference path="Modules/HeatMapLayer.d.ts"/>

@@ -34,0 +36,0 @@ /// <reference path="Modules/Search.d.ts"/>

@@ -373,2 +373,11 @@ /*

/**
* Given two shapes, determines if the first one contains the second one
* (or, the second shape is a subset of the first shape) or not.
* @param shapeA The first shape to test against the second.
* @param shapeB The second shape to test against the first.
* @returns A boolean indicating if the first shape contains the second shape.
*/
export function contains(shapeA: Location | IPrimitive | (Location | IPrimitive)[], shapeB: Location | IPrimitive | (Location | IPrimitive)[]): boolean;
/**
* Calculates a convex hull. A convex hull is a shape that represents that minimum convex geometry that encloses all shapes in the specified data set.

@@ -375,0 +384,0 @@ * @param shapes Shape(s) whose Location(s) or Location(s) are to be used to generate a convex hull.

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