diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2016-05-23 08:47:10 -0700 |
---|---|---|
committer | Minh Nguyễn <mxn@1ec5.org> | 2016-05-27 21:42:31 -0700 |
commit | c6683ee1d3baebf46f3397e7ed2e44e8a23dc8ed (patch) | |
tree | 3962b9433647f91436b0cb70344e272132935f80 /platform/ios/jazzy.yml | |
parent | c9520713ca5cc5352dada77de87aede97e7947f2 (diff) | |
download | qtlocation-mapboxgl-c6683ee1d3baebf46f3397e7ed2e44e8a23dc8ed.tar.gz |
[ios, osx] Feature querying; complex geometry classes
Added methods to MGLMapView that return the rendered features at a visible point or within a visible rectangle on the map, optionally restricted to a set of layers, plus voluminous documentation.
Added several new geometry classes corresponding to distinct geometry types supported by geometry.hpp. Added parallel “feature” classes to represent these geometries along with tags (IDs) and attributes (properties) from the source.
Grouped classes in the Foundation and SDK groups by theme.
In iosapp, dropped pins’ callout views now display the name of the topmost named feature at that point.
In osxapp, a long press on the map highlights the features under the cursor. Dropping a pin via the menu or context menu item shows the usual dropped pin, but the pin’s title is now the name of a feature under the cursor, if available, rather than “Dropped Pin”.
Fixes the iOS/OS X side of #352.
Diffstat (limited to 'platform/ios/jazzy.yml')
-rw-r--r-- | platform/ios/jazzy.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/platform/ios/jazzy.yml b/platform/ios/jazzy.yml index f6a5cfba4b..61570994d5 100644 --- a/platform/ios/jazzy.yml +++ b/platform/ios/jazzy.yml @@ -33,12 +33,25 @@ custom_categories: - MGLCalloutView - MGLCalloutViewDelegate - MGLMultiPoint + - MGLMultiPolygon + - MGLMultiPolyline - MGLPointAnnotation - MGLPolygon - MGLPolyline - MGLOverlay - MGLShape + - MGLShapeCollection - MGLUserLocation + - name: Map Data + children: + - MGLFeature + - MGLMultiPointFeature + - MGLMultiPolygonFeature + - MGLMultiPolylineFeature + - MGLPointFeature + - MGLPolygonFeature + - MGLPolylineFeature + - MGLShapeCollectionFeature - name: Offline Maps children: - MGLOfflineRegion |