mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
enabling loading for location refrsh
This commit is contained in:
parent
1d663e1b68
commit
9d3949ea37
@ -337,6 +337,9 @@
|
||||
<i class="fw fw-refresh"></i>
|
||||
</a>
|
||||
</span>
|
||||
<div id="map-spinner" class="wr-advance-operations-init hidden">
|
||||
<i class="fw fw-settings fw-spin fw-2x"></i> Fetching the latest location...
|
||||
</div>
|
||||
</div>
|
||||
<div id="collapseThree" class="panel-collapse collapse in" role="tabpanel"
|
||||
aria-labelledby="device_location">
|
||||
|
||||
@ -32,6 +32,8 @@ function loadLeafletMap(refresh) {
|
||||
attribution = "© <a href='https://openstreetmap.org/copyright'>OpenStreetMap</a> contributors";
|
||||
|
||||
if (refresh && !isAnalitics) {
|
||||
console.log("holaaaa");
|
||||
$("#map-spinner").removeClass("hidden");
|
||||
var applicationsList = $("#applications-list");
|
||||
var deviceId = applicationsList.data("device-id");
|
||||
var deviceType = applicationsList.data("device-type");
|
||||
@ -43,8 +45,10 @@ function loadLeafletMap(refresh) {
|
||||
data = JSON.parse(data);
|
||||
if (data.latitude && data.longitude) {
|
||||
map.removeLayer(marker);
|
||||
marker = L.marker([6.912853, 79.855635], {"opacity": opacVal}).addTo(map).bindPopup("Your device is here");
|
||||
// marker = L.marker([data.latitude, data.longitude], {"opacity": opacVal}).addTo(map).bindPopup("Your device is here");
|
||||
// marker = L.marker([6.912853, 79.855635], {"opacity": opacVal}).addTo(map).bindPopup("Your device is here");
|
||||
marker = L.marker([data.latitude, data.longitude], {"opacity": opacVal}).addTo(map).bindPopup("Your device is here");
|
||||
map.panTo(new L.LatLng(data.latitude, data.longitude));
|
||||
// map.panTo(new L.LatLng(40.737, -73.923));
|
||||
marker.on('mouseover', function (e) {
|
||||
this.openPopup();
|
||||
});
|
||||
@ -52,14 +56,16 @@ function loadLeafletMap(refresh) {
|
||||
this.closePopup();
|
||||
});
|
||||
}
|
||||
$("#map-spinner").addClass("hidden");
|
||||
} else {
|
||||
|
||||
$("#map-spinner").adddClass("hidden");
|
||||
$("#device-location").hide();
|
||||
$("#map-error").show();
|
||||
}
|
||||
},
|
||||
// error-callback
|
||||
function () {
|
||||
$("#map-spinner").addClass("hidden");
|
||||
$("#device-location").hide();
|
||||
$("#map-error").show();
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user