mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Fixing issues in the full history view in geo fence.
This commit is contained in:
parent
8d800feaca
commit
3d504afa35
@ -25,14 +25,12 @@
|
||||
var type = request.getParameter("type");
|
||||
var timeFrom = request.getParameter("timeFrom");
|
||||
var timeTo = request.getParameter("timeTo");
|
||||
var log = new Log();
|
||||
|
||||
var providerAPI = require('js/batch-provider-api.js');
|
||||
if (action === 'getSchema') {
|
||||
print(providerAPI.getSchema());
|
||||
return;
|
||||
} else if(action === 'getData'){
|
||||
log.info('FromTime : '+timeFrom+', toTime: '+ timeTo);
|
||||
print(providerAPI.getData(id, type, timeFrom, timeTo));
|
||||
return;
|
||||
}
|
||||
|
||||
@ -82,7 +82,7 @@ function initializeMap() {
|
||||
|
||||
map = L.map("map", {
|
||||
zoom: 14,
|
||||
center: [51.548525, 0.111749],
|
||||
center: [6.927078, 79.861243],
|
||||
layers: [defaultOSM, defaultTFL],
|
||||
zoomControl: false,
|
||||
attributionControl: false,
|
||||
@ -120,8 +120,6 @@ function initializeMap() {
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* Attribution control */
|
||||
|
||||
@ -166,13 +166,16 @@ function angleToHeading(angle) {
|
||||
SpatialObject.prototype.removeFromMap = function () {
|
||||
this.removePath();
|
||||
this.marker.closePopup();
|
||||
map.removeLayer(this.marker);
|
||||
};
|
||||
|
||||
function clearMap() {
|
||||
for (var i=0; i< currentSpatialObjects.length; i++ ){
|
||||
console.log("removed - " + currentSpatialObjects[i]);
|
||||
currentSpatialObjects[i].removeFromMap();
|
||||
for (var spacialObject in currentSpatialObjects) {
|
||||
console.log(spacialObject);
|
||||
currentSpatialObjects[spacialObject].removePath();
|
||||
currentSpatialObjects[spacialObject].removeFromMap();
|
||||
}
|
||||
currentSpatialObjects = {};
|
||||
}
|
||||
|
||||
SpatialObject.prototype.createLineStringFeature = function (state, information, coordinates) {
|
||||
@ -702,7 +705,7 @@ function intializeWebsocketUrls() {
|
||||
ApplicationOptions.constance.PATH_SEPARATOR + ApplicationOptions.constance
|
||||
.CEP_ON_ALERT_WEB_SOCKET_OUTPUT_ADAPTOR_NAME + ApplicationOptions.constance.PATH_SEPARATOR + ApplicationOptions.constance.VERSION
|
||||
+ "?deviceId=" + deviceId + "&deviceType=" + deviceType;
|
||||
document.cookie = "websocket-token=f98d6142-e988-3c7f-a8c9-7e6d74da7113; path=/";
|
||||
document.cookie = "websocket-token=619e6170-10e8-31f0-904b-b7770d53e545; path=/";
|
||||
$("#proximity_alert").hide();
|
||||
initializeWebSocket();
|
||||
initializeOnAlertWebSocket();
|
||||
@ -720,7 +723,6 @@ function intializeWebsocketUrls() {
|
||||
}
|
||||
|
||||
|
||||
|
||||
intializeWebsocketUrls();
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user