Flutter Custom Event Map - flutter

I am making an event app that has a custom map to help guess navigate the ground. I'd know how zoom and pan the image but is there a way to add tooltips to an image based on what was clicked on the map image?
Click certain booths to get a custom tooltip class in flutter.
similar to this image

Related

Flutter how to know on which part from image was tapped

I have a car image and i want to make user enable to tap on apart of it then the tapped part name will be shown. How can i do it?
Like this image but i want to use car image not a map.
I think the way I'd do this, is use a Stack to overlay a GestureDetector on your image and see what the coordinates are. You could even use a CustomClipper with some custom shapes, or overlay multiple Positioned widgets with separate listeners on it, depending on your needs.
https://api.flutter.dev/flutter/widgets/GestureDetector-class.html
https://api.flutter.dev/flutter/rendering/CustomClipper-class.html

How to draw an animated logo using dart flutter as a splash screen

I am trying to create a dynamic logo using as a splash screen using dart flutter as the below image
So as the previous image this shield logo there's a way to create it dynamically using dart-flutter as to able to animate it easily as dragable those small squares in the shield logo...
There's a tutorial or docs related to this case could help me...
I hope this would be clear enough..
If there is no user interaction then you could use
Lottie animation or else if you want to have a user interaction with the animation to it then you could do like
ColorFiltered with the position
Update the state of the position from drag/click position

How to insert clickable points in an image in flutter?

I want to do just that on the flutter, can anyone help me?
Clickable Marked points on an Image
Hello, I need to show an image with clickable dots on the screen and trigger an action when the user clicks on these dots. I heard that it is made with SVG, I've searched in several places but I find no solution in the flutter.
I was struggling with a similar situation.
Slah's solution --- put a operational layer on top of the background image --- works if you don't need pinch to zoom the image, but in my case the positioned widgets get invalid when zooming in the image.
My solution is embedding the image into a webview, you may use webview_flutter because it can be easily plugged onto your widget tree, but I think in your case flutter_webview_plugin works too since you just need to listen to some click events. Add hyperlinks to the elements to be clicked, then play with the click event by webviewcontroller(webview_flutter) or onUrlChanged Stream(flutter_webview_plugin).
One benefit you can get immediately is the ability to use .svg without any other packages by Uri.dataFromString('<html><svg>some svg codes</svg></html>', mimeType: 'text/html').toString()
Then you have full control of the appearance(via css) and the behavior(via javascript). e.g.You may define irregular areas to be clickable, and responsive to clicks.

How to change icon showing my location on google map? [Flutter]

A blue dot shows my location on google map.
a blue dot
I want to change this icon. I even want to show it in an animated shape. It would be nice to show it as in this design
focus center
You can use Location package to get current geo-location, and pin your custom marker, currently flutter google map doesn't support gif or any animated image, of course you can also place a animated image using Stack widget on top of map as a fake 'my location' marker.
Remember to disable default current location.

How to Show scrollable panel in Unity3d

I'm trying to show a ui panel using unity3d ,I have a main camera scene after i click a button ,i want my scrollable panel to show up
just like this
after i click the menu button i want the scrolling ui to appear like this.
It'd be great if someone could point out some kind of a tutorial that would cover this.
You need the following:
Image component - This is used to represent the items you want
to display
Grid Layout Group component - This is used to arrange those
image components you want to display.
Content Size Fitter component - This is used to make sure
that those Images fit in the Grid Layout.
The video from here should show you how to use these 3 together to get what you are looking for. To detect which Image is clicked, see this post.