plotly.js
Version:
The open source javascript graphing library that powers plotly
41 lines (36 loc) • 1.28 kB
JavaScript
module.exports = {
attributes: require('./attributes'),
supplyDefaults: require('./defaults'),
colorbar: require('../heatmap/colorbar'),
formatLabels: require('../scattermap/format_labels'),
calc: require('./calc'),
plot: require('./plot'),
hoverPoints: require('./hover'),
eventData: require('./event_data'),
getBelow: function(trace, subplot) {
var mapLayers = subplot.getMapLayers();
// find first layer with `type: 'symbol'`,
// that is not a plotly layer
for(var i = 0; i < mapLayers.length; i++) {
var layer = mapLayers[i];
var layerId = layer.id;
if(layer.type === 'symbol' &&
typeof layerId === 'string' && layerId.indexOf('plotly-') === -1
) {
return layerId;
}
}
},
moduleType: 'trace',
name: 'densitymap',
basePlotModule: require('../../plots/map'),
categories: ['map', 'gl', 'showLegend'],
meta: {
hr_name: 'density_map',
description: [
'Draws a bivariate kernel density estimation with a Gaussian kernel',
'from `lon` and `lat` coordinates and optional `z` values using a colorscale.'
].join(' ')
}
};
;