
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
cartographer
Advanced tools
This package tries to make integration with different map providers easier by returning the same result whether you are using gmaps, osm, etc.
npm i cartographer
Get here your API Key
const { createGmaps } = require('cartographer')
const gmaps = createGmaps({
params: { key: 'YOUR_GMAPS_API_KEY_HERE' }
})
const result = await gmaps.search('Barcelona') // returns an array of locations.
const { createOSM } = require('cartographer')
const osm = createOSM()
const result = await osm.search('Barcelona') // returns an array of locations.
In the case of osm you can request the geojson of a location by passing their osmId
:
const geojson = await osm.searchGeoJSON(347950) // returns the geojson of Barcelona.
Also, if you have an osm object (raw) you can pass it to get an updated response. The method will take from the object the osm_id
and the osm_type
to collect the osm info:
const result = await osm.searchGeoJSON({
// ... the rest of the object is ignored.
osm_id:"347950",
osm_type:"relation"
}) // returns an array with the location Object
const result = [{
address: String,
lon: Number,
lat: Number,
bbox: [
[Number, Number], // south - lat, west - lon
[Number, Number] // north - lat, east - lon
],
raw: {} // unprocessed response, as returned by the source
}]
FAQs
GeoSearch through different providers
The npm package cartographer receives a total of 1 weekly downloads. As such, cartographer popularity was classified as not popular.
We found that cartographer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.