Renamed prefixes in angular.json
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-11-04 13:43:46 +01:00
parent c32214f544
commit cec43a636c
183 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,40 @@
import { Injectable } from '@angular/core';
import { Observer, Observable } from 'rxjs';
/**
* GeolocationService class.
* https://developers.google.com/maps/documentation/javascript/
* https://dev.w3.org/geo/api/spec-source.html
*/
@Injectable()
export class GeolocationService {
/**
* Tries HTML5 geolocation.
*
* Wraps the Geolocation API into an observable.
*
* @return An observable of Position
*/
getCurrentPosition(): Observable<Position> {
return Observable.create((observer: Observer<Position>) => {
// Invokes getCurrentPosition method of Geolocation API.
navigator.geolocation.watchPosition(
(position: Position) => {
observer.next(position);
observer.complete();
},
(error: PositionError) => {
console.log('Geolocation service: ' + error.message);
observer.error(error);
},
{
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
}
);
});
}
}

View File

@@ -0,0 +1,52 @@
import { Injectable, Query } from '@angular/core';
import { IQueryState } from '../models/query.state';
import { query } from '@angular/animations';
@Injectable()
export class StateSerializerService {
serialize(queryState: IQueryState): string {
var state = "";
state += (queryState.itemCode) ? queryState.itemCode : "";
state += ";";
state += (queryState.parentCode) ? queryState.parentCode + ";" + queryState.level.toString() : ";";
state += ";";
state += (queryState.itemType) ? queryState.itemType : "";
state += ";";
state += (queryState.query) ? encodeURIComponent( queryState.query ) : "";
state += ";";
state += (queryState.tags) ? encodeURIComponent( queryState.tags ) : "";
state += ";";
state += (queryState.bboxFilter) ? "1" : "0";
state += ";";
state += (queryState.startDate) ? JSON.stringify(queryState.startDate) : "";
state += ";";
state += (queryState.endDate) ? JSON.stringify(queryState.endDate) : "";
state += ";";
state += (queryState.bboxFilter && queryState.bbox && queryState.bbox.length>0) ? JSON.stringify(queryState.bbox) : "";
return btoa(state);
}
deserialize(queryState: string): IQueryState {
var state: IQueryState = { itemCode: null, parentCode: null, level: 1, itemType: null, query: null, tags: null, bboxFilter: false, startDate: null, endDate: null,bbox:[] };
var stateParts = atob(queryState).split(";");
if (stateParts.length == 10) {
if (stateParts[0] != "") state.itemCode = stateParts[0];
if (stateParts[1] != "") {
state.parentCode = stateParts[1];
state.level = parseInt(stateParts[2]);
}
if (stateParts[3] != "") state.itemType = stateParts[3];
if (stateParts[4] != "") state.query = decodeURIComponent(stateParts[4]);
if (stateParts[5] != "") state.tags = decodeURIComponent( stateParts[5]);
if (stateParts[6] != "") state.bboxFilter = parseInt(stateParts[6]) == 1;
if (stateParts[7] != "") state.startDate = new Date(Date.parse(JSON.parse(stateParts[7])));
if (stateParts[8] != "") state.endDate = new Date(Date.parse(JSON.parse(stateParts[8])));
if (stateParts[9] != "") state.bbox = JSON.parse(stateParts[9]);
}
return state;
}
}