Can we use leaflet in google maps? Searching and reading articles about it, we found that there are some leaflet plugins available. Using that we can build application using
You can use leaflet JS API kit and use google maps imagery in it.
Edit:
Check this example in which google tiles/imagery is used along leaflet kit.
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);
#map {
height: 500px;
width: 500px;
}
Source: https://gist.github.com/crofty/2197701