MapsIndoors is a dynamic mapping platform from MapsPeople that can provide maps of your indoor and outdoor localities and helps you create search and navigation experiences for your local users. CiscoDNA is Cisco’s newest digital and cloud-based IT infrastructure management platform. Among many other things, CiscoDNA can pinpoint the physical and geographic position of devices connected wirelessly to the local IT network.
In order to show a user's position on an indoor map with MapsIndoors, a Position Provider must be implemented. The MapsIndoors JavaScript SDK does not provide a default Position Provider but relies on 3rd party positioning software to create this experience. In an outdoor environment, this Position Provider can be a wrapper of the browser's native Geolocation API.
Please note that the following code sample assumes that you have already succesfully implemented MapsIndoors into your application.
The JavaScript SDK doesn't have a built-in interface like the Android and iOS SDKs. However, by following these steps, you should be able to achieve the same functionality.
The first step is to create the class CiscoPositioningService, and the constructor for it.
classCiscoPositioningService {/** * @param{string} args.clientIp - The local IP address of the device * @param{string} args.tenantId - The Cisco tenant id. * @param{number} [args.pollingInterval=1000] - The interval that the position will be polled from the backend. * @param{string} [args.region="eu"] - The Cisco app region. */constructor(args = {}) {if (!args.clientIp)thrownewTypeError('Invalid argument: "clientIp"');if (!args.tenantId)thrownewTypeError('Invalid argument: "tenantId"');this._pollingInterval =1000;this._tenantId =args.tenantId;this._successCallbacks =newMap();this._errorCallbacks =newMap();this._deviceId ='';args.region =args.region ||'eu';this.pollingInterval =args.pollInterval; fetch(`https://ciscodna.mapsindoors.com/${this._tenantId}/api/ciscodna/devicelookup?clientIp=${args.clientIp}®ion=${args.region}`)
.then(this._errorHandler).then(res =>res.json()).then(({ deviceId }) => {this._deviceId = deviceId;this._startPolling(); }).catch(err => {console.error(err.message); }); }
Next step is to create watchPosition and clearWatch, to watch for the positioning updates the system recieves.
/** * @private */_errorHandler(response) {if (!response.ok) {constcontentType=response.headers.get('content-type');if (contentType &&contentType.indexOf('application/json') !==-1) {returnresponse.json().then(({ message }) => {thrownewError(message); }); } else {let statusText;switch (response.status) {case400: statusText ='The client IP is invalid.';break;case404: statusText ='Device not found.';break;case403: statusText ='The TenantId supplied is not authorized to access the device at the location.'break;default: statusText ='Unknown error.'; }thrownewError(statusText); } }return response; }} // end class
Once the class is created, it can then be used, for example, in the following way - Keep in mind that you cannot fetch the client/device IP address from the browser, an option to get around this could be a seperate service that returns the IP address: