Sha256: ee629ee4f9883b2569705aae21482ecb61276d53f53c6a0ade575c7cbf518b95

Contents?: true

Size: 802 Bytes

Versions: 3

Compression:

Stored size: 802 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
	<title>Leaflet debug page</title>

	<link rel="stylesheet" href="../../dist/leaflet.css" />
	<!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]-->
	
	<link rel="stylesheet" href="../css/screen.css" />
	
	<script src="../leaflet-include.js"></script>
</head>
<body>

	<div id="map"></div>

	<script type="text/javascript">

		var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
			cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18}),
			latlng = new L.LatLng(50.5, 30.51);
	
		var map = new L.Map('map').addLayer(cloudmade).setView(latlng, 15);
		
		var zoomControl = new L.Control.Zoom();
		map.addControl(zoomControl);
	</script>
</body>
</html>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
leaflet-ruby-0.3.beta4 lib/leaflet/debug/control/map-control.html
leaflet-ruby-0.3.beta3 lib/leaflet/debug/control/map-control.html
leaflet-ruby-0.3.beta1 lib/leaflet/debug/control/map-control.html