APIs
Log In
APIs

TileLayer.getStyleMode

TileLayer.getStyleMode()

Returns the style mode of this tile layer.
The style mode is a string and has one of the following values :

  • global
  • byAttribute
  • thematic
function onYoumapsApiLoaded(){
  console.log("YoumapsAPI loaded!");
  var mapdataLayer = youmapsApi.getMapdata(<MAPDATA_ID>);
  var mapdataLayerStyleMode = mapdataLayer.getStyleMode();
}

var mapOptions = {  
  center : new google.maps.LatLng(48.858386, 2.343435), // Paris,
  zoom : 11,
  minZoom : 6,
  maxZoom : 17
};

var youmapsApi = new YoumapsAPI(
  {
    techID : <YOUR_TECH_ID>, 
    initMapboards : true,
    mapDivId : "map",
    mapOptions : mapOptions
  },
  onYoumapsApiLoaded
);