liodali / osm_flutter

OpenStreetMap plugin for flutter
https://pub.dev/packages/flutter_osm_plugin
MIT License
239 stars 98 forks source link

No pointer on showSimplePickerLocation() #492

Closed Alisofin closed 10 months ago

Alisofin commented 10 months ago

Hello, I found a new issue on the simple picker: the pointer (icon) at location initPosition is not showing up. It doesn't work on iOS and Android. My code is: // Show the map and await for a click var newLocation = await showSimplePickerLocation( context: context, isDismissible: true, title: "Set bird feeder location", textConfirmPicker: "Confirm", initPosition: _cameraLocation, zoomOption: ZoomOption(initZoom: 10), radius: 8);

Alisofin commented 10 months ago

As a follow up of my previous comment, the confirm button doesn't work either.

liodali commented 10 months ago

yeah that widget i will update with new API because for some reason i dont need to built native Ui for it so I changed it to be able to add custom flutter where you can add animated picker marker

Alisofin commented 10 months ago

So the fix will be included in your next release or will you have a dev version before ?

liodali commented 10 months ago

i will update the widget in dev version before here we can test it together i will try to do update today or tomorrow

liodali commented 10 months ago

check our latest version 1.0.0-dev.4 we improved the picker dialog we added custom widget where you can put any picker or you can use our existing widget you see the example for more details

Alisofin commented 10 months ago

Works fine, thanks again for your reactivity.