Skip to content
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 7 commits into from
Dec 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions docs/pages/example/toggle-worldviews.html
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',
Copy link
Contributor

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?

/* 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/ */

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>
16 changes: 16 additions & 0 deletions docs/pages/example/toggle-worldviews.js
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);