I want to put a ground overlay over a certain lat long location on flutter google map on web app like the picture below can anyone help me to find a solution for that ?
is there any GitHub pr for that or any one done that before ?
and if there is no way to achieve this with flutter can i make it lets say with angular and then integrate this part in flutter code using something like web view ?
Related
How to make app in background like chat head of messenger when user but it in background and click on this bubble to open the app again .
I'm trying to use floaty_head package but it doesn't work .
I am assuming that you are referring to the Android Bubbles API documented here. If that's the case, at the time of this writing I don't believe there are ready to use 3rd party packages on pub.dev that allow you to achieve this. Your best option at the moment is to write that code natively yourself and integrate it with your Flutter application using channels.
I am new to flutter development and I have some images in my flutter web app, and I want to put the images in some CDN network and fetch it from there. Is this possible in flutter?
I checked google but I could not find anything concrete. Need some guidance. Thanks!
Pseudo Code-
new NetworkImage(CDN LINK)
See the cookbook here. But if these images are only used in your flutter application, wouldn't it make more sense just to bundle them along with any other assets and use an AssetImage?
Hi everyone I am new to the flutter framework. I am trying to implement UI as given in the image below. As of now consider this is a static UI component. Want to build this using a flutter widget only.
I wanted to know is there any way I can create this type of UI in a flutter. As I am new in flutter how long it will take to learn flutter so that I will be able to create this kind of UI.
I tried creating the same UI in a flutter as I am an angular developer so I thought if I can do it quickly. But I am not able to do it.
My main concern is
1)Is this feasible and if yes
2)How much time will require for new flutter developer
Your suggestion highly appreciated.
Thanks,
I'm new to Ionic, and I'd like to know if you can give me some guidance. I am using Ionic 1. I have seen tutorials, and they use Google or one signal. But they are always basic tutorials and I have many doubts. I hope to do this for both iOS and Android.
My application has some coordinates in the database, I get them with a web service. I would like that when I'm near a place I get a push notification. I am currently using the Google Maps plugin cordova-plugin-googlemaps and the geolocation plugin cordova-plugin-geolocation.
I would like you to give me advice or if you have had the experience of doing something like this.
I also want to know if doing this has any cost.
I am using Ionic 1 and the database is built in MySQL using PHP. I think the push notification is generated from the back-end?
When I tap on the notification, can it contain an iconor redirect to a specific place in my app?
In conclusion:
What is the best alternative? I was thinking of some plugin that detects in the background when my location changes and when this happens (does the cordova-plugin-geolocation do it?) verify if I'm close to a certain place and send a local notification. For example, and when I tap on this notification I can get the id of that place and redirect to a place in my app.
I think you should try geofence
repo link
example links:
https://github.com/cowbell/ionic-geofence built with Ionic framework
https://github.com/tsubik/ionic2-geofence built with Ionic 2 framework
I'm trying to build a simple android app with Ionic native. I'd like to add a search bar to my google map. I'd like users to be able to type an address (or just a city), autocomplete would help them choose and when they click on one of the offered adresses, the map would show the city.
I googled how to do it, but only found Ionic2 and java solutions. I only want to Could someone give me any pointers on how to do it?