@amnex/ui-atoms 1.0.9 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -316,12 +316,13 @@ class AmnexMaps {
316
316
  locations = [];
317
317
  zoom = 10;
318
318
  height = '500px';
319
+ showMarkers = true;
320
+ showLabels = true;
319
321
  map;
320
322
  vectorSource = new VectorSource();
321
323
  ngAfterViewInit() {
322
324
  this.initMap();
323
325
  }
324
- // Agar database se data thoda late aata hai, toh ye function markers ko update kar dega
325
326
  ngOnChanges(changes) {
326
327
  if (changes['locations'] && !changes['locations'].firstChange) {
327
328
  this.updateMarkers();
@@ -353,39 +354,38 @@ class AmnexMaps {
353
354
  updateMarkers() {
354
355
  if (!this.map)
355
356
  return;
356
- this.vectorSource.clear(); // Purane markers hatayein
357
+ this.vectorSource.clear();
357
358
  const features = this.locations.map(loc => {
358
359
  const feature = new Feature({
359
360
  geometry: new Point(fromLonLat([loc.lng, loc.lat]))
360
361
  });
361
362
  feature.setStyle(new Style({
362
- image: new Icon({
363
+ image: this.showMarkers ? new Icon({
363
364
  anchor: [0.5, 1],
364
365
  src: 'https://openlayers.org/en/latest/examples/data/icon.png',
365
366
  scale: 0.8
366
- }),
367
- text: new Text({
367
+ }) : undefined,
368
+ text: this.showLabels ? new Text({
368
369
  text: loc.title,
369
370
  font: 'bold 13px Calibri,sans-serif',
370
371
  fill: new Fill({ color: '#fff' }),
371
372
  stroke: new Stroke({ color: '#000', width: 3 }),
372
- offsetY: -45
373
- })
373
+ offsetY: this.showMarkers ? -45 : 0
374
+ }) : undefined
374
375
  }));
375
376
  return feature;
376
377
  });
377
378
  this.vectorSource.addFeatures(features);
378
- // Auto-Center: Pehle location par focus karein
379
379
  if (this.locations.length > 0) {
380
380
  this.map.getView().setCenter(fromLonLat([this.locations[0].lng, this.locations[0].lat]));
381
381
  }
382
382
  }
383
383
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AmnexMaps, deps: [], target: i0.ɵɵFactoryTarget.Component });
384
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AmnexMaps, isStandalone: true, selector: "amnex-maps", inputs: { locations: "locations", zoom: "zoom", height: "height" }, viewQueries: [{ propertyName: "mapElement", first: true, predicate: ["mapElement"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>", styles: [".map-container{width:100%;border-radius:12px;border:2px solid #ddd;overflow:hidden;box-shadow:0 4px 6px #0000001a}\n"] });
384
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AmnexMaps, isStandalone: true, selector: "amnex-maps", inputs: { locations: "locations", zoom: "zoom", height: "height", showMarkers: "showMarkers", showLabels: "showLabels" }, viewQueries: [{ propertyName: "mapElement", first: true, predicate: ["mapElement"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>", styles: [".map-container{width:100%;border-radius:12px;border:2px solid #ddd;overflow:hidden;box-shadow:0 4px 6px #0000001a}\n"] });
385
385
  }
386
386
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AmnexMaps, decorators: [{
387
387
  type: Component,
388
- args: [{ selector: 'amnex-maps', imports: [], template: "<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>", styles: [".map-container{width:100%;border-radius:12px;border:2px solid #ddd;overflow:hidden;box-shadow:0 4px 6px #0000001a}\n"] }]
388
+ args: [{ selector: 'amnex-maps', standalone: true, imports: [], template: "<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>", styles: [".map-container{width:100%;border-radius:12px;border:2px solid #ddd;overflow:hidden;box-shadow:0 4px 6px #0000001a}\n"] }]
389
389
  }], propDecorators: { mapElement: [{
390
390
  type: ViewChild,
391
391
  args: ['mapElement']
@@ -396,6 +396,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
396
396
  type: Input
397
397
  }], height: [{
398
398
  type: Input
399
+ }], showMarkers: [{
400
+ type: Input
401
+ }], showLabels: [{
402
+ type: Input
399
403
  }] } });
400
404
 
401
405
  class AMNEX_COMPONENTS {
@@ -1 +1 @@
1
- {"version":3,"file":"amnex-ui-atoms.mjs","sources":["../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-maps/amnex-maps.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-maps/amnex-maps.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-components.ts","../../../../projects/amnex/ui-atoms/src/public-api.ts","../../../../projects/amnex/ui-atoms/src/amnex-ui-atoms.ts"],"sourcesContent":["import { Component ,Input,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-button',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-button.html',\r\n styleUrl: './amnex-button.css',\r\n encapsulation: ViewEncapsulation.None,\r\n \r\n})\r\nexport class AmnexButton {\r\n\r\n\r\n @Input() type: 'button' | 'submit' | 'reset' = 'button';\r\n\r\n @Input() disabled: boolean = false;\r\n}\r\n","<button [disabled]=\"disabled\" [type]=\"type\"><ng-content></ng-content></button>","import { Component,forwardRef,Input, ViewEncapsulation ,Output,EventEmitter} from '@angular/core';\r\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-file',\r\n standalone:true,\r\n encapsulation: ViewEncapsulation.None,\r\n imports: [],\r\n templateUrl: './amnex-file.html',\r\n styleUrl: './amnex-file.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexFile ), multi: true }],\r\n\r\n})\r\nexport class AmnexFile {\r\n\r\n\r\n @Input() accept = '*'; // Kaunsi files allow karni hain (e.g. '.pdf,.png')\r\n @Output() fileSelected = new EventEmitter<File | FileList>();\r\n\r\n onFileChange(event: any) {\r\n const files = event.target.files;\r\n if (files.length > 0) {\r\n this.fileSelected.emit(files);\r\n }\r\n }\r\n}\r\n","<input \r\n type=\"file\" \r\n [accept]=\"accept\" \r\n (change)=\"onFileChange($event)\">","import { Component ,EventEmitter,Output,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-form',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-form.html',\r\n styleUrl: './amnex-form.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexForm {\r\n\r\n @Output() ngSubmit = new EventEmitter<Event>();\r\n\r\n onSubmit(event: Event) {\r\n this.ngSubmit.emit(event);\r\n }\r\n}\r\n","<form (ngSubmit)=\"onSubmit($event)\" ngNativeValidate><ng-content></ng-content></form>","import { Component, forwardRef ,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-input',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-input.html',\r\n styleUrl: './amnex-input.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexInput), multi: true }],\r\n})\r\nexport class AmnexInput implements ControlValueAccessor{\r\n @Input() type ='text';\r\n @Input() placeholder ='';\r\n\r\n value : any ='';\r\n onChange=(v:any)=>{};\r\n onTouched =()=>{};\r\n\r\n writeValue(val: any): void {\r\n this.value = val || '';\r\n }\r\n registerOnChange(fn: any): void {\r\n this.onChange = fn;\r\n }\r\n registerOnTouched(fn: any): void {\r\n this.onTouched = fn;\r\n }\r\n\r\n onInput(e:any){\r\n this.value= e.target.value;\r\n\r\n this.onChange(this.value);\r\n }\r\n\r\n\r\n}\r\n","<input [type]=\"type\" \r\n[placeholder]=\"placeholder\" \r\n[value]=\"value\" \r\n(input)=\"onInput($event)\" \r\n(blur)=\"onTouched()\">\r\n","import { Component , ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-label',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-label.html',\r\n styleUrl: './amnex-label.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexLabel {\r\n\r\n}\r\n","<label><ng-content></ng-content></label>","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h1',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h1.html',\r\n styleUrl: './amnex-h1.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH1 {\r\n\r\n}\r\n","<h1><ng-content></ng-content></h1>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h2',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h2.html',\r\n styleUrl: './amnex-h2.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH2 {\r\n\r\n}\r\n","<h2> <ng-content></ng-content></h2>\r\n","import { Component , ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h3',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h3.html',\r\n styleUrl: './amnex-h3.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH3 {\r\n\r\n}\r\n","<h3><ng-content></ng-content></h3>\r\n","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h4',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h4.html',\r\n styleUrl: './amnex-h4.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH4 {\r\n\r\n}\r\n","<h4><ng-content></ng-content></h4>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h5',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h5.html',\r\n styleUrl: './amnex-h5.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH5 {\r\n\r\n}\r\n","<h5><ng-content></ng-content></h5>\r\n","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h6',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h6.html',\r\n styleUrl: './amnex-h6.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH6 {\r\n\r\n}\r\n","<h6><ng-content></ng-content></h6>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-p',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-p.html',\r\n styleUrl: './amnex-p.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexP {\r\n\r\n}\r\n","<p><ng-content></ng-content></p>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-radio',\r\n standalone:true,\r\n imports: [CommonModule],\r\n encapsulation: ViewEncapsulation.None,\r\n templateUrl: './amnex-radio.html',\r\n styleUrl: './amnex-radio.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexRadio), multi: true }],\r\n\r\n})\r\nexport class AmnexRadio implements ControlValueAccessor{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() name = 'radio-group';\r\n value: any;\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(val: any) { this.value = val; this.onChange(val); }\r\n}\r\n","<div *ngFor=\"let opt of options\">\r\n <input type=\"radio\" [name]=\"name\" [value]=\"opt.value\" [checked]=\"value === opt.value\" (change)=\"onInput(opt.value)\">\r\n <span>{{opt.label}}</span>\r\n </div>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-select',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-select.html',\r\n styleUrl: './amnex-select.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexSelect), multi: true }],\r\n})\r\nexport class AmnexSelect implements ControlValueAccessor\r\n{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() placeholder = 'Select';\r\n value: any = '';\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(e: any) { this.value = e.target.value; this.onChange(this.value);\r\n }\r\n\r\n}\r\n","<select\r\n [value]=\"value\"\r\n (change)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n<option value=\"\" disabled>{{placeholder}}</option>\r\n<option *ngFor=\"let opt of options\" [value]=\"opt.value\">{{opt.label}}</select>\r\n","import { Component ,forwardRef,Input ,ViewEncapsulation} from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-textarea',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-textarea.html',\r\n styleUrl: './amnex-textarea.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexTextarea), multi: true }],\r\n})\r\nexport class AmnexTextarea implements ControlValueAccessor {\r\n @Input() placeholder = '';\r\n value: any = '';\r\n\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n\r\n writeValue(val: any): void { this.value = val || ''; }\r\n registerOnChange(fn: any): void { this.onChange = fn; }\r\n registerOnTouched(fn: any): void { this.onTouched = fn; }\r\n\r\n onInput(e: any) {\r\n this.value = e.target.value;\r\n this.onChange(this.value);\r\n }\r\n \r\n\r\n}\r\n","<textarea \r\n [placeholder]=\"placeholder\" \r\n [value]=\"value\" \r\n (input)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n </textarea>","import { CommonModule } from '@angular/common';\r\nimport { AfterViewInit, Component, ElementRef, Input, ViewChild } from '@angular/core';\r\nimport { Feature, View } from 'ol';\r\nimport { Point } from 'ol/geom';\r\nimport TileLayer from 'ol/layer/Tile';\r\nimport VectorLayer from 'ol/layer/Vector';\r\nimport Map from 'ol/Map';\r\nimport { fromLonLat } from 'ol/proj';\r\nimport { XYZ } from 'ol/source';\r\nimport VectorSource from 'ol/source/Vector';\r\nimport { Fill, Icon, Stroke, Style , Text } from 'ol/style';\r\n\r\n\r\nexport interface MapLocation {\r\n lat: number;\r\n lng: number;\r\n title?: string;\r\n}\r\n@Component({\r\n selector: 'amnex-map',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-map.html',\r\n styleUrl: './amnex-map.css',\r\n})\r\nexport class AmnexMap implements AfterViewInit{\r\n\r\n @ViewChild('mapElement') mapElement!: ElementRef;\r\n\r\n @Input({required :true}) locations : MapLocation[]=[];\r\n @Input() zoom: number = 10;\r\n @Input() height: string = '500px';\r\n @Input() tittle: string ='';\r\n\r\n\r\n public map!: Map;\r\n\r\n \r\n ngAfterViewInit(): void {\r\n if(this.locations.length >0){\r\n this.initMap();\r\n }\r\n }\r\n\r\n\r\n private initMap(): void{\r\n const container = this.mapElement.nativeElement;\r\n\r\n const features = this.locations.map(loc =>{\r\n const feature = new Feature({\r\n geometry: new Point(fromLonLat([loc.lng, loc.lat])),\r\n name: loc.title\r\n });\r\n\r\n\r\n feature.setStyle(new Style({\r\n image: new Icon({\r\n anchor: [0.5, 1],\r\n src: 'https://openlayers.org/en/latest/examples/data/icon.png',\r\n scale: 0.8\r\n }),\r\n text: new Text({\r\n text: loc.title, \r\n font: 'bold 14px Arial, sans-serif',\r\n fill: new Fill({ color: '#ffffff' }), \r\n stroke: new Stroke({ color: '#000000', width: 3 }), \r\n offsetY: -45, \r\n textAlign: 'center'\r\n })\r\n\r\n \r\n\r\n }));\r\n return feature;\r\n });\r\n\r\n\r\n const vectorSource = new VectorSource({ features });\r\n const vectorLayer = new VectorLayer({ source: vectorSource });\r\n\r\n this.map = new Map({\r\n target: container,\r\n layers: [\r\n new TileLayer({\r\n source: new XYZ({\r\n url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',\r\n maxZoom: 19\r\n }),\r\n }),\r\n vectorLayer\r\n ],\r\n view: new View({\r\n center: fromLonLat([this.locations[0].lng, this.locations[0].lat]),\r\n zoom: this.zoom,\r\n }),\r\n });\r\n }\r\n}","\r\n\r\n<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>\r\n \r\n","import { AfterViewInit, Component, ElementRef, Input, OnChanges, SimpleChanges, ViewChild } from '@angular/core';\r\nimport VectorLayer from 'ol/layer/Vector';\r\nimport Map from 'ol/Map';\r\nimport { Vector } from 'ol/source';\r\nimport { fromLonLat } from 'ol/proj';\r\nimport { XYZ } from 'ol/source';\r\nimport VectorSource from 'ol/source/Vector';\r\nimport { Fill, Icon, Stroke, Style, Text } from 'ol/style';\r\nimport { Feature, View } from 'ol';\r\nimport { Point } from 'ol/geom';\r\nimport TileLayer from 'ol/layer/Tile';\r\n\r\n\r\n\r\nexport interface MapLocaion{\r\n lat:number;\r\n lng:number;\r\n title?:string\r\n}\r\n@Component({\r\n selector: 'amnex-maps',\r\n imports: [],\r\n templateUrl: './amnex-maps.html',\r\n styleUrl: './amnex-maps.css',\r\n})\r\nexport class AmnexMaps implements AfterViewInit,OnChanges{\r\n\r\n @ViewChild('mapElement') mapElement!: ElementRef;\r\n @Input({required:true}) locations: MapLocaion[]=[];\r\n\r\n @Input() zoom: number=10;\r\n @Input() height: string ='500px';\r\n\r\n public map!: Map;\r\n\r\n private vectorSource = new VectorSource();\r\n\r\n ngAfterViewInit(): void {\r\n this.initMap();\r\n }\r\n\r\n // Agar database se data thoda late aata hai, toh ye function markers ko update kar dega\r\n ngOnChanges(changes: SimpleChanges): void {\r\n if (changes['locations'] && !changes['locations'].firstChange) {\r\n this.updateMarkers();\r\n }\r\n }\r\n\r\n private initMap(): void {\r\n const container = this.mapElement.nativeElement;\r\n\r\n const vectorLayer = new VectorLayer({\r\n source: this.vectorSource\r\n });\r\n\r\n this.map = new Map({\r\n target: container,\r\n layers: [\r\n new TileLayer({\r\n source: new XYZ({\r\n url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',\r\n maxZoom: 19\r\n }),\r\n }),\r\n vectorLayer\r\n ],\r\n view: new View({\r\n center: fromLonLat([this.locations[0]?.lng || 72.5714, this.locations[0]?.lat || 23.0225]),\r\n zoom: this.zoom,\r\n }),\r\n });\r\n\r\n this.updateMarkers();\r\n }\r\n\r\n private updateMarkers(): void {\r\n if (!this.map) return;\r\n\r\n this.vectorSource.clear(); // Purane markers hatayein\r\n\r\n const features = this.locations.map(loc => {\r\n const feature = new Feature({\r\n geometry: new Point(fromLonLat([loc.lng, loc.lat]))\r\n });\r\n\r\n feature.setStyle(new Style({\r\n image: new Icon({\r\n anchor: [0.5, 1],\r\n src: 'https://openlayers.org/en/latest/examples/data/icon.png',\r\n scale: 0.8\r\n }),\r\n text: new Text({\r\n text: loc.title,\r\n font: 'bold 13px Calibri,sans-serif',\r\n fill: new Fill({ color: '#fff' }),\r\n stroke: new Stroke({ color: '#000', width: 3 }),\r\n offsetY: -45\r\n })\r\n }));\r\n return feature;\r\n });\r\n\r\n this.vectorSource.addFeatures(features);\r\n\r\n // Auto-Center: Pehle location par focus karein\r\n if (this.locations.length > 0) {\r\n this.map.getView().setCenter(fromLonLat([this.locations[0].lng, this.locations[0].lat]));\r\n }\r\n }\r\n \r\n \r\n\r\n}\r\n","<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>","import { AmnexH1 } from \"./amnex-h1/amnex-h1\";\r\nimport { AmnexH2 } from \"./amnex-h2/amnex-h2\";\r\nimport { AmnexH3 } from \"./amnex-h3/amnex-h3\";\r\nimport { AmnexH4 } from \"./amnex-h4/amnex-h4\";\r\nimport {AmnexH5} from \"./amnex-h5/amnex-h5\";\r\nimport { AmnexH6 } from \"./amnex-h6/amnex-h6\";\r\nimport { AmnexInput } from \"./amnex-input/amnex-input\";\r\nimport { AmnexLabel } from \"./amnex-label/amnex-label\";\r\nimport { AmnexP } from \"./amnex-p/amnex-p\";\r\nimport { AmnexButton } from \"./amnex-button/amnex-button\";\r\nimport { AmnexRadio } from \"./amnex-radio/amnex-radio\";\r\nimport { AmnexSelect } from \"./amnex-select/amnex-select\";\r\nimport { AmnexTextarea } from \"./amnex-textarea/amnex-textarea\";\r\nimport { AmnexFile } from \"./amnex-file/amnex-file\";\r\nimport { AmnexForm } from \"./amnex-form/amnex-form\";\r\nimport { NgModule } from \"@angular/core\";\r\nimport { CommonModule } from \"@angular/common\";\r\nimport { AmnexMap } from \"./amnex-map/amnex-map\";\r\nimport { AmnexMaps } from \"./amnex-maps/amnex-maps\";\r\n\r\n\r\n\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap,\r\n AmnexMaps\r\n \r\n ],\r\n exports: [\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap,\r\n AmnexMaps\r\n ]\r\n})\r\n\r\nexport class AMNEX_COMPONENTS {}\r\n","/*\r\n * Public API Surface of ui-atoms\r\n */\r\nexport * from './lib/amnex-button/amnex-button';\r\nexport * from './lib/amnex-file/amnex-file';\r\nexport * from './lib/amnex-form/amnex-form';\r\nexport * from './lib/amnex-input/amnex-input';\r\nexport * from './lib/amnex-label/amnex-label';\r\nexport * from './lib/amnex-h1/amnex-h1';\r\nexport * from './lib/amnex-h2/amnex-h2';\r\nexport * from './lib/amnex-h3/amnex-h3';\r\nexport * from './lib/amnex-h4/amnex-h4';\r\nexport * from './lib/amnex-h5/amnex-h5';\r\nexport * from './lib/amnex-h6/amnex-h6';\r\nexport * from './lib/amnex-p/amnex-p';\r\nexport * from './lib/amnex-radio/amnex-radio';\r\nexport * from './lib/amnex-select/amnex-select';\r\nexport * from './lib/amnex-textarea/amnex-textarea';\r\nexport * from './lib/amnex-map/amnex-map';\r\nexport * from './lib/amnex-components';\r\nexport * from './lib/amnex-maps/amnex-maps';\r\n\r\n\r\n\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"amnex-ui-atoms.mjs","sources":["../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-button/amnex-button.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-file/amnex-file.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-form/amnex-form.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-input/amnex-input.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-label/amnex-label.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h1/amnex-h1.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h2/amnex-h2.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h3/amnex-h3.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h4/amnex-h4.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h5/amnex-h5.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-h6/amnex-h6.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-p/amnex-p.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-radio/amnex-radio.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-select/amnex-select.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-textarea/amnex-textarea.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-map/amnex-map.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-maps/amnex-maps.ts","../../../../projects/amnex/ui-atoms/src/lib/amnex-maps/amnex-maps.html","../../../../projects/amnex/ui-atoms/src/lib/amnex-components.ts","../../../../projects/amnex/ui-atoms/src/public-api.ts","../../../../projects/amnex/ui-atoms/src/amnex-ui-atoms.ts"],"sourcesContent":["import { Component ,Input,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-button',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-button.html',\r\n styleUrl: './amnex-button.css',\r\n encapsulation: ViewEncapsulation.None,\r\n \r\n})\r\nexport class AmnexButton {\r\n\r\n\r\n @Input() type: 'button' | 'submit' | 'reset' = 'button';\r\n\r\n @Input() disabled: boolean = false;\r\n}\r\n","<button [disabled]=\"disabled\" [type]=\"type\"><ng-content></ng-content></button>","import { Component,forwardRef,Input, ViewEncapsulation ,Output,EventEmitter} from '@angular/core';\r\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-file',\r\n standalone:true,\r\n encapsulation: ViewEncapsulation.None,\r\n imports: [],\r\n templateUrl: './amnex-file.html',\r\n styleUrl: './amnex-file.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexFile ), multi: true }],\r\n\r\n})\r\nexport class AmnexFile {\r\n\r\n\r\n @Input() accept = '*'; // Kaunsi files allow karni hain (e.g. '.pdf,.png')\r\n @Output() fileSelected = new EventEmitter<File | FileList>();\r\n\r\n onFileChange(event: any) {\r\n const files = event.target.files;\r\n if (files.length > 0) {\r\n this.fileSelected.emit(files);\r\n }\r\n }\r\n}\r\n","<input \r\n type=\"file\" \r\n [accept]=\"accept\" \r\n (change)=\"onFileChange($event)\">","import { Component ,EventEmitter,Output,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-form',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-form.html',\r\n styleUrl: './amnex-form.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexForm {\r\n\r\n @Output() ngSubmit = new EventEmitter<Event>();\r\n\r\n onSubmit(event: Event) {\r\n this.ngSubmit.emit(event);\r\n }\r\n}\r\n","<form (ngSubmit)=\"onSubmit($event)\" ngNativeValidate><ng-content></ng-content></form>","import { Component, forwardRef ,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-input',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-input.html',\r\n styleUrl: './amnex-input.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexInput), multi: true }],\r\n})\r\nexport class AmnexInput implements ControlValueAccessor{\r\n @Input() type ='text';\r\n @Input() placeholder ='';\r\n\r\n value : any ='';\r\n onChange=(v:any)=>{};\r\n onTouched =()=>{};\r\n\r\n writeValue(val: any): void {\r\n this.value = val || '';\r\n }\r\n registerOnChange(fn: any): void {\r\n this.onChange = fn;\r\n }\r\n registerOnTouched(fn: any): void {\r\n this.onTouched = fn;\r\n }\r\n\r\n onInput(e:any){\r\n this.value= e.target.value;\r\n\r\n this.onChange(this.value);\r\n }\r\n\r\n\r\n}\r\n","<input [type]=\"type\" \r\n[placeholder]=\"placeholder\" \r\n[value]=\"value\" \r\n(input)=\"onInput($event)\" \r\n(blur)=\"onTouched()\">\r\n","import { Component , ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-label',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-label.html',\r\n styleUrl: './amnex-label.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexLabel {\r\n\r\n}\r\n","<label><ng-content></ng-content></label>","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h1',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h1.html',\r\n styleUrl: './amnex-h1.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH1 {\r\n\r\n}\r\n","<h1><ng-content></ng-content></h1>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h2',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h2.html',\r\n styleUrl: './amnex-h2.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH2 {\r\n\r\n}\r\n","<h2> <ng-content></ng-content></h2>\r\n","import { Component , ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h3',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h3.html',\r\n styleUrl: './amnex-h3.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH3 {\r\n\r\n}\r\n","<h3><ng-content></ng-content></h3>\r\n","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h4',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h4.html',\r\n styleUrl: './amnex-h4.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH4 {\r\n\r\n}\r\n","<h4><ng-content></ng-content></h4>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h5',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h5.html',\r\n styleUrl: './amnex-h5.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH5 {\r\n\r\n}\r\n","<h5><ng-content></ng-content></h5>\r\n","import { Component ,ViewEncapsulation} from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-h6',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-h6.html',\r\n styleUrl: './amnex-h6.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexH6 {\r\n\r\n}\r\n","<h6><ng-content></ng-content></h6>","import { Component ,ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'amnex-p',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-p.html',\r\n styleUrl: './amnex-p.css',\r\n encapsulation: ViewEncapsulation.None\r\n})\r\nexport class AmnexP {\r\n\r\n}\r\n","<p><ng-content></ng-content></p>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-radio',\r\n standalone:true,\r\n imports: [CommonModule],\r\n encapsulation: ViewEncapsulation.None,\r\n templateUrl: './amnex-radio.html',\r\n styleUrl: './amnex-radio.css',\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexRadio), multi: true }],\r\n\r\n})\r\nexport class AmnexRadio implements ControlValueAccessor{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() name = 'radio-group';\r\n value: any;\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(val: any) { this.value = val; this.onChange(val); }\r\n}\r\n","<div *ngFor=\"let opt of options\">\r\n <input type=\"radio\" [name]=\"name\" [value]=\"opt.value\" [checked]=\"value === opt.value\" (change)=\"onInput(opt.value)\">\r\n <span>{{opt.label}}</span>\r\n </div>","import { CommonModule } from '@angular/common';\r\nimport { Component ,forwardRef,Input ,ViewEncapsulation } from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-select',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-select.html',\r\n styleUrl: './amnex-select.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexSelect), multi: true }],\r\n})\r\nexport class AmnexSelect implements ControlValueAccessor\r\n{\r\n @Input() options: {label: string, value: any}[] = [];\r\n @Input() placeholder = 'Select';\r\n value: any = '';\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n writeValue(v: any) { this.value = v; }\r\n registerOnChange(fn: any) { this.onChange = fn; }\r\n registerOnTouched(fn: any) { this.onTouched = fn; }\r\n onInput(e: any) { this.value = e.target.value; this.onChange(this.value);\r\n }\r\n\r\n}\r\n","<select\r\n [value]=\"value\"\r\n (change)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n<option value=\"\" disabled>{{placeholder}}</option>\r\n<option *ngFor=\"let opt of options\" [value]=\"opt.value\">{{opt.label}}</select>\r\n","import { Component ,forwardRef,Input ,ViewEncapsulation} from '@angular/core';\r\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\r\n\r\n@Component({\r\n selector: 'amnex-textarea',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-textarea.html',\r\n styleUrl: './amnex-textarea.css',\r\n encapsulation: ViewEncapsulation.None,\r\n providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AmnexTextarea), multi: true }],\r\n})\r\nexport class AmnexTextarea implements ControlValueAccessor {\r\n @Input() placeholder = '';\r\n value: any = '';\r\n\r\n onChange = (v: any) => {};\r\n onTouched = () => {};\r\n\r\n writeValue(val: any): void { this.value = val || ''; }\r\n registerOnChange(fn: any): void { this.onChange = fn; }\r\n registerOnTouched(fn: any): void { this.onTouched = fn; }\r\n\r\n onInput(e: any) {\r\n this.value = e.target.value;\r\n this.onChange(this.value);\r\n }\r\n \r\n\r\n}\r\n","<textarea \r\n [placeholder]=\"placeholder\" \r\n [value]=\"value\" \r\n (input)=\"onInput($event)\" \r\n (blur)=\"onTouched()\">\r\n </textarea>","import { CommonModule } from '@angular/common';\r\nimport { AfterViewInit, Component, ElementRef, Input, ViewChild } from '@angular/core';\r\nimport { Feature, View } from 'ol';\r\nimport { Point } from 'ol/geom';\r\nimport TileLayer from 'ol/layer/Tile';\r\nimport VectorLayer from 'ol/layer/Vector';\r\nimport Map from 'ol/Map';\r\nimport { fromLonLat } from 'ol/proj';\r\nimport { XYZ } from 'ol/source';\r\nimport VectorSource from 'ol/source/Vector';\r\nimport { Fill, Icon, Stroke, Style , Text } from 'ol/style';\r\n\r\n\r\nexport interface MapLocation {\r\n lat: number;\r\n lng: number;\r\n title?: string;\r\n}\r\n@Component({\r\n selector: 'amnex-map',\r\n standalone:true,\r\n imports: [CommonModule],\r\n templateUrl: './amnex-map.html',\r\n styleUrl: './amnex-map.css',\r\n})\r\nexport class AmnexMap implements AfterViewInit{\r\n\r\n @ViewChild('mapElement') mapElement!: ElementRef;\r\n\r\n @Input({required :true}) locations : MapLocation[]=[];\r\n @Input() zoom: number = 10;\r\n @Input() height: string = '500px';\r\n @Input() tittle: string ='';\r\n\r\n\r\n public map!: Map;\r\n\r\n \r\n ngAfterViewInit(): void {\r\n if(this.locations.length >0){\r\n this.initMap();\r\n }\r\n }\r\n\r\n\r\n private initMap(): void{\r\n const container = this.mapElement.nativeElement;\r\n\r\n const features = this.locations.map(loc =>{\r\n const feature = new Feature({\r\n geometry: new Point(fromLonLat([loc.lng, loc.lat])),\r\n name: loc.title\r\n });\r\n\r\n\r\n feature.setStyle(new Style({\r\n image: new Icon({\r\n anchor: [0.5, 1],\r\n src: 'https://openlayers.org/en/latest/examples/data/icon.png',\r\n scale: 0.8\r\n }),\r\n text: new Text({\r\n text: loc.title, \r\n font: 'bold 14px Arial, sans-serif',\r\n fill: new Fill({ color: '#ffffff' }), \r\n stroke: new Stroke({ color: '#000000', width: 3 }), \r\n offsetY: -45, \r\n textAlign: 'center'\r\n })\r\n\r\n \r\n\r\n }));\r\n return feature;\r\n });\r\n\r\n\r\n const vectorSource = new VectorSource({ features });\r\n const vectorLayer = new VectorLayer({ source: vectorSource });\r\n\r\n this.map = new Map({\r\n target: container,\r\n layers: [\r\n new TileLayer({\r\n source: new XYZ({\r\n url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',\r\n maxZoom: 19\r\n }),\r\n }),\r\n vectorLayer\r\n ],\r\n view: new View({\r\n center: fromLonLat([this.locations[0].lng, this.locations[0].lat]),\r\n zoom: this.zoom,\r\n }),\r\n });\r\n }\r\n}","\r\n\r\n<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>\r\n \r\n","import { AfterViewInit, Component, ElementRef, Input, OnChanges, SimpleChanges, ViewChild } from '@angular/core';\r\nimport VectorLayer from 'ol/layer/Vector';\r\nimport Map from 'ol/Map';\r\nimport { Vector } from 'ol/source';\r\nimport { fromLonLat } from 'ol/proj';\r\nimport { XYZ } from 'ol/source';\r\nimport VectorSource from 'ol/source/Vector';\r\nimport { Fill, Icon, Stroke, Style, Text } from 'ol/style';\r\nimport { Feature, View } from 'ol';\r\nimport { Point } from 'ol/geom';\r\nimport TileLayer from 'ol/layer/Tile';\r\n\r\n\r\n\r\nexport interface MapLocaion{\r\n lat:number;\r\n lng:number;\r\n title?:string\r\n}\r\n@Component({\r\n selector: 'amnex-maps',\r\n standalone:true,\r\n imports: [],\r\n templateUrl: './amnex-maps.html',\r\n styleUrl: './amnex-maps.css',\r\n})\r\nexport class AmnexMaps implements AfterViewInit,OnChanges{\r\n\r\n @ViewChild('mapElement') mapElement!: ElementRef;\r\n @Input({required:true}) locations: MapLocaion[]=[];\r\n\r\n @Input() zoom: number=10;\r\n @Input() height: string ='500px';\r\n @Input() showMarkers: boolean = true;\r\n @Input() showLabels: boolean = true;\r\n\r\n public map!: Map;\r\n\r\n private vectorSource = new VectorSource();\r\n\r\n ngAfterViewInit(): void {\r\n this.initMap();\r\n }\r\n\r\n ngOnChanges(changes: SimpleChanges): void {\r\n if (changes['locations'] && !changes['locations'].firstChange) {\r\n this.updateMarkers();\r\n }\r\n }\r\n\r\n private initMap(): void {\r\n const container = this.mapElement.nativeElement;\r\n\r\n const vectorLayer = new VectorLayer({\r\n source: this.vectorSource\r\n });\r\n\r\n this.map = new Map({\r\n target: container,\r\n layers: [\r\n new TileLayer({\r\n source: new XYZ({\r\n url: 'https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',\r\n maxZoom: 19\r\n }),\r\n }),\r\n vectorLayer\r\n ],\r\n view: new View({\r\n center: fromLonLat([this.locations[0]?.lng || 72.5714, this.locations[0]?.lat || 23.0225]),\r\n zoom: this.zoom,\r\n }),\r\n });\r\n\r\n this.updateMarkers();\r\n }\r\n\r\n private updateMarkers(): void {\r\n if (!this.map) return;\r\n\r\n this.vectorSource.clear(); \r\n\r\n const features = this.locations.map(loc => {\r\n const feature = new Feature({\r\n geometry: new Point(fromLonLat([loc.lng, loc.lat]))\r\n });\r\n\r\n feature.setStyle(new Style({\r\n image: this.showMarkers? new Icon({\r\n anchor: [0.5, 1],\r\n src: 'https://openlayers.org/en/latest/examples/data/icon.png',\r\n scale: 0.8\r\n }):undefined,\r\n text: this.showLabels? new Text({\r\n text: loc.title,\r\n font: 'bold 13px Calibri,sans-serif',\r\n fill: new Fill({ color: '#fff' }),\r\n stroke: new Stroke({ color: '#000', width: 3 }),\r\n offsetY: this.showMarkers? -45:0\r\n }):undefined\r\n }));\r\n return feature;\r\n });\r\n\r\n this.vectorSource.addFeatures(features);\r\n\r\n if (this.locations.length > 0) {\r\n this.map.getView().setCenter(fromLonLat([this.locations[0].lng, this.locations[0].lat]));\r\n }\r\n }\r\n \r\n \r\n\r\n}\r\n","<div #mapElement class=\"map-container\" [style.height]=\"height\"></div>","import { AmnexH1 } from \"./amnex-h1/amnex-h1\";\r\nimport { AmnexH2 } from \"./amnex-h2/amnex-h2\";\r\nimport { AmnexH3 } from \"./amnex-h3/amnex-h3\";\r\nimport { AmnexH4 } from \"./amnex-h4/amnex-h4\";\r\nimport {AmnexH5} from \"./amnex-h5/amnex-h5\";\r\nimport { AmnexH6 } from \"./amnex-h6/amnex-h6\";\r\nimport { AmnexInput } from \"./amnex-input/amnex-input\";\r\nimport { AmnexLabel } from \"./amnex-label/amnex-label\";\r\nimport { AmnexP } from \"./amnex-p/amnex-p\";\r\nimport { AmnexButton } from \"./amnex-button/amnex-button\";\r\nimport { AmnexRadio } from \"./amnex-radio/amnex-radio\";\r\nimport { AmnexSelect } from \"./amnex-select/amnex-select\";\r\nimport { AmnexTextarea } from \"./amnex-textarea/amnex-textarea\";\r\nimport { AmnexFile } from \"./amnex-file/amnex-file\";\r\nimport { AmnexForm } from \"./amnex-form/amnex-form\";\r\nimport { NgModule } from \"@angular/core\";\r\nimport { CommonModule } from \"@angular/common\";\r\nimport { AmnexMap } from \"./amnex-map/amnex-map\";\r\nimport { AmnexMaps } from \"./amnex-maps/amnex-maps\";\r\n\r\n\r\n\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap,\r\n AmnexMaps\r\n \r\n ],\r\n exports: [\r\n AmnexInput,\r\n AmnexButton,\r\n AmnexRadio,\r\n AmnexSelect,\r\n AmnexTextarea,\r\n AmnexFile,\r\n AmnexForm,\r\n AmnexH1,\r\n AmnexH6,\r\n AmnexP,\r\n AmnexLabel,\r\n AmnexMap,\r\n AmnexMaps\r\n ]\r\n})\r\n\r\nexport class AMNEX_COMPONENTS {}\r\n","/*\r\n * Public API Surface of ui-atoms\r\n */\r\nexport * from './lib/amnex-button/amnex-button';\r\nexport * from './lib/amnex-file/amnex-file';\r\nexport * from './lib/amnex-form/amnex-form';\r\nexport * from './lib/amnex-input/amnex-input';\r\nexport * from './lib/amnex-label/amnex-label';\r\nexport * from './lib/amnex-h1/amnex-h1';\r\nexport * from './lib/amnex-h2/amnex-h2';\r\nexport * from './lib/amnex-h3/amnex-h3';\r\nexport * from './lib/amnex-h4/amnex-h4';\r\nexport * from './lib/amnex-h5/amnex-h5';\r\nexport * from './lib/amnex-h6/amnex-h6';\r\nexport * from './lib/amnex-p/amnex-p';\r\nexport * from './lib/amnex-radio/amnex-radio';\r\nexport * from './lib/amnex-select/amnex-select';\r\nexport * from './lib/amnex-textarea/amnex-textarea';\r\nexport * from './lib/amnex-map/amnex-map';\r\nexport * from './lib/amnex-components';\r\nexport * from './lib/amnex-maps/amnex-maps';\r\n\r\n\r\n\r\n\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
package/index.d.ts CHANGED
@@ -155,6 +155,8 @@ declare class AmnexMaps implements AfterViewInit, OnChanges {
155
155
  locations: MapLocaion[];
156
156
  zoom: number;
157
157
  height: string;
158
+ showMarkers: boolean;
159
+ showLabels: boolean;
158
160
  map: Map;
159
161
  private vectorSource;
160
162
  ngAfterViewInit(): void;
@@ -162,7 +164,7 @@ declare class AmnexMaps implements AfterViewInit, OnChanges {
162
164
  private initMap;
163
165
  private updateMarkers;
164
166
  static ɵfac: i0.ɵɵFactoryDeclaration<AmnexMaps, never>;
165
- static ɵcmp: i0.ɵɵComponentDeclaration<AmnexMaps, "amnex-maps", never, { "locations": { "alias": "locations"; "required": true; }; "zoom": { "alias": "zoom"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, never, true, never>;
167
+ static ɵcmp: i0.ɵɵComponentDeclaration<AmnexMaps, "amnex-maps", never, { "locations": { "alias": "locations"; "required": true; }; "zoom": { "alias": "zoom"; "required": false; }; "height": { "alias": "height"; "required": false; }; "showMarkers": { "alias": "showMarkers"; "required": false; }; "showLabels": { "alias": "showLabels"; "required": false; }; }, {}, never, never, true, never>;
166
168
  }
167
169
 
168
170
  declare class AMNEX_COMPONENTS {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amnex/ui-atoms",
3
- "version": "1.0.9",
3
+ "version": "1.1.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0",
6
6
  "@angular/core": "^20.3.0"