mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
* bind the local utopia-ui lib To ensure the examples still work with the latest utopia-ui, it is now bound to the current code and does no longer depend on publishing the library first * replaced number by uuid as item ids in examples * remove link mechanic from workflow * also build utopia-ui * fix example2 for some reason this stopped working on maaster. * export geojson point to remove this external dependency By exporting this type another package is not needed. This is especially important, since there are different Point definitions which are partially incompatible. --------- Co-authored-by: Anton Tranelis <31516529+antontranelis@users.noreply.github.com> Co-authored-by: Anton Tranelis <mail@antontranelis.de>
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import { Point } from "utopia-ui";
|
|
|
|
export const places = [{
|
|
"id": "062a1176-f7ee-458d-adba-4a0b3b1ce2a0",
|
|
"name": "Stadtgemüse",
|
|
"text": "Stadtgemüse Fulda ist eine Gemüsegärtnerei in Maberzell, die es sich zur Aufgabe gemacht hat, die Stadt und seine Bewohner:innen mit regionalem, frischem und natürlich angebautem Gemüse mittels Gemüsekisten zu versorgen. Es gibt also jede Woche, von Frühjahr bis Herbst, angepasst an die Saison eine Kiste mit schmackhaftem und frischem Gemüse für euch, welche ihr direkt vor Ort abholen könnt. \r\n\r\nhttps://stadtgemuese-fulda.de #food #permaculture #nature",
|
|
"position": { "type": "Point", "coordinates": [9.632435, 50.560342] } as Point,
|
|
},
|
|
{
|
|
"id": "144e379c-b719-4334-9f0e-de277d3b6d0f",
|
|
"name": "Weidendom",
|
|
"text": "free camping #nature",
|
|
"position": { "type": "Point", "coordinates": [9.438793, 50.560112] } as Point,
|
|
}];
|
|
|
|
export const events = [
|
|
{
|
|
"id": "efe00aaa-8b14-47b5-a032-3e0560980c1e",
|
|
"name": "Hackathon",
|
|
"text": "still in progress #utopia #map",
|
|
"position": { "type": "Point", "coordinates": [10.5, 51.62] } as Point,
|
|
"start": "2022-03-25T12:00:00",
|
|
"end": "2022-05-12T12:00:00",
|
|
}
|
|
] |