-
-
Save dhirajt/7367601 to your computer and use it in GitHub Desktop.
Revisions
-
crofty revised this gist
Jul 9, 2013 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,10 +2,10 @@ <html> <head> <title>Leaflet</title> <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.3.1/leaflet.css" /> <script src="http://cdn.leafletjs.com/leaflet-0.3.1/leaflet.js"></script> <script src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script> <script src="http://matchingnotes.com/javascripts/leaflet-google.js"></script> </head> <body> <div style="width:500px; height:500px" id="map"></div> -
crofty created this gist
Mar 25, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ <!DOCTYPE html> <html> <head> <title>Leaflet</title> <link rel="stylesheet" href="http://code.leafletjs.com/leaflet-0.3.1/leaflet.css" /> <script src="http://code.leafletjs.com/leaflet-0.3.1/leaflet.js"></script> <script src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script> <script src="https://raw.github.com/gist/2197042/2b90c41b39b7d5b3a851d8f256de2ebd3fe1fb74/leaflet-google.js"></script> </head> <body> <div style="width:500px; height:500px" id="map"></div> <script type='text/javascript'> var map = new L.Map('map', {center: new L.LatLng(51.51, -0.11), zoom: 9}); var googleLayer = new L.Google('ROADMAP'); map.addLayer(googleLayer); </script> </body> </html>