Skip to content

Commit 65bb0e4

Browse files
author
arnaudambro
committed
Merge branch 'master' into patch-1
2 parents 67ad9e7 + 0ef3f9f commit 65bb0e4

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed

docs/PointAnnotation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
_**deprecated and buggy, use [SymbolLayer](https://github.com/react-native-mapbox-gl/maps/blob/master/docs/SymbolLayer.md) instead**_
22

33
## <MapboxGL.PointAnnotation />
4-
### PointAnnotation represents a one-dimensional shape located at a single geographical coordinate.
4+
### PointAnnotation represents a one-dimensional shape located at a single geographical coordinate. PointAnnotation is legacy, soon to be deprecated, and should use ShapeSource and SymbolLayer instead.
55

66
### props
77
| Prop | Type | Default | Required | Description |

docs/docs.json

+34-4
Original file line numberDiff line numberDiff line change
@@ -2698,21 +2698,51 @@
26982698
"required": false,
26992699
"type": "func",
27002700
"default": "none",
2701-
"description": "This event is triggered whenever the currently displayed map region is about to change."
2701+
"description": "This event is triggered whenever the currently displayed map region is about to change.",
2702+
"params": [
2703+
{
2704+
"name": "feature",
2705+
"description": "The geojson point feature at the camera center, properties contains zoomLevel, visibleBounds",
2706+
"type": {
2707+
"name": "PointFeature"
2708+
},
2709+
"optional": false
2710+
}
2711+
]
27022712
},
27032713
{
27042714
"name": "onRegionIsChanging",
27052715
"required": false,
27062716
"type": "func",
27072717
"default": "none",
2708-
"description": "This event is triggered whenever the currently displayed map region is changing."
2718+
"description": "This event is triggered whenever the currently displayed map region is changing.",
2719+
"params": [
2720+
{
2721+
"name": "feature",
2722+
"description": "The geojson point feature at the camera center, properties contains zoomLevel, visibleBounds",
2723+
"type": {
2724+
"name": "PointFeature"
2725+
},
2726+
"optional": false
2727+
}
2728+
]
27092729
},
27102730
{
27112731
"name": "onRegionDidChange",
27122732
"required": false,
27132733
"type": "func",
27142734
"default": "none",
2715-
"description": "This event is triggered whenever the currently displayed map region finished changing"
2735+
"description": "This event is triggered whenever the currently displayed map region finished changing",
2736+
"params": [
2737+
{
2738+
"name": "feature",
2739+
"description": "The geojson point feature at the camera center, properties contains zoomLevel, visibleBounds",
2740+
"type": {
2741+
"name": "PointFeature"
2742+
},
2743+
"optional": false
2744+
}
2745+
]
27162746
},
27172747
{
27182748
"name": "onWillStartLoadingMap",
@@ -2805,7 +2835,7 @@
28052835
"name": "MapView"
28062836
},
28072837
"PointAnnotation": {
2808-
"description": "PointAnnotation represents a one-dimensional shape located at a single geographical coordinate.",
2838+
"description": "PointAnnotation represents a one-dimensional shape located at a single geographical coordinate. PointAnnotation is legacy, soon to be deprecated, and should use ShapeSource and SymbolLayer instead.",
28092839
"displayName": "PointAnnotation",
28102840
"methods": [],
28112841
"props": [

javascript/components/PointAnnotation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const styles = StyleSheet.create({
1616
});
1717

1818
/**
19-
* PointAnnotation represents a one-dimensional shape located at a single geographical coordinate.
19+
* PointAnnotation represents a one-dimensional shape located at a single geographical coordinate. PointAnnotation is legacy, soon to be deprecated, and should use ShapeSource and SymbolLayer instead.
2020
*/
2121
class PointAnnotation extends React.PureComponent {
2222
static propTypes = {

0 commit comments

Comments
 (0)