Home
last modified time | relevance | path

Searched refs:map_data_service (Results 1 – 9 of 9) sorted by relevance

/webtrees/app/Http/RequestHandlers/
H A DMapDataList.php45 private MapDataService $map_data_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataList
54 * @param MapDataService $map_data_service
59 MapDataService $map_data_service, argument
63 $this->map_data_service = $map_data_service;
81 $parent = $this->map_data_service->findById($parent_id);
90 $this->map_data_service->importMissingLocations();
119 'active' => $this->map_data_service->activePlaces($parent),
123 'placelist' => $this->map_data_service->getPlaceListLocation($parent_id),
H A DMapDataDelete.php35 private MapDataService $map_data_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataDelete
40 * @param MapDataService $map_data_service
42 public function __construct(MapDataService $map_data_service) argument
44 $this->map_data_service = $map_data_service;
56 $place = $this->map_data_service->findById($location_id);
58 $this->map_data_service->deleteRecursively($location_id);
H A DMapDataExportCSV.php51 private MapDataService $map_data_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataExportCSV
56 * @param MapDataService $map_data_service
58 public function __construct(MapDataService $map_data_service) argument
60 $this->map_data_service = $map_data_service;
75 $parent = $this->map_data_service->findById((int) $parent_id);
136 $this->map_data_service->writeLongitude((float) $place->longitude),
137 $this->map_data_service->writeLatitude((float) $place->latitude),
H A DMapDataDeleteUnused.php35 private MapDataService $map_data_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataDeleteUnused
40 * @param MapDataService $map_data_service
42 public function __construct(MapDataService $map_data_service) argument
44 $this->map_data_service = $map_data_service;
54 $this->map_data_service->deleteUnusedLocations(null, [0]);
H A DMapDataAdd.php43 private MapDataService $map_data_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataAdd
49 * @param MapDataService $map_data_service
51 …public function __construct(LeafletJsService $leaflet_js_service, MapDataService $map_data_service) argument
54 $this->map_data_service = $map_data_service;
71 $parent = $this->map_data_service->findById((int) $parent_id);
H A DMapDataExportGeoJson.php43 private MapDataService $map_data_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataExportGeoJson
48 * @param MapDataService $map_data_service
50 public function __construct(MapDataService $map_data_service) argument
52 $this->map_data_service = $map_data_service;
67 $parent = $this->map_data_service->findById((int) $parent_id);
H A DMapDataEdit.php44 private MapDataService $map_data_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataEdit
50 * @param MapDataService $map_data_service
52 …public function __construct(LeafletJsService $leaflet_js_service, MapDataService $map_data_service) argument
55 $this->map_data_service = $map_data_service;
68 $location = $this->map_data_service->findById($location_id);
/webtrees/tests/app/Http/RequestHandlers/
H A DMapDataExportCSVTest.php34 $map_data_service = new MapDataService();
35 $handler = new MapDataExportCSV($map_data_service);
H A DMapDataExportGeoJsonTest.php34 $map_data_service = new MapDataService();
35 $handler = new MapDataExportGeoJson($map_data_service);