diff options
author | Fabian Guerra Soto <fabian.guerra@mapbox.com> | 2018-04-16 13:39:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 13:39:10 -0400 |
commit | fe4348eec34a3a9c23f7a0af2ccfa4eff28416ea (patch) | |
tree | 17ea2dfa4b30f0d32d7a917d6c0ec78e2db8d1c9 /platform/macos | |
parent | 816406e038de02cbf654571a75a77ed51a53351c (diff) | |
download | qtlocation-mapboxgl-fe4348eec34a3a9c23f7a0af2ccfa4eff28416ea.tar.gz |
[ios, macos] Remove mgl_ prefix from built-in expressions variables. (#11689)
Diffstat (limited to 'platform/macos')
-rw-r--r-- | platform/macos/docs/guides/For Style Authors.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/macos/docs/guides/For Style Authors.md b/platform/macos/docs/guides/For Style Authors.md index e90858c664..dea4eb845a 100644 --- a/platform/macos/docs/guides/For Style Authors.md +++ b/platform/macos/docs/guides/For Style Authors.md @@ -322,9 +322,9 @@ In style specification | Method, function, or predicate type | Format string syn `to-number` | `mgl_numberWithFallbackValues:` | `CAST(zipCode, 'NSNumber')` `to-string` | `stringValue` | `CAST(ele, 'NSString')` `typeof` | | -`geometry-type` | |`$mgl_geometryType` -`id` | |`$mgl_featureIdentifier` -`properties` | |`$mgl_featureProperties` +`geometry-type` | |`$geometryType` +`id` | |`$featureIdentifier` +`properties` | |`$featureProperties` `at` | `objectFrom:withIndex:` | `array[n]` `get` | `+[NSExpression expressionForKeyPath:]` | Key path `has` | `mgl_does:have:` | `mgl_does:have:(self, 'key')` |