Rebranding
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Yard Map Agent Notes
|
# A Plot of Plants Agent Notes
|
||||||
|
|
||||||
This file is a fast handoff for future coding agents working in this repo.
|
This file is a fast handoff for future coding agents working in this repo.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Yard Map
|
# A Plot of Plants
|
||||||
|
|
||||||
Static yard mapping site built with Leaflet and plain browser modules.
|
Static garden and yard mapping site built with Leaflet and plain browser modules.
|
||||||
|
|
||||||
## Status
|
## Status
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@ The project currently has:
|
|||||||
- Feature relationship metadata (`id`, `parentId`, `groupIds`) and a top-level group catalog for future visibility controls.
|
- Feature relationship metadata (`id`, `parentId`, `groupIds`) and a top-level group catalog for future visibility controls.
|
||||||
- Example yard data mostly copied from `buildings.gpkg` and then preserved as JS modules.
|
- Example yard data mostly copied from `buildings.gpkg` and then preserved as JS modules.
|
||||||
|
|
||||||
The next likely product direction is map-layer visibility controls driven by the existing feature groups and parent-child relationships.
|
The next likely product direction is layer visibility controls driven by the existing feature groups and parent-child relationships.
|
||||||
|
|
||||||
## Authoring model
|
## Authoring model
|
||||||
|
|
||||||
|
|||||||
+6
-17
@@ -3,32 +3,21 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Yard Map</title>
|
<title>A Plot of Plants</title>
|
||||||
<link rel="stylesheet" href="./vendor/leaflet/leaflet.css" />
|
<link rel="stylesheet" href="./vendor/leaflet/leaflet.css" />
|
||||||
<link rel="stylesheet" href="./styles.css" />
|
<link rel="stylesheet" href="./styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="app-shell">
|
<div class="app-shell">
|
||||||
<aside class="panel">
|
<aside class="panel">
|
||||||
<p class="eyebrow">Static map</p>
|
<p class="eyebrow">A Plot of Plants</p>
|
||||||
<h1>Yard Atlas</h1>
|
<h1>204 6th Avenue NW</h1>
|
||||||
<p class="intro">
|
<p class="intro">
|
||||||
Leaflet renders OpenStreetMap tiles underneath a client-side geometry
|
A medium sized city lot in Mandan, ND. A white picket fence surrounds
|
||||||
pipeline. Source files stay as JavaScript so you can author points and
|
a variety of trees, shrubs, and flowers. There are many varieties of
|
||||||
shapes with absolute coordinates or offset math.
|
daylilies.
|
||||||
</p>
|
</p>
|
||||||
<div class="legend" id="legend"></div>
|
<div class="legend" id="legend"></div>
|
||||||
<section class="notes">
|
|
||||||
<h2>Authoring style</h2>
|
|
||||||
<pre><code>new House()
|
|
||||||
.trace([
|
|
||||||
[-100.8988347540, 46.8268080234],
|
|
||||||
[-100.8986668041, 46.8268307100],
|
|
||||||
])
|
|
||||||
|
|
||||||
new Sprinkler("Front bed sprinkler")
|
|
||||||
.add(offset(lotCorner), south(ft(15)), east(ft(10)))</code></pre>
|
|
||||||
</section>
|
|
||||||
</aside>
|
</aside>
|
||||||
<main>
|
<main>
|
||||||
<div id="map" aria-label="Map of yard"></div>
|
<div id="map" aria-label="Map of yard"></div>
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "yardmap",
|
"name": "a-plot-of-plants",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module"
|
"type": "module"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user