how to add marker on google map layer for leaflet.js
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);
layer has been added in the map, its showing google map layer, but how to add different markers on this layer.
thanks