Skip to content

Latest commit

 

History

History
450 lines (380 loc) · 8.68 KB

StyleSheet.md

File metadata and controls

450 lines (380 loc) · 8.68 KB

StyleSheet

Stylesheet is now a JS object, see CHANGELOG.md for more details

Style functions

zoom based expressions (replaces camera(stops[, interpolationMode]))

This is a value function defining a style value that changes as the zoom level changes. The layout and paint attribute properties of the layer can be set to style function objects. Use a camera function to create the illusion of depth and control data density.

new:

// color would change based on zoom level keys.
[
  'interpolate',
  ['exponential', 1.5],
  ['zoom'],
  0, 'blue',
  10, 'green',
  20, 'yellow'
];

// Example of use inside stylesheet
{
  fillColor: [
    'step',
    ['zoom'],
    'blue',
    20, 'green'
  ]
}

old:

// color would change based on zoom level keys.
Vietmap.StyleSheet.camera({
  0: 'blue',
  10: 'green',
  20: 'yellow',
}, Vietmap.InterpolationMode.Exponential);

// Example of use inside stylesheet
Vietmap.StyleSheet.create({
  fillColor: Vietmap.StyleSheet.camera({
    15: 'blue',
    20: 'green',
  }, Vietmap.InterpolationMode.Interval),
});

attribute based expressions (replaces source(stops, attributeName[, interpolationMode]))

This is a value function defining a style value that changes with its properties. The layout and paint attribute properties of the layer can be set to style function objects. Use source functions to visually differentate types of features within the same layer or create data visualizations.

new:

// would color the layer based the property rating=[1, 5]
[
  'step',
  ['get', 'rating'],
  'red',
  2, 'orange',
  3, 'yellow',
  4, 'yellowgreen',
  5, 'green',
];

// Example of use inside stylesheet
{
  circleColor: [
    'step',
    ['get', 'rating'],
    'red',
    2, 'orange',
    3, 'yellow',
    4, 'yellowgreen',
    5, 'green',
  ],
}

old:

// would color the layer based the property rating=[1, 5]
Vietmap.StyleSheet.source([
  [1, 'red'],
  [2, 'orange'],
  [3, 'yellow'],
  [4, 'yellowgreen'],
  [5, 'green'],
], 'rating', Vietmap.InterpolationMode.Categorical);

// Example of use inside stylesheet
Vietmap.StyleSheet.create({
  circleColor: Vietmap.StyleSheet.source([
    [1, 'red'],
    [2, 'orange'],
    [3, 'yellow'],
    [4, 'yellowgreen'],
    [5, 'green'],
  ], 'rating', Vietmap.InterpolationMode.Categorical),
});

nested expressions (replaces composite(stops, attributeName[, interpolationMode]))

This is a value function defining a style value that changes with the feature attributes at each map zoom level. The layout and paint attribute properties of the layer can be set to style function objects. Use composite functions to allow the appearance of a map feature to change with both its attributes and the map zoom level. Note that support for composite functions is not yet complete in the Android/iOS SDK's.

new:

// would change based on the zoom level and rating value
// {zoom_level}: [{value}, {style_value}]
[
  'step',
  ['zoom'],
  [
    'step',
    ['get','rating'],
    0,
    5, 5
  ],
  20, [
    'step',
    ['get','rating'],
    0,
    5, 20
  ]
]

{
  circleRadius: [
    'step',
    ['zoom'],
    [ 'step',
      ['get','rating'],
      0,
      5, 5
    ],
    20, [ 'step',
          ['get','rating'],
          0,
          5, 20
        ],
]
};

old:

// would change based on the zoom level and rating value
// {zoom_level}: [{value}, {style_value}]
Vietmap.StyleSheet.composite({
  0: [0, 0],
  0: [5, 5],
  20: [0, 0],
  20: [5, 20],
}, 'rating', Vietmap.InterpolationMode.Interval);

Vietmap.StyleSheet.create({
  circleRadius: Vietmap.StyleSheet.composite({
    0: [0, 0],
    0: [5, 5],
    20: [0, 0],
    20: [5, 20],
  }, 'rating', Vietmap.InterpolationMode.Interval),
});

Simple expressions

['get', attributeName] - replaces identity(attributeName)

This is just a source style function under the hood. For example say if you had a feature property with an attribute height. Identity means that it will just equal the attribute value, so there is no need to provide any stops

new:

{
  fillExtrusionHeight: ['get', 'height'],
}

old:

Vietmap.StyleSheet.create({
  fillExtrusionHeight: Vietmap.StyleSheet.identity('height'),
});

StyleSheet Examples

new:

const styles = {
  buildings: {
    fillColor: 'blue',
  },
  street: {
    lineColor: 'green',
  }
};

...

<Vietmap.FillLayer ... style={styles.buildings} />
<Vietmap.FillLayer ... style={styles.street} />
const layerStyles = {
  singlePoint: {
    circleColor: 'green',
    circleOpacity: 0.84,
    circleStrokeWidth: 2,
    circleStrokeColor: 'white',
    circleRadius: 5,
  },

  clusteredPoints: {
    circleColor: [
      'interpolate',
      ['exponential', 1.5],
      ['get','point_count'],
      25, 'yellow',
      50, 'red',
      75, 'blue',
      100, 'orange',
      300, 'pink',
      750, 'white',
    ],

    circleRadius: [
      'interpolate',
      ['exponential', 1.5],
      ['get','point_count'],
      [0, 15],
      [100, 20],
      [750, 30],
    ],

    circleOpacity: 0.84,
    circleStrokeWidth: 2,
    circleStrokeColor: 'white',
  },

  clusterCount: {
    textField: ['get', 'point_count'],
    textSize: 12,
  },
});

...

<Vietmap.SymbolLayer
  id='pointCount'
  style={layerStyles.clusterCount} />

<Vietmap.CircleLayer
  id='clusteredPoints'
  belowLayerID='pointCount'
  filter={['has', 'point_count']}
  style={layerStyles.clusteredPoints} />

<Vietmap.CircleLayer
  id='singlePoint'
  filter={['!has', 'point_count']}
  style={layerStyles.singlePoint} />
const layerStyles = Vietmap.StyleSheet.create({
    building: {
      fillExtrusionOpacity: 1,
      fillExtrusionHeight: ['get', 'height'],
      fillExtrusionBase: ['get', 'min_height'],
      fillExtrusionColor: [
        'interpolate',
        ['exponential', 1.5],
        ['get', 'height'],
        [0, 'white'],
        [50, 'blue'],
        [100, 'red'],
      ],
    },
    fillExtrusionColorTransition: { duration: 2000, delay: 0 },
  },
  streets
:
{
  lineColor: 'blue',
    lineWidth
:
  2,
    lineOpacity
:
  0.50,
    lineJoin
:
  Vietmap.LineJoin.Round,
    lineCap
:
  Vietmap.LineCap.Round,
    lineDasharray
:
  [2, 2],
}
,
})
;

...

<Vietmap.FillExtrusionLayer
  id='building3d'
  sourceLayerID='building'
  style={layerStyles.building}/>

<Vietmap.LineLayer
  id='streetLineColor'
  sourceLayerID='road'
  minZoomLevel={14}
  belowLayerID='building3d'
  style={layerStyles.streets}/>

old:

const styles = Vietmap.StyleSheet.create({
  buildings: {
    fillColor: 'blue',
  },
  street: {
    lineColor: 'green',
  }
});

...

<Vietmap.FillLayer ...
style = { styles.buildings }
/>
<Vietmap.FillLayer ...
style = { styles.street }
/>
const layerStyles = Vietmap.StyleSheet.create({
  singlePoint: {
    circleColor: 'green',
    circleOpacity: 0.84,
    circleStrokeWidth: 2,
    circleStrokeColor: 'white',
    circleRadius: 5,
  },

  clusteredPoints: {
    circleColor: Vietmap.StyleSheet.source([
      [25, 'yellow'],
      [50, 'red'],
      [75, 'blue'],
      [100, 'orange'],
      [300, 'pink'],
      [750, 'white'],
    ], 'point_count', Vietmap.InterpolationMode.Exponential),

    circleRadius: Vietmap.StyleSheet.source([
      [0, 15],
      [100, 20],
      [750, 30],
    ], 'point_count', Vietmap.InterpolationMode.Exponential),

    circleOpacity: 0.84,
    circleStrokeWidth: 2,
    circleStrokeColor: 'white',
  },

  clusterCount: {
    textField: '{point_count}',
    textSize: 12,
  },
});

...

<Vietmap.SymbolLayer
  id='pointCount'
  style={layerStyles.clusterCount}/>

<Vietmap.CircleLayer
  id='clusteredPoints'
  belowLayerID='pointCount'
  filter={['has', 'point_count']}
  style={layerStyles.clusteredPoints}/>

<Vietmap.CircleLayer
  id='singlePoint'
  filter={['!has', 'point_count']}
  style={layerStyles.singlePoint}/>
const layerStyles = Vietmap.StyleSheet.create({
  building: {
    fillExtrusionOpacity: 1,
    fillExtrusionHeight: Vietmap.StyleSheet.identity('height'),
    fillExtrusionBase: Vietmap.StyleSheet.identity('min_height'),
    fillExtrusionColor: Vietmap.StyleSheet.source([
      [0, 'white'],
      [50, 'blue'],
      [100, 'red'],
    ], 'height', Vietmap.InterpolationMode.Exponential),
    fillExtrusionColorTransition: { duration: 2000, delay: 0 },
  },
  streets: {
    lineColor: 'blue',
    lineWidth: 2,
    lineOpacity: 0.50,
    lineJoin: Vietmap.LineJoin.Round,
    lineCap: Vietmap.LineCap.Round,
    lineDasharray: [2, 2],
  },
});

...

<Vietmap.FillExtrusionLayer
  id='building3d'
  sourceLayerID='building'
  style={layerStyles.building} />

<Vietmap.LineLayer
  id='streetLineColor'
  sourceLayerID='road'
  minZoomLevel={14}
  belowLayerID='building3d'
  style={layerStyles.streets} />