-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Introducing plotly.js + Mapbox GL #626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
70856b2
introducing the 'mapbox' base plot module
etpinard 3968417
introducting the 'scattermapbox' trace module
etpinard 3648744
add 'mapbox' to layout attributes
etpinard 6254578
make sure that non-svg plot types go through calc on restyle,
etpinard 6a73378
handle mapbox.layers relayouts
etpinard 3e79f0d
add 'pretest' tasks,
etpinard 3ea7436
set mapbox crendentials in test dashboard and image test index
etpinard 3b2c2e2
run pretest on circleci,
etpinard a47704c
tmp commit: register scattermapbox in main index file,
etpinard f300d27
add test jasmine for the mapbox base plot module
etpinard 9255ca1
add tests for the scattermapbox trace module
etpinard b6e4734
exclude mapbox jasmine tests on CircleCI,
etpinard 7167a9f
add mapbox image tests
etpinard 7af55ea
skip mapbox mocks on CircleCI,
etpinard 911e872
clean up update steps upon layer creation
etpinard a4a9100
improve description for pitch and bearing
etpinard 28125a4
simplify purge layer step
etpinard 2d6db7b
add 'mapbox.layers' to list of _isLinkedAtoArray attr to check
etpinard d99bfd5
make convert handle bubble with text case:
etpinard d2fe7f4
clear navigation container on map creation:
etpinard dceaece
Revert "tmp commit: register scattermapbox in main index file,"
etpinard fc34488
add scattermapbox trace module to lib/
etpinard 4f2812d
register 'scattermapbox' in jasmine suite that rely on it
etpinard df77966
skip over mapbox image mock (for now),
etpinard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"type": "scattermapbox", | ||
"mode": "markers+lines+text", | ||
"lon": [ | ||
10, | ||
20, | ||
30 | ||
], | ||
"lat": [ | ||
10, | ||
20, | ||
30 | ||
], | ||
"marker": { | ||
"size": [ | ||
10, | ||
30, | ||
20 | ||
], | ||
"color": [ | ||
"red", | ||
"green", | ||
"blue" | ||
] | ||
}, | ||
"text": [ | ||
"A", | ||
"B", | ||
"C" | ||
], | ||
"textposition": "top left", | ||
"textfont": { | ||
"size": 20, | ||
"color": "red" | ||
} | ||
} | ||
], | ||
"layout": { | ||
"mapbox": { | ||
"style": "light", | ||
"zoom": 2.5, | ||
"center": { | ||
"lon": 19.5, | ||
"lat": 22 | ||
} | ||
}, | ||
"width": 700, | ||
"height": 450 | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chriddyp this should fix the console errors we were seeing on Friday.