Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:58:27

0001 GMaps.prototype.addStyle = function(options) {
0002   var styledMapType = new google.maps.StyledMapType(options.styles, { name: options.styledMapName });
0003 
0004   this.map.mapTypes.set(options.mapTypeId, styledMapType);
0005 };
0006 
0007 GMaps.prototype.setStyle = function(mapTypeId) {
0008   this.map.setMapTypeId(mapTypeId);
0009 };