Alternative to google maps places autocomplete - flutter

is there any alternative to google to implement a places autocomplete in flutter?
I am developing an application that needs the geolocation of places (I don't need to show the map) and use their coordinates

You can use Open Routes API's asi an alternative solution.
https://openrouteservice.org/dev/#/api-docs
Check that service as a reference... There is an option called "Directions" that can help what you are looking for...

Related

How to bind bing maps in Flutter?

I Used google Maps in Flutter and it works out of box for us. I am able to do with the help of documentation like how to use google maps in Flutter But i want to Use Bing Maps in Flutter and all properties like current loc. ,Drawing polylines,custom marker,popUp on marker. Can someone suggest me where to learn thiese things or any other suggestions??
I'm not aware of any Bing Maps map control for Flutter. One option might be to use the open source Flutter map control: https://github.com/fleaflet/flutter_map
Details on how to directly access Bing Maps tiles can be found here: https://learn.microsoft.com/en-us/bingmaps/rest-services/directly-accessing-the-bing-maps-tiles
The open source Flutter Map control has an example that uses Azure Maps as well, which is another Microsoft mapping platform to consider.

OpenStreetMap for flutter

I want to use OSM in flutter .but I cannot add it to flutter and i want to use any free maps like this.
I don't wanna pay for APIs .what should I do?
Is there any way to add OSM To flutter.
it takes couples of day and I can't add any map to my app!
You should use the flutter_map package, like quoci said in the comments.
It allows you to view maps from any source that gives a URL as an access method. There are plenty of setup instructions and examples on the package's readme page for you to get started.
You can even use Google Maps' Static Tiles API URL (which, don't quote me on this part, I think is legal to use without payment).

Search for locations with flutter_map

I am using the Flutter Package "flutter_map" (https://pub.dev/packages/flutter_map) and have implemented a map into my flutter application.
Now I want to add a search box where I can search for places which will be then focused on the map. Is something like that already included in the flutter_map-Package? I could not find anything so far.
You'll need to use an external API to search for places. As long as you follow their terms of service and don't use them for auto completion, https://nominatim.org/ is a good one for this, and it's free + open source.
Then, you can use flutter_map's MapController() to move the map to that latitude longitude returned from the API request.

Map Navigator for SAPUI5

i'd like to ask about your idea how we can implement a map navigator in SAPUI5? For example, we need to get the current location of the user, then suggest the nearest fastfood around him. Is this possible in SAPUI5?
yes its possible.. Search in the internet and come up with something.
Get started here: http://www.w3schools.com/html/html5_geolocation.asp
http://demos.jquerymobile.com/1.4.0/map-geolocation/
It is possible to integrate map API into a SAPUI5 application. Firstly you need to decide which map provider should be used in your case. for example, if you want to use google map you can refer to this blog https://blogs.sap.com/2014/07/01/google-maps-library-for-ui5/
But SAPUI5 library provides a map control to integrate with geo map. you can refer to http://veui5infra.dhcp.wdf.sap.corp:8080/sapui5-sdk-dist/test-resources/sap/ui/vbm/bestpractices.html
You can use either SAP controls for that, for example this one:
sap.ui.vbm.GeoMap
Or you could pick any free JS third-party library and integrate it with your sapui5 view.
(There are many threads explaining how to use third-party libraries in sapui5).

how to display a map in jframe

I would like to display a map inside a jframe. More specifically, I don't want to display a static map, image.
I would like to display a map like google map with all the utilities like panning/zooming etc.
Could you help me?? Is there any reference code??
Thank you.
You might want to check out OpenMap
Apparently jFrames doesn't seem to support Google Maps.
Google Maps - Issues
You may want to look into alternatives, such as using an iFrame?
Google Maps Embedding Tutorial
or
Google's How-To for Google Maps