mirror of
https://github.com/jlengrand/ShowMeYourBigSatellite.git
synced 2026-03-10 08:41:21 +00:00
Code is now fully functional with leaflet. Only missing element is the specialized marker that has to be created. Adds missiing images for leaflet Current map displayed is from mapbox, and can be updated to anything else (OSM, Google Maps, . . .). TODO : Customize marker
26 lines
628 B
HTML
26 lines
628 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Simple Map</title>
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
|
|
<meta charset="utf-8">
|
|
<style>
|
|
html, body, #map {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
|
|
<script src='js/lib/leaflet.js'></script>
|
|
<script src="js/lib/jquery.min.js"></script>
|
|
<script src="js/mapsFun.js"></script>
|
|
|
|
<link href='css/leaflet.css' rel='stylesheet' />
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
</body>
|
|
</html>
|
|
|