Files
ShowMeYourBigSatellite/static/simplemap.html
Julien Lengrand-Lambert 0b69944df7 Issue 5
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
2014-08-01 19:44:39 +02:00

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>