mapbox-maps-ios
mapbox-maps-ios copied to clipboard
Add 3D Annotations
3D Annotations
Create a 3DPointAnnotation that takes a CLLocation object at initialization.
3DPointAnnotation(
location: CLLocation(
coordinate: CLLocationCoordinate2D(latitude: 0, longitude: 0),
altitude: 500
))
This 3DPointAnnotation (or Line, or Polygon) would be integrated into the rendering of the 3D view. The annotation would respect obstruction caused by terrain. It would have to be considered as dependant on the terrain exaggeration property too.
Why
This feature is valuable for depicting locations that are above ground level, like the 30th floor of a building, or a 3d geometric shape surrounding a meteorological entity, like a hurricane.
We also have a need for this feature to render trajectories for flights over 3d terrain. Any updates to scheduling the feature or potential workarounds?
Any update on whether this might become a thing?
We also have a need for this feature to render trajectories for flights over 3d terrain. Any updates to scheduling the feature or potential workarounds?
Did you find a workaround to achieve this?