diff options
author | Fabian Guerra <fabian.guerra@mapbox.com> | 2018-04-17 17:21:45 -0400 |
---|---|---|
committer | Fabian Guerra <fabian.guerra@mapbox.com> | 2018-04-17 17:21:45 -0400 |
commit | 526fb9bb684899ddd448c0a6333d3e78dcbdb5a5 (patch) | |
tree | 8410a6c9c7739e7e2ea2ee7c2081091055fd9e18 | |
parent | 798bcbee01467ac48347d54405277104ccdedec5 (diff) | |
download | qtlocation-mapboxgl-upstream/fabian-trigonometric-11012.tar.gz |
[ios, macos] Update style authors documentation.upstream/fabian-trigonometric-11012
-rw-r--r-- | platform/darwin/docs/guides/For Style Authors.md.ejs | 14 | ||||
-rw-r--r-- | platform/ios/docs/guides/For Style Authors.md | 14 | ||||
-rw-r--r-- | platform/macos/docs/guides/For Style Authors.md | 14 |
3 files changed, 21 insertions, 21 deletions
diff --git a/platform/darwin/docs/guides/For Style Authors.md.ejs b/platform/darwin/docs/guides/For Style Authors.md.ejs index a3083571cf..bca894c063 100644 --- a/platform/darwin/docs/guides/For Style Authors.md.ejs +++ b/platform/darwin/docs/guides/For Style Authors.md.ejs @@ -380,24 +380,24 @@ In style specification | Method, function, or predicate type | Format string syn `^` | `raise:toPower:` | `2 ** 2` `+` | `add:to:` | `1 + 2` `abs` | `abs:` | `abs(-1)` -`acos` | | -`asin` | | -`atan` | | +`acos` | `mgl_acos:` | `mgl_acos(1)` +`asin` | `mgl_asin:` | `mgl_asin(0)` +`atan` | `mgl_atan:` | `mgl_atan(20)` `ceil` | `ceiling:` | `ceiling(0.99999)` -`cos` | | +`cos` | `mgl_cos:` | `mgl_cos(0)` `e` | | `%@` representing `NSNumber` containing `M_E` `floor` | `floor:` | `floor(-0.99999)` `ln` | `ln:` | `ln(2)` `ln2` | | `%@` representing `NSNumber` containing `M_LN2` `log10` | `log:` | `log(1)` -`log2` | | +`log2` | `mgl_log2:` | `mgl_log2(1024)` `max` | `max:` | `max({1, 2, 2, 3, 4, 7, 9})` `min` | `min:` | `min({1, 2, 2, 3, 4, 7, 9})` `pi` | | `%@` representing `NSNumber` containing `M_PI` `round` | `mgl_round:` | `mgl_round(1.5)` -`sin` | | +`sin` | `mgl_sin:` | `mgl_sin(0)` `sqrt` | `sqrt:` | `sqrt(2)` -`tan` | | +`tan` | `mgl_tan:` | `mgl_tan(0)` `zoom` | `NSExpression.zoomLevelVariableExpression` | `$zoom` `heatmap-density` | `NSExpression.heatmapDensityVariableExpression` | `$heatmapDensity` diff --git a/platform/ios/docs/guides/For Style Authors.md b/platform/ios/docs/guides/For Style Authors.md index 1ce0a4bf4f..fa65b3ccb9 100644 --- a/platform/ios/docs/guides/For Style Authors.md +++ b/platform/ios/docs/guides/For Style Authors.md @@ -365,24 +365,24 @@ In style specification | Method, function, or predicate type | Format string syn `^` | `raise:toPower:` | `2 ** 2` `+` | `add:to:` | `1 + 2` `abs` | `abs:` | `abs(-1)` -`acos` | | -`asin` | | -`atan` | | +`acos` | `mgl_acos:` | `mgl_acos(1)` +`asin` | `mgl_asin:` | `mgl_asin(0)` +`atan` | `mgl_atan:` | `mgl_atan(20)` `ceil` | `ceiling:` | `ceiling(0.99999)` -`cos` | | +`cos` | `mgl_cos:` | `mgl_cos(0)` `e` | | `%@` representing `NSNumber` containing `M_E` `floor` | `floor:` | `floor(-0.99999)` `ln` | `ln:` | `ln(2)` `ln2` | | `%@` representing `NSNumber` containing `M_LN2` `log10` | `log:` | `log(1)` -`log2` | | +`log2` | `mgl_log2:` | `mgl_log2(1024)` `max` | `max:` | `max({1, 2, 2, 3, 4, 7, 9})` `min` | `min:` | `min({1, 2, 2, 3, 4, 7, 9})` `pi` | | `%@` representing `NSNumber` containing `M_PI` `round` | `mgl_round:` | `mgl_round(1.5)` -`sin` | | +`sin` | `mgl_sin:` | `mgl_sin(0)` `sqrt` | `sqrt:` | `sqrt(2)` -`tan` | | +`tan` | `mgl_tan:` | `mgl_tan(0)` `zoom` | `NSExpression.zoomLevelVariableExpression` | `$zoom` `heatmap-density` | `NSExpression.heatmapDensityVariableExpression` | `$heatmapDensity` diff --git a/platform/macos/docs/guides/For Style Authors.md b/platform/macos/docs/guides/For Style Authors.md index c8e517a5bd..fff70d0a90 100644 --- a/platform/macos/docs/guides/For Style Authors.md +++ b/platform/macos/docs/guides/For Style Authors.md @@ -358,24 +358,24 @@ In style specification | Method, function, or predicate type | Format string syn `^` | `raise:toPower:` | `2 ** 2` `+` | `add:to:` | `1 + 2` `abs` | `abs:` | `abs(-1)` -`acos` | | -`asin` | | -`atan` | | +`acos` | `mgl_acos:` | `mgl_acos(1)` +`asin` | `mgl_asin:` | `mgl_asin(0)` +`atan` | `mgl_atan:` | `mgl_atan(20)` `ceil` | `ceiling:` | `ceiling(0.99999)` -`cos` | | +`cos` | `mgl_cos:` | `mgl_cos(0)` `e` | | `%@` representing `NSNumber` containing `M_E` `floor` | `floor:` | `floor(-0.99999)` `ln` | `ln:` | `ln(2)` `ln2` | | `%@` representing `NSNumber` containing `M_LN2` `log10` | `log:` | `log(1)` -`log2` | | +`log2` | `mgl_log2:` | `mgl_log2(1024)` `max` | `max:` | `max({1, 2, 2, 3, 4, 7, 9})` `min` | `min:` | `min({1, 2, 2, 3, 4, 7, 9})` `pi` | | `%@` representing `NSNumber` containing `M_PI` `round` | `mgl_round:` | `mgl_round(1.5)` -`sin` | | +`sin` | `mgl_sin:` | `mgl_sin(0)` `sqrt` | `sqrt:` | `sqrt(2)` -`tan` | | +`tan` | `mgl_tan:` | `mgl_tan(0)` `zoom` | `NSExpression.zoomLevelVariableExpression` | `$zoom` `heatmap-density` | `NSExpression.heatmapDensityVariableExpression` | `$heatmapDensity` |