Compare commits
No commits in common. "34b067fd281f2eed1d966825f728158c0af3c330" and "503a2da597f2daab4594a27beaaa851b2a8021d0" have entirely different histories.
34b067fd28
...
503a2da597
3
.gitignore
vendored
3
.gitignore
vendored
@ -22,7 +22,6 @@ speed-measure-plugin.json
|
|||||||
*.launch
|
*.launch
|
||||||
.settings/
|
.settings/
|
||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
.vs/*
|
|
||||||
|
|
||||||
# IDE - VSCode
|
# IDE - VSCode
|
||||||
.vscode/*
|
.vscode/*
|
||||||
@ -45,5 +44,3 @@ testem.log
|
|||||||
# System Files
|
# System Files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
projects/common/node_modules/
|
|
||||||
projects/common-map/node_modules/
|
|
||||||
|
54
Jenkinsfile
vendored
54
Jenkinsfile
vendored
@ -1,54 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent any
|
|
||||||
environment {
|
|
||||||
PACKAGE_VERSION_PREFIX=sh(script: 'jq .version package.json |sed "s/\\"//g"', returnStdout: true).trim()
|
|
||||||
PACKAGE_VERSION="${PACKAGE_VERSION_PREFIX + '.' + env.BUILD_NUMBER}"
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage('npm install'){
|
|
||||||
steps {
|
|
||||||
sh '''rm -rf node_modules/
|
|
||||||
npm install
|
|
||||||
cd projects/common
|
|
||||||
npm install
|
|
||||||
cd ../common-map
|
|
||||||
npm install
|
|
||||||
cd ../common-map3d
|
|
||||||
npm install
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('build'){
|
|
||||||
steps {
|
|
||||||
sh '''ng build common
|
|
||||||
ng build common-map
|
|
||||||
ng build common-map3d'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('npm publish'){
|
|
||||||
steps {
|
|
||||||
sh '''cd dist/common
|
|
||||||
npm version ${PACKAGE_VERSION}
|
|
||||||
npm publish
|
|
||||||
cd ../common-map
|
|
||||||
npm version ${PACKAGE_VERSION}
|
|
||||||
npm publish
|
|
||||||
cd ../common-map3d
|
|
||||||
npm version ${PACKAGE_VERSION}
|
|
||||||
npm publish'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
emailext (
|
|
||||||
body: '${DEFAULT_CONTENT}',
|
|
||||||
mimeType: 'text/html',
|
|
||||||
replyTo: '${DEFAULT_REPLYTO}',
|
|
||||||
subject: '${DEFAULT_SUBJECT}',
|
|
||||||
to: emailextrecipients([[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']])
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent any
|
|
||||||
environment {
|
|
||||||
PACKAGE_VERSION_PREFIX=sh(script: 'jq .version package.json |sed "s/\\"//g"', returnStdout: true).trim()
|
|
||||||
PACKAGE_VERSION="${PACKAGE_VERSION_PREFIX + '-prerelease.' + env.BUILD_NUMBER}"
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage('npm install'){
|
|
||||||
steps {
|
|
||||||
sh '''rm -rf node_modules/
|
|
||||||
npm install
|
|
||||||
cd projects/common
|
|
||||||
npm install
|
|
||||||
cd ../common-map
|
|
||||||
npm install
|
|
||||||
cd ../common-map3d
|
|
||||||
npm install
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('build'){
|
|
||||||
steps {
|
|
||||||
sh '''ng build common
|
|
||||||
ng build common-map
|
|
||||||
ng build common-map3d'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('npm publish'){
|
|
||||||
steps {
|
|
||||||
sh '''cd dist/common
|
|
||||||
npm version ${PACKAGE_VERSION}
|
|
||||||
npm publish
|
|
||||||
cd ../common-map
|
|
||||||
npm version ${PACKAGE_VERSION}
|
|
||||||
npm publish
|
|
||||||
cd ../common-map3d
|
|
||||||
npm version ${PACKAGE_VERSION}
|
|
||||||
npm publish'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
emailext (
|
|
||||||
body: '${DEFAULT_CONTENT}',
|
|
||||||
mimeType: 'text/html',
|
|
||||||
replyTo: '${DEFAULT_REPLYTO}',
|
|
||||||
subject: '${DEFAULT_SUBJECT}',
|
|
||||||
to: emailextrecipients([[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']])
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
62
README.md
62
README.md
@ -1,59 +1,33 @@
|
|||||||
# Farmmaps viewer
|
# FarmmapsLibApp
|
||||||
|
|
||||||
This is a sample FarmMaps client in Angular 7.x.
|
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.3.8.
|
||||||
|
|
||||||
|
##Add a new library
|
||||||
|
Run `ng generate library lib-name --prefix=farmmaps` to add a new library in the `farmmaps` namespace. Build the library `ng build lib-name`.
|
||||||
|
|
||||||
## Quick start
|
##Add a new component
|
||||||
|
Run `ng generate component component-name --project=lib-name` to add a new component in a library. Export the new component from the library’s module. Add the new component to the entry file of the library (`public_api.ts`). Rebuild the library. Import the module in the consumer and use `<farmmaps-component-name></farmmaps-component-name>`.
|
||||||
|
|
||||||
Use one of the two options below to get started.
|
## Development server
|
||||||
|
|
||||||
## Option 1, Using docker
|
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
|
||||||
|
|
||||||
*Dependencies*
|
## Code scaffolding
|
||||||
|
|
||||||
* docker desktop
|
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
||||||
|
|
||||||
*Setup*
|
## Build
|
||||||
|
|
||||||
```
|
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
|
||||||
docker pull node:12.13.1
|
|
||||||
docker run -t -i --entrypoint /bin/bash -p 4200:4200 node:12.13.1
|
|
||||||
```
|
|
||||||
|
|
||||||
Inside the running container
|
## Running unit tests
|
||||||
```
|
|
||||||
git clone https://git.akkerweb.nl/FarmMaps/FarmMapsLib.git
|
|
||||||
cd FarmMapsLib
|
|
||||||
npm config set @farmmaps:registry https://repository.akkerweb.nl/repository/npm-group/
|
|
||||||
npm install -g @angular/cli
|
|
||||||
npm install
|
|
||||||
ng serve --host 0.0.0.0
|
|
||||||
```
|
|
||||||
*Go*
|
|
||||||
|
|
||||||
Point your browser to http://localhost:4200
|
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
||||||
|
|
||||||
## Option 2, Using local machine
|
## Running end-to-end tests
|
||||||
|
|
||||||
*Dependencies*
|
|
||||||
|
|
||||||
* npm 6.9.0
|
|
||||||
* nodejs 10.16.0
|
|
||||||
* git
|
|
||||||
|
|
||||||
*Setup*
|
|
||||||
|
|
||||||
```
|
|
||||||
git clone https://git.akkerweb.nl/FarmMaps/FarmMapsLib.git
|
|
||||||
cd FarmMapsLib
|
|
||||||
npm config set @farmmaps:registry https://repository.akkerweb.nl/repository/npm-group/
|
|
||||||
npm install -g @angular/cli
|
|
||||||
npm install
|
|
||||||
ng serve
|
|
||||||
```
|
|
||||||
*Go*
|
|
||||||
|
|
||||||
Point your browser to http://localhost:4200
|
|
||||||
|
|
||||||
|
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
|
||||||
|
|
||||||
|
## Further help
|
||||||
|
|
||||||
|
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
||||||
|
154
angular.json
154
angular.json
@ -11,49 +11,22 @@
|
|||||||
"schematics": {},
|
"schematics": {},
|
||||||
"architect": {
|
"architect": {
|
||||||
"build": {
|
"build": {
|
||||||
"builder": "@angular-builders/custom-webpack:browser",
|
"builder": "@angular-devkit/build-angular:browser",
|
||||||
"options": {
|
"options": {
|
||||||
"customWebpackConfig": {
|
|
||||||
"path": "./custom-webpack.config.js"
|
|
||||||
},
|
|
||||||
"aot": true,
|
|
||||||
"outputPath": "dist/farmmaps-lib-app",
|
"outputPath": "dist/farmmaps-lib-app",
|
||||||
"index": "src/index.html",
|
"index": "src/index.html",
|
||||||
"main": "src/main.ts",
|
"main": "src/main.ts",
|
||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": "src/polyfills.ts",
|
||||||
"tsConfig": "src/tsconfig.app.json",
|
"tsConfig": "src/tsconfig.app.json",
|
||||||
"assets": [
|
"assets": [
|
||||||
{
|
"src/favicon.ico",
|
||||||
"glob": "**/*",
|
"src/assets"
|
||||||
"input": "src/assets/images",
|
|
||||||
"output": "/images"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"glob": "silent-refresh.html",
|
|
||||||
"input": "src/assets",
|
|
||||||
"output": "/"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"glob": "favicon.ico",
|
|
||||||
"input": "src/assets",
|
|
||||||
"output": "/"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"glob": "**/*",
|
|
||||||
"input": "node_modules/cesium/Build/Cesium",
|
|
||||||
"output": "/assets/cesium"
|
|
||||||
},
|
|
||||||
"src/configuration.json"
|
|
||||||
],
|
],
|
||||||
"styles": [
|
"styles": [
|
||||||
"src/styles.css",
|
"src/styles.css"
|
||||||
"node_modules/bootstrap/dist/css/bootstrap.min.css",
|
|
||||||
"fontawesome-5.15.2/css/all.min.css",
|
|
||||||
"fonts/FMIconFont/style.css",
|
|
||||||
"node_modules/cesium/Build/Cesium/Widgets/widgets.css",
|
|
||||||
"node_modules/ol/ol.css"
|
|
||||||
],
|
],
|
||||||
"scripts": []
|
"scripts": [],
|
||||||
|
"es5BrowserSupport": true
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
@ -76,18 +49,14 @@
|
|||||||
{
|
{
|
||||||
"type": "initial",
|
"type": "initial",
|
||||||
"maximumWarning": "2mb",
|
"maximumWarning": "2mb",
|
||||||
"maximumError": "7mb"
|
"maximumError": "5mb"
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "anyComponentStyle",
|
|
||||||
"maximumWarning": "6kb"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"serve": {
|
"serve": {
|
||||||
"builder": "@angular-builders/custom-webpack:dev-server",
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||||||
"options": {
|
"options": {
|
||||||
"browserTarget": "farmmaps-lib-app:build"
|
"browserTarget": "farmmaps-lib-app:build"
|
||||||
},
|
},
|
||||||
@ -162,118 +131,33 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"common": {
|
"material": {
|
||||||
"root": "projects/common",
|
"root": "projects/material",
|
||||||
"sourceRoot": "projects/common/src",
|
"sourceRoot": "projects/material/src",
|
||||||
"projectType": "library",
|
"projectType": "library",
|
||||||
"prefix": "fm",
|
"prefix": "farmmaps",
|
||||||
"architect": {
|
"architect": {
|
||||||
"build": {
|
"build": {
|
||||||
"builder": "@angular-devkit/build-ng-packagr:build",
|
"builder": "@angular-devkit/build-ng-packagr:build",
|
||||||
"options": {
|
"options": {
|
||||||
"tsConfig": "projects/common/tsconfig.lib.json",
|
"tsConfig": "projects/material/tsconfig.lib.json",
|
||||||
"project": "projects/common/ng-package.json"
|
"project": "projects/material/ng-package.json"
|
||||||
}
|
|
||||||
, "configurations": {
|
|
||||||
"production": {
|
|
||||||
"tsConfig": "projects/common/tsconfig.lib.prod.json"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"test": {
|
"test": {
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
"builder": "@angular-devkit/build-angular:karma",
|
||||||
"options": {
|
"options": {
|
||||||
"main": "projects/common/src/test.ts",
|
"main": "projects/material/src/test.ts",
|
||||||
"tsConfig": "projects/common/tsconfig.spec.json",
|
"tsConfig": "projects/material/tsconfig.spec.json",
|
||||||
"karmaConfig": "projects/common/karma.conf.js"
|
"karmaConfig": "projects/material/karma.conf.js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
"builder": "@angular-devkit/build-angular:tslint",
|
"builder": "@angular-devkit/build-angular:tslint",
|
||||||
"options": {
|
"options": {
|
||||||
"tsConfig": [
|
"tsConfig": [
|
||||||
"projects/common/tsconfig.lib.json",
|
"projects/material/tsconfig.lib.json",
|
||||||
"projects/common/tsconfig.spec.json"
|
"projects/material/tsconfig.spec.json"
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"**/node_modules/**"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"common-map": {
|
|
||||||
"root": "projects/common-map",
|
|
||||||
"sourceRoot": "projects/common-map/src",
|
|
||||||
"projectType": "library",
|
|
||||||
"prefix": "fm-map",
|
|
||||||
"architect": {
|
|
||||||
"build": {
|
|
||||||
"builder": "@angular-devkit/build-ng-packagr:build",
|
|
||||||
"options": {
|
|
||||||
"tsConfig": "projects/common-map/tsconfig.lib.json",
|
|
||||||
"project": "projects/common-map/ng-package.json"
|
|
||||||
}
|
|
||||||
, "configurations": {
|
|
||||||
"production": {
|
|
||||||
"tsConfig": "projects/common-map/tsconfig.lib.prod.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"test": {
|
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
|
||||||
"options": {
|
|
||||||
"main": "projects/common-map/src/test.ts",
|
|
||||||
"tsConfig": "projects/common-map/tsconfig.spec.json",
|
|
||||||
"karmaConfig": "projects/common-map/karma.conf.js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"lint": {
|
|
||||||
"builder": "@angular-devkit/build-angular:tslint",
|
|
||||||
"options": {
|
|
||||||
"tsConfig": [
|
|
||||||
"projects/common-map/tsconfig.lib.json",
|
|
||||||
"projects/common-map/tsconfig.spec.json"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"**/node_modules/**"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"common-map3d": {
|
|
||||||
"projectType": "library",
|
|
||||||
"root": "projects/common-map3d",
|
|
||||||
"sourceRoot": "projects/common-map3d/src",
|
|
||||||
"prefix": "fm-map3d",
|
|
||||||
"architect": {
|
|
||||||
"build": {
|
|
||||||
"builder": "@angular-devkit/build-angular:ng-packagr:build",
|
|
||||||
"options": {
|
|
||||||
"tsConfig": "projects/common-map3d/tsconfig.lib.json",
|
|
||||||
"project": "projects/common-map3d/ng-package.json"
|
|
||||||
},
|
|
||||||
"configurations": {
|
|
||||||
"production": {
|
|
||||||
"tsConfig": "projects/common-map3d/tsconfig.lib.prod.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"test": {
|
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
|
||||||
"options": {
|
|
||||||
"main": "projects/common-map3d/src/test.ts",
|
|
||||||
"tsConfig": "projects/common-map3d/tsconfig.spec.json",
|
|
||||||
"karmaConfig": "projects/common-map3d/karma.conf.js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"lint": {
|
|
||||||
"builder": "@angular-devkit/build-angular:tslint",
|
|
||||||
"options": {
|
|
||||||
"tsConfig": [
|
|
||||||
"projects/common-map3d/tsconfig.lib.json",
|
|
||||||
"projects/common-map3d/tsconfig.spec.json"
|
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"**/node_modules/**"
|
"**/node_modules/**"
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
node: {
|
|
||||||
// Resolve node module use of fs
|
|
||||||
fs: "empty",
|
|
||||||
Buffer: false,
|
|
||||||
http: "empty",
|
|
||||||
https: "empty",
|
|
||||||
zlib: "empty"
|
|
||||||
}
|
|
||||||
};
|
|
File diff suppressed because it is too large
Load Diff
5
fontawesome-5.15.2/css/all.min.css
vendored
5
fontawesome-5.15.2/css/all.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,15 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Font Awesome 5 Brands';
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 400;
|
|
||||||
font-display: block;
|
|
||||||
src: url("../webfonts/fa-brands-400.eot");
|
|
||||||
src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); }
|
|
||||||
|
|
||||||
.fab {
|
|
||||||
font-family: 'Font Awesome 5 Brands';
|
|
||||||
font-weight: 400; }
|
|
5
fontawesome-5.15.2/css/brands.min.css
vendored
5
fontawesome-5.15.2/css/brands.min.css
vendored
@ -1,5 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}
|
|
File diff suppressed because it is too large
Load Diff
5
fontawesome-5.15.2/css/duotone.min.css
vendored
5
fontawesome-5.15.2/css/duotone.min.css
vendored
File diff suppressed because one or more lines are too long
7138
fontawesome-5.15.2/css/fontawesome.css
vendored
7138
fontawesome-5.15.2/css/fontawesome.css
vendored
File diff suppressed because it is too large
Load Diff
5
fontawesome-5.15.2/css/fontawesome.min.css
vendored
5
fontawesome-5.15.2/css/fontawesome.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,15 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Font Awesome 5 Pro';
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 300;
|
|
||||||
font-display: block;
|
|
||||||
src: url("../webfonts/fa-light-300.eot");
|
|
||||||
src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg"); }
|
|
||||||
|
|
||||||
.fal {
|
|
||||||
font-family: 'Font Awesome 5 Pro';
|
|
||||||
font-weight: 300; }
|
|
5
fontawesome-5.15.2/css/light.min.css
vendored
5
fontawesome-5.15.2/css/light.min.css
vendored
@ -1,5 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;font-display:block;src:url(../webfonts/fa-light-300.eot);src:url(../webfonts/fa-light-300.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-light-300.woff2) format("woff2"),url(../webfonts/fa-light-300.woff) format("woff"),url(../webfonts/fa-light-300.ttf) format("truetype"),url(../webfonts/fa-light-300.svg#fontawesome) format("svg")}.fal{font-family:"Font Awesome 5 Pro";font-weight:300}
|
|
@ -1,15 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Font Awesome 5 Pro';
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 400;
|
|
||||||
font-display: block;
|
|
||||||
src: url("../webfonts/fa-regular-400.eot");
|
|
||||||
src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); }
|
|
||||||
|
|
||||||
.far {
|
|
||||||
font-family: 'Font Awesome 5 Pro';
|
|
||||||
font-weight: 400; }
|
|
5
fontawesome-5.15.2/css/regular.min.css
vendored
5
fontawesome-5.15.2/css/regular.min.css
vendored
@ -1,5 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Pro";font-weight:400}
|
|
@ -1,16 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Font Awesome 5 Pro';
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 900;
|
|
||||||
font-display: block;
|
|
||||||
src: url("../webfonts/fa-solid-900.eot");
|
|
||||||
src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); }
|
|
||||||
|
|
||||||
.fa,
|
|
||||||
.fas {
|
|
||||||
font-family: 'Font Awesome 5 Pro';
|
|
||||||
font-weight: 900; }
|
|
5
fontawesome-5.15.2/css/solid.min.css
vendored
5
fontawesome-5.15.2/css/solid.min.css
vendored
@ -1,5 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Pro";font-weight:900}
|
|
@ -1,371 +0,0 @@
|
|||||||
/*!
|
|
||||||
* Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
|
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
|
||||||
*/
|
|
||||||
svg:not(:root).svg-inline--fa {
|
|
||||||
overflow: visible; }
|
|
||||||
|
|
||||||
.svg-inline--fa {
|
|
||||||
display: inline-block;
|
|
||||||
font-size: inherit;
|
|
||||||
height: 1em;
|
|
||||||
overflow: visible;
|
|
||||||
vertical-align: -.125em; }
|
|
||||||
.svg-inline--fa.fa-lg {
|
|
||||||
vertical-align: -.225em; }
|
|
||||||
.svg-inline--fa.fa-w-1 {
|
|
||||||
width: 0.0625em; }
|
|
||||||
.svg-inline--fa.fa-w-2 {
|
|
||||||
width: 0.125em; }
|
|
||||||
.svg-inline--fa.fa-w-3 {
|
|
||||||
width: 0.1875em; }
|
|
||||||
.svg-inline--fa.fa-w-4 {
|
|
||||||
width: 0.25em; }
|
|
||||||
.svg-inline--fa.fa-w-5 {
|
|
||||||
width: 0.3125em; }
|
|
||||||
.svg-inline--fa.fa-w-6 {
|
|
||||||
width: 0.375em; }
|
|
||||||
.svg-inline--fa.fa-w-7 {
|
|
||||||
width: 0.4375em; }
|
|
||||||
.svg-inline--fa.fa-w-8 {
|
|
||||||
width: 0.5em; }
|
|
||||||
.svg-inline--fa.fa-w-9 {
|
|
||||||
width: 0.5625em; }
|
|
||||||
.svg-inline--fa.fa-w-10 {
|
|
||||||
width: 0.625em; }
|
|
||||||
.svg-inline--fa.fa-w-11 {
|
|
||||||
width: 0.6875em; }
|
|
||||||
.svg-inline--fa.fa-w-12 {
|
|
||||||
width: 0.75em; }
|
|
||||||
.svg-inline--fa.fa-w-13 {
|
|
||||||
width: 0.8125em; }
|
|
||||||
.svg-inline--fa.fa-w-14 {
|
|
||||||
width: 0.875em; }
|
|
||||||
.svg-inline--fa.fa-w-15 {
|
|
||||||
width: 0.9375em; }
|
|
||||||
.svg-inline--fa.fa-w-16 {
|
|
||||||
width: 1em; }
|
|
||||||
.svg-inline--fa.fa-w-17 {
|
|
||||||
width: 1.0625em; }
|
|
||||||
.svg-inline--fa.fa-w-18 {
|
|
||||||
width: 1.125em; }
|
|
||||||
.svg-inline--fa.fa-w-19 {
|
|
||||||
width: 1.1875em; }
|
|
||||||
.svg-inline--fa.fa-w-20 {
|
|
||||||
width: 1.25em; }
|
|
||||||
.svg-inline--fa.fa-pull-left {
|
|
||||||
margin-right: .3em;
|
|
||||||
width: auto; }
|
|
||||||
.svg-inline--fa.fa-pull-right {
|
|
||||||
margin-left: .3em;
|
|
||||||
width: auto; }
|
|
||||||
.svg-inline--fa.fa-border {
|
|
||||||
height: 1.5em; }
|
|
||||||
.svg-inline--fa.fa-li {
|
|
||||||
width: 2em; }
|
|
||||||
.svg-inline--fa.fa-fw {
|
|
||||||
width: 1.25em; }
|
|
||||||
|
|
||||||
.fa-layers svg.svg-inline--fa {
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
margin: auto;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 0; }
|
|
||||||
|
|
||||||
.fa-layers {
|
|
||||||
display: inline-block;
|
|
||||||
height: 1em;
|
|
||||||
position: relative;
|
|
||||||
text-align: center;
|
|
||||||
vertical-align: -.125em;
|
|
||||||
width: 1em; }
|
|
||||||
.fa-layers svg.svg-inline--fa {
|
|
||||||
-webkit-transform-origin: center center;
|
|
||||||
transform-origin: center center; }
|
|
||||||
|
|
||||||
.fa-layers-text, .fa-layers-counter {
|
|
||||||
display: inline-block;
|
|
||||||
position: absolute;
|
|
||||||
text-align: center; }
|
|
||||||
|
|
||||||
.fa-layers-text {
|
|
||||||
left: 50%;
|
|
||||||
top: 50%;
|
|
||||||
-webkit-transform: translate(-50%, -50%);
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
-webkit-transform-origin: center center;
|
|
||||||
transform-origin: center center; }
|
|
||||||
|
|
||||||
.fa-layers-counter {
|
|
||||||
background-color: #ff253a;
|
|
||||||
border-radius: 1em;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
color: #fff;
|
|
||||||
height: 1.5em;
|
|
||||||
line-height: 1;
|
|
||||||
max-width: 5em;
|
|
||||||
min-width: 1.5em;
|
|
||||||
overflow: hidden;
|
|
||||||
padding: .25em;
|
|
||||||
right: 0;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
top: 0;
|
|
||||||
-webkit-transform: scale(0.25);
|
|
||||||
transform: scale(0.25);
|
|
||||||
-webkit-transform-origin: top right;
|
|
||||||
transform-origin: top right; }
|
|
||||||
|
|
||||||
.fa-layers-bottom-right {
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
top: auto;
|
|
||||||
-webkit-transform: scale(0.25);
|
|
||||||
transform: scale(0.25);
|
|
||||||
-webkit-transform-origin: bottom right;
|
|
||||||
transform-origin: bottom right; }
|
|
||||||
|
|
||||||
.fa-layers-bottom-left {
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: auto;
|
|
||||||
top: auto;
|
|
||||||
-webkit-transform: scale(0.25);
|
|
||||||
transform: scale(0.25);
|
|
||||||
-webkit-transform-origin: bottom left;
|
|
||||||
transform-origin: bottom left; }
|
|
||||||
|
|
||||||
.fa-layers-top-right {
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
-webkit-transform: scale(0.25);
|
|
||||||
transform: scale(0.25);
|
|
||||||
-webkit-transform-origin: top right;
|
|
||||||
transform-origin: top right; }
|
|
||||||
|
|
||||||
.fa-layers-top-left {
|
|
||||||
left: 0;
|
|
||||||
right: auto;
|
|
||||||
top: 0;
|
|
||||||
-webkit-transform: scale(0.25);
|
|
||||||
transform: scale(0.25);
|
|
||||||
-webkit-transform-origin: top left;
|
|
||||||
transform-origin: top left; }
|
|
||||||
|
|
||||||
.fa-lg {
|
|
||||||
font-size: 1.33333em;
|
|
||||||
line-height: 0.75em;
|
|
||||||
vertical-align: -.0667em; }
|
|
||||||
|
|
||||||
.fa-xs {
|
|
||||||
font-size: .75em; }
|
|
||||||
|
|
||||||
.fa-sm {
|
|
||||||
font-size: .875em; }
|
|
||||||
|
|
||||||
.fa-1x {
|
|
||||||
font-size: 1em; }
|
|
||||||
|
|
||||||
.fa-2x {
|
|
||||||
font-size: 2em; }
|
|
||||||
|
|
||||||
.fa-3x {
|
|
||||||
font-size: 3em; }
|
|
||||||
|
|
||||||
.fa-4x {
|
|
||||||
font-size: 4em; }
|
|
||||||
|
|
||||||
.fa-5x {
|
|
||||||
font-size: 5em; }
|
|
||||||
|
|
||||||
.fa-6x {
|
|
||||||
font-size: 6em; }
|
|
||||||
|
|
||||||
.fa-7x {
|
|
||||||
font-size: 7em; }
|
|
||||||
|
|
||||||
.fa-8x {
|
|
||||||
font-size: 8em; }
|
|
||||||
|
|
||||||
.fa-9x {
|
|
||||||
font-size: 9em; }
|
|
||||||
|
|
||||||
.fa-10x {
|
|
||||||
font-size: 10em; }
|
|
||||||
|
|
||||||
.fa-fw {
|
|
||||||
text-align: center;
|
|
||||||
width: 1.25em; }
|
|
||||||
|
|
||||||
.fa-ul {
|
|
||||||
list-style-type: none;
|
|
||||||
margin-left: 2.5em;
|
|
||||||
padding-left: 0; }
|
|
||||||
.fa-ul > li {
|
|
||||||
position: relative; }
|
|
||||||
|
|
||||||
.fa-li {
|
|
||||||
left: -2em;
|
|
||||||
position: absolute;
|
|
||||||
text-align: center;
|
|
||||||
width: 2em;
|
|
||||||
line-height: inherit; }
|
|
||||||
|
|
||||||
.fa-border {
|
|
||||||
border: solid 0.08em #eee;
|
|
||||||
border-radius: .1em;
|
|
||||||
padding: .2em .25em .15em; }
|
|
||||||
|
|
||||||
.fa-pull-left {
|
|
||||||
float: left; }
|
|
||||||
|
|
||||||
.fa-pull-right {
|
|
||||||
float: right; }
|
|
||||||
|
|
||||||
.fa.fa-pull-left,
|
|
||||||
.fas.fa-pull-left,
|
|
||||||
.far.fa-pull-left,
|
|
||||||
.fal.fa-pull-left,
|
|
||||||
.fab.fa-pull-left {
|
|
||||||
margin-right: .3em; }
|
|
||||||
|
|
||||||
.fa.fa-pull-right,
|
|
||||||
.fas.fa-pull-right,
|
|
||||||
.far.fa-pull-right,
|
|
||||||
.fal.fa-pull-right,
|
|
||||||
.fab.fa-pull-right {
|
|
||||||
margin-left: .3em; }
|
|
||||||
|
|
||||||
.fa-spin {
|
|
||||||
-webkit-animation: fa-spin 2s infinite linear;
|
|
||||||
animation: fa-spin 2s infinite linear; }
|
|
||||||
|
|
||||||
.fa-pulse {
|
|
||||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
|
||||||
animation: fa-spin 1s infinite steps(8); }
|
|
||||||
|
|
||||||
@-webkit-keyframes fa-spin {
|
|
||||||
0% {
|
|
||||||
-webkit-transform: rotate(0deg);
|
|
||||||
transform: rotate(0deg); }
|
|
||||||
100% {
|
|
||||||
-webkit-transform: rotate(360deg);
|
|
||||||
transform: rotate(360deg); } }
|
|
||||||
|
|
||||||
@keyframes fa-spin {
|
|
||||||
0% {
|
|
||||||
-webkit-transform: rotate(0deg);
|
|
||||||
transform: rotate(0deg); }
|
|
||||||
100% {
|
|
||||||
-webkit-transform: rotate(360deg);
|
|
||||||
transform: rotate(360deg); } }
|
|
||||||
|
|
||||||
.fa-rotate-90 {
|
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
|
||||||
-webkit-transform: rotate(90deg);
|
|
||||||
transform: rotate(90deg); }
|
|
||||||
|
|
||||||
.fa-rotate-180 {
|
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
|
||||||
-webkit-transform: rotate(180deg);
|
|
||||||
transform: rotate(180deg); }
|
|
||||||
|
|
||||||
.fa-rotate-270 {
|
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
|
||||||
-webkit-transform: rotate(270deg);
|
|
||||||
transform: rotate(270deg); }
|
|
||||||
|
|
||||||
.fa-flip-horizontal {
|
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
|
||||||
-webkit-transform: scale(-1, 1);
|
|
||||||
transform: scale(-1, 1); }
|
|
||||||
|
|
||||||
.fa-flip-vertical {
|
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
|
||||||
-webkit-transform: scale(1, -1);
|
|
||||||
transform: scale(1, -1); }
|
|
||||||
|
|
||||||
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
|
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
|
||||||
-webkit-transform: scale(-1, -1);
|
|
||||||
transform: scale(-1, -1); }
|
|
||||||
|
|
||||||
:root .fa-rotate-90,
|
|
||||||
:root .fa-rotate-180,
|
|
||||||
:root .fa-rotate-270,
|
|
||||||
:root .fa-flip-horizontal,
|
|
||||||
:root .fa-flip-vertical,
|
|
||||||
:root .fa-flip-both {
|
|
||||||
-webkit-filter: none;
|
|
||||||
filter: none; }
|
|
||||||
|
|
||||||
.fa-stack {
|
|
||||||
display: inline-block;
|
|
||||||
height: 2em;
|
|
||||||
position: relative;
|
|
||||||
width: 2.5em; }
|
|
||||||
|
|
||||||
.fa-stack-1x,
|
|
||||||
.fa-stack-2x {
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
margin: auto;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 0; }
|
|
||||||
|
|
||||||
.svg-inline--fa.fa-stack-1x {
|
|
||||||
height: 1em;
|
|
||||||
width: 1.25em; }
|
|
||||||
|
|
||||||
.svg-inline--fa.fa-stack-2x {
|
|
||||||
height: 2em;
|
|
||||||
width: 2.5em; }
|
|
||||||
|
|
||||||
.fa-inverse {
|
|
||||||
color: #fff; }
|
|
||||||
|
|
||||||
.sr-only {
|
|
||||||
border: 0;
|
|
||||||
clip: rect(0, 0, 0, 0);
|
|
||||||
height: 1px;
|
|
||||||
margin: -1px;
|
|
||||||
overflow: hidden;
|
|
||||||
padding: 0;
|
|
||||||
position: absolute;
|
|
||||||
width: 1px; }
|
|
||||||
|
|
||||||
.sr-only-focusable:active, .sr-only-focusable:focus {
|
|
||||||
clip: auto;
|
|
||||||
height: auto;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
position: static;
|
|
||||||
width: auto; }
|
|
||||||
|
|
||||||
.svg-inline--fa .fa-primary {
|
|
||||||
fill: var(--fa-primary-color, currentColor);
|
|
||||||
opacity: 1;
|
|
||||||
opacity: var(--fa-primary-opacity, 1); }
|
|
||||||
|
|
||||||
.svg-inline--fa .fa-secondary {
|
|
||||||
fill: var(--fa-secondary-color, currentColor);
|
|
||||||
opacity: 0.4;
|
|
||||||
opacity: var(--fa-secondary-opacity, 0.4); }
|
|
||||||
|
|
||||||
.svg-inline--fa.fa-swap-opacity .fa-primary {
|
|
||||||
opacity: 0.4;
|
|
||||||
opacity: var(--fa-secondary-opacity, 0.4); }
|
|
||||||
|
|
||||||
.svg-inline--fa.fa-swap-opacity .fa-secondary {
|
|
||||||
opacity: 1;
|
|
||||||
opacity: var(--fa-primary-opacity, 1); }
|
|
||||||
|
|
||||||
.svg-inline--fa mask .fa-primary,
|
|
||||||
.svg-inline--fa mask .fa-secondary {
|
|
||||||
fill: black; }
|
|
||||||
|
|
||||||
.fad.fa-inverse {
|
|
||||||
color: #fff; }
|
|
5
fontawesome-5.15.2/css/svg-with-js.min.css
vendored
5
fontawesome-5.15.2/css/svg-with-js.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
5
fontawesome-5.15.2/css/v4-shims.min.css
vendored
5
fontawesome-5.15.2/css/v4-shims.min.css
vendored
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 730 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 2.5 MiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 2.3 MiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 2.1 MiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 1.7 MiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 73 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,62 +0,0 @@
|
|||||||
/* font converted using font-converter.net. thank you! */
|
|
||||||
|
|
||||||
.fm {
|
|
||||||
display: inline-block;
|
|
||||||
font-style: normal;
|
|
||||||
font-variant-ligatures: normal;
|
|
||||||
font-variant-caps: normal;
|
|
||||||
font-variant-numeric: normal;
|
|
||||||
font-variant-east-asian: normal;
|
|
||||||
font-weight: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
font-size: inherit;
|
|
||||||
line-height: 1;
|
|
||||||
font-family: FarmMaps;
|
|
||||||
text-rendering: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-farm:before {
|
|
||||||
content: "a";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-potato:before {
|
|
||||||
content: "b";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-trijntje:before {
|
|
||||||
content: "c";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-satellite:before {
|
|
||||||
content: "d";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-sensoterra:before {
|
|
||||||
content: "e";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-blight:before {
|
|
||||||
content: "f";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-agrodatacube:before {
|
|
||||||
content: "g";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-app-menu:before {
|
|
||||||
content: "h";
|
|
||||||
}
|
|
||||||
|
|
||||||
.fm-blight-holes:before {
|
|
||||||
content: "i";
|
|
||||||
}
|
|
||||||
|
|
||||||
hallo
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: "FarmMaps";
|
|
||||||
src: url("./FMIconFont.woff") format("woff"), /* Modern Browsers */
|
|
||||||
url("./FMIconFont.woff2") format("woff2"); /* Modern Browsers */
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
17142
package-lock.json
generated
17142
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
89
package.json
89
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "farmmaps-lib-app",
|
"name": "farmmaps-lib-app",
|
||||||
"version": "0.0.1",
|
"version": "0.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
@ -11,63 +11,42 @@
|
|||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "~10.2.4",
|
"@angular/animations": "~7.2.0",
|
||||||
"@angular/common": "~10.2.4",
|
"@angular/common": "~7.2.0",
|
||||||
"@angular/compiler": "~10.2.4",
|
"@angular/compiler": "~7.2.0",
|
||||||
"@angular/core": "~10.2.4",
|
"@angular/core": "~7.2.0",
|
||||||
"@angular/forms": "~10.2.4",
|
"@angular/forms": "~7.2.0",
|
||||||
"@angular/platform-browser": "~10.2.4",
|
"@angular/platform-browser": "~7.2.0",
|
||||||
"@angular/platform-browser-dynamic": "~10.2.4",
|
"@angular/platform-browser-dynamic": "~7.2.0",
|
||||||
"@angular/router": "~10.2.4",
|
"@angular/router": "~7.2.0",
|
||||||
"@farmmaps/common": ">=0.0.1-prerelease.575 <0.0.1",
|
"core-js": "^2.5.4",
|
||||||
"@farmmaps/common-map": ">=0.0.1-prerelease.575 <0.0.1",
|
"rxjs": "~6.3.3",
|
||||||
"@farmmaps/common-map3d": ">=0.0.1-prerelease.575 <0.0.1",
|
"tslib": "^1.9.0",
|
||||||
"@microsoft/signalr": "^3.1.3",
|
"zone.js": "~0.8.26"
|
||||||
"@ng-bootstrap/ng-bootstrap": "^7.0",
|
|
||||||
"@ngrx/effects": "^10.0",
|
|
||||||
"@ngrx/router-store": "^10.0",
|
|
||||||
"@ngrx/store": "^10.0",
|
|
||||||
"angular-oauth2-oidc": "^10.0.3",
|
|
||||||
"bootstrap": "^4.4.1",
|
|
||||||
"cesium": "^1.77.0",
|
|
||||||
"core-js": "^2.6.11",
|
|
||||||
"moment": "^2.27.0",
|
|
||||||
"ngrx-store-localstorage": "^10.0",
|
|
||||||
"ngx-avatar": "^4.0.0",
|
|
||||||
"ngx-clipboard": "^14.0.1",
|
|
||||||
"ngx-image-cropper": "^3.3.5",
|
|
||||||
"ngx-openlayers": "1.0.0-next.17",
|
|
||||||
"ngx-uploadx": "^3.5.1",
|
|
||||||
"ol": "6.5.0",
|
|
||||||
"ol-cesium": "^2.12.0",
|
|
||||||
"resumablejs": "^1.1.0",
|
|
||||||
"rxjs": "^6.5.4",
|
|
||||||
"tassign": "^1.0.0",
|
|
||||||
"tslib": "^2.0.0",
|
|
||||||
"zone.js": "~0.10.2"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-builders/custom-webpack": "~10.0.1",
|
"@angular-devkit/build-angular": "~0.13.0",
|
||||||
"@angular-devkit/build-angular": "^0.1002.1",
|
"@angular-devkit/build-ng-packagr": "~0.13.0",
|
||||||
"@angular-devkit/build-ng-packagr": "~0.1002.1",
|
"@angular/cli": "~7.3.8",
|
||||||
"@angular/cli": "^10.2.1",
|
"@angular/compiler-cli": "~7.2.0",
|
||||||
"@angular/compiler-cli": "~10.2.4",
|
"@angular/language-service": "~7.2.0",
|
||||||
"@angular/language-service": "~10.2.4",
|
"@types/node": "~8.9.4",
|
||||||
"@types/jasmine": "~2.8.8",
|
"@types/jasmine": "~2.8.8",
|
||||||
"@types/jasminewd2": "~2.0.3",
|
"@types/jasminewd2": "~2.0.3",
|
||||||
"@types/node": "^12.11.1",
|
"codelyzer": "~4.5.0",
|
||||||
"codelyzer": "^5.1.2",
|
"jasmine-core": "~2.99.1",
|
||||||
"jasmine-core": "~3.5.0",
|
"jasmine-spec-reporter": "~4.2.1",
|
||||||
"jasmine-spec-reporter": "~5.0.0",
|
"karma": "~4.0.0",
|
||||||
"karma": "~5.0.0",
|
"karma-chrome-launcher": "~2.2.0",
|
||||||
"karma-chrome-launcher": "~3.1.0",
|
"karma-coverage-istanbul-reporter": "~2.0.1",
|
||||||
"karma-coverage-istanbul-reporter": "~3.0.2",
|
"karma-jasmine": "~1.1.2",
|
||||||
"karma-jasmine": "~4.0.0",
|
"karma-jasmine-html-reporter": "^0.2.2",
|
||||||
"karma-jasmine-html-reporter": "^1.5.0",
|
"ng-packagr": "^4.2.0",
|
||||||
"ng-packagr": "^10.1.0",
|
"protractor": "~5.4.0",
|
||||||
"protractor": "~7.0.0",
|
"ts-node": "~7.0.0",
|
||||||
"ts-node": "^8.8.1",
|
"tsickle": ">=0.34.0",
|
||||||
"tslint": "~6.1.0",
|
"tslib": "^1.9.0",
|
||||||
"typescript": "~4.0.3"
|
"tslint": "~5.11.0",
|
||||||
|
"typescript": "~3.2.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
# CommonMap
|
|
||||||
|
|
||||||
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0.
|
|
||||||
|
|
||||||
## Code scaffolding
|
|
||||||
|
|
||||||
Run `ng generate component component-name --project common-map` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project common-map`.
|
|
||||||
> Note: Don't forget to add `--project common-map` or else it will be added to the default project in your `angular.json` file.
|
|
||||||
|
|
||||||
## Build
|
|
||||||
|
|
||||||
Run `ng build common-map` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
||||||
|
|
||||||
## Publishing
|
|
||||||
|
|
||||||
After building your library with `ng build common-map`, go to the dist folder `cd dist/common-map` and run `npm publish`.
|
|
||||||
|
|
||||||
## Running unit tests
|
|
||||||
|
|
||||||
Run `ng test common-map` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
||||||
|
|
||||||
## Further help
|
|
||||||
|
|
||||||
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
|
@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
|
|
||||||
"dest": "../../dist/common-map",
|
|
||||||
"lib": {
|
|
||||||
"entryFile": "src/public-api.ts"
|
|
||||||
},
|
|
||||||
"whitelistedNonPeerDependencies": [
|
|
||||||
"."
|
|
||||||
]
|
|
||||||
}
|
|
13
projects/common-map/package-lock.json
generated
13
projects/common-map/package-lock.json
generated
@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@farmmaps/common-map",
|
|
||||||
"version": "0.0.1",
|
|
||||||
"lockfileVersion": 1,
|
|
||||||
"requires": true,
|
|
||||||
"dependencies": {
|
|
||||||
"tslib": {
|
|
||||||
"version": "2.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz",
|
|
||||||
"integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ=="
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@farmmaps/common-map",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"publishConfig": {
|
|
||||||
"registry": "https://repository.akkerweb.nl/repository/npm-hosted/"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"tslib": "^2.0.0"
|
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@angular/core": "^10.2.4",
|
|
||||||
"ngrx-store-localstorage": "^10.0",
|
|
||||||
"@ngrx/effects": "^10.0",
|
|
||||||
"@ngrx/router-store": "^10.0",
|
|
||||||
"@ngrx/store": "^10.0",
|
|
||||||
"tassign": "^1.0.0",
|
|
||||||
"@farmmaps/common": ">=1.0.0.0",
|
|
||||||
"ngx-openlayers": "1.0.0-next.17",
|
|
||||||
"ol": "6.4.3"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,352 +0,0 @@
|
|||||||
import { Action } from '@ngrx/store';
|
|
||||||
|
|
||||||
import { IMapState } from '../models/map.state';
|
|
||||||
import { IItemLayer } from '../models/item.layer';
|
|
||||||
import { ILayervalue } from '../models/layer.value';
|
|
||||||
import { IQueryState } from '@farmmaps/common';
|
|
||||||
import { IItem } from '@farmmaps/common';
|
|
||||||
import { Feature,Style } from 'ol';
|
|
||||||
|
|
||||||
export const SETSTATE = '[Map] SetState';
|
|
||||||
export const SETMAPSTATE = '[Map] MapState';
|
|
||||||
export const SETVIEWEXTENT = '[Map] SetViewExtent';
|
|
||||||
export const INIT = '[Map] Init';
|
|
||||||
export const SETPARENT = '[Map] SetParent';
|
|
||||||
export const STARTSEARCH = '[Map] StartSearch';
|
|
||||||
export const STARTSEARCHSUCCESS = '[Map] StartSearchSuccess';
|
|
||||||
export const SELECTFEATURE = '[Map] SelectFeature';
|
|
||||||
export const SELECTITEM = '[Map] SelectItem';
|
|
||||||
export const SELECTITEMSUCCESS = '[Map] SelectItemSuccess';
|
|
||||||
export const SETSELECTEDITEMLAYER = '[Map] SetSelectedItemLayer';
|
|
||||||
export const SELECTTEMPORALITEMSSUCCESS = '[Map] SelectTemporalItemsSuccess';
|
|
||||||
export const NEXTTEMPORAL = '[Map] NextTemporal';
|
|
||||||
export const PREVIOUSTEMPORAL = '[Map] PreviousTemporal';
|
|
||||||
export const SELECTTEMPORAL = '[Map] SelectTemporal';
|
|
||||||
export const ADDFEATURESUCCESS = '[Map] AddFeatureSuccess';
|
|
||||||
export const UPDATEFEATURESUCCESS = '[Map] UpdateFeatureSuccess';
|
|
||||||
export const EXPANDSEARCH = '[Map] ExpandSearch';
|
|
||||||
export const COLLAPSESEARCH = '[Map] CollapseSearch';
|
|
||||||
export const SETEXTENT = '[Map] SetExtent';
|
|
||||||
export const SETQUERYSTATE = '[Map] SetQueryState';
|
|
||||||
export const SETTIMESPAN = '[Map] SetTimeSpan';
|
|
||||||
export const ADDLAYER = '[Map] AddLayer';
|
|
||||||
export const SETVISIBILITY = '[Map] SetVisibility';
|
|
||||||
export const SETOPACITY = '[Map] SetOpacity';
|
|
||||||
export const SETLAYERINDEX = '[Map] SetLayerIndex';
|
|
||||||
export const REMOVELAYER = '[Map] RemoveLayer';
|
|
||||||
export const CLEARLAYERS = '[Map] ClearLayers';
|
|
||||||
export const LOADBASELAYERS = '[Map] LoadLayers';
|
|
||||||
export const LOADBASELAYERSSUCCESS = '[Map] LoadLayersSuccess';
|
|
||||||
export const SELECTBASELAYER = '[Map] SelectBaseLayers';
|
|
||||||
export const SELECTOVERLAYLAYER = '[Map] SelectOverlayLayers';
|
|
||||||
export const ZOOMTOEXTENT = '[Map] ZoomToExtent';
|
|
||||||
export const DOQUERY = '[Map] DoQuery';
|
|
||||||
export const SETSTYLE = '[Map] SetStyle';
|
|
||||||
export const SHOWLAYERSWITCHER = '[Map] ShowLayerSwitcher';
|
|
||||||
export const CLEAR = '[Map] Clear';
|
|
||||||
export const SETREPLACEURL = '[Map] SetReplaceUrl';
|
|
||||||
export const SETFEATURES = '[Map] SetFeatures'
|
|
||||||
export const SETLAYERVALUESLOCATION = '[Map] SetLayerValuesLocation'
|
|
||||||
export const TOGGLELAYERVALUESENABLED = '[Map] ToggleLayerValuesEnabled'
|
|
||||||
export const GETLAYERVALUE = '[Map] GetLayerValue'
|
|
||||||
export const GETLAYERVALUESUCCESS = '[Map] GetLayerValueSuccess'
|
|
||||||
|
|
||||||
export class Clear implements Action {
|
|
||||||
readonly type = CLEAR;
|
|
||||||
constructor() {}
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetState implements Action {
|
|
||||||
readonly type = SETSTATE;
|
|
||||||
|
|
||||||
constructor(public mapState: IMapState,public queryState:IQueryState) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetMapState implements Action {
|
|
||||||
readonly type = SETMAPSTATE;
|
|
||||||
|
|
||||||
constructor(public mapState: IMapState) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetViewExtent implements Action {
|
|
||||||
readonly type = SETVIEWEXTENT;
|
|
||||||
|
|
||||||
constructor(public extent:number[]) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class Init implements Action {
|
|
||||||
readonly type = INIT;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetParent implements Action {
|
|
||||||
readonly type = SETPARENT;
|
|
||||||
|
|
||||||
constructor(public parentCode:string) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class StartSearch implements Action {
|
|
||||||
readonly type = STARTSEARCH;
|
|
||||||
|
|
||||||
constructor(public queryState: IQueryState) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class StartSearchSuccess implements Action {
|
|
||||||
readonly type = STARTSEARCHSUCCESS;
|
|
||||||
|
|
||||||
constructor(public features: Array<Feature>, public query:IQueryState) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SelectFeature implements Action {
|
|
||||||
readonly type = SELECTFEATURE;
|
|
||||||
|
|
||||||
constructor(public feature:Feature) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SelectItem implements Action {
|
|
||||||
readonly type = SELECTITEM;
|
|
||||||
|
|
||||||
constructor(public itemCode:string) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SelectItemSuccess implements Action {
|
|
||||||
readonly type = SELECTITEMSUCCESS;
|
|
||||||
|
|
||||||
constructor(public item: IItem, public parentItem: IItem) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SelectTemporalItemsSuccess implements Action {
|
|
||||||
readonly type = SELECTTEMPORALITEMSSUCCESS;
|
|
||||||
|
|
||||||
constructor(public temporalItems: IItem[]) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class NextTemporal implements Action {
|
|
||||||
readonly type = NEXTTEMPORAL;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class PreviousTemporal implements Action {
|
|
||||||
readonly type = PREVIOUSTEMPORAL;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SelectTemporal implements Action {
|
|
||||||
readonly type = SELECTTEMPORAL;
|
|
||||||
|
|
||||||
constructor(item:IItem) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class AddFeatureSuccess implements Action {
|
|
||||||
readonly type = ADDFEATURESUCCESS;
|
|
||||||
|
|
||||||
constructor(public feature: Feature) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class UpdateFeatureSuccess implements Action {
|
|
||||||
readonly type = UPDATEFEATURESUCCESS;
|
|
||||||
|
|
||||||
constructor(public feature: Feature) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ExpandSearch implements Action {
|
|
||||||
readonly type = EXPANDSEARCH;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class CollapseSearch implements Action {
|
|
||||||
readonly type = COLLAPSESEARCH;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetExtent implements Action {
|
|
||||||
readonly type = SETEXTENT;
|
|
||||||
|
|
||||||
constructor(public extent:number[]) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetQueryState implements Action {
|
|
||||||
readonly type = SETQUERYSTATE;
|
|
||||||
|
|
||||||
constructor(public queryState: IQueryState,public replaceUrl:boolean = true) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetTimeSpan implements Action {
|
|
||||||
readonly type = SETTIMESPAN;
|
|
||||||
|
|
||||||
constructor(public startDate: Date, public endDate: Date) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class AddLayer implements Action {
|
|
||||||
readonly type = ADDLAYER;
|
|
||||||
|
|
||||||
constructor(public item:IItem,public layerIndex=-1) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetSelectedItemLayer implements Action {
|
|
||||||
readonly type = SETSELECTEDITEMLAYER;
|
|
||||||
|
|
||||||
constructor(public item:IItem,public layerIndex=-1) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetVisibility implements Action {
|
|
||||||
readonly type = SETVISIBILITY;
|
|
||||||
|
|
||||||
constructor(public itemLayer:IItemLayer,public visibility:boolean) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetOpacity implements Action {
|
|
||||||
readonly type = SETOPACITY;
|
|
||||||
|
|
||||||
constructor(public itemLayer: IItemLayer, public opacity: number) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetLayerIndex implements Action {
|
|
||||||
readonly type = SETLAYERINDEX;
|
|
||||||
|
|
||||||
constructor(public layerIndex: number, public itemLayer: IItemLayer = null) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class RemoveLayer implements Action {
|
|
||||||
readonly type = REMOVELAYER;
|
|
||||||
|
|
||||||
constructor(public itemLayer: IItemLayer) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ClearLayers implements Action {
|
|
||||||
readonly type = CLEARLAYERS;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class LoadBaseLayers implements Action {
|
|
||||||
readonly type = LOADBASELAYERS;
|
|
||||||
|
|
||||||
constructor(public projection: string) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class LoadBaseLayersSuccess implements Action {
|
|
||||||
readonly type = LOADBASELAYERSSUCCESS;
|
|
||||||
|
|
||||||
constructor(public items: IItem[] ) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SelectBaseLayer implements Action {
|
|
||||||
readonly type = SELECTBASELAYER;
|
|
||||||
|
|
||||||
constructor(public itemLayer: IItemLayer) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SelectOverlayLayer implements Action {
|
|
||||||
readonly type = SELECTOVERLAYLAYER;
|
|
||||||
|
|
||||||
constructor(public itemLayer: IItemLayer) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ZoomToExtent implements Action {
|
|
||||||
readonly type = ZOOMTOEXTENT;
|
|
||||||
|
|
||||||
constructor(public itemLayer: IItemLayer) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class DoQuery implements Action {
|
|
||||||
readonly type = DOQUERY;
|
|
||||||
|
|
||||||
constructor(public query:IQueryState) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetStyle implements Action {
|
|
||||||
readonly type = SETSTYLE;
|
|
||||||
|
|
||||||
constructor(public itemType:string,public style: Style | (Feature)) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ShowLayerSwitcher implements Action {
|
|
||||||
readonly type = SHOWLAYERSWITCHER;
|
|
||||||
constructor(public show:boolean) {}
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetReplaceUrl implements Action {
|
|
||||||
readonly type = SETREPLACEURL;
|
|
||||||
constructor(public replaceUrl:boolean) {}
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetFeatures implements Action {
|
|
||||||
readonly type = SETFEATURES;
|
|
||||||
|
|
||||||
constructor(public features: Array<Feature>) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SetLayerValuesLocation implements Action {
|
|
||||||
readonly type = SETLAYERVALUESLOCATION;
|
|
||||||
|
|
||||||
constructor(public x:number, public y:number) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ToggleLayerValuesEnabled implements Action {
|
|
||||||
readonly type = TOGGLELAYERVALUESENABLED;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class GetLayerValue implements Action {
|
|
||||||
readonly type = GETLAYERVALUE;
|
|
||||||
|
|
||||||
constructor(public itemLayer:IItemLayer,public x:number,public y:number) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export class GetLayerValueSuccess implements Action {
|
|
||||||
readonly type = GETLAYERVALUESUCCESS;
|
|
||||||
|
|
||||||
constructor(public layervalue:ILayervalue) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
export type Actions = SetMapState
|
|
||||||
| Init
|
|
||||||
| Clear
|
|
||||||
| SetParent
|
|
||||||
| StartSearch
|
|
||||||
| StartSearchSuccess
|
|
||||||
| SelectFeature
|
|
||||||
| SelectItem
|
|
||||||
| SelectItemSuccess
|
|
||||||
| SelectTemporalItemsSuccess
|
|
||||||
| NextTemporal
|
|
||||||
| PreviousTemporal
|
|
||||||
| SelectTemporal
|
|
||||||
| AddFeatureSuccess
|
|
||||||
| UpdateFeatureSuccess
|
|
||||||
| ExpandSearch
|
|
||||||
| CollapseSearch
|
|
||||||
| SetExtent
|
|
||||||
| SetQueryState
|
|
||||||
| SetTimeSpan
|
|
||||||
| AddLayer
|
|
||||||
| RemoveLayer
|
|
||||||
| ClearLayers
|
|
||||||
| SetVisibility
|
|
||||||
| SetOpacity
|
|
||||||
| SetLayerIndex
|
|
||||||
| LoadBaseLayers
|
|
||||||
| LoadBaseLayersSuccess
|
|
||||||
| SelectBaseLayer
|
|
||||||
| SelectOverlayLayer
|
|
||||||
| ZoomToExtent
|
|
||||||
| SetState
|
|
||||||
| SetViewExtent
|
|
||||||
| DoQuery
|
|
||||||
| SetStyle
|
|
||||||
| ShowLayerSwitcher
|
|
||||||
| SetReplaceUrl
|
|
||||||
| SetFeatures
|
|
||||||
| SetSelectedItemLayer
|
|
||||||
| SetLayerValuesLocation
|
|
||||||
| ToggleLayerValuesEnabled
|
|
||||||
| GetLayerValueSuccess
|
|
||||||
| GetLayerValue;
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
|||||||
import { NgModule } from '@angular/core';
|
|
||||||
import { RouterModule } from '@angular/router';
|
|
||||||
import { MapComponent } from './components/map/map.component';
|
|
||||||
import { AuthGuard } from '@farmmaps/common';
|
|
||||||
|
|
||||||
const routes = [
|
|
||||||
{
|
|
||||||
path: '',
|
|
||||||
component: MapComponent
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: ':xCenter/:yCenter/:zoom/:rotation/:baseLayer',
|
|
||||||
component: MapComponent
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: ':xCenter/:yCenter/:zoom/:rotation/:baseLayer/:queryState',
|
|
||||||
component: MapComponent
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: ':queryState',
|
|
||||||
component: MapComponent
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
imports: [RouterModule.forChild(routes)],
|
|
||||||
exports: [RouterModule]
|
|
||||||
})
|
|
||||||
export class MapRoutingModule { }
|
|
@ -1,292 +0,0 @@
|
|||||||
import { NgModule ,ModuleWithProviders} from '@angular/core';
|
|
||||||
import { CommonModule } from '@angular/common';
|
|
||||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
||||||
|
|
||||||
//external modules
|
|
||||||
import { AngularOpenlayersModule } from 'ngx-openlayers';
|
|
||||||
import { StoreModule, ActionReducer, MetaReducer } from '@ngrx/store';
|
|
||||||
import { EffectsModule } from '@ngrx/effects';
|
|
||||||
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
||||||
|
|
||||||
//common modules
|
|
||||||
import { AppCommonModule } from '@farmmaps/common';
|
|
||||||
|
|
||||||
import { MODULE_NAME } from './module-name';
|
|
||||||
import * as mapReducers from './reducers/map.reducer';
|
|
||||||
import * as mapActions from './actions/map.actions';
|
|
||||||
import * as mapEffects from './effects/map.effects';
|
|
||||||
|
|
||||||
import { IMapState} from './models/map.state';
|
|
||||||
import { ISelectedFeatures } from './models/selected.features';
|
|
||||||
import { IItemLayer,ItemLayer,ITemporalItemLayer,TemporalItemLayer } from './models/item.layer';
|
|
||||||
import { IPeriodState } from './models/period.state';
|
|
||||||
|
|
||||||
// components
|
|
||||||
import { GpsLocation} from './components/aol/gps-location/gps-location.component';
|
|
||||||
import {FeatureListFeatureCropfieldComponent } from './components/feature-list-feature-cropfield/feature-list-feature-cropfield.component';
|
|
||||||
import { FeatureListFeatureCroppingschemeComponent} from './components/feature-list-feature-croppingscheme/feature-list-feature-croppingscheme.component';
|
|
||||||
import { ItemWidgetListComponent} from './components/item-widget-list/item-widget-list.component';
|
|
||||||
import { AbstractItemListItemComponent, ItemListItemComponent, AbstractItemWidgetComponent } from './components/item-list-item/item-list-item.component';
|
|
||||||
import { ItemListItemContainerComponent } from './components/item-list-item-container/item-list-item-container.component';
|
|
||||||
import { AbstractItemListComponent,ItemListComponent} from './components/item-list/item-list.component';
|
|
||||||
import { AbstractSelectedItemComponent, SelectedItemComponent } from './components/selected-item/selected-item.component';
|
|
||||||
import { SelectedItemCropfieldComponent } from './components/selected-item-cropfield/selected-item-cropfield.component';
|
|
||||||
import { SelectedItemGeotiffComponent } from './components/selected-item-geotiff/selected-item-geotiff.component';
|
|
||||||
import { SelectedItemTemporalComponent} from './components/selected-item-temporal/selected-item-temporal.component';
|
|
||||||
import {SelectedItemShapeComponent } from './components/selected-item-shape/selected-item-shape.component';
|
|
||||||
import { SelectedItemContainerComponent } from './components/selected-item-container/selected-item-container.component';
|
|
||||||
import { AbstractFeatureListFeatureComponent, FeatureListFeatureComponent } from './components/feature-list-feature/feature-list-feature.component';
|
|
||||||
import {FeatureListFeatureContainerComponent } from './components/feature-list-feature-container/feature-list-feature-container.component';
|
|
||||||
import { FeatureListCroppingschemeComponent } from './components/feature-list-croppingscheme/feature-list-croppingscheme.component';
|
|
||||||
import {FeatureListCropfieldComponent } from './components/feature-list-cropfield/feature-list-cropfield.component';
|
|
||||||
import {FeatureListContainerComponent } from './components/feature-list-container/feature-list-container.component';
|
|
||||||
import { WidgetHostDirective} from './components/widget-host/widget-host.directive';
|
|
||||||
import { FeatureListComponent,AbstractFeatureListComponent} from './components/feature-list/feature-list.component';
|
|
||||||
import { FileDropTargetComponent } from './components/aol/file-drop-target/file-drop-target.component';
|
|
||||||
import { ItemVectorSourceComponent } from './components/aol/item-vector-source/item-vector-source.component';
|
|
||||||
import { ItemLayersComponent } from './components/aol/item-layers/item-layers.component';
|
|
||||||
import { ZoomToExtentComponent } from './components/aol/zoom-to-extent/zoom-to-extent.component';
|
|
||||||
import { RotationResetComponent } from './components/aol/rotation-reset/rotation-reset.component';
|
|
||||||
import { LayerListComponent } from './components/aol/layer-list/layer-list.component';
|
|
||||||
import { MetaDataModalComponent } from './components/meta-data-modal/meta-data-modal.component';
|
|
||||||
import { SelectPeriodModalComponent } from './components/select-period-modal/select-period-modal.component';
|
|
||||||
import { MapComponent } from './components/map/map.component';
|
|
||||||
import { MapSearchComponent } from './components/map-search/map-search.component';
|
|
||||||
import { MapRoutingModule } from './common-map-routing.module';
|
|
||||||
import { LegendComponent } from './components/legend/legend.component';
|
|
||||||
import { LayerVectorImageComponent } from './components/aol/layer-vector-image/layer-vector-image.component';
|
|
||||||
import {FeatureIconService} from './services/feature-icon.service';
|
|
||||||
import { GeolocationService } from './services/geolocation.service';
|
|
||||||
import {DeviceOrientationService} from './services/device-orientation.service';
|
|
||||||
import { TemporalService} from './services/temporal.service';
|
|
||||||
import { WidgetStatusComponent } from './components/widget-status/widget-status.component';
|
|
||||||
import { ForChild} from './components/for-item/for-child.decorator';
|
|
||||||
import {ForItemType } from './components/for-item/for-itemtype.decorator';
|
|
||||||
import { ForSourceTask} from './components/for-item/for-sourcetask.decorator';
|
|
||||||
import { ForPackage } from './components/for-item/for-package.decorator';
|
|
||||||
import { PanToLocation} from './components/aol/pan-to-location/pan-to-location.component';
|
|
||||||
import {LayerSwitcher} from './components/layer-switcher/layer-switcher.component';
|
|
||||||
import {HistogramDetailsComponent} from './components/legend/histogram-details/histogram-details.component';
|
|
||||||
import {StatisticsDetailsComponent} from './components/legend/statistics-details/statistics-details.component';
|
|
||||||
import { ifZoomToShowDirective} from './components/if-zoom-to-show/if-zoom-to-show.directive';
|
|
||||||
import { ZoomToShowAlert} from './components/zoom-to-show-alert/zoom-to-show-alert.component';
|
|
||||||
import { LayerValuesComponent } from './components/aol/layer-values/layer-values.component';
|
|
||||||
import { GeometryThumbnailComponent } from './components/feature-thumbnail/feature-thumbnail.component';
|
|
||||||
|
|
||||||
export function LocalStorageSync(reducer: ActionReducer<any>): ActionReducer<any> {
|
|
||||||
const r = function(state, action) {
|
|
||||||
const r2 = reducer(state, action);
|
|
||||||
|
|
||||||
if(action.type == "@ngrx/store/update-reducers") {
|
|
||||||
let ms = window.localStorage.getItem(MODULE_NAME+"_mapState");
|
|
||||||
if(ms) {
|
|
||||||
r2["mapState"] = JSON.parse(ms);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(action.type == "[Map] MapState" || action.type == "[Map] SetState") {
|
|
||||||
window.localStorage.setItem(MODULE_NAME + "_mapState",JSON.stringify(r2["mapState"]));
|
|
||||||
}
|
|
||||||
|
|
||||||
return r2;
|
|
||||||
};
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
const metaReducers: Array<MetaReducer<any, any>> = [LocalStorageSync];
|
|
||||||
|
|
||||||
export {
|
|
||||||
mapEffects,
|
|
||||||
mapReducers,
|
|
||||||
mapActions,
|
|
||||||
ZoomToExtentComponent,
|
|
||||||
ItemVectorSourceComponent,
|
|
||||||
ItemLayersComponent,
|
|
||||||
FileDropTargetComponent,
|
|
||||||
MapComponent,
|
|
||||||
MetaDataModalComponent,
|
|
||||||
RotationResetComponent,
|
|
||||||
MapSearchComponent,
|
|
||||||
SelectPeriodModalComponent,
|
|
||||||
LayerListComponent,
|
|
||||||
LegendComponent,
|
|
||||||
LayerVectorImageComponent,
|
|
||||||
FeatureListComponent,
|
|
||||||
WidgetHostDirective,
|
|
||||||
FeatureListContainerComponent,
|
|
||||||
FeatureListCroppingschemeComponent,
|
|
||||||
FeatureListCropfieldComponent,
|
|
||||||
FeatureListFeatureContainerComponent,
|
|
||||||
FeatureListFeatureComponent,
|
|
||||||
FeatureListFeatureCroppingschemeComponent,
|
|
||||||
FeatureListFeatureCropfieldComponent,
|
|
||||||
SelectedItemContainerComponent,
|
|
||||||
SelectedItemComponent,
|
|
||||||
SelectedItemCropfieldComponent,
|
|
||||||
SelectedItemGeotiffComponent,
|
|
||||||
SelectedItemTemporalComponent,
|
|
||||||
SelectedItemShapeComponent,
|
|
||||||
ItemListItemComponent,
|
|
||||||
ItemListItemContainerComponent,
|
|
||||||
ItemListComponent,
|
|
||||||
ItemWidgetListComponent,
|
|
||||||
WidgetStatusComponent,
|
|
||||||
GpsLocation,
|
|
||||||
PanToLocation,
|
|
||||||
LayerSwitcher,
|
|
||||||
AbstractFeatureListComponent,
|
|
||||||
AbstractFeatureListFeatureComponent,
|
|
||||||
AbstractSelectedItemComponent,
|
|
||||||
AbstractItemWidgetComponent,
|
|
||||||
AbstractItemListItemComponent,
|
|
||||||
AbstractItemListComponent,
|
|
||||||
FeatureIconService,
|
|
||||||
GeolocationService,
|
|
||||||
DeviceOrientationService,
|
|
||||||
TemporalService,
|
|
||||||
IMapState,
|
|
||||||
ISelectedFeatures,
|
|
||||||
IItemLayer,
|
|
||||||
ItemLayer,
|
|
||||||
IPeriodState,
|
|
||||||
ForChild,
|
|
||||||
ForItemType,
|
|
||||||
ForSourceTask,
|
|
||||||
ForPackage ,
|
|
||||||
ITemporalItemLayer,
|
|
||||||
TemporalItemLayer,
|
|
||||||
ifZoomToShowDirective,
|
|
||||||
ZoomToShowAlert
|
|
||||||
}
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
imports: [
|
|
||||||
CommonModule,
|
|
||||||
AngularOpenlayersModule,
|
|
||||||
MapRoutingModule,
|
|
||||||
StoreModule.forFeature(MODULE_NAME, mapReducers.reducer,{metaReducers:metaReducers}),
|
|
||||||
EffectsModule.forFeature([mapEffects.MapEffects]),
|
|
||||||
NgbModule,
|
|
||||||
FormsModule,
|
|
||||||
ReactiveFormsModule,
|
|
||||||
AppCommonModule
|
|
||||||
],
|
|
||||||
declarations: [
|
|
||||||
ZoomToExtentComponent,
|
|
||||||
ItemVectorSourceComponent,
|
|
||||||
ItemLayersComponent,
|
|
||||||
FileDropTargetComponent,
|
|
||||||
MapComponent,
|
|
||||||
MetaDataModalComponent,
|
|
||||||
RotationResetComponent,
|
|
||||||
MapSearchComponent,
|
|
||||||
SelectPeriodModalComponent,
|
|
||||||
LayerListComponent,
|
|
||||||
LegendComponent,
|
|
||||||
LayerVectorImageComponent,
|
|
||||||
FeatureListComponent,
|
|
||||||
WidgetHostDirective,
|
|
||||||
FeatureListContainerComponent,
|
|
||||||
FeatureListCroppingschemeComponent,
|
|
||||||
FeatureListCropfieldComponent,
|
|
||||||
FeatureListFeatureContainerComponent,
|
|
||||||
FeatureListFeatureComponent,
|
|
||||||
FeatureListFeatureCroppingschemeComponent,
|
|
||||||
FeatureListFeatureCropfieldComponent,
|
|
||||||
SelectedItemContainerComponent,
|
|
||||||
SelectedItemComponent,
|
|
||||||
SelectedItemCropfieldComponent,
|
|
||||||
SelectedItemGeotiffComponent,
|
|
||||||
SelectedItemTemporalComponent,
|
|
||||||
SelectedItemShapeComponent,
|
|
||||||
ItemListItemComponent,
|
|
||||||
ItemListItemContainerComponent,
|
|
||||||
ItemListComponent,
|
|
||||||
ItemWidgetListComponent,
|
|
||||||
WidgetStatusComponent,
|
|
||||||
GpsLocation,
|
|
||||||
PanToLocation,
|
|
||||||
LayerSwitcher,
|
|
||||||
HistogramDetailsComponent,
|
|
||||||
StatisticsDetailsComponent,
|
|
||||||
ifZoomToShowDirective,
|
|
||||||
ZoomToShowAlert,
|
|
||||||
LayerValuesComponent,
|
|
||||||
GeometryThumbnailComponent
|
|
||||||
],
|
|
||||||
entryComponents: [
|
|
||||||
FeatureListComponent,
|
|
||||||
FeatureListCroppingschemeComponent,
|
|
||||||
FeatureListCropfieldComponent,
|
|
||||||
FeatureListFeatureComponent,
|
|
||||||
FeatureListFeatureCroppingschemeComponent,
|
|
||||||
FeatureListFeatureCropfieldComponent,
|
|
||||||
SelectedItemComponent,
|
|
||||||
SelectedItemCropfieldComponent,
|
|
||||||
SelectedItemGeotiffComponent,
|
|
||||||
SelectedItemTemporalComponent,
|
|
||||||
SelectedItemShapeComponent,
|
|
||||||
ItemListComponent,
|
|
||||||
ItemListItemComponent,
|
|
||||||
],
|
|
||||||
exports: [
|
|
||||||
ItemVectorSourceComponent,
|
|
||||||
ItemLayersComponent,
|
|
||||||
FileDropTargetComponent,
|
|
||||||
MetaDataModalComponent,
|
|
||||||
MapComponent,
|
|
||||||
GpsLocation,
|
|
||||||
PanToLocation,
|
|
||||||
LayerSwitcher,
|
|
||||||
FeatureListFeatureComponent,
|
|
||||||
FeatureListFeatureCropfieldComponent,
|
|
||||||
FeatureListFeatureCroppingschemeComponent,
|
|
||||||
SelectedItemContainerComponent,
|
|
||||||
SelectedItemComponent,
|
|
||||||
SelectedItemCropfieldComponent,
|
|
||||||
SelectedItemGeotiffComponent,
|
|
||||||
SelectedItemTemporalComponent,
|
|
||||||
SelectedItemShapeComponent,
|
|
||||||
ItemListItemComponent,
|
|
||||||
ItemListItemContainerComponent,
|
|
||||||
ItemListComponent,
|
|
||||||
ItemWidgetListComponent,
|
|
||||||
WidgetStatusComponent,
|
|
||||||
RotationResetComponent,
|
|
||||||
MapSearchComponent,
|
|
||||||
SelectPeriodModalComponent,
|
|
||||||
LayerListComponent,
|
|
||||||
LegendComponent,
|
|
||||||
LayerVectorImageComponent,
|
|
||||||
FeatureListComponent,
|
|
||||||
WidgetHostDirective,
|
|
||||||
FeatureListContainerComponent,
|
|
||||||
FeatureListCroppingschemeComponent,
|
|
||||||
FeatureListCropfieldComponent,
|
|
||||||
FeatureListFeatureContainerComponent,
|
|
||||||
ZoomToExtentComponent,
|
|
||||||
ifZoomToShowDirective,
|
|
||||||
ZoomToShowAlert
|
|
||||||
],
|
|
||||||
providers: [
|
|
||||||
FeatureIconService,
|
|
||||||
GeolocationService,
|
|
||||||
DeviceOrientationService,
|
|
||||||
TemporalService,
|
|
||||||
{ provide: AbstractFeatureListComponent, useClass: FeatureListCroppingschemeComponent, multi: true },
|
|
||||||
{ provide: AbstractFeatureListComponent, useClass: FeatureListCropfieldComponent, multi: true },
|
|
||||||
{ provide: AbstractFeatureListFeatureComponent, useClass: FeatureListFeatureComponent, multi: true },
|
|
||||||
{ provide: AbstractFeatureListFeatureComponent, useClass: FeatureListFeatureCroppingschemeComponent, multi: true },
|
|
||||||
{ provide: AbstractFeatureListFeatureComponent, useClass: FeatureListFeatureCropfieldComponent, multi: true },
|
|
||||||
{ provide: AbstractSelectedItemComponent, useClass: SelectedItemComponent, multi: true },
|
|
||||||
{ provide: AbstractSelectedItemComponent, useClass: SelectedItemCropfieldComponent, multi: true },
|
|
||||||
{ provide: AbstractSelectedItemComponent, useClass: SelectedItemGeotiffComponent, multi: true },
|
|
||||||
{ provide: AbstractSelectedItemComponent, useClass: SelectedItemTemporalComponent, multi: true },
|
|
||||||
{ provide: AbstractSelectedItemComponent, useClass: SelectedItemShapeComponent, multi: true },
|
|
||||||
{ provide: AbstractItemListItemComponent, useClass: ItemListItemComponent, multi: true },
|
|
||||||
{ provide: AbstractItemListComponent, useClass: ItemListComponent, multi: true }
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
export class AppCommonMapModule {
|
|
||||||
}
|
|
@ -1,73 +0,0 @@
|
|||||||
import { Component, Input, OnDestroy, OnInit, EventEmitter, Output, Inject } from '@angular/core';
|
|
||||||
import { MapComponent } from 'ngx-openlayers';
|
|
||||||
|
|
||||||
import * as proj from 'ol/proj';
|
|
||||||
import {Point,Geometry} from 'ol/geom';
|
|
||||||
import { GeoJSON } from 'ol/format';
|
|
||||||
import { Feature } from 'ol';
|
|
||||||
|
|
||||||
export interface IDroppedFile {
|
|
||||||
files: any,
|
|
||||||
event: any,
|
|
||||||
geometry: any
|
|
||||||
parentCode: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-file-drop-target',
|
|
||||||
template: ''
|
|
||||||
})
|
|
||||||
export class FileDropTargetComponent implements OnInit, OnDestroy {
|
|
||||||
element: Element;
|
|
||||||
@Output() onFileDropped = new EventEmitter<IDroppedFile>();
|
|
||||||
@Input() parentCode: string;
|
|
||||||
@Input() features: Array<Feature>;
|
|
||||||
|
|
||||||
constructor(private map: MapComponent) {
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.element = this.map.instance.getViewport();
|
|
||||||
let other = this;
|
|
||||||
this.element.addEventListener('drop', this.onDrop, false);
|
|
||||||
this.element.addEventListener('dragover', this.preventDefault, false);
|
|
||||||
this.element.addEventListener('dragenter', this.preventDefault, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
private onDrop = (event: DragEvent) => {
|
|
||||||
this.stopEvent(event);
|
|
||||||
let geojsonFormat = new GeoJSON();
|
|
||||||
var parentCode = this.parentCode;
|
|
||||||
var coordinate = this.map.instance.getEventCoordinate(event);
|
|
||||||
//coordinate = proj.transform(coordinate, this.map.instance.getView().getProjection(), 'EPSG:4326');
|
|
||||||
var geometry:Geometry = new Point(coordinate);
|
|
||||||
var hitFeatures = this.map.instance.getFeaturesAtPixel([event.pageX, event.pageY]);
|
|
||||||
var hitFeature = hitFeatures && hitFeatures.length > 0 ? hitFeatures[0] : null;
|
|
||||||
if (hitFeature) {
|
|
||||||
if (hitFeature.get("code")) {
|
|
||||||
parentCode = hitFeature.get("code");
|
|
||||||
}
|
|
||||||
geometry = geojsonFormat.readGeometry(geojsonFormat.writeGeometry(geometry)); // create copy instead of reference
|
|
||||||
}
|
|
||||||
var projectedGeometry = geometry.transform(this.map.instance.getView().getProjection(), 'EPSG:4326');
|
|
||||||
|
|
||||||
if (event.dataTransfer && event.dataTransfer.files) {
|
|
||||||
this.onFileDropped.emit({ files: event.dataTransfer.files, event: event, geometry: JSON.parse(geojsonFormat.writeGeometry(projectedGeometry)),parentCode:parentCode})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private preventDefault(event) {
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
private stopEvent(event) {
|
|
||||||
event.stopPropagation();
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnDestroy() {
|
|
||||||
this.element.removeEventListener('drop', this.onDrop);
|
|
||||||
this.element.removeEventListener('dragover', this.preventDefault);
|
|
||||||
this.element.removeEventListener('dragenter', this.preventDefault);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
<div class="gps-location">
|
|
||||||
<svg #location height="1000" width="1000">
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="grad1" x1="0%" y1="100%" x2="0%" y2="0%">
|
|
||||||
<stop offset="0%" class="stop1" />
|
|
||||||
<stop offset="100%" class="stop2" />
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
<circle class="tolerance hidden" [ngClass]="{'hidden':!showTolerance}" cx="500" cy="500" stroke="none" [attr.r]="locTolerancePixels" />
|
|
||||||
<path class="heading hidden" [ngClass]="{'hidden': !showHeading }" stroke="none" [attr.d]="path" fill="url(#grad1)" [attr.transform]="rotate"></path>
|
|
||||||
<circle class="border" cx="500" cy="500" r="7" stroke="none" />
|
|
||||||
<circle class="center" cx="500" cy="500" r="6" stroke="none" />
|
|
||||||
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
@ -1,43 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
|
|
||||||
.gps-location {
|
|
||||||
display:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.center, .tolerance, .border {
|
|
||||||
stroke-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.heading.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tolerance {
|
|
||||||
fill: $primary;
|
|
||||||
fill-opacity:0.4;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tolerance.hidden {
|
|
||||||
display: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
fill: $white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.center {
|
|
||||||
fill: $primary;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stop1 {
|
|
||||||
stop-color: $primary;
|
|
||||||
stop-opacity:1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stop2 {
|
|
||||||
stop-color:$primary;
|
|
||||||
stop-opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,75 +0,0 @@
|
|||||||
import { Component, OnInit, Input, ViewChild, ElementRef, OnChanges, SimpleChanges ,Host} from '@angular/core';
|
|
||||||
import { MapComponent } from 'ngx-openlayers';
|
|
||||||
import Overlay from 'ol/Overlay';
|
|
||||||
import { fromLonLat, toLonLat } from 'ol/proj';
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-gps-location',
|
|
||||||
templateUrl: './gps-location.component.html',
|
|
||||||
styleUrls: ['./gps-location.component.scss']
|
|
||||||
})
|
|
||||||
export class GpsLocation implements OnInit,OnChanges{
|
|
||||||
|
|
||||||
@Input() enable:boolean;
|
|
||||||
public instance: Overlay;
|
|
||||||
@Input() position: Position;
|
|
||||||
@Input() location: number[]=[0,0];
|
|
||||||
@Input() locationTolerance: number = 0;
|
|
||||||
@Input() showHeading: boolean = false;
|
|
||||||
@Input() showTolerance: boolean = false;
|
|
||||||
@Input() heading: number = 0;
|
|
||||||
@Input() headingTolerance: number = 0;
|
|
||||||
public locTolerancePixels: number = 0;
|
|
||||||
public path: string = "";
|
|
||||||
public rotate: string = "";
|
|
||||||
private resolution: number = 0;
|
|
||||||
initialized:boolean = false;
|
|
||||||
@ViewChild('location', { static: true }) locationElement: ElementRef;
|
|
||||||
|
|
||||||
constructor(private map: MapComponent) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
recalcLocationTolerance() {
|
|
||||||
this.locTolerancePixels = this.resolution >0? this.locationTolerance / this.resolution:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.instance = new Overlay({
|
|
||||||
stopEvent:false,
|
|
||||||
positioning: 'center-center',
|
|
||||||
position: fromLonLat( this.location),
|
|
||||||
element: this.locationElement.nativeElement
|
|
||||||
});
|
|
||||||
var x = Math.tan(this.headingTolerance * Math.PI / 180)*40;
|
|
||||||
var y = Math.cos(this.headingTolerance * Math.PI / 180) * 40;
|
|
||||||
var y1 = Math.round(500 - y);
|
|
||||||
var x1 = Math.round(500 - x);
|
|
||||||
var y2 = Math.round(y1);
|
|
||||||
var x2 = Math.round(500 + x);
|
|
||||||
this.path = "M " + x2 + " " + y2 + " A 45 45,0,0,0, " + x1 + " " + y1 + " L 493 500 L 507 500 Z";
|
|
||||||
this.rotate = "rotate(" + Math.round(this.heading) + " 500 500)";
|
|
||||||
this.locTolerancePixels = this.locationTolerance;
|
|
||||||
this.map.instance.addOverlay(this.instance);
|
|
||||||
this.map.instance.getView().on('change:resolution', (evt) => {
|
|
||||||
this.resolution = evt.target.get('resolution');
|
|
||||||
this.recalcLocationTolerance();
|
|
||||||
});
|
|
||||||
this.initialized = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
if (changes.position && this.instance) {
|
|
||||||
var p = changes.position.currentValue as Position;
|
|
||||||
if(p && this.initialized) {
|
|
||||||
this.instance.setPosition(fromLonLat([p.coords.longitude, p.coords.latitude]));
|
|
||||||
this.locationTolerance = p.coords.accuracy;
|
|
||||||
this.recalcLocationTolerance();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(changes.heading && this.instance) {
|
|
||||||
this.rotate = "rotate(" + Math.round(changes.heading.currentValue) + " 500 500)";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because one or more lines are too long
@ -1,479 +0,0 @@
|
|||||||
import { Component, Host, Input, Output, EventEmitter,OnDestroy, OnInit, OnChanges, SimpleChanges, forwardRef } from '@angular/core';
|
|
||||||
import { LayerGroupComponent, MapComponent } from 'ngx-openlayers';
|
|
||||||
import { ItemService,IItem,AppConfig } from '@farmmaps/common';
|
|
||||||
import { IItemLayer, ITemporalItemLayer} from '../../../models/item.layer';
|
|
||||||
import { ILayerData} from '../../../models/layer.data';
|
|
||||||
import { IRenderoutputTiles,IRenderoutputImage,IGradientstop,ILayer,IHistogram,IColor} from '../../../models/color.map';
|
|
||||||
import {Extent} from 'ol/extent';
|
|
||||||
import Projection from 'ol/proj/Projection';
|
|
||||||
import * as proj from 'ol/proj';
|
|
||||||
import * as loadingstrategy from 'ol/loadingstrategy';
|
|
||||||
import * as style from 'ol/style';
|
|
||||||
import {Tile,Layer,Image} from 'ol/layer';
|
|
||||||
import {XYZ,ImageStatic,OSM,BingMaps,TileWMS,TileArcGISRest,TileJSON} from 'ol/source';
|
|
||||||
import {Vector as VectorSource} from 'ol/source';
|
|
||||||
import { Vector as VectorLayer } from 'ol/layer';
|
|
||||||
import VectorTileSource from 'ol/source/VectorTile';
|
|
||||||
import VectorTileLayer from 'ol/layer/VectorTile';
|
|
||||||
import {GeoJSON,MVT} from 'ol/format';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-item-layers',
|
|
||||||
template: `<ng-content></ng-content>`,
|
|
||||||
providers: [
|
|
||||||
{ provide: LayerGroupComponent, useExisting: forwardRef(() => ItemLayersComponent) }
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
export class ItemLayersComponent extends LayerGroupComponent implements OnChanges, OnInit,OnDestroy {
|
|
||||||
@Input() itemLayers: IItemLayer[];
|
|
||||||
@Input() itemLayer: IItemLayer;
|
|
||||||
@Output() onFeatureSelected: EventEmitter<any> = new EventEmitter<any>();
|
|
||||||
@Output() onFeatureHover: EventEmitter<any> = new EventEmitter<any>();
|
|
||||||
private _apiEndPoint: string;
|
|
||||||
private initialized:boolean = false;
|
|
||||||
private mapEventHandlerInstalled = false;
|
|
||||||
private selectedFeatures = {};
|
|
||||||
private selectionLayer:Layer = null;
|
|
||||||
|
|
||||||
constructor(private itemService: ItemService, private map: MapComponent, public appConfig: AppConfig) {
|
|
||||||
super(map);
|
|
||||||
this._apiEndPoint = appConfig.getConfig("apiEndPoint");
|
|
||||||
}
|
|
||||||
|
|
||||||
private styleCache = {}
|
|
||||||
|
|
||||||
componentToHex(c) {
|
|
||||||
var hex = c.toString(16);
|
|
||||||
return hex.length == 1 ? "0" + hex : hex;
|
|
||||||
}
|
|
||||||
|
|
||||||
rgbaToHex(r, g, b,a) {
|
|
||||||
return "#" + this.componentToHex(r) + this.componentToHex(g) + this.componentToHex(b) + this.componentToHex(a);
|
|
||||||
}
|
|
||||||
|
|
||||||
getColorFromGradient(layer: ILayer, value: number): IColor {
|
|
||||||
var gradient: IGradientstop[] = layer.renderer.colorMap.gradient;
|
|
||||||
var histogram: IHistogram = layer.renderer.band.histogram;
|
|
||||||
var index = (value - histogram.min) / histogram.max;
|
|
||||||
var min = gradient[0];
|
|
||||||
var max = gradient[gradient.length - 1];
|
|
||||||
for (var n = 0; n < gradient.length; n++) {
|
|
||||||
var s = gradient[n];
|
|
||||||
if (s.relativestop <= index && min.relativestop < s.relativestop && n < gradient.length - 1) min = s;
|
|
||||||
if (s.relativestop >= index && max.relativestop > s.relativestop && n > 0) max = s;
|
|
||||||
}
|
|
||||||
var i = index - min.relativestop;
|
|
||||||
var size = max.relativestop - min.relativestop;
|
|
||||||
var alpha = Math.round(min.color.alpha + ((max.color.alpha - min.color.alpha) * i / size));
|
|
||||||
var red = Math.round(min.color.red + ((max.color.red - min.color.red) * i / size));
|
|
||||||
var green = Math.round(min.color.green + ((max.color.green - min.color.green) * i / size));
|
|
||||||
var blue = Math.round(min.color.blue + ((max.color.blue - min.color.blue) * i / size));
|
|
||||||
|
|
||||||
return { alpha: alpha, red: red, green: green, blue: blue };
|
|
||||||
}
|
|
||||||
|
|
||||||
getColorForValue(layer: ILayer, value: number): IColor {
|
|
||||||
var color: IColor = { alpha:0,red:0,green:0,blue:0};
|
|
||||||
if(layer.renderer.colorMap.entries.length>0) {
|
|
||||||
color=layer.renderer.colorMap.noValue;
|
|
||||||
}
|
|
||||||
layer.renderer.colorMap.entries.forEach((entry) => {
|
|
||||||
if(entry.value==value) {
|
|
||||||
color =entry.color;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return color;
|
|
||||||
}
|
|
||||||
|
|
||||||
getColor(item: IItem, layer: ILayer, feature): style.Style {
|
|
||||||
var value = layer.indexKey ? feature.get(layer.indexKey) : feature.get(layer.name);
|
|
||||||
var key = item.code + "_" + value;
|
|
||||||
if (!this.styleCache[key]) {
|
|
||||||
var color: IColor;
|
|
||||||
if(layer.renderer.colorMap.colormapType == "manual") {
|
|
||||||
color = this.getColorForValue(layer, value);
|
|
||||||
} else {
|
|
||||||
color = this.getColorFromGradient(layer, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.styleCache[key] = new style.Style(
|
|
||||||
{
|
|
||||||
image: new style.Circle({
|
|
||||||
fill: new style.Fill({
|
|
||||||
color: this.rgbaToHex(color.red, color.green, color.blue, color.alpha)
|
|
||||||
}),
|
|
||||||
radius: 3
|
|
||||||
}),
|
|
||||||
fill: new style.Fill({
|
|
||||||
color: this.rgbaToHex(color.red, color.green, color.blue, color.alpha)
|
|
||||||
}),
|
|
||||||
stroke: new style.Stroke({
|
|
||||||
color: this.rgbaToHex(color.red, color.green, color.blue, 255),
|
|
||||||
width: 1.25
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return this.styleCache[key];
|
|
||||||
}
|
|
||||||
|
|
||||||
createGeotiffLayer(item:IItem,itemLayer:IItemLayer):Layer {
|
|
||||||
var layerIndex = -1;
|
|
||||||
var layer: Layer = null;
|
|
||||||
layerIndex = itemLayer.layerIndex != -1 ? itemLayer.layerIndex : item.data.layers[0].index;
|
|
||||||
let source = new XYZ({ maxZoom: 19, minZoom: 1, url: `${this._apiEndPoint}/api/v1/items/${item.code}/tiles/${layerIndex}/{z}/{x}/{y}.png?v=${Date.parse(item.updated)}` });
|
|
||||||
layer = new Tile({ source: source });
|
|
||||||
var data = item.data;
|
|
||||||
var l = (data && data.layers && data.layers.length > 0) ? data.layers[0] : null;
|
|
||||||
if (l && l.rendering && l.rendering.renderoutputType == "Tiles") {
|
|
||||||
var rt = l.rendering as IRenderoutputTiles;
|
|
||||||
let source = new XYZ({crossOrigin: 'use-credentials', maxZoom: rt.maxzoom, minZoom: rt.minzoom, url: `${this._apiEndPoint}/api/v1/items/${item.code}/tiles/${layerIndex}/{z}/{x}/{y}.png?v=${Date.parse(item.updated)}` });
|
|
||||||
layer = new Tile({ source: source });
|
|
||||||
}
|
|
||||||
if (l && l.rendering && l.rendering.renderoutputType == "Image") {
|
|
||||||
var ri = l.rendering as IRenderoutputImage;
|
|
||||||
// convert to EPSG:4326 asworkaround for cesium
|
|
||||||
var projectedExtent = proj.transformExtent( ri.extent, 'EPSG:3857','EPSG:4326');
|
|
||||||
let source = new ImageStatic({ imageExtent:projectedExtent,projection:'EPSG:4326', crossOrigin: 'use-credentials', url: `${this._apiEndPoint}/api/v1/items/${item.code}/mapimage/${layerIndex}?v=${Date.parse(item.updated)}` });
|
|
||||||
layer = new Image({ source: source });
|
|
||||||
}
|
|
||||||
return layer;
|
|
||||||
}
|
|
||||||
|
|
||||||
createShapeLayer(item:IItem,itemLayer:IItemLayer):Layer {
|
|
||||||
var layerIndex = -1;
|
|
||||||
var layer: Layer = null;
|
|
||||||
layerIndex = itemLayer.layerIndex != -1 ? itemLayer.layerIndex : item.data.layers[0].index;
|
|
||||||
var data = item.data;
|
|
||||||
var l:ILayer = (data && data.layers && data.layers.length > 0) ? data.layers[layerIndex] : null;
|
|
||||||
if (l && l.rendering && l.rendering.renderoutputType == "VectorTiles") {
|
|
||||||
var rt = l.rendering as IRenderoutputTiles;
|
|
||||||
layer = new VectorTileLayer({
|
|
||||||
declutter: true,
|
|
||||||
source: new VectorTileSource({
|
|
||||||
maxZoom: rt.maxzoom,
|
|
||||||
minZoom: rt.minzoom,
|
|
||||||
format: new MVT(),
|
|
||||||
url: `${this._apiEndPoint}/api/v1/items/${item.code}/vectortiles/{z}/{x}/{y}.pbf?v=${Date.parse(item.updated)}`
|
|
||||||
}),
|
|
||||||
style: (feature) => {
|
|
||||||
return this.getColor(item,l, feature);
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else if (l && l.rendering && l.rendering.renderoutputType == "Tiles") {
|
|
||||||
var rt = l.rendering as IRenderoutputTiles;
|
|
||||||
layer = new Tile({
|
|
||||||
source: new XYZ({
|
|
||||||
maxZoom: rt.maxzoom,
|
|
||||||
minZoom: rt.minzoom,
|
|
||||||
url: `${this._apiEndPoint}/api/v1/items/${item.code}/vectortiles/image_tiles/${layerIndex}/{z}/{x}/{y}.png?v=${Date.parse(item.updated)}`
|
|
||||||
})
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
let __this = this;
|
|
||||||
let format = new GeoJSON();
|
|
||||||
let source = new VectorSource({
|
|
||||||
strategy: loadingstrategy.bbox,
|
|
||||||
loader: function (extent: Extent, resolution: number, projection: Projection) {
|
|
||||||
var source = this as VectorSource;
|
|
||||||
__this.itemService.getItemFeatures(item.code, extent, projection.getCode(), layerIndex).subscribe(function (data) {
|
|
||||||
var features = format.readFeatures(data);
|
|
||||||
for (let f of features) {
|
|
||||||
if (f.get("code")) {
|
|
||||||
f.setId(f.get("code"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
source.addFeatures(features);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
layer = new VectorLayer({
|
|
||||||
source: source,
|
|
||||||
style: (feature) => {
|
|
||||||
var key =feature.get("code") + "_" + feature.get("color");
|
|
||||||
if (!this.styleCache[key]) {
|
|
||||||
var color = feature.get("color");
|
|
||||||
this.styleCache[key] = new style.Style(
|
|
||||||
{
|
|
||||||
fill: new style.Fill({
|
|
||||||
color: color
|
|
||||||
}),
|
|
||||||
stroke: new style.Stroke({
|
|
||||||
color: color,
|
|
||||||
width: 1.25
|
|
||||||
}),
|
|
||||||
image: new style.Circle({
|
|
||||||
fill: new style.Fill({
|
|
||||||
color: color
|
|
||||||
}),
|
|
||||||
stroke: new style.Stroke({
|
|
||||||
color: color,
|
|
||||||
width: 1.25
|
|
||||||
}),
|
|
||||||
radius: 5
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
return this.styleCache[key];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if(l.minzoom) {
|
|
||||||
layer.setMinZoom(l.minzoom);
|
|
||||||
}
|
|
||||||
if(l.maxzoom) {
|
|
||||||
layer.setMaxZoom(l.maxzoom);
|
|
||||||
}
|
|
||||||
return layer;
|
|
||||||
}
|
|
||||||
|
|
||||||
createSelectionLayer(itemLayer:IItemLayer):Layer {
|
|
||||||
var layerIndex = -1;
|
|
||||||
var layer: Layer = null;
|
|
||||||
layerIndex = itemLayer.layerIndex != -1 ? itemLayer.layerIndex : itemLayer.item.data.layers[0].index;
|
|
||||||
var data = itemLayer.item.data;
|
|
||||||
var l:ILayer = (data && data.layers && data.layers.length > 0) ? data.layers[layerIndex] : null;
|
|
||||||
if (l && l.rendering && l.rendering.renderoutputType == "VectorTiles") {
|
|
||||||
return new VectorTileLayer({
|
|
||||||
renderMode: 'vector',
|
|
||||||
source: itemLayer.layer.getSource(),
|
|
||||||
style: (feature) => {
|
|
||||||
if (feature.getId() in this.selectedFeatures) {
|
|
||||||
|
|
||||||
return new style.Style(
|
|
||||||
{
|
|
||||||
stroke: new style.Stroke({
|
|
||||||
color: 'red',
|
|
||||||
width: 2
|
|
||||||
})
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
minZoom: itemLayer.layer.getMinZoom(),
|
|
||||||
maxZoom: itemLayer.layer.getMaxZoom()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
createExternalLayer(item:IItem,itemLayer:IItemLayer):Layer {
|
|
||||||
let data = item.data as ILayerData;
|
|
||||||
var layer: Layer = null;
|
|
||||||
switch (data.interfaceType) {
|
|
||||||
case 'OSM': {
|
|
||||||
let source = new OSM();
|
|
||||||
layer = new Tile({ source: source });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'BingMaps': {
|
|
||||||
let source = new BingMaps(data.options);
|
|
||||||
layer = new Tile({ source: source });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'TileWMS': {
|
|
||||||
let source = new TileWMS(data.options);
|
|
||||||
layer = new Tile({ source: source });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'TileJSON': {
|
|
||||||
let source = new TileJSON(data.options);
|
|
||||||
layer = new Tile({ source: source });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'TileArcGISRest': {
|
|
||||||
let source = new TileArcGISRest(data.options);
|
|
||||||
layer = new Tile({ source: source });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'VectorWFSJson': {
|
|
||||||
let source = new VectorSource({
|
|
||||||
format: new GeoJSON(),
|
|
||||||
url: function (extent) {
|
|
||||||
return (
|
|
||||||
data.options.url + '&srsname=' + data.projection +
|
|
||||||
'&bbox=' +
|
|
||||||
extent.join(',') +
|
|
||||||
',EPSG:3857'
|
|
||||||
);
|
|
||||||
},
|
|
||||||
strategy: loadingstrategy.bbox,
|
|
||||||
});
|
|
||||||
layer = new VectorLayer({ source: source });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default: {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return layer;
|
|
||||||
}
|
|
||||||
|
|
||||||
createLayer(itemLayer: IItemLayer): Layer {
|
|
||||||
var layer: Layer = null;
|
|
||||||
var layerIndex = -1;
|
|
||||||
if (itemLayer.item.itemType == 'vnd.farmmaps.itemtype.geotiff.processed') {
|
|
||||||
layer = this.createGeotiffLayer(itemLayer.item,itemLayer);
|
|
||||||
} else if (itemLayer.item.itemType == 'vnd.farmmaps.itemtype.shape.processed') {
|
|
||||||
layer = this.createShapeLayer(itemLayer.item,itemLayer);
|
|
||||||
} else if (itemLayer.item.itemType == 'vnd.farmmaps.itemtype.layer') {
|
|
||||||
layer = this.createExternalLayer(itemLayer.item,itemLayer);
|
|
||||||
}
|
|
||||||
if (layer) {
|
|
||||||
let geometry = new GeoJSON().readGeometry(itemLayer.item.geometry);
|
|
||||||
let extent = geometry ? proj.transformExtent(geometry.getExtent(), 'EPSG:4326', 'EPSG:3857') : null;
|
|
||||||
if (extent) layer.setExtent(extent);
|
|
||||||
}
|
|
||||||
|
|
||||||
return layer;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
super.ngOnInit();
|
|
||||||
if(this.itemLayers) {
|
|
||||||
this.updateLayers(this.itemLayers);
|
|
||||||
} else if(this.itemLayer) {
|
|
||||||
if(this.getItemlayer(this.itemLayer).item.itemType == 'vnd.farmmaps.itemtype.shape.processed') {
|
|
||||||
this.installMapEventHandler();
|
|
||||||
}
|
|
||||||
this.updateLayers([this.itemLayer])
|
|
||||||
} else {
|
|
||||||
this.updateLayers([]);
|
|
||||||
}
|
|
||||||
this.initialized=true;
|
|
||||||
}
|
|
||||||
|
|
||||||
installMapEventHandler() {
|
|
||||||
if(!this.mapEventHandlerInstalled) {
|
|
||||||
this.map.instance.on(['click', 'pointermove'],this.mapEventHandler);
|
|
||||||
this.mapEventHandlerInstalled=true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
unInstallMapEventHandler() {
|
|
||||||
if(this.mapEventHandlerInstalled) {
|
|
||||||
this.map.instance.un(['click', 'pointermove'],this.mapEventHandler);
|
|
||||||
this.mapEventHandlerInstalled=false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
addOrUpdateOlLayer(itemLayer:IItemLayer,index:number):Layer {
|
|
||||||
if(!itemLayer) return null;
|
|
||||||
var olLayers = this.instance.getLayers();
|
|
||||||
var layer = itemLayer.layer;
|
|
||||||
let olIndex = olLayers.getArray().indexOf(layer);
|
|
||||||
if (olIndex < 0) {
|
|
||||||
// New layer: we add it to the map
|
|
||||||
layer = this.createLayer(itemLayer);
|
|
||||||
if (layer) {
|
|
||||||
olLayers.insertAt(index, layer);
|
|
||||||
}
|
|
||||||
} else if (index !== olIndex) {
|
|
||||||
// layer has moved inside the layers list
|
|
||||||
olLayers.removeAt(olIndex);
|
|
||||||
olLayers.insertAt(index, layer);
|
|
||||||
}
|
|
||||||
if(layer) {
|
|
||||||
itemLayer.layer = layer;
|
|
||||||
layer.setOpacity(itemLayer.opacity);
|
|
||||||
layer.setVisible(itemLayer.visible);
|
|
||||||
}
|
|
||||||
return layer;
|
|
||||||
}
|
|
||||||
|
|
||||||
updateLayers(itemLayers: IItemLayer[]) {
|
|
||||||
let newLayers: IItemLayer[] = [];
|
|
||||||
if (itemLayers) {
|
|
||||||
itemLayers.forEach((itemLayer, index) => {
|
|
||||||
if(itemLayer.item.itemType == 'vnd.farmmaps.itemtype.temporal') {
|
|
||||||
let il = itemLayer as ITemporalItemLayer;
|
|
||||||
let previousLayer = this.addOrUpdateOlLayer(il.previousItemLayer,newLayers.length);
|
|
||||||
if(previousLayer) newLayers.push(previousLayer);
|
|
||||||
let selectedLayer = this.addOrUpdateOlLayer(il.selectedItemLayer,newLayers.length);
|
|
||||||
if(selectedLayer) newLayers.push(selectedLayer);
|
|
||||||
let nextLayer = this.addOrUpdateOlLayer(il.nextItemLayer,newLayers.length);
|
|
||||||
if(nextLayer) newLayers.push(nextLayer);
|
|
||||||
} else {
|
|
||||||
let layer = this.addOrUpdateOlLayer(itemLayer,newLayers.length);
|
|
||||||
if(layer) newLayers.push(layer);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// Remove the layers that have disapeared from childrenLayers
|
|
||||||
var olLayers = this.instance.getLayers();
|
|
||||||
while(olLayers.getLength() > newLayers.length) {
|
|
||||||
olLayers.removeAt(newLayers.length);
|
|
||||||
}
|
|
||||||
this.selectionLayer=null;
|
|
||||||
if(this.mapEventHandlerInstalled && itemLayers.length==1 && this.getItemlayer(itemLayers[0]).item.itemType == 'vnd.farmmaps.itemtype.shape.processed') {
|
|
||||||
this.selectionLayer = this.createSelectionLayer(this.getItemlayer(itemLayers[0]));
|
|
||||||
if(this.selectionLayer) olLayers.push(this.selectionLayer)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
mapEventHandler = (event) => {
|
|
||||||
// select only when having observers
|
|
||||||
if(event.type === 'click' && !this.onFeatureSelected.observers.length) return;
|
|
||||||
if(event.type === 'pointermove' && !this.onFeatureHover.observers.length) return;
|
|
||||||
let itemLayer= this.getItemlayer(this.itemLayer);
|
|
||||||
if(itemLayer && itemLayer.layer) {
|
|
||||||
this.selectedFeatures = {};
|
|
||||||
if(itemLayer.layer ) {
|
|
||||||
let minZoom = itemLayer.layer.getMinZoom();
|
|
||||||
let currentZoom = this.map.instance.getView().getZoom();
|
|
||||||
if(currentZoom>minZoom) {
|
|
||||||
itemLayer.layer.getFeatures(event.pixel).then((features) => {
|
|
||||||
if(!features.length) {
|
|
||||||
this.onFeatureHover.emit(null);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let fid = features[0].getId();
|
|
||||||
let feature = features[0];
|
|
||||||
if(event.type === 'pointermove') {
|
|
||||||
this.selectedFeatures[fid] = features[0];
|
|
||||||
this.onFeatureHover.emit({ "feature": feature,"itemCode":itemLayer.item.code });
|
|
||||||
} else {
|
|
||||||
this.onFeatureSelected.emit({ "feature": feature,"itemCode":itemLayer.item.code });
|
|
||||||
}
|
|
||||||
})
|
|
||||||
if(this.selectionLayer) this.selectionLayer.changed();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getItemlayer(itemLayer:IItemLayer):IItemLayer {
|
|
||||||
if((itemLayer as ITemporalItemLayer).selectedItemLayer) return (itemLayer as ITemporalItemLayer).selectedItemLayer;
|
|
||||||
return itemLayer;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
if (this.instance && this.initialized) {
|
|
||||||
if (changes['itemLayers']) {
|
|
||||||
var itemLayers = changes['itemLayers'].currentValue as IItemLayer[];
|
|
||||||
this.updateLayers(itemLayers);
|
|
||||||
}
|
|
||||||
if (changes['itemLayer']) {
|
|
||||||
var itemLayer = changes['itemLayer'].currentValue as IItemLayer;
|
|
||||||
this.itemLayer = itemLayer
|
|
||||||
if(itemLayer) {
|
|
||||||
if(this.getItemlayer(this.itemLayer).item.itemType == 'vnd.farmmaps.itemtype.shape.processed') {
|
|
||||||
this.installMapEventHandler();
|
|
||||||
}
|
|
||||||
this.updateLayers([itemLayer]);
|
|
||||||
} else {
|
|
||||||
this.unInstallMapEventHandler();
|
|
||||||
this.updateLayers([]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnDestroy() {
|
|
||||||
this.unInstallMapEventHandler();
|
|
||||||
super.ngOnDestroy();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,189 +0,0 @@
|
|||||||
import { Component, Host, Input, Output, EventEmitter, OnInit, OnChanges, SimpleChanges, forwardRef, Inject, InjectionToken } from '@angular/core';
|
|
||||||
import { LayerVectorComponent, SourceVectorComponent, MapComponent } from 'ngx-openlayers';
|
|
||||||
import { ItemService,ItemTypeService,IItem, IItemType } from '@farmmaps/common';
|
|
||||||
|
|
||||||
import { Feature } from 'ol';
|
|
||||||
import { Point } from 'ol/geom';
|
|
||||||
import { MapBrowserEvent } from 'ol';
|
|
||||||
import * as style from 'ol/style';
|
|
||||||
import * as color from 'ol/color';
|
|
||||||
import * as loadingstrategy from 'ol/loadingstrategy';
|
|
||||||
import * as condition from 'ol/events/condition';
|
|
||||||
import * as extent from 'ol/extent';
|
|
||||||
import {Vector,Cluster} from 'ol/source';
|
|
||||||
import {Layer} from 'ol/layer';
|
|
||||||
import {GeoJSON} from 'ol/format';
|
|
||||||
import {Select} from 'ol/interaction';
|
|
||||||
import {IStyles} from '../../../models/style.cache';
|
|
||||||
import {FeatureIconService} from '../../../services/feature-icon.service';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-item-source-vector',
|
|
||||||
template: `<ng-content></ng-content>`,
|
|
||||||
providers: [
|
|
||||||
{ provide: SourceVectorComponent , useExisting: forwardRef(() => ItemVectorSourceComponent) }
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export class ItemVectorSourceComponent extends SourceVectorComponent implements OnInit, OnChanges {
|
|
||||||
instance: Vector;
|
|
||||||
private _format: GeoJSON;
|
|
||||||
private _select: Select;
|
|
||||||
private _hoverSelect: Select;
|
|
||||||
private _iconScale: number = 0.05;
|
|
||||||
@Input() features: Array<Feature>;
|
|
||||||
@Input() selectedFeature: Feature;
|
|
||||||
@Input() selectedItem: IItem;
|
|
||||||
@Input() styles:IStyles;
|
|
||||||
@Output() onFeatureSelected: EventEmitter<Feature> = new EventEmitter<Feature>();
|
|
||||||
@Output() onFeatureHover: EventEmitter<Feature> = new EventEmitter<Feature>();
|
|
||||||
private stylesCache:IStyles = {};
|
|
||||||
|
|
||||||
constructor(@Host() private layer: LayerVectorComponent, private itemService: ItemService, private map: MapComponent, private itemTypeService: ItemTypeService,private featureIconService$:FeatureIconService) {
|
|
||||||
super(layer);
|
|
||||||
this._format = new GeoJSON();
|
|
||||||
}
|
|
||||||
|
|
||||||
geometry(feature: Feature) {
|
|
||||||
let view = this.map.instance.getView();
|
|
||||||
let resolution = view.getResolution();
|
|
||||||
var geometry = feature.getGeometry();
|
|
||||||
let e = geometry.getExtent();
|
|
||||||
//var size = Math.max((e[2] - e[0]) / resolution, (e[3] - e[1]) / resolution);
|
|
||||||
if (resolution > 12) {
|
|
||||||
geometry = new Point(extent.getCenter(e));
|
|
||||||
}
|
|
||||||
return geometry;
|
|
||||||
}
|
|
||||||
|
|
||||||
getSelectedStyle(feature:Feature):style.Style {
|
|
||||||
let key = feature.get('itemType')+"_selected";
|
|
||||||
let evaluatedStyle =null;
|
|
||||||
var styleEntry = this.stylesCache[key];
|
|
||||||
if(styleEntry) {
|
|
||||||
if(typeof styleEntry === 'function') {
|
|
||||||
evaluatedStyle = styleEntry(feature);
|
|
||||||
} else {
|
|
||||||
evaluatedStyle = styleEntry;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
evaluatedStyle = this.stylesCache["selected"];
|
|
||||||
}
|
|
||||||
if(evaluatedStyle ) {
|
|
||||||
evaluatedStyle.setGeometry((feature) => this.geometry(feature));
|
|
||||||
}
|
|
||||||
return evaluatedStyle
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.strategy = loadingstrategy.bbox;
|
|
||||||
this.format = new GeoJSON();
|
|
||||||
this._select = new Select({
|
|
||||||
style:null,
|
|
||||||
hitTolerance: 10,
|
|
||||||
layers: [this.layer.instance as Layer]
|
|
||||||
});
|
|
||||||
this._hoverSelect = new Select({
|
|
||||||
style: (feature) => {
|
|
||||||
return this.getSelectedStyle(feature);
|
|
||||||
},
|
|
||||||
hitTolerance: 10,
|
|
||||||
condition: (e: MapBrowserEvent) => {
|
|
||||||
return e.type == 'pointermove';
|
|
||||||
},
|
|
||||||
layers: [this.layer.instance as Layer]
|
|
||||||
});
|
|
||||||
this.map.instance.addInteraction(this._select);
|
|
||||||
this.map.instance.addInteraction(this._hoverSelect);
|
|
||||||
this._select.on('select', (e) => {
|
|
||||||
if (e.selected.length > 0 && e.selected[0]) {
|
|
||||||
this.onFeatureSelected.emit(e.selected[0]);
|
|
||||||
} else {
|
|
||||||
this.onFeatureSelected.emit(null);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
this._hoverSelect.on('select', (e) => {
|
|
||||||
if (e.selected.length > 0 && e.selected[0]) {
|
|
||||||
this.onFeatureHover.emit(e.selected[0]);
|
|
||||||
} else {
|
|
||||||
this.onFeatureHover.emit(null);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
this.instance = new Vector(this);
|
|
||||||
this.host.instance.setSource(this.instance);
|
|
||||||
|
|
||||||
this.host.instance.setStyle((feature) => {
|
|
||||||
var key = feature.get('itemType') + (this.selectedItem?"_I":"");
|
|
||||||
if (!this.stylesCache[key]) {
|
|
||||||
if (this.itemTypeService.itemTypes[key]) {
|
|
||||||
let itemType = this.itemTypeService.itemTypes[key];
|
|
||||||
let fillColor = color.asArray(itemType.iconColor);
|
|
||||||
fillColor[3] = 0;
|
|
||||||
this.stylesCache[key] = new style.Style({
|
|
||||||
image: itemType.icon ? new style.Icon({
|
|
||||||
anchor: [0.5, 1],
|
|
||||||
scale: 0.05,
|
|
||||||
src: this.featureIconService$.getIconImageDataUrl(itemType.icon)
|
|
||||||
}):null,
|
|
||||||
stroke: new style.Stroke({
|
|
||||||
color: 'red',
|
|
||||||
width: 1
|
|
||||||
}),
|
|
||||||
fill: new style.Fill({
|
|
||||||
color: fillColor
|
|
||||||
}),
|
|
||||||
geometry:(feature) => this.geometry(feature)
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
key = 'file';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let evaluatedStyle =null;
|
|
||||||
var styleEntry = this.stylesCache[key];
|
|
||||||
if(typeof styleEntry === 'function') {
|
|
||||||
evaluatedStyle = styleEntry(feature);
|
|
||||||
} else {
|
|
||||||
evaluatedStyle = styleEntry;
|
|
||||||
}
|
|
||||||
if(evaluatedStyle && evaluatedStyle.geometry_ == null) {
|
|
||||||
evaluatedStyle.setGeometry((feature) => this.geometry(feature));
|
|
||||||
}
|
|
||||||
return evaluatedStyle;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
if (changes["features"] && this.instance) {
|
|
||||||
this.instance.clear(true);
|
|
||||||
this._select.getFeatures().clear();
|
|
||||||
this.instance.addFeatures(changes["features"].currentValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (changes["selectedFeature"] && this.instance) {
|
|
||||||
var features = this._hoverSelect.getFeatures();
|
|
||||||
var feature = changes["selectedFeature"].currentValue
|
|
||||||
//this.instance.clear(false);
|
|
||||||
//this.instance.addFeatures(features.getArray());
|
|
||||||
features.clear();
|
|
||||||
if (feature) {
|
|
||||||
//this.instance.removeFeature(feature);
|
|
||||||
features.push(feature)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (changes["selectedItem"] && this.instance) {
|
|
||||||
var item = changes["selectedItem"].currentValue
|
|
||||||
if (item) {
|
|
||||||
this.map.instance.removeInteraction(this._hoverSelect);
|
|
||||||
} else {
|
|
||||||
this.map.instance.addInteraction(this._hoverSelect);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (changes["styles"] && this.instance) {
|
|
||||||
let styles = changes["styles"].currentValue;
|
|
||||||
for (const key in styles) {
|
|
||||||
if (styles.hasOwnProperty(key)) {
|
|
||||||
this.stylesCache[key]=styles[key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
<div>
|
|
||||||
<div class="layerlist" *ngIf="itemLayers.length > 0;else noLayers">
|
|
||||||
<div class="list-group">
|
|
||||||
<div *ngFor="let itemLayer of itemLayers" class="list-group-item list-group-item-action p-2 text-truncate" [ngClass]="{'active' : selectedLayer==itemLayer}">
|
|
||||||
<div (click)="handleSelectLayer($event,itemLayer)" [title]="itemLayer.item.name">{{itemLayer.item.name}}</div>
|
|
||||||
<div class="mt-1" *ngIf="selectedLayer==itemLayer && !baseLayers">
|
|
||||||
<span class="btn-group">
|
|
||||||
<a title="Toggle visibility"href="#" class="btn btn-light btn-sm" (click)="handleToggleVisibility($event,itemLayer)"><i class="fa" aria-hidden="true" [ngClass]="{'fa-eye':!itemLayer.visible,'fa-eye-slash':itemLayer.visible}"></i></a>
|
|
||||||
<a title="Transparency 25%" *ngIf="itemLayer.visible" href="#" class="btn btn-light btn-sm" (click)="handleSetOpacity($event,itemLayer,0.25)">25%</a>
|
|
||||||
<a title="Transparency 50%" *ngIf="itemLayer.visible" href="#" class="btn btn-light btn-sm" (click)="handleSetOpacity($event,itemLayer,0.5)">50%</a>
|
|
||||||
<a title="Transparency 75%" *ngIf="itemLayer.visible" href="#" class="btn btn-light btn-sm" (click)="handleSetOpacity($event,itemLayer,0.75)">75%</a>
|
|
||||||
<a title="No transparency" *ngIf="itemLayer.visible" href="#" class="btn btn-light btn-sm" (click)="handleSetOpacity($event,itemLayer,1)">100%</a>
|
|
||||||
</span>
|
|
||||||
<a href="#" title="Zoom to extent" class="btn btn-light btn-sm" (click)="handleZoomToExtent($event,itemLayer)"><i class="far fa-search-plus" aria-hidden="true"></i></a>
|
|
||||||
<span *ngIf="firstLayer(itemLayer)"><a href="#" title="Toggle legend" class="btn btn-light btn-sm" (click)="itemLayer.legendVisible=toggleLegend($event,itemLayer.legendVisible)"><i class="far fa-chart-bar" aria-hidden="true"></i></a></span>
|
|
||||||
<span class="float-right"><a href="#" title="Remove overlay" class="btn btn-light btn-sm" (click)="handleDelete($event,itemLayer)"><i class="fas fa-layer-minus" aria-hidden="true"></i></a></span>
|
|
||||||
</div>
|
|
||||||
<div *ngIf="itemLayer.legendVisible">
|
|
||||||
<div class="card legend">
|
|
||||||
<fm-map-layer-legend [layer]="firstLayer(itemLayer)" (click)="handleLegendClick($event,itemLayer);"></fm-map-layer-legend>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ng-template #noLayers>
|
|
||||||
<div class="list-group">
|
|
||||||
<div class="list-group-item" i18n>No layers</div>
|
|
||||||
</div>
|
|
||||||
</ng-template>
|
|
@ -1,18 +0,0 @@
|
|||||||
.layerlist ul {
|
|
||||||
list-style:none;
|
|
||||||
padding:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.active span.btn.btn-lnk.p-0.border-0 {
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-sm {
|
|
||||||
padding:0.25rem 0.3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.legend {
|
|
||||||
margin-top:0.5rem;
|
|
||||||
color:black;
|
|
||||||
padding:0.25rem;
|
|
||||||
}
|
|
@ -1,64 +0,0 @@
|
|||||||
import { Component,Input,Output,EventEmitter } from '@angular/core';
|
|
||||||
import { IItemLayer } from '../../../models/item.layer';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-layer-list',
|
|
||||||
templateUrl: './layer-list.component.html',
|
|
||||||
styleUrls: ['./layer-list.component.scss']
|
|
||||||
})
|
|
||||||
|
|
||||||
export class LayerListComponent {
|
|
||||||
@Input() itemLayers: IItemLayer[] = [];
|
|
||||||
@Input() baseLayers: boolean = false;
|
|
||||||
@Output() onToggleVisibility = new EventEmitter<IItemLayer>();
|
|
||||||
@Output() onSetOpacity = new EventEmitter<{layer: IItemLayer,opacity:number }>();
|
|
||||||
@Output() onDelete = new EventEmitter<IItemLayer>();
|
|
||||||
@Output() onZoomToExtent = new EventEmitter<IItemLayer>();
|
|
||||||
@Output() onSelectLayer = new EventEmitter<IItemLayer>();
|
|
||||||
@Input() selectedLayer: IItemLayer;
|
|
||||||
|
|
||||||
constructor( ) {
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDelete(event:MouseEvent, item:IItemLayer) {
|
|
||||||
this.onDelete.emit(item);
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
handleToggleVisibility(event:MouseEvent, item: IItemLayer) {
|
|
||||||
this.onToggleVisibility.emit(item);
|
|
||||||
item.legendVisible = item.visible && item.legendVisible;
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
handleSetOpacity(event: MouseEvent, layer: IItemLayer,opacity:number) {
|
|
||||||
this.onSetOpacity.emit({ layer,opacity });
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
handleZoomToExtent(event: MouseEvent, item: IItemLayer) {
|
|
||||||
this.onZoomToExtent.emit(item);
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
handleSelectLayer(event: MouseEvent, item: IItemLayer) {
|
|
||||||
this.onSelectLayer.emit(item);
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
firstLayer(item: IItemLayer): any {
|
|
||||||
if (item && item.item && item.item.data && item.item.data.layers && item.item.data.layers.length > 0) return item.item.data.layers[0];
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
toggleLegend(event: MouseEvent, lg: boolean) {
|
|
||||||
event.preventDefault();
|
|
||||||
return !lg;
|
|
||||||
}
|
|
||||||
|
|
||||||
handleLegendClick(event: MouseEvent, item: IItemLayer) {
|
|
||||||
this.onSelectLayer.emit(item);
|
|
||||||
this.onZoomToExtent.emit(item);
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
<div #layerValues class="layer-values">
|
|
||||||
<div class="cross" *ngIf="enabled$ | async">
|
|
||||||
<div class="pointer"></div>
|
|
||||||
<div class="values-container border border-dark rounded p-2" *ngIf="(layerValues$ | async ) as layers">
|
|
||||||
<div class="lonlat pb-2 "><span class="font-weight-bold">{{lonlat$}}</span><i class="ml-2 fal fa-copy" (click)="copyToClipboard()"></i> </div>
|
|
||||||
<ul class="value-list p-0 mb-0" *ngIf="layers.length>0 ;else no_data">
|
|
||||||
<li class="border-top pt-1 pb-1 value" *ngFor="let layerValue of layers">
|
|
||||||
<div>{{layerValue.layerName}}</div>
|
|
||||||
<div>{{layerValue.date|date}}</div>
|
|
||||||
<div><span class="mr-1">{{layerValue.quantity}}</span> <span class="mr-1 font-weight-bold">{{layerValue.value}}</span><span>{{layerValue.unit}}</span></div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<ng-template #no_data>
|
|
||||||
<div i18n class="border-top pt-1 pb-1">No data at location</div>
|
|
||||||
</ng-template>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>>
|
|
@ -1,37 +0,0 @@
|
|||||||
.layer-values {
|
|
||||||
position: absolute;
|
|
||||||
left: 50%;
|
|
||||||
top: 30%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cross {
|
|
||||||
display: block;
|
|
||||||
position: relative;
|
|
||||||
width: 1em;
|
|
||||||
height: 1em;
|
|
||||||
left: -0.5em;
|
|
||||||
top: -0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.values-container {
|
|
||||||
position: relative;
|
|
||||||
background-color: white;
|
|
||||||
left: calc( 1em - 1px);
|
|
||||||
top: -1.3em;
|
|
||||||
min-width: 15em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.value-list {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pointer {
|
|
||||||
position: relative;
|
|
||||||
width: 0px;
|
|
||||||
height: 0px;
|
|
||||||
left: 0.5em;
|
|
||||||
border-top: 0.5em solid transparent;
|
|
||||||
border-bottom: 0.5em solid transparent;
|
|
||||||
border-right: 0.5em solid black;
|
|
||||||
}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
||||||
|
|
||||||
import { LayerValuesComponent } from './layer-values.component';
|
|
||||||
|
|
||||||
describe('LayerValuesComponent', () => {
|
|
||||||
let component: LayerValuesComponent;
|
|
||||||
let fixture: ComponentFixture<LayerValuesComponent>;
|
|
||||||
|
|
||||||
beforeEach(async () => {
|
|
||||||
await TestBed.configureTestingModule({
|
|
||||||
declarations: [ LayerValuesComponent ]
|
|
||||||
})
|
|
||||||
.compileComponents();
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
fixture = TestBed.createComponent(LayerValuesComponent);
|
|
||||||
component = fixture.componentInstance;
|
|
||||||
fixture.detectChanges();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create', () => {
|
|
||||||
expect(component).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,62 +0,0 @@
|
|||||||
import { Component, OnInit,Input,ViewChild,ElementRef,AfterViewInit } from '@angular/core';
|
|
||||||
import {IItemLayer} from '../../../models/item.layer';
|
|
||||||
import { Store } from '@ngrx/store';
|
|
||||||
import * as mapReducers from '../../../reducers/map.reducer';
|
|
||||||
import * as mapActions from '../../../actions/map.actions';
|
|
||||||
import { MapComponent } from 'ngx-openlayers';
|
|
||||||
import { ILayervalue } from '../../../models/layer.value';
|
|
||||||
import { Observable,interval,Subject } from 'rxjs';
|
|
||||||
import { debounce, throttle } from 'rxjs/operators';
|
|
||||||
import { toLonLat } from 'ol/proj';
|
|
||||||
import { toStringHDMS } from 'ol/coordinate';
|
|
||||||
import { ClipboardService } from 'ngx-clipboard'
|
|
||||||
import {GeoJSON,WKT} from 'ol/format';
|
|
||||||
import { Point } from 'ol/geom';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-layer-values',
|
|
||||||
templateUrl: './layer-values.component.html',
|
|
||||||
styleUrls: ['./layer-values.component.scss']
|
|
||||||
})
|
|
||||||
export class LayerValuesComponent implements OnInit,AfterViewInit {
|
|
||||||
|
|
||||||
@ViewChild('layerValues') containerRef:ElementRef;
|
|
||||||
offsetX$:number =0;
|
|
||||||
offsetY$:number =0;
|
|
||||||
lonlat$: string="";
|
|
||||||
wkt$= "";
|
|
||||||
layerValues$:Observable<Array<ILayervalue>> = this.store.select(mapReducers.selectGetLayerValues);
|
|
||||||
enabled$:Observable<boolean> = this.store.select(mapReducers.selectGetLayerValuesEnabled);
|
|
||||||
wktFormat$:WKT;
|
|
||||||
|
|
||||||
constructor( private store: Store<mapReducers.State>,private map: MapComponent,private clipboardService$:ClipboardService) {
|
|
||||||
this.wktFormat$=new WKT();
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
moveEndSubject = new Subject<any>();
|
|
||||||
|
|
||||||
ngAfterViewInit():void {
|
|
||||||
this.offsetY$ = this.containerRef.nativeElement.offsetTop;
|
|
||||||
this.offsetX$ = this.containerRef.nativeElement.offsetLeft;
|
|
||||||
this.map.instance.on('moveend', () => {
|
|
||||||
this.moveEndSubject.next({});
|
|
||||||
});
|
|
||||||
this.moveEndSubject.pipe(throttle(ev => interval(100))).subscribe(() => this.updateValuesLocation());
|
|
||||||
}
|
|
||||||
|
|
||||||
updateValuesLocation() {
|
|
||||||
var xy = this.map.instance.getCoordinateFromPixel([this.offsetX$,this.offsetY$])
|
|
||||||
var lonlat = toLonLat(xy);
|
|
||||||
this.wkt$ = this.wktFormat$.writeGeometry(new Point(lonlat))
|
|
||||||
this.lonlat$ = toStringHDMS(lonlat);
|
|
||||||
this.store.dispatch(new mapActions.SetLayerValuesLocation(xy[0],xy[1]));
|
|
||||||
}
|
|
||||||
|
|
||||||
copyToClipboard() {
|
|
||||||
this.clipboardService$.copy(this.wkt$);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
import { Component, OnDestroy, OnInit, Input, Optional, OnChanges, SimpleChanges } from '@angular/core';
|
|
||||||
import { Vector } from 'ol/layer';
|
|
||||||
import { Style } from 'ol/style';
|
|
||||||
import { StyleFunction } from 'ol/style/Style';
|
|
||||||
import { LayerVectorComponent, LayerGroupComponent, MapComponent } from 'ngx-openlayers';
|
|
||||||
import { RenderType } from 'ol/layer/Vector';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-aol-layer-vector-image',
|
|
||||||
template: `
|
|
||||||
<ng-content></ng-content>
|
|
||||||
`,
|
|
||||||
})
|
|
||||||
export class LayerVectorImageComponent extends LayerVectorComponent implements OnInit, OnDestroy, OnChanges {
|
|
||||||
public source: Vector;
|
|
||||||
|
|
||||||
@Input()
|
|
||||||
renderMode: RenderType | string = "image";
|
|
||||||
|
|
||||||
constructor(map: MapComponent) {
|
|
||||||
super(map);
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
super.ngOnInit();
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
super.ngOnChanges(changes);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
<div (click)="handleClick($event)" class="btn btn-outline-primary gps-location">
|
|
||||||
<svg height="100%" width="100%" viewBox="0 0 96 96">
|
|
||||||
<g
|
|
||||||
id="XMLID_1_"><circle
|
|
||||||
class="pan-to" [ngClass]="{'pan-to-centered':centered(),'pan-to-disabled':disabled()}"
|
|
||||||
cx="48"
|
|
||||||
cy="48"
|
|
||||||
r="9.8000002"/><path
|
|
||||||
class="pan-to" [ngClass]="{'pan-to-centered':centered(),'pan-to-disabled':disabled()}"
|
|
||||||
d="M 80.5,44.8 H 73.8 C 72.3,33 63,23.7 51.3,22.2 v -6.7 h -6.5 v 6.7 C 33,23.7 23.7,33 22.2,44.8 h -6.7 v 6.5 h 6.7 C 23.7,63 33,72.3 44.8,73.8 v 6.7 h 6.5 V 73.8 C 63,72.3 72.3,63 73.8,51.3 h 6.7 z M 48,67.5 C 37.2,67.5 28.5,58.8 28.5,48 28.5,37.2 37.2,28.5 48,28.5 c 10.8,0 19.5,8.7 19.5,19.5 0,10.8 -8.7,19.5 -19.5,19.5 z"
|
|
||||||
inkscape:connector-curvature="0"/></g>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
@ -1,37 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
|
|
||||||
.gps-location {
|
|
||||||
display:block;
|
|
||||||
width:2.5em;
|
|
||||||
height:2.5em;
|
|
||||||
background-color: $body-bg;
|
|
||||||
background-size: contain;
|
|
||||||
margin-top:0.5em;
|
|
||||||
border-radius: 1.75em;
|
|
||||||
padding:0
|
|
||||||
}
|
|
||||||
|
|
||||||
.center, .tolerance, .border {
|
|
||||||
stroke-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pan-to {
|
|
||||||
fill: $secondary;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.gps-location:hover .pan-to {
|
|
||||||
fill: $white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pan-to-centered {
|
|
||||||
fill: $primary;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.gps-location:hover .pan-to-centered {
|
|
||||||
fill: theme-color-level($color-name: "primary", $level: -10)
|
|
||||||
}
|
|
||||||
|
|
||||||
.pan-to.pan-to-disabled {
|
|
||||||
fill: $gray-300;
|
|
||||||
}
|
|
@ -1,84 +0,0 @@
|
|||||||
import { Component, OnInit, Input, Host, OnChanges, SimpleChanges,ChangeDetectorRef } from '@angular/core';
|
|
||||||
import { MapComponent } from 'ngx-openlayers';
|
|
||||||
import {IMapState} from '../../../models/map.state'
|
|
||||||
import {View} from 'ol';
|
|
||||||
import { fromLonLat } from 'ol/proj';
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-pan-to-location',
|
|
||||||
templateUrl: './pan-to-location.component.html',
|
|
||||||
styleUrls: ['./pan-to-location.component.scss']
|
|
||||||
})
|
|
||||||
export class PanToLocation implements OnInit,OnChanges{
|
|
||||||
|
|
||||||
view: View;
|
|
||||||
map: MapComponent;
|
|
||||||
@Input() position: Position;
|
|
||||||
@Input() mapState: IMapState;
|
|
||||||
@Input() animate: boolean;
|
|
||||||
|
|
||||||
constructor(@Host() map: MapComponent,private changeDetectorRef$: ChangeDetectorRef ) {
|
|
||||||
this.map = map;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.view = this.map.instance.getView();
|
|
||||||
this.view.on('change:center', () => {
|
|
||||||
this.changeDetectorRef$.detectChanges();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
// if (changes.position && this.instance) {
|
|
||||||
// var p = changes.position.currentValue as Position;
|
|
||||||
// this.instance.setPosition(fromLonLat([p.coords.longitude, p.coords.latitude]));
|
|
||||||
// this.locationTolerance = p.coords.accuracy;
|
|
||||||
// this.recalcLocationTolerance();
|
|
||||||
// this.heading = p.coords.heading;
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
p
|
|
||||||
|
|
||||||
public centered():boolean {
|
|
||||||
if(this.position && this.mapState) {
|
|
||||||
let center = this.view.getCenter();
|
|
||||||
let newCenter = fromLonLat([this.position.coords.longitude,this.position.coords.latitude]);
|
|
||||||
let x1 = newCenter[0].toFixed(0);
|
|
||||||
let x2 = center[0].toFixed(0);
|
|
||||||
let y1 = newCenter[1].toFixed(0);
|
|
||||||
let y2 = center[1].toFixed(0);
|
|
||||||
return x1==x2 && y1==y2;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public disabled():boolean {
|
|
||||||
return !this.position;
|
|
||||||
}
|
|
||||||
|
|
||||||
handleClick(event:Event) {
|
|
||||||
if(this.position) {
|
|
||||||
let view = this.map.instance.getView();
|
|
||||||
let newCenter = fromLonLat([this.position.coords.longitude,this.position.coords.latitude]);
|
|
||||||
let extent = [newCenter[0]-500,newCenter[1]-500,newCenter[0]+500,newCenter[1]+500];
|
|
||||||
var options = { padding: [0, 0, 0, 0],minResolution:1 };
|
|
||||||
let size = this.map.instance.getSize();
|
|
||||||
let rem = parseFloat(getComputedStyle(document.documentElement).fontSize);
|
|
||||||
let threshold = 44 * rem;
|
|
||||||
var left = 1 * rem;
|
|
||||||
var right = 1 * rem;
|
|
||||||
var bottom = Math.round(size[1] / 2);
|
|
||||||
var top = 1 * rem;
|
|
||||||
if (size[0] > threshold) {
|
|
||||||
bottom = 1 * rem;
|
|
||||||
left = 23 * rem;
|
|
||||||
}
|
|
||||||
//options.padding = [top, right, bottom, left];
|
|
||||||
if (this.animate) options["duration"] = 2000;
|
|
||||||
view.fit(extent, options);
|
|
||||||
}
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,35 +0,0 @@
|
|||||||
<div (click)="handleClick($event)" class="btn btn-outline-primary compass" [style.transform]="Rotation()" [ngClass]="{'compass-n':IsNorth()}">
|
|
||||||
<svg height="100%" width="100%" viewBox="0 0 132.29166 132.29167">
|
|
||||||
<g
|
|
||||||
inkscape:label="Laag 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(0,-164.70832)">
|
|
||||||
<g
|
|
||||||
id="g4550"
|
|
||||||
transform="translate(2.3213753,-1.8555167)">
|
|
||||||
<path
|
|
||||||
id="top-r"
|
|
||||||
d="m 63.824458,179.82737 v 52.8823 H 48.380953 Z"
|
|
||||||
style="stroke:none;stroke-width:0.15389842px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="top-l"
|
|
||||||
d="m 63.824458,179.82737 v 52.8823 h 15.443505 z"
|
|
||||||
style="stroke:none;stroke-width:0.15389842px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="bottom-l"
|
|
||||||
d="m 63.824458,285.59197 v -52.8823 h -15.4435 z"
|
|
||||||
style="stroke:none;stroke-width:0.15389842px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="bottom-r"
|
|
||||||
d="m 63.824458,285.59197 v -52.8823 h 15.443505 z"
|
|
||||||
style="stroke:none;stroke-width:0.15389842px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
|
||||||
|
|
||||||
<path
|
|
||||||
id="north"
|
|
||||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:2.95481014"
|
|
||||||
d="m 50.702335,239.32724 h 9.926315 l 12.534859,23.63848 v -23.63848 h 8.425825 v 34.46509 H 71.663019 L 59.12816,250.15385 v 23.63848 h -8.425825 z" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
@ -1,68 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
.compass {
|
|
||||||
width:2.5em;
|
|
||||||
height:2.5em;
|
|
||||||
background-color: white;
|
|
||||||
opacity: 1;
|
|
||||||
border-radius:1.75em;
|
|
||||||
padding:0;
|
|
||||||
margin-top:0.5em;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
#north {
|
|
||||||
display: none;
|
|
||||||
fill:$black;
|
|
||||||
}
|
|
||||||
|
|
||||||
#top-l {
|
|
||||||
fill:#d40000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#top-r {
|
|
||||||
fill:#ff0000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#bottom-l {
|
|
||||||
fill:#000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#bottom-r {
|
|
||||||
fill:#666666;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.compass:hover #top-l {
|
|
||||||
fill:$white;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.compass:hover #top-r {
|
|
||||||
fill:$gray-300;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.compass:hover #bottom-l {
|
|
||||||
fill:$gray-300;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.compass:hover #bottom-r {
|
|
||||||
fill:$white;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.compass:hover #north {
|
|
||||||
fill:$white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.compass-n {
|
|
||||||
transition: opacity 1s ease-out 2s,height 1s ease-out 3s,margin-top 1s ease-out 3s;
|
|
||||||
opacity:0;
|
|
||||||
height:0;
|
|
||||||
margin-top:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.compass-n #bottom-l, .compass-n #bottom-r {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.compass-n #north {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
@ -1,39 +0,0 @@
|
|||||||
import { Component, Host, Input, OnInit, ChangeDetectorRef } from '@angular/core';
|
|
||||||
import { ViewComponent, MapComponent } from 'ngx-openlayers';
|
|
||||||
|
|
||||||
import {View} from 'ol';
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-rotation-reset',
|
|
||||||
templateUrl: './rotation-reset.component.html',
|
|
||||||
styleUrls: ['./rotation-reset.component.scss']
|
|
||||||
})
|
|
||||||
export class RotationResetComponent implements OnInit {
|
|
||||||
view: View;
|
|
||||||
|
|
||||||
public Rotation() {
|
|
||||||
let rotation = this.view ? this.view.getRotation() : 0;
|
|
||||||
return `rotate(${rotation}rad)`;
|
|
||||||
}
|
|
||||||
|
|
||||||
public IsNorth() {
|
|
||||||
return this.view ? this.view.getRotation() == 0 : true;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
|
||||||
this.view = this.map.instance.getView();
|
|
||||||
this.view.on('change:rotation', () => {
|
|
||||||
this.changeDetectorRef$.detectChanges();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
constructor( private map: MapComponent, private changeDetectorRef$: ChangeDetectorRef ) {
|
|
||||||
}
|
|
||||||
|
|
||||||
handleClick(event:Event) {
|
|
||||||
this.view.animate({ rotation: 0 });
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,39 +0,0 @@
|
|||||||
import { Component, Host, Input, OnInit, OnChanges, SimpleChanges, forwardRef } from '@angular/core';
|
|
||||||
import { ViewComponent, MapComponent } from 'ngx-openlayers';
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-zoom-to-extent',
|
|
||||||
template: `<ng-content></ng-content>`
|
|
||||||
})
|
|
||||||
export class ZoomToExtentComponent implements OnChanges {
|
|
||||||
view: ViewComponent;
|
|
||||||
map: MapComponent;
|
|
||||||
@Input() extent: number[];
|
|
||||||
@Input() animate: boolean = false;
|
|
||||||
|
|
||||||
constructor(@Host() view: ViewComponent, @Host() map: MapComponent) {
|
|
||||||
this.view = view;
|
|
||||||
this.map = map;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
if (this.extent) {
|
|
||||||
var options = { padding: [0, 0, 0, 0],minResolution:1 };
|
|
||||||
let size = this.map.instance.getSize();
|
|
||||||
let rem = parseFloat(getComputedStyle(document.documentElement).fontSize);
|
|
||||||
let threshold = 40 * rem;
|
|
||||||
var left = 1 * rem;
|
|
||||||
var right = 1 * rem;
|
|
||||||
var bottom = Math.round((size[1] / 2) + (4*rem));
|
|
||||||
var top = 1 * rem;
|
|
||||||
if (size[0] > threshold) {
|
|
||||||
bottom = 5 * rem;
|
|
||||||
left = 23 * rem;
|
|
||||||
}
|
|
||||||
options.padding = [top, right, bottom, left];
|
|
||||||
if (this.animate) options["duration"] = 1000;
|
|
||||||
this.view.instance.fit(this.extent, options);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
<div class="feature-list-container">
|
|
||||||
<ng-template fm-map-widget-host></ng-template>
|
|
||||||
</div>
|
|
@ -1,18 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.row {
|
|
||||||
border-bottom: 1px solid gray('500');
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row.selected {
|
|
||||||
background-color: gray('100');
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 44rem) {
|
|
||||||
.feature-list-container {
|
|
||||||
margin-top: 4rem;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,91 +0,0 @@
|
|||||||
import { Component, Input, OnInit, ComponentFactoryResolver, ViewChild, SimpleChanges, ComponentFactory, Inject} from '@angular/core';
|
|
||||||
import { Feature } from 'ol';
|
|
||||||
import { FeatureListComponent,AbstractFeatureListComponent } from '../feature-list/feature-list.component';
|
|
||||||
import { WidgetHostDirective } from '../widget-host/widget-host.directive';
|
|
||||||
import {IQueryState,PackageService } from '@farmmaps/common';
|
|
||||||
import * as mapReducers from '../../reducers/map.reducer';
|
|
||||||
import * as mapActions from '../../actions/map.actions';
|
|
||||||
import { Store } from '@ngrx/store';
|
|
||||||
import { Observable } from 'rxjs';
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-feature-list-container',
|
|
||||||
templateUrl: './feature-list-container.component.html',
|
|
||||||
styleUrls: ['./feature-list-container.component.scss']
|
|
||||||
})
|
|
||||||
export class FeatureListContainerComponent {
|
|
||||||
|
|
||||||
constructor(private store: Store<mapReducers.State>,private componentFactoryResolver: ComponentFactoryResolver, @Inject(AbstractFeatureListComponent) public featureLists: AbstractFeatureListComponent[],private packageService:PackageService ) {
|
|
||||||
this.featureLists = [...this.featureLists].reverse();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Input() features: Array<Feature>
|
|
||||||
@Input() queryState: IQueryState;
|
|
||||||
@Input() selectedFeature: Feature;
|
|
||||||
@Input() clickedFeature:Observable<Feature>;
|
|
||||||
|
|
||||||
@ViewChild(WidgetHostDirective, { static: true }) widgetHost: WidgetHostDirective;
|
|
||||||
componentRef:any;
|
|
||||||
|
|
||||||
loadComponent(queryState:IQueryState) {
|
|
||||||
let componentFactory: ComponentFactory<AbstractFeatureListComponent> = this.componentFactoryResolver.resolveComponentFactory(FeatureListComponent); // default
|
|
||||||
let selected = -1;
|
|
||||||
let maxMatches =0;
|
|
||||||
let showItem = true;
|
|
||||||
for (let i = 0; i < this.featureLists.length; i++) {
|
|
||||||
let matches=0;
|
|
||||||
let criteria=0;
|
|
||||||
if (this.featureLists[i]['forItemType']) {
|
|
||||||
criteria++;
|
|
||||||
if( this.featureLists[i]['forItemType'].indexOf(queryState.itemType) >= 0) {
|
|
||||||
matches++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(this.featureLists[i]['forChild'] ) {
|
|
||||||
criteria++;
|
|
||||||
if(queryState.parentCode && queryState.parentCode != "") {
|
|
||||||
matches++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(criteria == matches && matches > maxMatches) {
|
|
||||||
selected=i;
|
|
||||||
maxMatches = matches;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (selected >= 0) {
|
|
||||||
componentFactory = this.componentFactoryResolver.resolveComponentFactory(this.featureLists[selected]['constructor'] as any);
|
|
||||||
if (this.featureLists[selected]['collapseSearch'] === true) {
|
|
||||||
this.store.dispatch(new mapActions.CollapseSearch());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const viewContainerRef = this.widgetHost.viewContainerRef;
|
|
||||||
viewContainerRef.clear();
|
|
||||||
if(showItem) {
|
|
||||||
this.componentRef = viewContainerRef.createComponent(componentFactory);
|
|
||||||
(<AbstractFeatureListComponent>this.componentRef.instance).features = null;
|
|
||||||
(<AbstractFeatureListComponent>this.componentRef.instance).queryState = queryState;
|
|
||||||
(<AbstractFeatureListComponent>this.componentRef.instance).selectedFeature = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.clickedFeature.subscribe((feature => {
|
|
||||||
(<AbstractFeatureListComponent>this.componentRef.instance).handleFeatureClick(feature);
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
if ((changes["queryState"] && changes["queryState"].currentValue)) {
|
|
||||||
this.loadComponent(changes["queryState"].currentValue);
|
|
||||||
}
|
|
||||||
if ((changes["features"] && changes["features"].currentValue)) {
|
|
||||||
(<AbstractFeatureListComponent>this.componentRef.instance).features = changes["features"].currentValue;
|
|
||||||
this.componentRef.changeDetectorRef.detectChanges();
|
|
||||||
}
|
|
||||||
if(changes["selectedFeature"]) {
|
|
||||||
(<AbstractFeatureListComponent>this.componentRef.instance).selectedFeature = changes["selectedFeature"].currentValue;
|
|
||||||
this.componentRef.changeDetectorRef.detectChanges();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
<div class="card border-0">
|
|
||||||
<div class="card-body" *ngIf="(schemeItem|async);let schemeItem">
|
|
||||||
<fm-back-button></fm-back-button>
|
|
||||||
<h4 i18n>Farm</h4>
|
|
||||||
<h3>{{schemeItem.name}}</h3>
|
|
||||||
<div *ngIf="features;let features">
|
|
||||||
<div class="cropfields">
|
|
||||||
<div class="row m-0 pl-3 pr-3" *ngFor="let feature of features" [ngClass]="{'selected':isFeatureSelected(feature)}" (click)="handleFeatureClick(feature)" (mouseenter)="handleFeatureMouseEnter(feature)" (mouseleave)="handleFeatureMouseLeave(feature)">
|
|
||||||
<fm-map-feature-list-feature-container [feature]="feature"></fm-map-feature-list-feature-container>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,22 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
fm-map-feature-list-feature-container {
|
|
||||||
width:100%;
|
|
||||||
pointer-events:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row {
|
|
||||||
border-bottom: 1px solid gray('500');
|
|
||||||
user-select: none;
|
|
||||||
padding-left:1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row.selected {
|
|
||||||
background-color: gray('100');
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropfields {
|
|
||||||
border-top: 1px solid gray('500');
|
|
||||||
margin-left: -1.25rem;
|
|
||||||
margin-right: -1.25rem;
|
|
||||||
}
|
|
@ -1,30 +0,0 @@
|
|||||||
import { Component, Injectable,AfterViewInit, OnInit,SimpleChanges, ChangeDetectorRef} from '@angular/core';
|
|
||||||
import { Location } from '@angular/common';
|
|
||||||
import { AbstractFeatureListComponent } from '../feature-list/feature-list.component';
|
|
||||||
import {ForItemType } from '../for-item/for-itemtype.decorator';
|
|
||||||
import {ForChild } from '../for-item/for-child.decorator';
|
|
||||||
import { Store } from '@ngrx/store';
|
|
||||||
import * as mapReducers from '../../reducers/map.reducer';
|
|
||||||
import { commonReducers, ItemTypeService, IItem,ItemService } from '@farmmaps/common';
|
|
||||||
import { Observable } from 'rxjs';
|
|
||||||
|
|
||||||
@ForChild()
|
|
||||||
@ForItemType("vnd.farmmaps.itemtype.cropfield")
|
|
||||||
@Injectable()
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-feature-list-cropfield',
|
|
||||||
templateUrl: './feature-list-cropfield.component.html',
|
|
||||||
styleUrls: ['./feature-list-cropfield.component.scss']
|
|
||||||
})
|
|
||||||
export class FeatureListCropfieldComponent extends AbstractFeatureListComponent implements OnInit {
|
|
||||||
|
|
||||||
constructor(store: Store<mapReducers.State | commonReducers.State>, itemTypeService: ItemTypeService, location: Location, private itemService: ItemService) {
|
|
||||||
super(store, itemTypeService,location);
|
|
||||||
}
|
|
||||||
|
|
||||||
public schemeItem: Observable<IItem>
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.schemeItem = this.itemService.getItem(this.queryState.parentCode);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
<div class="card border-0">
|
|
||||||
<div class="card-body">
|
|
||||||
<fm-back-button></fm-back-button>
|
|
||||||
<h3><i class="fm fm-farm"></i> <span i18n>Farms</span></h3>
|
|
||||||
<div *ngIf="features;let features">
|
|
||||||
<div class="farms">
|
|
||||||
<div class="row m-0 pl-3 pr-3" *ngFor="let feature of features"[ngClass]="{'selected':isFeatureSelected(feature)}" (click)="handleFeatureClick(feature)" (mouseenter)="handleFeatureMouseEnter(feature)" (mouseleave)="handleFeatureMouseLeave(feature)">
|
|
||||||
<fm-map-feature-list-feature-container [feature]="feature"></fm-map-feature-list-feature-container>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,22 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
fm-map-feature-list-feature-container {
|
|
||||||
width:100%;
|
|
||||||
pointer-events:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row {
|
|
||||||
border-bottom: 1px solid gray('500');
|
|
||||||
user-select: none;
|
|
||||||
padding-left:1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row.selected {
|
|
||||||
background-color: gray('100');
|
|
||||||
}
|
|
||||||
|
|
||||||
.farms {
|
|
||||||
border-top: 1px solid gray('500');
|
|
||||||
margin-left: -1.25rem;
|
|
||||||
margin-right: -1.25rem;
|
|
||||||
}
|
|
@ -1,30 +0,0 @@
|
|||||||
import { Component, Injectable } from '@angular/core';
|
|
||||||
import { Location } from '@angular/common';
|
|
||||||
import { AbstractFeatureListComponent } from '../feature-list/feature-list.component';
|
|
||||||
import { ForItemType } from '../for-item/for-itemtype.decorator';
|
|
||||||
import { Store,Action } from '@ngrx/store';
|
|
||||||
import * as mapReducers from '../../reducers/map.reducer';
|
|
||||||
import { commonReducers, ItemTypeService } from '@farmmaps/common';
|
|
||||||
import * as mapActions from '../../actions/map.actions';
|
|
||||||
import { tassign } from 'tassign';
|
|
||||||
import { Router } from '@angular/router';
|
|
||||||
import { Feature } from 'ol';
|
|
||||||
|
|
||||||
@ForItemType("vnd.farmmaps.itemtype.croppingscheme")
|
|
||||||
@Injectable()
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-feature-list-croppingscheme',
|
|
||||||
templateUrl: './feature-list-croppingscheme.component.html',
|
|
||||||
styleUrls: ['./feature-list-croppingscheme.component.scss']
|
|
||||||
})
|
|
||||||
export class FeatureListCroppingschemeComponent extends AbstractFeatureListComponent {
|
|
||||||
|
|
||||||
constructor(store: Store<mapReducers.State | commonReducers.State>, itemTypeService: ItemTypeService, location: Location, private router: Router) {
|
|
||||||
super(store, itemTypeService, location);
|
|
||||||
}
|
|
||||||
|
|
||||||
getAction(feature:Feature):Action {
|
|
||||||
var queryState = tassign(mapReducers.initialState.queryState, { parentCode: feature.get('code'), itemType: "vnd.farmmaps.itemtype.cropfield" });
|
|
||||||
return new mapActions.DoQuery(queryState);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
import { Component, Input, OnInit, ComponentFactoryResolver, ViewChild, SimpleChanges, ComponentFactory, Inject, Type} from '@angular/core';
|
|
||||||
import { Feature } from 'ol';
|
|
||||||
import { AbstractFeatureListFeatureComponent,FeatureListFeatureComponent } from '../feature-list-feature/feature-list-feature.component';
|
|
||||||
import { WidgetHostDirective } from '../widget-host/widget-host.directive';
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-feature-list-feature-container',
|
|
||||||
template: `
|
|
||||||
<div>
|
|
||||||
<ng-template fm-map-widget-host></ng-template>
|
|
||||||
</div>
|
|
||||||
`
|
|
||||||
})
|
|
||||||
export class FeatureListFeatureContainerComponent {
|
|
||||||
|
|
||||||
constructor(private componentFactoryResolver: ComponentFactoryResolver, @Inject(AbstractFeatureListFeatureComponent) public featureLists: AbstractFeatureListFeatureComponent[] ) {
|
|
||||||
this.featureLists = [...this.featureLists].reverse();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Input() feature: Feature;
|
|
||||||
|
|
||||||
@ViewChild(WidgetHostDirective, { static: true }) widgetHost: WidgetHostDirective;
|
|
||||||
|
|
||||||
loadComponent() {
|
|
||||||
var componentFactory: ComponentFactory<AbstractFeatureListFeatureComponent> = this.componentFactoryResolver.resolveComponentFactory(FeatureListFeatureComponent); // default
|
|
||||||
|
|
||||||
let selected = -1;
|
|
||||||
let maxMatches =0;
|
|
||||||
for (let i = 0; i < this.featureLists.length; i++) {
|
|
||||||
let matches=0;
|
|
||||||
let criteria=0;
|
|
||||||
if (this.featureLists[i]['forItemType']) {
|
|
||||||
criteria++;
|
|
||||||
if(this.featureLists[i]['forItemType'].indexOf(this.feature.get("itemType")) >= 0) {
|
|
||||||
matches++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(criteria == matches && matches > maxMatches) {
|
|
||||||
selected=i;
|
|
||||||
maxMatches = matches;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (selected >= 0) {
|
|
||||||
componentFactory = this.componentFactoryResolver.resolveComponentFactory(this.featureLists[selected]['constructor'] as any);
|
|
||||||
}
|
|
||||||
|
|
||||||
const viewContainerRef = this.widgetHost.viewContainerRef;
|
|
||||||
viewContainerRef.clear();
|
|
||||||
|
|
||||||
const componentRef = viewContainerRef.createComponent(componentFactory);
|
|
||||||
(<AbstractFeatureListFeatureComponent>componentRef.instance).feature = this.feature;
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
if (changes["feature"] && changes["feature"].currentValue) {
|
|
||||||
this.loadComponent();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
<div *ngIf="feature;let feature" class="d-flex m-0">
|
|
||||||
<div class="p-2">
|
|
||||||
<div class="thumbnail">
|
|
||||||
<fm-map-feature-thumbnail [feature]="feature"></fm-map-feature-thumbnail>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="flex-grow p-2 overflow-hidden">
|
|
||||||
<h1 class="card-title" title="{{feature.get('name')}}">{{feature.get('name')}}</h1>
|
|
||||||
<div class="card-text"><span>{{areaInHa(feature)| number:'1.2-2'}}
|
|
||||||
ha</span> <span>{{feature.get('cropTypeName')}}</span> </div>
|
|
||||||
<div class="card-text"><span>{{feature.get('datadate')|date}}</span> -
|
|
||||||
<span>{{feature.get('dataenddate')|date}}</span> </div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,26 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.card-title {
|
|
||||||
font-size: 1rem;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-text {
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
.col {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thumbnail {
|
|
||||||
width: 4em;
|
|
||||||
height: 4em;
|
|
||||||
}
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
import { Component, Injectable,ViewChild,AfterViewInit} from '@angular/core';
|
|
||||||
import { Feature } from 'ol';
|
|
||||||
import { Store } from '@ngrx/store';
|
|
||||||
import * as mapReducers from '../../reducers/map.reducer';
|
|
||||||
import { commonReducers,ItemTypeService,AppConfig } from '@farmmaps/common';
|
|
||||||
import { AbstractFeatureListFeatureComponent } from '../feature-list-feature/feature-list-feature.component';
|
|
||||||
import { ForItemType } from '../for-item/for-itemtype.decorator';
|
|
||||||
import {getArea} from 'ol/sphere';
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ForItemType("vnd.farmmaps.itemtype.cropfield")
|
|
||||||
@Injectable()
|
|
||||||
@Component({
|
|
||||||
selector: 'fm-map-feature-list-feature-cropfield',
|
|
||||||
templateUrl: './feature-list-feature-cropfield.component.html',
|
|
||||||
styleUrls: ['./feature-list-feature-cropfield.component.scss']
|
|
||||||
})
|
|
||||||
export class FeatureListFeatureCropfieldComponent extends AbstractFeatureListFeatureComponent {
|
|
||||||
|
|
||||||
|
|
||||||
constructor(store: Store<mapReducers.State | commonReducers.State>, itemTypeService: ItemTypeService,config:AppConfig) {
|
|
||||||
super(store, itemTypeService,config);
|
|
||||||
}
|
|
||||||
|
|
||||||
areaInHa(feature:Feature):number {
|
|
||||||
if(!feature) return 0;
|
|
||||||
// get area from faeture if 0 calculate from polygon
|
|
||||||
let a = feature.get('area');
|
|
||||||
if(a) return a;
|
|
||||||
return getArea(feature.getGeometry(),{projectio:"EPSG:3857"}) / 10000;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
<div *ngIf="feature;let feature" class="row m-0">
|
|
||||||
<div class="col p-2">
|
|
||||||
<h1 class="card-title" title="{{feature.get('name')}}">{{feature.get('name')}}</h1>
|
|
||||||
<div class="card-text">{{feature.get('datadate')|date:'shortDate'}}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -1,29 +0,0 @@
|
|||||||
@import "~bootstrap/scss/bootstrap.scss";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.card-title {
|
|
||||||
font-size: 1rem;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thumbnail > img {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thumbnail > div {
|
|
||||||
width: 100%;
|
|
||||||
font-size: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
min-height: 3rem;
|
|
||||||
color: white;
|
|
||||||
padding-top: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.col {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user