-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Add worldviews example #7720
Merged
Merged
Add worldviews example #7720
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
807f042
add example demonstrating how to adjust administrative boundaries bas…
malwoodsantoro 8b3f985
fix small syntax issues
malwoodsantoro 704d53a
add margin to buttons
malwoodsantoro 409562c
move worldview comments to description
malwoodsantoro 47e9e31
wrap line
malwoodsantoro 3b36c94
add link to description and format as a list
colleenmcginnis 94e88e4
add note about v8 data and fix spacing
malwoodsantoro 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 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,79 @@ | ||
<style> | ||
|
||
label { | ||
font-size: 20px; | ||
} | ||
.toggle-menu { | ||
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif; | ||
position: absolute; | ||
width: 400px; | ||
top: 0; | ||
right: 0; | ||
padding: 10px; | ||
} | ||
|
||
.toggle-menu .toggle-menu-inner { | ||
text-align: center; | ||
background-color: #fff; | ||
border-radius: 5px; | ||
padding: 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.toggle-menu-inner button { | ||
color: #000; | ||
display: inline-block; | ||
width: 50px; | ||
height: 20px; | ||
border: none; | ||
margin: 10px; | ||
cursor: pointer; | ||
} | ||
|
||
.toggle-menu-inner button:hover { | ||
box-shadow:inset 0 0 0 4px pink; | ||
} | ||
</style> | ||
|
||
<div id='map'></div> | ||
<div class='toggle-menu top'> | ||
<div class='toggle-menu-inner'> | ||
<label>Toggle worldview:</label> | ||
<div id='worldviews'></div> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
var map = new mapboxgl.Map({ | ||
container: 'map', | ||
/* Note: The worldview data field is only available in styles that use the Mapbox Streets v8 tileset https://www.mapbox.com/vector-tiles/mapbox-streets-v8/ */ | ||
style: 'mapbox://styles/mapbox/streets-v11', | ||
center: [95.690, 25.251], | ||
zoom: 3 | ||
}); | ||
|
||
var worldviewButtons = document.getElementById('worldviews'); | ||
|
||
var worldviews = [ | ||
'CN', | ||
'IN', | ||
'US' | ||
]; | ||
|
||
map.on('load', function() { | ||
|
||
worldviews.forEach(function(worldview) { | ||
var worldviewButton = document.createElement('button'); | ||
worldviewButton.innerHTML = worldview.toString(); | ||
worldviewButton.addEventListener('click', function() { | ||
var adminLayers = ['admin-0-boundary', 'admin-1-boundary', 'admin-0-boundary-disputed', | ||
'admin-1-boundary-bg', 'admin-0-boundary-bg']; | ||
adminLayers.forEach(function(adminLayer) { | ||
map.setFilter(adminLayer, ["match", ["get", "worldview"], ["all", worldview], true, false]); | ||
}); | ||
}); | ||
worldviewButtons.appendChild(worldviewButton); | ||
}); | ||
|
||
}); | ||
</script> |
This file contains 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,16 @@ | ||
/*--- | ||
title: Change worldview of administrative boundaries | ||
description: | | ||
Uses the [worldview](https://www.mapbox.com/vector-tiles/mapbox-streets-v8/#-worldview-text) value to adjust administrative boundaries based on the map's audience. You can see the worldview options within the worldviews variable in this example. They are as follows: | ||
- **CN**: Boundaries for a mainland Chinese audience/worldview, but not officially approved for use in the PRC. | ||
- **IN**: Boundaries conforming to cartographic requirements for use in India. | ||
- **US**: Boundaries for an American audience, & which are generally appropriate outside of China & India. | ||
Lines do not necessarily reflect official US foreign policy. | ||
tags: | ||
- layers | ||
- user interaction | ||
pathname: /mapbox-gl-js/example/toggle-worldviews/ | ||
---*/ | ||
import Example from '../../components/example'; | ||
import html from './toggle-worldviews.html'; | ||
export default Example(html); |
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.
What do you think about adding a little note like this above the line where the style URL is defined @malwoodsantoro?