
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
liteapi-map-sdk
Advanced tools
An embeddable maps experience that renders LiteAPI hotel data on top of a Mapbox GL scene. The SDK bundles the map renderer, API client so you can drop a fully interactive map into any web surface with a few lines of code.
An embeddable maps experience that renders LiteAPI hotel data on top of a Mapbox GL scene. The SDK bundles the map renderer, API client so you can drop a fully interactive map into any web surface with a few lines of code.
/places/:placeId and /hotels/ratesnpm install liteapi-map-sdk
<div id="app"></div>
import { LiteAPI } from "liteapi-map-sdk";
import "liteapi-map-sdk/dist/liteapi-map-sdk.css";
LiteAPI.Map.init({
selector: "#app",
placeId: "PLACE_ID_FROM_LITEAPI",
proxyDomain: "proxy.example.com",
});
init returns a MapManager instance that you can use to toggle layers:
const map = LiteAPI.Map.init({
selector: "#app",
placeId: "PLACE_ID_FROM_LITEAPI",
proxyDomain: "proxy.example.com",
});
map.toggleMapHeatmap(true);
selector (string): CSS selector for the map container element.placeId (string): LiteAPI place identifier.proxyDomain (string): Domain (without protocol) for your LiteAPI proxy. Calls are issued over HTTPS.GET /places/:placeId must return place geometry and bounds.POST /hotels/rates should respond with hotel options.src/index.ts – public entry point exporting the LiteAPI namespace.src/MapManager.ts – orchestrates data loading, heatmap/markers, and adapter lifecycle.src/adapters/Mapbox/ – Mapbox implementation of the MapAdapter interface.src/services/LiteApi/ – REST client, response normalizers, and supporting utilities.FAQs
An embeddable maps experience that renders LiteAPI hotel data on top of a Mapbox GL scene. The SDK bundles the map renderer, API client so you can drop a fully interactive map into any web surface with a few lines of code.
We found that liteapi-map-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.