Remove bundling magic for Mapbox styles script

This commit is contained in:
Andreas Hocevar
2017-08-20 09:26:37 -04:00
parent 98b863604b
commit 2ef5f99599
4 changed files with 16 additions and 20 deletions

View File

@@ -1,20 +1,20 @@
// Styles for the mapbox-streets-v6 vector tile data set. Loosely based on
// http://a.tiles.mapbox.com/v4/mapbox.mapbox-streets-v6.json
function createMapboxStreetsV6Style() {
var fill = new ol.style.Fill({color: ''});
var stroke = new ol.style.Stroke({color: '', width: 1});
var polygon = new ol.style.Style({fill: fill});
var strokedPolygon = new ol.style.Style({fill: fill, stroke: stroke});
var line = new ol.style.Style({stroke: stroke});
var text = new ol.style.Style({text: new ol.style.Text({
function createMapboxStreetsV6Style(Style, Fill, Stroke, Icon, Text) {
var fill = new Fill({color: ''});
var stroke = new Stroke({color: '', width: 1});
var polygon = new Style({fill: fill});
var strokedPolygon = new Style({fill: fill, stroke: stroke});
var line = new Style({stroke: stroke});
var text = new Style({text: new Text({
text: '', fill: fill, stroke: stroke
})});
var iconCache = {};
function getIcon(iconName) {
var icon = iconCache[iconName];
if (!icon) {
icon = new ol.style.Style({image: new ol.style.Icon({
icon = new Style({image: new Icon({
src: 'https://cdn.rawgit.com/mapbox/maki/master/icons/' + iconName + '-15.svg',
imgSize: [15, 15]
})});