diff options
author | Nadia Barbosa <captainbarbosa@users.noreply.github.com> | 2017-11-02 12:25:43 -0400 |
---|---|---|
committer | Nadia Barbosa <captainbarbosa@users.noreply.github.com> | 2017-11-09 13:11:09 -0500 |
commit | bfdd0c5031004227da9c8f006e9e636fe65f9fc1 (patch) | |
tree | 23a4c34b12d9db2263e34b35942436fb02404a42 | |
parent | a936fd6f8a625e8a95c3d1ab524b8dddbbbb5ccd (diff) | |
download | qtlocation-mapboxgl-bfdd0c5031004227da9c8f006e9e636fe65f9fc1.tar.gz |
[ios] Doc fixes for "Adding Points to a Map" guide
-rw-r--r-- | platform/ios/docs/guides/Adding Points to a Map.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/docs/guides/Adding Points to a Map.md b/platform/ios/docs/guides/Adding Points to a Map.md index 2698d5564f..2844075cc7 100644 --- a/platform/ios/docs/guides/Adding Points to a Map.md +++ b/platform/ios/docs/guides/Adding Points to a Map.md @@ -51,7 +51,7 @@ To use annotation views, implement `MGLMapViewDelegate` `-mapView:viewForAnnotat * No limit on style or image size * Full support for animations * Relative control over z-ordering using the `zPosition` property on `CALayer` -* [Familiar API for MapKit users](https://www.mapbox.com/help/switch-mapkit/#annotations-pins) +* Familiar API for MapKit users **Cons** @@ -63,7 +63,7 @@ To use annotation views, implement `MGLMapViewDelegate` `-mapView:viewForAnnotat For absolute full control of how points are displayed on a map, consider [runtime styling](runtime-styling.html). -You can use `MGLPointFeature` or any of the other [style feature subclasses](Style%20Features.html) to add points and shapes to an `MGLShapeSource`. +You can use `MGLPointFeature` or any other [style primitives](Style%20Primitives.html) to add points and shapes to an `MGLShapeSource`. From there, you can create one or many `MGLSymbolStyleLayer` or `MGLCircleStyleLayer` layers to filter and style points for display on the map ([example](https://www.mapbox.com/ios-sdk/examples/runtime-multiple-annotations)). |