Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 77e0f85

Browse files
committed
add a few TODOs
1 parent a9ef0c1 commit 77e0f85

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/plots/mapbox/mapbox.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ proto.createMap = function(fullData, fullLayout, resolve) {
9494
resolve();
9595
}
9696
});
97-
map.on('mousemove', function(eventData) {
98-
// hover code goes here !!!
9997
});
10098

10199
// keep track of pan / zoom in user layout
@@ -105,6 +103,9 @@ proto.createMap = function(fullData, fullLayout, resolve) {
105103
opts._input.zoom = opts.zoom = map.getZoom();
106104
});
107105

106+
107+
// TODO hover labels
108+
108109
};
109110

110111
proto.updateMap = function(fullData, fullLayout, resolve) {
@@ -176,6 +177,7 @@ proto.updateLayout = function(fullLayout) {
176177
map.setCenter(convertCenter(opts.center));
177178
map.setZoom(opts.zoom);
178179

180+
// TODO update layers
179181

180182
this.updateFramework(fullLayout)
181183
this.map.resize();

0 commit comments

Comments
 (0)