2023-09-13 14:48:02

This commit is contained in:
Steph Ango
2023-09-13 14:48:02 -07:00
parent 0a2475e59c
commit 313efaafd6
22 changed files with 169 additions and 27 deletions

View File

@@ -6,10 +6,11 @@ type:
tags:
- places
- cities
location:
loc:
rating:
created: {{date}}
last:
location:
---
## Trips
@@ -20,29 +21,31 @@ table without id
end as End
where
contains(category, [[Trips]]) and
contains(location, this.file.link)
contains(loc, this.file.link)
sort file.name desc
```
## Map
```leaflet
id: kyoto
minZoom: 10
maxZoom: 20
defaultZoom: 12
linksTo: [[Kyoto]]
height: 50%
coordinates: [[Kyoto]]
```
## Places
```leaflet
id: madrid
minZoom: 10
maxZoom: 20
defaultZoom: 12
linksTo: [[Madrid]]
height: 50%
coordinates: [[Madrid]]
```
```dataview
table without id
file.link as City,
file.link as Place,
rating as Rating,
type as Type
where
contains(category, [[Places]]) and
contains(location, this.file.link)
contains(loc, this.file.link)
sort rating desc
```