mirror of
https://github.com/jlengrand/ShowMeYourBigSatellite.git
synced 2026-03-10 08:41:21 +00:00
* Adds lib folder in js to contain all dependencies * Adds css folder * Adds mapbox librairies in the lib folder. Next step is to switch Google by Mapbox
26 lines
633 B
HTML
26 lines
633 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-canvas {
|
|
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/mapbox.js'></script>
|
|
<script src="js/lib/jquery.min.js"></script>
|
|
<script src="js/mapsFun.js"></script>
|
|
|
|
<link href='css/mapbox.css' rel='stylesheet' />
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
</body>
|
|
</html>
|
|
|