Whether offline maps are charged by Mau, tile requests, or both - mapbox

In Map_SDK_V6, you can see that it is charged according to the tile requests, but there is no charging content in v10. Is it cancelled?

Your offline tile usage will be billed as Vector Tiles API or Raster Tiles API requests.
According to the following paragraph, the Mapbox SDK includes Mapbox SDK contains vector Tiles API.
Which Mapbox services are included?
Maps SDK MAUs cover any use of the Vector Tiles API and Raster Tiles API in an application that includes the Maps SDK with no upfront commitments or annual contracts. These APIs are used, for example, when displaying a map view and panning around the map.

Related

Mapbox - FLUTTER SDK

I have gone through the mapbox documentation and come to know that it provides offline support for both Android and IOS.
My requirement is to use direction functionality offline. Since We can download and store particular region, Can we load direction between two points?
Is mapbox provode such functionality. I have gone through the mapbox documentation and come to know about offline map features but is there any way to integrate offline direction using Mapbox ?
Direction is an ML-generated route API that is only accessible through the internet. Only 100,000 requests are free per month to use this service for free. To access the API you are required to use something like
https://api.mapbox.com/directions/v5/mapbox/driving/-122.42,37.78;-77.03,38.91?access_token=YOUR_MAPBOX_ACCESS_TOKEN
Read more about Mapbox offline, Mapbox directions

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.

how to programmatically import places into Bing Maps (My places)

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

Extracting and using street data from MapBox iOS SDK

Is there a way to identify streets and roads on MapBox maps and get information about their shapes, etc?
I am talking about something like this: http://www.playmapscube.com/ The ball follows the paths created by streets.
Nope: the Mapbox iOS SDK's maps are tile-based rasters, so they don't contain street data as much as a representation of data as an image. In Mapbox GL Cocoa, it's possible to get at raw data, but it'll require a bit of experimentation, since it's a very new project.

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