@totvs-agro/core-mobile
Version:
Core Mobile Totvs Agro (Front-End) para utilização dos estilos do T-Faces
213 lines • 10.3 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
import { Injectable } from '@angular/core';
import { GoogleMaps, GoogleMapsMapTypeId, HtmlInfoWindow } from '@ionic-native/google-maps';
import { Geolocation } from '@ionic-native/geolocation';
import { MapEvents } from './map-events';
import { PolygonEvents } from './polygon-events';
import { TotvsNotificationProvider } from '../totvs-notification-provider';
var MapProvider = /** @class */ (function () {
function MapProvider(_geolocation, _notification) {
this._geolocation = _geolocation;
this._notification = _notification;
}
MapProvider.prototype.getMapInstance = function () {
return this._map;
};
MapProvider.prototype.init = function (mapElement) {
this.mapElement = mapElement;
return this;
};
MapProvider.prototype.create = function (mapOptions) {
var _this = this;
if (this._map)
this._map.remove();
var options = this.getDefaultMapOptions();
if (mapOptions) {
if (mapOptions.disable) {
options.gestures = { rotate: false, zoom: false, scroll: false, tilt: false };
options.controls = { compass: false, myLocationButton: false, myLocation: false };
}
}
this._map = GoogleMaps.create(this.mapElement.nativeElement, options);
if (mapOptions && mapOptions.callbackCreate)
mapOptions.callbackCreate.apply(this, [this._map]);
if (mapOptions && mapOptions.currentPosition) {
this.getMapMyLocation().then(function (currentPosition) {
_this.moveCamera({ target: [currentPosition] });
});
}
this._events = new MapEvents(this);
return this._events;
};
MapProvider.prototype.getCurrentPosition = function () {
return __awaiter(this, void 0, void 0, function () {
var currentPosition;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this._geolocation.getCurrentPosition()
.then(function (geoposition) {
var iLatLong = { lat: geoposition.coords.latitude, lng: geoposition.coords.longitude };
return iLatLong;
})
.catch(function (err) { return console.log(err); })];
case 1:
currentPosition = _a.sent();
//this._notification.dismissLoading();
return [2 /*return*/, currentPosition];
}
});
});
};
MapProvider.prototype.getMapMyLocation = function () {
return __awaiter(this, void 0, void 0, function () {
var currentPosition;
var _this = this;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this._notification.presentLoading();
return [4 /*yield*/, this._map.getMyLocation()
.then(function (myLocation) {
if (!myLocation) {
_this._notification.dismissLoading();
_this._notification.notificacionToast(TotvsNotificationProvider.ERROR, "COMMON.ERROR_GET_MY_LOCATION");
return null;
}
return myLocation.latLng;
})
.catch(function (err) {
console.log(err);
_this._notification.dismissLoading();
_this._notification.notificacionToast(TotvsNotificationProvider.ERROR, "COMMON.ERROR_GET_MY_LOCATION");
return null;
})];
case 1:
currentPosition = _a.sent();
this._notification.dismissLoading();
return [2 /*return*/, currentPosition];
}
});
});
};
MapProvider.prototype.getDefaultMapOptions = function () {
return {
mapType: GoogleMapsMapTypeId.HYBRID,
camera: {
zoom: 16
}, controls: {
compass: true,
myLocation: true,
myLocationButton: false
},
gestures: {
rotate: true
}
};
};
MapProvider.prototype.addPolygon = function (polygonPoints, _polygonOptions) {
var hasConfig = false;
if (_polygonOptions != undefined)
hasConfig = true;
var polygon = this._map.addPolygonSync({
points: polygonPoints,
strokeColor: '#ffffff',
fillColor: 'rgba(102, 170, 170, 0.5)',
strokeWidth: 3,
clickable: hasConfig ? _polygonOptions.clickable : false
});
var event = new PolygonEvents(polygon, this);
return event;
};
MapProvider.prototype.addMarker = function (centerPolygon) {
return this._map.addMarkerSync({
icon: { url: './assets/imgs/marker-new.png' },
visible: false,
position: centerPolygon,
infoWindowAnchor: [33, 87]
});
};
MapProvider.prototype.moveCamera = function (cameraPosition) {
this._map.moveCamera(cameraPosition);
};
MapProvider.prototype.animateCamera = function (centerPolygon) {
this._map.animateCamera({ 'target': centerPolygon, duration: 500 });
};
MapProvider.prototype.getMyLocation = function (options) {
return this._map.getMyLocation({ enableHighAccuracy: true });
};
MapProvider.prototype.closeTooltip = function () {
if (this._infoWindow) {
this._infoWindow.close();
this._infoWindow = null;
}
};
MapProvider.prototype.destroyMap = function () {
this._map.remove();
};
MapProvider.prototype.clearMap = function () {
this._map.clear();
};
MapProvider.prototype.onCloseTooltip = function (event) {
this.closeTooltip();
event.apply;
};
MapProvider.prototype.openTooltip = function (contents, position) {
var markerInfo = this.addMarker(position);
this.animateCamera(position);
this._infoWindow = new HtmlInfoWindow();
this._infoWindow.setBackgroundColor('#ddd');
this._infoWindow.setContent(contents);
this._infoWindow.open(markerInfo);
};
MapProvider = __decorate([
Injectable(),
__metadata("design:paramtypes", [Geolocation,
TotvsNotificationProvider])
], MapProvider);
return MapProvider;
}());
export { MapProvider };
//# sourceMappingURL=map.js.map