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 2 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;
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',
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 = [
//Boundaries for a mainland Chinese audience/worldview, but not officially approved for use in the PRC.
'CN',
//Boundaries conforming to cartographic requirements for use in India
'IN',
//Boundaries for an American audience, & which are generally appropriate outside of China & India. Lines do not necessarily reflect official US foreign policy.
'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'];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be nice to break some of these lines that go over the width limit for the page (like right after admin-0-boundary-disputed on this line).

adminLayers.forEach(function(adminLayer) {
map.setFilter(adminLayer, ["match", ["get", "worldview"], ["all", worldview], true, false]);
});
});
worldviewButtons.appendChild(worldviewButton);
});

});
</script>
11 changes: 11 additions & 0 deletions docs/pages/example/toggle-worldviews.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*---
title: Change worldview of administrative boundaries
description: Uses the worldview value to adjust administrative boundaries based on the map's audience.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would like to link to the vector tile spec here if possible @colleenmcginnis

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like you can just use a link directly with Markdown syntax.

Uses the [worldview](https://www.mapbox.com/vector-tiles/mapbox-streets-v8/#-worldview-text) value...

works for me!

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);