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

jmap.js

Package Overview
Dependencies
Maintainers
5
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jmap.js

Public repository for Jibestream's Javascript SDK and plugins. See http://www.jibestream.com

  • 4.14.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
146
decreased by-37.34%
Maintainers
5
Weekly downloads
 
Created
Source

jmap.js

Public repository for Jibestream's Javascript SDK and plugins. See http://www.jibestream.com

Jibestream's Web SDK. Compatible with the Jibestream Application Core Service (JACS)

Quick Start:

Using CDN (Recommended):

<script src="https://cdn.jibestream.com/web/{VERSION}/jmap.min.js"></script>

Using Browserify or Webpack

npm install jmap.js
import jmap from 'jmap.js'

Quick Start

import jmap from 'jmap.js'

// Create a core data object with your customerId & authentication
const core = new jmap.core.JCore({
  auth: new jmap.core.Auth('clientId', 'clientSecret'),
  customerId: 1
})

// Create an ActiveVenue with the default building using the venue ID
const venueId = 2
core.populateVenueWithDefaultBuilding(venueId, (error, activeVenue) => {
  if (error) throw error
  // Create the view controller
  const control = new jmap.JController({ activeVenue })
  // Show map
  control.showDefaultMap()
})

Keywords

FAQs

Package last updated on 31 May 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc