Meanwhile I got it to work without knowing the YAML-code.
The result so far (just an example):

When i click on the card i get the full picture of the related items.
and here is the extract from the semantic model:
How to get the items to the location page:
edit your âHome Pageâ e.g.in pages
you can edit the card e.g. for AZ with Confige Card

here your can with âConfigure Cardâ configre the content of the card in the location tab e.g. which badges should be shown.:
If you prefere YAML you can use âEdit YAMLâ for the configuration
config:
label: Home Page
equipment:
- component: oh-equipment-tab
config:
cardOrder:
- Receiver
- Television
- Lightbulb
- Blinds
- Window
- Sensor
- WallSwitch
- Camera
- MotionDetector
- HVAC
- Inverter
- Equipment
- NetworkAppliance
- WebService
- WeatherService
slots: {}
locations:
- component: oh-locations-tab
config:
cardOrder:
- smgloc_Eingang
- smgloc_2EG
- smgloc_2EG_Flur_EG
- smgloc_2EG_GaesteWC
- smgloc_2EG_WZ
- smgloc_2EG_EZ
- smgloc_2EG_Kueche
- smgloc_3OG
- smgloc_3OG_Flur_OG
- smgloc_3OG_Ankleide
- smgloc_3OG_Bad
- smgloc_3OG_SZ
- smgloc_3OG_AZ
- smgloc_3OG_Balkon
- smgloc_4DG
- smgloc_4DG_Flur_DG
- smgloc_4DG_Gaeste
- smgloc_1KG
- smgloc_1KG_Waschkueche
- smgloc_1KG_Gaestebad
- smgloc_1KG_Technikraum
- smgloc_1KG_Vorrat
- smgloc_Terrasse
excludedCards:
- smgloc_Eingang
- smgloc_1KG_Gaestebad
- smgloc_4DG
- smgloc_3OG_Balkon
slots:
smgloc_1KG:
- component: oh-location-card
config: {}
smgloc_1KG_Waschkueche:
- component: oh-location-card
config:
backgroundColor: black
badges:
- windows
invertText: false
subtitle: KG
title: WaschkĂŒche
smgloc_2EG_EZ:
- component: oh-location-card
config:
backgroundColor: yellow
badges:
- lights
- windows
- blinds
subtitle: EG
title: Esszimmer
smgloc_2EG_GaesteWC:
- component: oh-location-card
config:
backgroundColor: blue
badges:
- windows
subtitle: EG
title: GĂ€ste WC
smgloc_2EG_Kueche:
- component: oh-location-card
config:
backgroundColor: lime
badges:
- lights
- windows
- blinds
subtitle: EG
title: KĂŒche
smgloc_2EG_WZ:
- component: oh-location-card
config:
backgroundColor: purple
badges:
- lights
- windows
- blinds
- temperature
- humidity
subtitle: EG
title: Wohnzimmer
smgloc_3OG_AZ:
- component: oh-location-card
config:
backgroundColor: teal
badges:
- lights
- windows
- blinds
- temperature
- humidity
subtitle: OG
title: Arbeitszimmer
smgloc_3OG_Bad:
- component: oh-location-card
config:
backgroundColor: blue
badges:
- windows
subtitle: OG
title: Bad
smgloc_3OG_SZ:
- component: oh-location-card
config:
backgroundColor: green
badges:
- lights
- windows
- blinds
- temperature
- humidity
subtitle: OG
title: Schlafzimmer
smgloc_4DG_Gaeste:
- component: oh-location-card
config:
backgroundColor: deeppurple
badges:
- windows
subtitle: DG
title: GĂ€ste
smgloc_Eingang:
- component: oh-location-card
config: {}
properties:
- component: oh-properties-tab
config: {}
What is important: you have to tag your equipment items and point items according to the badges
Semantic Model - Badges
Here a short view to my equipment for the room âAZâ. Here you can see the equipment items taged according to the badges table.
And the Items to be displayed have to be tagged also according to the badge-table:
If you use the .items files (as i do for a couple of items) you just need to put the tags according to badges table into your item:
Number:Temperature Wetterstation_indoor_temp2 "WS Innen Temperatur AZ [%.1f %unit%]" <temperature> (eq_LokalesWetter, gPersInfluxDB_Wetter, gWeatherTemp, eq_WS_AZ_Temp_Feucht) ["Measurement", "Temperature"]
Number:Dimensionless Wetterstation_indoor_humidity2 "WS Innen Feuchtigkeit AZ [%.1f %%]" <humidity> (eq_LokalesWetter, gPersInfluxDB_Wetter, gWeather, eq_WS_AZ_Temp_Feucht) ["Measurement", "Humidity"]
âeq_WS_AZ_Temp_Feuchtâ is the link to the equipment and â[âMeasurementâ, âHumidityâ]â are the tags according to the badges table for this item.
If you want to fine-tune how your item is displayed in the card you can add the Metadata âDefault List Item Widgetâ to your item
in my case i wanted the state of the item for the rollershutter to see how wide-open the rollershutter is.
I hope i havenât forgotten anything as it is a topic with many dependencies and it took me quite some time to understand how the topics are linked together.