check-in bower_components
This commit is contained in:
parent
4cc16bccd0
commit
9e08e74132
101 changed files with 90960 additions and 0 deletions
24
bower_components/leaflet-plugins/examples/gpx-no-wpt.html
vendored
Normal file
24
bower_components/leaflet-plugins/examples/gpx-no-wpt.html
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Leaflet - GPX track without Waypoints</title>
|
||||
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
|
||||
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
|
||||
<script src="../layer/vector/GPX.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<!-- define a DIV into which the map will appear. Make it take up the whole window -->
|
||||
<div style="width:100%; height:100%" id="map"></div>
|
||||
<script type='text/javascript'>
|
||||
var map = new L.Map('map', {center: new L.LatLng(58.4, 43.0), zoom: 11});
|
||||
var osm = new L.TileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png');
|
||||
|
||||
var track = new L.GPX("fells_loop.gpx", {async: true, display_wpt:false})
|
||||
.on("loaded", function(e) { map.fitBounds(e.target.getBounds()); });
|
||||
|
||||
map.addLayer(track);
|
||||
map.addLayer(osm);
|
||||
map.addControl(new L.Control.Layers({}, {'GPX':track}));
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue