how to programmatically import places into Bing Maps (My places) - bing-maps

Is there a way to programmatically import favorite places (as kmk file format) into Bing maps(my places)?
I didn't find any api for that.

You won't be able to programmatically upload data into the My Places function of the Bing Maps website.
If you want to do anything programmatically with Bing Maps, use the Bing Maps API's and not the website: https://msdn.microsoft.com/en-us/library/dd877180.aspx
You can upload your data into the Bing Spatial Data Services and then overlay that data on top of Bing Maps. Here is a good article to get you started: https://msdn.microsoft.com/en-us/library/dn948092.aspx

Related

How to using google my maps in flutter app

I'm building a flight route map that will be intriguing with the device's gps.
I tried in one way to use the google my maps service I created objects there on a satellite map of route names and links. But I did not find a package that supports google my maps.
I tried a second way to do webview but do not see it optimally.
I would love to hear your ideas for execution / someone who knows a package that works with Google my Maps.
Thanks
plot the gps location data on a map i.e. place map markers on the google map
use google_maps_flutter package for flutter/google maps integration
https://pub.dev/packages/google_maps_flutter

Can google map api be used on another kind of map(Eg: Leaflet map?)? In Flutter

For example, if i want to filter markers, i can use the google map API to do it. But does it still work if i use another map instead of google map to display the markers?
No. As the documentation says, if you integrate Google Maps Flutter plugin, your app will:
Display a Google Map
Retrieve map data from a web service
Display this data as markers on the Map
With the Google Maps Flutter plugin, you can add maps based on Google maps data to your application. If you change the map, you cannot use google map api.
You can also use the Huawei Map Flutter Plugin. It uses the WGS 84 GPS coordinate system, which meets most map development requirements.

Can I use Google map tiles/Images with leaflet?

I want to use google map tiles/images with leaflet API. Is Google map tiles or images are open source?

Google Map Navigation and Direction in iPhone app

I wan to use google map navigation and direction functionality in my iPhone App.
Is there any sample app or documents which should I refer? Is this paid functionality?
Thanks,
If you want to use Google Maps the google provides a really good API.
Google Code
For the direction it depends what you need. For the direction you head up to you can use the compass. If you want to track the direction of your movement you can do that with GPS.
If you don't want to use google maps you can use
the Route Me example (Open source iPhone-native slippy map), which already includes functions like tracking and many more.
If you're trying to find directions between two GPS coordinates or two addresses, you can use Google Directions API.
http://code.google.com/apis/maps/documentation/directions/
You can have it read out xml or JSON and from there, parse it and do with it whatever you want.

Directions and Route in iPhone using Bing Map

Can we load a Bing Map in iPhone and show Route between source and destination points thourgh some waypoints.
Check out the route-me project: route-me
This supports slippy map display of all kinds of maps (including Bing Maps) and also allows you to draw routes on top. However you need to make sure to have the right to use the maps in that way (make sure to check the license agreement with Bing Maps).
Great Blog post with resources for iPhone <-> Virtual Earth Dev
Bing SDK for iPhone