1. Home >
  2. Documentation >
  3. Layers >
  4. bicyclinglayer
 

bicyclinglayer

This function allows to add a google.maps.BicyclingLayer .

Usage

Parameters

  • None

Example

In this example, bicyclinglayer does not include options, or anything else, so the object can be reduce into a string

$("#test").gmap3({ 
  map:{  
    options:{
      center:[42.3726399,-71.1096528], 
      zoom: 14
    }
  },
  bicyclinglayer:{}
});
$("#test").gmap3(
  { map:{    
      options:{
        center:[42.3726399,-71.1096528], 
        zoom: 14
  }}},
  "bicyclinglayer"
);
Close