Skip to content

Commit c097479

Browse files
committed
add new map traces updates
1 parent ec4488a commit c097479

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

_posts/plotly_js/fundamentals/config-options/2019-10-24-double-click-delay.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
arrangement: horizontal
88
markdown_content: |
99
Sets the maximum delay between two consecutive clicks to be interpreted as a double-click in ms. This is the time interval between first mousedown, and' second mouseup. The default timing is 300 ms (less than half a second).
10-
This setting propagates to all on-subplot double clicks, (except for geo and mapbox).
10+
This setting propagates to all on-subplot double clicks, (except for geo, map, and mapbox).
1111
---
1212
var data = [{
1313
type: "bar",

_posts/plotly_js/maps/choropleth-mapbox/2019-08-16-US_states.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sitemap: false
77
arrangement: horizontal
88
markdown_content: |
9-
This example uses [zmin and zmax](https://plotly.com/javascript/reference/choroplethmapbox/#choroplethmapbox-zmin) to define the lower bound and upper bound of the color domain. If these attributes are not set, Plotly [determines the color domain](https://plotly.com/javascript/reference/heatmap/#heatmap-zauto) based on the input data.
9+
This example uses [zmin and zmax](https://plotly.com/javascript/reference/choroplethmap/#choroplethmap-zmin) to define the lower bound and upper bound of the color domain. If these attributes are not set, Plotly [determines the color domain](https://plotly.com/javascript/reference/heatmap/#heatmap-zauto) based on the input data.
1010
---
1111

1212
var data = [{

_posts/plotly_js/maps/choropleth-mapbox/2019-08-16-basic-choropleth1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
arrangement: horizontal
88
markdown_content: |
99

10-
This tutorial uses [Maplibre GL JS](https://maplibre.org/maplibre-gl-js/docs/) to make a map of US states using [vector tiles](https://plotly.com/javascript/mapbox-layers/).
10+
This tutorial uses [Maplibre GL JS](https://maplibre.org/maplibre-gl-js/docs/) to make a map of US states using [vector tiles](https://plotly.com/javascript/map-layers/).
1111
---
1212

1313
var data = [{

_posts/plotly_js/maps/density-mapbox/2019-08-16-earthquack_density.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
var data = [{
1616
lon: unpack(rows, 'Longitude'), lat: unpack(rows, 'Latitude'), radius:10,
17-
z: unpack(rows, 'Magnitude'), type: "densitymapbox", coloraxis: 'coloraxis',
17+
z: unpack(rows, 'Magnitude'), type: "densityma", coloraxis: 'coloraxis',
1818
hoverinfo: 'skip'}];
1919

2020
var layout = {

0 commit comments

Comments
 (0)