Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
gabesnider authored and gabesnider committed Sep 18, 2016
1 parent acac673 commit ca3a033
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
Binary file added leaflet/leaflet (2)/.DS_Store
Binary file not shown.
18 changes: 11 additions & 7 deletions travelleaflet/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Travel Leaflet Map</title>

<link rel="stylesheet" href="leaflet.css">

<meta charset="utf-8">
<script src="leaflet.js"></script>
<script src="leaflet-src.js"></script>

Expand Down Expand Up @@ -34,18 +34,22 @@

<script>

var map = L.map('map').setView([38.88911, -77.00639], 16), touch;
var map = L.map('map');

L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
subdomains: 'abc',
maxZoom: 18
maxZoom: 18,
minZoom: 0
}).addTo(map);

map.fitWorld();

var layer = new L.TileLayer("http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
noWrap: true
});
noWrap: true
});

var planes = [
["Tel Aviv, Israel", 32.109333, 34.855499]
]

</script>

</body>
Expand Down
File renamed without changes.
7 changes: 1 addition & 6 deletions unit_10/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1>skills + experience</h1>
<p><img src="https://d2f2p26ywennn8.cloudfront.net/assets/public/getting-started/java-logo_2x-32beae8858499f7f2efa4f60cb0e641be46086c894b2c19ba3a2ed125c17098c.png" id="java-lang-logo" alt="java-lang-logo">
<img src="https://d2f2p26ywennn8.cloudfront.net/assets/public/getting-started/python-logo_2x-999c8c56554e563b0bdf5fca4dda5752c2cc37cfe35a17ccd0f793a7cb6b120b.png" id="python-lang-logo" alt="python-lang-logo">
<img src="https://d2f2p26ywennn8.cloudfront.net/assets/public/getting-started/node-logo_2x-2023f89872fa8c0f710dc26eb28f48baf14bfb4a41909f92350592e15a7f9eac.png" id="js-lang-logo" alt="js-lang-logo"><br>
I am fluent in Java object oriented programming have worked with several other programming langauges. Take a look at my <a href="docs/GabrielSniderResume.pdf"><b>resume</b></a> while you're here.</p>
I am fluent in Java object oriented programming and have worked with several other programming langauges. Take a look at my <a href="docs/GabrielSniderResume.pdf"><b>resume</b></a> while you're here.</p>
</div>
</div>
<div id="moreskills">
Expand All @@ -60,11 +60,6 @@ <h1>skills + experience</h1>
<p>I made a simulation Black Jack game in Java with object oriented programming using inheritance and mutliple classes. I recently built a tracking map with Leaflet.JS, APIs, and Open Street Maps. <a href="https://gabesnider.github.io/leaflet/index.html"><b>Check it out.</b></a></p>
</div>
</div>
<div id="travelleaflet">
<script>

</script>
</div>
</section>
<section id="headcontact">
<h1>contact</h1>
Expand Down

0 comments on commit ca3a033

Please sign in to comment.