Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.