Add map markers for search results

This commit is contained in:
2026-03-22 10:59:11 +04:00
parent 9183e3c366
commit af57e7fe57
5 changed files with 116 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
import Route from '@ember/routing/route';
import { service } from '@ember/service';
export default class IndexRoute extends Route {
@service mapUi;
activate() {
this.mapUi.clearSearchResults();
}
}