Static map with route in Image in windows phone 8.1 - c#

I am working with windows phone 8.1 [RT] map application , I want to show Map Image with route like Google Static Map
Is there any way create Image in Windows phone map ?
I have tried with Bing map , with I have no Bing map key ,So I can not find anything
Thank you

check https://msdn.microsoft.com/en-us/library/ff701724.aspx#
You will still need to have a Bing map key, but creating one for a mobile app is free.

Related

Bing Map control not displaying map

In my Windows 8.1 Application, I tried to integrate Bing Map control and provided my Map key but when I am running the application it's just showing blocked icon/black screen.
Event I tried downloading Bing Maps sample from MSDN, but in that also I am getting the same error after provding bing map key. So I am not sure what's the actual issue, is issue with my bing map key?
Here's the screenshot of how I created my Key from Bing Map portal:
And below is the screenshot that I see on screen when I run my application:
Bing Map Block Error:
Ok, there are certain countries in which the Windows 8.1 map control is disabled as documented here: https://msdn.microsoft.com/en-us/library/jj670541.aspx You can get around this by setting the HomeRegion property of the map to a country that isn't blocked. For example HomeRegion="US"

Bing maps invalid credentials (Win Phone 8.1)

I'm writing a simple WP 8.1 app which handle travel routes. I've created a key in Bing Maps Dev Center and I have a valid key. I set it in XAML for Map control:
<maps:MapControl x:Name="map" MapServiceToken="valid token"/>
In the app, I can search locations by addresses (MapLocationFinder.FindLocationsAsync) but I get an InvalidCredentials result when try to find a route between the addresses with MapRouteFinder.GetDrivingRouteAsync().
The Windows Phone 8.1 map control doesn't use Bing Maps. You have to get a map token to use these maps from the Windows Phone dev center. Here is documentation: https://msdn.microsoft.com/en-us/library/dn741528.aspx
In Windows 10 this map control is updated to use Bing Maps.

Displaying route with pushpoints on wp8

I have mapped tour on google maps, same thing I can get on bing maps to, how can I draw the same route in my WP8 application via internet connection?
Tour
Download the belonging KML file from Google Maps. There is a link on the route panel.
Write a XML parser to interpret the coordinates in the KML file.
Read the Guide to the Windows Phone 8 Maps API on how to display a route.

Windows 8 - launch maps app

We are working on a C# Xaml-based Windows Store app.
We have integrated bing maps within the app, but we were wondering if it were possible to launch the "Maps" app to a certain address?
We don't want to implement full directions, so it would be nice to just provide a button to launch maps so they can do it from there.
Take a look at the URI Scheme for maps application in conjunction with LaunchUriAsync, I think it should do the trick.

BingMapsDirectionsTask equivalent for Windows 8

all is in the title, I'm looking for an equivalent in Windows 8 of the BingMapsDirectionsTask that exists in Windows Phone 7.
My purpose is to display a route without using the bing maps API.
Thanks in advance for your help,
Best regards
Since Bing is not built in, you need to manually access a Bing or Google API to manually get directions or whatever your use is.
Bing Map API
Google Map API

Categories

Resources