mirror of
https://github.com/DerTyp7/local-analyzer-angular.git
synced 2025-10-29 12:52:14 +01:00
14 lines
543 B
HTML
14 lines
543 B
HTML
<div class="search-bar center">
|
|
<input class="center" type="text" name="searchValue" #searchInput (change)="inputChange(searchInput.value)" placeholder="Search your address" />
|
|
|
|
|
|
<div *ngIf="searchResults && searchResults.length > 0"class="search-results center">
|
|
<br>
|
|
<div *ngFor="let result of searchResults">
|
|
<div class="search-result">
|
|
<span><b>{{result.properties.name}}</b> {{result.properties.postcode}} {{result.properties.city}} {{result.properties.country}}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|