Last active
October 22, 2021 08:24
-
Star
(107)
You must be signed in to star a gist -
Fork
(27)
You must be signed in to fork a gist
-
-
Save crofty/2197701 to your computer and use it in GitHub Desktop.
A example of using Google Map tiles with the Leaflet mapping library - http://matchingnotes.com/using-google-map-tiles-with-leaflet
This file contains 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 characters
<!DOCTYPE html> | |
<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> | |
<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> |
Followup on the licensing status of leaflet-google.js
see https://gist.github.com/crofty/2197042#gistcomment-3008148, it's copyright @shramov and probably Free Software under MIT.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@crofty What is the license on the code that was available from http://matchingnotes.com/using-google-map-tiles-with-leaflet
(the url does not work, as checked 2019-08-26). There is an archived version of the page at https://web.archive.org/web/20180728014324/http://matchingnotes.com/using-google-map-tiles-with-leaflet
Okay, the code behind
http://matchingnotes.com/javascripts/leaflet-google.js
seems still be available at https://gist.github.com/crofty/2197701The code is non-trivial, so it will be copyrightable. Without explicit licensing there is no permission for others to use the code.
Did somebody else see an explicit or implicit hint about who is the copryight holder and how this person wants the code to be used?
(Implicitely putting it up as example of gist.github.com by croft does not clarify the two points.)