-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (96 loc) · 4.74 KB
/
index.html
File metadata and controls
112 lines (96 loc) · 4.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sustainable Land Management & Interactive Map</title>
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<!-- Leaflet JS -->
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<!-- Leaflet KML Plugin (update the path as needed) -->
<script src="L.KML.js"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
max-width: 900px;
line-height: 1.6;
color: #333;
}
h1, h2 {
color: #005a00;
}
#map {
width: 100%;
height: 600px;
margin-bottom: 40px;
}
.contact {
margin-top: 20px;
padding-top: 10px;
border-top: 1px solid #ccc;
}
</style>
</head>
<body>
<!-- Interactive Map Section -->
<h1>Interactive Map</h1>
<div id="map"></div>
<script>
// Initialize the map centered at the given coordinates
var map = L.map('map').setView([55.9406324, -2.6413234], 13);
// Add an OpenStreetMap tile layer
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19
}).addTo(map);
// Array of KML file paths (update with additional files if needed)
var kmlFiles = [
'Native_Species_Development_backup.kml'
];
// Object to store KML layers for the layer control
var overlayLayers = {};
// Loop through each KML file and add it to the map
kmlFiles.forEach(function (filePath) {
var kmlLayer = new L.KML(filePath, { async: true });
kmlLayer.on('loaded', function () {
map.fitBounds(kmlLayer.getBounds());
}).addTo(map);
overlayLayers[filePath] = kmlLayer;
});
// Add a layer control to toggle KML layers
L.control.layers(null, overlayLayers).addTo(map);
</script>
<hr>
<!-- Sustainable Land Management Services Content -->
<h1>Sustainable Land Management Services</h1>
<p><strong>Regenerative land stewardship, sustainable greenhouse design, traditional scything, and precision aerial services.</strong></p>
<h2>Regenerative Land Stewardship</h2>
<ul>
<li><strong>Natural Agriculture Systems:</strong> I apply traditional Japanese natural farming methods—such as Fukuoka-inspired no-till practices, seed ball technology, and closed-loop fertility management—to promote chemical-free, soil-first agriculture.</li>
<li><strong>Native Forest Restoration & Deforestation Mitigation:</strong> Utilizing techniques like the Miyawaki method for ultra-dense native planting, I help restore ancient woodlands and develop biodiverse, self-sustaining mini-forests.</li>
<li><strong>Permaculture Orchards & Holistic Woodland Planning:</strong> I design climate-adapted food forests that integrate native cultivars with companion species, supported by GIS-mapped biodiversity corridors and multi-generational stewardship blueprints.</li>
</ul>
<h2>Sustainable Walipini & Geothermal Design</h2>
<p>I specialize in designing earth-sheltered greenhouses (Walipinis) that harness geothermal principles for year-round food production. This includes 3D terrain mapping, custom layouts, and integrated water tank heating systems—all aimed at reducing energy costs and optimizing crop yields.</p>
<p>Additional services such as Olla irrigation system design ensure that water use is minimized while maintaining soil moisture balance naturally.</p>
<h2>Traditional Scything for Organic Land & Crop Care</h2>
<ul>
<li>I offer precision scything services for organic cereal crop roguing, meadow and pasture restoration, and garden maintenance.</li>
<li>These techniques provide an eco-friendly alternative to machinery, enhancing biodiversity and protecting pollinator habitats without the use of herbicides or fossil fuels.</li>
<li>I also conduct training workshops to share these time-tested methods with farmers, landowners, and gardeners.</li>
</ul>
<h2>Precision Aerial Services</h2>
<p>With diverse agricultural FPV operations, I deliver high-resolution aerial mapping, crop health analysis, and precision aerial cultivation procedures. These services support modern organic farming by providing data-driven insights to optimize irrigation, pest management, and overall field productivity.</p>
<div class="contact">
<h2>Contact</h2>
<p>
Jack Avison<br>
Founder, Neo-Natural Agricultural Services<br>
📞 07498 334034<br>
📧 <a href="mailto:jackavison84@gmail.com">jackavison84@gmail.com</a><br>
🌍 <a href="[https://jezzb33.github.io/LeafletMapProject/]">[https://jezzb33.github.io/LeafletMapProject/]</a>
</p>
</div>
</body>
</html>