Skip to content

Commit

Permalink
hello
Browse files Browse the repository at this point in the history
  • Loading branch information
kaheetonaa committed Sep 25, 2024
1 parent a6ea88d commit 08effe0
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,36 @@
top: 0;
overflow: scroll
}

#map {
height: 180px;
}
</style>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>

</head>
<div id='sidepane'>
<div style="padding: 5%">
<h1>Sandbox for OSM editting</h1>

Check failure on line 48 in index.html

View workflow job for this annotation

GitHub Actions / Check for spelling errors

editting ==> editing
<div id="map"></div>
<script>

const queryString = window.location.search;
console.log(queryString);

const map = L.map('map').setView([51.505, -0.09], 13);

const tiles = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19,
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}).addTo(map);

map.setView(new L.LatLng(40.737, -73.923), 8);

</script>
<p>
Lorem ipsum odor amet, consectetuer adipiscing elit. Eleifend mattis blandit fringilla urna interdum. Parturient
accumsan amet justo primis; viverra sodales arcu. Mauris erat quisque semper etiam ad metus cursus. Nascetur nam

Check failure on line 67 in index.html

View workflow job for this annotation

GitHub Actions / Check for spelling errors

nam ==> name
Expand Down Expand Up @@ -67,7 +91,7 @@ <h1>Sandbox for OSM editting</h1>
adipiscing habitasse natoque. Orci nec dis vulputate bibendum justo lorem interdum turpis. Metus hac cubilia
suspendisse habitasse aliquam cursus. Purus praesent tellus interdum nullam dictum vulputate maximus.
</p>



</div>
Expand Down

0 comments on commit 08effe0

Please sign in to comment.