-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add line#getGeometry and symbol#getGeometry #281
Conversation
The CI failed, because pub would always get the platform_interface and web plugins from pub.dev and not use the local versions. I now changed that and the example app now always uses the local versions of these plugins. |
OK, the issue was that the CI was running flutter analyze in the top level directory, which still references the hosted plugins. |
As noted in #111, circle#getGeometry is already implemented, this implements the equivalents for lines and symbols.
Edit: on Android however, due to issue #130, symbols and lines are currently not draggable. Only the last annotation manager enabled in https://github.com/tobrun/flutter-mapbox-gl/blob/2339ab64c64ff75d544385ae16a35b3998dfc1be/android/src/main/java/com/mapbox/mapboxgl/MapboxMapController.java#L324-L326 supports dragging. I have tested this PR by changing the order of the annotation managers in these lines and getting the current position with the code from this PR worked.
Closes #111